
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_9083fd183ec7183743d1cf9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9e6d9eeadda49f1a4e39a7d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_df4b476ddc9f690162a6f5da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2af282204f78540a1fcda335.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_04652bacbe36187a8dcc0de3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_19f4e1f6a15244c31f87f6d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_85dafa8e4e0a4b7b5eff55dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e5ca4c10a08a9f787831c70f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_93a3a1b6545f8718a21af3f6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.783691;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_759761d1b143a416aed936ed.woff2')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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dfb07bbbb3f893e49f53b807.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.110352;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_e633c578c5950036feca9b30.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.110352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-84.360000px;}
.v7{vertical-align:-55.320000px;}
.v6{vertical-align:-53.700000px;}
.v2{vertical-align:-39.900000px;}
.v1{vertical-align:-33.660000px;}
.v4{vertical-align:-30.660000px;}
.v3{vertical-align:-16.860000px;}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-2.160000px;}
.ls3f{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.546000px;}
.ls42{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.240600px;}
.ls5{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.091200px;}
.lsb{letter-spacing:-0.085200px;}
.ls27{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls30{letter-spacing:-0.041760px;}
.ls20{letter-spacing:-0.018000px;}
.ls4{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000001px;}
.ls1e{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.060600px;}
.ls3d{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.126000px;}
.ls2e{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.174240px;}
.ls36{letter-spacing:0.177840px;}
.ls39{letter-spacing:0.214560px;}
.ls1c{letter-spacing:0.241800px;}
.ls34{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.306000px;}
.ls2{letter-spacing:0.318240px;}
.ls32{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.900000px;}
.ls29{letter-spacing:2.880000px;}
.ls1a{letter-spacing:5.040000px;}
.ls18{letter-spacing:5.760000px;}
.ls1{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.lse{letter-spacing:13.680000px;}
.ls19{letter-spacing:13.800000px;}
.ls16{letter-spacing:15.840000px;}
.lsa{letter-spacing:17.280000px;}
.ls44{letter-spacing:19.440000px;}
.ls28{letter-spacing:20.160000px;}
.ls2c{letter-spacing:22.320000px;}
.ls3b{letter-spacing:23.760000px;}
.ls3c{letter-spacing:28.944000px;}
.ls25{letter-spacing:29.520000px;}
.lsf{letter-spacing:33.240000px;}
.ls13{letter-spacing:33.264000px;}
.ls23{letter-spacing:48.960000px;}
.ls43{letter-spacing:55.584000px;}
.ls26{letter-spacing:56.880000px;}
.ls3a{letter-spacing:64.026720px;}
.ls31{letter-spacing:84.330720px;}
.ls3e{letter-spacing:90.864000px;}
.ls11{letter-spacing:95.184000px;}
.ls37{letter-spacing:100.026720px;}
.ls33{letter-spacing:106.506720px;}
.ls35{letter-spacing:117.306720px;}
.ls10{letter-spacing:126.090720px;}
.ls41{letter-spacing:135.504000px;}
.ls9{letter-spacing:159.264000px;}
.ls7{letter-spacing:168.570720px;}
.ls2d{letter-spacing:237.582000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.387360px;}
.ws1f{word-spacing:-16.200000px;}
.ws20{word-spacing:-15.984000px;}
.ws1e{word-spacing:-15.912000px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.552000px;}
.ws1d{word-spacing:-13.811760px;}
.ws15{word-spacing:-13.646160px;}
.ws2{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.ws1c{word-spacing:-13.265160px;}
.wsa{word-spacing:-12.222000px;}
.wse{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.186000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:59.280000px;}
.ws14{word-spacing:76.902000px;}
.wsb{word-spacing:100.242000px;}
.wsc{word-spacing:100.344000px;}
.ws1b{word-spacing:101.382000px;}
.ws12{word-spacing:169.950000px;}
.ws13{word-spacing:170.694000px;}
.ws10{word-spacing:205.722000px;}
.ws1a{word-spacing:251.358000px;}
.ws17{word-spacing:251.754000px;}
.ws19{word-spacing:279.114000px;}
.ws18{word-spacing:279.174000px;}
.wsf{word-spacing:426.174000px;}
.ws8{word-spacing:511.175040px;}
.ws11{word-spacing:636.096000px;}
._f{margin-left:-3.826560px;}
._9{margin-left:-2.502720px;}
._0{margin-left:-1.457280px;}
._1{width:1.272000px;}
._6{width:2.544000px;}
._1b{width:3.600000px;}
._1a{width:4.752000px;}
._a{width:6.318711px;}
._3{width:7.793289px;}
._2{width:9.119997px;}
._14{width:10.464003px;}
._7{width:11.880000px;}
._8{width:12.984000px;}
._12{width:14.184000px;}
._15{width:17.496000px;}
._18{width:18.600000px;}
._25{width:19.793280px;}
._11{width:21.600000px;}
._10{width:22.968000px;}
._b{width:24.912000px;}
._1f{width:26.640000px;}
._c{width:28.368000px;}
._19{width:29.592000px;}
._5{width:31.176000px;}
._4{width:32.688000px;}
._27{width:33.804000px;}
._28{width:35.784000px;}
._1e{width:36.953280px;}
._e{width:38.232000px;}
._d{width:39.960000px;}
._31{width:41.184000px;}
._33{width:42.552000px;}
._26{width:43.560000px;}
._23{width:45.360000px;}
._24{width:47.292000px;}
._16{width:49.320000px;}
._17{width:50.472000px;}
._20{width:51.912000px;}
._13{width:54.648000px;}
._30{width:55.745280px;}
._2c{width:56.784000px;}
._4c{width:58.548000px;}
._4b{width:59.760000px;}
._4f{width:62.568000px;}
._3a{width:64.008000px;}
._1c{width:66.384000px;}
._1d{width:67.536000px;}
._37{width:68.568000px;}
._21{width:70.430400px;}
._3e{width:71.585280px;}
._32{width:72.792000px;}
._38{width:74.328000px;}
._3b{width:75.672000px;}
._39{width:77.616000px;}
._3f{width:91.008000px;}
._44{width:108.936000px;}
._41{width:110.160000px;}
._45{width:111.372000px;}
._22{width:113.760000px;}
._36{width:116.436000px;}
._2d{width:122.021280px;}
._43{width:123.636000px;}
._42{width:125.280000px;}
._34{width:128.280000px;}
._35{width:135.312000px;}
._3c{width:156.624000px;}
._3d{width:157.764000px;}
._48{width:182.592000px;}
._49{width:183.653280px;}
._40{width:184.896000px;}
._4a{width:188.520000px;}
._47{width:215.784000px;}
._29{width:220.248000px;}
._2a{width:224.536560px;}
._2b{width:272.292000px;}
._46{width:309.816000px;}
._2e{width:415.043280px;}
._4e{width:462.888000px;}
._4d{width:578.844000px;}
._2f{width:2466.456009px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc7{color:rgb(217,217,217);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fs9{font-size:2.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y136{bottom:3.240000px;}
.y112{bottom:15.405000px;}
.y164{bottom:17.670000px;}
.yb6{bottom:17.715000px;}
.yeb{bottom:17.745000px;}
.y6{bottom:21.240000px;}
.y111{bottom:40.710000px;}
.y190{bottom:44.745000px;}
.yb4{bottom:47.310000px;}
.y160{bottom:47.595000px;}
.y5{bottom:54.396000px;}
.y18f{bottom:61.305000px;}
.yac{bottom:64.875000px;}
.y110{bottom:70.635000px;}
.y4{bottom:75.636000px;}
.y18b{bottom:78.195000px;}
.y15e{bottom:79.920000px;}
.y161{bottom:80.670000px;}
.ya8{bottom:82.440000px;}
.y107{bottom:88.170000px;}
.yab{bottom:90.465000px;}
.y36{bottom:95.256000px;}
.ya7{bottom:100.875000px;}
.ye4{bottom:106.305000px;}
.y1e7{bottom:106.416000px;}
.y15f{bottom:110.985000px;}
.y162{bottom:111.750000px;}
.y35{bottom:113.436000px;}
.y14e{bottom:113.796000px;}
.y134{bottom:113.976000px;}
.y18c{bottom:116.565000px;}
.y196{bottom:118.335000px;}
.y108{bottom:121.860000px;}
.y1b2{bottom:122.796000px;}
.ye3{bottom:122.865000px;}
.y193{bottom:122.940000px;}
.y1ea{bottom:126.576000px;}
.yaa{bottom:126.750000px;}
.y1e6{bottom:130.716000px;}
.yad{bottom:131.610000px;}
.y34{bottom:131.796000px;}
.ya3{bottom:132.336000px;}
.yce{bottom:133.236000px;}
.y14d{bottom:138.096000px;}
.y192{bottom:145.185000px;}
.y1c7{bottom:145.836000px;}
.y1b1{bottom:146.916000px;}
.y33{bottom:150.150000px;}
.y195{bottom:150.555000px;}
.ye1{bottom:150.690000px;}
.y1e9{bottom:150.870000px;}
.y1e3{bottom:152.850000px;}
.y1e5{bottom:154.830000px;}
.y18d{bottom:154.950000px;}
.y109{bottom:155.520000px;}
.ycd{bottom:158.070000px;}
.y133{bottom:161.130000px;}
.y14c{bottom:162.390000px;}
.y194{bottom:168.225000px;}
.y67{bottom:168.510000px;}
.y32{bottom:169.050000px;}
.y1c6{bottom:169.950000px;}
.y1b0{bottom:171.210000px;}
.y12d{bottom:171.570000px;}
.y1a1{bottom:175.170000px;}
.y1e2{bottom:177.150000px;}
.y191{bottom:178.560000px;}
.y1e4{bottom:179.130000px;}
.ycc{bottom:181.830000px;}
.ye0{bottom:183.990000px;}
.y132{bottom:185.430000px;}
.y14b{bottom:186.510000px;}
.y66{bottom:186.690000px;}
.y19f{bottom:187.230000px;}
.y10a{bottom:189.180000px;}
.ya6{bottom:190.290000px;}
.y18e{bottom:193.320000px;}
.y1c5{bottom:194.250000px;}
.y1af{bottom:195.510000px;}
.y12c{bottom:195.870000px;}
.ya2{bottom:198.210000px;}
.yae{bottom:198.360000px;}
.y31{bottom:199.470000px;}
.y1e1{bottom:201.450000px;}
.y8a{bottom:203.430000px;}
.y30{bottom:203.970000px;}
.y65{bottom:205.050000px;}
.ydf{bottom:208.290000px;}
.y131{bottom:209.730000px;}
.y14a{bottom:210.810000px;}
.ycb{bottom:216.930000px;}
.y163{bottom:217.620000px;}
.y1c4{bottom:218.550000px;}
.y1a0{bottom:219.630000px;}
.y1ae{bottom:219.810000px;}
.y12b{bottom:220.170000px;}
.ya1{bottom:222.510000px;}
.y10b{bottom:222.870000px;}
.y189{bottom:223.410000px;}
.y2f{bottom:223.590000px;}
.y64{bottom:223.950000px;}
.y1e0{bottom:225.750000px;}
.y89{bottom:227.730000px;}
.y130{bottom:230.070000px;}
.yde{bottom:232.590000px;}
.y149{bottom:235.110000px;}
.yca{bottom:241.230000px;}
.y188{bottom:241.590000px;}
.y1c3{bottom:242.850000px;}
.y1ad{bottom:244.110000px;}
.y12a{bottom:244.290000px;}
.ya0{bottom:246.810000px;}
.y2e{bottom:247.890000px;}
.y1df{bottom:250.050000px;}
.y63{bottom:250.950000px;}
.y88{bottom:252.030000px;}
.ye6{bottom:253.515000px;}
.y10c{bottom:256.530000px;}
.ydd{bottom:256.890000px;}
.y148{bottom:259.410000px;}
.y187{bottom:259.950000px;}
.y105{bottom:261.690000px;}
.yaf{bottom:265.110000px;}
.yc9{bottom:265.350000px;}
.y15c{bottom:266.070000px;}
.y1c2{bottom:267.150000px;}
.y1ac{bottom:268.410000px;}
.y129{bottom:268.590000px;}
.ye5{bottom:270.075000px;}
.y9f{bottom:270.930000px;}
.y2d{bottom:272.190000px;}
.y1de{bottom:274.350000px;}
.y62{bottom:275.250000px;}
.y87{bottom:276.330000px;}
.y186{bottom:278.310000px;}
.ydc{bottom:281.190000px;}
.y147{bottom:283.755000px;}
.y1ab{bottom:288.615000px;}
.yc8{bottom:289.695000px;}
.y10d{bottom:290.190000px;}
.y15b{bottom:290.415000px;}
.y1c1{bottom:291.315000px;}
.y128{bottom:292.935000px;}
.y9e{bottom:295.275000px;}
.y2c{bottom:296.535000px;}
.y185{bottom:297.255000px;}
.y1dd{bottom:298.515000px;}
.y104{bottom:298.905000px;}
.y61{bottom:299.595000px;}
.y86{bottom:300.495000px;}
.ydb{bottom:305.355000px;}
.ye8{bottom:307.260000px;}
.y102{bottom:307.695000px;}
.y146{bottom:307.875000px;}
.yea{bottom:309.885000px;}
.y106{bottom:313.770000px;}
.yc7{bottom:313.995000px;}
.y15a{bottom:314.535000px;}
.y1c0{bottom:315.615000px;}
.y127{bottom:317.235000px;}
.y9d{bottom:319.575000px;}
.y2b{bottom:320.835000px;}
.y1dc{bottom:322.815000px;}
.ye7{bottom:323.820000px;}
.y10e{bottom:323.850000px;}
.y5f{bottom:323.895000px;}
.y85{bottom:324.795000px;}
.ye9{bottom:326.445000px;}
.y60{bottom:328.395000px;}
.yda{bottom:329.655000px;}
.yb0{bottom:331.845000px;}
.y101{bottom:331.995000px;}
.y145{bottom:332.175000px;}
.y184{bottom:334.875000px;}
.yc6{bottom:338.295000px;}
.y159{bottom:338.835000px;}
.y1bf{bottom:339.915000px;}
.y126{bottom:341.535000px;}
.y9c{bottom:343.875000px;}
.y2a{bottom:345.135000px;}
.y1db{bottom:347.115000px;}
.y5e{bottom:348.195000px;}
.y84{bottom:349.095000px;}
.yd9{bottom:353.955000px;}
.y100{bottom:356.295000px;}
.y144{bottom:356.475000px;}
.y10f{bottom:357.555000px;}
.y182{bottom:359.175000px;}
.yc4{bottom:362.595000px;}
.ya9{bottom:362.775000px;}
.y158{bottom:363.135000px;}
.y183{bottom:363.675000px;}
.y1be{bottom:364.215000px;}
.y125{bottom:365.835000px;}
.yc5{bottom:367.095000px;}
.y9b{bottom:368.175000px;}
.y29{bottom:369.255000px;}
.y1da{bottom:371.415000px;}
.y5d{bottom:372.315000px;}
.y83{bottom:373.395000px;}
.yd8{bottom:378.255000px;}
.yff{bottom:380.415000px;}
.y143{bottom:380.775000px;}
.y181{bottom:383.475000px;}
.yc3{bottom:386.895000px;}
.y157{bottom:387.435000px;}
.y1bd{bottom:388.515000px;}
.y124{bottom:389.955000px;}
.y99{bottom:392.475000px;}
.y28{bottom:393.555000px;}
.y123{bottom:394.455000px;}
.y1d9{bottom:395.715000px;}
.y5c{bottom:396.615000px;}
.y9a{bottom:396.975000px;}
.y82{bottom:397.695000px;}
.yb1{bottom:398.595000px;}
.yd7{bottom:402.555000px;}
.yfe{bottom:404.715000px;}
.y142{bottom:405.075000px;}
.y180{bottom:407.595000px;}
.yc2{bottom:411.015000px;}
.y156{bottom:411.735000px;}
.y1bc{bottom:412.815000px;}
.y122{bottom:414.255000px;}
.y98{bottom:416.595000px;}
.y27{bottom:417.855000px;}
.y1d8{bottom:419.835000px;}
.y5b{bottom:420.915000px;}
.y81{bottom:421.995000px;}
.y199{bottom:426.495000px;}
.yd6{bottom:426.855000px;}
.yfd{bottom:429.015000px;}
.y141{bottom:429.375000px;}
.y17f{bottom:431.895000px;}
.y1bb{bottom:432.975000px;}
.yc1{bottom:435.315000px;}
.y155{bottom:435.855000px;}
.y121{bottom:438.555000px;}
.y97{bottom:440.895000px;}
.y26{bottom:442.155000px;}
.y1d7{bottom:444.135000px;}
.y5a{bottom:445.215000px;}
.y80{bottom:446.115000px;}
.yd4{bottom:450.975000px;}
.yfc{bottom:453.315000px;}
.y140{bottom:453.495000px;}
.yd5{bottom:455.475000px;}
.y17d{bottom:456.195000px;}
.yc0{bottom:459.615000px;}
.y154{bottom:460.155000px;}
.y17e{bottom:460.695000px;}
.y120{bottom:462.855000px;}
.y96{bottom:465.195000px;}
.yb2{bottom:465.375000px;}
.y24{bottom:466.455000px;}
.y1d6{bottom:468.435000px;}
.y58{bottom:469.515000px;}
.y7f{bottom:470.415000px;}
.y25{bottom:470.955000px;}
.y59{bottom:474.015000px;}
.y19d{bottom:474.915000px;}
.yd3{bottom:475.275000px;}
.yfb{bottom:477.615000px;}
.y13f{bottom:477.795000px;}
.y17c{bottom:480.495000px;}
.ybf{bottom:483.915000px;}
.y153{bottom:484.455000px;}
.ya5{bottom:486.930000px;}
.y11f{bottom:487.155000px;}
.y95{bottom:489.495000px;}
.y23{bottom:490.755000px;}
.y1d5{bottom:492.735000px;}
.y57{bottom:493.635000px;}
.y7e{bottom:494.715000px;}
.yd2{bottom:499.575000px;}
.yfa{bottom:501.915000px;}
.y13e{bottom:502.095000px;}
.y17b{bottom:504.795000px;}
.ybe{bottom:508.215000px;}
.y152{bottom:508.755000px;}
.y11e{bottom:511.455000px;}
.y151{bottom:513.255000px;}
.y93{bottom:513.795000px;}
.y22{bottom:514.875000px;}
.y1d4{bottom:517.035000px;}
.y56{bottom:517.935000px;}
.y94{bottom:518.295000px;}
.y7d{bottom:519.015000px;}
.yd1{bottom:519.735000px;}
.ye2{bottom:520.740000px;}
.yf9{bottom:526.035000px;}
.y13d{bottom:526.395000px;}
.y179{bottom:528.915000px;}
.yb5{bottom:528.945000px;}
.yb3{bottom:532.110000px;}
.ybd{bottom:532.515000px;}
.y150{bottom:533.055000px;}
.y17a{bottom:533.415000px;}
.y11d{bottom:535.575000px;}
.y92{bottom:537.915000px;}
.y21{bottom:539.175000px;}
.y1d3{bottom:541.335000px;}
.y55{bottom:542.235000px;}
.y7c{bottom:543.315000px;}
.yf7{bottom:550.335000px;}
.y13c{bottom:550.695000px;}
.y1aa{bottom:552.315000px;}
.y14f{bottom:553.215000px;}
.y15d{bottom:554.220000px;}
.yf8{bottom:554.835000px;}
.ybc{bottom:556.635000px;}
.y11c{bottom:559.875000px;}
.y91{bottom:562.215000px;}
.y20{bottom:563.475000px;}
.y1d2{bottom:565.485000px;}
.y53{bottom:566.565000px;}
.y7b{bottom:567.465000px;}
.y54{bottom:571.065000px;}
.yf6{bottom:574.665000px;}
.y13b{bottom:575.025000px;}
.y1a9{bottom:576.645000px;}
.y178{bottom:577.545000px;}
.ybb{bottom:580.965000px;}
.y11a{bottom:584.205000px;}
.y90{bottom:586.545000px;}
.y1f{bottom:587.805000px;}
.y11b{bottom:588.705000px;}
.y1d1{bottom:589.785000px;}
.y52{bottom:590.865000px;}
.y7a{bottom:591.765000px;}
.yf5{bottom:598.965000px;}
.y13a{bottom:599.145000px;}
.y1a8{bottom:600.945000px;}
.y177{bottom:601.845000px;}
.yb9{bottom:605.265000px;}
.y8f{bottom:606.705000px;}
.ya4{bottom:606.960000px;}
.y119{bottom:608.505000px;}
.yba{bottom:609.765000px;}
.y1e{bottom:612.105000px;}
.y1d0{bottom:614.085000px;}
.y51{bottom:615.165000px;}
.y79{bottom:616.065000px;}
.y19e{bottom:620.565000px;}
.yf4{bottom:623.265000px;}
.y139{bottom:623.445000px;}
.y1a7{bottom:625.065000px;}
.y176{bottom:626.145000px;}
.yb8{bottom:629.565000px;}
.y118{bottom:632.805000px;}
.y1d{bottom:636.225000px;}
.y1cf{bottom:638.385000px;}
.y50{bottom:639.285000px;}
.y78{bottom:640.365000px;}
.yf3{bottom:647.385000px;}
.y138{bottom:647.745000px;}
.y1a6{bottom:649.365000px;}
.yb7{bottom:649.905000px;}
.y174{bottom:650.445000px;}
.y175{bottom:654.945000px;}
.y117{bottom:656.925000px;}
.y1c{bottom:660.525000px;}
.y1ce{bottom:662.685000px;}
.y4e{bottom:663.585000px;}
.y77{bottom:664.665000px;}
.y4f{bottom:668.085000px;}
.y198{bottom:669.165000px;}
.yf2{bottom:671.685000px;}
.y137{bottom:672.045000px;}
.y1a5{bottom:673.665000px;}
.y173{bottom:674.565000px;}
.y116{bottom:681.225000px;}
.y1a{bottom:684.825000px;}
.y1cd{bottom:686.985000px;}
.y4d{bottom:687.885000px;}
.y76{bottom:688.965000px;}
.y1b{bottom:689.325000px;}
.y135{bottom:689.865000px;}
.y19c{bottom:693.465000px;}
.yf1{bottom:695.985000px;}
.y12f{bottom:696.885000px;}
.y1a4{bottom:697.965000px;}
.y172{bottom:698.865000px;}
.y115{bottom:705.525000px;}
.y19{bottom:709.125000px;}
.y1cc{bottom:711.105000px;}
.y4c{bottom:712.185000px;}
.y75{bottom:713.085000px;}
.y12e{bottom:717.225000px;}
.y1ba{bottom:719.925000px;}
.yef{bottom:720.285000px;}
.y1a3{bottom:722.265000px;}
.y170{bottom:723.165000px;}
.yf0{bottom:724.785000px;}
.y171{bottom:727.665000px;}
.y114{bottom:729.825000px;}
.y18{bottom:733.425000px;}
.y1cb{bottom:735.405000px;}
.y4b{bottom:736.485000px;}
.y74{bottom:737.385000px;}
.y8e{bottom:741.885000px;}
.y1a2{bottom:742.425000px;}
.y1b9{bottom:744.225000px;}
.yee{bottom:744.585000px;}
.y16f{bottom:747.465000px;}
.y113{bottom:749.985000px;}
.y17{bottom:757.725000px;}
.y1ca{bottom:759.705000px;}
.y49{bottom:760.785000px;}
.y73{bottom:761.685000px;}
.y4a{bottom:765.285000px;}
.y1b8{bottom:768.525000px;}
.yed{bottom:768.885000px;}
.y16d{bottom:771.765000px;}
.y16e{bottom:776.265000px;}
.y16{bottom:781.845000px;}
.y1e8{bottom:783.105000px;}
.y1c9{bottom:784.005000px;}
.y48{bottom:784.905000px;}
.y72{bottom:785.985000px;}
.yec{bottom:789.045000px;}
.y103{bottom:789.300000px;}
.y8d{bottom:790.485000px;}
.y1b7{bottom:792.825000px;}
.y16c{bottom:795.885000px;}
.y15{bottom:806.145000px;}
.y1c8{bottom:808.125000px;}
.y47{bottom:809.205000px;}
.y70{bottom:810.285000px;}
.y71{bottom:814.785000px;}
.y1b6{bottom:816.945000px;}
.y16b{bottom:820.185000px;}
.y14{bottom:830.445000px;}
.y46{bottom:833.505000px;}
.y6f{bottom:834.585000px;}
.y1b5{bottom:841.245000px;}
.y16a{bottom:844.485000px;}
.y13{bottom:854.790000px;}
.y44{bottom:857.850000px;}
.y6e{bottom:858.750000px;}
.y45{bottom:862.350000px;}
.y19b{bottom:863.250000px;}
.y1b4{bottom:865.590000px;}
.y169{bottom:868.830000px;}
.y12{bottom:879.090000px;}
.y43{bottom:882.150000px;}
.y6d{bottom:883.050000px;}
.y1b3{bottom:885.750000px;}
.y167{bottom:893.130000px;}
.y168{bottom:897.630000px;}
.y11{bottom:903.390000px;}
.y42{bottom:906.270000px;}
.y6c{bottom:907.350000px;}
.y166{bottom:917.430000px;}
.y10{bottom:927.510000px;}
.y41{bottom:930.570000px;}
.y6a{bottom:931.650000px;}
.y6b{bottom:936.150000px;}
.y165{bottom:937.590000px;}
.y18a{bottom:939.240000px;}
.yf{bottom:951.810000px;}
.y40{bottom:954.870000px;}
.y69{bottom:955.950000px;}
.y19a{bottom:960.450000px;}
.ye{bottom:976.110000px;}
.y3f{bottom:978.990000px;}
.y68{bottom:980.070000px;}
.y8c{bottom:984.570000px;}
.yd{bottom:1000.410000px;}
.y3e{bottom:1004.370000px;}
.y3d{bottom:1008.870000px;}
.yc{bottom:1024.710000px;}
.y3c{bottom:1028.670000px;}
.yb{bottom:1048.830000px;}
.y3b{bottom:1052.970000px;}
.y197{bottom:1057.470000px;}
.ya{bottom:1073.130000px;}
.y3a{bottom:1077.270000px;}
.yd0{bottom:1081.770000px;}
.y9{bottom:1097.430000px;}
.y39{bottom:1101.570000px;}
.y8b{bottom:1106.070000px;}
.y8{bottom:1121.730000px;}
.y38{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y37{bottom:1150.020000px;}
.ycf{bottom:1154.520000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.h15{height:2.505938px;}
.h6{height:36.720000px;}
.hc{height:40.843828px;}
.h9{height:41.974453px;}
.h2{height:48.138750px;}
.he{height:53.709961px;}
.hf{height:53.853187px;}
.ha{height:59.439023px;}
.h3{height:60.960938px;}
.h4{height:62.648438px;}
.h19{height:64.230469px;}
.h7{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:71.324297px;}
.hb{height:74.004654px;}
.h18{height:74.953125px;}
.h11{height:80.923008px;}
.h10{height:83.787539px;}
.h17{height:227.880000px;}
.h16{height:248.940000px;}
.h13{height:377.820000px;}
.h12{height:379.440000px;}
.h14{height:403.770000px;}
.hd{height:560.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:24.660000px;}
.w5{width:643.500000px;}
.w7{width:648.000000px;}
.w6{width:649.620000px;}
.wa{width:699.840000px;}
.w8{width:700.170000px;}
.w9{width:704.340000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:9.540000px;}
.x37{left:16.344000px;}
.x36{left:30.030000px;}
.x49{left:36.930000px;}
.x39{left:64.260000px;}
.x4a{left:66.090000px;}
.x76{left:67.425000px;}
.x30{left:75.930000px;}
.x75{left:81.105000px;}
.x56{left:83.775000px;}
.x4{left:84.959987px;}
.x53{left:90.900000px;}
.x12{left:92.519987px;}
.x5a{left:98.315987px;}
.x1e{left:100.115987px;}
.x33{left:107.925000px;}
.x25{left:111.995987px;}
.x77{left:121.830000px;}
.x24{left:125.495987px;}
.xb{left:127.475987px;}
.x54{left:131.835000px;}
.x10{left:134.135987px;}
.x62{left:140.795987px;}
.x4e{left:147.750000px;}
.x57{left:149.580000px;}
.x7b{left:152.205000px;}
.x3c{left:155.729973px;}
.x58{left:160.589973px;}
.x4b{left:162.150000px;}
.x3d{left:169.049987px;}
.x5b{left:172.289973px;}
.x59{left:173.909987px;}
.x5c{left:185.609987px;}
.x20{left:187.769973px;}
.x4c{left:189.870000px;}
.x63{left:192.600000px;}
.x6{left:198.389987px;}
.x21{left:201.089987px;}
.x66{left:203.115000px;}
.x6d{left:205.769973px;}
.x28{left:213.509987px;}
.x6e{left:219.089987px;}
.x31{left:223.815000px;}
.x3a{left:229.785000px;}
.x7c{left:238.710000px;}
.x4d{left:242.025000px;}
.x7e{left:254.730000px;}
.x34{left:255.855000px;}
.x95{left:257.609973px;}
.x96{left:261.209973px;}
.x94{left:272.729973px;}
.x55{left:275.655000px;}
.x51{left:277.949973px;}
.x1c{left:286.229973px;}
.x52{left:291.269987px;}
.x78{left:292.785000px;}
.x17{left:293.834973px;}
.x1d{left:299.594987px;}
.x11{left:301.034987px;}
.x4f{left:302.294973px;}
.xc{left:305.174973px;}
.x67{left:308.550000px;}
.xd{left:311.834987px;}
.x50{left:315.614987px;}
.x88{left:330.914973px;}
.x6b{left:335.594973px;}
.x89{left:344.234987px;}
.xe{left:345.674973px;}
.x6c{left:348.914987px;}
.xf{left:352.334987px;}
.x73{left:357.734973px;}
.x18{left:368.174973px;}
.x69{left:369.614973px;}
.x74{left:371.054987px;}
.x19{left:374.834987px;}
.x79{left:376.590000px;}
.x6a{left:382.934987px;}
.x81{left:384.734987px;}
.x7a{left:390.450000px;}
.x35{left:403.740000px;}
.x7d{left:415.185000px;}
.x64{left:417.210000px;}
.x5{left:434.235000px;}
.x65{left:439.995000px;}
.xa{left:447.014987px;}
.x3e{left:452.954973px;}
.x6f{left:456.914973px;}
.x15{left:457.994973px;}
.x16{left:464.654987px;}
.x3f{left:466.274987px;}
.x70{left:470.234987px;}
.x8e{left:484.454973px;}
.x9{left:486.254987px;}
.x2e{left:498.164973px;}
.x48{left:508.395000px;}
.x60{left:509.864973px;}
.x2f{left:511.484987px;}
.x32{left:516.210000px;}
.x47{left:522.615000px;}
.x8{left:529.484987px;}
.x8a{left:532.364973px;}
.x2{left:539.744987px;}
.x8b{left:545.684987px;}
.x42{left:551.984973px;}
.x40{left:555.044973px;}
.x82{left:557.384973px;}
.x7{left:562.784987px;}
.x43{left:565.304987px;}
.x41{left:568.364987px;}
.x83{left:570.704987px;}
.x71{left:574.304973px;}
.x8f{left:581.684973px;}
.x3{left:584.384987px;}
.x86{left:585.464973px;}
.x72{left:587.624987px;}
.x90{left:595.004987px;}
.x87{left:598.784987px;}
.x8c{left:634.604973px;}
.x84{left:639.464973px;}
.x8d{left:647.924987px;}
.x85{left:652.784987px;}
.x45{left:661.064973px;}
.x46{left:674.384987px;}
.x1{left:681.044987px;}
.x29{left:696.029973px;}
.x2c{left:704.129973px;}
.x26{left:707.549973px;}
.x2a{left:709.349987px;}
.x22{left:711.149973px;}
.x2d{left:717.449987px;}
.x27{left:720.869987px;}
.x23{left:724.469987px;}
.x5f{left:738.870000px;}
.x1a{left:740.309973px;}
.x1b{left:746.969987px;}
.x1f{left:748.229973px;}
.x5d{left:757.589987px;}
.x13{left:762.449973px;}
.x14{left:769.109987px;}
.x2b{left:771.089987px;}
.x3b{left:775.589987px;}
.x44{left:777.749987px;}
.x5e{left:780.809987px;}
.x92{left:787.109987px;}
.x7f{left:794.669973px;}
.x80{left:807.989987px;}
.x68{left:827.249987px;}
.x91{left:829.589987px;}
.x61{left:831.749987px;}
.x93{left:850.289987px;}
@media print{
.v5{vertical-align:-74.986667pt;}
.v7{vertical-align:-49.173333pt;}
.v6{vertical-align:-47.733333pt;}
.v2{vertical-align:-35.466667pt;}
.v1{vertical-align:-29.920000pt;}
.v4{vertical-align:-27.253333pt;}
.v3{vertical-align:-14.986667pt;}
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.920000pt;}
.ls3f{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.485333pt;}
.ls42{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.213867pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.081067pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls30{letter-spacing:-0.037120pt;}
.ls20{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000001pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.053867pt;}
.ls3d{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.112000pt;}
.ls2e{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.154880pt;}
.ls36{letter-spacing:0.158080pt;}
.ls39{letter-spacing:0.190720pt;}
.ls1c{letter-spacing:0.214933pt;}
.ls34{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.272000pt;}
.ls2{letter-spacing:0.282880pt;}
.ls32{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls29{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls18{letter-spacing:5.120000pt;}
.ls1{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.lse{letter-spacing:12.160000pt;}
.ls19{letter-spacing:12.266667pt;}
.ls16{letter-spacing:14.080000pt;}
.lsa{letter-spacing:15.360000pt;}
.ls44{letter-spacing:17.280000pt;}
.ls28{letter-spacing:17.920000pt;}
.ls2c{letter-spacing:19.840000pt;}
.ls3b{letter-spacing:21.120000pt;}
.ls3c{letter-spacing:25.728000pt;}
.ls25{letter-spacing:26.240000pt;}
.lsf{letter-spacing:29.546667pt;}
.ls13{letter-spacing:29.568000pt;}
.ls23{letter-spacing:43.520000pt;}
.ls43{letter-spacing:49.408000pt;}
.ls26{letter-spacing:50.560000pt;}
.ls3a{letter-spacing:56.912640pt;}
.ls31{letter-spacing:74.960640pt;}
.ls3e{letter-spacing:80.768000pt;}
.ls11{letter-spacing:84.608000pt;}
.ls37{letter-spacing:88.912640pt;}
.ls33{letter-spacing:94.672640pt;}
.ls35{letter-spacing:104.272640pt;}
.ls10{letter-spacing:112.080640pt;}
.ls41{letter-spacing:120.448000pt;}
.ls9{letter-spacing:141.568000pt;}
.ls7{letter-spacing:149.840640pt;}
.ls2d{letter-spacing:211.184000pt;}
.ws4{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.344320pt;}
.ws1f{word-spacing:-14.400000pt;}
.ws20{word-spacing:-14.208000pt;}
.ws1e{word-spacing:-14.144000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws1d{word-spacing:-12.277120pt;}
.ws15{word-spacing:-12.129920pt;}
.ws2{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.ws1c{word-spacing:-11.791253pt;}
.wsa{word-spacing:-10.864000pt;}
.wse{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.832000pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:52.693333pt;}
.ws14{word-spacing:68.357333pt;}
.wsb{word-spacing:89.104000pt;}
.wsc{word-spacing:89.194667pt;}
.ws1b{word-spacing:90.117333pt;}
.ws12{word-spacing:151.066667pt;}
.ws13{word-spacing:151.728000pt;}
.ws10{word-spacing:182.864000pt;}
.ws1a{word-spacing:223.429333pt;}
.ws17{word-spacing:223.781333pt;}
.ws19{word-spacing:248.101333pt;}
.ws18{word-spacing:248.154667pt;}
.wsf{word-spacing:378.821333pt;}
.ws8{word-spacing:454.377813pt;}
.ws11{word-spacing:565.418667pt;}
._f{margin-left:-3.401387pt;}
._9{margin-left:-2.224640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.130667pt;}
._6{width:2.261333pt;}
._1b{width:3.200000pt;}
._1a{width:4.224000pt;}
._a{width:5.616632pt;}
._3{width:6.927368pt;}
._2{width:8.106664pt;}
._14{width:9.301336pt;}
._7{width:10.560000pt;}
._8{width:11.541333pt;}
._12{width:12.608000pt;}
._15{width:15.552000pt;}
._18{width:16.533333pt;}
._25{width:17.594027pt;}
._11{width:19.200000pt;}
._10{width:20.416000pt;}
._b{width:22.144000pt;}
._1f{width:23.680000pt;}
._c{width:25.216000pt;}
._19{width:26.304000pt;}
._5{width:27.712000pt;}
._4{width:29.056000pt;}
._27{width:30.048000pt;}
._28{width:31.808000pt;}
._1e{width:32.847360pt;}
._e{width:33.984000pt;}
._d{width:35.520000pt;}
._31{width:36.608000pt;}
._33{width:37.824000pt;}
._26{width:38.720000pt;}
._23{width:40.320000pt;}
._24{width:42.037333pt;}
._16{width:43.840000pt;}
._17{width:44.864000pt;}
._20{width:46.144000pt;}
._13{width:48.576000pt;}
._30{width:49.551360pt;}
._2c{width:50.474667pt;}
._4c{width:52.042667pt;}
._4b{width:53.120000pt;}
._4f{width:55.616000pt;}
._3a{width:56.896000pt;}
._1c{width:59.008000pt;}
._1d{width:60.032000pt;}
._37{width:60.949333pt;}
._21{width:62.604800pt;}
._3e{width:63.631360pt;}
._32{width:64.704000pt;}
._38{width:66.069333pt;}
._3b{width:67.264000pt;}
._39{width:68.992000pt;}
._3f{width:80.896000pt;}
._44{width:96.832000pt;}
._41{width:97.920000pt;}
._45{width:98.997333pt;}
._22{width:101.120000pt;}
._36{width:103.498667pt;}
._2d{width:108.463360pt;}
._43{width:109.898667pt;}
._42{width:111.360000pt;}
._34{width:114.026667pt;}
._35{width:120.277333pt;}
._3c{width:139.221333pt;}
._3d{width:140.234667pt;}
._48{width:162.304000pt;}
._49{width:163.247360pt;}
._40{width:164.352000pt;}
._4a{width:167.573333pt;}
._47{width:191.808000pt;}
._29{width:195.776000pt;}
._2a{width:199.588053pt;}
._2b{width:242.037333pt;}
._46{width:275.392000pt;}
._2e{width:368.927360pt;}
._4e{width:411.456000pt;}
._4d{width:514.528000pt;}
._2f{width:2192.405341pt;}
.fs9{font-size:2.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:2.880000pt;}
.y112{bottom:13.693333pt;}
.y164{bottom:15.706667pt;}
.yb6{bottom:15.746667pt;}
.yeb{bottom:15.773333pt;}
.y6{bottom:18.880000pt;}
.y111{bottom:36.186667pt;}
.y190{bottom:39.773333pt;}
.yb4{bottom:42.053333pt;}
.y160{bottom:42.306667pt;}
.y5{bottom:48.352000pt;}
.y18f{bottom:54.493333pt;}
.yac{bottom:57.666667pt;}
.y110{bottom:62.786667pt;}
.y4{bottom:67.232000pt;}
.y18b{bottom:69.506667pt;}
.y15e{bottom:71.040000pt;}
.y161{bottom:71.706667pt;}
.ya8{bottom:73.280000pt;}
.y107{bottom:78.373333pt;}
.yab{bottom:80.413333pt;}
.y36{bottom:84.672000pt;}
.ya7{bottom:89.666667pt;}
.ye4{bottom:94.493333pt;}
.y1e7{bottom:94.592000pt;}
.y15f{bottom:98.653333pt;}
.y162{bottom:99.333333pt;}
.y35{bottom:100.832000pt;}
.y14e{bottom:101.152000pt;}
.y134{bottom:101.312000pt;}
.y18c{bottom:103.613333pt;}
.y196{bottom:105.186667pt;}
.y108{bottom:108.320000pt;}
.y1b2{bottom:109.152000pt;}
.ye3{bottom:109.213333pt;}
.y193{bottom:109.280000pt;}
.y1ea{bottom:112.512000pt;}
.yaa{bottom:112.666667pt;}
.y1e6{bottom:116.192000pt;}
.yad{bottom:116.986667pt;}
.y34{bottom:117.152000pt;}
.ya3{bottom:117.632000pt;}
.yce{bottom:118.432000pt;}
.y14d{bottom:122.752000pt;}
.y192{bottom:129.053333pt;}
.y1c7{bottom:129.632000pt;}
.y1b1{bottom:130.592000pt;}
.y33{bottom:133.466667pt;}
.y195{bottom:133.826667pt;}
.ye1{bottom:133.946667pt;}
.y1e9{bottom:134.106667pt;}
.y1e3{bottom:135.866667pt;}
.y1e5{bottom:137.626667pt;}
.y18d{bottom:137.733333pt;}
.y109{bottom:138.240000pt;}
.ycd{bottom:140.506667pt;}
.y133{bottom:143.226667pt;}
.y14c{bottom:144.346667pt;}
.y194{bottom:149.533333pt;}
.y67{bottom:149.786667pt;}
.y32{bottom:150.266667pt;}
.y1c6{bottom:151.066667pt;}
.y1b0{bottom:152.186667pt;}
.y12d{bottom:152.506667pt;}
.y1a1{bottom:155.706667pt;}
.y1e2{bottom:157.466667pt;}
.y191{bottom:158.720000pt;}
.y1e4{bottom:159.226667pt;}
.ycc{bottom:161.626667pt;}
.ye0{bottom:163.546667pt;}
.y132{bottom:164.826667pt;}
.y14b{bottom:165.786667pt;}
.y66{bottom:165.946667pt;}
.y19f{bottom:166.426667pt;}
.y10a{bottom:168.160000pt;}
.ya6{bottom:169.146667pt;}
.y18e{bottom:171.840000pt;}
.y1c5{bottom:172.666667pt;}
.y1af{bottom:173.786667pt;}
.y12c{bottom:174.106667pt;}
.ya2{bottom:176.186667pt;}
.yae{bottom:176.320000pt;}
.y31{bottom:177.306667pt;}
.y1e1{bottom:179.066667pt;}
.y8a{bottom:180.826667pt;}
.y30{bottom:181.306667pt;}
.y65{bottom:182.266667pt;}
.ydf{bottom:185.146667pt;}
.y131{bottom:186.426667pt;}
.y14a{bottom:187.386667pt;}
.ycb{bottom:192.826667pt;}
.y163{bottom:193.440000pt;}
.y1c4{bottom:194.266667pt;}
.y1a0{bottom:195.226667pt;}
.y1ae{bottom:195.386667pt;}
.y12b{bottom:195.706667pt;}
.ya1{bottom:197.786667pt;}
.y10b{bottom:198.106667pt;}
.y189{bottom:198.586667pt;}
.y2f{bottom:198.746667pt;}
.y64{bottom:199.066667pt;}
.y1e0{bottom:200.666667pt;}
.y89{bottom:202.426667pt;}
.y130{bottom:204.506667pt;}
.yde{bottom:206.746667pt;}
.y149{bottom:208.986667pt;}
.yca{bottom:214.426667pt;}
.y188{bottom:214.746667pt;}
.y1c3{bottom:215.866667pt;}
.y1ad{bottom:216.986667pt;}
.y12a{bottom:217.146667pt;}
.ya0{bottom:219.386667pt;}
.y2e{bottom:220.346667pt;}
.y1df{bottom:222.266667pt;}
.y63{bottom:223.066667pt;}
.y88{bottom:224.026667pt;}
.ye6{bottom:225.346667pt;}
.y10c{bottom:228.026667pt;}
.ydd{bottom:228.346667pt;}
.y148{bottom:230.586667pt;}
.y187{bottom:231.066667pt;}
.y105{bottom:232.613333pt;}
.yaf{bottom:235.653333pt;}
.yc9{bottom:235.866667pt;}
.y15c{bottom:236.506667pt;}
.y1c2{bottom:237.466667pt;}
.y1ac{bottom:238.586667pt;}
.y129{bottom:238.746667pt;}
.ye5{bottom:240.066667pt;}
.y9f{bottom:240.826667pt;}
.y2d{bottom:241.946667pt;}
.y1de{bottom:243.866667pt;}
.y62{bottom:244.666667pt;}
.y87{bottom:245.626667pt;}
.y186{bottom:247.386667pt;}
.ydc{bottom:249.946667pt;}
.y147{bottom:252.226667pt;}
.y1ab{bottom:256.546667pt;}
.yc8{bottom:257.506667pt;}
.y10d{bottom:257.946667pt;}
.y15b{bottom:258.146667pt;}
.y1c1{bottom:258.946667pt;}
.y128{bottom:260.386667pt;}
.y9e{bottom:262.466667pt;}
.y2c{bottom:263.586667pt;}
.y185{bottom:264.226667pt;}
.y1dd{bottom:265.346667pt;}
.y104{bottom:265.693333pt;}
.y61{bottom:266.306667pt;}
.y86{bottom:267.106667pt;}
.ydb{bottom:271.426667pt;}
.ye8{bottom:273.120000pt;}
.y102{bottom:273.506667pt;}
.y146{bottom:273.666667pt;}
.yea{bottom:275.453333pt;}
.y106{bottom:278.906667pt;}
.yc7{bottom:279.106667pt;}
.y15a{bottom:279.586667pt;}
.y1c0{bottom:280.546667pt;}
.y127{bottom:281.986667pt;}
.y9d{bottom:284.066667pt;}
.y2b{bottom:285.186667pt;}
.y1dc{bottom:286.946667pt;}
.ye7{bottom:287.840000pt;}
.y10e{bottom:287.866667pt;}
.y5f{bottom:287.906667pt;}
.y85{bottom:288.706667pt;}
.ye9{bottom:290.173333pt;}
.y60{bottom:291.906667pt;}
.yda{bottom:293.026667pt;}
.yb0{bottom:294.973333pt;}
.y101{bottom:295.106667pt;}
.y145{bottom:295.266667pt;}
.y184{bottom:297.666667pt;}
.yc6{bottom:300.706667pt;}
.y159{bottom:301.186667pt;}
.y1bf{bottom:302.146667pt;}
.y126{bottom:303.586667pt;}
.y9c{bottom:305.666667pt;}
.y2a{bottom:306.786667pt;}
.y1db{bottom:308.546667pt;}
.y5e{bottom:309.506667pt;}
.y84{bottom:310.306667pt;}
.yd9{bottom:314.626667pt;}
.y100{bottom:316.706667pt;}
.y144{bottom:316.866667pt;}
.y10f{bottom:317.826667pt;}
.y182{bottom:319.266667pt;}
.yc4{bottom:322.306667pt;}
.ya9{bottom:322.466667pt;}
.y158{bottom:322.786667pt;}
.y183{bottom:323.266667pt;}
.y1be{bottom:323.746667pt;}
.y125{bottom:325.186667pt;}
.yc5{bottom:326.306667pt;}
.y9b{bottom:327.266667pt;}
.y29{bottom:328.226667pt;}
.y1da{bottom:330.146667pt;}
.y5d{bottom:330.946667pt;}
.y83{bottom:331.906667pt;}
.yd8{bottom:336.226667pt;}
.yff{bottom:338.146667pt;}
.y143{bottom:338.466667pt;}
.y181{bottom:340.866667pt;}
.yc3{bottom:343.906667pt;}
.y157{bottom:344.386667pt;}
.y1bd{bottom:345.346667pt;}
.y124{bottom:346.626667pt;}
.y99{bottom:348.866667pt;}
.y28{bottom:349.826667pt;}
.y123{bottom:350.626667pt;}
.y1d9{bottom:351.746667pt;}
.y5c{bottom:352.546667pt;}
.y9a{bottom:352.866667pt;}
.y82{bottom:353.506667pt;}
.yb1{bottom:354.306667pt;}
.yd7{bottom:357.826667pt;}
.yfe{bottom:359.746667pt;}
.y142{bottom:360.066667pt;}
.y180{bottom:362.306667pt;}
.yc2{bottom:365.346667pt;}
.y156{bottom:365.986667pt;}
.y1bc{bottom:366.946667pt;}
.y122{bottom:368.226667pt;}
.y98{bottom:370.306667pt;}
.y27{bottom:371.426667pt;}
.y1d8{bottom:373.186667pt;}
.y5b{bottom:374.146667pt;}
.y81{bottom:375.106667pt;}
.y199{bottom:379.106667pt;}
.yd6{bottom:379.426667pt;}
.yfd{bottom:381.346667pt;}
.y141{bottom:381.666667pt;}
.y17f{bottom:383.906667pt;}
.y1bb{bottom:384.866667pt;}
.yc1{bottom:386.946667pt;}
.y155{bottom:387.426667pt;}
.y121{bottom:389.826667pt;}
.y97{bottom:391.906667pt;}
.y26{bottom:393.026667pt;}
.y1d7{bottom:394.786667pt;}
.y5a{bottom:395.746667pt;}
.y80{bottom:396.546667pt;}
.yd4{bottom:400.866667pt;}
.yfc{bottom:402.946667pt;}
.y140{bottom:403.106667pt;}
.yd5{bottom:404.866667pt;}
.y17d{bottom:405.506667pt;}
.yc0{bottom:408.546667pt;}
.y154{bottom:409.026667pt;}
.y17e{bottom:409.506667pt;}
.y120{bottom:411.426667pt;}
.y96{bottom:413.506667pt;}
.yb2{bottom:413.666667pt;}
.y24{bottom:414.626667pt;}
.y1d6{bottom:416.386667pt;}
.y58{bottom:417.346667pt;}
.y7f{bottom:418.146667pt;}
.y25{bottom:418.626667pt;}
.y59{bottom:421.346667pt;}
.y19d{bottom:422.146667pt;}
.yd3{bottom:422.466667pt;}
.yfb{bottom:424.546667pt;}
.y13f{bottom:424.706667pt;}
.y17c{bottom:427.106667pt;}
.ybf{bottom:430.146667pt;}
.y153{bottom:430.626667pt;}
.ya5{bottom:432.826667pt;}
.y11f{bottom:433.026667pt;}
.y95{bottom:435.106667pt;}
.y23{bottom:436.226667pt;}
.y1d5{bottom:437.986667pt;}
.y57{bottom:438.786667pt;}
.y7e{bottom:439.746667pt;}
.yd2{bottom:444.066667pt;}
.yfa{bottom:446.146667pt;}
.y13e{bottom:446.306667pt;}
.y17b{bottom:448.706667pt;}
.ybe{bottom:451.746667pt;}
.y152{bottom:452.226667pt;}
.y11e{bottom:454.626667pt;}
.y151{bottom:456.226667pt;}
.y93{bottom:456.706667pt;}
.y22{bottom:457.666667pt;}
.y1d4{bottom:459.586667pt;}
.y56{bottom:460.386667pt;}
.y94{bottom:460.706667pt;}
.y7d{bottom:461.346667pt;}
.yd1{bottom:461.986667pt;}
.ye2{bottom:462.880000pt;}
.yf9{bottom:467.586667pt;}
.y13d{bottom:467.906667pt;}
.y179{bottom:470.146667pt;}
.yb5{bottom:470.173333pt;}
.yb3{bottom:472.986667pt;}
.ybd{bottom:473.346667pt;}
.y150{bottom:473.826667pt;}
.y17a{bottom:474.146667pt;}
.y11d{bottom:476.066667pt;}
.y92{bottom:478.146667pt;}
.y21{bottom:479.266667pt;}
.y1d3{bottom:481.186667pt;}
.y55{bottom:481.986667pt;}
.y7c{bottom:482.946667pt;}
.yf7{bottom:489.186667pt;}
.y13c{bottom:489.506667pt;}
.y1aa{bottom:490.946667pt;}
.y14f{bottom:491.746667pt;}
.y15d{bottom:492.640000pt;}
.yf8{bottom:493.186667pt;}
.ybc{bottom:494.786667pt;}
.y11c{bottom:497.666667pt;}
.y91{bottom:499.746667pt;}
.y20{bottom:500.866667pt;}
.y1d2{bottom:502.653333pt;}
.y53{bottom:503.613333pt;}
.y7b{bottom:504.413333pt;}
.y54{bottom:507.613333pt;}
.yf6{bottom:510.813333pt;}
.y13b{bottom:511.133333pt;}
.y1a9{bottom:512.573333pt;}
.y178{bottom:513.373333pt;}
.ybb{bottom:516.413333pt;}
.y11a{bottom:519.293333pt;}
.y90{bottom:521.373333pt;}
.y1f{bottom:522.493333pt;}
.y11b{bottom:523.293333pt;}
.y1d1{bottom:524.253333pt;}
.y52{bottom:525.213333pt;}
.y7a{bottom:526.013333pt;}
.yf5{bottom:532.413333pt;}
.y13a{bottom:532.573333pt;}
.y1a8{bottom:534.173333pt;}
.y177{bottom:534.973333pt;}
.yb9{bottom:538.013333pt;}
.y8f{bottom:539.293333pt;}
.ya4{bottom:539.520000pt;}
.y119{bottom:540.893333pt;}
.yba{bottom:542.013333pt;}
.y1e{bottom:544.093333pt;}
.y1d0{bottom:545.853333pt;}
.y51{bottom:546.813333pt;}
.y79{bottom:547.613333pt;}
.y19e{bottom:551.613333pt;}
.yf4{bottom:554.013333pt;}
.y139{bottom:554.173333pt;}
.y1a7{bottom:555.613333pt;}
.y176{bottom:556.573333pt;}
.yb8{bottom:559.613333pt;}
.y118{bottom:562.493333pt;}
.y1d{bottom:565.533333pt;}
.y1cf{bottom:567.453333pt;}
.y50{bottom:568.253333pt;}
.y78{bottom:569.213333pt;}
.yf3{bottom:575.453333pt;}
.y138{bottom:575.773333pt;}
.y1a6{bottom:577.213333pt;}
.yb7{bottom:577.693333pt;}
.y174{bottom:578.173333pt;}
.y175{bottom:582.173333pt;}
.y117{bottom:583.933333pt;}
.y1c{bottom:587.133333pt;}
.y1ce{bottom:589.053333pt;}
.y4e{bottom:589.853333pt;}
.y77{bottom:590.813333pt;}
.y4f{bottom:593.853333pt;}
.y198{bottom:594.813333pt;}
.yf2{bottom:597.053333pt;}
.y137{bottom:597.373333pt;}
.y1a5{bottom:598.813333pt;}
.y173{bottom:599.613333pt;}
.y116{bottom:605.533333pt;}
.y1a{bottom:608.733333pt;}
.y1cd{bottom:610.653333pt;}
.y4d{bottom:611.453333pt;}
.y76{bottom:612.413333pt;}
.y1b{bottom:612.733333pt;}
.y135{bottom:613.213333pt;}
.y19c{bottom:616.413333pt;}
.yf1{bottom:618.653333pt;}
.y12f{bottom:619.453333pt;}
.y1a4{bottom:620.413333pt;}
.y172{bottom:621.213333pt;}
.y115{bottom:627.133333pt;}
.y19{bottom:630.333333pt;}
.y1cc{bottom:632.093333pt;}
.y4c{bottom:633.053333pt;}
.y75{bottom:633.853333pt;}
.y12e{bottom:637.533333pt;}
.y1ba{bottom:639.933333pt;}
.yef{bottom:640.253333pt;}
.y1a3{bottom:642.013333pt;}
.y170{bottom:642.813333pt;}
.yf0{bottom:644.253333pt;}
.y171{bottom:646.813333pt;}
.y114{bottom:648.733333pt;}
.y18{bottom:651.933333pt;}
.y1cb{bottom:653.693333pt;}
.y4b{bottom:654.653333pt;}
.y74{bottom:655.453333pt;}
.y8e{bottom:659.453333pt;}
.y1a2{bottom:659.933333pt;}
.y1b9{bottom:661.533333pt;}
.yee{bottom:661.853333pt;}
.y16f{bottom:664.413333pt;}
.y113{bottom:666.653333pt;}
.y17{bottom:673.533333pt;}
.y1ca{bottom:675.293333pt;}
.y49{bottom:676.253333pt;}
.y73{bottom:677.053333pt;}
.y4a{bottom:680.253333pt;}
.y1b8{bottom:683.133333pt;}
.yed{bottom:683.453333pt;}
.y16d{bottom:686.013333pt;}
.y16e{bottom:690.013333pt;}
.y16{bottom:694.973333pt;}
.y1e8{bottom:696.093333pt;}
.y1c9{bottom:696.893333pt;}
.y48{bottom:697.693333pt;}
.y72{bottom:698.653333pt;}
.yec{bottom:701.373333pt;}
.y103{bottom:701.600000pt;}
.y8d{bottom:702.653333pt;}
.y1b7{bottom:704.733333pt;}
.y16c{bottom:707.453333pt;}
.y15{bottom:716.573333pt;}
.y1c8{bottom:718.333333pt;}
.y47{bottom:719.293333pt;}
.y70{bottom:720.253333pt;}
.y71{bottom:724.253333pt;}
.y1b6{bottom:726.173333pt;}
.y16b{bottom:729.053333pt;}
.y14{bottom:738.173333pt;}
.y46{bottom:740.893333pt;}
.y6f{bottom:741.853333pt;}
.y1b5{bottom:747.773333pt;}
.y16a{bottom:750.653333pt;}
.y13{bottom:759.813333pt;}
.y44{bottom:762.533333pt;}
.y6e{bottom:763.333333pt;}
.y45{bottom:766.533333pt;}
.y19b{bottom:767.333333pt;}
.y1b4{bottom:769.413333pt;}
.y169{bottom:772.293333pt;}
.y12{bottom:781.413333pt;}
.y43{bottom:784.133333pt;}
.y6d{bottom:784.933333pt;}
.y1b3{bottom:787.333333pt;}
.y167{bottom:793.893333pt;}
.y168{bottom:797.893333pt;}
.y11{bottom:803.013333pt;}
.y42{bottom:805.573333pt;}
.y6c{bottom:806.533333pt;}
.y166{bottom:815.493333pt;}
.y10{bottom:824.453333pt;}
.y41{bottom:827.173333pt;}
.y6a{bottom:828.133333pt;}
.y6b{bottom:832.133333pt;}
.y165{bottom:833.413333pt;}
.y18a{bottom:834.880000pt;}
.yf{bottom:846.053333pt;}
.y40{bottom:848.773333pt;}
.y69{bottom:849.733333pt;}
.y19a{bottom:853.733333pt;}
.ye{bottom:867.653333pt;}
.y3f{bottom:870.213333pt;}
.y68{bottom:871.173333pt;}
.y8c{bottom:875.173333pt;}
.yd{bottom:889.253333pt;}
.y3e{bottom:892.773333pt;}
.y3d{bottom:896.773333pt;}
.yc{bottom:910.853333pt;}
.y3c{bottom:914.373333pt;}
.yb{bottom:932.293333pt;}
.y3b{bottom:935.973333pt;}
.y197{bottom:939.973333pt;}
.ya{bottom:953.893333pt;}
.y3a{bottom:957.573333pt;}
.yd0{bottom:961.573333pt;}
.y9{bottom:975.493333pt;}
.y39{bottom:979.173333pt;}
.y8b{bottom:983.173333pt;}
.y8{bottom:997.093333pt;}
.y38{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y37{bottom:1022.240000pt;}
.ycf{bottom:1026.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.h15{height:2.227500pt;}
.h6{height:32.640000pt;}
.hc{height:36.305625pt;}
.h9{height:37.310625pt;}
.h2{height:42.790000pt;}
.he{height:47.742188pt;}
.hf{height:47.869500pt;}
.ha{height:52.834688pt;}
.h3{height:54.187500pt;}
.h4{height:55.687500pt;}
.h19{height:57.093750pt;}
.h7{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:63.399375pt;}
.hb{height:65.781915pt;}
.h18{height:66.625000pt;}
.h11{height:71.931562pt;}
.h10{height:74.477812pt;}
.h17{height:202.560000pt;}
.h16{height:221.280000pt;}
.h13{height:335.840000pt;}
.h12{height:337.280000pt;}
.h14{height:358.906667pt;}
.hd{height:497.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.920000pt;}
.w5{width:572.000000pt;}
.w7{width:576.000000pt;}
.w6{width:577.440000pt;}
.wa{width:622.080000pt;}
.w8{width:622.373333pt;}
.w9{width:626.080000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:8.480000pt;}
.x37{left:14.528000pt;}
.x36{left:26.693333pt;}
.x49{left:32.826667pt;}
.x39{left:57.120000pt;}
.x4a{left:58.746667pt;}
.x76{left:59.933333pt;}
.x30{left:67.493333pt;}
.x75{left:72.093333pt;}
.x56{left:74.466667pt;}
.x4{left:75.519988pt;}
.x53{left:80.800000pt;}
.x12{left:82.239988pt;}
.x5a{left:87.391988pt;}
.x1e{left:88.991988pt;}
.x33{left:95.933333pt;}
.x25{left:99.551988pt;}
.x77{left:108.293333pt;}
.x24{left:111.551988pt;}
.xb{left:113.311988pt;}
.x54{left:117.186667pt;}
.x10{left:119.231988pt;}
.x62{left:125.151988pt;}
.x4e{left:131.333333pt;}
.x57{left:132.960000pt;}
.x7b{left:135.293333pt;}
.x3c{left:138.426643pt;}
.x58{left:142.746643pt;}
.x4b{left:144.133333pt;}
.x3d{left:150.266655pt;}
.x5b{left:153.146643pt;}
.x59{left:154.586655pt;}
.x5c{left:164.986655pt;}
.x20{left:166.906643pt;}
.x4c{left:168.773333pt;}
.x63{left:171.200000pt;}
.x6{left:176.346655pt;}
.x21{left:178.746655pt;}
.x66{left:180.546667pt;}
.x6d{left:182.906643pt;}
.x28{left:189.786655pt;}
.x6e{left:194.746655pt;}
.x31{left:198.946667pt;}
.x3a{left:204.253333pt;}
.x7c{left:212.186667pt;}
.x4d{left:215.133333pt;}
.x7e{left:226.426667pt;}
.x34{left:227.426667pt;}
.x95{left:228.986643pt;}
.x96{left:232.186643pt;}
.x94{left:242.426643pt;}
.x55{left:245.026667pt;}
.x51{left:247.066643pt;}
.x1c{left:254.426643pt;}
.x52{left:258.906655pt;}
.x78{left:260.253333pt;}
.x17{left:261.186643pt;}
.x1d{left:266.306655pt;}
.x11{left:267.586655pt;}
.x4f{left:268.706643pt;}
.xc{left:271.266643pt;}
.x67{left:274.266667pt;}
.xd{left:277.186655pt;}
.x50{left:280.546655pt;}
.x88{left:294.146643pt;}
.x6b{left:298.306643pt;}
.x89{left:305.986655pt;}
.xe{left:307.266643pt;}
.x6c{left:310.146655pt;}
.xf{left:313.186655pt;}
.x73{left:317.986643pt;}
.x18{left:327.266643pt;}
.x69{left:328.546643pt;}
.x74{left:329.826655pt;}
.x19{left:333.186655pt;}
.x79{left:334.746667pt;}
.x6a{left:340.386655pt;}
.x81{left:341.986655pt;}
.x7a{left:347.066667pt;}
.x35{left:358.880000pt;}
.x7d{left:369.053333pt;}
.x64{left:370.853333pt;}
.x5{left:385.986667pt;}
.x65{left:391.106667pt;}
.xa{left:397.346655pt;}
.x3e{left:402.626643pt;}
.x6f{left:406.146643pt;}
.x15{left:407.106643pt;}
.x16{left:413.026655pt;}
.x3f{left:414.466655pt;}
.x70{left:417.986655pt;}
.x8e{left:430.626643pt;}
.x9{left:432.226655pt;}
.x2e{left:442.813310pt;}
.x48{left:451.906667pt;}
.x60{left:453.213310pt;}
.x2f{left:454.653322pt;}
.x32{left:458.853333pt;}
.x47{left:464.546667pt;}
.x8{left:470.653322pt;}
.x8a{left:473.213310pt;}
.x2{left:479.773322pt;}
.x8b{left:485.053322pt;}
.x42{left:490.653310pt;}
.x40{left:493.373310pt;}
.x82{left:495.453310pt;}
.x7{left:500.253322pt;}
.x43{left:502.493322pt;}
.x41{left:505.213322pt;}
.x83{left:507.293322pt;}
.x71{left:510.493310pt;}
.x8f{left:517.053310pt;}
.x3{left:519.453322pt;}
.x86{left:520.413310pt;}
.x72{left:522.333322pt;}
.x90{left:528.893322pt;}
.x87{left:532.253322pt;}
.x8c{left:564.093310pt;}
.x84{left:568.413310pt;}
.x8d{left:575.933322pt;}
.x85{left:580.253322pt;}
.x45{left:587.613310pt;}
.x46{left:599.453322pt;}
.x1{left:605.373322pt;}
.x29{left:618.693310pt;}
.x2c{left:625.893310pt;}
.x26{left:628.933310pt;}
.x2a{left:630.533322pt;}
.x22{left:632.133310pt;}
.x2d{left:637.733322pt;}
.x27{left:640.773322pt;}
.x23{left:643.973322pt;}
.x5f{left:656.773333pt;}
.x1a{left:658.053310pt;}
.x1b{left:663.973322pt;}
.x1f{left:665.093310pt;}
.x5d{left:673.413322pt;}
.x13{left:677.733310pt;}
.x14{left:683.653322pt;}
.x2b{left:685.413322pt;}
.x3b{left:689.413322pt;}
.x44{left:691.333322pt;}
.x5e{left:694.053322pt;}
.x92{left:699.653322pt;}
.x7f{left:706.373310pt;}
.x80{left:718.213322pt;}
.x68{left:735.333322pt;}
.x91{left:737.413322pt;}
.x61{left:739.333322pt;}
.x93{left:755.813322pt;}
}




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