
    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_c4f413325c43b764996d71da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_1a9823b1d2eb39fb95bd5357.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8030ee21f830baaf6284bf43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_5e68547a121cdc2216f19f73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_c9c5d5bb52eadfa5ad6fe957.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_439b5ca2691e3d1f24624f9b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_e89a50a25b6cd0a10b2e9972.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_e99ccb8acea54b67aa1d227b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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:fff;src:url('chunks/assets/font_b7f375d20c12702fc7caf711.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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:ff10;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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:ff11;src:url('chunks/assets/font_f9209f027c7a93547d1132a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.851562;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:ff12;src:url('chunks/assets/font_79b2140dcdfba0225ab65ff7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls26{letter-spacing:-19.260000px;}
.ls1a{letter-spacing:-15.660000px;}
.ls27{letter-spacing:-14.220000px;}
.ls14{letter-spacing:-7.020000px;}
.ls1b{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.089400px;}
.lsf{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls13{letter-spacing:0.156000px;}
.ls8{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.900000px;}
.ls1f{letter-spacing:2.270880px;}
.ls23{letter-spacing:2.988000px;}
.ls18{letter-spacing:5.139360px;}
.ls20{letter-spacing:6.573600px;}
.ls24{letter-spacing:8.067600px;}
.ls21{letter-spacing:11.100000px;}
.ls19{letter-spacing:13.860000px;}
.ls17{letter-spacing:14.580000px;}
.ls1d{letter-spacing:15.480000px;}
.ls22{letter-spacing:16.020000px;}
.ls1e{letter-spacing:18.824400px;}
.ls15{letter-spacing:19.386720px;}
.ls12{letter-spacing:24.749280px;}
.ls16{letter-spacing:31.075200px;}
.ls2{letter-spacing:48.420000px;}
.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;}
}
.ws11{word-spacing:-48.240000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.wse{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws5{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.wsa{word-spacing:-10.213800px;}
.ws7{word-spacing:-9.000000px;}
.ws4{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-2429.766960px;}
._1c{margin-left:-1420.935120px;}
._1b{margin-left:-1396.816080px;}
._32{margin-left:-1269.834480px;}
._18{margin-left:-1096.132320px;}
._31{margin-left:-1067.697120px;}
._19{margin-left:-1015.384320px;}
._52{margin-left:-813.900480px;}
._55{margin-left:-743.464320px;}
._5d{margin-left:-715.127040px;}
._4f{margin-left:-685.290960px;}
._4c{margin-left:-544.516560px;}
._5b{margin-left:-542.158320px;}
._45{margin-left:-483.808560px;}
._4e{margin-left:-465.240000px;}
._17{margin-left:-435.000000px;}
._4d{margin-left:-429.243360px;}
._54{margin-left:-379.250160px;}
._5a{margin-left:-353.217360px;}
._1a{margin-left:-312.326640px;}
._48{margin-left:-279.103680px;}
._42{margin-left:-180.000000px;}
._30{margin-left:-149.760000px;}
._7{margin-left:-60.300000px;}
._38{margin-left:-38.160000px;}
._44{margin-left:-30.090480px;}
._53{margin-left:-18.824400px;}
._59{margin-left:-17.453520px;}
._47{margin-left:-15.318960px;}
._43{margin-left:-14.283360px;}
._46{margin-left:-11.033280px;}
._15{margin-left:-3.618000px;}
._c{margin-left:-2.589840px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._13{width:2.286960px;}
._2{width:3.332640px;}
._b{width:4.840560px;}
._a{width:5.916240px;}
._d{width:7.094880px;}
._e{width:8.904240px;}
._14{width:10.027680px;}
._10{width:11.772000px;}
._21{width:13.380720px;}
._f{width:14.970000px;}
._9{width:16.357200px;}
._12{width:17.412720px;}
._29{width:18.818880px;}
._11{width:20.736000px;}
._1f{width:22.036320px;}
._3c{width:23.076960px;}
._26{width:24.094320px;}
._25{width:25.392480px;}
._1d{width:26.772480px;}
._1e{width:28.266480px;}
._36{width:29.333040px;}
._24{width:30.412320px;}
._2e{width:31.727040px;}
._34{width:32.938800px;}
._2f{width:33.949200px;}
._2d{width:35.133360px;}
._40{width:37.051200px;}
._37{width:39.077520px;}
._22{width:40.870320px;}
._23{width:41.891760px;}
._2c{width:43.005120px;}
._39{width:44.939520px;}
._5c{width:46.607280px;}
._28{width:47.808000px;}
._27{width:48.823920px;}
._3b{width:49.839840px;}
._33{width:50.855760px;}
._3e{width:52.491120px;}
._3d{width:53.604720px;}
._3f{width:56.620320px;}
._4b{width:57.889680px;}
._4a{width:58.923360px;}
._20{width:61.014960px;}
._2a{width:62.987040px;}
._5{width:65.496000px;}
._2b{width:66.866880px;}
._4{width:71.580960px;}
._3a{width:72.614400px;}
._35{width:79.950480px;}
._57{width:89.042400px;}
._56{width:126.691200px;}
._50{width:149.579280px;}
._51{width:150.714720px;}
._58{width:176.197200px;}
._6{width:199.620000px;}
._41{width:201.152160px;}
._16{width:282.270000px;}
._49{width:326.848560px;}
._8{width:755.976000px;}
.fc9{color:rgb(238,0,0);}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs12{font-size:6.000000px;}
.fsd{font-size:12.240000px;}
.fs11{font-size:23.760000px;}
.fsf{font-size:30.240000px;}
.fse{font-size:33.120000px;}
.fsa{font-size:36.000000px;}
.fs10{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.y4c{bottom:-246.630000px;}
.y4b{bottom:-212.970000px;}
.y89{bottom:-182.565000px;}
.y4a{bottom:-179.130000px;}
.y88{bottom:-148.905000px;}
.y49{bottom:-145.470000px;}
.y87{bottom:-115.065000px;}
.y48{bottom:-111.600000px;}
.y86{bottom:-81.360000px;}
.y47{bottom:-77.940000px;}
.y85{bottom:-47.700000px;}
.y46{bottom:-44.280000px;}
.y8b{bottom:-17.922750px;}
.y84{bottom:-13.860000px;}
.y45{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y22f{bottom:1.837500px;}
.y142{bottom:2.520000px;}
.y146{bottom:2.565000px;}
.y164{bottom:3.420000px;}
.y183{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y150{bottom:3.960000px;}
.y152{bottom:4.500000px;}
.y78{bottom:5.550000px;}
.y70{bottom:6.480000px;}
.y144{bottom:6.840000px;}
.y44{bottom:7.740000px;}
.y14e{bottom:8.100000px;}
.y162{bottom:9.360000px;}
.y15f{bottom:9.540000px;}
.y15b{bottom:9.720000px;}
.y76{bottom:10.440000px;}
.y197{bottom:10.620000px;}
.y17e{bottom:11.340000px;}
.y8{bottom:12.420000px;}
.y195{bottom:12.600000px;}
.y181{bottom:14.580000px;}
.y180{bottom:14.760000px;}
.y83{bottom:17.100000px;}
.y43{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y6f{bottom:21.960000px;}
.y6{bottom:23.220000px;}
.y75{bottom:23.400000px;}
.y7{bottom:24.480000px;}
.y17d{bottom:26.100000px;}
.y194{bottom:26.460000px;}
.y82{bottom:30.060000px;}
.y6e{bottom:34.380000px;}
.yb{bottom:35.100000px;}
.y42{bottom:35.640000px;}
.y74{bottom:36.540000px;}
.y193{bottom:40.365000px;}
.y17c{bottom:41.040000px;}
.y81{bottom:43.200000px;}
.y8f{bottom:47.520000px;}
.y41{bottom:49.500000px;}
.y6d{bottom:52.200000px;}
.y192{bottom:54.045000px;}
.y17b{bottom:55.980000px;}
.y80{bottom:56.160000px;}
.y4{bottom:57.420000px;}
.y40{bottom:62.460000px;}
.y73{bottom:62.640000px;}
.y8a{bottom:63.780000px;}
.y8e{bottom:66.420000px;}
.y7f{bottom:69.120000px;}
.y6c{bottom:70.020000px;}
.y17a{bottom:70.920000px;}
.y72{bottom:79.740000px;}
.y7e{bottom:82.260000px;}
.y6b{bottom:87.840000px;}
.y7d{bottom:95.220000px;}
.y1f3{bottom:100.620000px;}
.y22e{bottom:102.420000px;}
.yc0{bottom:102.600000px;}
.y11e{bottom:103.320000px;}
.y215{bottom:103.680000px;}
.y6a{bottom:105.660000px;}
.yec{bottom:106.380000px;}
.y18f{bottom:106.920000px;}
.y7c{bottom:108.360000px;}
.y138{bottom:114.480000px;}
.y165{bottom:114.840000px;}
.y1b6{bottom:117.360000px;}
.y3e{bottom:118.980000px;}
.y69{bottom:119.160000px;}
.y1f2{bottom:120.420000px;}
.y7b{bottom:121.320000px;}
.y22d{bottom:122.220000px;}
.ybf{bottom:122.580000px;}
.y11d{bottom:123.120000px;}
.y214{bottom:123.480000px;}
.yeb{bottom:126.180000px;}
.y18e{bottom:126.720000px;}
.y68{bottom:127.800000px;}
.y163{bottom:133.560000px;}
.y7a{bottom:133.590000px;}
.y137{bottom:134.460000px;}
.y1b5{bottom:137.160000px;}
.y3d{bottom:138.780000px;}
.y1ce{bottom:138.960000px;}
.y1f1{bottom:140.220000px;}
.y22c{bottom:142.020000px;}
.ybe{bottom:142.380000px;}
.y11c{bottom:142.920000px;}
.y213{bottom:143.280000px;}
.y67{bottom:145.800000px;}
.yea{bottom:145.980000px;}
.y18d{bottom:146.520000px;}
.y136{bottom:154.260000px;}
.y1b4{bottom:156.960000px;}
.y3c{bottom:158.580000px;}
.y1cd{bottom:158.760000px;}
.y1f0{bottom:160.020000px;}
.y22b{bottom:162.000000px;}
.ybd{bottom:162.210000px;}
.y161{bottom:162.570000px;}
.y11b{bottom:162.750000px;}
.y212{bottom:163.110000px;}
.y66{bottom:163.665000px;}
.ye9{bottom:165.990000px;}
.y18c{bottom:166.350000px;}
.y135{bottom:174.090000px;}
.y1b3{bottom:176.790000px;}
.y3b{bottom:178.410000px;}
.y1cc{bottom:178.590000px;}
.y1ef{bottom:179.850000px;}
.y65{bottom:181.485000px;}
.y22a{bottom:181.830000px;}
.ybc{bottom:182.010000px;}
.y11a{bottom:182.730000px;}
.y211{bottom:184.170000px;}
.ye8{bottom:185.790000px;}
.y18b{bottom:186.150000px;}
.y134{bottom:193.890000px;}
.y1b2{bottom:196.770000px;}
.y3a{bottom:198.210000px;}
.y1cb{bottom:198.390000px;}
.y64{bottom:199.305000px;}
.y1ee{bottom:199.830000px;}
.y229{bottom:201.630000px;}
.ybb{bottom:201.810000px;}
.y119{bottom:202.530000px;}
.y160{bottom:203.070000px;}
.ye7{bottom:205.590000px;}
.y18a{bottom:206.130000px;}
.y133{bottom:213.690000px;}
.y1b1{bottom:216.570000px;}
.y63{bottom:217.125000px;}
.y1ca{bottom:218.190000px;}
.y39{bottom:219.450000px;}
.y1ed{bottom:219.630000px;}
.y228{bottom:221.430000px;}
.yba{bottom:221.790000px;}
.y118{bottom:222.330000px;}
.y189{bottom:223.410000px;}
.y210{bottom:224.850000px;}
.ye6{bottom:225.390000px;}
.y15e{bottom:230.430000px;}
.y132{bottom:233.670000px;}
.y62{bottom:234.945000px;}
.y188{bottom:236.370000px;}
.y38{bottom:236.730000px;}
.y1c9{bottom:238.170000px;}
.y1ec{bottom:239.430000px;}
.y227{bottom:241.230000px;}
.yb9{bottom:241.590000px;}
.y117{bottom:242.130000px;}
.y20f{bottom:244.650000px;}
.y37{bottom:245.190000px;}
.y4d{bottom:245.370000px;}
.y61{bottom:252.945000px;}
.y131{bottom:253.470000px;}
.y187{bottom:255.090000px;}
.y1b0{bottom:256.170000px;}
.y1c8{bottom:257.970000px;}
.y1eb{bottom:259.230000px;}
.y226{bottom:261.210000px;}
.yb8{bottom:261.390000px;}
.y116{bottom:261.930000px;}
.y20e{bottom:264.450000px;}
.ye5{bottom:265.170000px;}
.y36{bottom:265.350000px;}
.y60{bottom:270.765000px;}
.y15d{bottom:271.650000px;}
.y130{bottom:273.270000px;}
.y1af{bottom:275.970000px;}
.y1c7{bottom:277.770000px;}
.y35{bottom:278.310000px;}
.y1ea{bottom:279.030000px;}
.y225{bottom:281.010000px;}
.yb7{bottom:281.190000px;}
.y115{bottom:281.910000px;}
.y186{bottom:283.530000px;}
.y20d{bottom:285.510000px;}
.ye4{bottom:286.230000px;}
.y5f{bottom:288.585000px;}
.y12f{bottom:293.070000px;}
.y1ae{bottom:295.950000px;}
.y34{bottom:296.670000px;}
.y1c6{bottom:297.570000px;}
.y15c{bottom:298.830000px;}
.y224{bottom:300.810000px;}
.yb6{bottom:300.990000px;}
.y114{bottom:301.710000px;}
.ye3{bottom:306.390000px;}
.y5e{bottom:306.405000px;}
.y185{bottom:311.970000px;}
.y12e{bottom:312.870000px;}
.y1ad{bottom:315.750000px;}
.y1c5{bottom:317.370000px;}
.y1e9{bottom:318.810000px;}
.y33{bottom:320.610000px;}
.yb5{bottom:320.970000px;}
.y113{bottom:321.510000px;}
.y5d{bottom:324.225000px;}
.y20c{bottom:326.010000px;}
.y15a{bottom:326.190000px;}
.y12d{bottom:332.850000px;}
.y1ac{bottom:335.550000px;}
.y1c4{bottom:337.350000px;}
.y1e8{bottom:338.610000px;}
.y5c{bottom:339.705000px;}
.ye2{bottom:340.410000px;}
.yb4{bottom:340.770000px;}
.y112{bottom:341.310000px;}
.y32{bottom:344.370000px;}
.y20b{bottom:345.990000px;}
.y5b{bottom:352.125000px;}
.y12c{bottom:353.910000px;}
.y1ab{bottom:355.350000px;}
.y1c3{bottom:357.150000px;}
.y1e7{bottom:358.410000px;}
.ye1{bottom:360.390000px;}
.yb3{bottom:360.570000px;}
.y111{bottom:361.110000px;}
.y20a{bottom:365.790000px;}
.y31{bottom:368.130000px;}
.y184{bottom:368.670000px;}
.y5a{bottom:369.945000px;}
.y12b{bottom:373.530000px;}
.y1aa{bottom:375.150000px;}
.y1c2{bottom:376.950000px;}
.y1e6{bottom:378.210000px;}
.ye0{bottom:380.190000px;}
.yb2{bottom:380.370000px;}
.y110{bottom:381.090000px;}
.y209{bottom:385.590000px;}
.y12a{bottom:386.310000px;}
.y59{bottom:387.795000px;}
.y30{bottom:391.890000px;}
.y1a9{bottom:395.175000px;}
.y159{bottom:395.355000px;}
.y1c1{bottom:396.795000px;}
.y182{bottom:397.155000px;}
.y1e5{bottom:398.055000px;}
.ydf{bottom:400.035000px;}
.yb1{bottom:400.215000px;}
.y10f{bottom:400.935000px;}
.y208{bottom:405.435000px;}
.y58{bottom:405.615000px;}
.y129{bottom:406.155000px;}
.y1a8{bottom:414.975000px;}
.y2f{bottom:415.875000px;}
.y1c0{bottom:416.595000px;}
.y1e4{bottom:418.035000px;}
.yde{bottom:419.835000px;}
.yb0{bottom:420.195000px;}
.y10e{bottom:420.735000px;}
.y158{bottom:422.715000px;}
.y57{bottom:423.435000px;}
.y207{bottom:425.235000px;}
.y179{bottom:425.595000px;}
.y128{bottom:426.135000px;}
.y1a7{bottom:434.775000px;}
.y1bf{bottom:436.575000px;}
.y1e3{bottom:437.835000px;}
.y2e{bottom:439.635000px;}
.yaf{bottom:439.995000px;}
.y10d{bottom:440.535000px;}
.y56{bottom:441.435000px;}
.y206{bottom:445.215000px;}
.y127{bottom:445.935000px;}
.y157{bottom:450.075000px;}
.y1a6{bottom:454.575000px;}
.y1be{bottom:456.375000px;}
.y1e2{bottom:457.635000px;}
.y55{bottom:459.255000px;}
.ydd{bottom:459.615000px;}
.yae{bottom:459.795000px;}
.y10c{bottom:460.335000px;}
.y2d{bottom:463.395000px;}
.y205{bottom:465.015000px;}
.y126{bottom:465.735000px;}
.y1a5{bottom:474.375000px;}
.y1bd{bottom:476.175000px;}
.y54{bottom:477.075000px;}
.y156{bottom:477.255000px;}
.y1e1{bottom:477.435000px;}
.y17f{bottom:478.335000px;}
.ydc{bottom:479.415000px;}
.yad{bottom:479.595000px;}
.y10b{bottom:480.315000px;}
.y125{bottom:485.535000px;}
.y204{bottom:486.075000px;}
.y2c{bottom:487.155000px;}
.y53{bottom:490.575000px;}
.y1a4{bottom:494.355000px;}
.y79{bottom:495.255000px;}
.y1bc{bottom:495.975000px;}
.y1e0{bottom:497.235000px;}
.y52{bottom:499.215000px;}
.yac{bottom:499.395000px;}
.y10a{bottom:500.115000px;}
.y155{bottom:504.615000px;}
.y124{bottom:505.335000px;}
.y2b{bottom:507.855000px;}
.y1a3{bottom:514.155000px;}
.y1bb{bottom:515.775000px;}
.y51{bottom:517.035000px;}
.y1df{bottom:517.215000px;}
.ydb{bottom:519.015000px;}
.yab{bottom:519.375000px;}
.y109{bottom:519.915000px;}
.y123{bottom:525.315000px;}
.y203{bottom:526.575000px;}
.y2a{bottom:527.475000px;}
.y178{bottom:528.735000px;}
.y154{bottom:531.795000px;}
.y1a2{bottom:533.955000px;}
.y50{bottom:534.855000px;}
.y1ba{bottom:535.755000px;}
.y1de{bottom:537.015000px;}
.yda{bottom:538.815000px;}
.yaa{bottom:539.175000px;}
.y108{bottom:539.715000px;}
.y29{bottom:541.515000px;}
.y122{bottom:545.115000px;}
.y177{bottom:545.475000px;}
.y202{bottom:547.815000px;}
.y28{bottom:549.975000px;}
.y4f{bottom:552.855000px;}
.y1a1{bottom:553.755000px;}
.y1b9{bottom:555.555000px;}
.y1dd{bottom:556.815000px;}
.yd9{bottom:558.795000px;}
.ya9{bottom:558.975000px;}
.y153{bottom:559.155000px;}
.y107{bottom:559.515000px;}
.y176{bottom:563.295000px;}
.y121{bottom:564.915000px;}
.y4e{bottom:570.675000px;}
.y1a0{bottom:571.755000px;}
.y27{bottom:573.195000px;}
.y1b8{bottom:575.355000px;}
.y1dc{bottom:576.615000px;}
.yd8{bottom:578.595000px;}
.ya8{bottom:578.775000px;}
.y106{bottom:579.495000px;}
.y175{bottom:581.655000px;}
.y120{bottom:585.975000px;}
.y151{bottom:586.515000px;}
.y201{bottom:588.315000px;}
.y19f{bottom:592.455000px;}
.y1b7{bottom:595.155000px;}
.y1db{bottom:596.415000px;}
.y26{bottom:596.595000px;}
.yd7{bottom:598.395000px;}
.ya7{bottom:598.575000px;}
.y105{bottom:599.295000px;}
.y174{bottom:601.455000px;}
.y11f{bottom:605.595000px;}
.y200{bottom:608.115000px;}
.y19e{bottom:612.615000px;}
.y1da{bottom:616.395000px;}
.y14f{bottom:618.015000px;}
.yd6{bottom:618.195000px;}
.ya6{bottom:618.555000px;}
.y104{bottom:619.095000px;}
.y25{bottom:619.815000px;}
.y173{bottom:621.435000px;}
.y19d{bottom:625.605000px;}
.y1ff{bottom:629.205000px;}
.y1d9{bottom:636.225000px;}
.yd5{bottom:638.025000px;}
.ya5{bottom:638.385000px;}
.y103{bottom:638.925000px;}
.y172{bottom:641.265000px;}
.y19c{bottom:644.325000px;}
.y14d{bottom:648.105000px;}
.y71{bottom:649.905000px;}
.y1d8{bottom:656.025000px;}
.yd4{bottom:658.005000px;}
.ya4{bottom:658.185000px;}
.y102{bottom:658.725000px;}
.y171{bottom:661.065000px;}
.y1fe{bottom:669.705000px;}
.y19b{bottom:672.765000px;}
.y24{bottom:675.105000px;}
.y1d7{bottom:675.825000px;}
.yd3{bottom:677.805000px;}
.ya3{bottom:677.985000px;}
.y101{bottom:678.705000px;}
.y14c{bottom:686.625000px;}
.y170{bottom:688.425000px;}
.y1fd{bottom:689.685000px;}
.y23{bottom:690.585000px;}
.y1d6{bottom:695.625000px;}
.yd2{bottom:697.605000px;}
.ya2{bottom:697.785000px;}
.y100{bottom:698.505000px;}
.y19a{bottom:701.025000px;}
.y22{bottom:706.065000px;}
.y16f{bottom:707.145000px;}
.y1fc{bottom:710.745000px;}
.y14b{bottom:713.985000px;}
.y1d5{bottom:715.605000px;}
.yd1{bottom:717.405000px;}
.ya1{bottom:717.765000px;}
.yff{bottom:718.305000px;}
.y21{bottom:721.725000px;}
.y199{bottom:729.465000px;}
.y16e{bottom:734.325000px;}
.y1fb{bottom:734.505000px;}
.y1d4{bottom:735.405000px;}
.y20{bottom:737.205000px;}
.ya0{bottom:737.565000px;}
.yfe{bottom:738.105000px;}
.y14a{bottom:741.165000px;}
.y1f{bottom:747.825000px;}
.y1d3{bottom:755.205000px;}
.yd0{bottom:757.185000px;}
.y3f{bottom:757.365000px;}
.yfd{bottom:757.905000px;}
.y16d{bottom:761.685000px;}
.y1e{bottom:762.765000px;}
.y149{bottom:768.525000px;}
.y1d2{bottom:775.005000px;}
.ycf{bottom:776.985000px;}
.y9f{bottom:777.165000px;}
.yfc{bottom:777.885000px;}
.y1d{bottom:780.585000px;}
.y198{bottom:786.345000px;}
.y16c{bottom:789.045000px;}
.y1c{bottom:793.545000px;}
.y1d1{bottom:794.805000px;}
.y148{bottom:795.885000px;}
.yce{bottom:796.245000px;}
.y223{bottom:796.785000px;}
.y9e{bottom:796.965000px;}
.yfb{bottom:797.685000px;}
.y1b{bottom:806.505000px;}
.ycd{bottom:814.605000px;}
.y1d0{bottom:814.785000px;}
.y16b{bottom:816.225000px;}
.y222{bottom:816.585000px;}
.y9d{bottom:816.945000px;}
.yfa{bottom:817.485000px;}
.y1a{bottom:820.365000px;}
.y147{bottom:823.065000px;}
.ycc{bottom:834.405000px;}
.y1fa{bottom:834.585000px;}
.y19{bottom:835.305000px;}
.y1cf{bottom:835.845000px;}
.y221{bottom:836.385000px;}
.y9c{bottom:836.745000px;}
.yf9{bottom:837.285000px;}
.y16a{bottom:843.585000px;}
.y18{bottom:846.465000px;}
.y145{bottom:850.425000px;}
.ycb{bottom:854.250000px;}
.y1f9{bottom:854.430000px;}
.y220{bottom:856.410000px;}
.y9b{bottom:856.590000px;}
.yf8{bottom:857.130000px;}
.y196{bottom:860.190000px;}
.y17{bottom:869.370000px;}
.y169{bottom:870.990000px;}
.yca{bottom:874.230000px;}
.y21f{bottom:876.210000px;}
.y9a{bottom:876.390000px;}
.yf7{bottom:877.110000px;}
.y143{bottom:877.830000px;}
.y16{bottom:892.950000px;}
.yc9{bottom:894.030000px;}
.y21e{bottom:896.010000px;}
.y99{bottom:896.190000px;}
.yf6{bottom:896.910000px;}
.y168{bottom:900.510000px;}
.y191{bottom:901.950000px;}
.y141{bottom:907.350000px;}
.y15{bottom:907.890000px;}
.yc8{bottom:913.830000px;}
.y1f8{bottom:914.010000px;}
.y21d{bottom:915.810000px;}
.y98{bottom:916.170000px;}
.yf5{bottom:916.710000px;}
.y190{bottom:917.610000px;}
.y14{bottom:918.330000px;}
.y13{bottom:932.730000px;}
.y1f7{bottom:933.810000px;}
.yc7{bottom:934.890000px;}
.y140{bottom:935.430000px;}
.y21c{bottom:935.610000px;}
.y97{bottom:935.970000px;}
.yf4{bottom:936.510000px;}
.y167{bottom:941.010000px;}
.y12{bottom:951.450000px;}
.y13f{bottom:953.250000px;}
.y1f6{bottom:953.610000px;}
.y21b{bottom:955.590000px;}
.y96{bottom:955.770000px;}
.yf3{bottom:956.310000px;}
.y166{bottom:957.750000px;}
.yc6{bottom:971.430000px;}
.y13e{bottom:971.610000px;}
.y1f5{bottom:973.410000px;}
.y11{bottom:973.590000px;}
.y21a{bottom:975.390000px;}
.y95{bottom:975.570000px;}
.yf2{bottom:976.290000px;}
.yc5{bottom:991.230000px;}
.y13d{bottom:991.410000px;}
.y1f4{bottom:994.470000px;}
.y219{bottom:995.190000px;}
.y94{bottom:995.370000px;}
.yf1{bottom:996.090000px;}
.y10{bottom:1003.470000px;}
.yc4{bottom:1011.030000px;}
.y13c{bottom:1011.210000px;}
.y218{bottom:1014.990000px;}
.y93{bottom:1015.170000px;}
.yf0{bottom:1015.890000px;}
.yf{bottom:1027.590000px;}
.yc3{bottom:1030.830000px;}
.y13b{bottom:1031.190000px;}
.y217{bottom:1034.790000px;}
.y92{bottom:1035.150000px;}
.yef{bottom:1035.690000px;}
.ye{bottom:1039.110000px;}
.y77{bottom:1049.580000px;}
.y13a{bottom:1050.990000px;}
.yc2{bottom:1052.070000px;}
.yd{bottom:1054.590000px;}
.y216{bottom:1054.770000px;}
.y91{bottom:1054.950000px;}
.yee{bottom:1055.490000px;}
.yc{bottom:1070.070000px;}
.y139{bottom:1072.050000px;}
.yc1{bottom:1072.770000px;}
.y90{bottom:1074.750000px;}
.yed{bottom:1075.290000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.y8d{bottom:1092.060000px;}
.y2{bottom:1101.240000px;}
.y1{bottom:1117.080000px;}
.y8c{bottom:1122.660000px;}
.h20{height:4.064063px;}
.h9{height:4.806563px;}
.h45{height:6.257812px;}
.hf{height:8.636133px;}
.h5{height:13.500000px;}
.h30{height:13.680000px;}
.h2f{height:13.860000px;}
.h31{height:13.896000px;}
.h40{height:14.760000px;}
.h3f{height:14.940000px;}
.h38{height:15.480000px;}
.h33{height:16.596000px;}
.h34{height:18.000000px;}
.h1d{height:19.827070px;}
.h24{height:21.336328px;}
.h27{height:22.320000px;}
.h32{height:25.020000px;}
.h12{height:25.234453px;}
.h1f{height:25.400391px;}
.h1b{height:25.699425px;}
.hd{height:26.208984px;}
.h37{height:27.000000px;}
.h26{height:27.061523px;}
.h39{height:27.360000px;}
.h36{height:27.720000px;}
.h35{height:28.440000px;}
.h2e{height:29.671875px;}
.h42{height:29.880000px;}
.h16{height:30.963516px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h8{height:34.847578px;}
.h3d{height:35.120039px;}
.h3e{height:37.080000px;}
.h3c{height:37.260000px;}
.h3a{height:37.705078px;}
.h18{height:37.851680px;}
.hc{height:39.313477px;}
.h1a{height:40.254961px;}
.h43{height:41.726953px;}
.h3{height:42.658242px;}
.h1c{height:45.061523px;}
.h19{height:46.251562px;}
.h13{height:47.884219px;}
.h2d{height:48.041016px;}
.hb{height:48.224531px;}
.h2b{height:49.255313px;}
.h6{height:49.868086px;}
.h15{height:50.800781px;}
.h2c{height:52.171875px;}
.h29{height:52.998047px;}
.h17{height:55.291992px;}
.h10{height:58.607578px;}
.h2{height:59.436914px;}
.h44{height:60.082031px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h14{height:67.824844px;}
.ha{height:68.400000px;}
.h21{height:72.900000px;}
.h2a{height:75.093750px;}
.h41{height:75.456000px;}
.h25{height:87.840000px;}
.h3b{height:90.000000px;}
.h28{height:144.936000px;}
.h23{height:583.275000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w4{width:82.080000px;}
.we{width:87.660000px;}
.w14{width:87.840000px;}
.wd{width:97.056000px;}
.w10{width:100.800000px;}
.w6{width:101.160000px;}
.w11{width:107.856000px;}
.w12{width:108.036000px;}
.w1f{width:114.516000px;}
.w15{width:114.696000px;}
.w1e{width:126.360000px;}
.w1b{width:127.836000px;}
.w7{width:154.470000px;}
.wc{width:158.970000px;}
.w1a{width:159.690000px;}
.w19{width:159.870000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.wf{width:184.710000px;}
.w13{width:195.870000px;}
.w17{width:267.150000px;}
.w1c{width:313.815000px;}
.w16{width:398.415000px;}
.w1d{width:400.755000px;}
.w18{width:447.405000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:4.252500px;}
.x8{left:8.100000px;}
.x16{left:10.800000px;}
.x35{left:13.500000px;}
.x32{left:15.300000px;}
.x27{left:16.920000px;}
.x37{left:19.260000px;}
.x1b{left:21.255000px;}
.x24{left:24.300000px;}
.x2e{left:25.380000px;}
.x22{left:27.180000px;}
.x38{left:31.140000px;}
.xf{left:33.659987px;}
.x2a{left:36.360000px;}
.x39{left:37.440000px;}
.x28{left:39.420000px;}
.x29{left:42.480000px;}
.x26{left:43.920000px;}
.x36{left:46.830000px;}
.x25{left:48.420000px;}
.xa{left:50.580000px;}
.x34{left:52.920000px;}
.x42{left:54.930000px;}
.x2b{left:56.340000px;}
.x2c{left:59.220000px;}
.x40{left:60.885000px;}
.x44{left:63.360000px;}
.x43{left:66.465000px;}
.x31{left:68.400000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x18{left:80.460000px;}
.x3a{left:85.140000px;}
.x5{left:87.654000px;}
.x15{left:93.456000px;}
.x1a{left:94.896000px;}
.x48{left:101.195987px;}
.x4{left:108.036000px;}
.x3c{left:111.456000px;}
.xb{left:129.455987px;}
.x11{left:141.335987px;}
.x10{left:143.495987px;}
.xc{left:149.615987px;}
.x3e{left:160.950000px;}
.xe{left:176.249987px;}
.x7{left:190.110000px;}
.x3b{left:199.125000px;}
.x2d{left:208.830000px;}
.x1{left:239.969987px;}
.x17{left:303.195000px;}
.x19{left:310.395000px;}
.x2f{left:316.695000px;}
.x3{left:360.434987px;}
.x3d{left:378.615000px;}
.x2{left:401.654987px;}
.x30{left:424.725000px;}
.xd{left:443.084987px;}
.x12{left:460.004987px;}
.x1e{left:461.984987px;}
.x49{left:483.944987px;}
.x13{left:489.164987px;}
.x14{left:490.784987px;}
.x3f{left:538.485000px;}
.x45{left:585.150000px;}
.x1c{left:620.253000px;}
.x21{left:649.770000px;}
.x41{left:698.190000px;}
.x33{left:708.450000px;}
.x46{left:711.510000px;}
.x23{left:746.820000px;}
.x1f{left:799.199987px;}
.x47{left:802.079987px;}
.x20{left:805.859987px;}
.x1d{left:809.639987px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls26{letter-spacing:-17.120000pt;}
.ls1a{letter-spacing:-13.920000pt;}
.ls27{letter-spacing:-12.640000pt;}
.ls14{letter-spacing:-6.240000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls13{letter-spacing:0.138667pt;}
.ls8{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:2.018560pt;}
.ls23{letter-spacing:2.656000pt;}
.ls18{letter-spacing:4.568320pt;}
.ls20{letter-spacing:5.843200pt;}
.ls24{letter-spacing:7.171200pt;}
.ls21{letter-spacing:9.866667pt;}
.ls19{letter-spacing:12.320000pt;}
.ls17{letter-spacing:12.960000pt;}
.ls1d{letter-spacing:13.760000pt;}
.ls22{letter-spacing:14.240000pt;}
.ls1e{letter-spacing:16.732800pt;}
.ls15{letter-spacing:17.232640pt;}
.ls12{letter-spacing:21.999360pt;}
.ls16{letter-spacing:27.622400pt;}
.ls2{letter-spacing:43.040000pt;}
.ws11{word-spacing:-42.880000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws14{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.wsa{word-spacing:-9.078933pt;}
.ws7{word-spacing:-8.000000pt;}
.ws4{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-2159.792853pt;}
._1c{margin-left:-1263.053440pt;}
._1b{margin-left:-1241.614293pt;}
._32{margin-left:-1128.741760pt;}
._18{margin-left:-974.339840pt;}
._31{margin-left:-949.064107pt;}
._19{margin-left:-902.563840pt;}
._52{margin-left:-723.467093pt;}
._55{margin-left:-660.857173pt;}
._5d{margin-left:-635.668480pt;}
._4f{margin-left:-609.147520pt;}
._4c{margin-left:-484.014720pt;}
._5b{margin-left:-481.918507pt;}
._45{margin-left:-430.052053pt;}
._4e{margin-left:-413.546667pt;}
._17{margin-left:-386.666667pt;}
._4d{margin-left:-381.549653pt;}
._54{margin-left:-337.111253pt;}
._5a{margin-left:-313.970987pt;}
._1a{margin-left:-277.623680pt;}
._48{margin-left:-248.092160pt;}
._42{margin-left:-160.000000pt;}
._30{margin-left:-133.120000pt;}
._7{margin-left:-53.600000pt;}
._38{margin-left:-33.920000pt;}
._44{margin-left:-26.747093pt;}
._53{margin-left:-16.732800pt;}
._59{margin-left:-15.514240pt;}
._47{margin-left:-13.616853pt;}
._43{margin-left:-12.696320pt;}
._46{margin-left:-9.807360pt;}
._15{margin-left:-3.216000pt;}
._c{margin-left:-2.302080pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._13{width:2.032853pt;}
._2{width:2.962347pt;}
._b{width:4.302720pt;}
._a{width:5.258880pt;}
._d{width:6.306560pt;}
._e{width:7.914880pt;}
._14{width:8.913493pt;}
._10{width:10.464000pt;}
._21{width:11.893973pt;}
._f{width:13.306667pt;}
._9{width:14.539733pt;}
._12{width:15.477973pt;}
._29{width:16.727893pt;}
._11{width:18.432000pt;}
._1f{width:19.587840pt;}
._3c{width:20.512853pt;}
._26{width:21.417173pt;}
._25{width:22.571093pt;}
._1d{width:23.797760pt;}
._1e{width:25.125760pt;}
._36{width:26.073813pt;}
._24{width:27.033173pt;}
._2e{width:28.201813pt;}
._34{width:29.278933pt;}
._2f{width:30.177067pt;}
._2d{width:31.229653pt;}
._40{width:32.934400pt;}
._37{width:34.735573pt;}
._22{width:36.329173pt;}
._23{width:37.237120pt;}
._2c{width:38.226773pt;}
._39{width:39.946240pt;}
._5c{width:41.428693pt;}
._28{width:42.496000pt;}
._27{width:43.399040pt;}
._3b{width:44.302080pt;}
._33{width:45.205120pt;}
._3e{width:46.658773pt;}
._3d{width:47.648640pt;}
._3f{width:50.329173pt;}
._4b{width:51.457493pt;}
._4a{width:52.376320pt;}
._20{width:54.235520pt;}
._2a{width:55.988480pt;}
._5{width:58.218667pt;}
._2b{width:59.437227pt;}
._4{width:63.627520pt;}
._3a{width:64.546133pt;}
._35{width:71.067093pt;}
._57{width:79.148800pt;}
._56{width:112.614400pt;}
._50{width:132.959360pt;}
._51{width:133.968640pt;}
._58{width:156.619733pt;}
._6{width:177.440000pt;}
._41{width:178.801920pt;}
._16{width:250.906667pt;}
._49{width:290.532053pt;}
._8{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs12{font-size:5.333333pt;}
.fsd{font-size:10.880000pt;}
.fs11{font-size:21.120000pt;}
.fsf{font-size:26.880000pt;}
.fse{font-size:29.440000pt;}
.fsa{font-size:32.000000pt;}
.fs10{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.y4c{bottom:-219.226667pt;}
.y4b{bottom:-189.306667pt;}
.y89{bottom:-162.280000pt;}
.y4a{bottom:-159.226667pt;}
.y88{bottom:-132.360000pt;}
.y49{bottom:-129.306667pt;}
.y87{bottom:-102.280000pt;}
.y48{bottom:-99.200000pt;}
.y86{bottom:-72.320000pt;}
.y47{bottom:-69.280000pt;}
.y85{bottom:-42.400000pt;}
.y46{bottom:-39.360000pt;}
.y8b{bottom:-15.931333pt;}
.y84{bottom:-12.320000pt;}
.y45{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y22f{bottom:1.633333pt;}
.y142{bottom:2.240000pt;}
.y146{bottom:2.280000pt;}
.y164{bottom:3.040000pt;}
.y183{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y150{bottom:3.520000pt;}
.y152{bottom:4.000000pt;}
.y78{bottom:4.933333pt;}
.y70{bottom:5.760000pt;}
.y144{bottom:6.080000pt;}
.y44{bottom:6.880000pt;}
.y14e{bottom:7.200000pt;}
.y162{bottom:8.320000pt;}
.y15f{bottom:8.480000pt;}
.y15b{bottom:8.640000pt;}
.y76{bottom:9.280000pt;}
.y197{bottom:9.440000pt;}
.y17e{bottom:10.080000pt;}
.y8{bottom:11.040000pt;}
.y195{bottom:11.200000pt;}
.y181{bottom:12.960000pt;}
.y180{bottom:13.120000pt;}
.y83{bottom:15.200000pt;}
.y43{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y6f{bottom:19.520000pt;}
.y6{bottom:20.640000pt;}
.y75{bottom:20.800000pt;}
.y7{bottom:21.760000pt;}
.y17d{bottom:23.200000pt;}
.y194{bottom:23.520000pt;}
.y82{bottom:26.720000pt;}
.y6e{bottom:30.560000pt;}
.yb{bottom:31.200000pt;}
.y42{bottom:31.680000pt;}
.y74{bottom:32.480000pt;}
.y193{bottom:35.880000pt;}
.y17c{bottom:36.480000pt;}
.y81{bottom:38.400000pt;}
.y8f{bottom:42.240000pt;}
.y41{bottom:44.000000pt;}
.y6d{bottom:46.400000pt;}
.y192{bottom:48.040000pt;}
.y17b{bottom:49.760000pt;}
.y80{bottom:49.920000pt;}
.y4{bottom:51.040000pt;}
.y40{bottom:55.520000pt;}
.y73{bottom:55.680000pt;}
.y8a{bottom:56.693333pt;}
.y8e{bottom:59.040000pt;}
.y7f{bottom:61.440000pt;}
.y6c{bottom:62.240000pt;}
.y17a{bottom:63.040000pt;}
.y72{bottom:70.880000pt;}
.y7e{bottom:73.120000pt;}
.y6b{bottom:78.080000pt;}
.y7d{bottom:84.640000pt;}
.y1f3{bottom:89.440000pt;}
.y22e{bottom:91.040000pt;}
.yc0{bottom:91.200000pt;}
.y11e{bottom:91.840000pt;}
.y215{bottom:92.160000pt;}
.y6a{bottom:93.920000pt;}
.yec{bottom:94.560000pt;}
.y18f{bottom:95.040000pt;}
.y7c{bottom:96.320000pt;}
.y138{bottom:101.760000pt;}
.y165{bottom:102.080000pt;}
.y1b6{bottom:104.320000pt;}
.y3e{bottom:105.760000pt;}
.y69{bottom:105.920000pt;}
.y1f2{bottom:107.040000pt;}
.y7b{bottom:107.840000pt;}
.y22d{bottom:108.640000pt;}
.ybf{bottom:108.960000pt;}
.y11d{bottom:109.440000pt;}
.y214{bottom:109.760000pt;}
.yeb{bottom:112.160000pt;}
.y18e{bottom:112.640000pt;}
.y68{bottom:113.600000pt;}
.y163{bottom:118.720000pt;}
.y7a{bottom:118.746667pt;}
.y137{bottom:119.520000pt;}
.y1b5{bottom:121.920000pt;}
.y3d{bottom:123.360000pt;}
.y1ce{bottom:123.520000pt;}
.y1f1{bottom:124.640000pt;}
.y22c{bottom:126.240000pt;}
.ybe{bottom:126.560000pt;}
.y11c{bottom:127.040000pt;}
.y213{bottom:127.360000pt;}
.y67{bottom:129.600000pt;}
.yea{bottom:129.760000pt;}
.y18d{bottom:130.240000pt;}
.y136{bottom:137.120000pt;}
.y1b4{bottom:139.520000pt;}
.y3c{bottom:140.960000pt;}
.y1cd{bottom:141.120000pt;}
.y1f0{bottom:142.240000pt;}
.y22b{bottom:144.000000pt;}
.ybd{bottom:144.186667pt;}
.y161{bottom:144.506667pt;}
.y11b{bottom:144.666667pt;}
.y212{bottom:144.986667pt;}
.y66{bottom:145.480000pt;}
.ye9{bottom:147.546667pt;}
.y18c{bottom:147.866667pt;}
.y135{bottom:154.746667pt;}
.y1b3{bottom:157.146667pt;}
.y3b{bottom:158.586667pt;}
.y1cc{bottom:158.746667pt;}
.y1ef{bottom:159.866667pt;}
.y65{bottom:161.320000pt;}
.y22a{bottom:161.626667pt;}
.ybc{bottom:161.786667pt;}
.y11a{bottom:162.426667pt;}
.y211{bottom:163.706667pt;}
.ye8{bottom:165.146667pt;}
.y18b{bottom:165.466667pt;}
.y134{bottom:172.346667pt;}
.y1b2{bottom:174.906667pt;}
.y3a{bottom:176.186667pt;}
.y1cb{bottom:176.346667pt;}
.y64{bottom:177.160000pt;}
.y1ee{bottom:177.626667pt;}
.y229{bottom:179.226667pt;}
.ybb{bottom:179.386667pt;}
.y119{bottom:180.026667pt;}
.y160{bottom:180.506667pt;}
.ye7{bottom:182.746667pt;}
.y18a{bottom:183.226667pt;}
.y133{bottom:189.946667pt;}
.y1b1{bottom:192.506667pt;}
.y63{bottom:193.000000pt;}
.y1ca{bottom:193.946667pt;}
.y39{bottom:195.066667pt;}
.y1ed{bottom:195.226667pt;}
.y228{bottom:196.826667pt;}
.yba{bottom:197.146667pt;}
.y118{bottom:197.626667pt;}
.y189{bottom:198.586667pt;}
.y210{bottom:199.866667pt;}
.ye6{bottom:200.346667pt;}
.y15e{bottom:204.826667pt;}
.y132{bottom:207.706667pt;}
.y62{bottom:208.840000pt;}
.y188{bottom:210.106667pt;}
.y38{bottom:210.426667pt;}
.y1c9{bottom:211.706667pt;}
.y1ec{bottom:212.826667pt;}
.y227{bottom:214.426667pt;}
.yb9{bottom:214.746667pt;}
.y117{bottom:215.226667pt;}
.y20f{bottom:217.466667pt;}
.y37{bottom:217.946667pt;}
.y4d{bottom:218.106667pt;}
.y61{bottom:224.840000pt;}
.y131{bottom:225.306667pt;}
.y187{bottom:226.746667pt;}
.y1b0{bottom:227.706667pt;}
.y1c8{bottom:229.306667pt;}
.y1eb{bottom:230.426667pt;}
.y226{bottom:232.186667pt;}
.yb8{bottom:232.346667pt;}
.y116{bottom:232.826667pt;}
.y20e{bottom:235.066667pt;}
.ye5{bottom:235.706667pt;}
.y36{bottom:235.866667pt;}
.y60{bottom:240.680000pt;}
.y15d{bottom:241.466667pt;}
.y130{bottom:242.906667pt;}
.y1af{bottom:245.306667pt;}
.y1c7{bottom:246.906667pt;}
.y35{bottom:247.386667pt;}
.y1ea{bottom:248.026667pt;}
.y225{bottom:249.786667pt;}
.yb7{bottom:249.946667pt;}
.y115{bottom:250.586667pt;}
.y186{bottom:252.026667pt;}
.y20d{bottom:253.786667pt;}
.ye4{bottom:254.426667pt;}
.y5f{bottom:256.520000pt;}
.y12f{bottom:260.506667pt;}
.y1ae{bottom:263.066667pt;}
.y34{bottom:263.706667pt;}
.y1c6{bottom:264.506667pt;}
.y15c{bottom:265.626667pt;}
.y224{bottom:267.386667pt;}
.yb6{bottom:267.546667pt;}
.y114{bottom:268.186667pt;}
.ye3{bottom:272.346667pt;}
.y5e{bottom:272.360000pt;}
.y185{bottom:277.306667pt;}
.y12e{bottom:278.106667pt;}
.y1ad{bottom:280.666667pt;}
.y1c5{bottom:282.106667pt;}
.y1e9{bottom:283.386667pt;}
.y33{bottom:284.986667pt;}
.yb5{bottom:285.306667pt;}
.y113{bottom:285.786667pt;}
.y5d{bottom:288.200000pt;}
.y20c{bottom:289.786667pt;}
.y15a{bottom:289.946667pt;}
.y12d{bottom:295.866667pt;}
.y1ac{bottom:298.266667pt;}
.y1c4{bottom:299.866667pt;}
.y1e8{bottom:300.986667pt;}
.y5c{bottom:301.960000pt;}
.ye2{bottom:302.586667pt;}
.yb4{bottom:302.906667pt;}
.y112{bottom:303.386667pt;}
.y32{bottom:306.106667pt;}
.y20b{bottom:307.546667pt;}
.y5b{bottom:313.000000pt;}
.y12c{bottom:314.586667pt;}
.y1ab{bottom:315.866667pt;}
.y1c3{bottom:317.466667pt;}
.y1e7{bottom:318.586667pt;}
.ye1{bottom:320.346667pt;}
.yb3{bottom:320.506667pt;}
.y111{bottom:320.986667pt;}
.y20a{bottom:325.146667pt;}
.y31{bottom:327.226667pt;}
.y184{bottom:327.706667pt;}
.y5a{bottom:328.840000pt;}
.y12b{bottom:332.026667pt;}
.y1aa{bottom:333.466667pt;}
.y1c2{bottom:335.066667pt;}
.y1e6{bottom:336.186667pt;}
.ye0{bottom:337.946667pt;}
.yb2{bottom:338.106667pt;}
.y110{bottom:338.746667pt;}
.y209{bottom:342.746667pt;}
.y12a{bottom:343.386667pt;}
.y59{bottom:344.706667pt;}
.y30{bottom:348.346667pt;}
.y1a9{bottom:351.266667pt;}
.y159{bottom:351.426667pt;}
.y1c1{bottom:352.706667pt;}
.y182{bottom:353.026667pt;}
.y1e5{bottom:353.826667pt;}
.ydf{bottom:355.586667pt;}
.yb1{bottom:355.746667pt;}
.y10f{bottom:356.386667pt;}
.y208{bottom:360.386667pt;}
.y58{bottom:360.546667pt;}
.y129{bottom:361.026667pt;}
.y1a8{bottom:368.866667pt;}
.y2f{bottom:369.666667pt;}
.y1c0{bottom:370.306667pt;}
.y1e4{bottom:371.586667pt;}
.yde{bottom:373.186667pt;}
.yb0{bottom:373.506667pt;}
.y10e{bottom:373.986667pt;}
.y158{bottom:375.746667pt;}
.y57{bottom:376.386667pt;}
.y207{bottom:377.986667pt;}
.y179{bottom:378.306667pt;}
.y128{bottom:378.786667pt;}
.y1a7{bottom:386.466667pt;}
.y1bf{bottom:388.066667pt;}
.y1e3{bottom:389.186667pt;}
.y2e{bottom:390.786667pt;}
.yaf{bottom:391.106667pt;}
.y10d{bottom:391.586667pt;}
.y56{bottom:392.386667pt;}
.y206{bottom:395.746667pt;}
.y127{bottom:396.386667pt;}
.y157{bottom:400.066667pt;}
.y1a6{bottom:404.066667pt;}
.y1be{bottom:405.666667pt;}
.y1e2{bottom:406.786667pt;}
.y55{bottom:408.226667pt;}
.ydd{bottom:408.546667pt;}
.yae{bottom:408.706667pt;}
.y10c{bottom:409.186667pt;}
.y2d{bottom:411.906667pt;}
.y205{bottom:413.346667pt;}
.y126{bottom:413.986667pt;}
.y1a5{bottom:421.666667pt;}
.y1bd{bottom:423.266667pt;}
.y54{bottom:424.066667pt;}
.y156{bottom:424.226667pt;}
.y1e1{bottom:424.386667pt;}
.y17f{bottom:425.186667pt;}
.ydc{bottom:426.146667pt;}
.yad{bottom:426.306667pt;}
.y10b{bottom:426.946667pt;}
.y125{bottom:431.586667pt;}
.y204{bottom:432.066667pt;}
.y2c{bottom:433.026667pt;}
.y53{bottom:436.066667pt;}
.y1a4{bottom:439.426667pt;}
.y79{bottom:440.226667pt;}
.y1bc{bottom:440.866667pt;}
.y1e0{bottom:441.986667pt;}
.y52{bottom:443.746667pt;}
.yac{bottom:443.906667pt;}
.y10a{bottom:444.546667pt;}
.y155{bottom:448.546667pt;}
.y124{bottom:449.186667pt;}
.y2b{bottom:451.426667pt;}
.y1a3{bottom:457.026667pt;}
.y1bb{bottom:458.466667pt;}
.y51{bottom:459.586667pt;}
.y1df{bottom:459.746667pt;}
.ydb{bottom:461.346667pt;}
.yab{bottom:461.666667pt;}
.y109{bottom:462.146667pt;}
.y123{bottom:466.946667pt;}
.y203{bottom:468.066667pt;}
.y2a{bottom:468.866667pt;}
.y178{bottom:469.986667pt;}
.y154{bottom:472.706667pt;}
.y1a2{bottom:474.626667pt;}
.y50{bottom:475.426667pt;}
.y1ba{bottom:476.226667pt;}
.y1de{bottom:477.346667pt;}
.yda{bottom:478.946667pt;}
.yaa{bottom:479.266667pt;}
.y108{bottom:479.746667pt;}
.y29{bottom:481.346667pt;}
.y122{bottom:484.546667pt;}
.y177{bottom:484.866667pt;}
.y202{bottom:486.946667pt;}
.y28{bottom:488.866667pt;}
.y4f{bottom:491.426667pt;}
.y1a1{bottom:492.226667pt;}
.y1b9{bottom:493.826667pt;}
.y1dd{bottom:494.946667pt;}
.yd9{bottom:496.706667pt;}
.ya9{bottom:496.866667pt;}
.y153{bottom:497.026667pt;}
.y107{bottom:497.346667pt;}
.y176{bottom:500.706667pt;}
.y121{bottom:502.146667pt;}
.y4e{bottom:507.266667pt;}
.y1a0{bottom:508.226667pt;}
.y27{bottom:509.506667pt;}
.y1b8{bottom:511.426667pt;}
.y1dc{bottom:512.546667pt;}
.yd8{bottom:514.306667pt;}
.ya8{bottom:514.466667pt;}
.y106{bottom:515.106667pt;}
.y175{bottom:517.026667pt;}
.y120{bottom:520.866667pt;}
.y151{bottom:521.346667pt;}
.y201{bottom:522.946667pt;}
.y19f{bottom:526.626667pt;}
.y1b7{bottom:529.026667pt;}
.y1db{bottom:530.146667pt;}
.y26{bottom:530.306667pt;}
.yd7{bottom:531.906667pt;}
.ya7{bottom:532.066667pt;}
.y105{bottom:532.706667pt;}
.y174{bottom:534.626667pt;}
.y11f{bottom:538.306667pt;}
.y200{bottom:540.546667pt;}
.y19e{bottom:544.546667pt;}
.y1da{bottom:547.906667pt;}
.y14f{bottom:549.346667pt;}
.yd6{bottom:549.506667pt;}
.ya6{bottom:549.826667pt;}
.y104{bottom:550.306667pt;}
.y25{bottom:550.946667pt;}
.y173{bottom:552.386667pt;}
.y19d{bottom:556.093333pt;}
.y1ff{bottom:559.293333pt;}
.y1d9{bottom:565.533333pt;}
.yd5{bottom:567.133333pt;}
.ya5{bottom:567.453333pt;}
.y103{bottom:567.933333pt;}
.y172{bottom:570.013333pt;}
.y19c{bottom:572.733333pt;}
.y14d{bottom:576.093333pt;}
.y71{bottom:577.693333pt;}
.y1d8{bottom:583.133333pt;}
.yd4{bottom:584.893333pt;}
.ya4{bottom:585.053333pt;}
.y102{bottom:585.533333pt;}
.y171{bottom:587.613333pt;}
.y1fe{bottom:595.293333pt;}
.y19b{bottom:598.013333pt;}
.y24{bottom:600.093333pt;}
.y1d7{bottom:600.733333pt;}
.yd3{bottom:602.493333pt;}
.ya3{bottom:602.653333pt;}
.y101{bottom:603.293333pt;}
.y14c{bottom:610.333333pt;}
.y170{bottom:611.933333pt;}
.y1fd{bottom:613.053333pt;}
.y23{bottom:613.853333pt;}
.y1d6{bottom:618.333333pt;}
.yd2{bottom:620.093333pt;}
.ya2{bottom:620.253333pt;}
.y100{bottom:620.893333pt;}
.y19a{bottom:623.133333pt;}
.y22{bottom:627.613333pt;}
.y16f{bottom:628.573333pt;}
.y1fc{bottom:631.773333pt;}
.y14b{bottom:634.653333pt;}
.y1d5{bottom:636.093333pt;}
.yd1{bottom:637.693333pt;}
.ya1{bottom:638.013333pt;}
.yff{bottom:638.493333pt;}
.y21{bottom:641.533333pt;}
.y199{bottom:648.413333pt;}
.y16e{bottom:652.733333pt;}
.y1fb{bottom:652.893333pt;}
.y1d4{bottom:653.693333pt;}
.y20{bottom:655.293333pt;}
.ya0{bottom:655.613333pt;}
.yfe{bottom:656.093333pt;}
.y14a{bottom:658.813333pt;}
.y1f{bottom:664.733333pt;}
.y1d3{bottom:671.293333pt;}
.yd0{bottom:673.053333pt;}
.y3f{bottom:673.213333pt;}
.yfd{bottom:673.693333pt;}
.y16d{bottom:677.053333pt;}
.y1e{bottom:678.013333pt;}
.y149{bottom:683.133333pt;}
.y1d2{bottom:688.893333pt;}
.ycf{bottom:690.653333pt;}
.y9f{bottom:690.813333pt;}
.yfc{bottom:691.453333pt;}
.y1d{bottom:693.853333pt;}
.y198{bottom:698.973333pt;}
.y16c{bottom:701.373333pt;}
.y1c{bottom:705.373333pt;}
.y1d1{bottom:706.493333pt;}
.y148{bottom:707.453333pt;}
.yce{bottom:707.773333pt;}
.y223{bottom:708.253333pt;}
.y9e{bottom:708.413333pt;}
.yfb{bottom:709.053333pt;}
.y1b{bottom:716.893333pt;}
.ycd{bottom:724.093333pt;}
.y1d0{bottom:724.253333pt;}
.y16b{bottom:725.533333pt;}
.y222{bottom:725.853333pt;}
.y9d{bottom:726.173333pt;}
.yfa{bottom:726.653333pt;}
.y1a{bottom:729.213333pt;}
.y147{bottom:731.613333pt;}
.ycc{bottom:741.693333pt;}
.y1fa{bottom:741.853333pt;}
.y19{bottom:742.493333pt;}
.y1cf{bottom:742.973333pt;}
.y221{bottom:743.453333pt;}
.y9c{bottom:743.773333pt;}
.yf9{bottom:744.253333pt;}
.y16a{bottom:749.853333pt;}
.y18{bottom:752.413333pt;}
.y145{bottom:755.933333pt;}
.ycb{bottom:759.333333pt;}
.y1f9{bottom:759.493333pt;}
.y220{bottom:761.253333pt;}
.y9b{bottom:761.413333pt;}
.yf8{bottom:761.893333pt;}
.y196{bottom:764.613333pt;}
.y17{bottom:772.773333pt;}
.y169{bottom:774.213333pt;}
.yca{bottom:777.093333pt;}
.y21f{bottom:778.853333pt;}
.y9a{bottom:779.013333pt;}
.yf7{bottom:779.653333pt;}
.y143{bottom:780.293333pt;}
.y16{bottom:793.733333pt;}
.yc9{bottom:794.693333pt;}
.y21e{bottom:796.453333pt;}
.y99{bottom:796.613333pt;}
.yf6{bottom:797.253333pt;}
.y168{bottom:800.453333pt;}
.y191{bottom:801.733333pt;}
.y141{bottom:806.533333pt;}
.y15{bottom:807.013333pt;}
.yc8{bottom:812.293333pt;}
.y1f8{bottom:812.453333pt;}
.y21d{bottom:814.053333pt;}
.y98{bottom:814.373333pt;}
.yf5{bottom:814.853333pt;}
.y190{bottom:815.653333pt;}
.y14{bottom:816.293333pt;}
.y13{bottom:829.093333pt;}
.y1f7{bottom:830.053333pt;}
.yc7{bottom:831.013333pt;}
.y140{bottom:831.493333pt;}
.y21c{bottom:831.653333pt;}
.y97{bottom:831.973333pt;}
.yf4{bottom:832.453333pt;}
.y167{bottom:836.453333pt;}
.y12{bottom:845.733333pt;}
.y13f{bottom:847.333333pt;}
.y1f6{bottom:847.653333pt;}
.y21b{bottom:849.413333pt;}
.y96{bottom:849.573333pt;}
.yf3{bottom:850.053333pt;}
.y166{bottom:851.333333pt;}
.yc6{bottom:863.493333pt;}
.y13e{bottom:863.653333pt;}
.y1f5{bottom:865.253333pt;}
.y11{bottom:865.413333pt;}
.y21a{bottom:867.013333pt;}
.y95{bottom:867.173333pt;}
.yf2{bottom:867.813333pt;}
.yc5{bottom:881.093333pt;}
.y13d{bottom:881.253333pt;}
.y1f4{bottom:883.973333pt;}
.y219{bottom:884.613333pt;}
.y94{bottom:884.773333pt;}
.yf1{bottom:885.413333pt;}
.y10{bottom:891.973333pt;}
.yc4{bottom:898.693333pt;}
.y13c{bottom:898.853333pt;}
.y218{bottom:902.213333pt;}
.y93{bottom:902.373333pt;}
.yf0{bottom:903.013333pt;}
.yf{bottom:913.413333pt;}
.yc3{bottom:916.293333pt;}
.y13b{bottom:916.613333pt;}
.y217{bottom:919.813333pt;}
.y92{bottom:920.133333pt;}
.yef{bottom:920.613333pt;}
.ye{bottom:923.653333pt;}
.y77{bottom:932.960000pt;}
.y13a{bottom:934.213333pt;}
.yc2{bottom:935.173333pt;}
.yd{bottom:937.413333pt;}
.y216{bottom:937.573333pt;}
.y91{bottom:937.733333pt;}
.yee{bottom:938.213333pt;}
.yc{bottom:951.173333pt;}
.y139{bottom:952.933333pt;}
.yc1{bottom:953.573333pt;}
.y90{bottom:955.333333pt;}
.yed{bottom:955.813333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.y8d{bottom:970.720000pt;}
.y2{bottom:978.880000pt;}
.y1{bottom:992.960000pt;}
.y8c{bottom:997.920000pt;}
.h20{height:3.612500pt;}
.h9{height:4.272500pt;}
.h45{height:5.562500pt;}
.hf{height:7.676562pt;}
.h5{height:12.000000pt;}
.h30{height:12.160000pt;}
.h2f{height:12.320000pt;}
.h31{height:12.352000pt;}
.h40{height:13.120000pt;}
.h3f{height:13.280000pt;}
.h38{height:13.760000pt;}
.h33{height:14.752000pt;}
.h34{height:16.000000pt;}
.h1d{height:17.624062pt;}
.h24{height:18.965625pt;}
.h27{height:19.840000pt;}
.h32{height:22.240000pt;}
.h12{height:22.430625pt;}
.h1f{height:22.578125pt;}
.h1b{height:22.843934pt;}
.hd{height:23.296875pt;}
.h37{height:24.000000pt;}
.h26{height:24.054688pt;}
.h39{height:24.320000pt;}
.h36{height:24.640000pt;}
.h35{height:25.280000pt;}
.h2e{height:26.375000pt;}
.h42{height:26.560000pt;}
.h16{height:27.523125pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h8{height:30.975625pt;}
.h3d{height:31.217812pt;}
.h3e{height:32.960000pt;}
.h3c{height:33.120000pt;}
.h3a{height:33.515625pt;}
.h18{height:33.645938pt;}
.hc{height:34.945312pt;}
.h1a{height:35.782187pt;}
.h43{height:37.090625pt;}
.h3{height:37.918437pt;}
.h1c{height:40.054688pt;}
.h19{height:41.112500pt;}
.h13{height:42.563750pt;}
.h2d{height:42.703125pt;}
.hb{height:42.866250pt;}
.h2b{height:43.782500pt;}
.h6{height:44.327188pt;}
.h15{height:45.156250pt;}
.h2c{height:46.375000pt;}
.h29{height:47.109375pt;}
.h17{height:49.148438pt;}
.h10{height:52.095625pt;}
.h2{height:52.832812pt;}
.h44{height:53.406250pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h14{height:60.288750pt;}
.ha{height:60.800000pt;}
.h21{height:64.800000pt;}
.h2a{height:66.750000pt;}
.h41{height:67.072000pt;}
.h25{height:78.080000pt;}
.h3b{height:80.000000pt;}
.h28{height:128.832000pt;}
.h23{height:518.466667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w4{width:72.960000pt;}
.we{width:77.920000pt;}
.w14{width:78.080000pt;}
.wd{width:86.272000pt;}
.w10{width:89.600000pt;}
.w6{width:89.920000pt;}
.w11{width:95.872000pt;}
.w12{width:96.032000pt;}
.w1f{width:101.792000pt;}
.w15{width:101.952000pt;}
.w1e{width:112.320000pt;}
.w1b{width:113.632000pt;}
.w7{width:137.306667pt;}
.wc{width:141.306667pt;}
.w1a{width:141.946667pt;}
.w19{width:142.106667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.wf{width:164.186667pt;}
.w13{width:174.106667pt;}
.w17{width:237.466667pt;}
.w1c{width:278.946667pt;}
.w16{width:354.146667pt;}
.w1d{width:356.226667pt;}
.w18{width:397.693333pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:3.780000pt;}
.x8{left:7.200000pt;}
.x16{left:9.600000pt;}
.x35{left:12.000000pt;}
.x32{left:13.600000pt;}
.x27{left:15.040000pt;}
.x37{left:17.120000pt;}
.x1b{left:18.893333pt;}
.x24{left:21.600000pt;}
.x2e{left:22.560000pt;}
.x22{left:24.160000pt;}
.x38{left:27.680000pt;}
.xf{left:29.919988pt;}
.x2a{left:32.320000pt;}
.x39{left:33.280000pt;}
.x28{left:35.040000pt;}
.x29{left:37.760000pt;}
.x26{left:39.040000pt;}
.x36{left:41.626667pt;}
.x25{left:43.040000pt;}
.xa{left:44.960000pt;}
.x34{left:47.040000pt;}
.x42{left:48.826667pt;}
.x2b{left:50.080000pt;}
.x2c{left:52.640000pt;}
.x40{left:54.120000pt;}
.x44{left:56.320000pt;}
.x43{left:59.080000pt;}
.x31{left:60.800000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x18{left:71.520000pt;}
.x3a{left:75.680000pt;}
.x5{left:77.914667pt;}
.x15{left:83.072000pt;}
.x1a{left:84.352000pt;}
.x48{left:89.951988pt;}
.x4{left:96.032000pt;}
.x3c{left:99.072000pt;}
.xb{left:115.071988pt;}
.x11{left:125.631988pt;}
.x10{left:127.551988pt;}
.xc{left:132.991988pt;}
.x3e{left:143.066667pt;}
.xe{left:156.666655pt;}
.x7{left:168.986667pt;}
.x3b{left:177.000000pt;}
.x2d{left:185.626667pt;}
.x1{left:213.306655pt;}
.x17{left:269.506667pt;}
.x19{left:275.906667pt;}
.x2f{left:281.506667pt;}
.x3{left:320.386655pt;}
.x3d{left:336.546667pt;}
.x2{left:357.026655pt;}
.x30{left:377.533333pt;}
.xd{left:393.853322pt;}
.x12{left:408.893322pt;}
.x1e{left:410.653322pt;}
.x49{left:430.173322pt;}
.x13{left:434.813322pt;}
.x14{left:436.253322pt;}
.x3f{left:478.653333pt;}
.x45{left:520.133333pt;}
.x1c{left:551.336000pt;}
.x21{left:577.573333pt;}
.x41{left:620.613333pt;}
.x33{left:629.733333pt;}
.x46{left:632.453333pt;}
.x23{left:663.840000pt;}
.x1f{left:710.399988pt;}
.x47{left:712.959988pt;}
.x20{left:716.319988pt;}
.x1d{left:719.679988pt;}
}




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