
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c4f0c4fa84a14e21fa50480f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e54c9aa345a492ccb0e4f34e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_862203f9a76f4abe52f63307.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c455966c29b99202aed724eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d27090548f422a54d0d10155.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8bb66f72566b38f5cd8b07e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_20c683a076b885c41a92893f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a41be1fef72dc6e9f23aa421.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3eac924a57b25bc9cbbc826c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_13f7321d2960200cd4a3ac1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_00f2a5fd19a850a602c59c1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1aa0934c7c4cb92edaacbd28.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_17c013bc30131c877ddd3e60.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ba55c6c1efc7b849d4c21606.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.237569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237569,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.238713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238713,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242162,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242617,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257798,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257802,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257809,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258858,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-52.553030px;}
.ve{vertical-align:-45.351318px;}
.v18{vertical-align:-36.755141px;}
.v17{vertical-align:-26.634960px;}
.v3{vertical-align:-21.574092px;}
.vd{vertical-align:-15.836687px;}
.v7{vertical-align:-14.460307px;}
.vc{vertical-align:-12.969520px;}
.v12{vertical-align:-10.870167px;}
.v4{vertical-align:-7.199892px;}
.v5{vertical-align:-5.050890px;}
.vb{vertical-align:-3.609064px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.592729px;}
.v16{vertical-align:10.108516px;}
.vf{vertical-align:11.519200px;}
.va{vertical-align:12.947979px;}
.v15{vertical-align:16.554337px;}
.v14{vertical-align:17.927529px;}
.v2{vertical-align:21.574092px;}
.v13{vertical-align:28.079959px;}
.v8{vertical-align:35.309796px;}
.v11{vertical-align:41.033831px;}
.v19{vertical-align:43.199892px;}
.v6{vertical-align:54.733661px;}
.v1{vertical-align:83.495880px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.028018px;}
.ls21{letter-spacing:0.080369px;}
.ls20{letter-spacing:0.082429px;}
.ls5{letter-spacing:0.192961px;}
.ls19{letter-spacing:0.196590px;}
.ls4{letter-spacing:0.217402px;}
.ls1a{letter-spacing:0.217449px;}
.ls7{letter-spacing:7.127003px;}
.ls8{letter-spacing:7.134505px;}
.ls1b{letter-spacing:8.351955px;}
.ls1c{letter-spacing:9.072113px;}
.lsa{letter-spacing:12.278407px;}
.ls16{letter-spacing:12.278527px;}
.ls1{letter-spacing:14.608830px;}
.ls1d{letter-spacing:15.324495px;}
.ls3{letter-spacing:15.964238px;}
.ls6{letter-spacing:24.808463px;}
.ls15{letter-spacing:35.100020px;}
.ls24{letter-spacing:48.781182px;}
.ls18{letter-spacing:48.784441px;}
.ls17{letter-spacing:48.797597px;}
.ls1e{letter-spacing:53.054802px;}
.ls1f{letter-spacing:58.160674px;}
.ls9{letter-spacing:62.468983px;}
.ls2{letter-spacing:62.962310px;}
.ls22{letter-spacing:94.433986px;}
.ls14{letter-spacing:144.737944px;}
.ls11{letter-spacing:161.306389px;}
.ls13{letter-spacing:164.925431px;}
.ls10{letter-spacing:180.027060px;}
.lsc{letter-spacing:434.179769px;}
.lse{letter-spacing:436.374964px;}
.lsf{letter-spacing:447.861011px;}
.lsb{letter-spacing:455.088875px;}
.lsd{letter-spacing:455.800759px;}
.ls12{letter-spacing:471.640825px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.sc7{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc5{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc4{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(165,0,33),0 0.015em rgb(165,0,33),0.015em 0 rgb(165,0,33),0 -0.015em  rgb(165,0,33);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc6{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(165,0,33);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws46{word-spacing:-59.759492px;}
.ws13{word-spacing:-56.158355px;}
.ws1{word-spacing:-53.999861px;}
.ws4c{word-spacing:-41.759538px;}
.ws2f{word-spacing:-41.745522px;}
.ws57{word-spacing:-27.174250px;}
.ws48{word-spacing:-19.038271px;}
.ws0{word-spacing:-16.760503px;}
.ws5{word-spacing:-16.271958px;}
.ws24{word-spacing:-15.952008px;}
.ws20{word-spacing:-15.940832px;}
.ws12{word-spacing:-15.839959px;}
.ws3c{word-spacing:-14.970281px;}
.ws18{word-spacing:-14.807655px;}
.ws1b{word-spacing:-13.505645px;}
.wse{word-spacing:-12.203968px;}
.ws33{word-spacing:-11.879969px;}
.wsb{word-spacing:-11.095253px;}
.ws2b{word-spacing:-10.902292px;}
.ws43{word-spacing:-9.437656px;}
.ws47{word-spacing:-9.112403px;}
.ws36{word-spacing:-8.712172px;}
.ws2e{word-spacing:-8.136000px;}
.ws25{word-spacing:-7.874568px;}
.ws1c{word-spacing:-7.322400px;}
.ws38{word-spacing:-7.159680px;}
.ws1e{word-spacing:-6.835871px;}
.ws2c{word-spacing:-6.834240px;}
.ws30{word-spacing:-6.346080px;}
.ws10{word-spacing:-5.369760px;}
.ws3b{word-spacing:-5.044320px;}
.ws1f{word-spacing:-4.685774px;}
.ws41{word-spacing:-2.442964px;}
.ws49{word-spacing:-2.053446px;}
.ws45{word-spacing:-2.021763px;}
.ws3d{word-spacing:-1.853283px;}
.ws53{word-spacing:-1.769043px;}
.ws3a{word-spacing:-1.600563px;}
.ws4{word-spacing:-1.490900px;}
.ws44{word-spacing:-1.010882px;}
.wsc{word-spacing:-1.007997px;}
.ws2d{word-spacing:-0.997920px;}
.ws8{word-spacing:-0.924745px;}
.ws17{word-spacing:-0.861122px;}
.ws40{word-spacing:-0.758161px;}
.wsa{word-spacing:-0.575999px;}
.ws9{word-spacing:-0.487036px;}
.ws31{word-spacing:-0.485999px;}
.ws39{word-spacing:-0.299324px;}
.ws7{word-spacing:-0.220267px;}
.ws11{word-spacing:-0.215999px;}
.ws23{word-spacing:-0.085284px;}
.ws3{word-spacing:-0.074815px;}
.ws28{word-spacing:-0.048724px;}
.ws6{word-spacing:-0.039624px;}
.wsd{word-spacing:-0.036000px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.083417px;}
.ws26{word-spacing:0.085284px;}
.ws42{word-spacing:0.108000px;}
.ws35{word-spacing:0.162000px;}
.ws3e{word-spacing:0.252000px;}
.ws56{word-spacing:0.263272px;}
.ws1d{word-spacing:0.472698px;}
.ws32{word-spacing:1.241997px;}
.ws34{word-spacing:6.306452px;}
.ws16{word-spacing:6.557778px;}
.ws37{word-spacing:54.251702px;}
.ws4f{word-spacing:85.606517px;}
.ws4d{word-spacing:100.476009px;}
.ws50{word-spacing:104.834528px;}
.ws54{word-spacing:105.408000px;}
.ws22{word-spacing:112.251923px;}
.ws27{word-spacing:115.332565px;}
.ws51{word-spacing:117.648000px;}
.ws4e{word-spacing:152.354658px;}
.ws3f{word-spacing:172.476000px;}
.ws2a{word-spacing:254.783600px;}
.ws29{word-spacing:256.802110px;}
.wsf{word-spacing:275.392555px;}
.ws52{word-spacing:347.003104px;}
.ws55{word-spacing:354.023086px;}
.ws4b{word-spacing:359.566102px;}
.ws4a{word-spacing:366.064799px;}
.ws19{word-spacing:416.404139px;}
.ws15{word-spacing:457.100131px;}
.ws1a{word-spacing:533.739084px;}
.ws14{word-spacing:557.998596px;}
._17{margin-left:-90.997186px;}
._18{margin-left:-48.517207px;}
._12{margin-left:-9.957346px;}
._28{margin-left:-7.750093px;}
._7{margin-left:-5.885308px;}
._3{margin-left:-4.307749px;}
._1{margin-left:-2.777023px;}
._2{margin-left:-1.684117px;}
._0{width:1.779876px;}
._1e{width:2.938354px;}
._a{width:4.911992px;}
._1f{width:8.040149px;}
._4{width:10.907139px;}
._2a{width:12.536527px;}
._b{width:13.543246px;}
._d{width:15.232990px;}
._9{width:16.583788px;}
._20{width:17.774669px;}
._27{width:18.869791px;}
._8{width:20.453012px;}
._10{width:22.175943px;}
._4f{width:23.690699px;}
._11{width:26.048728px;}
._29{width:31.265366px;}
._50{width:37.925644px;}
._e{width:57.892209px;}
._30{width:59.788248px;}
._2f{width:69.457163px;}
._2b{width:96.793408px;}
._32{width:103.608000px;}
._19{width:111.612390px;}
._1c{width:114.110159px;}
._45{width:116.712000px;}
._1b{width:121.344412px;}
._1a{width:124.959163px;}
._1d{width:127.471339px;}
._44{width:132.340205px;}
._36{width:141.696000px;}
._f{width:150.204405px;}
._35{width:151.704000px;}
._15{width:168.385096px;}
._c{width:172.636623px;}
._34{width:175.195377px;}
._38{width:178.867961px;}
._47{width:180.019961px;}
._26{width:183.333940px;}
._33{width:186.552000px;}
._37{width:188.443961px;}
._46{width:189.595961px;}
._41{width:193.051621px;}
._31{width:197.299961px;}
._43{width:204.192000px;}
._42{width:206.803139px;}
._4c{width:209.251579px;}
._40{width:218.443795px;}
._2e{width:219.504797px;}
._4b{width:236.575508px;}
._3d{width:258.508051px;}
._4a{width:263.899438px;}
._2d{width:305.618726px;}
._25{width:311.861791px;}
._3e{width:320.651172px;}
._3f{width:330.371147px;}
._23{width:353.427594px;}
._3c{width:365.311176px;}
._49{width:369.143047px;}
._16{width:435.608296px;}
._24{width:441.212468px;}
._48{width:513.494796px;}
._22{width:520.595717px;}
._3b{width:522.674772px;}
._13{width:575.132086px;}
._21{width:640.778119px;}
._4e{width:666.343478px;}
._3a{width:671.744035px;}
._39{width:709.555967px;}
._4d{width:711.267244px;}
._2c{width:797.422107px;}
._5{width:1002.484117px;}
._14{width:1085.843825px;}
._6{width:1103.843825px;}
.fc10{color:rgb(0,176,240);}
.fcf{color:rgb(0,112,192);}
.fcd{color:rgb(0,174,0);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fc3{color:rgb(137,137,137);}
.fc7{color:rgb(0,176,80);}
.fc9{color:rgb(255,255,255);}
.fc5{color:rgb(255,0,0);}
.fc6{color:rgb(255,153,0);}
.fc12{color:rgb(68,114,196);}
.fcb{color:rgb(255,192,0);}
.fc8{color:rgb(192,0,0);}
.fc4{color:rgb(79,129,189);}
.fca{color:rgb(165,0,33);}
.fc11{color:rgb(112,48,160);}
.fce{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fcc{color:rgb(0,0,255);}
.fs13{font-size:15.873638px;}
.fs16{font-size:15.991603px;}
.fs11{font-size:16.916152px;}
.fs1c{font-size:22.320000px;}
.fsb{font-size:23.760000px;}
.fs10{font-size:24.678236px;}
.fs12{font-size:27.342765px;}
.fs1b{font-size:27.360000px;}
.fs15{font-size:27.361935px;}
.fsf{font-size:27.805777px;}
.fs17{font-size:28.080000px;}
.fs14{font-size:28.428042px;}
.fs7{font-size:30.240000px;}
.fs1a{font-size:31.680000px;}
.fse{font-size:32.400000px;}
.fs3{font-size:36.000000px;}
.fs19{font-size:39.600783px;}
.fs1d{font-size:40.320368px;}
.fs5{font-size:41.759538px;}
.fsa{font-size:48.240229px;}
.fs8{font-size:52.560690px;}
.fs2{font-size:53.999861px;}
.fsd{font-size:59.759492px;}
.fs18{font-size:64.079953px;}
.fsc{font-size:65.520598px;}
.fs6{font-size:66.240183px;}
.fs9{font-size:71.999814px;}
.fs0{font-size:74.161519px;}
.fs4{font-size:84.240136px;}
.fs1{font-size:95.759399px;}
.fs1e{font-size:120.240044px;}
.y0{bottom:0.000000px;}
.y8e{bottom:0.540046px;}
.y5d{bottom:1.438289px;}
.y2{bottom:32.933358px;}
.y8d{bottom:154.440033px;}
.y9d{bottom:164.880066px;}
.y10{bottom:170.100083px;}
.ya5{bottom:179.820099px;}
.y3c{bottom:181.800041px;}
.y110{bottom:196.200096px;}
.y1c{bottom:196.920043px;}
.y8a{bottom:197.095309px;}
.y3b{bottom:198.900872px;}
.y167{bottom:200.342824px;}
.y3e{bottom:202.152392px;}
.y12f{bottom:203.770780px;}
.yd1{bottom:205.372909px;}
.y1b{bottom:205.920043px;}
.y158{bottom:208.084062px;}
.yb6{bottom:208.258665px;}
.y14d{bottom:209.163434px;}
.yaf{bottom:209.880066px;}
.y13{bottom:211.694462px;}
.ydf{bottom:215.455090px;}
.y12e{bottom:216.374646px;}
.yae{bottom:220.680039px;}
.yf9{bottom:224.287433px;}
.y122{bottom:230.580093px;}
.y14c{bottom:230.945115px;}
.yad{bottom:231.480079px;}
.y157{bottom:232.378859px;}
.y71{bottom:234.718973px;}
.yde{bottom:235.260658px;}
.y74{bottom:239.584514px;}
.yf8{bottom:240.482596px;}
.y121{bottom:241.380066px;}
.yac{bottom:244.261323px;}
.y120{bottom:252.180039px;}
.y72{bottom:252.183006px;}
.y14b{bottom:252.899878px;}
.ydd{bottom:255.056159px;}
.y34{bottom:256.326203px;}
.yf7{bottom:256.686048px;}
.y37{bottom:257.402947px;}
.y75{bottom:259.920140px;}
.y100{bottom:260.288203px;}
.y11f{bottom:262.980079px;}
.y70{bottom:269.280435px;}
.yf6{bottom:272.881211px;}
.y106{bottom:273.236157px;}
.ye2{bottom:273.953842px;}
.y73{bottom:274.681639px;}
.ydc{bottom:274.856594px;}
.y14a{bottom:274.862849px;}
.y15b{bottom:275.757256px;}
.ya9{bottom:278.280052px;}
.y156{bottom:280.980845px;}
.y76{bottom:285.121306px;}
.y33{bottom:287.999792px;}
.yf5{bottom:289.084662px;}
.y11e{bottom:294.300041px;}
.ydb{bottom:294.657128px;}
.y32{bottom:300.057256px;}
.ycd{bottom:300.418374px;}
.y132{bottom:300.603782px;}
.y14e{bottom:300.962178px;}
.y11d{bottom:305.100083px;}
.yf4{bottom:305.283930px;}
.y166{bottom:311.395570px;}
.yb1{bottom:314.286773px;}
.yda{bottom:314.452529px;}
.y11c{bottom:315.900055px;}
.yb3{bottom:316.093272px;}
.ya7{bottom:316.980079px;}
.y8b{bottom:319.860077px;}
.y90{bottom:321.840088px;}
.y11b{bottom:326.700096px;}
.yb0{bottom:326.890639px;}
.yb2{bottom:328.687493px;}
.y6d{bottom:332.285524px;}
.y6e{bottom:332.462711px;}
.y8c{bottom:333.360077px;}
.yd9{bottom:334.258097px;}
.y12d{bottom:336.957465px;}
.yff{bottom:339.305197px;}
.ya4{bottom:340.380066px;}
.y11a{bottom:342.900055px;}
.y89{bottom:348.480079px;}
.y88{bottom:349.920043px;}
.y119{bottom:353.700096px;}
.yd8{bottom:354.058631px;}
.y104{bottom:360.720783px;}
.ya8{bottom:363.420043px;}
.ycb{bottom:364.135680px;}
.y118{bottom:364.500068px;}
.y36{bottom:369.358815px;}
.yd7{bottom:373.859067px;}
.y117{bottom:375.300041px;}
.y165{bottom:383.404559px;}
.y10d{bottom:385.567176px;}
.y116{bottom:386.100083px;}
.y35{bottom:390.963364px;}
.yd6{bottom:393.654567px;}
.y115{bottom:396.900055px;}
.y114{bottom:407.700096px;}
.ya6{bottom:409.860077px;}
.yd5{bottom:413.460036px;}
.y113{bottom:418.500068px;}
.y10e{bottom:419.048862px;}
.yfe{bottom:419.402796px;}
.y85{bottom:421.921341px;}
.y150{bottom:425.880066px;}
.ycc{bottom:427.858118px;}
.y19{bottom:428.934601px;}
.yd4{bottom:433.260570px;}
.y84{bottom:438.124792px;}
.y10f{bottom:440.646769px;}
.y131{bottom:442.089990px;}
.y6f{bottom:442.261150px;}
.y130{bottom:442.631610px;}
.y39{bottom:444.772946px;}
.y10c{bottom:445.326953px;}
.y112{bottom:445.500068px;}
.y155{bottom:447.663686px;}
.y18{bottom:448.917000px;}
.y9f{bottom:451.621446px;}
.y83{bottom:454.319956px;}
.yaa{bottom:456.300041px;}
.y87{bottom:456.660070px;}
.y38{bottom:463.680331px;}
.y86{bottom:465.661969px;}
.yd3{bottom:466.920301px;}
.y101{bottom:467.280189px;}
.y154{bottom:467.454054px;}
.y9e{bottom:467.820793px;}
.y17{bottom:468.717485px;}
.y82{bottom:470.523407px;}
.yab{bottom:472.142465px;}
.yb5{bottom:472.678879px;}
.y6c{bottom:474.837575px;}
.y124{bottom:476.277887px;}
.y50{bottom:476.278006px;}
.y14f{bottom:478.435838px;}
.yf0{bottom:478.977351px;}
.y12{bottom:480.596971px;}
.yf{bottom:481.496753px;}
.yb9{bottom:482.216591px;}
.y134{bottom:482.400055px;}
.y81{bottom:487.444785px;}
.y3d{bottom:488.521465px;}
.y15{bottom:488.695007px;}
.yca{bottom:490.680916px;}
.y107{bottom:491.214408px;}
.yd2{bottom:492.120592px;}
.y111{bottom:492.294134px;}
.ye1{bottom:492.480480px;}
.y15a{bottom:492.662073px;}
.y133{bottom:493.200096px;}
.yc8{bottom:493.373859px;}
.y103{bottom:493.560268px;}
.yf3{bottom:494.453585px;}
.ya3{bottom:494.639993px;}
.yfb{bottom:494.813535px;}
.y1a{bottom:496.079607px;}
.yc4{bottom:498.412662px;}
.yfd{bottom:499.144734px;}
.y77{bottom:500.758522px;}
.y123{bottom:500.932001px;}
.y3a{bottom:501.118409px;}
.ya0{bottom:502.011789px;}
.y8f{bottom:507.596826px;}
.ye{bottom:719.280052px;}
.y27{bottom:730.800076px;}
.y28{bottom:746.280052px;}
.y56{bottom:747.694078px;}
.y5b{bottom:748.238163px;}
.y5c{bottom:748.628840px;}
.y4d{bottom:748.806210px;}
.y55{bottom:749.345828px;}
.ye6{bottom:749.701745px;}
.y5e{bottom:749.703915px;}
.y57{bottom:749.712495px;}
.y2f{bottom:750.060070px;}
.y5a{bottom:750.067130px;}
.yf2{bottom:753.654733px;}
.y15d{bottom:755.996482px;}
.y12a{bottom:756.903257px;}
.y2e{bottom:757.260064px;}
.y153{bottom:758.699541px;}
.y48{bottom:760.140060px;}
.yf1{bottom:768.059980px;}
.yc3{bottom:768.060070px;}
.y149{bottom:770.940067px;}
.yd{bottom:770.943780px;}
.y26{bottom:773.277806px;}
.y152{bottom:774.902952px;}
.y129{bottom:778.858020px;}
.y80{bottom:780.843802px;}
.y148{bottom:781.740074px;}
.y7f{bottom:782.100360px;}
.y78{bottom:786.600083px;}
.yb8{bottom:786.961798px;}
.yc2{bottom:788.040081px;}
.y147{bottom:792.540081px;}
.yc7{bottom:793.083897px;}
.y25{bottom:794.881281px;}
.y24{bottom:795.601989px;}
.y128{bottom:800.639741px;}
.y4a{bottom:803.340054px;}
.yc{bottom:803.342355px;}
.yc1{bottom:804.240074px;}
.y4c{bottom:804.780052px;}
.y7a{bottom:810.720051px;}
.y49{bottom:813.240074px;}
.yd0{bottom:813.594324px;}
.y102{bottom:814.139058px;}
.y146{bottom:814.140060px;}
.y108{bottom:814.680053px;}
.y4b{bottom:814.680073px;}
.y23{bottom:817.205437px;}
.yb{bottom:819.541662px;}
.yc0{bottom:820.440067px;}
.y127{bottom:822.602712px;}
.ycf{bottom:822.957372px;}
.y145{bottom:824.940067px;}
.y105{bottom:826.196157px;}
.ye4{bottom:826.740854px;}
.y2c{bottom:831.240074px;}
.y15c{bottom:835.559204px;}
.ya{bottom:835.740970px;}
.ybf{bottom:836.640060px;}
.y2b{bottom:839.702790px;}
.y164{bottom:840.602408px;}
.y144{bottom:841.140060px;}
.y12b{bottom:844.738906px;}
.y9{bottom:851.763936px;}
.y143{bottom:851.940067px;}
.y2a{bottom:852.303420px;}
.ybe{bottom:852.840054px;}
.y30{bottom:853.378930px;}
.y163{bottom:856.800065px;}
.y142{bottom:862.740074px;}
.ybd{bottom:863.640060px;}
.y1f{bottom:864.358632px;}
.y141{bottom:873.540081px;}
.y91{bottom:879.660354px;}
.y8{bottom:884.162510px;}
.y140{bottom:884.340054px;}
.y4e{bottom:886.684127px;}
.y2d{bottom:887.939628px;}
.y162{bottom:889.198640px;}
.yef{bottom:892.625454px;}
.y13f{bottom:895.140060px;}
.y9a{bottom:895.500380px;}
.y58{bottom:897.127337px;}
.y60{bottom:899.103410px;}
.y7{bottom:900.543108px;}
.y54{bottom:903.589932px;}
.y52{bottom:904.147099px;}
.y22{bottom:904.682752px;}
.y53{bottom:905.038849px;}
.y161{bottom:905.401246px;}
.y21{bottom:905.403432px;}
.y5f{bottom:906.484151px;}
.y59{bottom:907.744266px;}
.yee{bottom:909.183102px;}
.y99{bottom:911.702986px;}
.y13e{bottom:914.760064px;}
.y6{bottom:916.739116px;}
.yed{bottom:921.783732px;}
.y79{bottom:925.380066px;}
.y13d{bottom:925.560070px;}
.y20{bottom:926.998110px;}
.y98{bottom:927.898995px;}
.y66{bottom:928.080059px;}
.y43{bottom:934.560297px;}
.y13c{bottom:936.360077px;}
.y40{bottom:936.900683px;}
.y160{bottom:937.799841px;}
.ybc{bottom:939.595301px;}
.y97{bottom:944.101581px;}
.ye7{bottom:944.642112px;}
.y13b{bottom:947.160049px;}
.y5{bottom:950.943852px;}
.y47{bottom:952.380066px;}
.y45{bottom:954.000068px;}
.y65{bottom:954.718508px;}
.y13a{bottom:957.960056px;}
.ybb{bottom:959.397809px;}
.y96{bottom:960.297589px;}
.y46{bottom:962.280053px;}
.y44{bottom:963.900055px;}
.y1e{bottom:964.263634px;}
.y7e{bottom:966.421359px;}
.y15f{bottom:970.198436px;}
.y67{bottom:974.700061px;}
.y126{bottom:974.880066px;}
.y6b{bottom:975.960074px;}
.y95{bottom:976.500176px;}
.yba{bottom:979.200342px;}
.y7d{bottom:982.801916px;}
.y139{bottom:984.960074px;}
.y63{bottom:985.682541px;}
.y4{bottom:986.040477px;}
.y94{bottom:992.702782px;}
.y3f{bottom:995.574904px;}
.y138{bottom:995.760064px;}
.y42{bottom:995.764168px;}
.ye8{bottom:996.123918px;}
.y10a{bottom:996.835819px;}
.y7c{bottom:998.997924px;}
.y62{bottom:1002.063098px;}
.y64{bottom:1002.958728px;}
.y15e{bottom:1003.320750px;}
.y93{bottom:1008.898791px;}
.y68{bottom:1011.600065px;}
.y151{bottom:1012.504230px;}
.y3{bottom:1014.843109px;}
.y109{bottom:1016.638327px;}
.yec{bottom:1017.542774px;}
.y61{bottom:1018.259106px;}
.y1d{bottom:1020.954601px;}
.y7b{bottom:1022.398743px;}
.ya2{bottom:1024.200061px;}
.y69{bottom:1024.380066px;}
.y29{bottom:1024.923406px;}
.y92{bottom:1025.101377px;}
.y137{bottom:1025.282220px;}
.y6a{bottom:1025.820065px;}
.y9c{bottom:1026.538380px;}
.y125{bottom:1027.619050px;}
.y16{bottom:1027.980479px;}
.yb4{bottom:1029.060205px;}
.yeb{bottom:1030.144042px;}
.yb7{bottom:1031.404778px;}
.y41{bottom:1031.581935px;}
.yc9{bottom:1034.284082px;}
.y11{bottom:1036.083646px;}
.yfa{bottom:1037.338200px;}
.y14{bottom:1037.698119px;}
.yce{bottom:1039.682773px;}
.ye3{bottom:1041.482336px;}
.y159{bottom:1041.842275px;}
.yfc{bottom:1042.736890px;}
.yea{bottom:1042.740207px;}
.ya1{bottom:1043.641819px;}
.y10b{bottom:1044.896373px;}
.ye0{bottom:1045.976114px;}
.y136{bottom:1046.880624px;}
.yc6{bottom:1046.881027px;}
.yc5{bottom:1047.600849px;}
.y4f{bottom:1048.495500px;}
.y51{bottom:1049.935144px;}
.y12c{bottom:1050.120250px;}
.y31{bottom:1050.295063px;}
.y9b{bottom:1051.014886px;}
.ye5{bottom:1053.184646px;}
.ye9{bottom:1056.963006px;}
.y135{bottom:1063.083210px;}
.y1{bottom:1240.021443px;}
.h27{height:8.099694px;}
.h33{height:9.180038px;}
.h20{height:11.556443px;}
.h25{height:11.642324px;}
.h1e{height:12.364980px;}
.h1d{height:18.038730px;}
.h22{height:18.504430px;}
.h28{height:18.517403px;}
.h21{height:19.091872px;}
.h26{height:19.105257px;}
.h1f{height:19.906281px;}
.h24{height:19.920237px;}
.h1c{height:20.324828px;}
.h23{height:20.779677px;}
.h36{height:22.200117px;}
.h13{height:23.632383px;}
.h2d{height:27.929180px;}
.h34{height:28.014609px;}
.h3a{height:28.995148px;}
.hb{height:30.077578px;}
.h12{height:30.524428px;}
.h1a{height:30.849609px;}
.h35{height:30.963516px;}
.h32{height:31.509844px;}
.h7{height:35.806641px;}
.h11{height:36.861328px;}
.h5{height:41.185441px;}
.h37{height:41.535244px;}
.h3d{height:42.248858px;}
.h9{height:42.758668px;}
.h30{height:45.509648px;}
.h6{height:47.223511px;}
.h2a{height:47.981127px;}
.h38{height:49.394415px;}
.h3c{height:51.415883px;}
.h1b{height:52.709258px;}
.h4{height:53.709822px;}
.h29{height:55.291849px;}
.h31{height:56.009139px;}
.h19{height:56.899907px;}
.h39{height:59.438518px;}
.h15{height:60.679531px;}
.h18{height:62.385335px;}
.h2c{height:65.229022px;}
.h2e{height:65.613115px;}
.ha{height:65.884401px;}
.hc{height:65.890904px;}
.h2b{height:67.825031px;}
.h17{height:69.477130px;}
.hd{height:71.613096px;}
.he{height:73.722466px;}
.h2{height:73.763191px;}
.h3b{height:80.061220px;}
.h3e{height:80.061288px;}
.h8{height:86.255648px;}
.h2f{height:86.543479px;}
.h3{height:98.050517px;}
.h16{height:106.922893px;}
.h14{height:115.413192px;}
.h3f{height:119.594223px;}
.hf{height:155.108976px;}
.h10{height:155.144060px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.960020px;}
.w3{width:7.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:88.198015px;}
.x27{left:102.239997px;}
.x20{left:106.022187px;}
.x15{left:107.640000px;}
.x6{left:109.260003px;}
.x69{left:111.058307px;}
.x1b{left:112.858340px;}
.x2c{left:114.297992px;}
.xe{left:116.458628px;}
.x13{left:118.616890px;}
.xd{left:120.776416px;}
.xc{left:123.836472px;}
.x3{left:126.899906px;}
.xb{left:128.704785px;}
.xf{left:129.963530px;}
.x10{left:131.035794px;}
.x5{left:133.022122px;}
.x75{left:134.278289px;}
.x9{left:136.797674px;}
.x88{left:140.579999px;}
.xa1{left:142.199693px;}
.xa2{left:144.002859px;}
.x4{left:145.441034px;}
.x97{left:149.218300px;}
.x78{left:151.379288px;}
.x24{left:153.539911px;}
.x73{left:155.879998px;}
.x3e{left:160.561341px;}
.x71{left:166.319996px;}
.x2d{left:167.939937px;}
.x4f{left:176.580606px;}
.x56{left:184.319996px;}
.xa4{left:186.837414px;}
.x72{left:188.460005px;}
.x57{left:193.319996px;}
.x96{left:199.439999px;}
.x90{left:200.879998px;}
.x92{left:208.080008px;}
.x9c{left:217.080008px;}
.x91{left:219.060001px;}
.x8e{left:220.319996px;}
.x95{left:221.400003px;}
.x6f{left:224.099997px;}
.x50{left:228.062412px;}
.x8f{left:229.139992px;}
.x12{left:231.301177px;}
.x7{left:242.097841px;}
.x4e{left:247.316995px;}
.x14{left:252.359710px;}
.x29{left:259.560001px;}
.x26{left:264.780001px;}
.x51{left:273.420448px;}
.x3b{left:281.161753px;}
.xa3{left:286.920455px;}
.x3d{left:291.422271px;}
.x61{left:292.680005px;}
.x3c{left:295.373524px;}
.x3a{left:298.797531px;}
.x22{left:303.656940px;}
.x2e{left:307.075481px;}
.x2f{left:313.028454px;}
.x30{left:317.691736px;}
.x31{left:325.627838px;}
.x5b{left:327.416343px;}
.x32{left:329.931117px;}
.x5d{left:332.996959px;}
.x33{left:340.930249px;}
.x58{left:342.179284px;}
.x34{left:345.410873px;}
.x8{left:353.156617px;}
.x35{left:357.834699px;}
.x67{left:364.860008px;}
.x36{left:369.010386px;}
.x37{left:373.673675px;}
.x5f{left:375.300007px;}
.x1a{left:377.280512px;}
.x38{left:379.991430px;}
.x39{left:384.291883px;}
.x5e{left:386.818839px;}
.x5a{left:389.336904px;}
.x89{left:391.319996px;}
.x68{left:401.399987px;}
.x70{left:409.860008px;}
.x9d{left:414.536461px;}
.x52{left:421.016997px;}
.x4c{left:425.339985px;}
.x93{left:427.500000px;}
.x28{left:435.060001px;}
.x65{left:445.860008px;}
.x21{left:451.803015px;}
.x64{left:460.980011px;}
.x63{left:462.240325px;}
.x9b{left:466.018247px;}
.x9a{left:471.781950px;}
.x1e{left:473.395268px;}
.x7c{left:480.241323px;}
.x25{left:482.220017px;}
.xa{left:483.832338px;}
.x46{left:490.497419px;}
.x3f{left:498.056398px;}
.x44{left:500.394945px;}
.x76{left:504.903501px;}
.x9e{left:507.060325px;}
.x5c{left:510.656957px;}
.x6e{left:516.058081px;}
.x94{left:517.680005px;}
.x47{left:521.286133px;}
.x98{left:522.714264px;}
.x9f{left:523.980608px;}
.x82{left:525.241270px;}
.x23{left:528.652980px;}
.x74{left:543.055572px;}
.x8a{left:558.000000px;}
.x17{left:565.011587px;}
.x85{left:567.534936px;}
.x86{left:570.411857px;}
.x1d{left:571.496329px;}
.x48{left:575.639992px;}
.x59{left:591.295018px;}
.x53{left:592.918259px;}
.x87{left:594.896267px;}
.x4d{left:595.975205px;}
.x99{left:597.413207px;}
.x2a{left:598.671677px;}
.x6b{left:600.659981px;}
.x6c{left:601.919975px;}
.x8b{left:604.799973px;}
.x2b{left:612.175533px;}
.x41{left:614.176138px;}
.x66{left:618.120002px;}
.x6a{left:620.460970px;}
.x43{left:624.598625px;}
.x80{left:626.579748px;}
.x42{left:628.558630px;}
.x49{left:630.720017px;}
.x40{left:632.155742px;}
.x54{left:636.119122px;}
.x45{left:639.896680px;}
.x81{left:645.482461px;}
.x7f{left:647.646587px;}
.x84{left:651.603057px;}
.x19{left:653.220695px;}
.x83{left:654.304513px;}
.x77{left:656.641591px;}
.x7a{left:659.523330px;}
.x79{left:663.119161px;}
.x1c{left:664.555815px;}
.xa0{left:667.259653px;}
.x7d{left:672.290616px;}
.x16{left:682.916616px;}
.x18{left:684.179970px;}
.x1f{left:693.894708px;}
.x6d{left:695.873364px;}
.x4a{left:701.100014px;}
.x8c{left:705.240006px;}
.x7e{left:727.370147px;}
.x4b{left:745.379998px;}
.x8d{left:757.440033px;}
.x55{left:767.336782px;}
.x7b{left:788.397487px;}
.x60{left:798.659981px;}
.x1{left:800.644474px;}
.x62{left:864.010383px;}
.x2{left:873.550414px;}
@media print{
.v10{vertical-align:-46.713805pt;}
.ve{vertical-align:-40.312282pt;}
.v18{vertical-align:-32.671236pt;}
.v17{vertical-align:-23.675520pt;}
.v3{vertical-align:-19.176971pt;}
.vd{vertical-align:-14.077055pt;}
.v7{vertical-align:-12.853606pt;}
.vc{vertical-align:-11.528462pt;}
.v12{vertical-align:-9.662371pt;}
.v4{vertical-align:-6.399904pt;}
.v5{vertical-align:-4.489680pt;}
.vb{vertical-align:-3.208057pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.193537pt;}
.v16{vertical-align:8.985348pt;}
.vf{vertical-align:10.239289pt;}
.va{vertical-align:11.509314pt;}
.v15{vertical-align:14.714966pt;}
.v14{vertical-align:15.935582pt;}
.v2{vertical-align:19.176971pt;}
.v13{vertical-align:24.959964pt;}
.v8{vertical-align:31.386486pt;}
.v11{vertical-align:36.474516pt;}
.v19{vertical-align:38.399904pt;}
.v6{vertical-align:48.652143pt;}
.v1{vertical-align:74.218560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.024905pt;}
.ls21{letter-spacing:0.071439pt;}
.ls20{letter-spacing:0.073270pt;}
.ls5{letter-spacing:0.171521pt;}
.ls19{letter-spacing:0.174747pt;}
.ls4{letter-spacing:0.193246pt;}
.ls1a{letter-spacing:0.193288pt;}
.ls7{letter-spacing:6.335114pt;}
.ls8{letter-spacing:6.341782pt;}
.ls1b{letter-spacing:7.423960pt;}
.ls1c{letter-spacing:8.064100pt;}
.lsa{letter-spacing:10.914139pt;}
.ls16{letter-spacing:10.914246pt;}
.ls1{letter-spacing:12.985627pt;}
.ls1d{letter-spacing:13.621773pt;}
.ls3{letter-spacing:14.190434pt;}
.ls6{letter-spacing:22.051967pt;}
.ls15{letter-spacing:31.200018pt;}
.ls24{letter-spacing:43.361051pt;}
.ls18{letter-spacing:43.363948pt;}
.ls17{letter-spacing:43.375642pt;}
.ls1e{letter-spacing:47.159824pt;}
.ls1f{letter-spacing:51.698377pt;}
.ls9{letter-spacing:55.527985pt;}
.ls2{letter-spacing:55.966497pt;}
.ls22{letter-spacing:83.941320pt;}
.ls14{letter-spacing:128.655950pt;}
.ls11{letter-spacing:143.383457pt;}
.ls13{letter-spacing:146.600383pt;}
.ls10{letter-spacing:160.024054pt;}
.lsc{letter-spacing:385.937572pt;}
.lse{letter-spacing:387.888856pt;}
.lsf{letter-spacing:398.098677pt;}
.lsb{letter-spacing:404.523445pt;}
.lsd{letter-spacing:405.156230pt;}
.ls12{letter-spacing:419.236289pt;}
.ws46{word-spacing:-53.119548pt;}
.ws13{word-spacing:-49.918538pt;}
.ws1{word-spacing:-47.999876pt;}
.ws4c{word-spacing:-37.119590pt;}
.ws2f{word-spacing:-37.107131pt;}
.ws57{word-spacing:-24.154889pt;}
.ws48{word-spacing:-16.922907pt;}
.ws0{word-spacing:-14.898225pt;}
.ws5{word-spacing:-14.463963pt;}
.ws24{word-spacing:-14.179563pt;}
.ws20{word-spacing:-14.169629pt;}
.ws12{word-spacing:-14.079964pt;}
.ws3c{word-spacing:-13.306917pt;}
.ws18{word-spacing:-13.162360pt;}
.ws1b{word-spacing:-12.005018pt;}
.wse{word-spacing:-10.847972pt;}
.ws33{word-spacing:-10.559973pt;}
.wsb{word-spacing:-9.862447pt;}
.ws2b{word-spacing:-9.690926pt;}
.ws43{word-spacing:-8.389027pt;}
.ws47{word-spacing:-8.099914pt;}
.ws36{word-spacing:-7.744153pt;}
.ws2e{word-spacing:-7.232000pt;}
.ws25{word-spacing:-6.999616pt;}
.ws1c{word-spacing:-6.508800pt;}
.ws38{word-spacing:-6.364160pt;}
.ws1e{word-spacing:-6.076330pt;}
.ws2c{word-spacing:-6.074880pt;}
.ws30{word-spacing:-5.640960pt;}
.ws10{word-spacing:-4.773120pt;}
.ws3b{word-spacing:-4.483840pt;}
.ws1f{word-spacing:-4.165133pt;}
.ws41{word-spacing:-2.171524pt;}
.ws49{word-spacing:-1.825285pt;}
.ws45{word-spacing:-1.797123pt;}
.ws3d{word-spacing:-1.647363pt;}
.ws53{word-spacing:-1.572483pt;}
.ws3a{word-spacing:-1.422722pt;}
.ws4{word-spacing:-1.325245pt;}
.ws44{word-spacing:-0.898561pt;}
.wsc{word-spacing:-0.895998pt;}
.ws2d{word-spacing:-0.887040pt;}
.ws8{word-spacing:-0.821996pt;}
.ws17{word-spacing:-0.765442pt;}
.ws40{word-spacing:-0.673921pt;}
.wsa{word-spacing:-0.511999pt;}
.ws9{word-spacing:-0.432921pt;}
.ws31{word-spacing:-0.431999pt;}
.ws39{word-spacing:-0.266066pt;}
.ws7{word-spacing:-0.195793pt;}
.ws11{word-spacing:-0.192000pt;}
.ws23{word-spacing:-0.075808pt;}
.ws3{word-spacing:-0.066502pt;}
.ws28{word-spacing:-0.043310pt;}
.ws6{word-spacing:-0.035221pt;}
.wsd{word-spacing:-0.032000pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.074149pt;}
.ws26{word-spacing:0.075808pt;}
.ws42{word-spacing:0.096000pt;}
.ws35{word-spacing:0.144000pt;}
.ws3e{word-spacing:0.224000pt;}
.ws56{word-spacing:0.234019pt;}
.ws1d{word-spacing:0.420176pt;}
.ws32{word-spacing:1.103997pt;}
.ws34{word-spacing:5.605735pt;}
.ws16{word-spacing:5.829136pt;}
.ws37{word-spacing:48.223735pt;}
.ws4f{word-spacing:76.094682pt;}
.ws4d{word-spacing:89.312008pt;}
.ws50{word-spacing:93.186247pt;}
.ws54{word-spacing:93.696000pt;}
.ws22{word-spacing:99.779487pt;}
.ws27{word-spacing:102.517835pt;}
.ws51{word-spacing:104.576000pt;}
.ws4e{word-spacing:135.426363pt;}
.ws3f{word-spacing:153.312000pt;}
.ws2a{word-spacing:226.474311pt;}
.ws29{word-spacing:228.268542pt;}
.wsf{word-spacing:244.793383pt;}
.ws52{word-spacing:308.447204pt;}
.ws55{word-spacing:314.687188pt;}
.ws4b{word-spacing:319.614313pt;}
.ws4a{word-spacing:325.390932pt;}
.ws19{word-spacing:370.137013pt;}
.ws15{word-spacing:406.311227pt;}
.ws1a{word-spacing:474.434741pt;}
.ws14{word-spacing:495.998752pt;}
._17{margin-left:-80.886388pt;}
._18{margin-left:-43.126406pt;}
._12{margin-left:-8.850974pt;}
._28{margin-left:-6.888971pt;}
._7{margin-left:-5.231385pt;}
._3{margin-left:-3.829110pt;}
._1{margin-left:-2.468465pt;}
._2{margin-left:-1.496993pt;}
._0{width:1.582112pt;}
._1e{width:2.611870pt;}
._a{width:4.366215pt;}
._1f{width:7.146799pt;}
._4{width:9.695235pt;}
._2a{width:11.143580pt;}
._b{width:12.038441pt;}
._d{width:13.540436pt;}
._9{width:14.741145pt;}
._20{width:15.799706pt;}
._27{width:16.773147pt;}
._8{width:18.180455pt;}
._10{width:19.711949pt;}
._4f{width:21.058399pt;}
._11{width:23.154425pt;}
._29{width:27.791437pt;}
._50{width:33.711683pt;}
._e{width:51.459741pt;}
._30{width:53.145109pt;}
._2f{width:61.739701pt;}
._2b{width:86.038585pt;}
._32{width:92.096000pt;}
._19{width:99.211013pt;}
._1c{width:101.431253pt;}
._45{width:103.744000pt;}
._1b{width:107.861700pt;}
._1a{width:111.074812pt;}
._1d{width:113.307857pt;}
._44{width:117.635737pt;}
._36{width:125.952000pt;}
._f{width:133.515027pt;}
._35{width:134.848000pt;}
._15{width:149.675641pt;}
._c{width:153.454776pt;}
._34{width:155.729224pt;}
._38{width:158.993743pt;}
._47{width:160.017743pt;}
._26{width:162.963502pt;}
._33{width:165.824000pt;}
._37{width:167.505743pt;}
._46{width:168.529743pt;}
._41{width:171.601441pt;}
._31{width:175.377743pt;}
._43{width:181.504000pt;}
._42{width:183.825013pt;}
._4c{width:186.001403pt;}
._40{width:194.172263pt;}
._2e{width:195.115375pt;}
._4b{width:210.289341pt;}
._3d{width:229.784934pt;}
._4a{width:234.577278pt;}
._2d{width:271.661090pt;}
._25{width:277.210481pt;}
._3e{width:285.023264pt;}
._3f{width:293.663242pt;}
._23{width:314.157861pt;}
._3c{width:324.721045pt;}
._49{width:328.127153pt;}
._16{width:387.207374pt;}
._24{width:392.188861pt;}
._48{width:456.439819pt;}
._22{width:462.751748pt;}
._3b{width:464.599798pt;}
._13{width:511.228521pt;}
._21{width:569.580550pt;}
._4e{width:592.305314pt;}
._3a{width:597.105809pt;}
._39{width:630.716415pt;}
._4d{width:632.237550pt;}
._2c{width:708.819650pt;}
._5{width:891.096993pt;}
._14{width:965.194511pt;}
._6{width:981.194511pt;}
.fs13{font-size:14.109900pt;}
.fs16{font-size:14.214758pt;}
.fs11{font-size:15.036580pt;}
.fs1c{font-size:19.840000pt;}
.fsb{font-size:21.120000pt;}
.fs10{font-size:21.936209pt;}
.fs12{font-size:24.304680pt;}
.fs1b{font-size:24.320000pt;}
.fs15{font-size:24.321720pt;}
.fsf{font-size:24.716247pt;}
.fs17{font-size:24.960000pt;}
.fs14{font-size:25.269370pt;}
.fs7{font-size:26.880000pt;}
.fs1a{font-size:28.160000pt;}
.fse{font-size:28.800000pt;}
.fs3{font-size:32.000000pt;}
.fs19{font-size:35.200696pt;}
.fs1d{font-size:35.840327pt;}
.fs5{font-size:37.119590pt;}
.fsa{font-size:42.880204pt;}
.fs8{font-size:46.720613pt;}
.fs2{font-size:47.999876pt;}
.fsd{font-size:53.119548pt;}
.fs18{font-size:56.959958pt;}
.fsc{font-size:58.240531pt;}
.fs6{font-size:58.880163pt;}
.fs9{font-size:63.999835pt;}
.fs0{font-size:65.921350pt;}
.fs4{font-size:74.880121pt;}
.fs1{font-size:85.119466pt;}
.fs1e{font-size:106.880039pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:0.480041pt;}
.y5d{bottom:1.278479pt;}
.y2{bottom:29.274096pt;}
.y8d{bottom:137.280030pt;}
.y9d{bottom:146.560059pt;}
.y10{bottom:151.200074pt;}
.ya5{bottom:159.840088pt;}
.y3c{bottom:161.600037pt;}
.y110{bottom:174.400086pt;}
.y1c{bottom:175.040039pt;}
.y8a{bottom:175.195830pt;}
.y3b{bottom:176.800775pt;}
.y167{bottom:178.082510pt;}
.y3e{bottom:179.691015pt;}
.y12f{bottom:181.129582pt;}
.yd1{bottom:182.553697pt;}
.y1b{bottom:183.040039pt;}
.y158{bottom:184.963611pt;}
.yb6{bottom:185.118813pt;}
.y14d{bottom:185.923052pt;}
.yaf{bottom:186.560059pt;}
.y13{bottom:188.172855pt;}
.ydf{bottom:191.515636pt;}
.y12e{bottom:192.333019pt;}
.yae{bottom:196.160035pt;}
.yf9{bottom:199.366607pt;}
.y122{bottom:204.960083pt;}
.y14c{bottom:205.284546pt;}
.yad{bottom:205.760071pt;}
.y157{bottom:206.558986pt;}
.y71{bottom:208.639087pt;}
.yde{bottom:209.120585pt;}
.y74{bottom:212.964013pt;}
.yf8{bottom:213.762308pt;}
.y121{bottom:214.560059pt;}
.yac{bottom:217.121176pt;}
.y120{bottom:224.160035pt;}
.y72{bottom:224.162672pt;}
.y14b{bottom:224.799891pt;}
.ydd{bottom:226.716585pt;}
.y34{bottom:227.845514pt;}
.yf7{bottom:228.165376pt;}
.y37{bottom:228.802619pt;}
.y75{bottom:231.040124pt;}
.y100{bottom:231.367292pt;}
.y11f{bottom:233.760071pt;}
.y70{bottom:239.360387pt;}
.yf6{bottom:242.561076pt;}
.y106{bottom:242.876584pt;}
.ye2{bottom:243.514526pt;}
.y73{bottom:244.161457pt;}
.ydc{bottom:244.316972pt;}
.y14a{bottom:244.322532pt;}
.y15b{bottom:245.117561pt;}
.ya9{bottom:247.360047pt;}
.y156{bottom:249.760751pt;}
.y76{bottom:253.441161pt;}
.y33{bottom:255.999815pt;}
.yf5{bottom:256.964144pt;}
.y11e{bottom:261.600037pt;}
.ydb{bottom:261.917447pt;}
.y32{bottom:266.717561pt;}
.ycd{bottom:267.038555pt;}
.y132{bottom:267.203362pt;}
.y14e{bottom:267.521936pt;}
.y11d{bottom:271.200074pt;}
.yf4{bottom:271.363493pt;}
.y166{bottom:276.796063pt;}
.yb1{bottom:279.366021pt;}
.yda{bottom:279.513359pt;}
.y11c{bottom:280.800049pt;}
.yb3{bottom:280.971798pt;}
.ya7{bottom:281.760071pt;}
.y8b{bottom:284.320069pt;}
.y90{bottom:286.080079pt;}
.y11b{bottom:290.400086pt;}
.yb0{bottom:290.569457pt;}
.yb2{bottom:292.166661pt;}
.y6d{bottom:295.364911pt;}
.y6e{bottom:295.522410pt;}
.y8c{bottom:296.320069pt;}
.yd9{bottom:297.118309pt;}
.y12d{bottom:299.517746pt;}
.yff{bottom:301.604620pt;}
.ya4{bottom:302.560059pt;}
.y11a{bottom:304.800049pt;}
.y89{bottom:309.760071pt;}
.y88{bottom:311.040039pt;}
.y119{bottom:314.400086pt;}
.yd8{bottom:314.718783pt;}
.y104{bottom:320.640696pt;}
.ya8{bottom:323.040039pt;}
.ycb{bottom:323.676160pt;}
.y118{bottom:324.000061pt;}
.y36{bottom:328.318947pt;}
.yd7{bottom:332.319170pt;}
.y117{bottom:333.600037pt;}
.y165{bottom:340.804053pt;}
.y10d{bottom:342.726379pt;}
.y116{bottom:343.200074pt;}
.y35{bottom:347.522990pt;}
.yd6{bottom:349.915170pt;}
.y115{bottom:352.800049pt;}
.y114{bottom:362.400086pt;}
.ya6{bottom:364.320069pt;}
.yd5{bottom:367.520032pt;}
.y113{bottom:372.000061pt;}
.y10e{bottom:372.487878pt;}
.yfe{bottom:372.802485pt;}
.y85{bottom:375.041192pt;}
.y150{bottom:378.560059pt;}
.ycc{bottom:380.318327pt;}
.y19{bottom:381.275201pt;}
.yd4{bottom:385.120507pt;}
.y84{bottom:389.444260pt;}
.y10f{bottom:391.686017pt;}
.y131{bottom:392.968880pt;}
.y6f{bottom:393.121022pt;}
.y130{bottom:393.450320pt;}
.y39{bottom:395.353730pt;}
.y10c{bottom:395.846181pt;}
.y112{bottom:396.000061pt;}
.y155{bottom:397.923277pt;}
.y18{bottom:399.037334pt;}
.y9f{bottom:401.441285pt;}
.y83{bottom:403.839960pt;}
.yaa{bottom:405.600037pt;}
.y87{bottom:405.920062pt;}
.y38{bottom:412.160295pt;}
.y86{bottom:413.921750pt;}
.yd3{bottom:415.040268pt;}
.y101{bottom:415.360168pt;}
.y154{bottom:415.514714pt;}
.y9e{bottom:415.840705pt;}
.y17{bottom:416.637764pt;}
.y82{bottom:418.243028pt;}
.yab{bottom:419.682191pt;}
.yb5{bottom:420.159004pt;}
.y6c{bottom:422.077845pt;}
.y124{bottom:423.358122pt;}
.y50{bottom:423.358228pt;}
.y14f{bottom:425.276300pt;}
.yf0{bottom:425.757646pt;}
.y12{bottom:427.197308pt;}
.yf{bottom:427.997114pt;}
.yb9{bottom:428.636970pt;}
.y134{bottom:428.800049pt;}
.y81{bottom:433.284253pt;}
.y3d{bottom:434.241302pt;}
.y15{bottom:434.395562pt;}
.yca{bottom:436.160814pt;}
.y107{bottom:436.635030pt;}
.yd2{bottom:437.440526pt;}
.y111{bottom:437.594786pt;}
.ye1{bottom:437.760426pt;}
.y15a{bottom:437.921843pt;}
.y133{bottom:438.400086pt;}
.yc8{bottom:438.554542pt;}
.y103{bottom:438.720238pt;}
.yf3{bottom:439.514298pt;}
.ya3{bottom:439.679994pt;}
.yfb{bottom:439.834254pt;}
.y1a{bottom:440.959650pt;}
.yc4{bottom:443.033478pt;}
.yfd{bottom:443.684208pt;}
.y77{bottom:445.118686pt;}
.y123{bottom:445.272890pt;}
.y3a{bottom:445.438586pt;}
.ya0{bottom:446.232702pt;}
.y8f{bottom:451.197178pt;}
.ye{bottom:639.360047pt;}
.y27{bottom:649.600068pt;}
.y28{bottom:663.360047pt;}
.y56{bottom:664.616959pt;}
.y5b{bottom:665.100590pt;}
.y5c{bottom:665.447858pt;}
.y4d{bottom:665.605520pt;}
.y55{bottom:666.085181pt;}
.ye6{bottom:666.401551pt;}
.y5e{bottom:666.403480pt;}
.y57{bottom:666.411107pt;}
.y2f{bottom:666.720063pt;}
.y5a{bottom:666.726337pt;}
.yf2{bottom:669.915319pt;}
.y15d{bottom:671.996873pt;}
.y12a{bottom:672.802895pt;}
.y2e{bottom:673.120057pt;}
.y153{bottom:674.399592pt;}
.y48{bottom:675.680054pt;}
.yf1{bottom:682.719982pt;}
.yc3{bottom:682.720063pt;}
.y149{bottom:685.280060pt;}
.yd{bottom:685.283360pt;}
.y26{bottom:687.358050pt;}
.y152{bottom:688.802624pt;}
.y129{bottom:692.318240pt;}
.y80{bottom:694.083380pt;}
.y148{bottom:694.880066pt;}
.y7f{bottom:695.200320pt;}
.y78{bottom:699.200074pt;}
.yb8{bottom:699.521598pt;}
.yc2{bottom:700.480072pt;}
.y147{bottom:704.480072pt;}
.yc7{bottom:704.963464pt;}
.y25{bottom:706.561139pt;}
.y24{bottom:707.201768pt;}
.y128{bottom:711.679770pt;}
.y4a{bottom:714.080048pt;}
.yc{bottom:714.082093pt;}
.yc1{bottom:714.880066pt;}
.y4c{bottom:715.360047pt;}
.y7a{bottom:720.640046pt;}
.y49{bottom:722.880066pt;}
.yd0{bottom:723.194955pt;}
.y102{bottom:723.679162pt;}
.y146{bottom:723.680054pt;}
.y108{bottom:724.160047pt;}
.y4b{bottom:724.160065pt;}
.y23{bottom:726.404833pt;}
.yb{bottom:728.481478pt;}
.yc0{bottom:729.280060pt;}
.y127{bottom:731.202411pt;}
.ycf{bottom:731.517664pt;}
.y145{bottom:733.280060pt;}
.y105{bottom:734.396584pt;}
.ye4{bottom:734.880759pt;}
.y2c{bottom:738.880066pt;}
.y15c{bottom:742.719292pt;}
.ya{bottom:742.880862pt;}
.ybf{bottom:743.680054pt;}
.y2b{bottom:746.402480pt;}
.y164{bottom:747.202140pt;}
.y144{bottom:747.680054pt;}
.y12b{bottom:750.879028pt;}
.y9{bottom:757.123498pt;}
.y143{bottom:757.280060pt;}
.y2a{bottom:757.603040pt;}
.ybe{bottom:758.080048pt;}
.y30{bottom:758.559049pt;}
.y163{bottom:761.600058pt;}
.y142{bottom:766.880066pt;}
.ybd{bottom:767.680054pt;}
.y1f{bottom:768.318784pt;}
.y141{bottom:776.480072pt;}
.y91{bottom:781.920314pt;}
.y8{bottom:785.922231pt;}
.y140{bottom:786.080048pt;}
.y4e{bottom:788.163668pt;}
.y2d{bottom:789.279669pt;}
.y162{bottom:790.398791pt;}
.yef{bottom:793.444848pt;}
.y13f{bottom:795.680054pt;}
.y9a{bottom:796.000338pt;}
.y58{bottom:797.446522pt;}
.y60{bottom:799.203031pt;}
.y7{bottom:800.482762pt;}
.y54{bottom:803.191051pt;}
.y52{bottom:803.686310pt;}
.y22{bottom:804.162446pt;}
.y53{bottom:804.478977pt;}
.y161{bottom:804.801108pt;}
.y21{bottom:804.803051pt;}
.y5f{bottom:805.763690pt;}
.y59{bottom:806.883792pt;}
.yee{bottom:808.162758pt;}
.y99{bottom:810.402655pt;}
.y13e{bottom:813.120057pt;}
.y6{bottom:814.879214pt;}
.yed{bottom:819.363318pt;}
.y79{bottom:822.560059pt;}
.y13d{bottom:822.720063pt;}
.y20{bottom:823.998320pt;}
.y98{bottom:824.799106pt;}
.y66{bottom:824.960053pt;}
.y43{bottom:830.720264pt;}
.y13c{bottom:832.320069pt;}
.y40{bottom:832.800607pt;}
.y160{bottom:833.599859pt;}
.ybc{bottom:835.195823pt;}
.y97{bottom:839.201405pt;}
.ye7{bottom:839.681877pt;}
.y13b{bottom:841.920044pt;}
.y5{bottom:845.283424pt;}
.y47{bottom:846.560059pt;}
.y45{bottom:848.000061pt;}
.y65{bottom:848.638674pt;}
.y13a{bottom:851.520050pt;}
.ybb{bottom:852.798053pt;}
.y96{bottom:853.597857pt;}
.y46{bottom:855.360047pt;}
.y44{bottom:856.800049pt;}
.y1e{bottom:857.123231pt;}
.y7e{bottom:859.041208pt;}
.y15f{bottom:862.398610pt;}
.y67{bottom:866.400055pt;}
.y126{bottom:866.560059pt;}
.y6b{bottom:867.520066pt;}
.y95{bottom:868.000156pt;}
.yba{bottom:870.400304pt;}
.y7d{bottom:873.601703pt;}
.y139{bottom:875.520066pt;}
.y63{bottom:876.162258pt;}
.y4{bottom:876.480424pt;}
.y94{bottom:882.402473pt;}
.y3f{bottom:884.955471pt;}
.y138{bottom:885.120057pt;}
.y42{bottom:885.123705pt;}
.ye8{bottom:885.443482pt;}
.y10a{bottom:886.076284pt;}
.y7c{bottom:887.998155pt;}
.y62{bottom:890.722754pt;}
.y64{bottom:891.518869pt;}
.y15e{bottom:891.840667pt;}
.y93{bottom:896.798925pt;}
.y68{bottom:899.200058pt;}
.y151{bottom:900.003760pt;}
.y3{bottom:902.082763pt;}
.y109{bottom:903.678513pt;}
.yec{bottom:904.482466pt;}
.y61{bottom:905.119205pt;}
.y1d{bottom:907.515201pt;}
.y7b{bottom:908.798883pt;}
.ya2{bottom:910.400055pt;}
.y69{bottom:910.560059pt;}
.y29{bottom:911.043028pt;}
.y92{bottom:911.201224pt;}
.y137{bottom:911.361974pt;}
.y6a{bottom:911.840058pt;}
.y9c{bottom:912.478560pt;}
.y125{bottom:913.439156pt;}
.y16{bottom:913.760426pt;}
.yb4{bottom:914.720182pt;}
.yeb{bottom:915.683593pt;}
.yb7{bottom:916.804247pt;}
.y41{bottom:916.961720pt;}
.yc9{bottom:919.363629pt;}
.y11{bottom:920.963241pt;}
.yfa{bottom:922.078400pt;}
.y14{bottom:922.398328pt;}
.yce{bottom:924.162465pt;}
.ye3{bottom:925.762077pt;}
.y159{bottom:926.082022pt;}
.yfc{bottom:926.877236pt;}
.yea{bottom:926.880184pt;}
.ya1{bottom:927.681617pt;}
.y10b{bottom:928.796776pt;}
.ye0{bottom:929.756546pt;}
.y136{bottom:930.560554pt;}
.yc6{bottom:930.560913pt;}
.yc5{bottom:931.200755pt;}
.y4f{bottom:931.996000pt;}
.y51{bottom:933.275684pt;}
.y12c{bottom:933.440223pt;}
.y31{bottom:933.595612pt;}
.y9b{bottom:934.235454pt;}
.ye5{bottom:936.164129pt;}
.ye9{bottom:939.522672pt;}
.y135{bottom:944.962853pt;}
.y1{bottom:1102.241283pt;}
.h27{height:7.199728pt;}
.h33{height:8.160034pt;}
.h20{height:10.272393pt;}
.h25{height:10.348733pt;}
.h1e{height:10.991094pt;}
.h1d{height:16.034427pt;}
.h22{height:16.448382pt;}
.h28{height:16.459914pt;}
.h21{height:16.970553pt;}
.h26{height:16.982451pt;}
.h1f{height:17.694472pt;}
.h24{height:17.706877pt;}
.h1c{height:18.066514pt;}
.h23{height:18.470824pt;}
.h36{height:19.733438pt;}
.h13{height:21.006563pt;}
.h2d{height:24.825938pt;}
.h34{height:24.901875pt;}
.h3a{height:25.773465pt;}
.hb{height:26.735625pt;}
.h12{height:27.132825pt;}
.h1a{height:27.421875pt;}
.h35{height:27.523125pt;}
.h32{height:28.008750pt;}
.h7{height:31.828125pt;}
.h11{height:32.765625pt;}
.h5{height:36.609280pt;}
.h37{height:36.920217pt;}
.h3d{height:37.554541pt;}
.h9{height:38.007705pt;}
.h30{height:40.453021pt;}
.h6{height:41.976454pt;}
.h2a{height:42.649890pt;}
.h38{height:43.906146pt;}
.h3c{height:45.703007pt;}
.h1b{height:46.852674pt;}
.h4{height:47.742064pt;}
.h29{height:49.148311pt;}
.h31{height:49.785901pt;}
.h19{height:50.577695pt;}
.h39{height:52.834238pt;}
.h15{height:53.937361pt;}
.h18{height:55.453631pt;}
.h2c{height:57.981353pt;}
.h2e{height:58.322769pt;}
.ha{height:58.563912pt;}
.hc{height:58.569692pt;}
.h2b{height:60.288916pt;}
.h17{height:61.757449pt;}
.hd{height:63.656086pt;}
.he{height:65.531081pt;}
.h2{height:65.567281pt;}
.h3b{height:71.165529pt;}
.h3e{height:71.165589pt;}
.h8{height:76.671687pt;}
.h2f{height:76.927537pt;}
.h3{height:87.156015pt;}
.h16{height:95.042571pt;}
.h14{height:102.589504pt;}
.h3f{height:106.305976pt;}
.hf{height:137.874646pt;}
.h10{height:137.905831pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.520018pt;}
.w3{width:6.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:78.398236pt;}
.x27{left:90.879997pt;}
.x20{left:94.241944pt;}
.x15{left:95.680000pt;}
.x6{left:97.120003pt;}
.x69{left:98.718495pt;}
.x1b{left:100.318524pt;}
.x2c{left:101.598215pt;}
.xe{left:103.518780pt;}
.x13{left:105.437235pt;}
.xd{left:107.356814pt;}
.xc{left:110.076864pt;}
.x3{left:112.799917pt;}
.xb{left:114.404254pt;}
.xf{left:115.523138pt;}
.x10{left:116.476261pt;}
.x5{left:118.241887pt;}
.x75{left:119.358479pt;}
.x9{left:121.597933pt;}
.x88{left:124.959999pt;}
.xa1{left:126.399727pt;}
.xa2{left:128.002541pt;}
.x4{left:129.280919pt;}
.x97{left:132.638489pt;}
.x78{left:134.559368pt;}
.x24{left:136.479921pt;}
.x73{left:138.559998pt;}
.x3e{left:142.721192pt;}
.x71{left:147.839996pt;}
.x2d{left:149.279944pt;}
.x4f{left:156.960539pt;}
.x56{left:163.839996pt;}
.xa4{left:166.077701pt;}
.x72{left:167.520004pt;}
.x57{left:171.839996pt;}
.x96{left:177.279999pt;}
.x90{left:178.559998pt;}
.x92{left:184.960007pt;}
.x9c{left:192.960007pt;}
.x91{left:194.720001pt;}
.x8e{left:195.839996pt;}
.x95{left:196.800003pt;}
.x6f{left:199.199997pt;}
.x50{left:202.722144pt;}
.x8f{left:203.679993pt;}
.x12{left:205.601047pt;}
.x7{left:215.198081pt;}
.x4e{left:219.837329pt;}
.x14{left:224.319742pt;}
.x29{left:230.720001pt;}
.x26{left:235.360001pt;}
.x51{left:243.040398pt;}
.x3b{left:249.921558pt;}
.xa3{left:255.040405pt;}
.x3d{left:259.042019pt;}
.x61{left:260.160004pt;}
.x3c{left:262.554244pt;}
.x3a{left:265.597805pt;}
.x22{left:269.917280pt;}
.x2e{left:272.955983pt;}
.x2f{left:278.247515pt;}
.x30{left:282.392654pt;}
.x31{left:289.446967pt;}
.x5b{left:291.036749pt;}
.x32{left:293.272104pt;}
.x5d{left:295.997297pt;}
.x33{left:303.049110pt;}
.x58{left:304.159363pt;}
.x34{left:307.031887pt;}
.x8{left:313.916993pt;}
.x35{left:318.075288pt;}
.x67{left:324.320007pt;}
.x36{left:328.009232pt;}
.x37{left:332.154378pt;}
.x5f{left:333.600006pt;}
.x1a{left:335.360455pt;}
.x38{left:337.770160pt;}
.x39{left:341.592785pt;}
.x5e{left:343.838968pt;}
.x5a{left:346.077248pt;}
.x89{left:347.839996pt;}
.x68{left:356.799988pt;}
.x70{left:364.320007pt;}
.x9d{left:368.476854pt;}
.x52{left:374.237330pt;}
.x4c{left:378.079987pt;}
.x93{left:380.000000pt;}
.x28{left:386.720001pt;}
.x65{left:396.320007pt;}
.x21{left:401.602680pt;}
.x64{left:409.760010pt;}
.x63{left:410.880289pt;}
.x9b{left:414.238442pt;}
.x9a{left:419.361734pt;}
.x1e{left:420.795794pt;}
.x7c{left:426.881176pt;}
.x25{left:428.640015pt;}
.xa{left:430.073190pt;}
.x46{left:435.997706pt;}
.x3f{left:442.716798pt;}
.x44{left:444.795506pt;}
.x76{left:448.803112pt;}
.x9e{left:450.720289pt;}
.x5c{left:453.917295pt;}
.x6e{left:458.718294pt;}
.x94{left:460.160004pt;}
.x47{left:463.365452pt;}
.x98{left:464.634901pt;}
.x9f{left:465.760541pt;}
.x82{left:466.881129pt;}
.x23{left:469.913760pt;}
.x74{left:482.716064pt;}
.x8a{left:496.000000pt;}
.x17{left:502.232522pt;}
.x85{left:504.475499pt;}
.x86{left:507.032762pt;}
.x1d{left:507.996737pt;}
.x48{left:511.679993pt;}
.x59{left:525.595571pt;}
.x53{left:527.038453pt;}
.x87{left:528.796682pt;}
.x4d{left:529.755738pt;}
.x99{left:531.033962pt;}
.x2a{left:532.152602pt;}
.x6b{left:533.919983pt;}
.x6c{left:535.039978pt;}
.x8b{left:537.599976pt;}
.x2b{left:544.156029pt;}
.x41{left:545.934345pt;}
.x66{left:549.440002pt;}
.x6a{left:551.520862pt;}
.x43{left:555.198778pt;}
.x80{left:556.959776pt;}
.x42{left:558.718783pt;}
.x49{left:560.640015pt;}
.x40{left:561.916216pt;}
.x54{left:565.439219pt;}
.x45{left:568.797049pt;}
.x81{left:573.762187pt;}
.x7f{left:575.685855pt;}
.x84{left:579.202718pt;}
.x19{left:580.640618pt;}
.x83{left:581.604011pt;}
.x77{left:583.681414pt;}
.x7a{left:586.242960pt;}
.x79{left:589.439254pt;}
.x1c{left:590.716280pt;}
.xa0{left:593.119691pt;}
.x7d{left:597.591659pt;}
.x16{left:607.036992pt;}
.x18{left:608.159973pt;}
.x1f{left:616.795296pt;}
.x6d{left:618.554101pt;}
.x4a{left:623.200012pt;}
.x8c{left:626.880005pt;}
.x7e{left:646.551242pt;}
.x4b{left:662.559998pt;}
.x8d{left:673.280029pt;}
.x55{left:682.077140pt;}
.x7b{left:700.797767pt;}
.x60{left:709.919983pt;}
.x1{left:711.683977pt;}
.x62{left:768.009229pt;}
.x2{left:776.489257pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  