
    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_559d026e1e2af766d1a99adb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_d3ca53089c3fd9f0bb640df6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_52ce6be32afc9cbc51ea0de3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.021000;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_e0f23b06edef2dc011957b23.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.037000;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_e0f6499cfdd7d270c27a7f34.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968750;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_bcb7b93088230891ec797a58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.985000;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_af7ca23af8192f0519c2dc37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091000;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_e42a381edb72946421f9b5b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_3dd71cfd1c16b41e45c55a60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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);}
.v2{vertical-align:-16.983000px;}
.v3{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls6{letter-spacing:-2.640000px;}
.ls2{letter-spacing:-1.458000px;}
.ls5{letter-spacing:-0.960000px;}
.ls1{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:4.050000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-18.000000px;}
.ws63{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.800000px;}
.ws40{word-spacing:-10.476000px;}
.ws1c{word-spacing:-10.368000px;}
.ws0{word-spacing:-9.600000px;}
.ws5b{word-spacing:-9.312000px;}
.ws5{word-spacing:-9.216000px;}
.ws4c{word-spacing:-8.640000px;}
.ws4e{word-spacing:-6.960000px;}
.ws1{word-spacing:-6.296400px;}
.ws2{word-spacing:-5.946600px;}
.ws2b{word-spacing:-4.050000px;}
.ws6c{word-spacing:-2.430000px;}
.ws33{word-spacing:-2.052000px;}
.ws6d{word-spacing:-1.998000px;}
.ws70{word-spacing:-1.944000px;}
.ws65{word-spacing:-1.890000px;}
.wsf{word-spacing:-1.776000px;}
.ws59{word-spacing:-1.512000px;}
.ws64{word-spacing:-1.458000px;}
.ws22{word-spacing:-1.404000px;}
.ws56{word-spacing:-1.242000px;}
.ws24{word-spacing:-1.188000px;}
.ws49{word-spacing:-1.104000px;}
.ws1f{word-spacing:-1.026000px;}
.ws42{word-spacing:-0.972000px;}
.ws25{word-spacing:-0.918000px;}
.ws58{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.756000px;}
.wsa{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.672000px;}
.ws62{word-spacing:-0.624000px;}
.ws37{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.336000px;}
.ws48{word-spacing:-0.288000px;}
.ws44{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.240000px;}
.ws68{word-spacing:-0.162000px;}
.ws72{word-spacing:-0.108000px;}
.ws4a{word-spacing:-0.096000px;}
.ws2d{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.054000px;}
.ws4d{word-spacing:0.240000px;}
.ws57{word-spacing:0.270000px;}
.ws3d{word-spacing:0.324000px;}
.ws3c{word-spacing:0.378000px;}
.ws5e{word-spacing:0.432000px;}
.ws41{word-spacing:0.486000px;}
.ws5d{word-spacing:0.540000px;}
.ws69{word-spacing:0.594000px;}
.ws1a{word-spacing:0.702000px;}
.ws8{word-spacing:0.720000px;}
.ws28{word-spacing:0.756000px;}
.ws60{word-spacing:0.810000px;}
.ws6{word-spacing:0.816000px;}
.ws67{word-spacing:0.864000px;}
.ws7{word-spacing:0.960000px;}
.ws1d{word-spacing:0.972000px;}
.ws20{word-spacing:1.026000px;}
.ws71{word-spacing:1.080000px;}
.ws36{word-spacing:1.188000px;}
.ws16{word-spacing:1.242000px;}
.ws54{word-spacing:1.350000px;}
.ws23{word-spacing:1.458000px;}
.ws34{word-spacing:1.512000px;}
.ws32{word-spacing:1.566000px;}
.ws55{word-spacing:1.674000px;}
.ws11{word-spacing:1.728000px;}
.wsc{word-spacing:1.776000px;}
.ws6f{word-spacing:1.782000px;}
.ws15{word-spacing:1.836000px;}
.ws43{word-spacing:1.890000px;}
.ws3f{word-spacing:1.944000px;}
.ws6b{word-spacing:2.052000px;}
.ws26{word-spacing:2.106000px;}
.ws27{word-spacing:2.214000px;}
.ws1b{word-spacing:2.322000px;}
.ws47{word-spacing:2.352000px;}
.ws35{word-spacing:2.430000px;}
.wsd{word-spacing:2.448000px;}
.ws30{word-spacing:2.484000px;}
.ws5a{word-spacing:2.496000px;}
.wse{word-spacing:2.544000px;}
.ws39{word-spacing:2.592000px;}
.ws50{word-spacing:2.646000px;}
.ws46{word-spacing:2.700000px;}
.ws29{word-spacing:2.754000px;}
.ws3b{word-spacing:2.808000px;}
.ws5f{word-spacing:2.862000px;}
.ws19{word-spacing:2.916000px;}
.ws52{word-spacing:3.132000px;}
.ws6a{word-spacing:3.186000px;}
.ws45{word-spacing:3.294000px;}
.ws17{word-spacing:3.348000px;}
.ws78{word-spacing:3.402000px;}
.ws1e{word-spacing:3.456000px;}
.ws38{word-spacing:3.510000px;}
.ws6e{word-spacing:3.564000px;}
.ws2a{word-spacing:3.888000px;}
.ws2e{word-spacing:3.996000px;}
.ws2c{word-spacing:4.050000px;}
.ws73{word-spacing:4.212000px;}
.ws61{word-spacing:4.368000px;}
.ws3e{word-spacing:4.644000px;}
.ws2f{word-spacing:4.806000px;}
.ws75{word-spacing:5.292000px;}
.ws66{word-spacing:5.454000px;}
.ws5c{word-spacing:5.562000px;}
.ws53{word-spacing:5.724000px;}
.ws51{word-spacing:5.886000px;}
.ws74{word-spacing:6.048000px;}
.ws3a{word-spacing:6.102000px;}
.ws31{word-spacing:6.156000px;}
.ws14{word-spacing:6.426000px;}
.ws76{word-spacing:6.696000px;}
.ws13{word-spacing:6.966000px;}
.ws77{word-spacing:7.722000px;}
._b{margin-left:-7.954800px;}
._6{margin-left:-6.690000px;}
._3{margin-left:-4.574400px;}
._1{margin-left:-2.625600px;}
._0{margin-left:-1.065600px;}
._2{width:1.152000px;}
._5{width:2.179200px;}
._7{width:3.520800px;}
._8{width:4.562400px;}
._9{width:5.686800px;}
._a{width:6.833400px;}
._c{width:7.895400px;}
._11{width:9.047400px;}
._20{width:13.341600px;}
._16{width:115.987200px;}
._f{width:127.437000px;}
._14{width:130.093200px;}
._10{width:136.011600px;}
._17{width:146.178600px;}
._18{width:150.186600px;}
._12{width:159.183600px;}
._1b{width:163.418400px;}
._15{width:172.573800px;}
._1f{width:179.442600px;}
._13{width:181.218600px;}
._1a{width:188.329200px;}
._e{width:190.108200px;}
._d{width:195.410400px;}
._19{width:212.818200px;}
._1e{width:282.244800px;}
._1c{width:337.445400px;}
._1d{width:567.157800px;}
._4{width:1611.731400px;}
.fc3{color:rgb(168,199,124);}
.fc2{color:rgb(49,114,121);}
.fc1{color:rgb(35,31,32);}
.fc4{color:rgb(58,135,142);}
.fc0{color:rgb(101,98,99);}
.fsa{font-size:27.984000px;}
.fs7{font-size:29.733000px;}
.fs5{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:37.457100px;}
.y16{bottom:38.019600px;}
.y200{bottom:78.040050px;}
.y17d{bottom:81.929550px;}
.y93{bottom:83.616600px;}
.ybb{bottom:85.544250px;}
.y252{bottom:86.564700px;}
.y228{bottom:93.282900px;}
.y1ff{bottom:94.240200px;}
.y17c{bottom:98.129550px;}
.y92{bottom:99.816750px;}
.yba{bottom:101.744250px;}
.y251{bottom:102.764700px;}
.y66{bottom:109.408500px;}
.y227{bottom:109.482900px;}
.ye8{bottom:111.566400px;}
.y1b6{bottom:113.819250px;}
.y17b{bottom:114.329550px;}
.y91{bottom:116.016750px;}
.y1fe{bottom:116.818050px;}
.yb9{bottom:117.944250px;}
.y250{bottom:118.964700px;}
.y65{bottom:125.608500px;}
.y226{bottom:125.682900px;}
.ye7{bottom:127.766400px;}
.y1b5{bottom:128.219250px;}
.y17a{bottom:130.529550px;}
.y1fd{bottom:133.018050px;}
.y206{bottom:134.144250px;}
.y90{bottom:136.468650px;}
.yb8{bottom:140.522250px;}
.y24f{bottom:141.542700px;}
.y64{bottom:141.808500px;}
.y1b4{bottom:142.619250px;}
.ye6{bottom:143.966400px;}
.y179{bottom:146.729400px;}
.y225{bottom:148.260900px;}
.y1fc{bottom:149.218050px;}
.y13b{bottom:152.184450px;}
.yb7{bottom:156.722250px;}
.y1b3{bottom:157.019250px;}
.y24e{bottom:157.742550px;}
.y63{bottom:158.008500px;}
.ye5{bottom:160.166400px;}
.y224{bottom:164.460900px;}
.y1fb{bottom:165.418050px;}
.y13a{bottom:166.584450px;}
.y178{bottom:169.307400px;}
.y8f{bottom:169.350600px;}
.y106{bottom:169.478100px;}
.y1b2{bottom:171.419250px;}
.yb6{bottom:172.922250px;}
.y24d{bottom:173.942550px;}
.y62{bottom:174.208500px;}
.ye4{bottom:176.366400px;}
.y223{bottom:180.660900px;}
.y139{bottom:180.984450px;}
.y1fa{bottom:181.618050px;}
.y177{bottom:185.507400px;}
.y8e{bottom:185.550600px;}
.y105{bottom:185.678100px;}
.yb5{bottom:189.122250px;}
.y61{bottom:190.408500px;}
.ye3{bottom:192.566400px;}
.y1b1{bottom:194.548200px;}
.y138{bottom:195.384450px;}
.y24c{bottom:196.520550px;}
.y176{bottom:201.707400px;}
.y8d{bottom:201.750600px;}
.y104{bottom:201.878100px;}
.y222{bottom:203.238900px;}
.y1f9{bottom:204.196050px;}
.yb4{bottom:205.322250px;}
.y60{bottom:206.608500px;}
.ye2{bottom:208.766400px;}
.y1b0{bottom:208.948200px;}
.y137{bottom:209.784450px;}
.y24b{bottom:212.720550px;}
.y175{bottom:217.907400px;}
.y8c{bottom:217.950600px;}
.y103{bottom:218.078100px;}
.y221{bottom:219.438900px;}
.yb3{bottom:221.522250px;}
.y5f{bottom:222.808500px;}
.y1e0{bottom:223.082550px;}
.y1af{bottom:223.348200px;}
.y136{bottom:224.184450px;}
.ye1{bottom:224.966400px;}
.y24a{bottom:228.920550px;}
.y15{bottom:233.983950px;}
.y174{bottom:234.107400px;}
.y8b{bottom:234.150600px;}
.y102{bottom:234.278100px;}
.y1df{bottom:237.482550px;}
.yb2{bottom:237.722250px;}
.y1ae{bottom:237.748200px;}
.y135{bottom:238.584450px;}
.y5e{bottom:239.008500px;}
.ye0{bottom:241.166400px;}
.y220{bottom:242.016750px;}
.y173{bottom:250.307400px;}
.y8a{bottom:250.350600px;}
.y101{bottom:250.478100px;}
.y249{bottom:251.498550px;}
.y1de{bottom:251.882550px;}
.y1ad{bottom:252.148200px;}
.y134{bottom:252.984450px;}
.yb1{bottom:253.922250px;}
.y14{bottom:254.761950px;}
.y5d{bottom:255.208500px;}
.y1f8{bottom:256.932900px;}
.y21f{bottom:258.216750px;}
.ydf{bottom:263.744400px;}
.y1dd{bottom:266.282550px;}
.y89{bottom:266.550600px;}
.y100{bottom:266.678100px;}
.y248{bottom:267.698550px;}
.y1ac{bottom:269.652150px;}
.y184{bottom:270.122250px;}
.y133{bottom:270.488400px;}
.y172{bottom:270.759450px;}
.y1a8{bottom:273.289350px;}
.y1f7{bottom:274.436850px;}
.yb0{bottom:276.500100px;}
.y5c{bottom:277.786500px;}
.yde{bottom:279.944400px;}
.y1dc{bottom:280.682550px;}
.y21e{bottom:280.794750px;}
.y13{bottom:281.917800px;}
.y88{bottom:282.750600px;}
.yff{bottom:282.878100px;}
.y247{bottom:283.898550px;}
.y1ab{bottom:284.052150px;}
.y132{bottom:284.888400px;}
.y1a7{bottom:287.689350px;}
.y1f6{bottom:291.940650px;}
.yaf{bottom:292.700250px;}
.y5b{bottom:293.986500px;}
.y1db{bottom:295.082550px;}
.ydd{bottom:296.144400px;}
.y21d{bottom:296.994750px;}
.y167{bottom:298.452150px;}
.y87{bottom:298.950600px;}
.yfe{bottom:299.078100px;}
.y131{bottom:299.288400px;}
.y1a6{bottom:302.089350px;}
.y12{bottom:302.695800px;}
.y246{bottom:306.476400px;}
.yae{bottom:308.900100px;}
.y1da{bottom:309.482550px;}
.y5a{bottom:310.186500px;}
.y1f5{bottom:311.192700px;}
.y166{bottom:312.852150px;}
.y130{bottom:313.688250px;}
.y86{bottom:315.150600px;}
.y1a5{bottom:316.489350px;}
.y171{bottom:318.523200px;}
.ydc{bottom:318.722250px;}
.y21c{bottom:319.572750px;}
.yfd{bottom:321.656100px;}
.y245{bottom:322.676400px;}
.yad{bottom:325.100250px;}
.y59{bottom:326.386500px;}
.y165{bottom:327.252150px;}
.y12f{bottom:328.088400px;}
.y1d9{bottom:328.734450px;}
.y11{bottom:329.851650px;}
.y1a4{bottom:330.889350px;}
.y170{bottom:332.923200px;}
.ydb{bottom:334.922250px;}
.y21b{bottom:335.772750px;}
.y85{bottom:337.728450px;}
.yfc{bottom:337.856100px;}
.y244{bottom:338.876400px;}
.y1f4{bottom:339.173550px;}
.yac{bottom:341.300100px;}
.y164{bottom:341.652150px;}
.y12e{bottom:342.488400px;}
.y58{bottom:342.586500px;}
.y1d8{bottom:343.134450px;}
.y10{bottom:344.251650px;}
.y1a3{bottom:345.289350px;}
.y16f{bottom:347.323200px;}
.yda{bottom:351.122250px;}
.y21a{bottom:351.972750px;}
.yfb{bottom:354.056100px;}
.y163{bottom:356.052150px;}
.y12d{bottom:356.888400px;}
.yab{bottom:357.500100px;}
.yf{bottom:358.651650px;}
.y57{bottom:358.786500px;}
.y1a2{bottom:359.689350px;}
.y243{bottom:361.454400px;}
.y16e{bottom:361.723200px;}
.yd9{bottom:367.322250px;}
.yfa{bottom:370.256100px;}
.y162{bottom:370.452150px;}
.y1d7{bottom:371.115450px;}
.y12c{bottom:371.288400px;}
.yaa{bottom:373.700250px;}
.y1a1{bottom:374.089350px;}
.y219{bottom:374.550600px;}
.y56{bottom:374.986500px;}
.y16d{bottom:376.123200px;}
.y1f3{bottom:376.959450px;}
.y242{bottom:377.654400px;}
.yd8{bottom:383.522250px;}
.y161{bottom:384.852150px;}
.y1d6{bottom:385.515450px;}
.y12b{bottom:385.688250px;}
.ye{bottom:385.807500px;}
.yf9{bottom:386.456100px;}
.y84{bottom:388.114350px;}
.y1a0{bottom:388.489350px;}
.ya9{bottom:389.900100px;}
.y218{bottom:390.750600px;}
.y1f2{bottom:393.159450px;}
.y241{bottom:393.854400px;}
.y205{bottom:396.278100px;}
.y55{bottom:397.564500px;}
.y160{bottom:399.252150px;}
.yd7{bottom:399.722250px;}
.y12a{bottom:400.088400px;}
.yd{bottom:400.207650px;}
.y35{bottom:402.216750px;}
.yf8{bottom:402.656100px;}
.y19f{bottom:402.889350px;}
.y83{bottom:404.314350px;}
.y183{bottom:406.100250px;}
.y1f1{bottom:409.359450px;}
.ya8{bottom:412.478100px;}
.y217{bottom:413.328600px;}
.y15f{bottom:413.652150px;}
.y54{bottom:413.764500px;}
.yd6{bottom:415.922250px;}
.y240{bottom:416.432400px;}
.y19e{bottom:417.289350px;}
.y129{bottom:417.592350px;}
.yf7{bottom:418.856100px;}
.yc{bottom:420.985500px;}
.y182{bottom:422.300100px;}
.y1d5{bottom:423.301200px;}
.y1f0{bottom:425.559450px;}
.y82{bottom:426.892350px;}
.y15e{bottom:428.052150px;}
.ya7{bottom:428.678100px;}
.y216{bottom:429.528600px;}
.y53{bottom:429.964350px;}
.y19d{bottom:431.689350px;}
.y128{bottom:431.992350px;}
.yd5{bottom:432.122250px;}
.y23f{bottom:432.632400px;}
.y34{bottom:433.624650px;}
.yf6{bottom:435.056100px;}
.y1d4{bottom:439.501200px;}
.y1ef{bottom:441.759450px;}
.y15d{bottom:442.452150px;}
.y81{bottom:443.092350px;}
.ya6{bottom:444.878100px;}
.y19c{bottom:446.089350px;}
.y52{bottom:446.164500px;}
.y127{bottom:446.392200px;}
.y33{bottom:448.024650px;}
.y23e{bottom:448.832400px;}
.yf5{bottom:451.256100px;}
.y215{bottom:452.106600px;}
.yd4{bottom:454.700250px;}
.y1d3{bottom:455.701200px;}
.yb{bottom:456.639150px;}
.y15c{bottom:456.852150px;}
.y80{bottom:459.292350px;}
.y19b{bottom:460.489350px;}
.y126{bottom:460.792350px;}
.ya5{bottom:461.078100px;}
.y51{bottom:462.364500px;}
.y1ee{bottom:464.337450px;}
.y32{bottom:466.676700px;}
.yf4{bottom:467.456100px;}
.y214{bottom:468.306600px;}
.ya{bottom:469.819500px;}
.yd3{bottom:470.900250px;}
.y15b{bottom:471.252150px;}
.y23d{bottom:471.410250px;}
.y1d2{bottom:471.901200px;}
.y19a{bottom:474.889350px;}
.y125{bottom:475.192350px;}
.y7f{bottom:475.492350px;}
.ya4{bottom:477.278100px;}
.y50{bottom:478.564500px;}
.y1ed{bottom:480.537300px;}
.y31{bottom:481.076700px;}
.yf3{bottom:483.656100px;}
.y15a{bottom:485.652150px;}
.yd2{bottom:487.100250px;}
.y23c{bottom:487.610250px;}
.y1d1{bottom:488.101200px;}
.y9{bottom:488.145300px;}
.y1aa{bottom:488.756100px;}
.y213{bottom:490.884450px;}
.y7e{bottom:491.692350px;}
.y199{bottom:492.393300px;}
.y124{bottom:492.696300px;}
.ya3{bottom:493.478100px;}
.y4f{bottom:494.764500px;}
.y30{bottom:495.476550px;}
.y1ec{bottom:496.737450px;}
.yf2{bottom:499.856100px;}
.y159{bottom:503.156100px;}
.yd1{bottom:503.300250px;}
.y1d0{bottom:504.301200px;}
.y198{bottom:506.793300px;}
.y212{bottom:507.084450px;}
.y123{bottom:507.096300px;}
.y7d{bottom:507.892350px;}
.ya2{bottom:509.678100px;}
.y2f{bottom:509.876700px;}
.y23b{bottom:510.188250px;}
.y4e{bottom:510.964350px;}
.y1eb{bottom:512.937450px;}
.y158{bottom:517.556100px;}
.yd0{bottom:519.500250px;}
.y1cf{bottom:520.501200px;}
.y197{bottom:521.193300px;}
.y122{bottom:521.496300px;}
.yf1{bottom:522.433950px;}
.y211{bottom:523.284600px;}
.y8{bottom:525.605250px;}
.y181{bottom:525.878100px;}
.y23a{bottom:526.388250px;}
.y4d{bottom:527.164500px;}
.y2e{bottom:528.528600px;}
.y1ea{bottom:529.137300px;}
.y7c{bottom:530.470200px;}
.y157{bottom:531.956100px;}
.ya1{bottom:532.256100px;}
.y196{bottom:535.593300px;}
.ycf{bottom:535.700250px;}
.y121{bottom:535.896300px;}
.y1ce{bottom:536.701200px;}
.yf0{bottom:538.634100px;}
.y180{bottom:542.078100px;}
.y2d{bottom:542.928600px;}
.y4c{bottom:543.364500px;}
.y1e9{bottom:545.337450px;}
.y210{bottom:545.862450px;}
.y156{bottom:546.356100px;}
.y7b{bottom:546.670200px;}
.ya0{bottom:548.456100px;}
.y239{bottom:548.966250px;}
.y195{bottom:549.993300px;}
.y120{bottom:550.296300px;}
.yce{bottom:551.900250px;}
.y7{bottom:552.605250px;}
.y1cd{bottom:552.901200px;}
.yef{bottom:554.833950px;}
.y2c{bottom:557.328600px;}
.y155{bottom:560.756100px;}
.y20f{bottom:562.062450px;}
.y7a{bottom:562.870200px;}
.y194{bottom:564.393300px;}
.y9f{bottom:564.656100px;}
.y11f{bottom:564.696300px;}
.y238{bottom:565.166250px;}
.y4b{bottom:565.942350px;}
.y1e8{bottom:567.915300px;}
.ycd{bottom:568.100250px;}
.y1cc{bottom:569.101200px;}
.yee{bottom:571.033950px;}
.y2b{bottom:571.728600px;}
.y154{bottom:575.156100px;}
.y20e{bottom:578.262450px;}
.y193{bottom:578.793300px;}
.y79{bottom:579.070200px;}
.y11e{bottom:579.096300px;}
.y9e{bottom:580.856100px;}
.y237{bottom:581.366250px;}
.y4a{bottom:582.142350px;}
.y1e7{bottom:584.115300px;}
.y6{bottom:585.983250px;}
.y2a{bottom:586.128600px;}
.yed{bottom:587.233950px;}
.y153{bottom:589.556100px;}
.ycc{bottom:590.678250px;}
.y1cb{bottom:591.679200px;}
.y192{bottom:593.193300px;}
.y11d{bottom:593.496300px;}
.y78{bottom:595.270200px;}
.y9d{bottom:597.056100px;}
.y49{bottom:598.342350px;}
.y1e6{bottom:600.315300px;}
.y20d{bottom:600.840450px;}
.yec{bottom:603.434100px;}
.y236{bottom:603.944250px;}
.y152{bottom:603.956100px;}
.y29{bottom:604.780650px;}
.ycb{bottom:606.878250px;}
.y191{bottom:607.593300px;}
.y1ca{bottom:607.879200px;}
.y11c{bottom:607.896300px;}
.y77{bottom:611.470350px;}
.y5{bottom:612.983250px;}
.y9c{bottom:613.256100px;}
.y48{bottom:614.542350px;}
.y1e5{bottom:616.515300px;}
.y20c{bottom:617.040450px;}
.y151{bottom:618.356100px;}
.y28{bottom:619.180500px;}
.yeb{bottom:619.634100px;}
.y235{bottom:620.144100px;}
.y1a9{bottom:621.460050px;}
.y190{bottom:621.993300px;}
.y11b{bottom:622.296300px;}
.yca{bottom:623.078250px;}
.y1c9{bottom:624.079200px;}
.y76{bottom:627.670200px;}
.y17f{bottom:629.456100px;}
.y47{bottom:630.742350px;}
.y150{bottom:632.756100px;}
.y20b{bottom:633.240450px;}
.y27{bottom:633.580650px;}
.y9b{bottom:635.833950px;}
.y16c{bottom:635.860050px;}
.y18f{bottom:636.393300px;}
.y11a{bottom:636.696300px;}
.y1e4{bottom:636.967350px;}
.yc9{bottom:639.278250px;}
.y1c8{bottom:640.279200px;}
.y234{bottom:642.722100px;}
.y75{bottom:643.870200px;}
.y17e{bottom:645.656100px;}
.y14f{bottom:647.156100px;}
.y16b{bottom:650.260050px;}
.y18e{bottom:650.793300px;}
.y9a{bottom:652.033950px;}
.y46{bottom:653.320350px;}
.y119{bottom:654.200100px;}
.y26{bottom:654.358500px;}
.yc8{bottom:655.478250px;}
.y20a{bottom:655.818300px;}
.y1c7{bottom:656.479200px;}
.y233{bottom:658.922100px;}
.y4{bottom:661.243050px;}
.y14e{bottom:661.556100px;}
.y204{bottom:661.856100px;}
.y16a{bottom:664.660050px;}
.y18d{bottom:665.193300px;}
.y74{bottom:666.448200px;}
.y99{bottom:668.233950px;}
.y118{bottom:668.600100px;}
.y45{bottom:669.520350px;}
.yc7{bottom:671.678250px;}
.y209{bottom:672.018450px;}
.y1c6{bottom:672.679200px;}
.y232{bottom:675.122100px;}
.y14d{bottom:675.956100px;}
.y203{bottom:678.056100px;}
.y169{bottom:679.060050px;}
.y18c{bottom:679.593300px;}
.y3{bottom:681.694950px;}
.y117{bottom:683.000100px;}
.y98{bottom:684.434100px;}
.y1e3{bottom:684.731100px;}
.y44{bottom:685.720350px;}
.y208{bottom:688.218450px;}
.y1c5{bottom:688.879200px;}
.y14c{bottom:690.356100px;}
.y168{bottom:693.460050px;}
.y18b{bottom:693.993300px;}
.y202{bottom:694.256100px;}
.yc6{bottom:694.256250px;}
.y25{bottom:696.070350px;}
.y116{bottom:697.400100px;}
.y231{bottom:697.700100px;}
.y1e2{bottom:699.131100px;}
.y97{bottom:700.634100px;}
.y43{bottom:701.920350px;}
.y1c4{bottom:705.079200px;}
.y14b{bottom:707.860050px;}
.y18a{bottom:708.393300px;}
.y201{bottom:710.456100px;}
.yc5{bottom:710.456250px;}
.y207{bottom:710.796300px;}
.y115{bottom:711.800100px;}
.y1e1{bottom:713.531100px;}
.y230{bottom:713.900100px;}
.y73{bottom:716.833950px;}
.y14a{bottom:722.260050px;}
.y189{bottom:722.793300px;}
.y42{bottom:724.498200px;}
.y114{bottom:726.200100px;}
.yc4{bottom:726.656100px;}
.y24{bottom:727.478250px;}
.y1c3{bottom:727.657200px;}
.y22f{bottom:730.100100px;}
.y72{bottom:733.033950px;}
.y149{bottom:736.660050px;}
.y23{bottom:741.878250px;}
.y188{bottom:742.045200px;}
.yc3{bottom:742.856100px;}
.y113{bottom:743.704050px;}
.y1c2{bottom:743.857200px;}
.y71{bottom:749.233950px;}
.y148{bottom:751.060050px;}
.y22e{bottom:752.677950px;}
.yea{bottom:755.611950px;}
.y187{bottom:756.445200px;}
.y112{bottom:758.104050px;}
.y1c1{bottom:760.057200px;}
.y22{bottom:760.530150px;}
.y70{bottom:765.434100px;}
.y147{bottom:765.460050px;}
.y22d{bottom:768.877950px;}
.ye9{bottom:771.811950px;}
.y111{bottom:772.504050px;}
.y41{bottom:774.884100px;}
.y21{bottom:774.930150px;}
.y1c0{bottom:776.257200px;}
.y146{bottom:779.860050px;}
.y6f{bottom:781.634100px;}
.y186{bottom:784.426050px;}
.y22c{bottom:785.078100px;}
.y110{bottom:786.904050px;}
.y96{bottom:788.011950px;}
.y20{bottom:789.330150px;}
.y40{bottom:791.084100px;}
.y1bf{bottom:792.457050px;}
.y145{bottom:794.260050px;}
.y6e{bottom:797.833950px;}
.yc2{bottom:797.834100px;}
.y185{bottom:798.826200px;}
.y10f{bottom:801.304050px;}
.y1f{bottom:803.730150px;}
.y95{bottom:804.211950px;}
.y253{bottom:806.196300px;}
.y3f{bottom:807.284100px;}
.y22b{bottom:807.655950px;}
.y1be{bottom:808.657050px;}
.y144{bottom:808.660050px;}
.y6d{bottom:814.033950px;}
.yc1{bottom:814.034100px;}
.y10e{bottom:815.704050px;}
.y94{bottom:820.411950px;}
.y1e{bottom:822.382200px;}
.y143{bottom:823.060050px;}
.y3e{bottom:823.484100px;}
.y22a{bottom:823.855950px;}
.y1bd{bottom:824.857050px;}
.y10d{bottom:830.104050px;}
.yc0{bottom:830.234100px;}
.y6c{bottom:836.611950px;}
.y1d{bottom:836.782050px;}
.y142{bottom:837.459900px;}
.y3d{bottom:839.684100px;}
.y229{bottom:840.056100px;}
.y1bc{bottom:841.057050px;}
.y10c{bottom:844.504050px;}
.ybf{bottom:846.434100px;}
.y1c{bottom:851.182050px;}
.y141{bottom:851.860050px;}
.y6b{bottom:852.811950px;}
.y3c{bottom:855.884100px;}
.y10b{bottom:858.904050px;}
.ybe{bottom:862.634100px;}
.y1bb{bottom:863.635050px;}
.y1b{bottom:865.582050px;}
.y140{bottom:866.260050px;}
.y6a{bottom:869.011950px;}
.y3b{bottom:872.083950px;}
.y10a{bottom:878.156100px;}
.ybd{bottom:878.833950px;}
.y1ba{bottom:879.835050px;}
.y13f{bottom:880.660050px;}
.y1a{bottom:884.234100px;}
.y69{bottom:885.211950px;}
.y3a{bottom:888.283950px;}
.y109{bottom:892.556100px;}
.ybc{bottom:895.033950px;}
.y13e{bottom:895.060050px;}
.y1b9{bottom:896.035050px;}
.y19{bottom:898.634100px;}
.y68{bottom:901.411950px;}
.y39{bottom:904.484100px;}
.y1b8{bottom:912.235050px;}
.y18{bottom:913.033950px;}
.y13d{bottom:914.311950px;}
.y67{bottom:917.611950px;}
.y1{bottom:918.992100px;}
.y108{bottom:920.536950px;}
.y38{bottom:927.061950px;}
.y13c{bottom:928.711950px;}
.y1b7{bottom:932.686950px;}
.y17{bottom:933.811950px;}
.y107{bottom:934.936950px;}
.y2{bottom:935.114100px;}
.y36{bottom:977.456700px;}
.h8{height:22.418682px;}
.hc{height:34.656000px;}
.h18{height:36.093750px;}
.h2{height:36.192000px;}
.ha{height:37.488000px;}
.h15{height:37.839504px;}
.h16{height:37.840104px;}
.hd{height:38.466000px;}
.h9{height:39.648000px;}
.hf{height:40.716000px;}
.hb{height:41.616000px;}
.h11{height:42.174000px;}
.h17{height:42.568842px;}
.h7{height:42.569442px;}
.h13{height:42.570042px;}
.h4{height:43.416000px;}
.he{height:44.604000px;}
.h12{height:46.818000px;}
.h3{height:46.860000px;}
.h14{height:48.240000px;}
.h10{height:72.360000px;}
.h6{height:84.348000px;}
.h5{height:99.120000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x53{left:80.451150px;}
.x26{left:82.387200px;}
.x1c{left:83.737050px;}
.x8{left:85.915200px;}
.x1d{left:87.152400px;}
.x51{left:89.163000px;}
.x74{left:90.366750px;}
.x4{left:91.969050px;}
.x27{left:94.400250px;}
.x40{left:96.138750px;}
.x3{left:123.307050px;}
.x54{left:152.551200px;}
.x9{left:154.454100px;}
.x1e{left:157.159950px;}
.x37{left:158.294100px;}
.x42{left:159.464100px;}
.xa{left:161.282100px;}
.x1f{left:165.151800px;}
.x20{left:170.341800px;}
.x41{left:172.537800px;}
.x28{left:174.217800px;}
.x76{left:175.425750px;}
.x7c{left:187.410150px;}
.x58{left:223.543350px;}
.x65{left:225.461700px;}
.x72{left:227.327850px;}
.x56{left:228.869850px;}
.x63{left:231.593700px;}
.x57{left:233.111400px;}
.x64{left:237.263550px;}
.x55{left:238.355700px;}
.x6e{left:240.983550px;}
.xb{left:242.404650px;}
.xd{left:244.220850px;}
.xe{left:245.846700px;}
.x43{left:247.208850px;}
.x38{left:248.414700px;}
.x2a{left:250.922700px;}
.xc{left:252.500700px;}
.x4f{left:254.378700px;}
.x29{left:256.160700px;}
.x79{left:258.040350px;}
.x44{left:259.484550px;}
.x4a{left:263.210550px;}
.xf{left:265.448550px;}
.x4c{left:268.430400px;}
.x21{left:271.412400px;}
.x66{left:331.680600px;}
.x67{left:332.940900px;}
.x5b{left:334.080900px;}
.x5a{left:335.652900px;}
.x59{left:336.666900px;}
.x6f{left:337.800900px;}
.x5c{left:339.114750px;}
.x11{left:341.027850px;}
.x45{left:343.211700px;}
.x10{left:345.186000px;}
.x22{left:347.381700px;}
.x39{left:348.899850px;}
.x3a{left:350.525850px;}
.x3b{left:352.115550px;}
.x2c{left:354.041550px;}
.x12{left:355.835700px;}
.x5{left:358.247400px;}
.x23{left:359.837550px;}
.x2b{left:361.871550px;}
.x50{left:363.263400px;}
.x4b{left:375.941250px;}
.x73{left:420.854550px;}
.x68{left:421.868550px;}
.x61{left:422.894400px;}
.x71{left:423.896550px;}
.x5e{left:424.982250px;}
.x60{left:427.268250px;}
.x6c{left:428.630700px;}
.x6a{left:429.752550px;}
.x6b{left:431.288400px;}
.x69{left:433.466550px;}
.x5d{left:435.158250px;}
.x5f{left:436.892250px;}
.x15{left:438.977700px;}
.x2e{left:440.255700px;}
.x2f{left:442.223700px;}
.x2d{left:444.191700px;}
.x3e{left:445.235850px;}
.x24{left:446.639700px;}
.x48{left:447.803700px;}
.x25{left:449.585700px;}
.x47{left:450.911700px;}
.x13{left:452.183550px;}
.x6{left:454.013400px;}
.x16{left:455.051550px;}
.x14{left:456.875550px;}
.x70{left:458.437800px;}
.x3d{left:460.475400px;}
.x77{left:461.751150px;}
.x3c{left:463.457400px;}
.x49{left:466.289400px;}
.x36{left:467.873400px;}
.x17{left:470.999400px;}
.x46{left:473.795250px;}
.x18{left:537.274350px;}
.x34{left:538.324200px;}
.x31{left:540.262200px;}
.x1a{left:542.338050px;}
.x32{left:544.318200px;}
.x19{left:545.937900px;}
.x30{left:548.145750px;}
.x78{left:549.643050px;}
.x33{left:550.972050px;}
.x4e{left:552.784050px;}
.x4d{left:554.709750px;}
.x35{left:556.414050px;}
.x7a{left:561.031050px;}
.x1b{left:564.141900px;}
.x7b{left:565.590900px;}
.x62{left:566.792700px;}
.x75{left:568.867050px;}
.x3f{left:571.893600px;}
.x7{left:572.895750px;}
.x52{left:577.016700px;}
.x6d{left:579.800700px;}
.x2{left:626.900250px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v3{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls6{letter-spacing:-2.346667pt;}
.ls2{letter-spacing:-1.296000pt;}
.ls5{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:3.600000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws63{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.600000pt;}
.ws40{word-spacing:-9.312000pt;}
.ws1c{word-spacing:-9.216000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws5b{word-spacing:-8.277333pt;}
.ws5{word-spacing:-8.192000pt;}
.ws4c{word-spacing:-7.680000pt;}
.ws4e{word-spacing:-6.186667pt;}
.ws1{word-spacing:-5.596800pt;}
.ws2{word-spacing:-5.285867pt;}
.ws2b{word-spacing:-3.600000pt;}
.ws6c{word-spacing:-2.160000pt;}
.ws33{word-spacing:-1.824000pt;}
.ws6d{word-spacing:-1.776000pt;}
.ws70{word-spacing:-1.728000pt;}
.ws65{word-spacing:-1.680000pt;}
.wsf{word-spacing:-1.578667pt;}
.ws59{word-spacing:-1.344000pt;}
.ws64{word-spacing:-1.296000pt;}
.ws22{word-spacing:-1.248000pt;}
.ws56{word-spacing:-1.104000pt;}
.ws24{word-spacing:-1.056000pt;}
.ws49{word-spacing:-0.981333pt;}
.ws1f{word-spacing:-0.912000pt;}
.ws42{word-spacing:-0.864000pt;}
.ws25{word-spacing:-0.816000pt;}
.ws58{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.672000pt;}
.wsa{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.597333pt;}
.ws62{word-spacing:-0.554667pt;}
.ws37{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.298667pt;}
.ws48{word-spacing:-0.256000pt;}
.ws44{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.213333pt;}
.ws68{word-spacing:-0.144000pt;}
.ws72{word-spacing:-0.096000pt;}
.ws4a{word-spacing:-0.085333pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.048000pt;}
.ws4d{word-spacing:0.213333pt;}
.ws57{word-spacing:0.240000pt;}
.ws3d{word-spacing:0.288000pt;}
.ws3c{word-spacing:0.336000pt;}
.ws5e{word-spacing:0.384000pt;}
.ws41{word-spacing:0.432000pt;}
.ws5d{word-spacing:0.480000pt;}
.ws69{word-spacing:0.528000pt;}
.ws1a{word-spacing:0.624000pt;}
.ws8{word-spacing:0.640000pt;}
.ws28{word-spacing:0.672000pt;}
.ws60{word-spacing:0.720000pt;}
.ws6{word-spacing:0.725333pt;}
.ws67{word-spacing:0.768000pt;}
.ws7{word-spacing:0.853333pt;}
.ws1d{word-spacing:0.864000pt;}
.ws20{word-spacing:0.912000pt;}
.ws71{word-spacing:0.960000pt;}
.ws36{word-spacing:1.056000pt;}
.ws16{word-spacing:1.104000pt;}
.ws54{word-spacing:1.200000pt;}
.ws23{word-spacing:1.296000pt;}
.ws34{word-spacing:1.344000pt;}
.ws32{word-spacing:1.392000pt;}
.ws55{word-spacing:1.488000pt;}
.ws11{word-spacing:1.536000pt;}
.wsc{word-spacing:1.578667pt;}
.ws6f{word-spacing:1.584000pt;}
.ws15{word-spacing:1.632000pt;}
.ws43{word-spacing:1.680000pt;}
.ws3f{word-spacing:1.728000pt;}
.ws6b{word-spacing:1.824000pt;}
.ws26{word-spacing:1.872000pt;}
.ws27{word-spacing:1.968000pt;}
.ws1b{word-spacing:2.064000pt;}
.ws47{word-spacing:2.090667pt;}
.ws35{word-spacing:2.160000pt;}
.wsd{word-spacing:2.176000pt;}
.ws30{word-spacing:2.208000pt;}
.ws5a{word-spacing:2.218667pt;}
.wse{word-spacing:2.261333pt;}
.ws39{word-spacing:2.304000pt;}
.ws50{word-spacing:2.352000pt;}
.ws46{word-spacing:2.400000pt;}
.ws29{word-spacing:2.448000pt;}
.ws3b{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.544000pt;}
.ws19{word-spacing:2.592000pt;}
.ws52{word-spacing:2.784000pt;}
.ws6a{word-spacing:2.832000pt;}
.ws45{word-spacing:2.928000pt;}
.ws17{word-spacing:2.976000pt;}
.ws78{word-spacing:3.024000pt;}
.ws1e{word-spacing:3.072000pt;}
.ws38{word-spacing:3.120000pt;}
.ws6e{word-spacing:3.168000pt;}
.ws2a{word-spacing:3.456000pt;}
.ws2e{word-spacing:3.552000pt;}
.ws2c{word-spacing:3.600000pt;}
.ws73{word-spacing:3.744000pt;}
.ws61{word-spacing:3.882667pt;}
.ws3e{word-spacing:4.128000pt;}
.ws2f{word-spacing:4.272000pt;}
.ws75{word-spacing:4.704000pt;}
.ws66{word-spacing:4.848000pt;}
.ws5c{word-spacing:4.944000pt;}
.ws53{word-spacing:5.088000pt;}
.ws51{word-spacing:5.232000pt;}
.ws74{word-spacing:5.376000pt;}
.ws3a{word-spacing:5.424000pt;}
.ws31{word-spacing:5.472000pt;}
.ws14{word-spacing:5.712000pt;}
.ws76{word-spacing:5.952000pt;}
.ws13{word-spacing:6.192000pt;}
.ws77{word-spacing:6.864000pt;}
._b{margin-left:-7.070933pt;}
._6{margin-left:-5.946667pt;}
._3{margin-left:-4.066133pt;}
._1{margin-left:-2.333867pt;}
._0{margin-left:-0.947200pt;}
._2{width:1.024000pt;}
._5{width:1.937067pt;}
._7{width:3.129600pt;}
._8{width:4.055467pt;}
._9{width:5.054933pt;}
._a{width:6.074133pt;}
._c{width:7.018133pt;}
._11{width:8.042133pt;}
._20{width:11.859200pt;}
._16{width:103.099733pt;}
._f{width:113.277333pt;}
._14{width:115.638400pt;}
._10{width:120.899200pt;}
._17{width:129.936533pt;}
._18{width:133.499200pt;}
._12{width:141.496533pt;}
._1b{width:145.260800pt;}
._15{width:153.398933pt;}
._1f{width:159.504533pt;}
._13{width:161.083200pt;}
._1a{width:167.403733pt;}
._e{width:168.985067pt;}
._d{width:173.698133pt;}
._19{width:189.171733pt;}
._1e{width:250.884267pt;}
._1c{width:299.951467pt;}
._1d{width:504.140267pt;}
._4{width:1432.650133pt;}
.fsa{font-size:24.874667pt;}
.fs7{font-size:26.429333pt;}
.fs5{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:33.295200pt;}
.y16{bottom:33.795200pt;}
.y200{bottom:69.368933pt;}
.y17d{bottom:72.826267pt;}
.y93{bottom:74.325867pt;}
.ybb{bottom:76.039333pt;}
.y252{bottom:76.946400pt;}
.y228{bottom:82.918133pt;}
.y1ff{bottom:83.769067pt;}
.y17c{bottom:87.226267pt;}
.y92{bottom:88.726000pt;}
.yba{bottom:90.439333pt;}
.y251{bottom:91.346400pt;}
.y66{bottom:97.252000pt;}
.y227{bottom:97.318133pt;}
.ye8{bottom:99.170133pt;}
.y1b6{bottom:101.172667pt;}
.y17b{bottom:101.626267pt;}
.y91{bottom:103.126000pt;}
.y1fe{bottom:103.838267pt;}
.yb9{bottom:104.839333pt;}
.y250{bottom:105.746400pt;}
.y65{bottom:111.652000pt;}
.y226{bottom:111.718133pt;}
.ye7{bottom:113.570133pt;}
.y1b5{bottom:113.972667pt;}
.y17a{bottom:116.026267pt;}
.y1fd{bottom:118.238267pt;}
.y206{bottom:119.239333pt;}
.y90{bottom:121.305467pt;}
.yb8{bottom:124.908667pt;}
.y24f{bottom:125.815733pt;}
.y64{bottom:126.052000pt;}
.y1b4{bottom:126.772667pt;}
.ye6{bottom:127.970133pt;}
.y179{bottom:130.426133pt;}
.y225{bottom:131.787467pt;}
.y1fc{bottom:132.638267pt;}
.y13b{bottom:135.275067pt;}
.yb7{bottom:139.308667pt;}
.y1b3{bottom:139.572667pt;}
.y24e{bottom:140.215600pt;}
.y63{bottom:140.452000pt;}
.ye5{bottom:142.370133pt;}
.y224{bottom:146.187467pt;}
.y1fb{bottom:147.038267pt;}
.y13a{bottom:148.075067pt;}
.y178{bottom:150.495467pt;}
.y8f{bottom:150.533867pt;}
.y106{bottom:150.647200pt;}
.y1b2{bottom:152.372667pt;}
.yb6{bottom:153.708667pt;}
.y24d{bottom:154.615600pt;}
.y62{bottom:154.852000pt;}
.ye4{bottom:156.770133pt;}
.y223{bottom:160.587467pt;}
.y139{bottom:160.875067pt;}
.y1fa{bottom:161.438267pt;}
.y177{bottom:164.895467pt;}
.y8e{bottom:164.933867pt;}
.y105{bottom:165.047200pt;}
.yb5{bottom:168.108667pt;}
.y61{bottom:169.252000pt;}
.ye3{bottom:171.170133pt;}
.y1b1{bottom:172.931733pt;}
.y138{bottom:173.675067pt;}
.y24c{bottom:174.684933pt;}
.y176{bottom:179.295467pt;}
.y8d{bottom:179.333867pt;}
.y104{bottom:179.447200pt;}
.y222{bottom:180.656800pt;}
.y1f9{bottom:181.507600pt;}
.yb4{bottom:182.508667pt;}
.y60{bottom:183.652000pt;}
.ye2{bottom:185.570133pt;}
.y1b0{bottom:185.731733pt;}
.y137{bottom:186.475067pt;}
.y24b{bottom:189.084933pt;}
.y175{bottom:193.695467pt;}
.y8c{bottom:193.733867pt;}
.y103{bottom:193.847200pt;}
.y221{bottom:195.056800pt;}
.yb3{bottom:196.908667pt;}
.y5f{bottom:198.052000pt;}
.y1e0{bottom:198.295600pt;}
.y1af{bottom:198.531733pt;}
.y136{bottom:199.275067pt;}
.ye1{bottom:199.970133pt;}
.y24a{bottom:203.484933pt;}
.y15{bottom:207.985733pt;}
.y174{bottom:208.095467pt;}
.y8b{bottom:208.133867pt;}
.y102{bottom:208.247200pt;}
.y1df{bottom:211.095600pt;}
.yb2{bottom:211.308667pt;}
.y1ae{bottom:211.331733pt;}
.y135{bottom:212.075067pt;}
.y5e{bottom:212.452000pt;}
.ye0{bottom:214.370133pt;}
.y220{bottom:215.126000pt;}
.y173{bottom:222.495467pt;}
.y8a{bottom:222.533867pt;}
.y101{bottom:222.647200pt;}
.y249{bottom:223.554267pt;}
.y1de{bottom:223.895600pt;}
.y1ad{bottom:224.131733pt;}
.y134{bottom:224.875067pt;}
.yb1{bottom:225.708667pt;}
.y14{bottom:226.455067pt;}
.y5d{bottom:226.852000pt;}
.y1f8{bottom:228.384800pt;}
.y21f{bottom:229.526000pt;}
.ydf{bottom:234.439467pt;}
.y1dd{bottom:236.695600pt;}
.y89{bottom:236.933867pt;}
.y100{bottom:237.047200pt;}
.y248{bottom:237.954267pt;}
.y1ac{bottom:239.690800pt;}
.y184{bottom:240.108667pt;}
.y133{bottom:240.434133pt;}
.y172{bottom:240.675067pt;}
.y1a8{bottom:242.923867pt;}
.y1f7{bottom:243.943867pt;}
.yb0{bottom:245.777867pt;}
.y5c{bottom:246.921333pt;}
.yde{bottom:248.839467pt;}
.y1dc{bottom:249.495600pt;}
.y21e{bottom:249.595333pt;}
.y13{bottom:250.593600pt;}
.y88{bottom:251.333867pt;}
.yff{bottom:251.447200pt;}
.y247{bottom:252.354267pt;}
.y1ab{bottom:252.490800pt;}
.y132{bottom:253.234133pt;}
.y1a7{bottom:255.723867pt;}
.y1f6{bottom:259.502800pt;}
.yaf{bottom:260.178000pt;}
.y5b{bottom:261.321333pt;}
.y1db{bottom:262.295600pt;}
.ydd{bottom:263.239467pt;}
.y21d{bottom:263.995333pt;}
.y167{bottom:265.290800pt;}
.y87{bottom:265.733867pt;}
.yfe{bottom:265.847200pt;}
.y131{bottom:266.034133pt;}
.y1a6{bottom:268.523867pt;}
.y12{bottom:269.062933pt;}
.y246{bottom:272.423467pt;}
.yae{bottom:274.577867pt;}
.y1da{bottom:275.095600pt;}
.y5a{bottom:275.721333pt;}
.y1f5{bottom:276.615733pt;}
.y166{bottom:278.090800pt;}
.y130{bottom:278.834000pt;}
.y86{bottom:280.133867pt;}
.y1a5{bottom:281.323867pt;}
.y171{bottom:283.131733pt;}
.ydc{bottom:283.308667pt;}
.y21c{bottom:284.064667pt;}
.yfd{bottom:285.916533pt;}
.y245{bottom:286.823467pt;}
.yad{bottom:288.978000pt;}
.y59{bottom:290.121333pt;}
.y165{bottom:290.890800pt;}
.y12f{bottom:291.634133pt;}
.y1d9{bottom:292.208400pt;}
.y11{bottom:293.201467pt;}
.y1a4{bottom:294.123867pt;}
.y170{bottom:295.931733pt;}
.ydb{bottom:297.708667pt;}
.y21b{bottom:298.464667pt;}
.y85{bottom:300.203067pt;}
.yfc{bottom:300.316533pt;}
.y244{bottom:301.223467pt;}
.y1f4{bottom:301.487600pt;}
.yac{bottom:303.377867pt;}
.y164{bottom:303.690800pt;}
.y12e{bottom:304.434133pt;}
.y58{bottom:304.521333pt;}
.y1d8{bottom:305.008400pt;}
.y10{bottom:306.001467pt;}
.y1a3{bottom:306.923867pt;}
.y16f{bottom:308.731733pt;}
.yda{bottom:312.108667pt;}
.y21a{bottom:312.864667pt;}
.yfb{bottom:314.716533pt;}
.y163{bottom:316.490800pt;}
.y12d{bottom:317.234133pt;}
.yab{bottom:317.777867pt;}
.yf{bottom:318.801467pt;}
.y57{bottom:318.921333pt;}
.y1a2{bottom:319.723867pt;}
.y243{bottom:321.292800pt;}
.y16e{bottom:321.531733pt;}
.yd9{bottom:326.508667pt;}
.yfa{bottom:329.116533pt;}
.y162{bottom:329.290800pt;}
.y1d7{bottom:329.880400pt;}
.y12c{bottom:330.034133pt;}
.yaa{bottom:332.178000pt;}
.y1a1{bottom:332.523867pt;}
.y219{bottom:332.933867pt;}
.y56{bottom:333.321333pt;}
.y16d{bottom:334.331733pt;}
.y1f3{bottom:335.075067pt;}
.y242{bottom:335.692800pt;}
.yd8{bottom:340.908667pt;}
.y161{bottom:342.090800pt;}
.y1d6{bottom:342.680400pt;}
.y12b{bottom:342.834000pt;}
.ye{bottom:342.940000pt;}
.yf9{bottom:343.516533pt;}
.y84{bottom:344.990533pt;}
.y1a0{bottom:345.323867pt;}
.ya9{bottom:346.577867pt;}
.y218{bottom:347.333867pt;}
.y1f2{bottom:349.475067pt;}
.y241{bottom:350.092800pt;}
.y205{bottom:352.247200pt;}
.y55{bottom:353.390667pt;}
.y160{bottom:354.890800pt;}
.yd7{bottom:355.308667pt;}
.y12a{bottom:355.634133pt;}
.yd{bottom:355.740133pt;}
.y35{bottom:357.526000pt;}
.yf8{bottom:357.916533pt;}
.y19f{bottom:358.123867pt;}
.y83{bottom:359.390533pt;}
.y183{bottom:360.978000pt;}
.y1f1{bottom:363.875067pt;}
.ya8{bottom:366.647200pt;}
.y217{bottom:367.403200pt;}
.y15f{bottom:367.690800pt;}
.y54{bottom:367.790667pt;}
.yd6{bottom:369.708667pt;}
.y240{bottom:370.162133pt;}
.y19e{bottom:370.923867pt;}
.y129{bottom:371.193200pt;}
.yf7{bottom:372.316533pt;}
.yc{bottom:374.209333pt;}
.y182{bottom:375.377867pt;}
.y1d5{bottom:376.267733pt;}
.y1f0{bottom:378.275067pt;}
.y82{bottom:379.459867pt;}
.y15e{bottom:380.490800pt;}
.ya7{bottom:381.047200pt;}
.y216{bottom:381.803200pt;}
.y53{bottom:382.190533pt;}
.y19d{bottom:383.723867pt;}
.y128{bottom:383.993200pt;}
.yd5{bottom:384.108667pt;}
.y23f{bottom:384.562133pt;}
.y34{bottom:385.444133pt;}
.yf6{bottom:386.716533pt;}
.y1d4{bottom:390.667733pt;}
.y1ef{bottom:392.675067pt;}
.y15d{bottom:393.290800pt;}
.y81{bottom:393.859867pt;}
.ya6{bottom:395.447200pt;}
.y19c{bottom:396.523867pt;}
.y52{bottom:396.590667pt;}
.y127{bottom:396.793067pt;}
.y33{bottom:398.244133pt;}
.y23e{bottom:398.962133pt;}
.yf5{bottom:401.116533pt;}
.y215{bottom:401.872533pt;}
.yd4{bottom:404.178000pt;}
.y1d3{bottom:405.067733pt;}
.yb{bottom:405.901467pt;}
.y15c{bottom:406.090800pt;}
.y80{bottom:408.259867pt;}
.y19b{bottom:409.323867pt;}
.y126{bottom:409.593200pt;}
.ya5{bottom:409.847200pt;}
.y51{bottom:410.990667pt;}
.y1ee{bottom:412.744400pt;}
.y32{bottom:414.823733pt;}
.yf4{bottom:415.516533pt;}
.y214{bottom:416.272533pt;}
.ya{bottom:417.617333pt;}
.yd3{bottom:418.578000pt;}
.y15b{bottom:418.890800pt;}
.y23d{bottom:419.031333pt;}
.y1d2{bottom:419.467733pt;}
.y19a{bottom:422.123867pt;}
.y125{bottom:422.393200pt;}
.y7f{bottom:422.659867pt;}
.ya4{bottom:424.247200pt;}
.y50{bottom:425.390667pt;}
.y1ed{bottom:427.144267pt;}
.y31{bottom:427.623733pt;}
.yf3{bottom:429.916533pt;}
.y15a{bottom:431.690800pt;}
.yd2{bottom:432.978000pt;}
.y23c{bottom:433.431333pt;}
.y1d1{bottom:433.867733pt;}
.y9{bottom:433.906933pt;}
.y1aa{bottom:434.449867pt;}
.y213{bottom:436.341733pt;}
.y7e{bottom:437.059867pt;}
.y199{bottom:437.682933pt;}
.y124{bottom:437.952267pt;}
.ya3{bottom:438.647200pt;}
.y4f{bottom:439.790667pt;}
.y30{bottom:440.423600pt;}
.y1ec{bottom:441.544400pt;}
.yf2{bottom:444.316533pt;}
.y159{bottom:447.249867pt;}
.yd1{bottom:447.378000pt;}
.y1d0{bottom:448.267733pt;}
.y198{bottom:450.482933pt;}
.y212{bottom:450.741733pt;}
.y123{bottom:450.752267pt;}
.y7d{bottom:451.459867pt;}
.ya2{bottom:453.047200pt;}
.y2f{bottom:453.223733pt;}
.y23b{bottom:453.500667pt;}
.y4e{bottom:454.190533pt;}
.y1eb{bottom:455.944400pt;}
.y158{bottom:460.049867pt;}
.yd0{bottom:461.778000pt;}
.y1cf{bottom:462.667733pt;}
.y197{bottom:463.282933pt;}
.y122{bottom:463.552267pt;}
.yf1{bottom:464.385733pt;}
.y211{bottom:465.141867pt;}
.y8{bottom:467.204667pt;}
.y181{bottom:467.447200pt;}
.y23a{bottom:467.900667pt;}
.y4d{bottom:468.590667pt;}
.y2e{bottom:469.803200pt;}
.y1ea{bottom:470.344267pt;}
.y7c{bottom:471.529067pt;}
.y157{bottom:472.849867pt;}
.ya1{bottom:473.116533pt;}
.y196{bottom:476.082933pt;}
.ycf{bottom:476.178000pt;}
.y121{bottom:476.352267pt;}
.y1ce{bottom:477.067733pt;}
.yf0{bottom:478.785867pt;}
.y180{bottom:481.847200pt;}
.y2d{bottom:482.603200pt;}
.y4c{bottom:482.990667pt;}
.y1e9{bottom:484.744400pt;}
.y210{bottom:485.211067pt;}
.y156{bottom:485.649867pt;}
.y7b{bottom:485.929067pt;}
.ya0{bottom:487.516533pt;}
.y239{bottom:487.970000pt;}
.y195{bottom:488.882933pt;}
.y120{bottom:489.152267pt;}
.yce{bottom:490.578000pt;}
.y7{bottom:491.204667pt;}
.y1cd{bottom:491.467733pt;}
.yef{bottom:493.185733pt;}
.y2c{bottom:495.403200pt;}
.y155{bottom:498.449867pt;}
.y20f{bottom:499.611067pt;}
.y7a{bottom:500.329067pt;}
.y194{bottom:501.682933pt;}
.y9f{bottom:501.916533pt;}
.y11f{bottom:501.952267pt;}
.y238{bottom:502.370000pt;}
.y4b{bottom:503.059867pt;}
.y1e8{bottom:504.813600pt;}
.ycd{bottom:504.978000pt;}
.y1cc{bottom:505.867733pt;}
.yee{bottom:507.585733pt;}
.y2b{bottom:508.203200pt;}
.y154{bottom:511.249867pt;}
.y20e{bottom:514.011067pt;}
.y193{bottom:514.482933pt;}
.y79{bottom:514.729067pt;}
.y11e{bottom:514.752267pt;}
.y9e{bottom:516.316533pt;}
.y237{bottom:516.770000pt;}
.y4a{bottom:517.459867pt;}
.y1e7{bottom:519.213600pt;}
.y6{bottom:520.874000pt;}
.y2a{bottom:521.003200pt;}
.yed{bottom:521.985733pt;}
.y153{bottom:524.049867pt;}
.ycc{bottom:525.047333pt;}
.y1cb{bottom:525.937067pt;}
.y192{bottom:527.282933pt;}
.y11d{bottom:527.552267pt;}
.y78{bottom:529.129067pt;}
.y9d{bottom:530.716533pt;}
.y49{bottom:531.859867pt;}
.y1e6{bottom:533.613600pt;}
.y20d{bottom:534.080400pt;}
.yec{bottom:536.385867pt;}
.y236{bottom:536.839333pt;}
.y152{bottom:536.849867pt;}
.y29{bottom:537.582800pt;}
.ycb{bottom:539.447333pt;}
.y191{bottom:540.082933pt;}
.y1ca{bottom:540.337067pt;}
.y11c{bottom:540.352267pt;}
.y77{bottom:543.529200pt;}
.y5{bottom:544.874000pt;}
.y9c{bottom:545.116533pt;}
.y48{bottom:546.259867pt;}
.y1e5{bottom:548.013600pt;}
.y20c{bottom:548.480400pt;}
.y151{bottom:549.649867pt;}
.y28{bottom:550.382667pt;}
.yeb{bottom:550.785867pt;}
.y235{bottom:551.239200pt;}
.y1a9{bottom:552.408933pt;}
.y190{bottom:552.882933pt;}
.y11b{bottom:553.152267pt;}
.yca{bottom:553.847333pt;}
.y1c9{bottom:554.737067pt;}
.y76{bottom:557.929067pt;}
.y17f{bottom:559.516533pt;}
.y47{bottom:560.659867pt;}
.y150{bottom:562.449867pt;}
.y20b{bottom:562.880400pt;}
.y27{bottom:563.182800pt;}
.y9b{bottom:565.185733pt;}
.y16c{bottom:565.208933pt;}
.y18f{bottom:565.682933pt;}
.y11a{bottom:565.952267pt;}
.y1e4{bottom:566.193200pt;}
.yc9{bottom:568.247333pt;}
.y1c8{bottom:569.137067pt;}
.y234{bottom:571.308533pt;}
.y75{bottom:572.329067pt;}
.y17e{bottom:573.916533pt;}
.y14f{bottom:575.249867pt;}
.y16b{bottom:578.008933pt;}
.y18e{bottom:578.482933pt;}
.y9a{bottom:579.585733pt;}
.y46{bottom:580.729200pt;}
.y119{bottom:581.511200pt;}
.y26{bottom:581.652000pt;}
.yc8{bottom:582.647333pt;}
.y20a{bottom:582.949600pt;}
.y1c7{bottom:583.537067pt;}
.y233{bottom:585.708533pt;}
.y4{bottom:587.771600pt;}
.y14e{bottom:588.049867pt;}
.y204{bottom:588.316533pt;}
.y16a{bottom:590.808933pt;}
.y18d{bottom:591.282933pt;}
.y74{bottom:592.398400pt;}
.y99{bottom:593.985733pt;}
.y118{bottom:594.311200pt;}
.y45{bottom:595.129200pt;}
.yc7{bottom:597.047333pt;}
.y209{bottom:597.349733pt;}
.y1c6{bottom:597.937067pt;}
.y232{bottom:600.108533pt;}
.y14d{bottom:600.849867pt;}
.y203{bottom:602.716533pt;}
.y169{bottom:603.608933pt;}
.y18c{bottom:604.082933pt;}
.y3{bottom:605.951067pt;}
.y117{bottom:607.111200pt;}
.y98{bottom:608.385867pt;}
.y1e3{bottom:608.649867pt;}
.y44{bottom:609.529200pt;}
.y208{bottom:611.749733pt;}
.y1c5{bottom:612.337067pt;}
.y14c{bottom:613.649867pt;}
.y168{bottom:616.408933pt;}
.y18b{bottom:616.882933pt;}
.y202{bottom:617.116533pt;}
.yc6{bottom:617.116667pt;}
.y25{bottom:618.729200pt;}
.y116{bottom:619.911200pt;}
.y231{bottom:620.177867pt;}
.y1e2{bottom:621.449867pt;}
.y97{bottom:622.785867pt;}
.y43{bottom:623.929200pt;}
.y1c4{bottom:626.737067pt;}
.y14b{bottom:629.208933pt;}
.y18a{bottom:629.682933pt;}
.y201{bottom:631.516533pt;}
.yc5{bottom:631.516667pt;}
.y207{bottom:631.818933pt;}
.y115{bottom:632.711200pt;}
.y1e1{bottom:634.249867pt;}
.y230{bottom:634.577867pt;}
.y73{bottom:637.185733pt;}
.y14a{bottom:642.008933pt;}
.y189{bottom:642.482933pt;}
.y42{bottom:643.998400pt;}
.y114{bottom:645.511200pt;}
.yc4{bottom:645.916533pt;}
.y24{bottom:646.647333pt;}
.y1c3{bottom:646.806400pt;}
.y22f{bottom:648.977867pt;}
.y72{bottom:651.585733pt;}
.y149{bottom:654.808933pt;}
.y23{bottom:659.447333pt;}
.y188{bottom:659.595733pt;}
.yc3{bottom:660.316533pt;}
.y113{bottom:661.070267pt;}
.y1c2{bottom:661.206400pt;}
.y71{bottom:665.985733pt;}
.y148{bottom:667.608933pt;}
.y22e{bottom:669.047067pt;}
.yea{bottom:671.655067pt;}
.y187{bottom:672.395733pt;}
.y112{bottom:673.870267pt;}
.y1c1{bottom:675.606400pt;}
.y22{bottom:676.026800pt;}
.y70{bottom:680.385867pt;}
.y147{bottom:680.408933pt;}
.y22d{bottom:683.447067pt;}
.ye9{bottom:686.055067pt;}
.y111{bottom:686.670267pt;}
.y41{bottom:688.785867pt;}
.y21{bottom:688.826800pt;}
.y1c0{bottom:690.006400pt;}
.y146{bottom:693.208933pt;}
.y6f{bottom:694.785867pt;}
.y186{bottom:697.267600pt;}
.y22c{bottom:697.847200pt;}
.y110{bottom:699.470267pt;}
.y96{bottom:700.455067pt;}
.y20{bottom:701.626800pt;}
.y40{bottom:703.185867pt;}
.y1bf{bottom:704.406267pt;}
.y145{bottom:706.008933pt;}
.y6e{bottom:709.185733pt;}
.yc2{bottom:709.185867pt;}
.y185{bottom:710.067733pt;}
.y10f{bottom:712.270267pt;}
.y1f{bottom:714.426800pt;}
.y95{bottom:714.855067pt;}
.y253{bottom:716.618933pt;}
.y3f{bottom:717.585867pt;}
.y22b{bottom:717.916400pt;}
.y1be{bottom:718.806267pt;}
.y144{bottom:718.808933pt;}
.y6d{bottom:723.585733pt;}
.yc1{bottom:723.585867pt;}
.y10e{bottom:725.070267pt;}
.y94{bottom:729.255067pt;}
.y1e{bottom:731.006400pt;}
.y143{bottom:731.608933pt;}
.y3e{bottom:731.985867pt;}
.y22a{bottom:732.316400pt;}
.y1bd{bottom:733.206267pt;}
.y10d{bottom:737.870267pt;}
.yc0{bottom:737.985867pt;}
.y6c{bottom:743.655067pt;}
.y1d{bottom:743.806267pt;}
.y142{bottom:744.408800pt;}
.y3d{bottom:746.385867pt;}
.y229{bottom:746.716533pt;}
.y1bc{bottom:747.606267pt;}
.y10c{bottom:750.670267pt;}
.ybf{bottom:752.385867pt;}
.y1c{bottom:756.606267pt;}
.y141{bottom:757.208933pt;}
.y6b{bottom:758.055067pt;}
.y3c{bottom:760.785867pt;}
.y10b{bottom:763.470267pt;}
.ybe{bottom:766.785867pt;}
.y1bb{bottom:767.675600pt;}
.y1b{bottom:769.406267pt;}
.y140{bottom:770.008933pt;}
.y6a{bottom:772.455067pt;}
.y3b{bottom:775.185733pt;}
.y10a{bottom:780.583200pt;}
.ybd{bottom:781.185733pt;}
.y1ba{bottom:782.075600pt;}
.y13f{bottom:782.808933pt;}
.y1a{bottom:785.985867pt;}
.y69{bottom:786.855067pt;}
.y3a{bottom:789.585733pt;}
.y109{bottom:793.383200pt;}
.ybc{bottom:795.585733pt;}
.y13e{bottom:795.608933pt;}
.y1b9{bottom:796.475600pt;}
.y19{bottom:798.785867pt;}
.y68{bottom:801.255067pt;}
.y39{bottom:803.985867pt;}
.y1b8{bottom:810.875600pt;}
.y18{bottom:811.585733pt;}
.y13d{bottom:812.721733pt;}
.y67{bottom:815.655067pt;}
.y1{bottom:816.881867pt;}
.y108{bottom:818.255067pt;}
.y38{bottom:824.055067pt;}
.y13c{bottom:825.521733pt;}
.y1b7{bottom:829.055067pt;}
.y17{bottom:830.055067pt;}
.y107{bottom:831.055067pt;}
.y2{bottom:831.212533pt;}
.y36{bottom:868.850400pt;}
.h8{height:19.927717pt;}
.hc{height:30.805333pt;}
.h18{height:32.083333pt;}
.h2{height:32.170667pt;}
.ha{height:33.322667pt;}
.h15{height:33.635115pt;}
.h16{height:33.635648pt;}
.hd{height:34.192000pt;}
.h9{height:35.242667pt;}
.hf{height:36.192000pt;}
.hb{height:36.992000pt;}
.h11{height:37.488000pt;}
.h17{height:37.838971pt;}
.h7{height:37.839504pt;}
.h13{height:37.840037pt;}
.h4{height:38.592000pt;}
.he{height:39.648000pt;}
.h12{height:41.616000pt;}
.h3{height:41.653333pt;}
.h14{height:42.880000pt;}
.h10{height:64.320000pt;}
.h6{height:74.976000pt;}
.h5{height:88.106667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x53{left:71.512133pt;}
.x26{left:73.233067pt;}
.x1c{left:74.432933pt;}
.x8{left:76.369067pt;}
.x1d{left:77.468800pt;}
.x51{left:79.256000pt;}
.x74{left:80.326000pt;}
.x4{left:81.750267pt;}
.x27{left:83.911333pt;}
.x40{left:85.456667pt;}
.x3{left:109.606267pt;}
.x54{left:135.601067pt;}
.x9{left:137.292533pt;}
.x1e{left:139.697733pt;}
.x37{left:140.705867pt;}
.x42{left:141.745867pt;}
.xa{left:143.361867pt;}
.x1f{left:146.801600pt;}
.x20{left:151.414933pt;}
.x41{left:153.366933pt;}
.x28{left:154.860267pt;}
.x76{left:155.934000pt;}
.x7c{left:166.586800pt;}
.x58{left:198.705200pt;}
.x65{left:200.410400pt;}
.x72{left:202.069200pt;}
.x56{left:203.439867pt;}
.x63{left:205.861067pt;}
.x57{left:207.210133pt;}
.x64{left:210.900933pt;}
.x55{left:211.871733pt;}
.x6e{left:214.207600pt;}
.xb{left:215.470800pt;}
.xd{left:217.085200pt;}
.xe{left:218.530400pt;}
.x43{left:219.741200pt;}
.x38{left:220.813067pt;}
.x2a{left:223.042400pt;}
.xc{left:224.445067pt;}
.x4f{left:226.114400pt;}
.x29{left:227.698400pt;}
.x79{left:229.369200pt;}
.x44{left:230.652933pt;}
.x4a{left:233.964933pt;}
.xf{left:235.954267pt;}
.x4c{left:238.604800pt;}
.x21{left:241.255467pt;}
.x66{left:294.827200pt;}
.x67{left:295.947467pt;}
.x5b{left:296.960800pt;}
.x5a{left:298.358133pt;}
.x59{left:299.259467pt;}
.x6f{left:300.267467pt;}
.x5c{left:301.435333pt;}
.x11{left:303.135867pt;}
.x45{left:305.077067pt;}
.x10{left:306.832000pt;}
.x22{left:308.783733pt;}
.x39{left:310.133200pt;}
.x3a{left:311.578533pt;}
.x3b{left:312.991600pt;}
.x2c{left:314.703600pt;}
.x12{left:316.298400pt;}
.x5{left:318.442133pt;}
.x23{left:319.855600pt;}
.x2b{left:321.663600pt;}
.x50{left:322.900800pt;}
.x4b{left:334.170000pt;}
.x73{left:374.092933pt;}
.x68{left:374.994267pt;}
.x61{left:375.906133pt;}
.x71{left:376.796933pt;}
.x5e{left:377.762000pt;}
.x60{left:379.794000pt;}
.x6c{left:381.005067pt;}
.x6a{left:382.002267pt;}
.x6b{left:383.367467pt;}
.x69{left:385.303600pt;}
.x5d{left:386.807333pt;}
.x5f{left:388.348667pt;}
.x15{left:390.202400pt;}
.x2e{left:391.338400pt;}
.x2f{left:393.087733pt;}
.x2d{left:394.837067pt;}
.x3e{left:395.765200pt;}
.x24{left:397.013067pt;}
.x48{left:398.047733pt;}
.x25{left:399.631733pt;}
.x47{left:400.810400pt;}
.x13{left:401.940933pt;}
.x6{left:403.567467pt;}
.x16{left:404.490267pt;}
.x14{left:406.111600pt;}
.x70{left:407.500267pt;}
.x3d{left:409.311467pt;}
.x77{left:410.445467pt;}
.x3c{left:411.962133pt;}
.x49{left:414.479467pt;}
.x36{left:415.887467pt;}
.x17{left:418.666133pt;}
.x46{left:421.151333pt;}
.x18{left:477.577200pt;}
.x34{left:478.510400pt;}
.x31{left:480.233067pt;}
.x1a{left:482.078267pt;}
.x32{left:483.838400pt;}
.x19{left:485.278133pt;}
.x30{left:487.240667pt;}
.x78{left:488.571600pt;}
.x33{left:489.752933pt;}
.x4e{left:491.363600pt;}
.x4d{left:493.075333pt;}
.x35{left:494.590267pt;}
.x7a{left:498.694267pt;}
.x1b{left:501.459467pt;}
.x7b{left:502.747467pt;}
.x62{left:503.815733pt;}
.x75{left:505.659600pt;}
.x3f{left:508.349867pt;}
.x7{left:509.240667pt;}
.x52{left:512.903733pt;}
.x6d{left:515.378400pt;}
.x2{left:557.244667pt;}
}




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