
    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_35fe6b28169e965d687d8583.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_7ff645a707d37c2aa89ab11e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_b0122c9531667642bb5dec49.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_b6cf873e1bf1f1c330777f1f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_b100e2996ad26e5955a8bef3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.674316;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_1c8a409779e062eba30bfab1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706543;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_7d2f8bfcb1510758c58c50e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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_bccfc21215517f9e03484721.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_afc4779acf077e6420c6222a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d52ca74bc010d7565fa63ab8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.091797;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_8bcf99a57e8a78098bfeba7b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_91e117f08cfe158f68c388b0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_f132609509392de23ad99f27.woff')format("woff");}.ffd{font-family:ffd;line-height:1.200684;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_682cf3694c73ce980a96c464.woff')format("woff");}.ffe{font-family:ffe;line-height:1.384277;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_4d4b68d0cdad6fd717554849.woff')format("woff");}.fff{font-family:fff;line-height:1.435059;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.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);}
.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);}
.v1{vertical-align:-131.040000px;}
.v5{vertical-align:-61.200000px;}
.v4{vertical-align:-51.840000px;}
.ve{vertical-align:-30.240000px;}
.v3{vertical-align:-12.240000px;}
.va{vertical-align:-10.080000px;}
.v6{vertical-align:-8.640000px;}
.vf{vertical-align:-7.200000px;}
.v12{vertical-align:-5.040000px;}
.v9{vertical-align:-2.880000px;}
.vd{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.v11{vertical-align:5.040000px;}
.v10{vertical-align:7.200000px;}
.v7{vertical-align:8.640000px;}
.vb{vertical-align:10.080000px;}
.v2{vertical-align:18.000000px;}
.ls16{letter-spacing:-36.840000px;}
.lsf{letter-spacing:-31.800000px;}
.ls17{letter-spacing:-30.360000px;}
.ls15{letter-spacing:-26.040000px;}
.lse{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.282000px;}
.lsc{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.250800px;}
.ls10{letter-spacing:-0.118200px;}
.lsa{letter-spacing:-0.090000px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.207600px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.600000px;}
.ls4{letter-spacing:420.660000px;}
.ls3{letter-spacing:1518.960000px;}
.lsd{letter-spacing:2891.281920px;}
.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;}
}
.ws10{word-spacing:-72.731520px;}
.ws13{word-spacing:-72.480720px;}
.ws12{word-spacing:-72.449520px;}
.ws11{word-spacing:-66.240000px;}
.wsd{word-spacing:-65.616480px;}
.wsf{word-spacing:-59.760000px;}
.ws16{word-spacing:-59.292000px;}
.ws1{word-spacing:-54.324000px;}
.wsa{word-spacing:-54.288000px;}
.ws2{word-spacing:-54.000000px;}
.ws4{word-spacing:-48.240000px;}
.ws5{word-spacing:-36.000000px;}
.ws14{word-spacing:-21.205680px;}
.ws15{word-spacing:-20.998080px;}
.ws6{word-spacing:-19.710000px;}
.ws9{word-spacing:-15.228000px;}
.ws8{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.012000px;}
.wse{word-spacing:-13.147200px;}
.ws3{word-spacing:-12.150000px;}
.ws0{word-spacing:-11.880000px;}
.wsb{word-spacing:-11.628000px;}
.wsc{word-spacing:0.000000px;}
._79{margin-left:-3088.920480px;}
._56{margin-left:-3087.758880px;}
._26{margin-left:-3086.638560px;}
._68{margin-left:-3028.330800px;}
._e6{margin-left:-3019.416720px;}
._84{margin-left:-2973.313200px;}
._e7{margin-left:-2930.956800px;}
._e8{margin-left:-2921.883600px;}
._31{margin-left:-2911.391280px;}
._103{margin-left:-2894.239440px;}
._109{margin-left:-2876.282400px;}
._cc{margin-left:-2873.852640px;}
._70{margin-left:-2856.479280px;}
._110{margin-left:-2855.339520px;}
._2f{margin-left:-2847.210720px;}
._c0{margin-left:-2831.191200px;}
._143{margin-left:-2805.414720px;}
._5a{margin-left:-2803.764000px;}
._119{margin-left:-2801.446560px;}
._bf{margin-left:-2779.241040px;}
._113{margin-left:-2774.750160px;}
._7a{margin-left:-2767.431120px;}
._dd{margin-left:-2738.389440px;}
._dc{margin-left:-2735.321040px;}
._c8{margin-left:-2683.899600px;}
._c7{margin-left:-2682.041040px;}
._e3{margin-left:-2631.643920px;}
._ab{margin-left:-2626.103760px;}
._61{margin-left:-2547.052320px;}
._67{margin-left:-2530.407840px;}
._146{margin-left:-2510.305920px;}
._a2{margin-left:-2444.064240px;}
._fe{margin-left:-2421.811680px;}
._fd{margin-left:-2418.199440px;}
._145{margin-left:-2389.134720px;}
._b2{margin-left:-2379.008400px;}
._6e{margin-left:-2373.158160px;}
._ff{margin-left:-2341.879440px;}
._cb{margin-left:-2338.625040px;}
._a8{margin-left:-2320.039440px;}
._bd{margin-left:-2316.745680px;}
._e0{margin-left:-2297.873520px;}
._12b{margin-left:-2253.232560px;}
._98{margin-left:-2215.530960px;}
._102{margin-left:-2157.673200px;}
._101{margin-left:-2154.679440px;}
._12a{margin-left:-2132.717520px;}
._97{margin-left:-2094.545040px;}
._d1{margin-left:-2052.377040px;}
._d0{margin-left:-2048.465040px;}
._63{margin-left:-2017.000080px;}
._c1{margin-left:-2015.642160px;}
._da{margin-left:-2008.964640px;}
._134{margin-left:-1982.021760px;}
._43{margin-left:-1979.083920px;}
._c5{margin-left:-1959.658080px;}
._ba{margin-left:-1931.425200px;}
._be{margin-left:-1925.429040px;}
._13d{margin-left:-1917.684480px;}
._13c{margin-left:-1894.937520px;}
._bb{margin-left:-1893.144240px;}
._9f{margin-left:-1886.818080px;}
._133{margin-left:-1861.817520px;}
._10c{margin-left:-1842.393360px;}
._b3{margin-left:-1830.444720px;}
._10b{margin-left:-1821.139440px;}
._d9{margin-left:-1807.467360px;}
._44{margin-left:-1802.977920px;}
._112{margin-left:-1772.899440px;}
._40{margin-left:-1764.046560px;}
._2c{margin-left:-1761.763920px;}
._10e{margin-left:-1754.683920px;}
._10d{margin-left:-1751.299440px;}
._13f{margin-left:-1747.051920px;}
._e1{margin-left:-1696.890480px;}
._d8{margin-left:-1685.405040px;}
._13e{margin-left:-1627.817520px;}
._5d{margin-left:-1611.387360px;}
._9c{margin-left:-1561.643520px;}
._39{margin-left:-1508.167200px;}
._3a{margin-left:-1506.826560px;}
._a5{margin-left:-1469.394000px;}
._34{margin-left:-1462.615680px;}
._de{margin-left:-1456.445040px;}
._12f{margin-left:-1452.857520px;}
._cd{margin-left:-1418.826480px;}
._12d{margin-left:-1405.139280px;}
._12c{margin-left:-1403.177520px;}
._10a{margin-left:-1389.185520px;}
._8f{margin-left:-1382.266800px;}
._f5{margin-left:-1362.206880px;}
._57{margin-left:-1355.588640px;}
._89{margin-left:-1348.311600px;}
._f6{margin-left:-1345.991520px;}
._92{margin-left:-1331.394720px;}
._91{margin-left:-1327.565040px;}
._2a{margin-left:-1321.356240px;}
._ec{margin-left:-1295.489040px;}
._8b{margin-left:-1263.447120px;}
._8a{margin-left:-1260.391440px;}
._90{margin-left:-1256.142960px;}
._116{margin-left:-1246.714320px;}
._d3{margin-left:-1237.273680px;}
._144{margin-left:-1231.308000px;}
._88{margin-left:-1228.591440px;}
._139{margin-left:-1216.350480px;}
._111{margin-left:-1211.225520px;}
._95{margin-left:-1201.445040px;}
._138{margin-left:-1200.017520px;}
._11b{margin-left:-1189.438320px;}
._71{margin-left:-1174.301520px;}
._ed{margin-left:-1165.378080px;}
._13b{margin-left:-1151.844720px;}
._3b{margin-left:-1137.247200px;}
._3c{margin-left:-1136.201040px;}
._115{margin-left:-1127.659440px;}
._108{margin-left:-1101.739440px;}
._a3{margin-left:-1051.824240px;}
._13a{margin-left:-1047.462240px;}
._114{margin-left:-1042.289280px;}
._d6{margin-left:-1039.747200px;}
._d5{margin-left:-1035.125040px;}
._c2{margin-left:-1032.611280px;}
._b7{margin-left:-1030.242960px;}
._123{margin-left:-1023.587280px;}
._36{margin-left:-1017.597600px;}
._3f{margin-left:-1009.807200px;}
._ae{margin-left:-993.178080px;}
._c6{margin-left:-990.216720px;}
._3d{margin-left:-986.047200px;}
._3e{margin-left:-984.702480px;}
._72{margin-left:-971.599920px;}
._11a{margin-left:-968.508000px;}
._d2{margin-left:-963.125040px;}
._124{margin-left:-961.138800px;}
._ea{margin-left:-941.909280px;}
._c4{margin-left:-937.670640px;}
._c3{margin-left:-933.605040px;}
._ad{margin-left:-928.813200px;}
._11f{margin-left:-926.796720px;}
._82{margin-left:-905.766960px;}
._94{margin-left:-882.852240px;}
._93{margin-left:-860.885040px;}
._118{margin-left:-852.292320px;}
._12e{margin-left:-844.858080px;}
._96{margin-left:-815.892960px;}
._121{margin-left:-810.802080px;}
._10f{margin-left:-798.633120px;}
._137{margin-left:-793.431600px;}
._136{margin-left:-791.270160px;}
._db{margin-left:-781.656240px;}
._41{margin-left:-779.067840px;}
._7d{margin-left:-772.509120px;}
._df{margin-left:-755.765040px;}
._11e{margin-left:-752.098320px;}
._f9{margin-left:-748.433280px;}
._a0{margin-left:-745.483200px;}
._1d{margin-left:-734.410080px;}
._20{margin-left:-732.970080px;}
._8d{margin-left:-716.876160px;}
._8c{margin-left:-713.071440px;}
._126{margin-left:-708.612960px;}
._f3{margin-left:-694.332000px;}
._107{margin-left:-692.880720px;}
._6a{margin-left:-688.240080px;}
._14c{margin-left:-685.214400px;}
._125{margin-left:-683.178720px;}
._131{margin-left:-668.992320px;}
._106{margin-left:-642.571200px;}
._9d{margin-left:-627.444480px;}
._fc{margin-left:-624.185760px;}
._60{margin-left:-611.803200px;}
._9e{margin-left:-605.054160px;}
._99{margin-left:-603.806400px;}
._87{margin-left:-586.247040px;}
._104{margin-left:-580.139280px;}
._a1{margin-left:-571.539600px;}
._130{margin-left:-564.857760px;}
._62{margin-left:-561.838080px;}
._120{margin-left:-560.076000px;}
._6c{margin-left:-554.247840px;}
._6b{margin-left:-551.791440px;}
._127{margin-left:-523.890000px;}
._ac{margin-left:-509.878080px;}
._59{margin-left:-501.081120px;}
._5f{margin-left:-499.774800px;}
._58{margin-left:-498.511440px;}
._5e{margin-left:-497.071440px;}
._d7{margin-left:-495.125040px;}
._cf{margin-left:-489.467520px;}
._19{margin-left:-488.223360px;}
._6f{margin-left:-487.136160px;}
._18{margin-left:-485.530560px;}
._128{margin-left:-476.980320px;}
._8e{margin-left:-471.547200px;}
._65{margin-left:-468.936000px;}
._64{margin-left:-465.931440px;}
._1b{margin-left:-460.450560px;}
._1c{margin-left:-457.059840px;}
._105{margin-left:-455.054640px;}
._9b{margin-left:-451.558080px;}
._f4{margin-left:-448.587120px;}
._ce{margin-left:-444.664560px;}
._eb{margin-left:-442.122480px;}
._a6{margin-left:-433.226880px;}
._bc{margin-left:-427.985040px;}
._a7{margin-left:-417.089280px;}
._f7{margin-left:-415.946880px;}
._f8{margin-left:-400.360320px;}
._aa{margin-left:-398.278080px;}
._a9{margin-left:-394.037040px;}
._17{margin-left:-392.883840px;}
._1f{margin-left:-379.946880px;}
._e2{margin-left:-361.946880px;}
._fa{margin-left:-359.084160px;}
._21{margin-left:-352.696320px;}
._b4{margin-left:-345.384240px;}
._55{margin-left:-340.515360px;}
._1e{margin-left:-330.376320px;}
._132{margin-left:-325.765440px;}
._7c{margin-left:-320.676720px;}
._d4{margin-left:-312.628800px;}
._b1{margin-left:-307.558080px;}
._f1{margin-left:-293.546880px;}
._5c{margin-left:-284.662080px;}
._ee{margin-left:-279.146880px;}
._f2{margin-left:-278.050800px;}
._7e{margin-left:-274.320960px;}
._135{margin-left:-272.477520px;}
._1a{margin-left:-271.465920px;}
._ef{margin-left:-263.243520px;}
._6d{margin-left:-262.231440px;}
._148{margin-left:-249.622080px;}
._e4{margin-left:-246.026880px;}
._14a{margin-left:-243.368640px;}
._e9{margin-left:-240.736320px;}
._7f{margin-left:-239.538240px;}
._69{margin-left:-237.312000px;}
._e5{margin-left:-230.123520px;}
._149{margin-left:-227.772240px;}
._f0{margin-left:-225.552960px;}
._11d{margin-left:-223.461360px;}
._129{margin-left:-217.935360px;}
._38{margin-left:-212.953680px;}
._c9{margin-left:-211.222080px;}
._100{margin-left:-207.964800px;}
._75{margin-left:-204.978240px;}
._b0{margin-left:-199.984320px;}
._af{margin-left:-198.881520px;}
._22{margin-left:-194.120640px;}
._b9{margin-left:-188.176800px;}
._b8{margin-left:-184.734720px;}
._37{margin-left:-180.319920px;}
._54{margin-left:-178.125120px;}
._b5{margin-left:-175.806720px;}
._a4{margin-left:-173.638080px;}
._117{margin-left:-169.698240px;}
._147{margin-left:-160.968960px;}
._73{margin-left:-159.120960px;}
._74{margin-left:-157.078080px;}
._80{margin-left:-145.440720px;}
._85{margin-left:-134.902080px;}
._122{margin-left:-131.508000px;}
._86{margin-left:-130.170240px;}
._7b{margin-left:-125.374080px;}
._b6{margin-left:-124.254720px;}
._16{margin-left:-116.748000px;}
._e{margin-left:-115.416000px;}
._15{margin-left:-114.156000px;}
._78{margin-left:-110.880480px;}
._141{margin-left:-106.560480px;}
._76{margin-left:-104.400480px;}
._77{margin-left:-103.242240px;}
._ca{margin-left:-100.226880px;}
._14b{margin-left:-94.846560px;}
._152{margin-left:-92.992080px;}
._83{margin-left:-90.095280px;}
._d{margin-left:-88.992000px;}
._140{margin-left:-85.680000px;}
._f{margin-left:-79.452000px;}
._5b{margin-left:-77.846400px;}
._142{margin-left:-76.788960px;}
._4e{margin-left:-74.543040px;}
._4d{margin-left:-71.229360px;}
._53{margin-left:-69.454080px;}
._11{margin-left:-67.860000px;}
._10{margin-left:-66.672000px;}
._14{margin-left:-62.628000px;}
._14e{margin-left:-61.510080px;}
._47{margin-left:-60.151680px;}
._9a{margin-left:-58.230720px;}
._fb{margin-left:-56.142960px;}
._46{margin-left:-55.042560px;}
._11c{margin-left:-53.046000px;}
._52{margin-left:-52.018560px;}
._150{margin-left:-50.745360px;}
._12{margin-left:-49.440000px;}
._50{margin-left:-48.418560px;}
._51{margin-left:-47.199600px;}
._49{margin-left:-45.720000px;}
._13{margin-left:-44.676000px;}
._4c{margin-left:-43.421040px;}
._48{margin-left:-41.529360px;}
._4f{margin-left:-40.112880px;}
._42{margin-left:-38.264400px;}
._45{margin-left:-36.838080px;}
._2b{margin-left:-35.290800px;}
._14d{margin-left:-33.909600px;}
._35{margin-left:-31.690800px;}
._151{margin-left:-30.623280px;}
._4b{margin-left:-29.551680px;}
._14f{margin-left:-28.297680px;}
._4a{margin-left:-26.778960px;}
._66{margin-left:-17.099280px;}
._32{margin-left:-15.464400px;}
._24{margin-left:-13.640400px;}
._b{margin-left:-12.492000px;}
._2d{margin-left:-11.223360px;}
._23{margin-left:-9.361920px;}
._29{margin-left:-8.069760px;}
._33{margin-left:-6.932640px;}
._25{margin-left:-5.462640px;}
._27{margin-left:-3.523680px;}
._81{margin-left:-2.271600px;}
._1{margin-left:-1.080000px;}
._0{width:1.038000px;}
._6{width:2.862000px;}
._7{width:4.104000px;}
._28{width:5.142720px;}
._a{width:6.438000px;}
._8{width:7.506000px;}
._2e{width:9.169200px;}
._30{width:10.175280px;}
._5{width:13.932000px;}
._3{width:16.038000px;}
._2{width:17.118000px;}
._4{width:19.566000px;}
._9{width:25.812000px;}
._c{width:31.752000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fsa{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y4e{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y126{bottom:4.665000px;}
.y123{bottom:6.465000px;}
.y12e{bottom:6.480000px;}
.y125{bottom:6.645000px;}
.y12b{bottom:6.652500px;}
.y132{bottom:6.660000px;}
.y4d{bottom:16.020000px;}
.y4c{bottom:17.820000px;}
.y5c{bottom:19.110000px;}
.y4b{bottom:19.440000px;}
.y73{bottom:20.700000px;}
.y4a{bottom:22.860000px;}
.y130{bottom:28.800000px;}
.y12a{bottom:28.966500px;}
.y49{bottom:34.380000px;}
.y5b{bottom:35.130000px;}
.y72{bottom:38.700000px;}
.y5a{bottom:50.970000px;}
.ya{bottom:55.980000px;}
.y75{bottom:56.520000px;}
.y71{bottom:57.600000px;}
.y48{bottom:60.840000px;}
.y59{bottom:66.810000px;}
.y9{bottom:71.856000px;}
.y70{bottom:75.780000px;}
.y58{bottom:79.590000px;}
.y47{bottom:85.680000px;}
.y8{bottom:87.696000px;}
.yc2{bottom:92.016000px;}
.y6f{bottom:94.860000px;}
.y57{bottom:98.310000px;}
.yf5{bottom:100.296000px;}
.y10c{bottom:101.736000px;}
.y7{bottom:103.536000px;}
.y46{bottom:104.610000px;}
.y12c{bottom:107.316000px;}
.yd9{bottom:111.456000px;}
.y6e{bottom:113.760000px;}
.y56{bottom:114.150000px;}
.y6{bottom:119.376000px;}
.y96{bottom:126.036000px;}
.y129{bottom:127.303500px;}
.ya7{bottom:129.096000px;}
.y55{bottom:129.990000px;}
.y6d{bottom:131.940000px;}
.y5{bottom:135.216000px;}
.yc1{bottom:137.556000px;}
.yf4{bottom:145.656000px;}
.y54{bottom:145.830000px;}
.y10b{bottom:146.916000px;}
.y6c{bottom:150.840000px;}
.y4{bottom:151.050000px;}
.y95{bottom:153.390000px;}
.yd8{bottom:156.810000px;}
.y53{bottom:158.610000px;}
.y3{bottom:166.890000px;}
.y6b{bottom:169.020000px;}
.y52{bottom:169.050000px;}
.y128{bottom:172.845000px;}
.ya6{bottom:174.450000px;}
.y51{bottom:179.490000px;}
.yc0{bottom:182.910000px;}
.y6a{bottom:185.790000px;}
.y44{bottom:186.510000px;}
.yf3{bottom:191.190000px;}
.y10a{bottom:192.450000px;}
.y127{bottom:196.065000px;}
.y50{bottom:196.950000px;}
.y94{bottom:198.750000px;}
.y69{bottom:201.630000px;}
.ya5{bottom:201.810000px;}
.yd7{bottom:202.170000px;}
.y43{bottom:205.950000px;}
.ybf{bottom:210.270000px;}
.y68{bottom:217.470000px;}
.yf2{bottom:218.550000px;}
.y124{bottom:219.105000px;}
.y109{bottom:219.810000px;}
.y42{bottom:225.210000px;}
.y67{bottom:233.310000px;}
.ybe{bottom:237.630000px;}
.y122{bottom:242.325000px;}
.y93{bottom:244.290000px;}
.y41{bottom:244.470000px;}
.yf1{bottom:245.910000px;}
.ya4{bottom:246.990000px;}
.yd6{bottom:247.530000px;}
.y66{bottom:249.150000px;}
.y40{bottom:263.910000px;}
.y65{bottom:264.990000px;}
.y108{bottom:265.170000px;}
.y92{bottom:271.650000px;}
.yf0{bottom:273.270000px;}
.y64{bottom:280.830000px;}
.y3f{bottom:283.170000px;}
.y121{bottom:291.630000px;}
.ybd{bottom:292.350000px;}
.ya3{bottom:292.530000px;}
.yd5{bottom:293.070000px;}
.y63{bottom:296.670000px;}
.y143{bottom:296.850000px;}
.y91{bottom:299.010000px;}
.yef{bottom:300.630000px;}
.y3e{bottom:302.610000px;}
.y107{bottom:310.530000px;}
.y62{bottom:312.510000px;}
.ya2{bottom:319.935000px;}
.y3d{bottom:321.915000px;}
.yee{bottom:328.035000px;}
.y61{bottom:328.350000px;}
.y120{bottom:336.855000px;}
.ybc{bottom:337.755000px;}
.yd4{bottom:338.475000px;}
.y60{bottom:341.130000px;}
.y3c{bottom:341.355000px;}
.y90{bottom:344.235000px;}
.ya1{bottom:347.295000px;}
.y106{bottom:356.115000px;}
.y5f{bottom:360.030000px;}
.y3b{bottom:360.615000px;}
.y11f{bottom:364.215000px;}
.ybb{bottom:365.115000px;}
.yed{bottom:373.215000px;}
.ya0{bottom:374.655000px;}
.y142{bottom:375.735000px;}
.y3a{bottom:376.455000px;}
.y5e{bottom:377.490000px;}
.y105{bottom:383.475000px;}
.yd3{bottom:383.835000px;}
.y5d{bottom:388.155000px;}
.y8f{bottom:389.775000px;}
.y39{bottom:397.515000px;}
.y38{bottom:406.155000px;}
.y11e{bottom:409.575000px;}
.yba{bottom:410.475000px;}
.y37{bottom:414.975000px;}
.y8e{bottom:417.135000px;}
.yec{bottom:418.755000px;}
.y141{bottom:421.275000px;}
.y36{bottom:423.795000px;}
.y104{bottom:428.655000px;}
.yd2{bottom:429.195000px;}
.y35{bottom:432.615000px;}
.y34{bottom:441.435000px;}
.yeb{bottom:446.115000px;}
.y140{bottom:448.635000px;}
.y33{bottom:450.255000px;}
.y11d{bottom:455.115000px;}
.yb9{bottom:456.015000px;}
.y32{bottom:459.075000px;}
.y8d{bottom:462.315000px;}
.y31{bottom:467.895000px;}
.yea{bottom:473.475000px;}
.y103{bottom:474.195000px;}
.yd1{bottom:474.555000px;}
.y13f{bottom:475.995000px;}
.y30{bottom:476.535000px;}
.y11c{bottom:482.475000px;}
.yb8{bottom:483.375000px;}
.y2f{bottom:485.175000px;}
.y8c{bottom:489.855000px;}
.y2e{bottom:493.815000px;}
.ye9{bottom:500.835000px;}
.y102{bottom:501.555000px;}
.y2d{bottom:502.455000px;}
.y13e{bottom:503.355000px;}
.y11b{bottom:509.835000px;}
.yb7{bottom:510.735000px;}
.y2c{bottom:511.095000px;}
.y2b{bottom:519.735000px;}
.yd0{bottom:520.095000px;}
.y8b{bottom:527.475000px;}
.ye8{bottom:528.195000px;}
.y2a{bottom:528.375000px;}
.y101{bottom:528.915000px;}
.y13d{bottom:530.715000px;}
.y29{bottom:537.015000px;}
.y11a{bottom:537.195000px;}
.y28{bottom:545.655000px;}
.y27{bottom:554.295000px;}
.ye7{bottom:555.555000px;}
.yb6{bottom:555.915000px;}
.y13c{bottom:558.075000px;}
.y8a{bottom:562.575000px;}
.y26{bottom:562.755000px;}
.ycf{bottom:565.455000px;}
.y4f{bottom:566.895000px;}
.y25{bottom:571.245000px;}
.y100{bottom:574.305000px;}
.y24{bottom:582.405000px;}
.ye6{bottom:582.945000px;}
.yb5{bottom:583.305000px;}
.y13b{bottom:585.465000px;}
.y1f{bottom:602.745000px;}
.y23{bottom:606.885000px;}
.y89{bottom:607.245000px;}
.yce{bottom:611.025000px;}
.y13a{bottom:612.825000px;}
.yff{bottom:619.845000px;}
.y1e{bottom:620.385000px;}
.y119{bottom:627.945000px;}
.y22{bottom:628.125000px;}
.yb4{bottom:628.665000px;}
.y88{bottom:632.085000px;}
.y1d{bottom:638.025000px;}
.y139{bottom:640.185000px;}
.yfe{bottom:647.205000px;}
.y21{bottom:649.185000px;}
.y118{bottom:655.305000px;}
.y1c{bottom:655.485000px;}
.yb3{bottom:656.025000px;}
.ycd{bottom:656.205000px;}
.y87{bottom:657.105000px;}
.y138{bottom:667.545000px;}
.y20{bottom:670.245000px;}
.y1b{bottom:673.125000px;}
.ye5{bottom:673.665000px;}
.y86{bottom:681.945000px;}
.y117{bottom:682.665000px;}
.yb2{bottom:683.385000px;}
.y1a{bottom:690.765000px;}
.yfd{bottom:692.385000px;}
.y137{bottom:694.905000px;}
.ye4{bottom:701.025000px;}
.ycc{bottom:701.745000px;}
.y85{bottom:706.785000px;}
.y19{bottom:708.225000px;}
.y116{bottom:710.025000px;}
.y136{bottom:722.265000px;}
.y18{bottom:725.865000px;}
.yb0{bottom:728.745000px;}
.yb1{bottom:729.105000px;}
.y84{bottom:731.625000px;}
.y115{bottom:737.385000px;}
.yfc{bottom:737.925000px;}
.y17{bottom:743.505000px;}
.ye3{bottom:746.385000px;}
.ycb{bottom:746.925000px;}
.y135{bottom:749.625000px;}
.yaf{bottom:756.105000px;}
.y83{bottom:756.465000px;}
.y114{bottom:764.745000px;}
.y9f{bottom:765.285000px;}
.ye2{bottom:773.745000px;}
.y16{bottom:775.905000px;}
.y134{bottom:776.985000px;}
.y82{bottom:781.305000px;}
.y113{bottom:792.105000px;}
.yca{bottom:792.465000px;}
.yfb{bottom:792.645000px;}
.y15{bottom:799.485000px;}
.ye1{bottom:801.105000px;}
.yae{bottom:801.465000px;}
.y81{bottom:806.145000px;}
.y9e{bottom:810.645000px;}
.y14{bottom:815.325000px;}
.y112{bottom:819.510000px;}
.yc9{bottom:819.870000px;}
.y133{bottom:822.210000px;}
.ye0{bottom:828.330000px;}
.yad{bottom:828.870000px;}
.y80{bottom:831.210000px;}
.yfa{bottom:837.870000px;}
.y13{bottom:847.050000px;}
.ydf{bottom:855.870000px;}
.y9d{bottom:856.230000px;}
.y111{bottom:864.690000px;}
.yc8{bottom:865.230000px;}
.y7f{bottom:867.750000px;}
.yac{bottom:874.230000px;}
.yde{bottom:883.230000px;}
.yf9{bottom:883.410000px;}
.y9c{bottom:883.590000px;}
.y12{bottom:887.910000px;}
.y7e{bottom:898.350000px;}
.yab{bottom:901.590000px;}
.y110{bottom:910.230000px;}
.yc7{bottom:910.590000px;}
.ydd{bottom:910.770000px;}
.y131{bottom:910.950000px;}
.y7d{bottom:915.090000px;}
.y11{bottom:918.510000px;}
.yf8{bottom:928.770000px;}
.y9b{bottom:928.950000px;}
.y7c{bottom:933.990000px;}
.y12f{bottom:934.170000px;}
.y10f{bottom:937.590000px;}
.ydc{bottom:937.950000px;}
.yaa{bottom:946.950000px;}
.y7b{bottom:953.070000px;}
.yc6{bottom:956.130000px;}
.y9a{bottom:956.310000px;}
.y10e{bottom:964.950000px;}
.y7a{bottom:971.610000px;}
.y45{bottom:973.050000px;}
.yf7{bottom:974.130000px;}
.ya9{bottom:974.310000px;}
.y12d{bottom:979.710000px;}
.y10{bottom:982.410000px;}
.ydb{bottom:983.310000px;}
.yc5{bottom:983.490000px;}
.y79{bottom:990.510000px;}
.y10d{bottom:992.310000px;}
.y99{bottom:1001.490000px;}
.ya8{bottom:1001.670000px;}
.yf{bottom:1004.010000px;}
.y78{bottom:1009.590000px;}
.yf6{bottom:1019.670000px;}
.ye{bottom:1025.790000px;}
.yc4{bottom:1028.670000px;}
.yda{bottom:1028.850000px;}
.y98{bottom:1047.030000px;}
.yd{bottom:1047.570000px;}
.y77{bottom:1049.730000px;}
.yc{bottom:1069.350000px;}
.yc3{bottom:1074.240000px;}
.y97{bottom:1074.420000px;}
.y76{bottom:1078.020000px;}
.yb{bottom:1091.160000px;}
.y74{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y1{bottom:1128.060000px;}
.h11{height:3.839063px;}
.h12{height:4.480313px;}
.h10{height:20.155078px;}
.ha{height:21.203437px;}
.h26{height:22.305000px;}
.h28{height:22.485000px;}
.h7{height:25.623281px;}
.hb{height:31.081955px;}
.h8{height:37.757812px;}
.h1{height:37.863281px;}
.h9{height:41.902031px;}
.h2c{height:44.625000px;}
.h2b{height:44.812500px;}
.hc{height:46.316250px;}
.he{height:46.445625px;}
.h27{height:47.118164px;}
.h15{height:47.513672px;}
.h2{height:50.484375px;}
.h6{height:50.529023px;}
.h18{height:55.503491px;}
.h29{height:55.555664px;}
.h17{height:56.320312px;}
.h1c{height:57.798281px;}
.h1a{height:58.024687px;}
.h1b{height:58.283437px;}
.h1f{height:60.924129px;}
.h3{height:61.423863px;}
.h1d{height:61.481602px;}
.hf{height:63.105469px;}
.h2a{height:63.475664px;}
.h1e{height:64.361602px;}
.h20{height:68.148281px;}
.h24{height:68.956875px;}
.h21{height:69.086250px;}
.h23{height:69.588281px;}
.h22{height:71.028281px;}
.h5{height:71.687812px;}
.h25{height:73.188281px;}
.h13{height:74.004654px;}
.h19{height:95.027344px;}
.h4{height:111.006981px;}
.hd{height:117.210000px;}
.h14{height:211.170000px;}
.h16{height:390.090000px;}
.h0{height:1188.000000px;}
.w4{width:68.565000px;}
.w2{width:230.115000px;}
.w6{width:307.639500px;}
.w5{width:349.275000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7d{left:3.600000px;}
.xa{left:10.785000px;}
.xf{left:17.640000px;}
.x81{left:27.000000px;}
.x75{left:30.060000px;}
.x7f{left:48.229500px;}
.x77{left:54.000000px;}
.xb{left:65.704500px;}
.x17{left:70.380000px;}
.x1{left:75.600000px;}
.x78{left:80.803500px;}
.x4a{left:83.160000px;}
.x76{left:95.626500px;}
.x8{left:98.985000px;}
.x80{left:100.423500px;}
.x7c{left:101.503500px;}
.x3a{left:103.716000px;}
.x9{left:110.370000px;}
.x79{left:113.970000px;}
.x63{left:116.856000px;}
.x42{left:117.936000px;}
.x6{left:122.970000px;}
.x2{left:128.736000px;}
.x2b{left:129.996000px;}
.x5b{left:131.616000px;}
.x83{left:133.543500px;}
.x6e{left:134.676000px;}
.x2d{left:136.116000px;}
.x29{left:142.236000px;}
.x30{left:144.576000px;}
.x71{left:151.230000px;}
.x36{left:153.210000px;}
.x24{left:155.910000px;}
.x40{left:158.250000px;}
.x7a{left:164.143500px;}
.x84{left:168.690000px;}
.x5{left:180.225000px;}
.x60{left:189.750000px;}
.x4e{left:191.550000px;}
.x16{left:203.250000px;}
.x7b{left:205.770000px;}
.x27{left:210.990000px;}
.x2a{left:215.490000px;}
.xc{left:219.445500px;}
.x31{left:223.776000px;}
.x86{left:226.830000px;}
.x41{left:234.750000px;}
.x32{left:254.190000px;}
.x50{left:257.610000px;}
.x7{left:272.010000px;}
.x85{left:276.868500px;}
.x4d{left:296.895000px;}
.x7e{left:313.275000px;}
.x82{left:314.895000px;}
.xd{left:328.395000px;}
.x4{left:340.815000px;}
.x59{left:344.055000px;}
.x22{left:345.495000px;}
.x28{left:348.195000px;}
.x54{left:364.935000px;}
.x89{left:367.740000px;}
.x72{left:378.975000px;}
.x55{left:404.175000px;}
.x35{left:416.775000px;}
.x51{left:419.655000px;}
.x25{left:445.035000px;}
.x57{left:453.096000px;}
.x13{left:454.935000px;}
.x49{left:457.635000px;}
.x2f{left:461.415000px;}
.x11{left:465.375000px;}
.x56{left:470.955000px;}
.x12{left:475.635000px;}
.x1a{left:479.805000px;}
.x48{left:482.505000px;}
.x4c{left:488.985000px;}
.x70{left:495.180000px;}
.x5c{left:497.805000px;}
.x3c{left:502.125000px;}
.x23{left:508.965000px;}
.x8b{left:511.485000px;}
.xe{left:515.415000px;}
.x62{left:523.905000px;}
.x8a{left:528.480000px;}
.x10{left:532.545000px;}
.x64{left:540.645000px;}
.x73{left:550.545000px;}
.x34{left:557.385000px;}
.x15{left:570.165000px;}
.x6f{left:574.305000px;}
.x14{left:584.025000px;}
.x53{left:590.325000px;}
.x5a{left:600.765000px;}
.x58{left:607.245000px;}
.x61{left:612.645000px;}
.x4f{left:615.885000px;}
.x1b{left:629.385000px;}
.x37{left:634.245000px;}
.x6b{left:647.310000px;}
.x3d{left:650.985000px;}
.x18{left:659.445000px;}
.x5e{left:662.325000px;}
.x6d{left:674.790000px;}
.x2c{left:675.870000px;}
.x39{left:684.330000px;}
.x68{left:692.070000px;}
.x26{left:695.310000px;}
.x47{left:696.930000px;}
.x43{left:701.790000px;}
.x4b{left:705.210000px;}
.x67{left:710.970000px;}
.x6c{left:716.730000px;}
.x5f{left:723.750000px;}
.x33{left:726.270000px;}
.x44{left:730.230000px;}
.x5d{left:736.710000px;}
.x1f{left:740.310000px;}
.x1e{left:745.530000px;}
.x74{left:753.990000px;}
.x52{left:761.730000px;}
.x21{left:762.810000px;}
.x2e{left:767.196000px;}
.x66{left:775.950000px;}
.x38{left:780.450000px;}
.x65{left:791.790000px;}
.x87{left:793.770000px;}
.x69{left:796.110000px;}
.x19{left:799.710000px;}
.x20{left:803.670000px;}
.x45{left:805.830000px;}
.x3b{left:808.170000px;}
.x6a{left:813.390000px;}
.x3e{left:815.550000px;}
.x8c{left:819.870000px;}
.x88{left:821.130000px;}
.x3f{left:822.390000px;}
.x8d{left:832.830000px;}
.x46{left:834.090000px;}
.x1c{left:836.070000px;}
.x1d{left:838.050000px;}
.x3{left:842.550000px;}
@media print{
.v1{vertical-align:-116.480000pt;}
.v5{vertical-align:-54.400000pt;}
.v4{vertical-align:-46.080000pt;}
.ve{vertical-align:-26.880000pt;}
.v3{vertical-align:-10.880000pt;}
.va{vertical-align:-8.960000pt;}
.v6{vertical-align:-7.680000pt;}
.vf{vertical-align:-6.400000pt;}
.v12{vertical-align:-4.480000pt;}
.v9{vertical-align:-2.560000pt;}
.vd{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.v11{vertical-align:4.480000pt;}
.v10{vertical-align:6.400000pt;}
.v7{vertical-align:7.680000pt;}
.vb{vertical-align:8.960000pt;}
.v2{vertical-align:16.000000pt;}
.ls16{letter-spacing:-32.746667pt;}
.lsf{letter-spacing:-28.266667pt;}
.ls17{letter-spacing:-26.986667pt;}
.ls15{letter-spacing:-23.146667pt;}
.lse{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.250667pt;}
.lsc{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.222933pt;}
.ls10{letter-spacing:-0.105067pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.184533pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls4{letter-spacing:373.920000pt;}
.ls3{letter-spacing:1350.186667pt;}
.lsd{letter-spacing:2570.028373pt;}
.ws10{word-spacing:-64.650240pt;}
.ws13{word-spacing:-64.427307pt;}
.ws12{word-spacing:-64.399573pt;}
.ws11{word-spacing:-58.880000pt;}
.wsd{word-spacing:-58.325760pt;}
.wsf{word-spacing:-53.120000pt;}
.ws16{word-spacing:-52.704000pt;}
.ws1{word-spacing:-48.288000pt;}
.wsa{word-spacing:-48.256000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws4{word-spacing:-42.880000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws14{word-spacing:-18.849493pt;}
.ws15{word-spacing:-18.664960pt;}
.ws6{word-spacing:-17.520000pt;}
.ws9{word-spacing:-13.536000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.344000pt;}
.wse{word-spacing:-11.686400pt;}
.ws3{word-spacing:-10.800000pt;}
.ws0{word-spacing:-10.560000pt;}
.wsb{word-spacing:-10.336000pt;}
.wsc{word-spacing:0.000000pt;}
._79{margin-left:-2745.707093pt;}
._56{margin-left:-2744.674560pt;}
._26{margin-left:-2743.678720pt;}
._68{margin-left:-2691.849600pt;}
._e6{margin-left:-2683.925973pt;}
._84{margin-left:-2642.945067pt;}
._e7{margin-left:-2605.294933pt;}
._e8{margin-left:-2597.229867pt;}
._31{margin-left:-2587.903360pt;}
._103{margin-left:-2572.657280pt;}
._109{margin-left:-2556.695467pt;}
._cc{margin-left:-2554.535680pt;}
._70{margin-left:-2539.092693pt;}
._110{margin-left:-2538.079573pt;}
._2f{margin-left:-2530.853973pt;}
._c0{margin-left:-2516.614400pt;}
._143{margin-left:-2493.701973pt;}
._5a{margin-left:-2492.234667pt;}
._119{margin-left:-2490.174720pt;}
._bf{margin-left:-2470.436480pt;}
._113{margin-left:-2466.444587pt;}
._7a{margin-left:-2459.938773pt;}
._dd{margin-left:-2434.123947pt;}
._dc{margin-left:-2431.396480pt;}
._c8{margin-left:-2385.688533pt;}
._c7{margin-left:-2384.036480pt;}
._e3{margin-left:-2339.239040pt;}
._ab{margin-left:-2334.314453pt;}
._61{margin-left:-2264.046507pt;}
._67{margin-left:-2249.251413pt;}
._146{margin-left:-2231.383040pt;}
._a2{margin-left:-2172.501547pt;}
._fe{margin-left:-2152.721493pt;}
._fd{margin-left:-2149.510613pt;}
._145{margin-left:-2123.675307pt;}
._b2{margin-left:-2114.674133pt;}
._6e{margin-left:-2109.473920pt;}
._ff{margin-left:-2081.670613pt;}
._cb{margin-left:-2078.777813pt;}
._a8{margin-left:-2062.257280pt;}
._bd{margin-left:-2059.329493pt;}
._e0{margin-left:-2042.554240pt;}
._12b{margin-left:-2002.873387pt;}
._98{margin-left:-1969.360853pt;}
._102{margin-left:-1917.931733pt;}
._101{margin-left:-1915.270613pt;}
._12a{margin-left:-1895.748907pt;}
._97{margin-left:-1861.817813pt;}
._d1{margin-left:-1824.335147pt;}
._d0{margin-left:-1820.857813pt;}
._63{margin-left:-1792.888960pt;}
._c1{margin-left:-1791.681920pt;}
._da{margin-left:-1785.746347pt;}
._134{margin-left:-1761.797120pt;}
._43{margin-left:-1759.185707pt;}
._c5{margin-left:-1741.918293pt;}
._ba{margin-left:-1716.822400pt;}
._be{margin-left:-1711.492480pt;}
._13d{margin-left:-1704.608427pt;}
._13c{margin-left:-1684.388907pt;}
._bb{margin-left:-1682.794880pt;}
._9f{margin-left:-1677.171627pt;}
._133{margin-left:-1654.948907pt;}
._10c{margin-left:-1637.682987pt;}
._b3{margin-left:-1627.061973pt;}
._10b{margin-left:-1618.790613pt;}
._d9{margin-left:-1606.637653pt;}
._44{margin-left:-1602.647040pt;}
._112{margin-left:-1575.910613pt;}
._40{margin-left:-1568.041387pt;}
._2c{margin-left:-1566.012373pt;}
._10e{margin-left:-1559.719040pt;}
._10d{margin-left:-1556.710613pt;}
._13f{margin-left:-1552.935040pt;}
._e1{margin-left:-1508.347093pt;}
._d8{margin-left:-1498.137813pt;}
._13e{margin-left:-1446.948907pt;}
._5d{margin-left:-1432.344320pt;}
._9c{margin-left:-1388.127573pt;}
._39{margin-left:-1340.593067pt;}
._3a{margin-left:-1339.401387pt;}
._a5{margin-left:-1306.128000pt;}
._34{margin-left:-1300.102827pt;}
._de{margin-left:-1294.617813pt;}
._12f{margin-left:-1291.428907pt;}
._cd{margin-left:-1261.179093pt;}
._12d{margin-left:-1249.012693pt;}
._12c{margin-left:-1247.268907pt;}
._10a{margin-left:-1234.831573pt;}
._8f{margin-left:-1228.681600pt;}
._f5{margin-left:-1210.850560pt;}
._57{margin-left:-1204.967680pt;}
._89{margin-left:-1198.499200pt;}
._f6{margin-left:-1196.436907pt;}
._92{margin-left:-1183.461973pt;}
._91{margin-left:-1180.057813pt;}
._2a{margin-left:-1174.538880pt;}
._ec{margin-left:-1151.545813pt;}
._8b{margin-left:-1123.064107pt;}
._8a{margin-left:-1120.347947pt;}
._90{margin-left:-1116.571520pt;}
._116{margin-left:-1108.190507pt;}
._d3{margin-left:-1099.798827pt;}
._144{margin-left:-1094.496000pt;}
._88{margin-left:-1092.081280pt;}
._139{margin-left:-1081.200427pt;}
._111{margin-left:-1076.644907pt;}
._95{margin-left:-1067.951147pt;}
._138{margin-left:-1066.682240pt;}
._11b{margin-left:-1057.278507pt;}
._71{margin-left:-1043.823573pt;}
._ed{margin-left:-1035.891627pt;}
._13b{margin-left:-1023.861973pt;}
._3b{margin-left:-1010.886400pt;}
._3c{margin-left:-1009.956480pt;}
._115{margin-left:-1002.363947pt;}
._108{margin-left:-979.323947pt;}
._a3{margin-left:-934.954880pt;}
._13a{margin-left:-931.077547pt;}
._114{margin-left:-926.479360pt;}
._d6{margin-left:-924.219733pt;}
._d5{margin-left:-920.111147pt;}
._c2{margin-left:-917.876693pt;}
._b7{margin-left:-915.771520pt;}
._123{margin-left:-909.855360pt;}
._36{margin-left:-904.531200pt;}
._3f{margin-left:-897.606400pt;}
._ae{margin-left:-882.824960pt;}
._c6{margin-left:-880.192640pt;}
._3d{margin-left:-876.486400pt;}
._3e{margin-left:-875.291093pt;}
._72{margin-left:-863.644373pt;}
._11a{margin-left:-860.896000pt;}
._d2{margin-left:-856.111147pt;}
._124{margin-left:-854.345600pt;}
._ea{margin-left:-837.252693pt;}
._c4{margin-left:-833.485013pt;}
._c3{margin-left:-829.871147pt;}
._ad{margin-left:-825.611733pt;}
._11f{margin-left:-823.819307pt;}
._82{margin-left:-805.126187pt;}
._94{margin-left:-784.757547pt;}
._93{margin-left:-765.231147pt;}
._118{margin-left:-757.593173pt;}
._12e{margin-left:-750.984960pt;}
._96{margin-left:-725.238187pt;}
._121{margin-left:-720.712960pt;}
._10f{margin-left:-709.896107pt;}
._137{margin-left:-705.272533pt;}
._136{margin-left:-703.351253pt;}
._db{margin-left:-694.805547pt;}
._41{margin-left:-692.504747pt;}
._7d{margin-left:-686.674773pt;}
._df{margin-left:-671.791147pt;}
._11e{margin-left:-668.531840pt;}
._f9{margin-left:-665.274027pt;}
._a0{margin-left:-662.651733pt;}
._1d{margin-left:-652.808960pt;}
._20{margin-left:-651.528960pt;}
._8d{margin-left:-637.223253pt;}
._8c{margin-left:-633.841280pt;}
._126{margin-left:-629.878187pt;}
._f3{margin-left:-617.184000pt;}
._107{margin-left:-615.893973pt;}
._6a{margin-left:-611.768960pt;}
._14c{margin-left:-609.079467pt;}
._125{margin-left:-607.269973pt;}
._131{margin-left:-594.659840pt;}
._106{margin-left:-571.174400pt;}
._9d{margin-left:-557.728427pt;}
._fc{margin-left:-554.831787pt;}
._60{margin-left:-543.825067pt;}
._9e{margin-left:-537.825920pt;}
._99{margin-left:-536.716800pt;}
._87{margin-left:-521.108480pt;}
._104{margin-left:-515.679360pt;}
._a1{margin-left:-508.035200pt;}
._130{margin-left:-502.095787pt;}
._62{margin-left:-499.411627pt;}
._120{margin-left:-497.845333pt;}
._6c{margin-left:-492.664747pt;}
._6b{margin-left:-490.481280pt;}
._127{margin-left:-465.680000pt;}
._ac{margin-left:-453.224960pt;}
._59{margin-left:-445.405440pt;}
._5f{margin-left:-444.244267pt;}
._58{margin-left:-443.121280pt;}
._5e{margin-left:-441.841280pt;}
._d7{margin-left:-440.111147pt;}
._cf{margin-left:-435.082240pt;}
._19{margin-left:-433.976320pt;}
._6f{margin-left:-433.009920pt;}
._18{margin-left:-431.582720pt;}
._128{margin-left:-423.982507pt;}
._8e{margin-left:-419.153067pt;}
._65{margin-left:-416.832000pt;}
._64{margin-left:-414.161280pt;}
._1b{margin-left:-409.289387pt;}
._1c{margin-left:-406.275413pt;}
._105{margin-left:-404.493013pt;}
._9b{margin-left:-401.384960pt;}
._f4{margin-left:-398.744107pt;}
._ce{margin-left:-395.257387pt;}
._eb{margin-left:-392.997760pt;}
._a6{margin-left:-385.090560pt;}
._bc{margin-left:-380.431147pt;}
._a7{margin-left:-370.746027pt;}
._f7{margin-left:-369.730560pt;}
._f8{margin-left:-355.875840pt;}
._aa{margin-left:-354.024960pt;}
._a9{margin-left:-350.255147pt;}
._17{margin-left:-349.230080pt;}
._1f{margin-left:-337.730560pt;}
._e2{margin-left:-321.730560pt;}
._fa{margin-left:-319.185920pt;}
._21{margin-left:-313.507840pt;}
._b4{margin-left:-307.008213pt;}
._55{margin-left:-302.680320pt;}
._1e{margin-left:-293.667840pt;}
._132{margin-left:-289.569280pt;}
._7c{margin-left:-285.045973pt;}
._d4{margin-left:-277.892267pt;}
._b1{margin-left:-273.384960pt;}
._f1{margin-left:-260.930560pt;}
._5c{margin-left:-253.032960pt;}
._ee{margin-left:-248.130560pt;}
._f2{margin-left:-247.156267pt;}
._7e{margin-left:-243.840853pt;}
._135{margin-left:-242.202240pt;}
._1a{margin-left:-241.303040pt;}
._ef{margin-left:-233.994240pt;}
._6d{margin-left:-233.094613pt;}
._148{margin-left:-221.886293pt;}
._e4{margin-left:-218.690560pt;}
._14a{margin-left:-216.327680pt;}
._e9{margin-left:-213.987840pt;}
._7f{margin-left:-212.922880pt;}
._69{margin-left:-210.944000pt;}
._e5{margin-left:-204.554240pt;}
._149{margin-left:-202.464213pt;}
._f0{margin-left:-200.491520pt;}
._11d{margin-left:-198.632320pt;}
._129{margin-left:-193.720320pt;}
._38{margin-left:-189.292160pt;}
._c9{margin-left:-187.752960pt;}
._100{margin-left:-184.857600pt;}
._75{margin-left:-182.202880pt;}
._b0{margin-left:-177.763840pt;}
._af{margin-left:-176.783573pt;}
._22{margin-left:-172.551680pt;}
._b9{margin-left:-167.268267pt;}
._b8{margin-left:-164.208640pt;}
._37{margin-left:-160.284373pt;}
._54{margin-left:-158.333440pt;}
._b5{margin-left:-156.272640pt;}
._a4{margin-left:-154.344960pt;}
._117{margin-left:-150.842880pt;}
._147{margin-left:-143.083520pt;}
._73{margin-left:-141.440853pt;}
._74{margin-left:-139.624960pt;}
._80{margin-left:-129.280640pt;}
._85{margin-left:-119.912960pt;}
._122{margin-left:-116.896000pt;}
._86{margin-left:-115.706880pt;}
._7b{margin-left:-111.443627pt;}
._b6{margin-left:-110.448640pt;}
._16{margin-left:-103.776000pt;}
._e{margin-left:-102.592000pt;}
._15{margin-left:-101.472000pt;}
._78{margin-left:-98.560427pt;}
._141{margin-left:-94.720427pt;}
._76{margin-left:-92.800427pt;}
._77{margin-left:-91.770880pt;}
._ca{margin-left:-89.090560pt;}
._14b{margin-left:-84.308053pt;}
._152{margin-left:-82.659627pt;}
._83{margin-left:-80.084693pt;}
._d{margin-left:-79.104000pt;}
._140{margin-left:-76.160000pt;}
._f{margin-left:-70.624000pt;}
._5b{margin-left:-69.196800pt;}
._142{margin-left:-68.256853pt;}
._4e{margin-left:-66.260480pt;}
._4d{margin-left:-63.314987pt;}
._53{margin-left:-61.736960pt;}
._11{margin-left:-60.320000pt;}
._10{margin-left:-59.264000pt;}
._14{margin-left:-55.669333pt;}
._14e{margin-left:-54.675627pt;}
._47{margin-left:-53.468160pt;}
._9a{margin-left:-51.760640pt;}
._fb{margin-left:-49.904853pt;}
._46{margin-left:-48.926720pt;}
._11c{margin-left:-47.152000pt;}
._52{margin-left:-46.238720pt;}
._150{margin-left:-45.106987pt;}
._12{margin-left:-43.946667pt;}
._50{margin-left:-43.038720pt;}
._51{margin-left:-41.955200pt;}
._49{margin-left:-40.640000pt;}
._13{margin-left:-39.712000pt;}
._4c{margin-left:-38.596480pt;}
._48{margin-left:-36.914987pt;}
._4f{margin-left:-35.655893pt;}
._42{margin-left:-34.012800pt;}
._45{margin-left:-32.744960pt;}
._2b{margin-left:-31.369600pt;}
._14d{margin-left:-30.141867pt;}
._35{margin-left:-28.169600pt;}
._151{margin-left:-27.220693pt;}
._4b{margin-left:-26.268160pt;}
._14f{margin-left:-25.153493pt;}
._4a{margin-left:-23.803520pt;}
._66{margin-left:-15.199360pt;}
._32{margin-left:-13.746133pt;}
._24{margin-left:-12.124800pt;}
._b{margin-left:-11.104000pt;}
._2d{margin-left:-9.976320pt;}
._23{margin-left:-8.321707pt;}
._29{margin-left:-7.173120pt;}
._33{margin-left:-6.162347pt;}
._25{margin-left:-4.855680pt;}
._27{margin-left:-3.132160pt;}
._81{margin-left:-2.019200pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.922667pt;}
._6{width:2.544000pt;}
._7{width:3.648000pt;}
._28{width:4.571307pt;}
._a{width:5.722667pt;}
._8{width:6.672000pt;}
._2e{width:8.150400pt;}
._30{width:9.044693pt;}
._5{width:12.384000pt;}
._3{width:14.256000pt;}
._2{width:15.216000pt;}
._4{width:17.392000pt;}
._9{width:22.944000pt;}
._c{width:28.224000pt;}
.fsa{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y4e{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:4.146667pt;}
.y123{bottom:5.746667pt;}
.y12e{bottom:5.760000pt;}
.y125{bottom:5.906667pt;}
.y12b{bottom:5.913333pt;}
.y132{bottom:5.920000pt;}
.y4d{bottom:14.240000pt;}
.y4c{bottom:15.840000pt;}
.y5c{bottom:16.986667pt;}
.y4b{bottom:17.280000pt;}
.y73{bottom:18.400000pt;}
.y4a{bottom:20.320000pt;}
.y130{bottom:25.600000pt;}
.y12a{bottom:25.748000pt;}
.y49{bottom:30.560000pt;}
.y5b{bottom:31.226667pt;}
.y72{bottom:34.400000pt;}
.y5a{bottom:45.306667pt;}
.ya{bottom:49.760000pt;}
.y75{bottom:50.240000pt;}
.y71{bottom:51.200000pt;}
.y48{bottom:54.080000pt;}
.y59{bottom:59.386667pt;}
.y9{bottom:63.872000pt;}
.y70{bottom:67.360000pt;}
.y58{bottom:70.746667pt;}
.y47{bottom:76.160000pt;}
.y8{bottom:77.952000pt;}
.yc2{bottom:81.792000pt;}
.y6f{bottom:84.320000pt;}
.y57{bottom:87.386667pt;}
.yf5{bottom:89.152000pt;}
.y10c{bottom:90.432000pt;}
.y7{bottom:92.032000pt;}
.y46{bottom:92.986667pt;}
.y12c{bottom:95.392000pt;}
.yd9{bottom:99.072000pt;}
.y6e{bottom:101.120000pt;}
.y56{bottom:101.466667pt;}
.y6{bottom:106.112000pt;}
.y96{bottom:112.032000pt;}
.y129{bottom:113.158667pt;}
.ya7{bottom:114.752000pt;}
.y55{bottom:115.546667pt;}
.y6d{bottom:117.280000pt;}
.y5{bottom:120.192000pt;}
.yc1{bottom:122.272000pt;}
.yf4{bottom:129.472000pt;}
.y54{bottom:129.626667pt;}
.y10b{bottom:130.592000pt;}
.y6c{bottom:134.080000pt;}
.y4{bottom:134.266667pt;}
.y95{bottom:136.346667pt;}
.yd8{bottom:139.386667pt;}
.y53{bottom:140.986667pt;}
.y3{bottom:148.346667pt;}
.y6b{bottom:150.240000pt;}
.y52{bottom:150.266667pt;}
.y128{bottom:153.640000pt;}
.ya6{bottom:155.066667pt;}
.y51{bottom:159.546667pt;}
.yc0{bottom:162.586667pt;}
.y6a{bottom:165.146667pt;}
.y44{bottom:165.786667pt;}
.yf3{bottom:169.946667pt;}
.y10a{bottom:171.066667pt;}
.y127{bottom:174.280000pt;}
.y50{bottom:175.066667pt;}
.y94{bottom:176.666667pt;}
.y69{bottom:179.226667pt;}
.ya5{bottom:179.386667pt;}
.yd7{bottom:179.706667pt;}
.y43{bottom:183.066667pt;}
.ybf{bottom:186.906667pt;}
.y68{bottom:193.306667pt;}
.yf2{bottom:194.266667pt;}
.y124{bottom:194.760000pt;}
.y109{bottom:195.386667pt;}
.y42{bottom:200.186667pt;}
.y67{bottom:207.386667pt;}
.ybe{bottom:211.226667pt;}
.y122{bottom:215.400000pt;}
.y93{bottom:217.146667pt;}
.y41{bottom:217.306667pt;}
.yf1{bottom:218.586667pt;}
.ya4{bottom:219.546667pt;}
.yd6{bottom:220.026667pt;}
.y66{bottom:221.466667pt;}
.y40{bottom:234.586667pt;}
.y65{bottom:235.546667pt;}
.y108{bottom:235.706667pt;}
.y92{bottom:241.466667pt;}
.yf0{bottom:242.906667pt;}
.y64{bottom:249.626667pt;}
.y3f{bottom:251.706667pt;}
.y121{bottom:259.226667pt;}
.ybd{bottom:259.866667pt;}
.ya3{bottom:260.026667pt;}
.yd5{bottom:260.506667pt;}
.y63{bottom:263.706667pt;}
.y143{bottom:263.866667pt;}
.y91{bottom:265.786667pt;}
.yef{bottom:267.226667pt;}
.y3e{bottom:268.986667pt;}
.y107{bottom:276.026667pt;}
.y62{bottom:277.786667pt;}
.ya2{bottom:284.386667pt;}
.y3d{bottom:286.146667pt;}
.yee{bottom:291.586667pt;}
.y61{bottom:291.866667pt;}
.y120{bottom:299.426667pt;}
.ybc{bottom:300.226667pt;}
.yd4{bottom:300.866667pt;}
.y60{bottom:303.226667pt;}
.y3c{bottom:303.426667pt;}
.y90{bottom:305.986667pt;}
.ya1{bottom:308.706667pt;}
.y106{bottom:316.546667pt;}
.y5f{bottom:320.026667pt;}
.y3b{bottom:320.546667pt;}
.y11f{bottom:323.746667pt;}
.ybb{bottom:324.546667pt;}
.yed{bottom:331.746667pt;}
.ya0{bottom:333.026667pt;}
.y142{bottom:333.986667pt;}
.y3a{bottom:334.626667pt;}
.y5e{bottom:335.546667pt;}
.y105{bottom:340.866667pt;}
.yd3{bottom:341.186667pt;}
.y5d{bottom:345.026667pt;}
.y8f{bottom:346.466667pt;}
.y39{bottom:353.346667pt;}
.y38{bottom:361.026667pt;}
.y11e{bottom:364.066667pt;}
.yba{bottom:364.866667pt;}
.y37{bottom:368.866667pt;}
.y8e{bottom:370.786667pt;}
.yec{bottom:372.226667pt;}
.y141{bottom:374.466667pt;}
.y36{bottom:376.706667pt;}
.y104{bottom:381.026667pt;}
.yd2{bottom:381.506667pt;}
.y35{bottom:384.546667pt;}
.y34{bottom:392.386667pt;}
.yeb{bottom:396.546667pt;}
.y140{bottom:398.786667pt;}
.y33{bottom:400.226667pt;}
.y11d{bottom:404.546667pt;}
.yb9{bottom:405.346667pt;}
.y32{bottom:408.066667pt;}
.y8d{bottom:410.946667pt;}
.y31{bottom:415.906667pt;}
.yea{bottom:420.866667pt;}
.y103{bottom:421.506667pt;}
.yd1{bottom:421.826667pt;}
.y13f{bottom:423.106667pt;}
.y30{bottom:423.586667pt;}
.y11c{bottom:428.866667pt;}
.yb8{bottom:429.666667pt;}
.y2f{bottom:431.266667pt;}
.y8c{bottom:435.426667pt;}
.y2e{bottom:438.946667pt;}
.ye9{bottom:445.186667pt;}
.y102{bottom:445.826667pt;}
.y2d{bottom:446.626667pt;}
.y13e{bottom:447.426667pt;}
.y11b{bottom:453.186667pt;}
.yb7{bottom:453.986667pt;}
.y2c{bottom:454.306667pt;}
.y2b{bottom:461.986667pt;}
.yd0{bottom:462.306667pt;}
.y8b{bottom:468.866667pt;}
.ye8{bottom:469.506667pt;}
.y2a{bottom:469.666667pt;}
.y101{bottom:470.146667pt;}
.y13d{bottom:471.746667pt;}
.y29{bottom:477.346667pt;}
.y11a{bottom:477.506667pt;}
.y28{bottom:485.026667pt;}
.y27{bottom:492.706667pt;}
.ye7{bottom:493.826667pt;}
.yb6{bottom:494.146667pt;}
.y13c{bottom:496.066667pt;}
.y8a{bottom:500.066667pt;}
.y26{bottom:500.226667pt;}
.ycf{bottom:502.626667pt;}
.y4f{bottom:503.906667pt;}
.y25{bottom:507.773333pt;}
.y100{bottom:510.493333pt;}
.y24{bottom:517.693333pt;}
.ye6{bottom:518.173333pt;}
.yb5{bottom:518.493333pt;}
.y13b{bottom:520.413333pt;}
.y1f{bottom:535.773333pt;}
.y23{bottom:539.453333pt;}
.y89{bottom:539.773333pt;}
.yce{bottom:543.133333pt;}
.y13a{bottom:544.733333pt;}
.yff{bottom:550.973333pt;}
.y1e{bottom:551.453333pt;}
.y119{bottom:558.173333pt;}
.y22{bottom:558.333333pt;}
.yb4{bottom:558.813333pt;}
.y88{bottom:561.853333pt;}
.y1d{bottom:567.133333pt;}
.y139{bottom:569.053333pt;}
.yfe{bottom:575.293333pt;}
.y21{bottom:577.053333pt;}
.y118{bottom:582.493333pt;}
.y1c{bottom:582.653333pt;}
.yb3{bottom:583.133333pt;}
.ycd{bottom:583.293333pt;}
.y87{bottom:584.093333pt;}
.y138{bottom:593.373333pt;}
.y20{bottom:595.773333pt;}
.y1b{bottom:598.333333pt;}
.ye5{bottom:598.813333pt;}
.y86{bottom:606.173333pt;}
.y117{bottom:606.813333pt;}
.yb2{bottom:607.453333pt;}
.y1a{bottom:614.013333pt;}
.yfd{bottom:615.453333pt;}
.y137{bottom:617.693333pt;}
.ye4{bottom:623.133333pt;}
.ycc{bottom:623.773333pt;}
.y85{bottom:628.253333pt;}
.y19{bottom:629.533333pt;}
.y116{bottom:631.133333pt;}
.y136{bottom:642.013333pt;}
.y18{bottom:645.213333pt;}
.yb0{bottom:647.773333pt;}
.yb1{bottom:648.093333pt;}
.y84{bottom:650.333333pt;}
.y115{bottom:655.453333pt;}
.yfc{bottom:655.933333pt;}
.y17{bottom:660.893333pt;}
.ye3{bottom:663.453333pt;}
.ycb{bottom:663.933333pt;}
.y135{bottom:666.333333pt;}
.yaf{bottom:672.093333pt;}
.y83{bottom:672.413333pt;}
.y114{bottom:679.773333pt;}
.y9f{bottom:680.253333pt;}
.ye2{bottom:687.773333pt;}
.y16{bottom:689.693333pt;}
.y134{bottom:690.653333pt;}
.y82{bottom:694.493333pt;}
.y113{bottom:704.093333pt;}
.yca{bottom:704.413333pt;}
.yfb{bottom:704.573333pt;}
.y15{bottom:710.653333pt;}
.ye1{bottom:712.093333pt;}
.yae{bottom:712.413333pt;}
.y81{bottom:716.573333pt;}
.y9e{bottom:720.573333pt;}
.y14{bottom:724.733333pt;}
.y112{bottom:728.453333pt;}
.yc9{bottom:728.773333pt;}
.y133{bottom:730.853333pt;}
.ye0{bottom:736.293333pt;}
.yad{bottom:736.773333pt;}
.y80{bottom:738.853333pt;}
.yfa{bottom:744.773333pt;}
.y13{bottom:752.933333pt;}
.ydf{bottom:760.773333pt;}
.y9d{bottom:761.093333pt;}
.y111{bottom:768.613333pt;}
.yc8{bottom:769.093333pt;}
.y7f{bottom:771.333333pt;}
.yac{bottom:777.093333pt;}
.yde{bottom:785.093333pt;}
.yf9{bottom:785.253333pt;}
.y9c{bottom:785.413333pt;}
.y12{bottom:789.253333pt;}
.y7e{bottom:798.533333pt;}
.yab{bottom:801.413333pt;}
.y110{bottom:809.093333pt;}
.yc7{bottom:809.413333pt;}
.ydd{bottom:809.573333pt;}
.y131{bottom:809.733333pt;}
.y7d{bottom:813.413333pt;}
.y11{bottom:816.453333pt;}
.yf8{bottom:825.573333pt;}
.y9b{bottom:825.733333pt;}
.y7c{bottom:830.213333pt;}
.y12f{bottom:830.373333pt;}
.y10f{bottom:833.413333pt;}
.ydc{bottom:833.733333pt;}
.yaa{bottom:841.733333pt;}
.y7b{bottom:847.173333pt;}
.yc6{bottom:849.893333pt;}
.y9a{bottom:850.053333pt;}
.y10e{bottom:857.733333pt;}
.y7a{bottom:863.653333pt;}
.y45{bottom:864.933333pt;}
.yf7{bottom:865.893333pt;}
.ya9{bottom:866.053333pt;}
.y12d{bottom:870.853333pt;}
.y10{bottom:873.253333pt;}
.ydb{bottom:874.053333pt;}
.yc5{bottom:874.213333pt;}
.y79{bottom:880.453333pt;}
.y10d{bottom:882.053333pt;}
.y99{bottom:890.213333pt;}
.ya8{bottom:890.373333pt;}
.yf{bottom:892.453333pt;}
.y78{bottom:897.413333pt;}
.yf6{bottom:906.373333pt;}
.ye{bottom:911.813333pt;}
.yc4{bottom:914.373333pt;}
.yda{bottom:914.533333pt;}
.y98{bottom:930.693333pt;}
.yd{bottom:931.173333pt;}
.y77{bottom:933.093333pt;}
.yc{bottom:950.533333pt;}
.yc3{bottom:954.880000pt;}
.y97{bottom:955.040000pt;}
.y76{bottom:958.240000pt;}
.yb{bottom:969.920000pt;}
.y74{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y1{bottom:1002.720000pt;}
.h11{height:3.412500pt;}
.h12{height:3.982500pt;}
.h10{height:17.915625pt;}
.ha{height:18.847500pt;}
.h26{height:19.826667pt;}
.h28{height:19.986667pt;}
.h7{height:22.776250pt;}
.hb{height:27.628404pt;}
.h8{height:33.562500pt;}
.h1{height:33.656250pt;}
.h9{height:37.246250pt;}
.h2c{height:39.666667pt;}
.h2b{height:39.833333pt;}
.hc{height:41.170000pt;}
.he{height:41.285000pt;}
.h27{height:41.882812pt;}
.h15{height:42.234375pt;}
.h2{height:44.875000pt;}
.h6{height:44.914687pt;}
.h18{height:49.336436pt;}
.h29{height:49.382812pt;}
.h17{height:50.062500pt;}
.h1c{height:51.376250pt;}
.h1a{height:51.577500pt;}
.h1b{height:51.807500pt;}
.h1f{height:54.154781pt;}
.h3{height:54.598989pt;}
.h1d{height:54.650312pt;}
.hf{height:56.093750pt;}
.h2a{height:56.422812pt;}
.h1e{height:57.210313pt;}
.h20{height:60.576250pt;}
.h24{height:61.295000pt;}
.h21{height:61.410000pt;}
.h23{height:61.856250pt;}
.h22{height:63.136250pt;}
.h5{height:63.722500pt;}
.h25{height:65.056250pt;}
.h13{height:65.781915pt;}
.h19{height:84.468750pt;}
.h4{height:98.672872pt;}
.hd{height:104.186667pt;}
.h14{height:187.706667pt;}
.h16{height:346.746667pt;}
.h0{height:1056.000000pt;}
.w4{width:60.946667pt;}
.w2{width:204.546667pt;}
.w6{width:273.457333pt;}
.w5{width:310.466667pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7d{left:3.200000pt;}
.xa{left:9.586667pt;}
.xf{left:15.680000pt;}
.x81{left:24.000000pt;}
.x75{left:26.720000pt;}
.x7f{left:42.870667pt;}
.x77{left:48.000000pt;}
.xb{left:58.404000pt;}
.x17{left:62.560000pt;}
.x1{left:67.200000pt;}
.x78{left:71.825333pt;}
.x4a{left:73.920000pt;}
.x76{left:85.001333pt;}
.x8{left:87.986667pt;}
.x80{left:89.265333pt;}
.x7c{left:90.225333pt;}
.x3a{left:92.192000pt;}
.x9{left:98.106667pt;}
.x79{left:101.306667pt;}
.x63{left:103.872000pt;}
.x42{left:104.832000pt;}
.x6{left:109.306667pt;}
.x2{left:114.432000pt;}
.x2b{left:115.552000pt;}
.x5b{left:116.992000pt;}
.x83{left:118.705333pt;}
.x6e{left:119.712000pt;}
.x2d{left:120.992000pt;}
.x29{left:126.432000pt;}
.x30{left:128.512000pt;}
.x71{left:134.426667pt;}
.x36{left:136.186667pt;}
.x24{left:138.586667pt;}
.x40{left:140.666667pt;}
.x7a{left:145.905333pt;}
.x84{left:149.946667pt;}
.x5{left:160.200000pt;}
.x60{left:168.666667pt;}
.x4e{left:170.266667pt;}
.x16{left:180.666667pt;}
.x7b{left:182.906667pt;}
.x27{left:187.546667pt;}
.x2a{left:191.546667pt;}
.xc{left:195.062667pt;}
.x31{left:198.912000pt;}
.x86{left:201.626667pt;}
.x41{left:208.666667pt;}
.x32{left:225.946667pt;}
.x50{left:228.986667pt;}
.x7{left:241.786667pt;}
.x85{left:246.105333pt;}
.x4d{left:263.906667pt;}
.x7e{left:278.466667pt;}
.x82{left:279.906667pt;}
.xd{left:291.906667pt;}
.x4{left:302.946667pt;}
.x59{left:305.826667pt;}
.x22{left:307.106667pt;}
.x28{left:309.506667pt;}
.x54{left:324.386667pt;}
.x89{left:326.880000pt;}
.x72{left:336.866667pt;}
.x55{left:359.266667pt;}
.x35{left:370.466667pt;}
.x51{left:373.026667pt;}
.x25{left:395.586667pt;}
.x57{left:402.752000pt;}
.x13{left:404.386667pt;}
.x49{left:406.786667pt;}
.x2f{left:410.146667pt;}
.x11{left:413.666667pt;}
.x56{left:418.626667pt;}
.x12{left:422.786667pt;}
.x1a{left:426.493333pt;}
.x48{left:428.893333pt;}
.x4c{left:434.653333pt;}
.x70{left:440.160000pt;}
.x5c{left:442.493333pt;}
.x3c{left:446.333333pt;}
.x23{left:452.413333pt;}
.x8b{left:454.653333pt;}
.xe{left:458.146667pt;}
.x62{left:465.693333pt;}
.x8a{left:469.760000pt;}
.x10{left:473.373333pt;}
.x64{left:480.573333pt;}
.x73{left:489.373333pt;}
.x34{left:495.453333pt;}
.x15{left:506.813333pt;}
.x6f{left:510.493333pt;}
.x14{left:519.133333pt;}
.x53{left:524.733333pt;}
.x5a{left:534.013333pt;}
.x58{left:539.773333pt;}
.x61{left:544.573333pt;}
.x4f{left:547.453333pt;}
.x1b{left:559.453333pt;}
.x37{left:563.773333pt;}
.x6b{left:575.386667pt;}
.x3d{left:578.653333pt;}
.x18{left:586.173333pt;}
.x5e{left:588.733333pt;}
.x6d{left:599.813333pt;}
.x2c{left:600.773333pt;}
.x39{left:608.293333pt;}
.x68{left:615.173333pt;}
.x26{left:618.053333pt;}
.x47{left:619.493333pt;}
.x43{left:623.813333pt;}
.x4b{left:626.853333pt;}
.x67{left:631.973333pt;}
.x6c{left:637.093333pt;}
.x5f{left:643.333333pt;}
.x33{left:645.573333pt;}
.x44{left:649.093333pt;}
.x5d{left:654.853333pt;}
.x1f{left:658.053333pt;}
.x1e{left:662.693333pt;}
.x74{left:670.213333pt;}
.x52{left:677.093333pt;}
.x21{left:678.053333pt;}
.x2e{left:681.952000pt;}
.x66{left:689.733333pt;}
.x38{left:693.733333pt;}
.x65{left:703.813333pt;}
.x87{left:705.573333pt;}
.x69{left:707.653333pt;}
.x19{left:710.853333pt;}
.x20{left:714.373333pt;}
.x45{left:716.293333pt;}
.x3b{left:718.373333pt;}
.x6a{left:723.013333pt;}
.x3e{left:724.933333pt;}
.x8c{left:728.773333pt;}
.x88{left:729.893333pt;}
.x3f{left:731.013333pt;}
.x8d{left:740.293333pt;}
.x46{left:741.413333pt;}
.x1c{left:743.173333pt;}
.x1d{left:744.933333pt;}
.x3{left:748.933333pt;}
}




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