
    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_9a48ef13c7f4572b1feb2319.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_f8d03d0c41b00a2a020c6791.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_3e2ac0bfd699bce52b860dda.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.216309;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_5568431f1e6f86d48ddc270d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_beeb0fea16daf95efb19d19e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.183105;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_ee49e7b65f22841bc4655fae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.184082;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);}
.v1{vertical-align:-7.581600px;}
.v5{vertical-align:-4.238400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.581600px;}
.v6{vertical-align:32.400000px;}
.v4{vertical-align:36.637800px;}
.v3{vertical-align:72.000000px;}
.ls15{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.480000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.205400px;}
.ls4{letter-spacing:1.614900px;}
.ls14{letter-spacing:2.111400px;}
.ls18{letter-spacing:2.694000px;}
.ls16{letter-spacing:2.836200px;}
.lsf{letter-spacing:145.235400px;}
.ls13{letter-spacing:151.984800px;}
.ls12{letter-spacing:158.735400px;}
.lsb{letter-spacing:159.063600px;}
.ls8{letter-spacing:165.813600px;}
.lse{letter-spacing:172.234800px;}
.ls10{letter-spacing:172.235400px;}
.lsa{letter-spacing:179.313000px;}
.ls9{letter-spacing:179.313600px;}
.ls7{letter-spacing:179.314200px;}
.lsc{letter-spacing:220.800000px;}
.ls11{letter-spacing:619.290600px;}
.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;}
}
.ws5d{word-spacing:-234.300000px;}
.ws79{word-spacing:-185.734800px;}
.wsb{word-spacing:-19.800000px;}
.ws0{word-spacing:-18.000000px;}
.ws93{word-spacing:-16.800000px;}
.ws48{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.040000px;}
.ws94{word-spacing:-12.000000px;}
.ws95{word-spacing:-11.520000px;}
.ws15{word-spacing:-3.540000px;}
.ws1a{word-spacing:-3.120000px;}
.ws6{word-spacing:-3.024000px;}
.ws3a{word-spacing:-2.940000px;}
.ws8f{word-spacing:-2.880000px;}
.ws92{word-spacing:-2.700000px;}
.wsab{word-spacing:-2.640000px;}
.wsa8{word-spacing:-2.304000px;}
.wsa4{word-spacing:-2.064000px;}
.ws87{word-spacing:-1.980000px;}
.ws8e{word-spacing:-1.860000px;}
.wsae{word-spacing:-1.680000px;}
.ws10{word-spacing:-1.512000px;}
.ws62{word-spacing:-1.500000px;}
.ws98{word-spacing:-1.296000px;}
.ws63{word-spacing:-1.200000px;}
.ws99{word-spacing:-1.152000px;}
.ws7{word-spacing:-1.026000px;}
.ws9e{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.660000px;}
.ws12{word-spacing:-0.600000px;}
.ws4{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.480000px;}
.wsa5{word-spacing:-0.192000px;}
.ws53{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws7c{word-spacing:0.060000px;}
.ws38{word-spacing:0.480000px;}
.wsaa{word-spacing:0.528000px;}
.wsc{word-spacing:0.540000px;}
.ws3{word-spacing:0.600000px;}
.ws1c{word-spacing:0.660000px;}
.wsa3{word-spacing:1.056000px;}
.ws85{word-spacing:1.200000px;}
.ws9f{word-spacing:1.392000px;}
.ws36{word-spacing:1.500000px;}
.ws14{word-spacing:1.680000px;}
.ws8d{word-spacing:1.920000px;}
.ws8b{word-spacing:2.220000px;}
.wsac{word-spacing:2.352000px;}
.ws86{word-spacing:2.460000px;}
.ws97{word-spacing:2.688000px;}
.ws9c{word-spacing:2.736000px;}
.ws91{word-spacing:2.820000px;}
.wsad{word-spacing:3.024000px;}
.ws20{word-spacing:3.120000px;}
.wsa7{word-spacing:3.168000px;}
.wsa0{word-spacing:3.264000px;}
.ws96{word-spacing:3.456000px;}
.wsf{word-spacing:3.780000px;}
.ws23{word-spacing:4.020000px;}
.ws22{word-spacing:4.500000px;}
.ws1d{word-spacing:4.560000px;}
.ws61{word-spacing:4.620000px;}
.ws9{word-spacing:4.968000px;}
.ws39{word-spacing:4.980000px;}
.wsa2{word-spacing:5.040000px;}
.wse{word-spacing:5.184000px;}
.ws16{word-spacing:5.400000px;}
.ws1f{word-spacing:6.000000px;}
.ws9b{word-spacing:6.528000px;}
.wsa1{word-spacing:7.200000px;}
.ws21{word-spacing:7.380000px;}
.wsa9{word-spacing:7.584000px;}
.ws5{word-spacing:7.722000px;}
.ws17{word-spacing:7.980000px;}
.ws19{word-spacing:9.060000px;}
.ws1e{word-spacing:9.360000px;}
.wsd{word-spacing:9.396000px;}
.ws18{word-spacing:12.180000px;}
.wsa6{word-spacing:12.192000px;}
.ws8c{word-spacing:12.300000px;}
.ws90{word-spacing:13.200000px;}
.ws11{word-spacing:13.500000px;}
.ws1b{word-spacing:16.380000px;}
.ws9d{word-spacing:24.048000px;}
.ws7a{word-spacing:67.228200px;}
.ws82{word-spacing:76.164600px;}
.ws8a{word-spacing:82.242600px;}
.ws5c{word-spacing:84.813600px;}
.ws73{word-spacing:91.234800px;}
.ws74{word-spacing:91.235400px;}
.ws72{word-spacing:97.984800px;}
.ws5a{word-spacing:98.313000px;}
.ws58{word-spacing:98.313600px;}
.ws5b{word-spacing:98.314200px;}
.ws7b{word-spacing:100.986000px;}
.ws64{word-spacing:101.788800px;}
.ws70{word-spacing:104.734800px;}
.ws71{word-spacing:104.735400px;}
.ws59{word-spacing:105.063600px;}
.ws52{word-spacing:105.736800px;}
.ws55{word-spacing:105.737400px;}
.ws49{word-spacing:108.867000px;}
.ws6a{word-spacing:111.484800px;}
.ws84{word-spacing:113.991000px;}
.ws69{word-spacing:118.235400px;}
.ws51{word-spacing:118.563600px;}
.ws88{word-spacing:123.786600px;}
.ws35{word-spacing:124.033200px;}
.ws34{word-spacing:124.033800px;}
.ws66{word-spacing:124.984800px;}
.ws50{word-spacing:125.313600px;}
.ws7e{word-spacing:125.727600px;}
.ws68{word-spacing:131.734800px;}
.ws67{word-spacing:131.735400px;}
.ws4d{word-spacing:132.063600px;}
.ws33{word-spacing:137.533200px;}
.ws32{word-spacing:137.533800px;}
.ws6e{word-spacing:138.484800px;}
.ws4f{word-spacing:138.813000px;}
.ws4c{word-spacing:138.813600px;}
.ws4e{word-spacing:138.814200px;}
.ws81{word-spacing:139.227600px;}
.ws60{word-spacing:139.650000px;}
.ws7f{word-spacing:139.799400px;}
.ws5f{word-spacing:139.800000px;}
.ws80{word-spacing:139.800600px;}
.ws76{word-spacing:144.896400px;}
.ws6d{word-spacing:145.234800px;}
.ws6b{word-spacing:145.235400px;}
.ws2e{word-spacing:151.033200px;}
.ws2d{word-spacing:151.033800px;}
.ws4b{word-spacing:152.313000px;}
.ws57{word-spacing:152.313600px;}
.ws75{word-spacing:153.299400px;}
.ws5e{word-spacing:153.300000px;}
.ws65{word-spacing:158.734800px;}
.ws6f{word-spacing:158.735400px;}
.ws44{word-spacing:160.884000px;}
.ws2a{word-spacing:164.533200px;}
.ws2f{word-spacing:164.533800px;}
.ws56{word-spacing:165.813000px;}
.ws54{word-spacing:165.813600px;}
.ws4a{word-spacing:165.814200px;}
.ws83{word-spacing:166.574400px;}
.ws77{word-spacing:166.800000px;}
.ws42{word-spacing:174.383400px;}
.ws43{word-spacing:174.384000px;}
.ws2c{word-spacing:178.033200px;}
.ws2b{word-spacing:178.033800px;}
.ws40{word-spacing:187.883400px;}
.ws3f{word-spacing:187.884000px;}
.ws30{word-spacing:191.533200px;}
.ws29{word-spacing:193.660800px;}
.ws7d{word-spacing:207.150000px;}
.ws6c{word-spacing:214.109400px;}
.ws78{word-spacing:227.609400px;}
.ws89{word-spacing:227.697000px;}
.ws3e{word-spacing:230.511000px;}
.ws41{word-spacing:239.788800px;}
.ws3b{word-spacing:286.522800px;}
.ws28{word-spacing:301.833600px;}
.ws27{word-spacing:335.380800px;}
.ws26{word-spacing:342.650400px;}
.ws25{word-spacing:360.223800px;}
.ws24{word-spacing:364.287000px;}
.ws46{word-spacing:364.327800px;}
.ws45{word-spacing:370.051800px;}
.ws3d{word-spacing:409.082400px;}
.ws3c{word-spacing:416.351400px;}
.ws47{word-spacing:442.465800px;}
.ws31{word-spacing:442.466400px;}
.wsa{word-spacing:1845.950400px;}
._3{margin-left:-5.460000px;}
._1{margin-left:-4.032000px;}
._5{margin-left:-2.952000px;}
._2{margin-left:-1.680000px;}
._4{width:1.080000px;}
._8{width:3.008400px;}
._7{width:4.428000px;}
._6{width:5.562000px;}
._9{width:7.182000px;}
._d{width:8.256000px;}
._b{width:9.300000px;}
._a{width:10.380000px;}
._e{width:11.460000px;}
._f{width:13.140000px;}
._10{width:16.500000px;}
._11{width:17.940000px;}
._c{width:20.160000px;}
._55{width:22.616400px;}
._54{width:23.971800px;}
._12{width:33.079800px;}
._3f{width:69.247200px;}
._3d{width:95.598600px;}
._38{width:100.038600px;}
._2d{width:105.737400px;}
._4c{width:109.098600px;}
._36{width:113.538600px;}
._47{width:118.236000px;}
._2a{width:119.236800px;}
._32{width:125.313600px;}
._24{width:131.609400px;}
._2e{width:132.737400px;}
._4a{width:134.053800px;}
._1a{width:137.533200px;}
._16{width:139.688400px;}
._2c{width:141.280200px;}
._4d{width:144.250200px;}
._29{width:145.563000px;}
._28{width:152.314200px;}
._1b{width:153.576600px;}
._2b{width:154.780200px;}
._30{width:159.063600px;}
._37{width:162.739800px;}
._27{width:165.812400px;}
._3a{width:167.049000px;}
._3e{width:171.579000px;}
._14{width:172.981200px;}
._1e{width:174.384000px;}
._39{width:176.391600px;}
._18{width:178.033200px;}
._26{width:179.314200px;}
._4b{width:180.610800px;}
._50{width:183.678600px;}
._1f{width:188.605800px;}
._53{width:190.303800px;}
._17{width:191.533800px;}
._1c{width:193.672800px;}
._42{width:200.790600px;}
._19{width:204.194400px;}
._25{width:207.256800px;}
._2f{width:211.372800px;}
._41{width:214.109400px;}
._51{width:221.257200px;}
._43{width:227.609400px;}
._13{width:231.415200px;}
._46{width:241.109400px;}
._52{width:256.287000px;}
._44{width:257.382600px;}
._1d{width:261.064800px;}
._3c{width:275.329800px;}
._23{width:296.565600px;}
._40{width:302.129400px;}
._45{width:315.629400px;}
._49{width:378.563400px;}
._35{width:395.571000px;}
._31{width:408.148800px;}
._21{width:415.195800px;}
._4f{width:420.302400px;}
._20{width:431.773800px;}
._22{width:446.310600px;}
._3b{width:453.389400px;}
._34{width:506.620200px;}
._48{width:523.627800px;}
._4e{width:529.296600px;}
._33{width:573.280800px;}
._15{width:578.789400px;}
._0{width:783.144000px;}
.fc2{color:transparent;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:163.116000px;}
.y0{bottom:0.000000px;}
.y1d6{bottom:95.407650px;}
.y25{bottom:96.828000px;}
.y1a9{bottom:97.379100px;}
.y123{bottom:100.327350px;}
.yfa{bottom:102.146700px;}
.y18d{bottom:105.293400px;}
.ya5{bottom:106.207650px;}
.y7b{bottom:106.538400px;}
.y1d5{bottom:109.807650px;}
.y147{bottom:112.908900px;}
.y24{bottom:113.028000px;}
.y16a{bottom:114.087600px;}
.y1a8{bottom:114.658050px;}
.y122{bottom:118.327350px;}
.yf9{bottom:120.465750px;}
.y18c{bottom:122.572350px;}
.yd5{bottom:122.655150px;}
.y1a7{bottom:122.758050px;}
.ya4{bottom:124.207650px;}
.y7a{bottom:124.538400px;}
.y4f{bottom:127.098150px;}
.y23{bottom:129.228000px;}
.y18b{bottom:130.672350px;}
.y146{bottom:131.228100px;}
.y169{bottom:133.372500px;}
.y121{bottom:136.327350px;}
.y1d4{bottom:138.607650px;}
.yf8{bottom:138.784950px;}
.yd4{bottom:140.655150px;}
.ya3{bottom:142.207650px;}
.y79{bottom:142.538400px;}
.y20b{bottom:143.892750px;}
.y4e{bottom:145.098150px;}
.y22{bottom:145.428000px;}
.y1a5{bottom:149.177250px;}
.y145{bottom:149.547150px;}
.y168{bottom:151.691550px;}
.y1d3{bottom:153.007650px;}
.y120{bottom:154.327350px;}
.y189{bottom:157.091400px;}
.yf7{bottom:157.104150px;}
.y1a4{bottom:157.277250px;}
.y20a{bottom:158.292750px;}
.yd3{bottom:158.655150px;}
.ya2{bottom:160.207650px;}
.y78{bottom:160.538400px;}
.y21{bottom:161.628000px;}
.y4d{bottom:163.098150px;}
.y188{bottom:165.191400px;}
.y1a6{bottom:165.377250px;}
.y1d2{bottom:167.407650px;}
.y144{bottom:167.866350px;}
.y167{bottom:170.010750px;}
.y11f{bottom:172.327350px;}
.y209{bottom:172.692750px;}
.y18a{bottom:173.291400px;}
.yf6{bottom:173.304000px;}
.yd2{bottom:176.655150px;}
.y143{bottom:177.025950px;}
.y20{bottom:177.828000px;}
.ya1{bottom:178.207650px;}
.y77{bottom:178.538400px;}
.y4c{bottom:181.098150px;}
.y1d1{bottom:181.807650px;}
.y1a3{bottom:185.819400px;}
.y208{bottom:187.092750px;}
.y166{bottom:188.329800px;}
.y11e{bottom:190.327350px;}
.yf5{bottom:191.623200px;}
.y1f{bottom:194.028000px;}
.yd1{bottom:194.655150px;}
.ya0{bottom:196.207650px;}
.y76{bottom:196.538400px;}
.y187{bottom:197.985600px;}
.y4b{bottom:199.098150px;}
.y207{bottom:201.492750px;}
.y1a2{bottom:203.819400px;}
.y165{bottom:206.649000px;}
.yf4{bottom:209.942250px;}
.y1e{bottom:210.228000px;}
.y1d0{bottom:210.607650px;}
.y142{bottom:210.879600px;}
.yd0{bottom:212.655150px;}
.y9f{bottom:214.207650px;}
.y75{bottom:214.538400px;}
.y206{bottom:215.892750px;}
.y186{bottom:215.985600px;}
.y4a{bottom:217.098150px;}
.y164{bottom:224.968050px;}
.y1cf{bottom:225.007650px;}
.y11d{bottom:226.327350px;}
.y1d{bottom:226.428000px;}
.yf3{bottom:228.261450px;}
.y141{bottom:228.879600px;}
.y205{bottom:230.292750px;}
.y9e{bottom:232.207650px;}
.y74{bottom:232.538400px;}
.y49{bottom:235.098150px;}
.y1ce{bottom:239.407650px;}
.y1a1{bottom:239.819400px;}
.y1c{bottom:242.628000px;}
.y163{bottom:243.287250px;}
.y11c{bottom:243.606300px;}
.y204{bottom:244.692750px;}
.yf2{bottom:246.580500px;}
.ycf{bottom:248.655150px;}
.y9d{bottom:250.207650px;}
.y73{bottom:250.538400px;}
.y185{bottom:251.985600px;}
.y48{bottom:253.098150px;}
.y1cd{bottom:253.807650px;}
.y1a0{bottom:257.819400px;}
.y1b{bottom:258.828000px;}
.y203{bottom:259.092750px;}
.y162{bottom:261.606300px;}
.y11b{bottom:261.925500px;}
.y140{bottom:264.879600px;}
.yf1{bottom:264.899700px;}
.yce{bottom:265.933950px;}
.y9c{bottom:268.207650px;}
.y72{bottom:268.538400px;}
.y184{bottom:269.985600px;}
.y47{bottom:271.098150px;}
.y202{bottom:273.492750px;}
.y1a{bottom:275.028000px;}
.y19f{bottom:275.819400px;}
.y161{bottom:279.925500px;}
.y11a{bottom:280.244550px;}
.y1cc{bottom:282.607650px;}
.y13f{bottom:282.879600px;}
.yf0{bottom:283.218750px;}
.ycd{bottom:284.253150px;}
.y9b{bottom:286.207650px;}
.y71{bottom:286.538400px;}
.y201{bottom:287.892750px;}
.y183{bottom:287.985600px;}
.y46{bottom:289.098150px;}
.y19{bottom:291.228000px;}
.y19e{bottom:293.819400px;}
.y1cb{bottom:297.007650px;}
.y160{bottom:298.244550px;}
.y119{bottom:298.563750px;}
.yef{bottom:299.418750px;}
.y13e{bottom:300.879600px;}
.y200{bottom:302.292750px;}
.ycc{bottom:302.572200px;}
.y9a{bottom:304.207650px;}
.y70{bottom:304.538400px;}
.y182{bottom:305.985600px;}
.y45{bottom:307.098150px;}
.y18{bottom:307.428000px;}
.y1ca{bottom:311.407650px;}
.y19d{bottom:311.819400px;}
.y15f{bottom:316.563750px;}
.y1ff{bottom:316.692750px;}
.y118{bottom:316.882800px;}
.yee{bottom:317.737950px;}
.ycb{bottom:320.891400px;}
.y99{bottom:322.207650px;}
.y6f{bottom:322.538400px;}
.y181{bottom:323.985600px;}
.y44{bottom:325.098150px;}
.y1c9{bottom:325.807650px;}
.yed{bottom:326.897550px;}
.y19c{bottom:329.819400px;}
.y1fe{bottom:331.092750px;}
.y17{bottom:332.131950px;}
.y15e{bottom:334.882800px;}
.y117{bottom:335.202000px;}
.y13d{bottom:336.879600px;}
.yca{bottom:339.210600px;}
.y98{bottom:340.207650px;}
.y6e{bottom:340.538400px;}
.y180{bottom:341.985600px;}
.y43{bottom:343.098150px;}
.y1fd{bottom:345.492750px;}
.y19b{bottom:347.819400px;}
.y15d{bottom:353.202000px;}
.y116{bottom:353.521050px;}
.y13c{bottom:354.158550px;}
.y1c8{bottom:354.607650px;}
.yc9{bottom:357.529650px;}
.y97{bottom:358.207650px;}
.y6d{bottom:358.538400px;}
.y1fc{bottom:359.892750px;}
.y17f{bottom:359.985600px;}
.yec{bottom:360.751200px;}
.y42{bottom:361.098150px;}
.y19a{bottom:365.819400px;}
.y1c7{bottom:369.007650px;}
.y16{bottom:369.931950px;}
.y15c{bottom:371.521050px;}
.y115{bottom:371.840250px;}
.y13b{bottom:372.477600px;}
.y1fb{bottom:374.292750px;}
.yc8{bottom:375.848700px;}
.y96{bottom:376.207650px;}
.y6c{bottom:376.538400px;}
.y17e{bottom:377.985600px;}
.yeb{bottom:378.751200px;}
.y41{bottom:379.098150px;}
.y114{bottom:380.999700px;}
.y1c6{bottom:383.407650px;}
.y199{bottom:383.819400px;}
.y15{bottom:387.931950px;}
.y1fa{bottom:388.692750px;}
.y15b{bottom:389.840250px;}
.y13a{bottom:390.796800px;}
.yc7{bottom:394.167900px;}
.y95{bottom:394.207650px;}
.y6b{bottom:394.538400px;}
.y17d{bottom:395.985600px;}
.y40{bottom:397.098150px;}
.y1c5{bottom:397.807650px;}
.y198{bottom:401.819400px;}
.y1f9{bottom:403.092750px;}
.y14{bottom:405.931950px;}
.y15a{bottom:408.159300px;}
.y139{bottom:409.115850px;}
.yb4{bottom:412.207650px;}
.yc6{bottom:412.513350px;}
.y6a{bottom:412.538400px;}
.y17c{bottom:413.985600px;}
.yea{bottom:414.751200px;}
.y113{bottom:414.853350px;}
.y3f{bottom:415.098150px;}
.y1f8{bottom:417.492750px;}
.y197{bottom:419.819400px;}
.y94{bottom:420.711600px;}
.y13{bottom:423.931950px;}
.y159{bottom:426.478500px;}
.y1c4{bottom:426.607650px;}
.y138{bottom:427.435050px;}
.yb3{bottom:430.207650px;}
.y69{bottom:430.538400px;}
.yc5{bottom:430.832400px;}
.y1f7{bottom:431.892750px;}
.y17b{bottom:431.985600px;}
.ye9{bottom:432.751200px;}
.y112{bottom:432.853350px;}
.y3e{bottom:433.098150px;}
.y196{bottom:437.819400px;}
.y1c3{bottom:441.007650px;}
.y12{bottom:441.931950px;}
.y158{bottom:444.797550px;}
.y137{bottom:445.754100px;}
.y1f6{bottom:446.292750px;}
.yb2{bottom:448.207650px;}
.y68{bottom:448.538400px;}
.y17a{bottom:449.985600px;}
.ye8{bottom:450.751200px;}
.y3d{bottom:451.098150px;}
.y1c2{bottom:455.407650px;}
.yc4{bottom:455.500200px;}
.y195{bottom:455.819400px;}
.y11{bottom:459.931950px;}
.y1f5{bottom:460.692750px;}
.y157{bottom:463.116600px;}
.y136{bottom:464.073150px;}
.yb1{bottom:466.207650px;}
.y67{bottom:466.538400px;}
.y179{bottom:467.985600px;}
.y111{bottom:468.853350px;}
.y3c{bottom:469.098150px;}
.y1c1{bottom:469.807650px;}
.yc3{bottom:473.500200px;}
.y194{bottom:473.819400px;}
.y1f4{bottom:475.092750px;}
.y93{bottom:476.511600px;}
.ye7{bottom:477.255150px;}
.y156{bottom:481.435800px;}
.y135{bottom:482.392350px;}
.yb0{bottom:484.207650px;}
.y66{bottom:484.538400px;}
.y178{bottom:485.985600px;}
.y10{bottom:486.435900px;}
.y110{bottom:486.853350px;}
.y3b{bottom:487.098150px;}
.y1f3{bottom:489.492750px;}
.y92{bottom:494.511600px;}
.y1c0{bottom:498.607650px;}
.y155{bottom:499.755000px;}
.y134{bottom:500.711400px;}
.yaf{bottom:502.207650px;}
.y65{bottom:502.538400px;}
.y1f2{bottom:503.892750px;}
.y177{bottom:503.985600px;}
.y10f{bottom:504.853350px;}
.y3a{bottom:505.098150px;}
.yc2{bottom:509.500200px;}
.y193{bottom:509.819400px;}
.y91{bottom:512.511600px;}
.y1bf{bottom:513.007650px;}
.y154{bottom:518.074050px;}
.y1f1{bottom:518.292750px;}
.y133{bottom:519.030600px;}
.yae{bottom:520.207650px;}
.y64{bottom:520.538400px;}
.y176{bottom:521.985600px;}
.yf{bottom:522.435900px;}
.y10e{bottom:522.853500px;}
.y39{bottom:523.098150px;}
.y192{bottom:527.098350px;}
.y1be{bottom:527.407650px;}
.yc1{bottom:527.500200px;}
.y90{bottom:530.511600px;}
.y1f0{bottom:532.692750px;}
.ye6{bottom:533.055150px;}
.y191{bottom:535.198350px;}
.y153{bottom:536.393250px;}
.y132{bottom:537.349800px;}
.yad{bottom:538.207650px;}
.y63{bottom:538.538400px;}
.y175{bottom:539.985600px;}
.ye{bottom:540.435900px;}
.y10d{bottom:540.853500px;}
.y38{bottom:541.098150px;}
.y1bd{bottom:541.807650px;}
.yc0{bottom:545.500200px;}
.y1ef{bottom:547.092750px;}
.y8f{bottom:548.511600px;}
.ye5{bottom:550.334100px;}
.y152{bottom:554.712300px;}
.y131{bottom:555.668850px;}
.yac{bottom:556.207650px;}
.y62{bottom:556.538400px;}
.yd{bottom:558.435900px;}
.y10c{bottom:558.853500px;}
.y37{bottom:559.098150px;}
.y1ee{bottom:561.492750px;}
.y18f{bottom:561.617400px;}
.ybf{bottom:563.500200px;}
.y151{bottom:563.871900px;}
.y8e{bottom:566.511600px;}
.ye4{bottom:568.653150px;}
.y18e{bottom:569.717400px;}
.y1bc{bottom:570.607650px;}
.y130{bottom:573.987900px;}
.yab{bottom:574.207650px;}
.y61{bottom:574.538400px;}
.y1ed{bottom:575.892750px;}
.y174{bottom:575.985600px;}
.yc{bottom:576.435900px;}
.y10b{bottom:576.853500px;}
.y36{bottom:577.098150px;}
.y190{bottom:577.817400px;}
.ybe{bottom:581.500200px;}
.y8d{bottom:584.511600px;}
.y1bb{bottom:585.007650px;}
.ye3{bottom:586.972350px;}
.y1ec{bottom:590.292750px;}
.yaa{bottom:592.207650px;}
.y12f{bottom:592.307100px;}
.y60{bottom:592.538400px;}
.y173{bottom:593.264400px;}
.yb{bottom:594.435900px;}
.y35{bottom:595.098150px;}
.y150{bottom:597.725550px;}
.y1ba{bottom:599.407650px;}
.ybd{bottom:599.500200px;}
.y8c{bottom:602.511600px;}
.y1eb{bottom:604.692750px;}
.ye2{bottom:605.291400px;}
.ya9{bottom:610.207650px;}
.y5f{bottom:610.538400px;}
.y12e{bottom:610.626150px;}
.y172{bottom:611.583600px;}
.y10a{bottom:612.853500px;}
.y34{bottom:613.098150px;}
.y1b9{bottom:613.807650px;}
.y14f{bottom:615.725550px;}
.ybc{bottom:617.500200px;}
.y1ea{bottom:619.092750px;}
.y8b{bottom:620.511600px;}
.ya{bottom:620.939700px;}
.ye1{bottom:623.610600px;}
.ya8{bottom:628.207650px;}
.y5e{bottom:628.538400px;}
.y12d{bottom:628.945350px;}
.y171{bottom:629.902650px;}
.y109{bottom:630.132450px;}
.y1e9{bottom:633.492750px;}
.y8a{bottom:638.511600px;}
.ye0{bottom:641.929650px;}
.y1b8{bottom:642.607650px;}
.ya7{bottom:646.207650px;}
.y5d{bottom:646.538400px;}
.y12c{bottom:647.264400px;}
.y1e8{bottom:647.892750px;}
.y170{bottom:648.221850px;}
.y108{bottom:648.451500px;}
.y14e{bottom:651.725550px;}
.ybb{bottom:653.500200px;}
.y89{bottom:656.511600px;}
.y9{bottom:656.939700px;}
.y1b7{bottom:657.007650px;}
.y33{bottom:657.602100px;}
.ydf{bottom:660.275100px;}
.y1e7{bottom:662.292750px;}
.y1b0{bottom:664.207650px;}
.y5c{bottom:664.538400px;}
.y12b{bottom:665.583600px;}
.y16f{bottom:666.540900px;}
.y107{bottom:666.770550px;}
.y14d{bottom:669.725550px;}
.yba{bottom:670.779150px;}
.y1b6{bottom:671.407650px;}
.ya6{bottom:672.711600px;}
.y88{bottom:674.511600px;}
.y8{bottom:674.939700px;}
.y1e6{bottom:676.692750px;}
.yde{bottom:678.594300px;}
.y1af{bottom:682.207650px;}
.y5b{bottom:682.538400px;}
.y12a{bottom:683.902650px;}
.y16e{bottom:684.860100px;}
.y106{bottom:685.089750px;}
.y1b5{bottom:685.807650px;}
.yb9{bottom:686.979150px;}
.y14c{bottom:687.725550px;}
.yb8{bottom:689.098350px;}
.y1e5{bottom:691.092750px;}
.y87{bottom:692.511600px;}
.y7{bottom:692.939700px;}
.y1ae{bottom:700.207650px;}
.y5a{bottom:700.538400px;}
.y129{bottom:702.221850px;}
.y16d{bottom:703.179150px;}
.ydd{bottom:703.261950px;}
.y105{bottom:703.408800px;}
.yb7{bottom:705.298350px;}
.y1e4{bottom:705.492750px;}
.y14b{bottom:705.725550px;}
.y86{bottom:710.511600px;}
.y6{bottom:710.939700px;}
.y32{bottom:713.402100px;}
.y1b4{bottom:714.607650px;}
.y1ad{bottom:718.207650px;}
.y59{bottom:718.538400px;}
.y1e3{bottom:719.892750px;}
.y128{bottom:720.540900px;}
.ydc{bottom:721.261950px;}
.yb6{bottom:721.498350px;}
.y104{bottom:721.728000px;}
.y16c{bottom:722.557800px;}
.y14a{bottom:723.725550px;}
.y85{bottom:728.511600px;}
.y5{bottom:728.939700px;}
.y1b3{bottom:729.007650px;}
.y31{bottom:729.602100px;}
.y16b{bottom:730.657800px;}
.y1e2{bottom:734.292750px;}
.y1ac{bottom:736.207650px;}
.y58{bottom:736.538400px;}
.y127{bottom:738.860100px;}
.yb5{bottom:739.817400px;}
.y103{bottom:740.047050px;}
.y149{bottom:741.725550px;}
.y1b2{bottom:743.407650px;}
.y30{bottom:745.802100px;}
.y84{bottom:746.511600px;}
.y1e1{bottom:748.692750px;}
.y1ab{bottom:754.207650px;}
.y57{bottom:754.538400px;}
.y4{bottom:755.443800px;}
.y126{bottom:757.179150px;}
.ydb{bottom:757.261950px;}
.y1b1{bottom:757.807650px;}
.y102{bottom:758.366250px;}
.y2f{bottom:762.002100px;}
.y1e0{bottom:763.092750px;}
.y83{bottom:764.511600px;}
.y56{bottom:772.538400px;}
.yda{bottom:774.540900px;}
.y125{bottom:775.498350px;}
.y101{bottom:776.685300px;}
.y1df{bottom:777.492750px;}
.y148{bottom:777.725550px;}
.y2e{bottom:778.202100px;}
.y1aa{bottom:780.711600px;}
.y82{bottom:782.511600px;}
.y124{bottom:784.657800px;}
.y55{bottom:790.538400px;}
.y1de{bottom:791.892750px;}
.yd9{bottom:792.860100px;}
.y2d{bottom:794.402100px;}
.y100{bottom:795.004500px;}
.y81{bottom:800.511600px;}
.y1dd{bottom:806.292750px;}
.y54{bottom:808.538400px;}
.y3{bottom:809.443800px;}
.y2c{bottom:810.602100px;}
.yd8{bottom:811.179150px;}
.yff{bottom:813.323550px;}
.y80{bottom:818.511600px;}
.y1dc{bottom:820.692750px;}
.y53{bottom:826.538400px;}
.y2b{bottom:826.802100px;}
.yd7{bottom:829.498350px;}
.yfe{bottom:831.642750px;}
.y2{bottom:834.643650px;}
.y1db{bottom:835.092750px;}
.y7f{bottom:836.511600px;}
.y2a{bottom:843.001950px;}
.y52{bottom:844.538400px;}
.yd6{bottom:847.843800px;}
.y1da{bottom:849.492750px;}
.yfd{bottom:849.961800px;}
.y7e{bottom:854.511600px;}
.y29{bottom:859.202100px;}
.y51{bottom:862.538400px;}
.y1d9{bottom:863.892750px;}
.yfc{bottom:868.656000px;}
.y7d{bottom:872.511600px;}
.y28{bottom:875.402100px;}
.yfb{bottom:877.815450px;}
.y1d8{bottom:878.292750px;}
.y50{bottom:889.042350px;}
.y7c{bottom:890.511600px;}
.y27{bottom:891.602100px;}
.y1d7{bottom:892.692750px;}
.y26{bottom:913.305150px;}
.y1{bottom:915.200550px;}
.h15{height:34.945312px;}
.h9{height:39.313477px;}
.h14{height:43.359375px;}
.hd{height:43.453125px;}
.h7{height:43.593750px;}
.h5{height:43.681641px;}
.hf{height:48.779297px;}
.he{height:48.779766px;}
.h8{height:48.884766px;}
.h4{height:52.320000px;}
.hc{height:54.199219px;}
.h6{height:54.316406px;}
.ha{height:57.552000px;}
.h2{height:65.666400px;}
.h12{height:71.713477px;}
.h3{height:73.248000px;}
.h10{height:75.951277px;}
.h11{height:75.951877px;}
.h13{height:81.284766px;}
.hb{height:126.316406px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x15{left:63.779550px;}
.x16{left:85.039350px;}
.x1{left:89.291400px;}
.x25{left:93.543300px;}
.x21{left:95.430900px;}
.x39{left:96.560850px;}
.x1a{left:97.795200px;}
.x3f{left:101.679450px;}
.x17{left:106.299150px;}
.x41{left:108.183000px;}
.x13{left:110.551200px;}
.x26{left:113.895750px;}
.x2{left:118.866750px;}
.x33{left:122.965950px;}
.x31{left:127.217850px;}
.x23{left:128.934750px;}
.x1b{left:132.262800px;}
.x28{left:133.780200px;}
.x34{left:135.721950px;}
.x24{left:137.942400px;}
.x2e{left:139.973850px;}
.x5{left:153.567150px;}
.x18{left:156.817350px;}
.x36{left:158.740200px;}
.x30{left:162.992100px;}
.x3{left:165.160650px;}
.x2c{left:174.330750px;}
.x2a{left:178.582650px;}
.x11{left:184.844250px;}
.x9{left:189.566550px;}
.xe{left:191.366550px;}
.xd{left:194.276100px;}
.x3a{left:203.659950px;}
.x10{left:205.555500px;}
.x1c{left:216.610950px;}
.x12{left:218.496000px;}
.x8{left:224.809650px;}
.x6{left:226.723200px;}
.x19{left:228.781200px;}
.x7{left:230.731350px;}
.xa{left:232.372050px;}
.x2d{left:235.909050px;}
.xc{left:244.682550px;}
.x32{left:248.664750px;}
.x38{left:251.499450px;}
.x2b{left:253.265850px;}
.x29{left:256.640850px;}
.xf{left:259.139400px;}
.x27{left:261.178650px;}
.x35{left:263.891550px;}
.x2f{left:268.143450px;}
.xb{left:269.786850px;}
.x3b{left:282.379350px;}
.x4{left:284.158950px;}
.x46{left:290.721900px;}
.x1d{left:294.466350px;}
.x42{left:297.969900px;}
.x14{left:303.553800px;}
.x1e{left:308.836500px;}
.x3c{left:311.574300px;}
.x43{left:327.165000px;}
.x3d{left:392.422800px;}
.x44{left:400.076400px;}
.x3e{left:404.317800px;}
.x1f{left:410.056350px;}
.x45{left:411.971250px;}
.x22{left:460.631700px;}
.x40{left:495.558150px;}
.x20{left:515.214900px;}
.x37{left:554.279250px;}
@media print{
.v1{vertical-align:-6.739200pt;}
.v5{vertical-align:-3.767467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.739200pt;}
.v6{vertical-align:28.800000pt;}
.v4{vertical-align:32.566933pt;}
.v3{vertical-align:64.000000pt;}
.ls15{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.071467pt;}
.ls4{letter-spacing:1.435467pt;}
.ls14{letter-spacing:1.876800pt;}
.ls18{letter-spacing:2.394667pt;}
.ls16{letter-spacing:2.521067pt;}
.lsf{letter-spacing:129.098133pt;}
.ls13{letter-spacing:135.097600pt;}
.ls12{letter-spacing:141.098133pt;}
.lsb{letter-spacing:141.389867pt;}
.ls8{letter-spacing:147.389867pt;}
.lse{letter-spacing:153.097600pt;}
.ls10{letter-spacing:153.098133pt;}
.lsa{letter-spacing:159.389333pt;}
.ls9{letter-spacing:159.389867pt;}
.ls7{letter-spacing:159.390400pt;}
.lsc{letter-spacing:196.266667pt;}
.ls11{letter-spacing:550.480533pt;}
.ws5d{word-spacing:-208.266667pt;}
.ws79{word-spacing:-165.097600pt;}
.wsb{word-spacing:-17.600000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws93{word-spacing:-14.933333pt;}
.ws48{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.480000pt;}
.ws94{word-spacing:-10.666667pt;}
.ws95{word-spacing:-10.240000pt;}
.ws15{word-spacing:-3.146667pt;}
.ws1a{word-spacing:-2.773333pt;}
.ws6{word-spacing:-2.688000pt;}
.ws3a{word-spacing:-2.613333pt;}
.ws8f{word-spacing:-2.560000pt;}
.ws92{word-spacing:-2.400000pt;}
.wsab{word-spacing:-2.346667pt;}
.wsa8{word-spacing:-2.048000pt;}
.wsa4{word-spacing:-1.834667pt;}
.ws87{word-spacing:-1.760000pt;}
.ws8e{word-spacing:-1.653333pt;}
.wsae{word-spacing:-1.493333pt;}
.ws10{word-spacing:-1.344000pt;}
.ws62{word-spacing:-1.333333pt;}
.ws98{word-spacing:-1.152000pt;}
.ws63{word-spacing:-1.066667pt;}
.ws99{word-spacing:-1.024000pt;}
.ws7{word-spacing:-0.912000pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.586667pt;}
.ws12{word-spacing:-0.533333pt;}
.ws4{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.426667pt;}
.wsa5{word-spacing:-0.170667pt;}
.ws53{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.053333pt;}
.ws38{word-spacing:0.426667pt;}
.wsaa{word-spacing:0.469333pt;}
.wsc{word-spacing:0.480000pt;}
.ws3{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.586667pt;}
.wsa3{word-spacing:0.938667pt;}
.ws85{word-spacing:1.066667pt;}
.ws9f{word-spacing:1.237333pt;}
.ws36{word-spacing:1.333333pt;}
.ws14{word-spacing:1.493333pt;}
.ws8d{word-spacing:1.706667pt;}
.ws8b{word-spacing:1.973333pt;}
.wsac{word-spacing:2.090667pt;}
.ws86{word-spacing:2.186667pt;}
.ws97{word-spacing:2.389333pt;}
.ws9c{word-spacing:2.432000pt;}
.ws91{word-spacing:2.506667pt;}
.wsad{word-spacing:2.688000pt;}
.ws20{word-spacing:2.773333pt;}
.wsa7{word-spacing:2.816000pt;}
.wsa0{word-spacing:2.901333pt;}
.ws96{word-spacing:3.072000pt;}
.wsf{word-spacing:3.360000pt;}
.ws23{word-spacing:3.573333pt;}
.ws22{word-spacing:4.000000pt;}
.ws1d{word-spacing:4.053333pt;}
.ws61{word-spacing:4.106667pt;}
.ws9{word-spacing:4.416000pt;}
.ws39{word-spacing:4.426667pt;}
.wsa2{word-spacing:4.480000pt;}
.wse{word-spacing:4.608000pt;}
.ws16{word-spacing:4.800000pt;}
.ws1f{word-spacing:5.333333pt;}
.ws9b{word-spacing:5.802667pt;}
.wsa1{word-spacing:6.400000pt;}
.ws21{word-spacing:6.560000pt;}
.wsa9{word-spacing:6.741333pt;}
.ws5{word-spacing:6.864000pt;}
.ws17{word-spacing:7.093333pt;}
.ws19{word-spacing:8.053333pt;}
.ws1e{word-spacing:8.320000pt;}
.wsd{word-spacing:8.352000pt;}
.ws18{word-spacing:10.826667pt;}
.wsa6{word-spacing:10.837333pt;}
.ws8c{word-spacing:10.933333pt;}
.ws90{word-spacing:11.733333pt;}
.ws11{word-spacing:12.000000pt;}
.ws1b{word-spacing:14.560000pt;}
.ws9d{word-spacing:21.376000pt;}
.ws7a{word-spacing:59.758400pt;}
.ws82{word-spacing:67.701867pt;}
.ws8a{word-spacing:73.104533pt;}
.ws5c{word-spacing:75.389867pt;}
.ws73{word-spacing:81.097600pt;}
.ws74{word-spacing:81.098133pt;}
.ws72{word-spacing:87.097600pt;}
.ws5a{word-spacing:87.389333pt;}
.ws58{word-spacing:87.389867pt;}
.ws5b{word-spacing:87.390400pt;}
.ws7b{word-spacing:89.765333pt;}
.ws64{word-spacing:90.478933pt;}
.ws70{word-spacing:93.097600pt;}
.ws71{word-spacing:93.098133pt;}
.ws59{word-spacing:93.389867pt;}
.ws52{word-spacing:93.988267pt;}
.ws55{word-spacing:93.988800pt;}
.ws49{word-spacing:96.770667pt;}
.ws6a{word-spacing:99.097600pt;}
.ws84{word-spacing:101.325333pt;}
.ws69{word-spacing:105.098133pt;}
.ws51{word-spacing:105.389867pt;}
.ws88{word-spacing:110.032533pt;}
.ws35{word-spacing:110.251733pt;}
.ws34{word-spacing:110.252267pt;}
.ws66{word-spacing:111.097600pt;}
.ws50{word-spacing:111.389867pt;}
.ws7e{word-spacing:111.757867pt;}
.ws68{word-spacing:117.097600pt;}
.ws67{word-spacing:117.098133pt;}
.ws4d{word-spacing:117.389867pt;}
.ws33{word-spacing:122.251733pt;}
.ws32{word-spacing:122.252267pt;}
.ws6e{word-spacing:123.097600pt;}
.ws4f{word-spacing:123.389333pt;}
.ws4c{word-spacing:123.389867pt;}
.ws4e{word-spacing:123.390400pt;}
.ws81{word-spacing:123.757867pt;}
.ws60{word-spacing:124.133333pt;}
.ws7f{word-spacing:124.266133pt;}
.ws5f{word-spacing:124.266667pt;}
.ws80{word-spacing:124.267200pt;}
.ws76{word-spacing:128.796800pt;}
.ws6d{word-spacing:129.097600pt;}
.ws6b{word-spacing:129.098133pt;}
.ws2e{word-spacing:134.251733pt;}
.ws2d{word-spacing:134.252267pt;}
.ws4b{word-spacing:135.389333pt;}
.ws57{word-spacing:135.389867pt;}
.ws75{word-spacing:136.266133pt;}
.ws5e{word-spacing:136.266667pt;}
.ws65{word-spacing:141.097600pt;}
.ws6f{word-spacing:141.098133pt;}
.ws44{word-spacing:143.008000pt;}
.ws2a{word-spacing:146.251733pt;}
.ws2f{word-spacing:146.252267pt;}
.ws56{word-spacing:147.389333pt;}
.ws54{word-spacing:147.389867pt;}
.ws4a{word-spacing:147.390400pt;}
.ws83{word-spacing:148.066133pt;}
.ws77{word-spacing:148.266667pt;}
.ws42{word-spacing:155.007467pt;}
.ws43{word-spacing:155.008000pt;}
.ws2c{word-spacing:158.251733pt;}
.ws2b{word-spacing:158.252267pt;}
.ws40{word-spacing:167.007467pt;}
.ws3f{word-spacing:167.008000pt;}
.ws30{word-spacing:170.251733pt;}
.ws29{word-spacing:172.142933pt;}
.ws7d{word-spacing:184.133333pt;}
.ws6c{word-spacing:190.319467pt;}
.ws78{word-spacing:202.319467pt;}
.ws89{word-spacing:202.397333pt;}
.ws3e{word-spacing:204.898667pt;}
.ws41{word-spacing:213.145600pt;}
.ws3b{word-spacing:254.686933pt;}
.ws28{word-spacing:268.296533pt;}
.ws27{word-spacing:298.116267pt;}
.ws26{word-spacing:304.578133pt;}
.ws25{word-spacing:320.198933pt;}
.ws24{word-spacing:323.810667pt;}
.ws46{word-spacing:323.846933pt;}
.ws45{word-spacing:328.934933pt;}
.ws3d{word-spacing:363.628800pt;}
.ws3c{word-spacing:370.090133pt;}
.ws47{word-spacing:393.302933pt;}
.ws31{word-spacing:393.303467pt;}
.wsa{word-spacing:1640.844800pt;}
._3{margin-left:-4.853333pt;}
._1{margin-left:-3.584000pt;}
._5{margin-left:-2.624000pt;}
._2{margin-left:-1.493333pt;}
._4{width:0.960000pt;}
._8{width:2.674133pt;}
._7{width:3.936000pt;}
._6{width:4.944000pt;}
._9{width:6.384000pt;}
._d{width:7.338667pt;}
._b{width:8.266667pt;}
._a{width:9.226667pt;}
._e{width:10.186667pt;}
._f{width:11.680000pt;}
._10{width:14.666667pt;}
._11{width:15.946667pt;}
._c{width:17.920000pt;}
._55{width:20.103467pt;}
._54{width:21.308267pt;}
._12{width:29.404267pt;}
._3f{width:61.553067pt;}
._3d{width:84.976533pt;}
._38{width:88.923200pt;}
._2d{width:93.988800pt;}
._4c{width:96.976533pt;}
._36{width:100.923200pt;}
._47{width:105.098667pt;}
._2a{width:105.988267pt;}
._32{width:111.389867pt;}
._24{width:116.986133pt;}
._2e{width:117.988800pt;}
._4a{width:119.158933pt;}
._1a{width:122.251733pt;}
._16{width:124.167467pt;}
._2c{width:125.582400pt;}
._4d{width:128.222400pt;}
._29{width:129.389333pt;}
._28{width:135.390400pt;}
._1b{width:136.512533pt;}
._2b{width:137.582400pt;}
._30{width:141.389867pt;}
._37{width:144.657600pt;}
._27{width:147.388800pt;}
._3a{width:148.488000pt;}
._3e{width:152.514667pt;}
._14{width:153.761067pt;}
._1e{width:155.008000pt;}
._39{width:156.792533pt;}
._18{width:158.251733pt;}
._26{width:159.390400pt;}
._4b{width:160.542933pt;}
._50{width:163.269867pt;}
._1f{width:167.649600pt;}
._53{width:169.158933pt;}
._17{width:170.252267pt;}
._1c{width:172.153600pt;}
._42{width:178.480533pt;}
._19{width:181.506133pt;}
._25{width:184.228267pt;}
._2f{width:187.886933pt;}
._41{width:190.319467pt;}
._51{width:196.673067pt;}
._43{width:202.319467pt;}
._13{width:205.702400pt;}
._46{width:214.319467pt;}
._52{width:227.810667pt;}
._44{width:228.784533pt;}
._1d{width:232.057600pt;}
._3c{width:244.737600pt;}
._23{width:263.613867pt;}
._40{width:268.559467pt;}
._45{width:280.559467pt;}
._49{width:336.500800pt;}
._35{width:351.618667pt;}
._31{width:362.798933pt;}
._21{width:369.062933pt;}
._4f{width:373.602133pt;}
._20{width:383.798933pt;}
._22{width:396.720533pt;}
._3b{width:403.012800pt;}
._34{width:450.329067pt;}
._48{width:465.446933pt;}
._4e{width:470.485867pt;}
._33{width:509.582933pt;}
._15{width:514.479467pt;}
._0{width:696.128000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:144.992000pt;}
.y0{bottom:0.000000pt;}
.y1d6{bottom:84.806800pt;}
.y25{bottom:86.069333pt;}
.y1a9{bottom:86.559200pt;}
.y123{bottom:89.179867pt;}
.yfa{bottom:90.797067pt;}
.y18d{bottom:93.594133pt;}
.ya5{bottom:94.406800pt;}
.y7b{bottom:94.700800pt;}
.y1d5{bottom:97.606800pt;}
.y147{bottom:100.363467pt;}
.y24{bottom:100.469333pt;}
.y16a{bottom:101.411200pt;}
.y1a8{bottom:101.918267pt;}
.y122{bottom:105.179867pt;}
.yf9{bottom:107.080667pt;}
.y18c{bottom:108.953200pt;}
.yd5{bottom:109.026800pt;}
.y1a7{bottom:109.118267pt;}
.ya4{bottom:110.406800pt;}
.y7a{bottom:110.700800pt;}
.y4f{bottom:112.976133pt;}
.y23{bottom:114.869333pt;}
.y18b{bottom:116.153200pt;}
.y146{bottom:116.647200pt;}
.y169{bottom:118.553333pt;}
.y121{bottom:121.179867pt;}
.y1d4{bottom:123.206800pt;}
.yf8{bottom:123.364400pt;}
.yd4{bottom:125.026800pt;}
.ya3{bottom:126.406800pt;}
.y79{bottom:126.700800pt;}
.y20b{bottom:127.904667pt;}
.y4e{bottom:128.976133pt;}
.y22{bottom:129.269333pt;}
.y1a5{bottom:132.602000pt;}
.y145{bottom:132.930800pt;}
.y168{bottom:134.836933pt;}
.y1d3{bottom:136.006800pt;}
.y120{bottom:137.179867pt;}
.y189{bottom:139.636800pt;}
.yf7{bottom:139.648133pt;}
.y1a4{bottom:139.802000pt;}
.y20a{bottom:140.704667pt;}
.yd3{bottom:141.026800pt;}
.ya2{bottom:142.406800pt;}
.y78{bottom:142.700800pt;}
.y21{bottom:143.669333pt;}
.y4d{bottom:144.976133pt;}
.y188{bottom:146.836800pt;}
.y1a6{bottom:147.002000pt;}
.y1d2{bottom:148.806800pt;}
.y144{bottom:149.214533pt;}
.y167{bottom:151.120667pt;}
.y11f{bottom:153.179867pt;}
.y209{bottom:153.504667pt;}
.y18a{bottom:154.036800pt;}
.yf6{bottom:154.048000pt;}
.yd2{bottom:157.026800pt;}
.y143{bottom:157.356400pt;}
.y20{bottom:158.069333pt;}
.ya1{bottom:158.406800pt;}
.y77{bottom:158.700800pt;}
.y4c{bottom:160.976133pt;}
.y1d1{bottom:161.606800pt;}
.y1a3{bottom:165.172800pt;}
.y208{bottom:166.304667pt;}
.y166{bottom:167.404267pt;}
.y11e{bottom:169.179867pt;}
.yf5{bottom:170.331733pt;}
.y1f{bottom:172.469333pt;}
.yd1{bottom:173.026800pt;}
.ya0{bottom:174.406800pt;}
.y76{bottom:174.700800pt;}
.y187{bottom:175.987200pt;}
.y4b{bottom:176.976133pt;}
.y207{bottom:179.104667pt;}
.y1a2{bottom:181.172800pt;}
.y165{bottom:183.688000pt;}
.yf4{bottom:186.615333pt;}
.y1e{bottom:186.869333pt;}
.y1d0{bottom:187.206800pt;}
.y142{bottom:187.448533pt;}
.yd0{bottom:189.026800pt;}
.y9f{bottom:190.406800pt;}
.y75{bottom:190.700800pt;}
.y206{bottom:191.904667pt;}
.y186{bottom:191.987200pt;}
.y4a{bottom:192.976133pt;}
.y164{bottom:199.971600pt;}
.y1cf{bottom:200.006800pt;}
.y11d{bottom:201.179867pt;}
.y1d{bottom:201.269333pt;}
.yf3{bottom:202.899067pt;}
.y141{bottom:203.448533pt;}
.y205{bottom:204.704667pt;}
.y9e{bottom:206.406800pt;}
.y74{bottom:206.700800pt;}
.y49{bottom:208.976133pt;}
.y1ce{bottom:212.806800pt;}
.y1a1{bottom:213.172800pt;}
.y1c{bottom:215.669333pt;}
.y163{bottom:216.255333pt;}
.y11c{bottom:216.538933pt;}
.y204{bottom:217.504667pt;}
.yf2{bottom:219.182667pt;}
.ycf{bottom:221.026800pt;}
.y9d{bottom:222.406800pt;}
.y73{bottom:222.700800pt;}
.y185{bottom:223.987200pt;}
.y48{bottom:224.976133pt;}
.y1cd{bottom:225.606800pt;}
.y1a0{bottom:229.172800pt;}
.y1b{bottom:230.069333pt;}
.y203{bottom:230.304667pt;}
.y162{bottom:232.538933pt;}
.y11b{bottom:232.822667pt;}
.y140{bottom:235.448533pt;}
.yf1{bottom:235.466400pt;}
.yce{bottom:236.385733pt;}
.y9c{bottom:238.406800pt;}
.y72{bottom:238.700800pt;}
.y184{bottom:239.987200pt;}
.y47{bottom:240.976133pt;}
.y202{bottom:243.104667pt;}
.y1a{bottom:244.469333pt;}
.y19f{bottom:245.172800pt;}
.y161{bottom:248.822667pt;}
.y11a{bottom:249.106267pt;}
.y1cc{bottom:251.206800pt;}
.y13f{bottom:251.448533pt;}
.yf0{bottom:251.750000pt;}
.ycd{bottom:252.669467pt;}
.y9b{bottom:254.406800pt;}
.y71{bottom:254.700800pt;}
.y201{bottom:255.904667pt;}
.y183{bottom:255.987200pt;}
.y46{bottom:256.976133pt;}
.y19{bottom:258.869333pt;}
.y19e{bottom:261.172800pt;}
.y1cb{bottom:264.006800pt;}
.y160{bottom:265.106267pt;}
.y119{bottom:265.390000pt;}
.yef{bottom:266.150000pt;}
.y13e{bottom:267.448533pt;}
.y200{bottom:268.704667pt;}
.ycc{bottom:268.953067pt;}
.y9a{bottom:270.406800pt;}
.y70{bottom:270.700800pt;}
.y182{bottom:271.987200pt;}
.y45{bottom:272.976133pt;}
.y18{bottom:273.269333pt;}
.y1ca{bottom:276.806800pt;}
.y19d{bottom:277.172800pt;}
.y15f{bottom:281.390000pt;}
.y1ff{bottom:281.504667pt;}
.y118{bottom:281.673600pt;}
.yee{bottom:282.433733pt;}
.ycb{bottom:285.236800pt;}
.y99{bottom:286.406800pt;}
.y6f{bottom:286.700800pt;}
.y181{bottom:287.987200pt;}
.y44{bottom:288.976133pt;}
.y1c9{bottom:289.606800pt;}
.yed{bottom:290.575600pt;}
.y19c{bottom:293.172800pt;}
.y1fe{bottom:294.304667pt;}
.y17{bottom:295.228400pt;}
.y15e{bottom:297.673600pt;}
.y117{bottom:297.957333pt;}
.y13d{bottom:299.448533pt;}
.yca{bottom:301.520533pt;}
.y98{bottom:302.406800pt;}
.y6e{bottom:302.700800pt;}
.y180{bottom:303.987200pt;}
.y43{bottom:304.976133pt;}
.y1fd{bottom:307.104667pt;}
.y19b{bottom:309.172800pt;}
.y15d{bottom:313.957333pt;}
.y116{bottom:314.240933pt;}
.y13c{bottom:314.807600pt;}
.y1c8{bottom:315.206800pt;}
.yc9{bottom:317.804133pt;}
.y97{bottom:318.406800pt;}
.y6d{bottom:318.700800pt;}
.y1fc{bottom:319.904667pt;}
.y17f{bottom:319.987200pt;}
.yec{bottom:320.667733pt;}
.y42{bottom:320.976133pt;}
.y19a{bottom:325.172800pt;}
.y1c7{bottom:328.006800pt;}
.y16{bottom:328.828400pt;}
.y15c{bottom:330.240933pt;}
.y115{bottom:330.524667pt;}
.y13b{bottom:331.091200pt;}
.y1fb{bottom:332.704667pt;}
.yc8{bottom:334.087733pt;}
.y96{bottom:334.406800pt;}
.y6c{bottom:334.700800pt;}
.y17e{bottom:335.987200pt;}
.yeb{bottom:336.667733pt;}
.y41{bottom:336.976133pt;}
.y114{bottom:338.666400pt;}
.y1c6{bottom:340.806800pt;}
.y199{bottom:341.172800pt;}
.y15{bottom:344.828400pt;}
.y1fa{bottom:345.504667pt;}
.y15b{bottom:346.524667pt;}
.y13a{bottom:347.374933pt;}
.yc7{bottom:350.371467pt;}
.y95{bottom:350.406800pt;}
.y6b{bottom:350.700800pt;}
.y17d{bottom:351.987200pt;}
.y40{bottom:352.976133pt;}
.y1c5{bottom:353.606800pt;}
.y198{bottom:357.172800pt;}
.y1f9{bottom:358.304667pt;}
.y14{bottom:360.828400pt;}
.y15a{bottom:362.808267pt;}
.y139{bottom:363.658533pt;}
.yb4{bottom:366.406800pt;}
.yc6{bottom:366.678533pt;}
.y6a{bottom:366.700800pt;}
.y17c{bottom:367.987200pt;}
.yea{bottom:368.667733pt;}
.y113{bottom:368.758533pt;}
.y3f{bottom:368.976133pt;}
.y1f8{bottom:371.104667pt;}
.y197{bottom:373.172800pt;}
.y94{bottom:373.965867pt;}
.y13{bottom:376.828400pt;}
.y159{bottom:379.092000pt;}
.y1c4{bottom:379.206800pt;}
.y138{bottom:379.942267pt;}
.yb3{bottom:382.406800pt;}
.y69{bottom:382.700800pt;}
.yc5{bottom:382.962133pt;}
.y1f7{bottom:383.904667pt;}
.y17b{bottom:383.987200pt;}
.ye9{bottom:384.667733pt;}
.y112{bottom:384.758533pt;}
.y3e{bottom:384.976133pt;}
.y196{bottom:389.172800pt;}
.y1c3{bottom:392.006800pt;}
.y12{bottom:392.828400pt;}
.y158{bottom:395.375600pt;}
.y137{bottom:396.225867pt;}
.y1f6{bottom:396.704667pt;}
.yb2{bottom:398.406800pt;}
.y68{bottom:398.700800pt;}
.y17a{bottom:399.987200pt;}
.ye8{bottom:400.667733pt;}
.y3d{bottom:400.976133pt;}
.y1c2{bottom:404.806800pt;}
.yc4{bottom:404.889067pt;}
.y195{bottom:405.172800pt;}
.y11{bottom:408.828400pt;}
.y1f5{bottom:409.504667pt;}
.y157{bottom:411.659200pt;}
.y136{bottom:412.509467pt;}
.yb1{bottom:414.406800pt;}
.y67{bottom:414.700800pt;}
.y179{bottom:415.987200pt;}
.y111{bottom:416.758533pt;}
.y3c{bottom:416.976133pt;}
.y1c1{bottom:417.606800pt;}
.yc3{bottom:420.889067pt;}
.y194{bottom:421.172800pt;}
.y1f4{bottom:422.304667pt;}
.y93{bottom:423.565867pt;}
.ye7{bottom:424.226800pt;}
.y156{bottom:427.942933pt;}
.y135{bottom:428.793200pt;}
.yb0{bottom:430.406800pt;}
.y66{bottom:430.700800pt;}
.y178{bottom:431.987200pt;}
.y10{bottom:432.387467pt;}
.y110{bottom:432.758533pt;}
.y3b{bottom:432.976133pt;}
.y1f3{bottom:435.104667pt;}
.y92{bottom:439.565867pt;}
.y1c0{bottom:443.206800pt;}
.y155{bottom:444.226667pt;}
.y134{bottom:445.076800pt;}
.yaf{bottom:446.406800pt;}
.y65{bottom:446.700800pt;}
.y1f2{bottom:447.904667pt;}
.y177{bottom:447.987200pt;}
.y10f{bottom:448.758533pt;}
.y3a{bottom:448.976133pt;}
.yc2{bottom:452.889067pt;}
.y193{bottom:453.172800pt;}
.y91{bottom:455.565867pt;}
.y1bf{bottom:456.006800pt;}
.y154{bottom:460.510267pt;}
.y1f1{bottom:460.704667pt;}
.y133{bottom:461.360533pt;}
.yae{bottom:462.406800pt;}
.y64{bottom:462.700800pt;}
.y176{bottom:463.987200pt;}
.yf{bottom:464.387467pt;}
.y10e{bottom:464.758667pt;}
.y39{bottom:464.976133pt;}
.y192{bottom:468.531867pt;}
.y1be{bottom:468.806800pt;}
.yc1{bottom:468.889067pt;}
.y90{bottom:471.565867pt;}
.y1f0{bottom:473.504667pt;}
.ye6{bottom:473.826800pt;}
.y191{bottom:475.731867pt;}
.y153{bottom:476.794000pt;}
.y132{bottom:477.644267pt;}
.yad{bottom:478.406800pt;}
.y63{bottom:478.700800pt;}
.y175{bottom:479.987200pt;}
.ye{bottom:480.387467pt;}
.y10d{bottom:480.758667pt;}
.y38{bottom:480.976133pt;}
.y1bd{bottom:481.606800pt;}
.yc0{bottom:484.889067pt;}
.y1ef{bottom:486.304667pt;}
.y8f{bottom:487.565867pt;}
.ye5{bottom:489.185867pt;}
.y152{bottom:493.077600pt;}
.y131{bottom:493.927867pt;}
.yac{bottom:494.406800pt;}
.y62{bottom:494.700800pt;}
.yd{bottom:496.387467pt;}
.y10c{bottom:496.758667pt;}
.y37{bottom:496.976133pt;}
.y1ee{bottom:499.104667pt;}
.y18f{bottom:499.215467pt;}
.ybf{bottom:500.889067pt;}
.y151{bottom:501.219467pt;}
.y8e{bottom:503.565867pt;}
.ye4{bottom:505.469467pt;}
.y18e{bottom:506.415467pt;}
.y1bc{bottom:507.206800pt;}
.y130{bottom:510.211467pt;}
.yab{bottom:510.406800pt;}
.y61{bottom:510.700800pt;}
.y1ed{bottom:511.904667pt;}
.y174{bottom:511.987200pt;}
.yc{bottom:512.387467pt;}
.y10b{bottom:512.758667pt;}
.y36{bottom:512.976133pt;}
.y190{bottom:513.615467pt;}
.ybe{bottom:516.889067pt;}
.y8d{bottom:519.565867pt;}
.y1bb{bottom:520.006800pt;}
.ye3{bottom:521.753200pt;}
.y1ec{bottom:524.704667pt;}
.yaa{bottom:526.406800pt;}
.y12f{bottom:526.495200pt;}
.y60{bottom:526.700800pt;}
.y173{bottom:527.346133pt;}
.yb{bottom:528.387467pt;}
.y35{bottom:528.976133pt;}
.y150{bottom:531.311600pt;}
.y1ba{bottom:532.806800pt;}
.ybd{bottom:532.889067pt;}
.y8c{bottom:535.565867pt;}
.y1eb{bottom:537.504667pt;}
.ye2{bottom:538.036800pt;}
.ya9{bottom:542.406800pt;}
.y5f{bottom:542.700800pt;}
.y12e{bottom:542.778800pt;}
.y172{bottom:543.629867pt;}
.y10a{bottom:544.758667pt;}
.y34{bottom:544.976133pt;}
.y1b9{bottom:545.606800pt;}
.y14f{bottom:547.311600pt;}
.ybc{bottom:548.889067pt;}
.y1ea{bottom:550.304667pt;}
.y8b{bottom:551.565867pt;}
.ya{bottom:551.946400pt;}
.ye1{bottom:554.320533pt;}
.ya8{bottom:558.406800pt;}
.y5e{bottom:558.700800pt;}
.y12d{bottom:559.062533pt;}
.y171{bottom:559.913467pt;}
.y109{bottom:560.117733pt;}
.y1e9{bottom:563.104667pt;}
.y8a{bottom:567.565867pt;}
.ye0{bottom:570.604133pt;}
.y1b8{bottom:571.206800pt;}
.ya7{bottom:574.406800pt;}
.y5d{bottom:574.700800pt;}
.y12c{bottom:575.346133pt;}
.y1e8{bottom:575.904667pt;}
.y170{bottom:576.197200pt;}
.y108{bottom:576.401333pt;}
.y14e{bottom:579.311600pt;}
.ybb{bottom:580.889067pt;}
.y89{bottom:583.565867pt;}
.y9{bottom:583.946400pt;}
.y1b7{bottom:584.006800pt;}
.y33{bottom:584.535200pt;}
.ydf{bottom:586.911200pt;}
.y1e7{bottom:588.704667pt;}
.y1b0{bottom:590.406800pt;}
.y5c{bottom:590.700800pt;}
.y12b{bottom:591.629867pt;}
.y16f{bottom:592.480800pt;}
.y107{bottom:592.684933pt;}
.y14d{bottom:595.311600pt;}
.yba{bottom:596.248133pt;}
.y1b6{bottom:596.806800pt;}
.ya6{bottom:597.965867pt;}
.y88{bottom:599.565867pt;}
.y8{bottom:599.946400pt;}
.y1e6{bottom:601.504667pt;}
.yde{bottom:603.194933pt;}
.y1af{bottom:606.406800pt;}
.y5b{bottom:606.700800pt;}
.y12a{bottom:607.913467pt;}
.y16e{bottom:608.764533pt;}
.y106{bottom:608.968667pt;}
.y1b5{bottom:609.606800pt;}
.yb9{bottom:610.648133pt;}
.y14c{bottom:611.311600pt;}
.yb8{bottom:612.531867pt;}
.y1e5{bottom:614.304667pt;}
.y87{bottom:615.565867pt;}
.y7{bottom:615.946400pt;}
.y1ae{bottom:622.406800pt;}
.y5a{bottom:622.700800pt;}
.y129{bottom:624.197200pt;}
.y16d{bottom:625.048133pt;}
.ydd{bottom:625.121733pt;}
.y105{bottom:625.252267pt;}
.yb7{bottom:626.931867pt;}
.y1e4{bottom:627.104667pt;}
.y14b{bottom:627.311600pt;}
.y86{bottom:631.565867pt;}
.y6{bottom:631.946400pt;}
.y32{bottom:634.135200pt;}
.y1b4{bottom:635.206800pt;}
.y1ad{bottom:638.406800pt;}
.y59{bottom:638.700800pt;}
.y1e3{bottom:639.904667pt;}
.y128{bottom:640.480800pt;}
.ydc{bottom:641.121733pt;}
.yb6{bottom:641.331867pt;}
.y104{bottom:641.536000pt;}
.y16c{bottom:642.273600pt;}
.y14a{bottom:643.311600pt;}
.y85{bottom:647.565867pt;}
.y5{bottom:647.946400pt;}
.y1b3{bottom:648.006800pt;}
.y31{bottom:648.535200pt;}
.y16b{bottom:649.473600pt;}
.y1e2{bottom:652.704667pt;}
.y1ac{bottom:654.406800pt;}
.y58{bottom:654.700800pt;}
.y127{bottom:656.764533pt;}
.yb5{bottom:657.615467pt;}
.y103{bottom:657.819600pt;}
.y149{bottom:659.311600pt;}
.y1b2{bottom:660.806800pt;}
.y30{bottom:662.935200pt;}
.y84{bottom:663.565867pt;}
.y1e1{bottom:665.504667pt;}
.y1ab{bottom:670.406800pt;}
.y57{bottom:670.700800pt;}
.y4{bottom:671.505600pt;}
.y126{bottom:673.048133pt;}
.ydb{bottom:673.121733pt;}
.y1b1{bottom:673.606800pt;}
.y102{bottom:674.103333pt;}
.y2f{bottom:677.335200pt;}
.y1e0{bottom:678.304667pt;}
.y83{bottom:679.565867pt;}
.y56{bottom:686.700800pt;}
.yda{bottom:688.480800pt;}
.y125{bottom:689.331867pt;}
.y101{bottom:690.386933pt;}
.y1df{bottom:691.104667pt;}
.y148{bottom:691.311600pt;}
.y2e{bottom:691.735200pt;}
.y1aa{bottom:693.965867pt;}
.y82{bottom:695.565867pt;}
.y124{bottom:697.473600pt;}
.y55{bottom:702.700800pt;}
.y1de{bottom:703.904667pt;}
.yd9{bottom:704.764533pt;}
.y2d{bottom:706.135200pt;}
.y100{bottom:706.670667pt;}
.y81{bottom:711.565867pt;}
.y1dd{bottom:716.704667pt;}
.y54{bottom:718.700800pt;}
.y3{bottom:719.505600pt;}
.y2c{bottom:720.535200pt;}
.yd8{bottom:721.048133pt;}
.yff{bottom:722.954267pt;}
.y80{bottom:727.565867pt;}
.y1dc{bottom:729.504667pt;}
.y53{bottom:734.700800pt;}
.y2b{bottom:734.935200pt;}
.yd7{bottom:737.331867pt;}
.yfe{bottom:739.238000pt;}
.y2{bottom:741.905467pt;}
.y1db{bottom:742.304667pt;}
.y7f{bottom:743.565867pt;}
.y2a{bottom:749.335067pt;}
.y52{bottom:750.700800pt;}
.yd6{bottom:753.638933pt;}
.y1da{bottom:755.104667pt;}
.yfd{bottom:755.521600pt;}
.y7e{bottom:759.565867pt;}
.y29{bottom:763.735200pt;}
.y51{bottom:766.700800pt;}
.y1d9{bottom:767.904667pt;}
.yfc{bottom:772.138667pt;}
.y7d{bottom:775.565867pt;}
.y28{bottom:778.135200pt;}
.yfb{bottom:780.280400pt;}
.y1d8{bottom:780.704667pt;}
.y50{bottom:790.259867pt;}
.y7c{bottom:791.565867pt;}
.y27{bottom:792.535200pt;}
.y1d7{bottom:793.504667pt;}
.y26{bottom:811.826800pt;}
.y1{bottom:813.511600pt;}
.h15{height:31.062500pt;}
.h9{height:34.945312pt;}
.h14{height:38.541667pt;}
.hd{height:38.625000pt;}
.h7{height:38.750000pt;}
.h5{height:38.828125pt;}
.hf{height:43.359375pt;}
.he{height:43.359792pt;}
.h8{height:43.453125pt;}
.h4{height:46.506667pt;}
.hc{height:48.177083pt;}
.h6{height:48.281250pt;}
.ha{height:51.157333pt;}
.h2{height:58.370133pt;}
.h12{height:63.745313pt;}
.h3{height:65.109333pt;}
.h10{height:67.512246pt;}
.h11{height:67.512779pt;}
.h13{height:72.253125pt;}
.hb{height:112.281250pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x15{left:56.692933pt;}
.x16{left:75.590533pt;}
.x1{left:79.370133pt;}
.x25{left:83.149600pt;}
.x21{left:84.827467pt;}
.x39{left:85.831867pt;}
.x1a{left:86.929067pt;}
.x3f{left:90.381733pt;}
.x17{left:94.488133pt;}
.x41{left:96.162667pt;}
.x13{left:98.267733pt;}
.x26{left:101.240667pt;}
.x2{left:105.659333pt;}
.x33{left:109.303067pt;}
.x31{left:113.082533pt;}
.x23{left:114.608667pt;}
.x1b{left:117.566933pt;}
.x28{left:118.915733pt;}
.x34{left:120.641733pt;}
.x24{left:122.615467pt;}
.x2e{left:124.421200pt;}
.x5{left:136.504133pt;}
.x18{left:139.393200pt;}
.x36{left:141.102400pt;}
.x30{left:144.881867pt;}
.x3{left:146.809467pt;}
.x2c{left:154.960667pt;}
.x2a{left:158.740133pt;}
.x11{left:164.306000pt;}
.x9{left:168.503600pt;}
.xe{left:170.103600pt;}
.xd{left:172.689867pt;}
.x3a{left:181.031067pt;}
.x10{left:182.716000pt;}
.x1c{left:192.543067pt;}
.x12{left:194.218667pt;}
.x8{left:199.830800pt;}
.x6{left:201.531733pt;}
.x19{left:203.361067pt;}
.x7{left:205.094533pt;}
.xa{left:206.552933pt;}
.x2d{left:209.696933pt;}
.xc{left:217.495600pt;}
.x32{left:221.035333pt;}
.x38{left:223.555067pt;}
.x2b{left:225.125200pt;}
.x29{left:228.125200pt;}
.xf{left:230.346133pt;}
.x27{left:232.158800pt;}
.x35{left:234.570267pt;}
.x2f{left:238.349733pt;}
.xb{left:239.810533pt;}
.x3b{left:251.003867pt;}
.x4{left:252.585733pt;}
.x46{left:258.419467pt;}
.x1d{left:261.747867pt;}
.x42{left:264.862133pt;}
.x14{left:269.825600pt;}
.x1e{left:274.521333pt;}
.x3c{left:276.954933pt;}
.x43{left:290.813333pt;}
.x3d{left:348.820267pt;}
.x44{left:355.623467pt;}
.x3e{left:359.393600pt;}
.x1f{left:364.494533pt;}
.x45{left:366.196667pt;}
.x22{left:409.450400pt;}
.x40{left:440.496133pt;}
.x20{left:457.968800pt;}
.x37{left:492.692667pt;}
}




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