
    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_d3b5d6c01bc63f8b673aee93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_b536d1f34315768e1043bc8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_f7fddde457a426486eef307f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_93c94503f0b13823544de61d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.388000;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_9f1564dc1976d764c7a944d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_d1c6630123c65cab0a0a8a83.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_f73bc0c28ea88d24bcba282f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.640000;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;}
.m0{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001618px;}
.ls1{letter-spacing:4.269444px;}
.ls2{letter-spacing:4.302262px;}
.ls0{letter-spacing:4.302508px;}
.ls3{letter-spacing:4.304831px;}
.ls4{letter-spacing:4.308262px;}
.ls7{letter-spacing:19.349700px;}
.lsb{letter-spacing:19.355700px;}
.ls8{letter-spacing:32.726700px;}
.ls6{letter-spacing:32.727300px;}
.lsa{letter-spacing:47.820240px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws38{word-spacing:-37.243667px;}
.ws44{word-spacing:-37.180650px;}
.ws3e{word-spacing:-35.607302px;}
.ws37{word-spacing:-34.952756px;}
.ws3f{word-spacing:-34.101847px;}
.ws30{word-spacing:-32.334572px;}
.ws34{word-spacing:-30.894571px;}
.ws39{word-spacing:-30.436389px;}
.ws3d{word-spacing:-28.669115px;}
.ws3b{word-spacing:-26.901841px;}
.ws36{word-spacing:-26.836386px;}
.ws2e{word-spacing:-25.789112px;}
.ws35{word-spacing:-25.461839px;}
.ws3a{word-spacing:-23.563656px;}
.ws42{word-spacing:-23.040019px;}
.ws33{word-spacing:-21.796382px;}
.ws0{word-spacing:-21.519300px;}
.ws2f{word-spacing:-21.272745px;}
.ws43{word-spacing:-19.440016px;}
.ws4{word-spacing:-17.215500px;}
.ws1f{word-spacing:-16.363650px;}
.ws2d{word-spacing:-13.090920px;}
.wsc{word-spacing:-3.927276px;}
.ws6f{word-spacing:-3.796367px;}
.ws81{word-spacing:-3.534548px;}
.ws31{word-spacing:-3.272730px;}
.ws9a{word-spacing:-3.076366px;}
.ws86{word-spacing:-3.010912px;}
.wsca{word-spacing:-2.945457px;}
.wsbb{word-spacing:-2.880002px;}
.ws9b{word-spacing:-2.814548px;}
.ws67{word-spacing:-2.749093px;}
.wsb2{word-spacing:-2.683639px;}
.wsc6{word-spacing:-2.618184px;}
.ws6{word-spacing:-2.487275px;}
.ws4b{word-spacing:-2.356366px;}
.ws92{word-spacing:-2.290911px;}
.ws75{word-spacing:-2.225456px;}
.ws54{word-spacing:-2.094547px;}
.wscc{word-spacing:-2.029093px;}
.wsc0{word-spacing:-1.963638px;}
.ws5a{word-spacing:-1.898183px;}
.ws8{word-spacing:-1.767274px;}
.wsd{word-spacing:-1.701820px;}
.ws73{word-spacing:-1.636365px;}
.ws46{word-spacing:-1.570910px;}
.ws53{word-spacing:-1.505456px;}
.ws16{word-spacing:-1.374547px;}
.wsac{word-spacing:-1.309092px;}
.ws21{word-spacing:-1.178183px;}
.ws71{word-spacing:-1.112728px;}
.ws91{word-spacing:-1.047274px;}
.ws20{word-spacing:-0.981819px;}
.wsc2{word-spacing:-0.916364px;}
.wsa4{word-spacing:-0.850910px;}
.wsb0{word-spacing:-0.785455px;}
.ws64{word-spacing:-0.720001px;}
.ws89{word-spacing:-0.654546px;}
.ws7{word-spacing:-0.589091px;}
.wsc1{word-spacing:-0.523637px;}
.ws7a{word-spacing:-0.458182px;}
.ws6a{word-spacing:-0.392728px;}
.ws49{word-spacing:-0.327273px;}
.ws1a{word-spacing:-0.261818px;}
.ws2a{word-spacing:-0.196364px;}
.ws98{word-spacing:-0.130909px;}
.ws87{word-spacing:-0.065455px;}
.wsce{word-spacing:-0.062182px;}
.wsd1{word-spacing:-0.011123px;}
.wsd3{word-spacing:-0.009499px;}
.ws2{word-spacing:0.000000px;}
.ws8a{word-spacing:0.002015px;}
.ws3{word-spacing:0.057372px;}
.wsa{word-spacing:0.065455px;}
.ws93{word-spacing:0.130909px;}
.ws1c{word-spacing:0.196364px;}
.ws52{word-spacing:0.261818px;}
.ws95{word-spacing:0.327273px;}
.ws1b{word-spacing:0.392728px;}
.wsad{word-spacing:0.458182px;}
.wsf{word-spacing:0.523637px;}
.ws69{word-spacing:0.589091px;}
.ws22{word-spacing:0.654546px;}
.ws8b{word-spacing:0.720001px;}
.ws4c{word-spacing:0.785455px;}
.ws45{word-spacing:0.850910px;}
.ws8c{word-spacing:0.916364px;}
.ws5d{word-spacing:0.981819px;}
.ws17{word-spacing:1.047274px;}
.ws66{word-spacing:1.112728px;}
.ws56{word-spacing:1.178183px;}
.wsc3{word-spacing:1.243637px;}
.wse{word-spacing:1.309092px;}
.ws11{word-spacing:1.374547px;}
.wsc8{word-spacing:1.440001px;}
.ws62{word-spacing:1.505456px;}
.ws23{word-spacing:1.570910px;}
.ws72{word-spacing:1.636365px;}
.ws77{word-spacing:1.701820px;}
.wsb{word-spacing:1.767274px;}
.ws19{word-spacing:1.832729px;}
.wsc7{word-spacing:1.898183px;}
.ws29{word-spacing:1.963638px;}
.ws7b{word-spacing:2.029093px;}
.ws18{word-spacing:2.094547px;}
.ws5{word-spacing:2.160002px;}
.ws65{word-spacing:2.225456px;}
.wsa9{word-spacing:2.290911px;}
.ws9c{word-spacing:2.356366px;}
.ws97{word-spacing:2.421820px;}
.wsb1{word-spacing:2.487275px;}
.ws76{word-spacing:2.552729px;}
.ws25{word-spacing:2.618184px;}
.ws55{word-spacing:2.683639px;}
.ws14{word-spacing:2.749093px;}
.ws8e{word-spacing:2.814548px;}
.ws57{word-spacing:2.880002px;}
.wsbd{word-spacing:2.945457px;}
.ws12{word-spacing:3.010912px;}
.ws9{word-spacing:3.076366px;}
.ws68{word-spacing:3.141821px;}
.ws24{word-spacing:3.207275px;}
.ws26{word-spacing:3.272730px;}
.ws1d{word-spacing:3.403639px;}
.ws10{word-spacing:3.469094px;}
.ws82{word-spacing:3.534548px;}
.ws96{word-spacing:3.600003px;}
.ws48{word-spacing:3.665458px;}
.ws27{word-spacing:3.796367px;}
.ws5e{word-spacing:3.861821px;}
.ws4f{word-spacing:3.927276px;}
.wsa8{word-spacing:4.058185px;}
.ws4a{word-spacing:4.123640px;}
.ws51{word-spacing:4.254549px;}
.ws70{word-spacing:4.320004px;}
.wsa3{word-spacing:4.385458px;}
.ws1e{word-spacing:4.450913px;}
.ws58{word-spacing:4.516367px;}
.ws15{word-spacing:4.581822px;}
.ws85{word-spacing:4.647277px;}
.ws7e{word-spacing:4.712731px;}
.wsba{word-spacing:4.778186px;}
.ws78{word-spacing:4.843640px;}
.ws13{word-spacing:4.909095px;}
.ws50{word-spacing:4.974550px;}
.ws84{word-spacing:5.040004px;}
.ws4d{word-spacing:5.170913px;}
.ws6c{word-spacing:5.236368px;}
.wscb{word-spacing:5.301823px;}
.ws9f{word-spacing:5.367277px;}
.ws6b{word-spacing:5.432732px;}
.ws5b{word-spacing:5.498186px;}
.ws5f{word-spacing:5.563641px;}
.wsab{word-spacing:5.629096px;}
.wsc9{word-spacing:5.694550px;}
.wsa1{word-spacing:5.825459px;}
.wsb4{word-spacing:5.956369px;}
.ws83{word-spacing:6.021823px;}
.ws47{word-spacing:6.087278px;}
.ws8f{word-spacing:6.152732px;}
.ws74{word-spacing:6.218187px;}
.ws7c{word-spacing:6.283642px;}
.ws60{word-spacing:6.349096px;}
.ws80{word-spacing:6.414551px;}
.ws9e{word-spacing:6.480005px;}
.ws99{word-spacing:6.545460px;}
.wsa2{word-spacing:6.676369px;}
.wsc5{word-spacing:6.807278px;}
.wsb3{word-spacing:6.872733px;}
.ws61{word-spacing:6.938188px;}
.wsa5{word-spacing:7.003642px;}
.wsa6{word-spacing:7.069097px;}
.ws9d{word-spacing:7.134551px;}
.ws4e{word-spacing:7.200006px;}
.ws63{word-spacing:7.265461px;}
.wsa0{word-spacing:7.330915px;}
.ws88{word-spacing:7.396370px;}
.ws79{word-spacing:7.527279px;}
.ws6d{word-spacing:7.658188px;}
.wsd5{word-spacing:7.789097px;}
.wsaa{word-spacing:7.920007px;}
.wscd{word-spacing:7.985461px;}
.ws8d{word-spacing:8.050916px;}
.ws5c{word-spacing:8.378189px;}
.ws1{word-spacing:8.579592px;}
.ws7f{word-spacing:8.640007px;}
.wsa7{word-spacing:8.705462px;}
.wsc4{word-spacing:8.770916px;}
.ws6e{word-spacing:8.901826px;}
.ws94{word-spacing:9.425462px;}
.ws28{word-spacing:9.490917px;}
.wsd0{word-spacing:10.014554px;}
.wsd4{word-spacing:10.210918px;}
.ws90{word-spacing:10.603645px;}
.ws41{word-spacing:14.792740px;}
.ws40{word-spacing:14.858194px;}
.wsb5{word-spacing:15.512740px;}
.wsb6{word-spacing:15.578195px;}
.wsbc{word-spacing:16.292399px;}
.wsaf{word-spacing:16.296457px;}
.ws2b{word-spacing:16.298195px;}
.ws32{word-spacing:16.363650px;}
.wsae{word-spacing:16.753351px;}
.wsd7{word-spacing:16.821832px;}
.wsb7{word-spacing:17.398500px;}
.wsbe{word-spacing:17.636399px;}
.wsd6{word-spacing:18.981834px;}
.wsbf{word-spacing:19.372500px;}
.wsb9{word-spacing:30.613692px;}
.wsb8{word-spacing:30.619692px;}
.wscf{word-spacing:38.683669px;}
.ws2c{word-spacing:49.090950px;}
.ws7d{word-spacing:53.798400px;}
.ws59{word-spacing:64.557900px;}
.wsd2{word-spacing:85.549162px;}
.wsd8{word-spacing:96.283717px;}
.wsd9{word-spacing:282.602835px;}
.ws3c{word-spacing:2142.222259px;}
._28{margin-left:-39.992761px;}
._21{margin-left:-37.963668px;}
._25{margin-left:-36.654576px;}
._12{margin-left:-34.363665px;}
._e{margin-left:-32.727300px;}
._f{margin-left:-17.345469px;}
._14{margin-left:-15.381831px;}
._1b{margin-left:-13.090920px;}
._3d{margin-left:-11.005472px;}
._42{margin-left:-9.098189px;}
._45{margin-left:-7.919102px;}
._26{margin-left:-6.169202px;}
._c{margin-left:-4.254549px;}
._0{margin-left:-2.667169px;}
._4{margin-left:-1.075968px;}
._2{width:1.101792px;}
._4f{width:2.287082px;}
._3{width:3.333534px;}
._1{width:4.682616px;}
._1f{width:7.265461px;}
._22{width:9.098189px;}
._46{width:12.252235px;}
._3f{width:14.154663px;}
._18{width:16.363650px;}
._30{width:18.605576px;}
._6{width:19.926893px;}
._44{width:21.141836px;}
._5{width:22.236672px;}
._3c{width:23.367292px;}
._7{width:24.480020px;}
._43{width:25.539519px;}
._9{width:26.640022px;}
._8{width:28.550431px;}
._23{width:29.650934px;}
._a{width:30.710432px;}
._2d{width:31.910752px;}
._b{width:33.701053px;}
._3e{width:34.887302px;}
._11{width:36.000030px;}
._41{width:38.450545px;}
._1e{width:39.583564px;}
._2c{width:42.283672px;}
._47{width:43.723673px;}
._1c{width:45.818220px;}
._24{width:47.258221px;}
._19{width:49.352768px;}
._2a{width:50.923679px;}
._40{width:52.036407px;}
._2b{width:54.981864px;}
._51{width:56.290956px;}
._2e{width:59.063350px;}
._2f{width:60.365611px;}
._27{width:62.521368px;}
._20{width:63.883690px;}
._15{width:65.454600px;}
._1d{width:68.727330px;}
._33{width:71.738242px;}
._48{width:72.850970px;}
._17{width:78.545520px;}
._55{width:80.770976px;}
._52{width:84.436434px;}
._3b{width:86.077200px;}
._4a{width:90.981894px;}
._49{width:94.647352px;}
._10{width:95.699276px;}
._13{width:96.938263px;}
._4d{width:103.221904px;}
._4e{width:104.229382px;}
._50{width:105.512815px;}
._34{width:111.731002px;}
._31{width:122.596466px;}
._36{width:126.261923px;}
._1a{width:129.338290px;}
._3a{width:133.527384px;}
._38{width:137.127387px;}
._39{width:141.381936px;}
._32{width:143.525468px;}
._4b{width:147.403759px;}
._37{width:166.254684px;}
._35{width:177.185602px;}
._4c{width:304.196221px;}
._54{width:330.742094px;}
._53{width:332.394928px;}
._29{width:1545.301182px;}
._16{width:1821.650503px;}
._d{width:2108.583179px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:51.108000px;}
.fsa{font-size:62.181600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:68.862000px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs7{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y21{bottom:84.292500px;}
.y4e{bottom:129.124500px;}
.yf{bottom:129.484500px;}
.ya{bottom:145.632000px;}
.y284{bottom:149.448000px;}
.y7d{bottom:149.473500px;}
.y4d{bottom:149.748000px;}
.y1bc{bottom:153.154500px;}
.ya5{bottom:153.777000px;}
.y1b0{bottom:155.934000px;}
.yd4{bottom:161.557500px;}
.y194{bottom:165.085500px;}
.y15d{bottom:166.941000px;}
.y7c{bottom:169.824000px;}
.y4c{bottom:170.371500px;}
.y111{bottom:172.789500px;}
.ya4{bottom:178.429500px;}
.y1e3{bottom:179.094000px;}
.y12f{bottom:179.242500px;}
.y25b{bottom:179.577000px;}
.y1af{bottom:180.586500px;}
.y283{bottom:183.714000px;}
.y7b{bottom:190.173000px;}
.y4b{bottom:190.993500px;}
.y1d3{bottom:191.293500px;}
.y110{bottom:197.442000px;}
.y201{bottom:198.360000px;}
.ya3{bottom:203.082000px;}
.yd3{bottom:203.268000px;}
.y1e2{bottom:203.746500px;}
.y12e{bottom:203.895000px;}
.y282{bottom:204.037500px;}
.y25a{bottom:204.229500px;}
.y15c{bottom:204.756000px;}
.y1c8{bottom:205.137000px;}
.y203{bottom:205.341000px;}
.y21c{bottom:206.743500px;}
.y1ae{bottom:207.396000px;}
.y294{bottom:207.814500px;}
.y293{bottom:207.826500px;}
.y7a{bottom:210.522000px;}
.y4a{bottom:211.617000px;}
.y228{bottom:215.131500px;}
.y193{bottom:215.181000px;}
.y213{bottom:219.286500px;}
.y10f{bottom:222.094500px;}
.y9{bottom:223.419000px;}
.ya2{bottom:227.734500px;}
.y1e1{bottom:228.400500px;}
.y12d{bottom:228.547500px;}
.y259{bottom:228.883500px;}
.y1c7{bottom:229.789500px;}
.y79{bottom:230.872500px;}
.y21b{bottom:231.396000px;}
.y1ad{bottom:232.048500px;}
.y49{bottom:232.240500px;}
.yf0{bottom:233.626500px;}
.y281{bottom:238.303500px;}
.y143{bottom:239.299500px;}
.y192{bottom:239.833500px;}
.y15b{bottom:242.572500px;}
.yd2{bottom:244.977000px;}
.y10e{bottom:246.747000px;}
.y1f4{bottom:250.819500px;}
.y78{bottom:251.221500px;}
.ya1{bottom:252.387000px;}
.y48{bottom:252.864000px;}
.y1e0{bottom:253.053000px;}
.y12c{bottom:253.200000px;}
.y258{bottom:253.536000px;}
.y21a{bottom:256.048500px;}
.y1ac{bottom:256.701000px;}
.y8{bottom:256.720500px;}
.y176{bottom:259.168500px;}
.y142{bottom:263.952000px;}
.y191{bottom:264.486000px;}
.y227{bottom:267.436500px;}
.y1c6{bottom:269.568000px;}
.yd1{bottom:269.629500px;}
.yef{bottom:270.064500px;}
.y10d{bottom:271.399500px;}
.y77{bottom:271.572000px;}
.y280{bottom:272.568000px;}
.y47{bottom:273.487500px;}
.ya0{bottom:277.041000px;}
.y1df{bottom:277.705500px;}
.y12b{bottom:277.852500px;}
.y257{bottom:278.188500px;}
.y15a{bottom:280.389000px;}
.y1ab{bottom:283.510500px;}
.y141{bottom:288.604500px;}
.y190{bottom:289.138500px;}
.y1db{bottom:291.528000px;}
.y76{bottom:291.921000px;}
.y226{bottom:292.089000px;}
.y46{bottom:294.111000px;}
.yee{bottom:294.717000px;}
.y175{bottom:297.381000px;}
.y7{bottom:299.197500px;}
.y9f{bottom:301.693500px;}
.y1de{bottom:302.358000px;}
.y256{bottom:302.841000px;}
.y10c{bottom:303.210000px;}
.y1f3{bottom:305.368500px;}
.y27f{bottom:306.834000px;}
.y1aa{bottom:308.164500px;}
.y20b{bottom:309.666000px;}
.yd0{bottom:311.340000px;}
.y75{bottom:312.270000px;}
.y140{bottom:313.257000px;}
.y45{bottom:314.734500px;}
.y12a{bottom:315.165000px;}
.y225{bottom:317.247000px;}
.y159{bottom:318.204000px;}
.yed{bottom:319.369500px;}
.y174{bottom:322.033500px;}
.y9e{bottom:326.346000px;}
.y219{bottom:326.442000px;}
.y27e{bottom:327.157500px;}
.y255{bottom:327.493500px;}
.y1f2{bottom:330.021000px;}
.y18f{bottom:330.991500px;}
.y1c5{bottom:331.059000px;}
.y74{bottom:332.620500px;}
.y1a9{bottom:332.817000px;}
.y44{bottom:335.358000px;}
.ycf{bottom:335.992500px;}
.y224{bottom:341.899500px;}
.y10b{bottom:342.175500px;}
.yec{bottom:344.022000px;}
.y1dd{bottom:345.267000px;}
.y173{bottom:346.686000px;}
.y13f{bottom:349.474500px;}
.y9d{bottom:350.998500px;}
.y254{bottom:352.146000px;}
.y73{bottom:352.969500px;}
.y1f1{bottom:354.769500px;}
.y1c4{bottom:355.713000px;}
.y43{bottom:355.981500px;}
.y158{bottom:356.020500px;}
.y27d{bottom:361.423500px;}
.yce{bottom:361.546500px;}
.y20a{bottom:364.213500px;}
.y10a{bottom:366.828000px;}
.y129{bottom:369.292500px;}
.y172{bottom:371.338500px;}
.y1a8{bottom:372.798000px;}
.y72{bottom:373.318500px;}
.y13e{bottom:374.127000px;}
.yeb{bottom:374.568000px;}
.y42{bottom:376.605000px;}
.y9c{bottom:376.705500px;}
.y253{bottom:376.798500px;}
.y223{bottom:378.601500px;}
.ycd{bottom:386.199000px;}
.y241{bottom:387.084000px;}
.y209{bottom:388.867500px;}
.y18e{bottom:390.177000px;}
.y1f0{bottom:390.655500px;}
.y109{bottom:391.480500px;}
.y1da{bottom:392.185500px;}
.y71{bottom:393.669000px;}
.y157{bottom:393.837000px;}
.y128{bottom:393.946500px;}
.y27c{bottom:395.689500px;}
.y41{bottom:397.228500px;}
.y13d{bottom:398.781000px;}
.y9b{bottom:401.358000px;}
.y1c3{bottom:401.382000px;}
.y252{bottom:402.600000px;}
.y171{bottom:402.772500px;}
.yb4{bottom:405.396000px;}
.ycc{bottom:410.851500px;}
.y240{bottom:411.736500px;}
.yea{bottom:412.158000px;}
.y208{bottom:413.520000px;}
.y27{bottom:413.931000px;}
.y70{bottom:414.018000px;}
.y18d{bottom:414.831000px;}
.y27b{bottom:416.013000px;}
.y108{bottom:416.133000px;}
.y1dc{bottom:416.953500px;}
.y1bb{bottom:417.498000px;}
.y40{bottom:417.852000px;}
.y127{bottom:418.599000px;}
.y13c{bottom:423.433500px;}
.y9a{bottom:426.010500px;}
.y251{bottom:427.252500px;}
.y222{bottom:430.906500px;}
.y156{bottom:431.652000px;}
.y6f{bottom:434.368500px;}
.y1a7{bottom:434.892000px;}
.ycb{bottom:435.505500px;}
.y23f{bottom:436.389000px;}
.ye9{bottom:436.810500px;}
.y3f{bottom:438.475500px;}
.y18c{bottom:439.483500px;}
.y1ef{bottom:440.529000px;}
.y107{bottom:440.785500px;}
.y170{bottom:440.985000px;}
.y1ba{bottom:442.150500px;}
.y126{bottom:443.251500px;}
.y207{bottom:447.807000px;}
.y27a{bottom:450.279000px;}
.y99{bottom:450.664500px;}
.y250{bottom:451.905000px;}
.y221{bottom:455.559000px;}
.y3e{bottom:459.099000px;}
.y1a6{bottom:459.544500px;}
.y13b{bottom:459.649500px;}
.yca{bottom:460.158000px;}
.y23e{bottom:461.041500px;}
.y18b{bottom:464.136000px;}
.y1ee{bottom:465.181500px;}
.y16f{bottom:465.637500px;}
.y1b9{bottom:468.070500px;}
.y155{bottom:469.039500px;}
.y6e{bottom:469.662000px;}
.ye8{bottom:470.749500px;}
.y206{bottom:472.461000px;}
.y106{bottom:472.596000px;}
.y98{bottom:475.317000px;}
.y24f{bottom:476.557500px;}
.y3d{bottom:479.722500px;}
.y220{bottom:480.211500px;}
.y125{bottom:480.564000px;}
.y13a{bottom:484.303500px;}
.y279{bottom:484.545000px;}
.y23d{bottom:485.694000px;}
.y18a{bottom:488.788500px;}
.y1ed{bottom:489.834000px;}
.y6d{bottom:490.011000px;}
.y16e{bottom:490.290000px;}
.y1b8{bottom:492.723000px;}
.y154{bottom:493.692000px;}
.y26{bottom:494.706000px;}
.y205{bottom:497.113500px;}
.yc9{bottom:497.646000px;}
.y97{bottom:499.969500px;}
.y24e{bottom:501.210000px;}
.y278{bottom:504.868500px;}
.y1a5{bottom:505.416000px;}
.ye7{bottom:507.187500px;}
.y139{bottom:508.956000px;}
.y23c{bottom:510.348000px;}
.y6c{bottom:510.360000px;}
.y105{bottom:511.561500px;}
.y189{bottom:513.441000px;}
.y25{bottom:515.031000px;}
.y1c2{bottom:515.818500px;}
.y3c{bottom:516.909000px;}
.y1b7{bottom:517.375500px;}
.y21f{bottom:522.804000px;}
.y96{bottom:524.622000px;}
.y16d{bottom:526.044000px;}
.y24d{bottom:527.011500px;}
.y153{bottom:529.390500px;}
.y6b{bottom:530.710500px;}
.y268{bottom:532.443000px;}
.y138{bottom:533.608500px;}
.y124{bottom:534.691500px;}
.y23b{bottom:535.000500px;}
.y24{bottom:535.354500px;}
.y104{bottom:536.214000px;}
.y3b{bottom:537.532500px;}
.y188{bottom:538.093500px;}
.y277{bottom:539.134500px;}
.y1b6{bottom:542.028000px;}
.ye6{bottom:543.624000px;}
.y6a{bottom:551.059500px;}
.y1ec{bottom:551.557500px;}
.y24c{bottom:551.664000px;}
.yc8{bottom:552.301500px;}
.yb3{bottom:553.356000px;}
.y23{bottom:555.678000px;}
.y267{bottom:557.095500px;}
.y3a{bottom:558.156000px;}
.y212{bottom:558.562500px;}
.y123{bottom:559.344000px;}
.y276{bottom:559.458000px;}
.y23a{bottom:559.653000px;}
.y103{bottom:560.866500px;}
.y187{bottom:562.746000px;}
.y1b5{bottom:567.948000px;}
.y95{bottom:568.305000px;}
.y137{bottom:569.826000px;}
.y69{bottom:571.410000px;}
.y1d2{bottom:573.294000px;}
.y16c{bottom:575.518500px;}
.y22{bottom:576.001500px;}
.y24b{bottom:576.316500px;}
.y1a4{bottom:576.603000px;}
.yc7{bottom:576.954000px;}
.y152{bottom:578.559000px;}
.y39{bottom:578.779500px;}
.y275{bottom:579.781500px;}
.ye5{bottom:580.060500px;}
.y266{bottom:581.748000px;}
.y211{bottom:583.215000px;}
.y122{bottom:583.996500px;}
.y239{bottom:584.305500px;}
.y204{bottom:586.740000px;}
.y186{bottom:587.398500px;}
.y68{bottom:591.759000px;}
.y1b4{bottom:592.600500px;}
.y102{bottom:592.675500px;}
.y21e{bottom:594.171000px;}
.y136{bottom:594.478500px;}
.y20{bottom:596.325000px;}
.y1d1{bottom:597.946500px;}
.y38{bottom:599.401500px;}
.y24a{bottom:600.969000px;}
.y1a3{bottom:601.255500px;}
.y151{bottom:603.211500px;}
.y202{bottom:605.218500px;}
.y265{bottom:606.400500px;}
.y121{bottom:608.649000px;}
.y210{bottom:608.680500px;}
.y67{bottom:612.108000px;}
.y16b{bottom:613.731000px;}
.y274{bottom:614.047500px;}
.ye4{bottom:616.498500px;}
.y1f{bottom:616.650000px;}
.y1b3{bottom:617.253000px;}
.y135{bottom:619.131000px;}
.y37{bottom:620.025000px;}
.yc6{bottom:620.334000px;}
.y8c{bottom:620.806500px;}
.y1d0{bottom:622.599000px;}
.y249{bottom:625.621500px;}
.y238{bottom:625.894500px;}
.y150{bottom:627.864000px;}
.y1a2{bottom:628.065000px;}
.y185{bottom:629.251500px;}
.y264{bottom:631.053000px;}
.y101{bottom:631.642500px;}
.y66{bottom:632.458500px;}
.y94{bottom:632.958000px;}
.y120{bottom:633.301500px;}
.y20f{bottom:633.333000px;}
.y273{bottom:634.371000px;}
.y1e{bottom:636.973500px;}
.y29{bottom:638.316000px;}
.y36{bottom:640.648500px;}
.y8b{bottom:641.130000px;}
.y200{bottom:645.645000px;}
.y218{bottom:649.461000px;}
.y248{bottom:650.275500px;}
.ye3{bottom:650.437500px;}
.y16a{bottom:651.943500px;}
.y14f{bottom:652.516500px;}
.y65{bottom:652.807500px;}
.y1a1{bottom:654.876000px;}
.y134{bottom:655.348500px;}
.y1b2{bottom:655.467000px;}
.y263{bottom:655.705500px;}
.y100{bottom:656.295000px;}
.y1d{bottom:657.297000px;}
.y93{bottom:657.610500px;}
.y11f{bottom:657.954000px;}
.y20e{bottom:657.985500px;}
.y35{bottom:661.272000px;}
.y8a{bottom:661.453500px;}
.y272{bottom:668.637000px;}
.y1ff{bottom:670.297500px;}
.y64{bottom:673.156500px;}
.y217{bottom:674.115000px;}
.ye2{bottom:675.090000px;}
.y169{bottom:676.597500px;}
.y14e{bottom:677.169000px;}
.y1c{bottom:677.620500px;}
.y1a0{bottom:679.528500px;}
.y133{bottom:680.001000px;}
.y262{bottom:680.358000px;}
.yff{bottom:680.947500px;}
.y89{bottom:681.778500px;}
.y34{bottom:681.895500px;}
.y92{bottom:682.263000px;}
.yc5{bottom:684.081000px;}
.y237{bottom:684.295500px;}
.y1cf{bottom:684.768000px;}
.y184{bottom:688.438500px;}
.y271{bottom:688.960500px;}
.y63{bottom:693.507000px;}
.y247{bottom:694.143000px;}
.y11e{bottom:695.266500px;}
.y1b{bottom:697.944000px;}
.y216{bottom:698.767500px;}
.ye1{bottom:699.742500px;}
.y20d{bottom:701.187000px;}
.y14d{bottom:701.823000px;}
.y88{bottom:702.102000px;}
.y33{bottom:702.519000px;}
.y19f{bottom:704.181000px;}
.y132{bottom:704.653500px;}
.y261{bottom:705.012000px;}
.yfe{bottom:705.600000px;}
.y91{bottom:706.915500px;}
.yc4{bottom:708.733500px;}
.y236{bottom:708.948000px;}
.y183{bottom:713.091000px;}
.y62{bottom:713.856000px;}
.y168{bottom:714.810000px;}
.y1a{bottom:718.269000px;}
.y1fe{bottom:722.223000px;}
.y28{bottom:722.419500px;}
.y87{bottom:722.425500px;}
.y32{bottom:723.142500px;}
.y270{bottom:723.226500px;}
.y215{bottom:723.420000px;}
.ye0{bottom:724.396500px;}
.y14c{bottom:726.475500px;}
.y1b1{bottom:728.356500px;}
.y19e{bottom:728.833500px;}
.y131{bottom:729.306000px;}
.y260{bottom:729.664500px;}
.yfd{bottom:730.252500px;}
.y90{bottom:732.624000px;}
.yc3{bottom:733.386000px;}
.y235{bottom:733.600500px;}
.y61{bottom:734.206500px;}
.y6{bottom:734.275500px;}
.y182{bottom:737.743500px;}
.y19{bottom:738.592500px;}
.y86{bottom:742.749000px;}
.y26f{bottom:743.550000px;}
.y31{bottom:743.766000px;}
.y1fd{bottom:746.875500px;}
.ydf{bottom:749.049000px;}
.y11d{bottom:749.394000px;}
.y14b{bottom:751.128000px;}
.y167{bottom:753.024000px;}
.y25f{bottom:754.317000px;}
.y60{bottom:754.555500px;}
.y19d{bottom:755.643000px;}
.y8f{bottom:757.276500px;}
.yc2{bottom:758.038500px;}
.y234{bottom:758.254500px;}
.y18{bottom:758.916000px;}
.y246{bottom:759.349500px;}
.yfc{bottom:762.061500px;}
.y181{bottom:762.396000px;}
.y85{bottom:763.072500px;}
.y30{bottom:764.389500px;}
.yb2{bottom:767.446500px;}
.y1fc{bottom:771.528000px;}
.y20c{bottom:773.169000px;}
.yde{bottom:773.701500px;}
.y11c{bottom:774.048000px;}
.y5f{bottom:774.904500px;}
.y166{bottom:777.676500px;}
.y26e{bottom:777.816000px;}
.y25e{bottom:778.969500px;}
.y17{bottom:779.239500px;}
.y1d9{bottom:780.232500px;}
.y19c{bottom:782.452500px;}
.y233{bottom:782.907000px;}
.y84{bottom:783.397500px;}
.y245{bottom:784.002000px;}
.y2f{bottom:785.013000px;}
.y14a{bottom:786.826500px;}
.y180{bottom:787.048500px;}
.y5e{bottom:795.255000px;}
.y130{bottom:795.892500px;}
.y1fb{bottom:796.182000px;}
.ydd{bottom:798.354000px;}
.yb1{bottom:798.550500px;}
.y11b{bottom:798.700500px;}
.y16{bottom:799.563000px;}
.yfb{bottom:801.028500px;}
.y214{bottom:801.097500px;}
.y290{bottom:803.149500px;}
.y25d{bottom:803.622000px;}
.y83{bottom:803.721000px;}
.y1d8{bottom:804.885000px;}
.y19b{bottom:807.105000px;}
.y232{bottom:807.559500px;}
.y244{bottom:808.654500px;}
.y17f{bottom:811.701000px;}
.y5{bottom:812.062500px;}
.y26d{bottom:812.082000px;}
.ybf{bottom:812.718000px;}
.ye{bottom:815.136000px;}
.y5d{bottom:815.604000px;}
.y165{bottom:815.889000px;}
.y15{bottom:819.888000px;}
.y1fa{bottom:820.834500px;}
.y2e{bottom:822.199500px;}
.ydc{bottom:823.006500px;}
.yb0{bottom:823.203000px;}
.y11a{bottom:823.353000px;}
.y28f{bottom:823.474500px;}
.y82{bottom:824.044500px;}
.yfa{bottom:825.681000px;}
.y1d7{bottom:829.537500px;}
.y231{bottom:832.212000px;}
.y19a{bottom:833.914500px;}
.y149{bottom:835.995000px;}
.ybe{bottom:837.370500px;}
.y14{bottom:840.211500px;}
.y164{bottom:840.541500px;}
.y1eb{bottom:841.975500px;}
.y2d{bottom:842.823000px;}
.y28e{bottom:843.798000px;}
.y81{bottom:844.368000px;}
.y25c{bottom:845.211000px;}
.y1f9{bottom:845.487000px;}
.y26c{bottom:846.346500px;}
.yaf{bottom:847.855500px;}
.yf9{bottom:850.333500px;}
.y5c{bottom:850.897500px;}
.y1d6{bottom:854.190000px;}
.y230{bottom:856.864500px;}
.ydb{bottom:858.705000px;}
.y13{bottom:860.535000px;}
.y148{bottom:860.647500px;}
.y119{bottom:860.665500px;}
.y1ea{bottom:861.915000px;}
.ybd{bottom:862.023000px;}
.y2c{bottom:863.446500px;}
.y28d{bottom:864.121500px;}
.y21d{bottom:864.441000px;}
.y80{bottom:864.691500px;}
.y26b{bottom:866.670000px;}
.y59{bottom:868.828500px;}
.yae{bottom:872.509500px;}
.y199{bottom:873.895500px;}
.yf8{bottom:874.986000px;}
.y163{bottom:878.755500px;}
.y1d5{bottom:878.842500px;}
.y1ce{bottom:878.959500px;}
.y12{bottom:880.858500px;}
.y22f{bottom:881.517000px;}
.y2b{bottom:884.070000px;}
.y7f{bottom:885.015000px;}
.y147{bottom:885.300000px;}
.y5b{bottom:886.191000px;}
.ybc{bottom:886.675500px;}
.y4{bottom:889.849500px;}
.y243{bottom:894.231000px;}
.y8e{bottom:894.418500px;}
.yc1{bottom:894.724500px;}
.y17e{bottom:896.262000px;}
.y292{bottom:896.527500px;}
.yad{bottom:897.162000px;}
.y1f8{bottom:897.412500px;}
.y28c{bottom:897.895500px;}
.yf7{bottom:899.638500px;}
.y26a{bottom:900.936000px;}
.y11{bottom:901.182000px;}
.y162{bottom:903.408000px;}
.y1cd{bottom:903.612000px;}
.y7e{bottom:905.340000px;}
.y58{bottom:905.517000px;}
.yda{bottom:907.194000px;}
.yd{bottom:907.821000px;}
.y146{bottom:909.952500px;}
.ybb{bottom:911.328000px;}
.y118{bottom:914.793000px;}
.y1e9{bottom:916.464000px;}
.y22e{bottom:917.215500px;}
.y1d4{bottom:917.983500px;}
.y28b{bottom:918.219000px;}
.yac{bottom:921.814500px;}
.y1f7{bottom:922.065000px;}
.y1cc{bottom:928.264500px;}
.yf6{bottom:931.447500px;}
.yd9{bottom:931.846500px;}
.yba{bottom:935.982000px;}
.y198{bottom:935.991000px;}
.y28a{bottom:938.542500px;}
.y117{bottom:939.445500px;}
.y1e8{bottom:941.116500px;}
.y161{bottom:941.620500px;}
.y57{bottom:942.204000px;}
.y3{bottom:943.648500px;}
.y17c{bottom:946.192500px;}
.yab{bottom:946.467000px;}
.y1f6{bottom:946.717500px;}
.y145{bottom:951.541500px;}
.y1cb{bottom:952.918500px;}
.yd8{bottom:956.499000px;}
.y289{bottom:958.866000px;}
.y1c1{bottom:960.390000px;}
.yb9{bottom:960.634500px;}
.y56{bottom:962.527500px;}
.y116{bottom:964.911000px;}
.y1e7{bottom:965.769000px;}
.y160{bottom:966.301500px;}
.y22d{bottom:966.525000px;}
.yf5{bottom:970.414500px;}
.y17b{bottom:970.845000px;}
.yaa{bottom:971.119500px;}
.y1ca{bottom:977.571000px;}
.y242{bottom:979.648500px;}
.y8d{bottom:979.741500px;}
.yc0{bottom:979.894500px;}
.y17d{bottom:980.664000px;}
.y291{bottom:980.796000px;}
.y2a{bottom:981.033000px;}
.yd7{bottom:981.151500px;}
.y269{bottom:981.159000px;}
.y5a{bottom:981.261000px;}
.y10{bottom:981.282000px;}
.y197{bottom:982.720500px;}
.y55{bottom:982.851000px;}
.y1c0{bottom:985.042500px;}
.yb8{bottom:985.287000px;}
.y115{bottom:989.563500px;}
.y1e6{bottom:990.421500px;}
.y15f{bottom:990.954000px;}
.y22c{bottom:991.177500px;}
.y288{bottom:992.640000px;}
.yf4{bottom:995.067000px;}
.y17a{bottom:995.499000px;}
.ya9{bottom:995.772000px;}
.y2{bottom:997.446000px;}
.yc{bottom:1000.504500px;}
.y1c9{bottom:1002.223500px;}
.y196{bottom:1007.373000px;}
.y1bf{bottom:1009.695000px;}
.y144{bottom:1009.801500px;}
.yb7{bottom:1009.939500px;}
.y287{bottom:1012.963500px;}
.y114{bottom:1014.216000px;}
.y1e5{bottom:1015.074000px;}
.yd6{bottom:1015.092000px;}
.y22b{bottom:1015.830000px;}
.y54{bottom:1019.538000px;}
.yf3{bottom:1019.719500px;}
.y179{bottom:1020.151500px;}
.y1f5{bottom:1021.632000px;}
.yb{bottom:1025.157000px;}
.y15e{bottom:1026.706500px;}
.ya8{bottom:1026.876000px;}
.yb6{bottom:1034.592000px;}
.y1be{bottom:1036.402500px;}
.y113{bottom:1038.868500px;}
.yd5{bottom:1039.744500px;}
.y53{bottom:1039.863000px;}
.y22a{bottom:1040.482500px;}
.yf2{bottom:1044.372000px;}
.y178{bottom:1044.804000px;}
.y286{bottom:1046.736000px;}
.y1e4{bottom:1050.961500px;}
.ya7{bottom:1051.528500px;}
.y195{bottom:1054.104000px;}
.yb5{bottom:1059.244500px;}
.y52{bottom:1060.186500px;}
.y1bd{bottom:1061.055000px;}
.y112{bottom:1063.522500px;}
.y229{bottom:1065.136500px;}
.y285{bottom:1067.061000px;}
.yf1{bottom:1069.024500px;}
.y177{bottom:1069.456500px;}
.ya6{bottom:1076.181000px;}
.y51{bottom:1080.510000px;}
.y50{bottom:1100.833500px;}
.y1{bottom:1151.227500px;}
.y4f{bottom:1160.730000px;}
.hd{height:34.140144px;}
.hf{height:41.537309px;}
.h8{height:44.705492px;}
.h9{height:46.669130px;}
.hc{height:51.144346px;}
.h6{height:58.254594px;}
.h2{height:61.373044px;}
.h5{height:63.840768px;}
.he{height:66.314334px;}
.ha{height:66.320334px;}
.h7{height:73.647481px;}
.h4{height:76.608708px;}
.hb{height:88.394175px;}
.h3{height:106.039214px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:87.529500px;}
.x1d{left:106.299000px;}
.x29{left:126.754500px;}
.x1c{left:130.845000px;}
.x32{left:136.186500px;}
.x28{left:147.208500px;}
.xe{left:148.819500px;}
.x1f{left:157.785000px;}
.xb{left:160.423500px;}
.x26{left:166.845000px;}
.x1b{left:168.481500px;}
.x3{left:169.809000px;}
.xf{left:174.223500px;}
.x1{left:179.134500px;}
.x27{left:183.208500px;}
.x2{left:185.313000px;}
.x24{left:189.727500px;}
.xd{left:198.361500px;}
.x33{left:204.052500px;}
.x25{left:209.364000px;}
.x19{left:211.000500px;}
.x34{left:216.243000px;}
.x7{left:243.255000px;}
.x15{left:267.369000px;}
.x35{left:270.865500px;}
.x41{left:277.237500px;}
.x2f{left:279.733500px;}
.x3c{left:281.329500px;}
.x43{left:282.573000px;}
.x3f{left:286.663500px;}
.x36{left:289.707000px;}
.x39{left:296.776500px;}
.x2e{left:299.034000px;}
.xc{left:303.469500px;}
.x38{left:308.599500px;}
.x22{left:311.986500px;}
.x40{left:319.758000px;}
.x3e{left:323.848500px;}
.x42{left:325.092000px;}
.x3a{left:326.631000px;}
.x2d{left:328.602000px;}
.x30{left:330.190500px;}
.x37{left:334.975500px;}
.x9{left:339.409500px;}
.x1e{left:352.780500px;}
.x8{left:354.867000px;}
.x3d{left:368.995500px;}
.x3b{left:370.191000px;}
.x4{left:373.743000px;}
.x1a{left:380.205000px;}
.x21{left:389.754000px;}
.x2b{left:391.438500px;}
.x2a{left:396.208500px;}
.xa{left:401.812500px;}
.x6{left:403.686000px;}
.x18{left:414.282000px;}
.x5{left:416.619000px;}
.x13{left:419.035500px;}
.x11{left:420.648000px;}
.x23{left:432.273000px;}
.x2c{left:433.959000px;}
.x20{left:456.802500px;}
.x17{left:459.076500px;}
.x12{left:460.893000px;}
.x14{left:463.626000px;}
.x10{left:465.442500px;}
.x16{left:687.075000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001438pt;}
.ls1{letter-spacing:3.795061pt;}
.ls2{letter-spacing:3.824233pt;}
.ls0{letter-spacing:3.824451pt;}
.ls3{letter-spacing:3.826516pt;}
.ls4{letter-spacing:3.829566pt;}
.ls7{letter-spacing:17.199733pt;}
.lsb{letter-spacing:17.205067pt;}
.ls8{letter-spacing:29.090400pt;}
.ls6{letter-spacing:29.090933pt;}
.lsa{letter-spacing:42.506880pt;}
.ws38{word-spacing:-33.105482pt;}
.ws44{word-spacing:-33.049467pt;}
.ws3e{word-spacing:-31.650935pt;}
.ws37{word-spacing:-31.069117pt;}
.ws3f{word-spacing:-30.312753pt;}
.ws30{word-spacing:-28.741842pt;}
.ws34{word-spacing:-27.461841pt;}
.ws39{word-spacing:-27.054568pt;}
.ws3d{word-spacing:-25.483658pt;}
.ws3b{word-spacing:-23.912747pt;}
.ws36{word-spacing:-23.854565pt;}
.ws2e{word-spacing:-22.923655pt;}
.ws35{word-spacing:-22.632746pt;}
.ws3a{word-spacing:-20.945472pt;}
.ws42{word-spacing:-20.480017pt;}
.ws33{word-spacing:-19.374562pt;}
.ws0{word-spacing:-19.128267pt;}
.ws2f{word-spacing:-18.909107pt;}
.ws43{word-spacing:-17.280014pt;}
.ws4{word-spacing:-15.302667pt;}
.ws1f{word-spacing:-14.545467pt;}
.ws2d{word-spacing:-11.636373pt;}
.wsc{word-spacing:-3.490912pt;}
.ws6f{word-spacing:-3.374548pt;}
.ws81{word-spacing:-3.141821pt;}
.ws31{word-spacing:-2.909093pt;}
.ws9a{word-spacing:-2.734548pt;}
.ws86{word-spacing:-2.676366pt;}
.wsca{word-spacing:-2.618184pt;}
.wsbb{word-spacing:-2.560002pt;}
.ws9b{word-spacing:-2.501820pt;}
.ws67{word-spacing:-2.443638pt;}
.wsb2{word-spacing:-2.385457pt;}
.wsc6{word-spacing:-2.327275pt;}
.ws6{word-spacing:-2.210911pt;}
.ws4b{word-spacing:-2.094547pt;}
.ws92{word-spacing:-2.036365pt;}
.ws75{word-spacing:-1.978183pt;}
.ws54{word-spacing:-1.861820pt;}
.wscc{word-spacing:-1.803638pt;}
.wsc0{word-spacing:-1.745456pt;}
.ws5a{word-spacing:-1.687274pt;}
.ws8{word-spacing:-1.570910pt;}
.wsd{word-spacing:-1.512729pt;}
.ws73{word-spacing:-1.454547pt;}
.ws46{word-spacing:-1.396365pt;}
.ws53{word-spacing:-1.338183pt;}
.ws16{word-spacing:-1.221819pt;}
.wsac{word-spacing:-1.163637pt;}
.ws21{word-spacing:-1.047274pt;}
.ws71{word-spacing:-0.989092pt;}
.ws91{word-spacing:-0.930910pt;}
.ws20{word-spacing:-0.872728pt;}
.wsc2{word-spacing:-0.814546pt;}
.wsa4{word-spacing:-0.756364pt;}
.wsb0{word-spacing:-0.698182pt;}
.ws64{word-spacing:-0.640001pt;}
.ws89{word-spacing:-0.581819pt;}
.ws7{word-spacing:-0.523637pt;}
.wsc1{word-spacing:-0.465455pt;}
.ws7a{word-spacing:-0.407273pt;}
.ws6a{word-spacing:-0.349091pt;}
.ws49{word-spacing:-0.290909pt;}
.ws1a{word-spacing:-0.232727pt;}
.ws2a{word-spacing:-0.174546pt;}
.ws98{word-spacing:-0.116364pt;}
.ws87{word-spacing:-0.058182pt;}
.wsce{word-spacing:-0.055273pt;}
.wsd1{word-spacing:-0.009887pt;}
.wsd3{word-spacing:-0.008443pt;}
.ws2{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.001791pt;}
.ws3{word-spacing:0.050997pt;}
.wsa{word-spacing:0.058182pt;}
.ws93{word-spacing:0.116364pt;}
.ws1c{word-spacing:0.174546pt;}
.ws52{word-spacing:0.232727pt;}
.ws95{word-spacing:0.290909pt;}
.ws1b{word-spacing:0.349091pt;}
.wsad{word-spacing:0.407273pt;}
.wsf{word-spacing:0.465455pt;}
.ws69{word-spacing:0.523637pt;}
.ws22{word-spacing:0.581819pt;}
.ws8b{word-spacing:0.640001pt;}
.ws4c{word-spacing:0.698182pt;}
.ws45{word-spacing:0.756364pt;}
.ws8c{word-spacing:0.814546pt;}
.ws5d{word-spacing:0.872728pt;}
.ws17{word-spacing:0.930910pt;}
.ws66{word-spacing:0.989092pt;}
.ws56{word-spacing:1.047274pt;}
.wsc3{word-spacing:1.105455pt;}
.wse{word-spacing:1.163637pt;}
.ws11{word-spacing:1.221819pt;}
.wsc8{word-spacing:1.280001pt;}
.ws62{word-spacing:1.338183pt;}
.ws23{word-spacing:1.396365pt;}
.ws72{word-spacing:1.454547pt;}
.ws77{word-spacing:1.512729pt;}
.wsb{word-spacing:1.570910pt;}
.ws19{word-spacing:1.629092pt;}
.wsc7{word-spacing:1.687274pt;}
.ws29{word-spacing:1.745456pt;}
.ws7b{word-spacing:1.803638pt;}
.ws18{word-spacing:1.861820pt;}
.ws5{word-spacing:1.920002pt;}
.ws65{word-spacing:1.978183pt;}
.wsa9{word-spacing:2.036365pt;}
.ws9c{word-spacing:2.094547pt;}
.ws97{word-spacing:2.152729pt;}
.wsb1{word-spacing:2.210911pt;}
.ws76{word-spacing:2.269093pt;}
.ws25{word-spacing:2.327275pt;}
.ws55{word-spacing:2.385457pt;}
.ws14{word-spacing:2.443638pt;}
.ws8e{word-spacing:2.501820pt;}
.ws57{word-spacing:2.560002pt;}
.wsbd{word-spacing:2.618184pt;}
.ws12{word-spacing:2.676366pt;}
.ws9{word-spacing:2.734548pt;}
.ws68{word-spacing:2.792730pt;}
.ws24{word-spacing:2.850911pt;}
.ws26{word-spacing:2.909093pt;}
.ws1d{word-spacing:3.025457pt;}
.ws10{word-spacing:3.083639pt;}
.ws82{word-spacing:3.141821pt;}
.ws96{word-spacing:3.200003pt;}
.ws48{word-spacing:3.258185pt;}
.ws27{word-spacing:3.374548pt;}
.ws5e{word-spacing:3.432730pt;}
.ws4f{word-spacing:3.490912pt;}
.wsa8{word-spacing:3.607276pt;}
.ws4a{word-spacing:3.665458pt;}
.ws51{word-spacing:3.781821pt;}
.ws70{word-spacing:3.840003pt;}
.wsa3{word-spacing:3.898185pt;}
.ws1e{word-spacing:3.956367pt;}
.ws58{word-spacing:4.014549pt;}
.ws15{word-spacing:4.072731pt;}
.ws85{word-spacing:4.130913pt;}
.ws7e{word-spacing:4.189094pt;}
.wsba{word-spacing:4.247276pt;}
.ws78{word-spacing:4.305458pt;}
.ws13{word-spacing:4.363640pt;}
.ws50{word-spacing:4.421822pt;}
.ws84{word-spacing:4.480004pt;}
.ws4d{word-spacing:4.596367pt;}
.ws6c{word-spacing:4.654549pt;}
.wscb{word-spacing:4.712731pt;}
.ws9f{word-spacing:4.770913pt;}
.ws6b{word-spacing:4.829095pt;}
.ws5b{word-spacing:4.887277pt;}
.ws5f{word-spacing:4.945459pt;}
.wsab{word-spacing:5.003641pt;}
.wsc9{word-spacing:5.061822pt;}
.wsa1{word-spacing:5.178186pt;}
.wsb4{word-spacing:5.294550pt;}
.ws83{word-spacing:5.352732pt;}
.ws47{word-spacing:5.410914pt;}
.ws8f{word-spacing:5.469095pt;}
.ws74{word-spacing:5.527277pt;}
.ws7c{word-spacing:5.585459pt;}
.ws60{word-spacing:5.643641pt;}
.ws80{word-spacing:5.701823pt;}
.ws9e{word-spacing:5.760005pt;}
.ws99{word-spacing:5.818187pt;}
.wsa2{word-spacing:5.934550pt;}
.wsc5{word-spacing:6.050914pt;}
.wsb3{word-spacing:6.109096pt;}
.ws61{word-spacing:6.167278pt;}
.wsa5{word-spacing:6.225460pt;}
.wsa6{word-spacing:6.283642pt;}
.ws9d{word-spacing:6.341823pt;}
.ws4e{word-spacing:6.400005pt;}
.ws63{word-spacing:6.458187pt;}
.wsa0{word-spacing:6.516369pt;}
.ws88{word-spacing:6.574551pt;}
.ws79{word-spacing:6.690915pt;}
.ws6d{word-spacing:6.807278pt;}
.wsd5{word-spacing:6.923642pt;}
.wsaa{word-spacing:7.040006pt;}
.wscd{word-spacing:7.098188pt;}
.ws8d{word-spacing:7.156370pt;}
.ws5c{word-spacing:7.447279pt;}
.ws1{word-spacing:7.626304pt;}
.ws7f{word-spacing:7.680006pt;}
.wsa7{word-spacing:7.738188pt;}
.wsc4{word-spacing:7.796370pt;}
.ws6e{word-spacing:7.912734pt;}
.ws94{word-spacing:8.378189pt;}
.ws28{word-spacing:8.436371pt;}
.wsd0{word-spacing:8.901826pt;}
.wsd4{word-spacing:9.076371pt;}
.ws90{word-spacing:9.425462pt;}
.ws41{word-spacing:13.149102pt;}
.ws40{word-spacing:13.207284pt;}
.wsb5{word-spacing:13.789102pt;}
.wsb6{word-spacing:13.847284pt;}
.wsbc{word-spacing:14.482133pt;}
.wsaf{word-spacing:14.485739pt;}
.ws2b{word-spacing:14.487285pt;}
.ws32{word-spacing:14.545467pt;}
.wsae{word-spacing:14.891867pt;}
.wsd7{word-spacing:14.952740pt;}
.wsb7{word-spacing:15.465333pt;}
.wsbe{word-spacing:15.676799pt;}
.wsd6{word-spacing:16.872741pt;}
.wsbf{word-spacing:17.220000pt;}
.wsb9{word-spacing:27.212171pt;}
.wsb8{word-spacing:27.217504pt;}
.wscf{word-spacing:34.385483pt;}
.ws2c{word-spacing:43.636400pt;}
.ws7d{word-spacing:47.820800pt;}
.ws59{word-spacing:57.384800pt;}
.wsd2{word-spacing:76.043700pt;}
.wsd8{word-spacing:85.585526pt;}
.wsd9{word-spacing:251.202520pt;}
.ws3c{word-spacing:1904.197564pt;}
._28{margin-left:-35.549121pt;}
._21{margin-left:-33.745483pt;}
._25{margin-left:-32.581845pt;}
._12{margin-left:-30.545480pt;}
._e{margin-left:-29.090933pt;}
._f{margin-left:-15.418195pt;}
._14{margin-left:-13.672739pt;}
._1b{margin-left:-11.636373pt;}
._3d{margin-left:-9.782642pt;}
._42{margin-left:-8.087279pt;}
._45{margin-left:-7.039202pt;}
._26{margin-left:-5.483735pt;}
._c{margin-left:-3.781821pt;}
._0{margin-left:-2.370817pt;}
._4{margin-left:-0.956416pt;}
._2{width:0.979371pt;}
._4f{width:2.032962pt;}
._3{width:2.963141pt;}
._1{width:4.162325pt;}
._1f{width:6.458187pt;}
._22{width:8.087279pt;}
._46{width:10.890876pt;}
._3f{width:12.581923pt;}
._18{width:14.545467pt;}
._30{width:16.538290pt;}
._6{width:17.712794pt;}
._44{width:18.792743pt;}
._5{width:19.765931pt;}
._3c{width:20.770926pt;}
._7{width:21.760018pt;}
._43{width:22.701795pt;}
._9{width:23.680020pt;}
._8{width:25.378161pt;}
._23{width:26.356386pt;}
._a{width:27.298162pt;}
._2d{width:28.365113pt;}
._b{width:29.956492pt;}
._3e{width:31.010935pt;}
._11{width:32.000027pt;}
._41{width:34.178262pt;}
._1e{width:35.185390pt;}
._2c{width:37.585486pt;}
._47{width:38.865487pt;}
._1c{width:40.727307pt;}
._24{width:42.007308pt;}
._19{width:43.869127pt;}
._2a{width:45.265492pt;}
._40{width:46.254584pt;}
._2b{width:48.872768pt;}
._51{width:50.036405pt;}
._2e{width:52.500755pt;}
._2f{width:53.658321pt;}
._27{width:55.574549pt;}
._20{width:56.785502pt;}
._15{width:58.181867pt;}
._1d{width:61.090960pt;}
._33{width:63.767326pt;}
._48{width:64.756418pt;}
._17{width:69.818240pt;}
._55{width:71.796423pt;}
._52{width:75.054608pt;}
._3b{width:76.513067pt;}
._4a{width:80.872795pt;}
._49{width:84.130979pt;}
._10{width:85.066023pt;}
._13{width:86.167345pt;}
._4d{width:91.752804pt;}
._4e{width:92.648339pt;}
._50{width:93.789169pt;}
._34{width:99.316446pt;}
._31{width:108.974636pt;}
._36{width:112.232821pt;}
._1a{width:114.967369pt;}
._3a{width:118.691008pt;}
._38{width:121.891011pt;}
._39{width:125.672832pt;}
._32{width:127.578194pt;}
._4b{width:131.025564pt;}
._37{width:147.781941pt;}
._35{width:157.498313pt;}
._4c{width:270.396641pt;}
._54{width:293.992972pt;}
._53{width:295.462158pt;}
._29{width:1373.601051pt;}
._16{width:1619.244892pt;}
._d{width:1874.296159pt;}
.fs8{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:45.429333pt;}
.fsa{font-size:55.272533pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:61.210667pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs7{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:74.926667pt;}
.y4e{bottom:114.777333pt;}
.yf{bottom:115.097333pt;}
.ya{bottom:129.450667pt;}
.y284{bottom:132.842667pt;}
.y7d{bottom:132.865333pt;}
.y4d{bottom:133.109333pt;}
.y1bc{bottom:136.137333pt;}
.ya5{bottom:136.690667pt;}
.y1b0{bottom:138.608000pt;}
.yd4{bottom:143.606667pt;}
.y194{bottom:146.742667pt;}
.y15d{bottom:148.392000pt;}
.y7c{bottom:150.954667pt;}
.y4c{bottom:151.441333pt;}
.y111{bottom:153.590667pt;}
.ya4{bottom:158.604000pt;}
.y1e3{bottom:159.194667pt;}
.y12f{bottom:159.326667pt;}
.y25b{bottom:159.624000pt;}
.y1af{bottom:160.521333pt;}
.y283{bottom:163.301333pt;}
.y7b{bottom:169.042667pt;}
.y4b{bottom:169.772000pt;}
.y1d3{bottom:170.038667pt;}
.y110{bottom:175.504000pt;}
.y201{bottom:176.320000pt;}
.ya3{bottom:180.517333pt;}
.yd3{bottom:180.682667pt;}
.y1e2{bottom:181.108000pt;}
.y12e{bottom:181.240000pt;}
.y282{bottom:181.366667pt;}
.y25a{bottom:181.537333pt;}
.y15c{bottom:182.005333pt;}
.y1c8{bottom:182.344000pt;}
.y203{bottom:182.525333pt;}
.y21c{bottom:183.772000pt;}
.y1ae{bottom:184.352000pt;}
.y294{bottom:184.724000pt;}
.y293{bottom:184.734667pt;}
.y7a{bottom:187.130667pt;}
.y4a{bottom:188.104000pt;}
.y228{bottom:191.228000pt;}
.y193{bottom:191.272000pt;}
.y213{bottom:194.921333pt;}
.y10f{bottom:197.417333pt;}
.y9{bottom:198.594667pt;}
.ya2{bottom:202.430667pt;}
.y1e1{bottom:203.022667pt;}
.y12d{bottom:203.153333pt;}
.y259{bottom:203.452000pt;}
.y1c7{bottom:204.257333pt;}
.y79{bottom:205.220000pt;}
.y21b{bottom:205.685333pt;}
.y1ad{bottom:206.265333pt;}
.y49{bottom:206.436000pt;}
.yf0{bottom:207.668000pt;}
.y281{bottom:211.825333pt;}
.y143{bottom:212.710667pt;}
.y192{bottom:213.185333pt;}
.y15b{bottom:215.620000pt;}
.yd2{bottom:217.757333pt;}
.y10e{bottom:219.330667pt;}
.y1f4{bottom:222.950667pt;}
.y78{bottom:223.308000pt;}
.ya1{bottom:224.344000pt;}
.y48{bottom:224.768000pt;}
.y1e0{bottom:224.936000pt;}
.y12c{bottom:225.066667pt;}
.y258{bottom:225.365333pt;}
.y21a{bottom:227.598667pt;}
.y1ac{bottom:228.178667pt;}
.y8{bottom:228.196000pt;}
.y176{bottom:230.372000pt;}
.y142{bottom:234.624000pt;}
.y191{bottom:235.098667pt;}
.y227{bottom:237.721333pt;}
.y1c6{bottom:239.616000pt;}
.yd1{bottom:239.670667pt;}
.yef{bottom:240.057333pt;}
.y10d{bottom:241.244000pt;}
.y77{bottom:241.397333pt;}
.y280{bottom:242.282667pt;}
.y47{bottom:243.100000pt;}
.ya0{bottom:246.258667pt;}
.y1df{bottom:246.849333pt;}
.y12b{bottom:246.980000pt;}
.y257{bottom:247.278667pt;}
.y15a{bottom:249.234667pt;}
.y1ab{bottom:252.009333pt;}
.y141{bottom:256.537333pt;}
.y190{bottom:257.012000pt;}
.y1db{bottom:259.136000pt;}
.y76{bottom:259.485333pt;}
.y226{bottom:259.634667pt;}
.y46{bottom:261.432000pt;}
.yee{bottom:261.970667pt;}
.y175{bottom:264.338667pt;}
.y7{bottom:265.953333pt;}
.y9f{bottom:268.172000pt;}
.y1de{bottom:268.762667pt;}
.y256{bottom:269.192000pt;}
.y10c{bottom:269.520000pt;}
.y1f3{bottom:271.438667pt;}
.y27f{bottom:272.741333pt;}
.y1aa{bottom:273.924000pt;}
.y20b{bottom:275.258667pt;}
.yd0{bottom:276.746667pt;}
.y75{bottom:277.573333pt;}
.y140{bottom:278.450667pt;}
.y45{bottom:279.764000pt;}
.y12a{bottom:280.146667pt;}
.y225{bottom:281.997333pt;}
.y159{bottom:282.848000pt;}
.yed{bottom:283.884000pt;}
.y174{bottom:286.252000pt;}
.y9e{bottom:290.085333pt;}
.y219{bottom:290.170667pt;}
.y27e{bottom:290.806667pt;}
.y255{bottom:291.105333pt;}
.y1f2{bottom:293.352000pt;}
.y18f{bottom:294.214667pt;}
.y1c5{bottom:294.274667pt;}
.y74{bottom:295.662667pt;}
.y1a9{bottom:295.837333pt;}
.y44{bottom:298.096000pt;}
.ycf{bottom:298.660000pt;}
.y224{bottom:303.910667pt;}
.y10b{bottom:304.156000pt;}
.yec{bottom:305.797333pt;}
.y1dd{bottom:306.904000pt;}
.y173{bottom:308.165333pt;}
.y13f{bottom:310.644000pt;}
.y9d{bottom:311.998667pt;}
.y254{bottom:313.018667pt;}
.y73{bottom:313.750667pt;}
.y1f1{bottom:315.350667pt;}
.y1c4{bottom:316.189333pt;}
.y43{bottom:316.428000pt;}
.y158{bottom:316.462667pt;}
.y27d{bottom:321.265333pt;}
.yce{bottom:321.374667pt;}
.y20a{bottom:323.745333pt;}
.y10a{bottom:326.069333pt;}
.y129{bottom:328.260000pt;}
.y172{bottom:330.078667pt;}
.y1a8{bottom:331.376000pt;}
.y72{bottom:331.838667pt;}
.y13e{bottom:332.557333pt;}
.yeb{bottom:332.949333pt;}
.y42{bottom:334.760000pt;}
.y9c{bottom:334.849333pt;}
.y253{bottom:334.932000pt;}
.y223{bottom:336.534667pt;}
.ycd{bottom:343.288000pt;}
.y241{bottom:344.074667pt;}
.y209{bottom:345.660000pt;}
.y18e{bottom:346.824000pt;}
.y1f0{bottom:347.249333pt;}
.y109{bottom:347.982667pt;}
.y1da{bottom:348.609333pt;}
.y71{bottom:349.928000pt;}
.y157{bottom:350.077333pt;}
.y128{bottom:350.174667pt;}
.y27c{bottom:351.724000pt;}
.y41{bottom:353.092000pt;}
.y13d{bottom:354.472000pt;}
.y9b{bottom:356.762667pt;}
.y1c3{bottom:356.784000pt;}
.y252{bottom:357.866667pt;}
.y171{bottom:358.020000pt;}
.yb4{bottom:360.352000pt;}
.ycc{bottom:365.201333pt;}
.y240{bottom:365.988000pt;}
.yea{bottom:366.362667pt;}
.y208{bottom:367.573333pt;}
.y27{bottom:367.938667pt;}
.y70{bottom:368.016000pt;}
.y18d{bottom:368.738667pt;}
.y27b{bottom:369.789333pt;}
.y108{bottom:369.896000pt;}
.y1dc{bottom:370.625333pt;}
.y1bb{bottom:371.109333pt;}
.y40{bottom:371.424000pt;}
.y127{bottom:372.088000pt;}
.y13c{bottom:376.385333pt;}
.y9a{bottom:378.676000pt;}
.y251{bottom:379.780000pt;}
.y222{bottom:383.028000pt;}
.y156{bottom:383.690667pt;}
.y6f{bottom:386.105333pt;}
.y1a7{bottom:386.570667pt;}
.ycb{bottom:387.116000pt;}
.y23f{bottom:387.901333pt;}
.ye9{bottom:388.276000pt;}
.y3f{bottom:389.756000pt;}
.y18c{bottom:390.652000pt;}
.y1ef{bottom:391.581333pt;}
.y107{bottom:391.809333pt;}
.y170{bottom:391.986667pt;}
.y1ba{bottom:393.022667pt;}
.y126{bottom:394.001333pt;}
.y207{bottom:398.050667pt;}
.y27a{bottom:400.248000pt;}
.y99{bottom:400.590667pt;}
.y250{bottom:401.693333pt;}
.y221{bottom:404.941333pt;}
.y3e{bottom:408.088000pt;}
.y1a6{bottom:408.484000pt;}
.y13b{bottom:408.577333pt;}
.yca{bottom:409.029333pt;}
.y23e{bottom:409.814667pt;}
.y18b{bottom:412.565333pt;}
.y1ee{bottom:413.494667pt;}
.y16f{bottom:413.900000pt;}
.y1b9{bottom:416.062667pt;}
.y155{bottom:416.924000pt;}
.y6e{bottom:417.477333pt;}
.ye8{bottom:418.444000pt;}
.y206{bottom:419.965333pt;}
.y106{bottom:420.085333pt;}
.y98{bottom:422.504000pt;}
.y24f{bottom:423.606667pt;}
.y3d{bottom:426.420000pt;}
.y220{bottom:426.854667pt;}
.y125{bottom:427.168000pt;}
.y13a{bottom:430.492000pt;}
.y279{bottom:430.706667pt;}
.y23d{bottom:431.728000pt;}
.y18a{bottom:434.478667pt;}
.y1ed{bottom:435.408000pt;}
.y6d{bottom:435.565333pt;}
.y16e{bottom:435.813333pt;}
.y1b8{bottom:437.976000pt;}
.y154{bottom:438.837333pt;}
.y26{bottom:439.738667pt;}
.y205{bottom:441.878667pt;}
.yc9{bottom:442.352000pt;}
.y97{bottom:444.417333pt;}
.y24e{bottom:445.520000pt;}
.y278{bottom:448.772000pt;}
.y1a5{bottom:449.258667pt;}
.ye7{bottom:450.833333pt;}
.y139{bottom:452.405333pt;}
.y23c{bottom:453.642667pt;}
.y6c{bottom:453.653333pt;}
.y105{bottom:454.721333pt;}
.y189{bottom:456.392000pt;}
.y25{bottom:457.805333pt;}
.y1c2{bottom:458.505333pt;}
.y3c{bottom:459.474667pt;}
.y1b7{bottom:459.889333pt;}
.y21f{bottom:464.714667pt;}
.y96{bottom:466.330667pt;}
.y16d{bottom:467.594667pt;}
.y24d{bottom:468.454667pt;}
.y153{bottom:470.569333pt;}
.y6b{bottom:471.742667pt;}
.y268{bottom:473.282667pt;}
.y138{bottom:474.318667pt;}
.y124{bottom:475.281333pt;}
.y23b{bottom:475.556000pt;}
.y24{bottom:475.870667pt;}
.y104{bottom:476.634667pt;}
.y3b{bottom:477.806667pt;}
.y188{bottom:478.305333pt;}
.y277{bottom:479.230667pt;}
.y1b6{bottom:481.802667pt;}
.ye6{bottom:483.221333pt;}
.y6a{bottom:489.830667pt;}
.y1ec{bottom:490.273333pt;}
.y24c{bottom:490.368000pt;}
.yc8{bottom:490.934667pt;}
.yb3{bottom:491.872000pt;}
.y23{bottom:493.936000pt;}
.y267{bottom:495.196000pt;}
.y3a{bottom:496.138667pt;}
.y212{bottom:496.500000pt;}
.y123{bottom:497.194667pt;}
.y276{bottom:497.296000pt;}
.y23a{bottom:497.469333pt;}
.y103{bottom:498.548000pt;}
.y187{bottom:500.218667pt;}
.y1b5{bottom:504.842667pt;}
.y95{bottom:505.160000pt;}
.y137{bottom:506.512000pt;}
.y69{bottom:507.920000pt;}
.y1d2{bottom:509.594667pt;}
.y16c{bottom:511.572000pt;}
.y22{bottom:512.001333pt;}
.y24b{bottom:512.281333pt;}
.y1a4{bottom:512.536000pt;}
.yc7{bottom:512.848000pt;}
.y152{bottom:514.274667pt;}
.y39{bottom:514.470667pt;}
.y275{bottom:515.361333pt;}
.ye5{bottom:515.609333pt;}
.y266{bottom:517.109333pt;}
.y211{bottom:518.413333pt;}
.y122{bottom:519.108000pt;}
.y239{bottom:519.382667pt;}
.y204{bottom:521.546667pt;}
.y186{bottom:522.132000pt;}
.y68{bottom:526.008000pt;}
.y1b4{bottom:526.756000pt;}
.y102{bottom:526.822667pt;}
.y21e{bottom:528.152000pt;}
.y136{bottom:528.425333pt;}
.y20{bottom:530.066667pt;}
.y1d1{bottom:531.508000pt;}
.y38{bottom:532.801333pt;}
.y24a{bottom:534.194667pt;}
.y1a3{bottom:534.449333pt;}
.y151{bottom:536.188000pt;}
.y202{bottom:537.972000pt;}
.y265{bottom:539.022667pt;}
.y121{bottom:541.021333pt;}
.y210{bottom:541.049333pt;}
.y67{bottom:544.096000pt;}
.y16b{bottom:545.538667pt;}
.y274{bottom:545.820000pt;}
.ye4{bottom:547.998667pt;}
.y1f{bottom:548.133333pt;}
.y1b3{bottom:548.669333pt;}
.y135{bottom:550.338667pt;}
.y37{bottom:551.133333pt;}
.yc6{bottom:551.408000pt;}
.y8c{bottom:551.828000pt;}
.y1d0{bottom:553.421333pt;}
.y249{bottom:556.108000pt;}
.y238{bottom:556.350667pt;}
.y150{bottom:558.101333pt;}
.y1a2{bottom:558.280000pt;}
.y185{bottom:559.334667pt;}
.y264{bottom:560.936000pt;}
.y101{bottom:561.460000pt;}
.y66{bottom:562.185333pt;}
.y94{bottom:562.629333pt;}
.y120{bottom:562.934667pt;}
.y20f{bottom:562.962667pt;}
.y273{bottom:563.885333pt;}
.y1e{bottom:566.198667pt;}
.y29{bottom:567.392000pt;}
.y36{bottom:569.465333pt;}
.y8b{bottom:569.893333pt;}
.y200{bottom:573.906667pt;}
.y218{bottom:577.298667pt;}
.y248{bottom:578.022667pt;}
.ye3{bottom:578.166667pt;}
.y16a{bottom:579.505333pt;}
.y14f{bottom:580.014667pt;}
.y65{bottom:580.273333pt;}
.y1a1{bottom:582.112000pt;}
.y134{bottom:582.532000pt;}
.y1b2{bottom:582.637333pt;}
.y263{bottom:582.849333pt;}
.y100{bottom:583.373333pt;}
.y1d{bottom:584.264000pt;}
.y93{bottom:584.542667pt;}
.y11f{bottom:584.848000pt;}
.y20e{bottom:584.876000pt;}
.y35{bottom:587.797333pt;}
.y8a{bottom:587.958667pt;}
.y272{bottom:594.344000pt;}
.y1ff{bottom:595.820000pt;}
.y64{bottom:598.361333pt;}
.y217{bottom:599.213333pt;}
.ye2{bottom:600.080000pt;}
.y169{bottom:601.420000pt;}
.y14e{bottom:601.928000pt;}
.y1c{bottom:602.329333pt;}
.y1a0{bottom:604.025333pt;}
.y133{bottom:604.445333pt;}
.y262{bottom:604.762667pt;}
.yff{bottom:605.286667pt;}
.y89{bottom:606.025333pt;}
.y34{bottom:606.129333pt;}
.y92{bottom:606.456000pt;}
.yc5{bottom:608.072000pt;}
.y237{bottom:608.262667pt;}
.y1cf{bottom:608.682667pt;}
.y184{bottom:611.945333pt;}
.y271{bottom:612.409333pt;}
.y63{bottom:616.450667pt;}
.y247{bottom:617.016000pt;}
.y11e{bottom:618.014667pt;}
.y1b{bottom:620.394667pt;}
.y216{bottom:621.126667pt;}
.ye1{bottom:621.993333pt;}
.y20d{bottom:623.277333pt;}
.y14d{bottom:623.842667pt;}
.y88{bottom:624.090667pt;}
.y33{bottom:624.461333pt;}
.y19f{bottom:625.938667pt;}
.y132{bottom:626.358667pt;}
.y261{bottom:626.677333pt;}
.yfe{bottom:627.200000pt;}
.y91{bottom:628.369333pt;}
.yc4{bottom:629.985333pt;}
.y236{bottom:630.176000pt;}
.y183{bottom:633.858667pt;}
.y62{bottom:634.538667pt;}
.y168{bottom:635.386667pt;}
.y1a{bottom:638.461333pt;}
.y1fe{bottom:641.976000pt;}
.y28{bottom:642.150667pt;}
.y87{bottom:642.156000pt;}
.y32{bottom:642.793333pt;}
.y270{bottom:642.868000pt;}
.y215{bottom:643.040000pt;}
.ye0{bottom:643.908000pt;}
.y14c{bottom:645.756000pt;}
.y1b1{bottom:647.428000pt;}
.y19e{bottom:647.852000pt;}
.y131{bottom:648.272000pt;}
.y260{bottom:648.590667pt;}
.yfd{bottom:649.113333pt;}
.y90{bottom:651.221333pt;}
.yc3{bottom:651.898667pt;}
.y235{bottom:652.089333pt;}
.y61{bottom:652.628000pt;}
.y6{bottom:652.689333pt;}
.y182{bottom:655.772000pt;}
.y19{bottom:656.526667pt;}
.y86{bottom:660.221333pt;}
.y26f{bottom:660.933333pt;}
.y31{bottom:661.125333pt;}
.y1fd{bottom:663.889333pt;}
.ydf{bottom:665.821333pt;}
.y11d{bottom:666.128000pt;}
.y14b{bottom:667.669333pt;}
.y167{bottom:669.354667pt;}
.y25f{bottom:670.504000pt;}
.y60{bottom:670.716000pt;}
.y19d{bottom:671.682667pt;}
.y8f{bottom:673.134667pt;}
.yc2{bottom:673.812000pt;}
.y234{bottom:674.004000pt;}
.y18{bottom:674.592000pt;}
.y246{bottom:674.977333pt;}
.yfc{bottom:677.388000pt;}
.y181{bottom:677.685333pt;}
.y85{bottom:678.286667pt;}
.y30{bottom:679.457333pt;}
.yb2{bottom:682.174667pt;}
.y1fc{bottom:685.802667pt;}
.y20c{bottom:687.261333pt;}
.yde{bottom:687.734667pt;}
.y11c{bottom:688.042667pt;}
.y5f{bottom:688.804000pt;}
.y166{bottom:691.268000pt;}
.y26e{bottom:691.392000pt;}
.y25e{bottom:692.417333pt;}
.y17{bottom:692.657333pt;}
.y1d9{bottom:693.540000pt;}
.y19c{bottom:695.513333pt;}
.y233{bottom:695.917333pt;}
.y84{bottom:696.353333pt;}
.y245{bottom:696.890667pt;}
.y2f{bottom:697.789333pt;}
.y14a{bottom:699.401333pt;}
.y180{bottom:699.598667pt;}
.y5e{bottom:706.893333pt;}
.y130{bottom:707.460000pt;}
.y1fb{bottom:707.717333pt;}
.ydd{bottom:709.648000pt;}
.yb1{bottom:709.822667pt;}
.y11b{bottom:709.956000pt;}
.y16{bottom:710.722667pt;}
.yfb{bottom:712.025333pt;}
.y214{bottom:712.086667pt;}
.y290{bottom:713.910667pt;}
.y25d{bottom:714.330667pt;}
.y83{bottom:714.418667pt;}
.y1d8{bottom:715.453333pt;}
.y19b{bottom:717.426667pt;}
.y232{bottom:717.830667pt;}
.y244{bottom:718.804000pt;}
.y17f{bottom:721.512000pt;}
.y5{bottom:721.833333pt;}
.y26d{bottom:721.850667pt;}
.ybf{bottom:722.416000pt;}
.ye{bottom:724.565333pt;}
.y5d{bottom:724.981333pt;}
.y165{bottom:725.234667pt;}
.y15{bottom:728.789333pt;}
.y1fa{bottom:729.630667pt;}
.y2e{bottom:730.844000pt;}
.ydc{bottom:731.561333pt;}
.yb0{bottom:731.736000pt;}
.y11a{bottom:731.869333pt;}
.y28f{bottom:731.977333pt;}
.y82{bottom:732.484000pt;}
.yfa{bottom:733.938667pt;}
.y1d7{bottom:737.366667pt;}
.y231{bottom:739.744000pt;}
.y19a{bottom:741.257333pt;}
.y149{bottom:743.106667pt;}
.ybe{bottom:744.329333pt;}
.y14{bottom:746.854667pt;}
.y164{bottom:747.148000pt;}
.y1eb{bottom:748.422667pt;}
.y2d{bottom:749.176000pt;}
.y28e{bottom:750.042667pt;}
.y81{bottom:750.549333pt;}
.y25c{bottom:751.298667pt;}
.y1f9{bottom:751.544000pt;}
.y26c{bottom:752.308000pt;}
.yaf{bottom:753.649333pt;}
.yf9{bottom:755.852000pt;}
.y5c{bottom:756.353333pt;}
.y1d6{bottom:759.280000pt;}
.y230{bottom:761.657333pt;}
.ydb{bottom:763.293333pt;}
.y13{bottom:764.920000pt;}
.y148{bottom:765.020000pt;}
.y119{bottom:765.036000pt;}
.y1ea{bottom:766.146667pt;}
.ybd{bottom:766.242667pt;}
.y2c{bottom:767.508000pt;}
.y28d{bottom:768.108000pt;}
.y21d{bottom:768.392000pt;}
.y80{bottom:768.614667pt;}
.y26b{bottom:770.373333pt;}
.y59{bottom:772.292000pt;}
.yae{bottom:775.564000pt;}
.y199{bottom:776.796000pt;}
.yf8{bottom:777.765333pt;}
.y163{bottom:781.116000pt;}
.y1d5{bottom:781.193333pt;}
.y1ce{bottom:781.297333pt;}
.y12{bottom:782.985333pt;}
.y22f{bottom:783.570667pt;}
.y2b{bottom:785.840000pt;}
.y7f{bottom:786.680000pt;}
.y147{bottom:786.933333pt;}
.y5b{bottom:787.725333pt;}
.ybc{bottom:788.156000pt;}
.y4{bottom:790.977333pt;}
.y243{bottom:794.872000pt;}
.y8e{bottom:795.038667pt;}
.yc1{bottom:795.310667pt;}
.y17e{bottom:796.677333pt;}
.y292{bottom:796.913333pt;}
.yad{bottom:797.477333pt;}
.y1f8{bottom:797.700000pt;}
.y28c{bottom:798.129333pt;}
.yf7{bottom:799.678667pt;}
.y26a{bottom:800.832000pt;}
.y11{bottom:801.050667pt;}
.y162{bottom:803.029333pt;}
.y1cd{bottom:803.210667pt;}
.y7e{bottom:804.746667pt;}
.y58{bottom:804.904000pt;}
.yda{bottom:806.394667pt;}
.yd{bottom:806.952000pt;}
.y146{bottom:808.846667pt;}
.ybb{bottom:810.069333pt;}
.y118{bottom:813.149333pt;}
.y1e9{bottom:814.634667pt;}
.y22e{bottom:815.302667pt;}
.y1d4{bottom:815.985333pt;}
.y28b{bottom:816.194667pt;}
.yac{bottom:819.390667pt;}
.y1f7{bottom:819.613333pt;}
.y1cc{bottom:825.124000pt;}
.yf6{bottom:827.953333pt;}
.yd9{bottom:828.308000pt;}
.yba{bottom:831.984000pt;}
.y198{bottom:831.992000pt;}
.y28a{bottom:834.260000pt;}
.y117{bottom:835.062667pt;}
.y1e8{bottom:836.548000pt;}
.y161{bottom:836.996000pt;}
.y57{bottom:837.514667pt;}
.y3{bottom:838.798667pt;}
.y17c{bottom:841.060000pt;}
.yab{bottom:841.304000pt;}
.y1f6{bottom:841.526667pt;}
.y145{bottom:845.814667pt;}
.y1cb{bottom:847.038667pt;}
.yd8{bottom:850.221333pt;}
.y289{bottom:852.325333pt;}
.y1c1{bottom:853.680000pt;}
.yb9{bottom:853.897333pt;}
.y56{bottom:855.580000pt;}
.y116{bottom:857.698667pt;}
.y1e7{bottom:858.461333pt;}
.y160{bottom:858.934667pt;}
.y22d{bottom:859.133333pt;}
.yf5{bottom:862.590667pt;}
.y17b{bottom:862.973333pt;}
.yaa{bottom:863.217333pt;}
.y1ca{bottom:868.952000pt;}
.y242{bottom:870.798667pt;}
.y8d{bottom:870.881333pt;}
.yc0{bottom:871.017333pt;}
.y17d{bottom:871.701333pt;}
.y291{bottom:871.818667pt;}
.y2a{bottom:872.029333pt;}
.yd7{bottom:872.134667pt;}
.y269{bottom:872.141333pt;}
.y5a{bottom:872.232000pt;}
.y10{bottom:872.250667pt;}
.y197{bottom:873.529333pt;}
.y55{bottom:873.645333pt;}
.y1c0{bottom:875.593333pt;}
.yb8{bottom:875.810667pt;}
.y115{bottom:879.612000pt;}
.y1e6{bottom:880.374667pt;}
.y15f{bottom:880.848000pt;}
.y22c{bottom:881.046667pt;}
.y288{bottom:882.346667pt;}
.yf4{bottom:884.504000pt;}
.y17a{bottom:884.888000pt;}
.ya9{bottom:885.130667pt;}
.y2{bottom:886.618667pt;}
.yc{bottom:889.337333pt;}
.y1c9{bottom:890.865333pt;}
.y196{bottom:895.442667pt;}
.y1bf{bottom:897.506667pt;}
.y144{bottom:897.601333pt;}
.yb7{bottom:897.724000pt;}
.y287{bottom:900.412000pt;}
.y114{bottom:901.525333pt;}
.y1e5{bottom:902.288000pt;}
.yd6{bottom:902.304000pt;}
.y22b{bottom:902.960000pt;}
.y54{bottom:906.256000pt;}
.yf3{bottom:906.417333pt;}
.y179{bottom:906.801333pt;}
.y1f5{bottom:908.117333pt;}
.yb{bottom:911.250667pt;}
.y15e{bottom:912.628000pt;}
.ya8{bottom:912.778667pt;}
.yb6{bottom:919.637333pt;}
.y1be{bottom:921.246667pt;}
.y113{bottom:923.438667pt;}
.yd5{bottom:924.217333pt;}
.y53{bottom:924.322667pt;}
.y22a{bottom:924.873333pt;}
.yf2{bottom:928.330667pt;}
.y178{bottom:928.714667pt;}
.y286{bottom:930.432000pt;}
.y1e4{bottom:934.188000pt;}
.ya7{bottom:934.692000pt;}
.y195{bottom:936.981333pt;}
.yb5{bottom:941.550667pt;}
.y52{bottom:942.388000pt;}
.y1bd{bottom:943.160000pt;}
.y112{bottom:945.353333pt;}
.y229{bottom:946.788000pt;}
.y285{bottom:948.498667pt;}
.yf1{bottom:950.244000pt;}
.y177{bottom:950.628000pt;}
.ya6{bottom:956.605333pt;}
.y51{bottom:960.453333pt;}
.y50{bottom:978.518667pt;}
.y1{bottom:1023.313333pt;}
.y4f{bottom:1031.760000pt;}
.hd{height:30.346795pt;}
.hf{height:36.922052pt;}
.h8{height:39.738215pt;}
.h9{height:41.483671pt;}
.hc{height:45.461641pt;}
.h6{height:51.781861pt;}
.h2{height:54.553817pt;}
.h5{height:56.747349pt;}
.he{height:58.946075pt;}
.ha{height:58.951408pt;}
.h7{height:65.464428pt;}
.h4{height:68.096629pt;}
.hb{height:78.572600pt;}
.h3{height:94.257079pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:77.804000pt;}
.x1d{left:94.488000pt;}
.x29{left:112.670667pt;}
.x1c{left:116.306667pt;}
.x32{left:121.054667pt;}
.x28{left:130.852000pt;}
.xe{left:132.284000pt;}
.x1f{left:140.253333pt;}
.xb{left:142.598667pt;}
.x26{left:148.306667pt;}
.x1b{left:149.761333pt;}
.x3{left:150.941333pt;}
.xf{left:154.865333pt;}
.x1{left:159.230667pt;}
.x27{left:162.852000pt;}
.x2{left:164.722667pt;}
.x24{left:168.646667pt;}
.xd{left:176.321333pt;}
.x33{left:181.380000pt;}
.x25{left:186.101333pt;}
.x19{left:187.556000pt;}
.x34{left:192.216000pt;}
.x7{left:216.226667pt;}
.x15{left:237.661333pt;}
.x35{left:240.769333pt;}
.x41{left:246.433333pt;}
.x2f{left:248.652000pt;}
.x3c{left:250.070667pt;}
.x43{left:251.176000pt;}
.x3f{left:254.812000pt;}
.x36{left:257.517333pt;}
.x39{left:263.801333pt;}
.x2e{left:265.808000pt;}
.xc{left:269.750667pt;}
.x38{left:274.310667pt;}
.x22{left:277.321333pt;}
.x40{left:284.229333pt;}
.x3e{left:287.865333pt;}
.x42{left:288.970667pt;}
.x3a{left:290.338667pt;}
.x2d{left:292.090667pt;}
.x30{left:293.502667pt;}
.x37{left:297.756000pt;}
.x9{left:301.697333pt;}
.x1e{left:313.582667pt;}
.x8{left:315.437333pt;}
.x3d{left:327.996000pt;}
.x3b{left:329.058667pt;}
.x4{left:332.216000pt;}
.x1a{left:337.960000pt;}
.x21{left:346.448000pt;}
.x2b{left:347.945333pt;}
.x2a{left:352.185333pt;}
.xa{left:357.166667pt;}
.x6{left:358.832000pt;}
.x18{left:368.250667pt;}
.x5{left:370.328000pt;}
.x13{left:372.476000pt;}
.x11{left:373.909333pt;}
.x23{left:384.242667pt;}
.x2c{left:385.741333pt;}
.x20{left:406.046667pt;}
.x17{left:408.068000pt;}
.x12{left:409.682667pt;}
.x14{left:412.112000pt;}
.x10{left:413.726667pt;}
.x16{left:610.733333pt;}
}




    .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; }
  