
    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_54990386f3e5d6585fc48219.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_072bae9bddf2adabb0bef139.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_6201abfb9c138db5bf4e247c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102000;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_3f25991af03d06159a821222.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_03bb0c8e4f88c639cd41d708.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_dbf5df57d6b5492dc9550e40.woff')format("woff");}.ff6{font-family:ff6;line-height:0.934200;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_15d21cdee8922ff664a249ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100000;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_674b7757dfc8686dbf4aa78a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.986000;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_176cb6fb8076209877e588dc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b0d7d6bc1ca98dddf27dad02.woff')format("woff");}.ffa{font-family:ffa;line-height:0.730000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e4375ae43d076e0cf5f82f61.woff')format("woff");}.ffb{font-family:ffb;line-height:1.164000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_179c3bfd7b8cb373121aef19.woff')format("woff");}.ffc{font-family:ffc;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3ab632e5576450faab58cc26.woff')format("woff");}.ffd{font-family:ffd;line-height:1.251000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_696c31d7f28939d3d3ca9df0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.132000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_57c7324d3b776968422a2418.woff')format("woff");}.fff{font-family:fff;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_01577161a20f178888ff63b4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e26c8f22d47e25006536a8cc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0434fca4729baa8c554a2b72.woff')format("woff");}.ff12{font-family:ff12;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_57bb08bf9ee42f32bca43548.woff')format("woff");}.ff13{font-family:ff13;line-height:0.772000;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:ff14;src:url('chunks/assets/font_bf3e6c057472225adc70124d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.935000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000600px;}
.v1{vertical-align:36.006000px;}
.ls3{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.816000px;}
.ls2{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.324000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws0{word-spacing:-15.498000px;}
.ws72{word-spacing:-13.446000px;}
.ws6a{word-spacing:-12.798000px;}
.ws7f{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.800000px;}
.ws22{word-spacing:-10.200000px;}
.ws6b{word-spacing:-9.600000px;}
.ws27{word-spacing:-7.461234px;}
.ws3e{word-spacing:-5.346000px;}
.ws3c{word-spacing:-4.644000px;}
.wsf{word-spacing:-4.482000px;}
.ws60{word-spacing:-3.996000px;}
.ws64{word-spacing:-3.672000px;}
.ws7{word-spacing:-3.456000px;}
.ws76{word-spacing:-3.240000px;}
.ws49{word-spacing:-2.754000px;}
.wsc{word-spacing:-2.646000px;}
.ws4{word-spacing:-2.484000px;}
.ws3b{word-spacing:-2.376000px;}
.ws54{word-spacing:-2.268000px;}
.ws53{word-spacing:-2.106000px;}
.ws62{word-spacing:-1.836000px;}
.ws44{word-spacing:-1.782000px;}
.ws42{word-spacing:-1.728000px;}
.ws18{word-spacing:-1.674000px;}
.ws31{word-spacing:-1.620000px;}
.ws47{word-spacing:-1.458000px;}
.ws5e{word-spacing:-1.350000px;}
.ws50{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.188000px;}
.ws3f{word-spacing:-1.134000px;}
.ws28{word-spacing:-1.080000px;}
.ws55{word-spacing:-1.026000px;}
.ws37{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.864000px;}
.ws2b{word-spacing:-0.702000px;}
.ws6{word-spacing:-0.594000px;}
.ws75{word-spacing:-0.486000px;}
.ws78{word-spacing:-0.324000px;}
.ws39{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.108000px;}
.ws33{word-spacing:0.216000px;}
.ws7c{word-spacing:0.324000px;}
.ws30{word-spacing:0.432000px;}
.ws80{word-spacing:0.480000px;}
.ws17{word-spacing:0.486000px;}
.ws41{word-spacing:0.540000px;}
.ws5{word-spacing:0.594000px;}
.ws6f{word-spacing:0.702000px;}
.ws5a{word-spacing:0.756000px;}
.ws7e{word-spacing:0.816000px;}
.ws6c{word-spacing:0.864000px;}
.ws73{word-spacing:0.918000px;}
.ws7d{word-spacing:0.960000px;}
.ws16{word-spacing:0.972000px;}
.ws79{word-spacing:1.188000px;}
.ws40{word-spacing:1.350000px;}
.ws14{word-spacing:1.404000px;}
.ws13{word-spacing:1.512000px;}
.ws71{word-spacing:1.620000px;}
.wsd{word-spacing:1.674000px;}
.ws4b{word-spacing:1.836000px;}
.ws12{word-spacing:1.890000px;}
.ws4e{word-spacing:1.944000px;}
.wse{word-spacing:1.998000px;}
.ws48{word-spacing:2.106000px;}
.ws67{word-spacing:2.430000px;}
.ws11{word-spacing:2.538000px;}
.wsb{word-spacing:2.592000px;}
.ws4a{word-spacing:2.700000px;}
.ws10{word-spacing:2.970000px;}
.ws5d{word-spacing:3.078000px;}
.ws2c{word-spacing:3.402000px;}
.ws77{word-spacing:3.456000px;}
.ws45{word-spacing:3.564000px;}
.ws66{word-spacing:3.672000px;}
.ws9{word-spacing:3.726000px;}
.ws70{word-spacing:4.050000px;}
.ws7a{word-spacing:4.158000px;}
.ws34{word-spacing:4.536000px;}
.ws3a{word-spacing:4.590000px;}
.ws46{word-spacing:4.644000px;}
.ws4f{word-spacing:4.698000px;}
.wsa{word-spacing:4.806000px;}
.ws1c{word-spacing:4.914000px;}
.ws6e{word-spacing:5.076000px;}
.ws59{word-spacing:5.130000px;}
.ws1d{word-spacing:5.184000px;}
.ws3d{word-spacing:5.454000px;}
.ws5c{word-spacing:5.670000px;}
.ws74{word-spacing:5.994000px;}
.ws2d{word-spacing:6.102000px;}
.ws38{word-spacing:6.156000px;}
.ws20{word-spacing:6.480000px;}
.ws8{word-spacing:6.588000px;}
.ws65{word-spacing:6.642000px;}
.ws3{word-spacing:6.804000px;}
.ws2f{word-spacing:6.858000px;}
.ws1b{word-spacing:6.912000px;}
.ws69{word-spacing:7.020000px;}
.ws2e{word-spacing:7.074000px;}
.ws5f{word-spacing:7.128000px;}
.ws4d{word-spacing:7.398000px;}
.ws56{word-spacing:7.830000px;}
.ws57{word-spacing:7.938000px;}
.ws6d{word-spacing:8.046000px;}
.ws63{word-spacing:8.100000px;}
.ws15{word-spacing:8.154000px;}
.ws1f{word-spacing:8.316000px;}
.ws2a{word-spacing:8.478000px;}
.ws51{word-spacing:8.640000px;}
.ws36{word-spacing:9.126000px;}
.ws52{word-spacing:9.288000px;}
.ws5b{word-spacing:9.396000px;}
.ws1a{word-spacing:9.450000px;}
.ws61{word-spacing:9.504000px;}
.ws58{word-spacing:9.612000px;}
.ws68{word-spacing:10.476000px;}
.ws29{word-spacing:10.800000px;}
.ws4c{word-spacing:11.232000px;}
.ws43{word-spacing:11.394000px;}
.ws19{word-spacing:12.150000px;}
.ws7b{word-spacing:14.202000px;}
.ws23{word-spacing:145.758000px;}
.ws24{word-spacing:284.427000px;}
.ws26{word-spacing:450.000000px;}
.ws21{word-spacing:551.472000px;}
.ws25{word-spacing:974.355000px;}
._4{margin-left:-15.493800px;}
._35{margin-left:-7.607400px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._7{margin-left:-3.655800px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._6{width:3.122400px;}
._8{width:4.233600px;}
._b{width:5.394600px;}
._c{width:6.663600px;}
._9{width:7.678800px;}
._a{width:9.590400px;}
._f{width:10.756800px;}
._34{width:11.788200px;}
._e{width:13.867200px;}
._16{width:15.211800px;}
._d{width:16.831800px;}
._10{width:17.879400px;}
._11{width:19.607400px;}
._3a{width:21.016800px;}
._38{width:25.898400px;}
._36{width:26.983800px;}
._37{width:28.647000px;}
._33{width:38.400000px;}
._15{width:39.636000px;}
._13{width:42.120000px;}
._14{width:44.172000px;}
._12{width:50.652000px;}
._39{width:72.792000px;}
._27{width:132.504000px;}
._2c{width:154.704000px;}
._23{width:170.055000px;}
._1d{width:221.820000px;}
._2e{width:248.391000px;}
._30{width:262.452000px;}
._18{width:287.952000px;}
._21{width:294.240000px;}
._1e{width:307.347000px;}
._22{width:309.183000px;}
._1a{width:312.483000px;}
._2d{width:316.950000px;}
._20{width:320.199000px;}
._2a{width:329.970000px;}
._24{width:373.407000px;}
._2f{width:416.319000px;}
._1b{width:447.051000px;}
._1f{width:449.892000px;}
._19{width:484.893000px;}
._1c{width:499.785000px;}
._29{width:517.416000px;}
._2b{width:619.089000px;}
._32{width:661.980000px;}
._28{width:665.556000px;}
._31{width:687.504000px;}
._25{width:720.624000px;}
._17{width:733.392000px;}
._26{width:812.419800px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs9{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.ye2{bottom:106.299450px;}
.y226{bottom:106.382700px;}
.y1d2{bottom:112.878450px;}
.y52{bottom:112.945950px;}
.y120{bottom:112.995450px;}
.y146{bottom:113.017950px;}
.y73{bottom:113.022450px;}
.y12f{bottom:113.026950px;}
.y24c{bottom:113.858700px;}
.y1fa{bottom:115.179450px;}
.ye1{bottom:120.699450px;}
.ybe{bottom:120.869100px;}
.y225{bottom:125.882700px;}
.y24b{bottom:133.358700px;}
.y1f9{bottom:134.679450px;}
.ye0{bottom:135.099450px;}
.y1d1{bottom:135.382950px;}
.y134{bottom:135.441450px;}
.y51{bottom:135.450450px;}
.y197{bottom:135.468450px;}
.y1ad{bottom:135.481950px;}
.y11f{bottom:135.499950px;}
.y145{bottom:135.522450px;}
.y72{bottom:135.526950px;}
.y12e{bottom:135.531450px;}
.y224{bottom:145.382700px;}
.ybd{bottom:146.803800px;}
.ydf{bottom:149.499450px;}
.y24a{bottom:152.858700px;}
.y1f8{bottom:154.179450px;}
.y1d0{bottom:157.887450px;}
.y133{bottom:157.945950px;}
.y50{bottom:157.954950px;}
.y182{bottom:157.972950px;}
.y1ac{bottom:157.986450px;}
.y11e{bottom:158.004450px;}
.y144{bottom:158.026950px;}
.y71{bottom:158.031450px;}
.ybc{bottom:172.303800px;}
.y223{bottom:177.638700px;}
.y25{bottom:178.699350px;}
.y1cf{bottom:180.391950px;}
.y132{bottom:180.450450px;}
.y181{bottom:180.477450px;}
.y1ab{bottom:180.490950px;}
.y11d{bottom:180.508950px;}
.y15d{bottom:180.513450px;}
.y150{bottom:180.526950px;}
.y12d{bottom:180.531450px;}
.y88{bottom:180.535950px;}
.y249{bottom:185.114700px;}
.y1f7{bottom:186.435450px;}
.ybb{bottom:190.306800px;}
.y222{bottom:197.138700px;}
.y1ce{bottom:202.896450px;}
.yfd{bottom:202.941450px;}
.y4f{bottom:202.950450px;}
.y131{bottom:202.954950px;}
.y196{bottom:202.981950px;}
.y1aa{bottom:202.995450px;}
.y11c{bottom:203.013450px;}
.y15c{bottom:203.017950px;}
.y143{bottom:203.022450px;}
.yde{bottom:203.026800px;}
.y70{bottom:203.031450px;}
.yb5{bottom:203.056800px;}
.y248{bottom:204.614700px;}
.y1f6{bottom:205.935450px;}
.yba{bottom:215.806800px;}
.y221{bottom:216.638700px;}
.yb4{bottom:221.059800px;}
.y24{bottom:223.694850px;}
.yb9{bottom:224.808300px;}
.y1cd{bottom:225.400950px;}
.y12c{bottom:225.432450px;}
.yfc{bottom:225.445950px;}
.y4e{bottom:225.454950px;}
.y180{bottom:225.472950px;}
.y195{bottom:225.486450px;}
.y1a9{bottom:225.499950px;}
.y14f{bottom:225.522450px;}
.y142{bottom:225.526950px;}
.ydd{bottom:225.531300px;}
.y87{bottom:225.531450px;}
.y247{bottom:236.870700px;}
.y1f5{bottom:238.191450px;}
.yb3{bottom:239.062800px;}
.y23{bottom:246.199350px;}
.y1cc{bottom:247.905450px;}
.y91{bottom:247.909950px;}
.y12b{bottom:247.936950px;}
.yfb{bottom:247.950450px;}
.y4d{bottom:247.959450px;}
.y17f{bottom:247.977450px;}
.y194{bottom:247.990950px;}
.y1a8{bottom:248.004450px;}
.y11b{bottom:248.008950px;}
.y14e{bottom:248.026950px;}
.y141{bottom:248.031450px;}
.y220{bottom:248.894700px;}
.y1f4{bottom:257.691450px;}
.yb8{bottom:259.309800px;}
.y21f{bottom:268.394700px;}
.y22{bottom:268.703850px;}
.y246{bottom:269.126700px;}
.y1cb{bottom:270.409950px;}
.y90{bottom:270.414450px;}
.y6f{bottom:270.427950px;}
.y12a{bottom:270.441450px;}
.yfa{bottom:270.454950px;}
.y4c{bottom:270.463950px;}
.y17e{bottom:270.481950px;}
.y193{bottom:270.495450px;}
.y1a7{bottom:270.508950px;}
.y11a{bottom:270.513450px;}
.y86{bottom:270.531450px;}
.ydc{bottom:270.535800px;}
.y1f3{bottom:277.191450px;}
.yb7{bottom:277.312800px;}
.y21e{bottom:287.894700px;}
.y245{bottom:288.626700px;}
.y21{bottom:291.208350px;}
.y1ca{bottom:292.914450px;}
.y8f{bottom:292.918950px;}
.y6e{bottom:292.932450px;}
.y129{bottom:292.945950px;}
.y130{bottom:292.959450px;}
.y4b{bottom:292.968450px;}
.y17d{bottom:292.986450px;}
.y192{bottom:292.999950px;}
.y1a6{bottom:293.013450px;}
.y119{bottom:293.017950px;}
.y15b{bottom:293.022450px;}
.y173{bottom:293.025450px;}
.y140{bottom:293.031450px;}
.yb6{bottom:295.315800px;}
.y1f2{bottom:309.447450px;}
.y20{bottom:313.712850px;}
.y1c9{bottom:315.418950px;}
.y8e{bottom:315.423450px;}
.y6d{bottom:315.436950px;}
.yf9{bottom:315.450450px;}
.y4a{bottom:315.472950px;}
.y191{bottom:315.504450px;}
.y1a5{bottom:315.517950px;}
.y14d{bottom:315.526950px;}
.ydb{bottom:315.531300px;}
.y172{bottom:315.531450px;}
.y21d{bottom:320.150700px;}
.yb2{bottom:320.828550px;}
.y244{bottom:320.882700px;}
.y1f1{bottom:328.947450px;}
.y1f{bottom:336.217350px;}
.y85{bottom:337.914450px;}
.y1c8{bottom:337.923450px;}
.y8d{bottom:337.927950px;}
.y6c{bottom:337.941450px;}
.yf8{bottom:337.954950px;}
.y13f{bottom:337.968450px;}
.y17c{bottom:337.981950px;}
.y190{bottom:338.008950px;}
.y118{bottom:338.013450px;}
.y1a4{bottom:338.022450px;}
.y14c{bottom:338.031450px;}
.yb1{bottom:338.831550px;}
.y21c{bottom:339.650700px;}
.y243{bottom:340.382700px;}
.y1f0{bottom:348.447450px;}
.y1e{bottom:358.721850px;}
.yad{bottom:359.078550px;}
.y21b{bottom:359.150700px;}
.y84{bottom:360.418950px;}
.y1c7{bottom:360.427950px;}
.y8c{bottom:360.432450px;}
.y128{bottom:360.445950px;}
.yf7{bottom:360.459450px;}
.y49{bottom:360.468450px;}
.y13e{bottom:360.472950px;}
.y171{bottom:360.508950px;}
.y18f{bottom:360.513450px;}
.y117{bottom:360.517950px;}
.y1a3{bottom:360.526950px;}
.yb0{bottom:364.331550px;}
.y242{bottom:372.638700px;}
.yac{bottom:377.081550px;}
.y1ef{bottom:380.703450px;}
.y1d{bottom:381.226350px;}
.y83{bottom:382.923450px;}
.y6b{bottom:382.936950px;}
.y127{bottom:382.950450px;}
.yf6{bottom:382.963950px;}
.yda{bottom:382.972800px;}
.y48{bottom:382.972950px;}
.y13d{bottom:382.977450px;}
.y170{bottom:383.013450px;}
.y116{bottom:383.022450px;}
.y14b{bottom:383.031450px;}
.yaf{bottom:389.831550px;}
.y21a{bottom:391.406700px;}
.y241{bottom:392.138700px;}
.y1ee{bottom:400.203450px;}
.y1c{bottom:403.730850px;}
.y1c6{bottom:405.423450px;}
.y82{bottom:405.427950px;}
.y6a{bottom:405.441450px;}
.y126{bottom:405.454950px;}
.yf5{bottom:405.468450px;}
.yd9{bottom:405.477300px;}
.y47{bottom:405.477450px;}
.y17b{bottom:405.481950px;}
.y18e{bottom:405.508950px;}
.y16f{bottom:405.517950px;}
.y115{bottom:405.526950px;}
.y219{bottom:410.906700px;}
.yae{bottom:415.331550px;}
.y1ed{bottom:419.703450px;}
.y240{bottom:424.394700px;}
.y1b{bottom:426.235350px;}
.y1c5{bottom:427.927950px;}
.y69{bottom:427.945950px;}
.y125{bottom:427.959450px;}
.y15a{bottom:427.968450px;}
.yf4{bottom:427.972950px;}
.yd8{bottom:427.981800px;}
.y46{bottom:427.981950px;}
.y17a{bottom:427.986450px;}
.y18d{bottom:428.013450px;}
.y16e{bottom:428.022450px;}
.y1a2{bottom:428.025450px;}
.y114{bottom:428.031450px;}
.y218{bottom:430.406700px;}
.yab{bottom:441.221250px;}
.y23f{bottom:443.894700px;}
.y1a{bottom:448.739850px;}
.y81{bottom:450.423450px;}
.y1c4{bottom:450.432450px;}
.y68{bottom:450.450450px;}
.y124{bottom:450.463950px;}
.y159{bottom:450.472950px;}
.y13c{bottom:450.477450px;}
.yd7{bottom:450.486300px;}
.y45{bottom:450.486450px;}
.y179{bottom:450.490950px;}
.y18c{bottom:450.517950px;}
.y16d{bottom:450.526950px;}
.y1a1{bottom:450.531450px;}
.y1ec{bottom:451.959450px;}
.y217{bottom:462.662700px;}
.y19{bottom:471.244350px;}
.y80{bottom:472.927950px;}
.y1c3{bottom:472.936950px;}
.y8b{bottom:472.941450px;}
.y67{bottom:472.954950px;}
.yf3{bottom:472.968450px;}
.y158{bottom:472.977450px;}
.y13b{bottom:472.981950px;}
.yd6{bottom:472.990800px;}
.y44{bottom:472.990950px;}
.y18b{bottom:473.022450px;}
.y113{bottom:473.031450px;}
.y23e{bottom:476.150700px;}
.y216{bottom:482.162700px;}
.y1eb{bottom:484.215450px;}
.y18{bottom:493.748850px;}
.y7f{bottom:495.432450px;}
.y1c2{bottom:495.441450px;}
.y8a{bottom:495.445950px;}
.y66{bottom:495.459450px;}
.yf2{bottom:495.472950px;}
.y157{bottom:495.481950px;}
.y178{bottom:495.486450px;}
.yd5{bottom:495.495300px;}
.y43{bottom:495.495450px;}
.y18a{bottom:495.526950px;}
.yaa{bottom:495.527100px;}
.y16c{bottom:495.535950px;}
.y23d{bottom:495.650700px;}
.y215{bottom:501.662700px;}
.y1ea{bottom:503.715450px;}
.y23c{bottom:515.150700px;}
.y17{bottom:516.253350px;}
.y7e{bottom:517.936950px;}
.y1c1{bottom:517.945950px;}
.y89{bottom:517.950450px;}
.y123{bottom:517.963950px;}
.y13a{bottom:517.977450px;}
.y156{bottom:517.986450px;}
.y177{bottom:517.990950px;}
.y42{bottom:517.999950px;}
.y1a0{bottom:518.017950px;}
.y112{bottom:518.031450px;}
.ya9{bottom:518.031600px;}
.y214{bottom:521.162700px;}
.y1e9{bottom:535.971450px;}
.y7d{bottom:540.441450px;}
.y1c0{bottom:540.450450px;}
.y65{bottom:540.454950px;}
.yf1{bottom:540.468450px;}
.y139{bottom:540.481950px;}
.yd4{bottom:540.490800px;}
.y16b{bottom:540.495450px;}
.y41{bottom:540.504450px;}
.y19f{bottom:540.522450px;}
.y23b{bottom:547.406700px;}
.y213{bottom:553.418700px;}
.y1e8{bottom:555.471450px;}
.y7c{bottom:562.945950px;}
.y1bf{bottom:562.954950px;}
.y64{bottom:562.959450px;}
.yf0{bottom:562.972950px;}
.y111{bottom:562.981950px;}
.y138{bottom:562.986450px;}
.yd3{bottom:562.995300px;}
.y16a{bottom:562.999950px;}
.y40{bottom:563.008950px;}
.y19e{bottom:563.026950px;}
.y189{bottom:563.031450px;}
.y257{bottom:566.174700px;}
.y16{bottom:566.378850px;}
.y23a{bottom:566.906700px;}
.y212{bottom:572.918700px;}
.y1e7{bottom:574.971450px;}
.y7b{bottom:585.450450px;}
.y1be{bottom:585.459450px;}
.y63{bottom:585.463950px;}
.yef{bottom:585.477450px;}
.y110{bottom:585.486450px;}
.y137{bottom:585.490950px;}
.y169{bottom:585.504450px;}
.y19d{bottom:585.531450px;}
.y256{bottom:585.674700px;}
.y211{bottom:592.418700px;}
.ya8{bottom:597.851400px;}
.y239{bottom:599.162700px;}
.y255{bottom:605.174700px;}
.y1e6{bottom:607.227450px;}
.y7a{bottom:607.954950px;}
.y1bd{bottom:607.963950px;}
.y62{bottom:607.968450px;}
.yee{bottom:607.981950px;}
.yd2{bottom:607.990800px;}
.y10f{bottom:607.990950px;}
.y176{bottom:607.995450px;}
.y3f{bottom:608.004450px;}
.y238{bottom:618.662700px;}
.ya7{bottom:623.812800px;}
.y210{bottom:624.674700px;}
.y1e5{bottom:626.727450px;}
.y15{bottom:627.146550px;}
.y79{bottom:630.459450px;}
.y61{bottom:630.472950px;}
.y188{bottom:630.481950px;}
.yed{bottom:630.486450px;}
.yd1{bottom:630.495300px;}
.y10e{bottom:630.495450px;}
.y168{bottom:630.499950px;}
.y3e{bottom:630.508950px;}
.y19c{bottom:630.531450px;}
.y254{bottom:637.430700px;}
.ya5{bottom:641.815800px;}
.y14{bottom:643.646550px;}
.y20f{bottom:644.174700px;}
.y1e4{bottom:646.227450px;}
.y237{bottom:650.918700px;}
.y1bc{bottom:652.959450px;}
.y78{bottom:652.963950px;}
.y60{bottom:652.977450px;}
.y155{bottom:652.986450px;}
.yec{bottom:652.990950px;}
.yd0{bottom:652.999800px;}
.y10d{bottom:652.999950px;}
.y167{bottom:653.004450px;}
.y3d{bottom:653.013450px;}
.y253{bottom:656.930700px;}
.ya6{bottom:659.818800px;}
.y20e{bottom:663.674700px;}
.y13{bottom:666.524550px;}
.y236{bottom:670.418700px;}
.y1bb{bottom:675.463950px;}
.y77{bottom:675.468450px;}
.y5f{bottom:675.481950px;}
.y154{bottom:675.490950px;}
.yeb{bottom:675.495450px;}
.ycf{bottom:675.504300px;}
.y10c{bottom:675.504450px;}
.y166{bottom:675.508950px;}
.y3c{bottom:675.517950px;}
.y252{bottom:676.430700px;}
.y1e3{bottom:678.483450px;}
.ya1{bottom:685.318800px;}
.y20d{bottom:695.930700px;}
.y19b{bottom:697.959450px;}
.y1ba{bottom:697.968450px;}
.y76{bottom:697.972950px;}
.y1e2{bottom:697.983450px;}
.y122{bottom:697.986450px;}
.y153{bottom:697.995450px;}
.y175{bottom:697.999950px;}
.yce{bottom:698.008800px;}
.y10b{bottom:698.008950px;}
.y3b{bottom:698.022450px;}
.y12{bottom:701.036400px;}
.y235{bottom:702.674700px;}
.ya0{bottom:703.321800px;}
.y251{bottom:708.686700px;}
.y20c{bottom:715.430700px;}
.y11{bottom:717.536400px;}
.y19a{bottom:720.463950px;}
.y1b9{bottom:720.472950px;}
.y5e{bottom:720.477450px;}
.yea{bottom:720.490950px;}
.y152{bottom:720.499950px;}
.y165{bottom:720.504450px;}
.ycd{bottom:720.513300px;}
.y3a{bottom:720.526950px;}
.y9f{bottom:721.324800px;}
.y234{bottom:722.174700px;}
.y250{bottom:728.186700px;}
.y1e1{bottom:730.239450px;}
.y20b{bottom:734.930700px;}
.y10{bottom:740.414400px;}
.y199{bottom:742.968450px;}
.y1b8{bottom:742.977450px;}
.y5d{bottom:742.981950px;}
.ye9{bottom:742.995450px;}
.y10a{bottom:743.004450px;}
.y164{bottom:743.008950px;}
.ycc{bottom:743.017800px;}
.y39{bottom:743.031450px;}
.ya4{bottom:746.824800px;}
.y24f{bottom:747.686700px;}
.y1e0{bottom:749.739450px;}
.y233{bottom:754.430700px;}
.ya2{bottom:764.827800px;}
.y198{bottom:765.472950px;}
.y1b7{bottom:765.481950px;}
.y5c{bottom:765.486450px;}
.y187{bottom:765.495450px;}
.ye8{bottom:765.499950px;}
.y109{bottom:765.508950px;}
.y163{bottom:765.513450px;}
.y20a{bottom:767.186700px;}
.y232{bottom:773.930700px;}
.yf{bottom:774.926100px;}
.y24e{bottom:779.942700px;}
.y1df{bottom:781.995450px;}
.ya3{bottom:782.830800px;}
.y75{bottom:787.977450px;}
.y1b6{bottom:787.986450px;}
.y121{bottom:787.990950px;}
.y186{bottom:787.999950px;}
.y136{bottom:788.004450px;}
.ycb{bottom:788.013300px;}
.y108{bottom:788.013450px;}
.y162{bottom:788.017950px;}
.y38{bottom:788.031450px;}
.ye{bottom:791.426100px;}
.y209{bottom:799.442700px;}
.y1de{bottom:801.495450px;}
.y231{bottom:806.186700px;}
.y9e{bottom:808.330800px;}
.y5b{bottom:810.481950px;}
.ye7{bottom:810.495450px;}
.y185{bottom:810.504450px;}
.y14a{bottom:810.508950px;}
.yca{bottom:810.517800px;}
.yd{bottom:814.304100px;}
.y9d{bottom:817.332300px;}
.y208{bottom:831.698700px;}
.y1b5{bottom:832.981950px;}
.y5a{bottom:832.986450px;}
.ye6{bottom:832.999950px;}
.y107{bottom:833.008950px;}
.y149{bottom:833.013450px;}
.yc9{bottom:833.022300px;}
.y1dd{bottom:833.751450px;}
.y230{bottom:838.442700px;}
.yc{bottom:848.815950px;}
.y207{bottom:851.198700px;}
.y9c{bottom:851.833800px;}
.y1dc{bottom:853.251450px;}
.y1b4{bottom:855.486450px;}
.y37{bottom:855.490950px;}
.ye5{bottom:855.504450px;}
.y106{bottom:855.513450px;}
.y148{bottom:855.517950px;}
.yc8{bottom:855.526800px;}
.y22f{bottom:857.942700px;}
.yb{bottom:865.315950px;}
.y9b{bottom:869.836800px;}
.y206{bottom:870.698700px;}
.y1b3{bottom:877.990950px;}
.y59{bottom:877.995450px;}
.ye4{bottom:878.008950px;}
.y105{bottom:878.017950px;}
.y161{bottom:878.022450px;}
.yc7{bottom:878.026800px;}
.y24d{bottom:883.454700px;}
.y1db{bottom:885.507450px;}
.ya{bottom:888.193950px;}
.y22e{bottom:890.198700px;}
.y9a{bottom:895.336800px;}
.y36{bottom:900.486450px;}
.y1b2{bottom:900.495450px;}
.y58{bottom:900.499950px;}
.ye3{bottom:900.513450px;}
.y151{bottom:900.522450px;}
.yc6{bottom:900.531300px;}
.y205{bottom:902.954700px;}
.y1da{bottom:905.007450px;}
.y22d{bottom:909.698700px;}
.y99{bottom:920.836800px;}
.y204{bottom:922.454700px;}
.y35{bottom:922.990950px;}
.y1b1{bottom:922.999950px;}
.y57{bottom:923.004450px;}
.y104{bottom:923.013450px;}
.y135{bottom:923.017950px;}
.y22c{bottom:929.198700px;}
.y1d9{bottom:937.263450px;}
.y34{bottom:945.495450px;}
.y1b0{bottom:945.504450px;}
.y56{bottom:945.508950px;}
.y103{bottom:945.517950px;}
.y147{bottom:945.522450px;}
.y98{bottom:946.336800px;}
.y9{bottom:948.214500px;}
.yc5{bottom:949.401900px;}
.y94{bottom:950.072550px;}
.y203{bottom:954.710700px;}
.y1d8{bottom:956.763450px;}
.y22b{bottom:961.454700px;}
.y33{bottom:967.999950px;}
.y1af{bottom:968.008950px;}
.y55{bottom:968.013450px;}
.y102{bottom:968.022450px;}
.y160{bottom:968.026950px;}
.y93{bottom:968.075550px;}
.y8{bottom:970.717500px;}
.y97{bottom:971.836800px;}
.y202{bottom:974.210700px;}
.y22a{bottom:980.954700px;}
.yc4{bottom:983.835750px;}
.y1d7{bottom:989.019450px;}
.y32{bottom:990.504450px;}
.y1ae{bottom:990.513450px;}
.y54{bottom:990.517950px;}
.y101{bottom:990.526950px;}
.y15f{bottom:990.531450px;}
.y201{bottom:993.710700px;}
.y96{bottom:997.336800px;}
.yc3{bottom:1001.838750px;}
.y7{bottom:1005.973500px;}
.y31{bottom:1013.008950px;}
.y184{bottom:1013.017950px;}
.y53{bottom:1013.022450px;}
.y100{bottom:1013.031450px;}
.y229{bottom:1013.210700px;}
.yc0{bottom:1014.588750px;}
.y1d6{bottom:1021.275450px;}
.y95{bottom:1022.836800px;}
.y200{bottom:1025.966700px;}
.yc2{bottom:1027.338750px;}
.y228{bottom:1032.710700px;}
.y30{bottom:1035.513450px;}
.y183{bottom:1035.522450px;}
.y74{bottom:1035.526950px;}
.y15e{bottom:1035.531450px;}
.y6{bottom:1038.973500px;}
.y1d5{bottom:1040.775450px;}
.yc1{bottom:1045.341750px;}
.y1ff{bottom:1045.466700px;}
.y92{bottom:1048.721250px;}
.y2f{bottom:1058.017950px;}
.yff{bottom:1058.026950px;}
.y174{bottom:1058.031450px;}
.y1fe{bottom:1064.966700px;}
.ybf{bottom:1071.222600px;}
.y5{bottom:1071.973500px;}
.y1d4{bottom:1073.031450px;}
.y2e{bottom:1080.522450px;}
.yfe{bottom:1080.531450px;}
.y227{bottom:1084.466700px;}
.y1d3{bottom:1092.531450px;}
.y1fd{bottom:1097.222700px;}
.y2d{bottom:1103.026950px;}
.y1fc{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y1fb{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h4{height:33.012000px;}
.h13{height:34.416000px;}
.h17{height:36.624000px;}
.hd{height:36.816000px;}
.h14{height:37.230000px;}
.h3{height:37.548000px;}
.hf{height:38.340000px;}
.ha{height:39.420000px;}
.he{height:41.202000px;}
.h21{height:42.096000px;}
.hc{height:42.444000px;}
.h20{height:42.480000px;}
.h1a{height:42.816000px;}
.h8{height:42.912000px;}
.h7{height:43.800000px;}
.h1b{height:44.280000px;}
.h15{height:45.594000px;}
.h1f{height:47.088000px;}
.h11{height:47.790000px;}
.hb{height:48.168000px;}
.h9{height:48.276000px;}
.h12{height:52.974000px;}
.h18{height:52.992000px;}
.h1d{height:53.118000px;}
.h1e{height:58.410000px;}
.h1c{height:58.860000px;}
.h10{height:59.004000px;}
.h6{height:59.514000px;}
.h19{height:64.746000px;}
.h16{height:81.600000px;}
.h5{height:88.440000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.xd{left:123.607050px;}
.x5{left:127.009050px;}
.xa{left:140.318100px;}
.x9{left:141.803100px;}
.x1a{left:148.823100px;}
.x19{left:153.050100px;}
.xb{left:187.095600px;}
.x16{left:209.303100px;}
.xe{left:220.035300px;}
.x12{left:226.423050px;}
.x14{left:245.101800px;}
.xc{left:276.358650px;}
.x11{left:279.547650px;}
.x13{left:314.404350px;}
.xf{left:416.755050px;}
.x15{left:467.716800px;}
.x3{left:585.415800px;}
.x4{left:623.100300px;}
.x2{left:677.563800px;}
.x10{left:710.145300px;}
.x7{left:724.733400px;}
.x8{left:726.771450px;}
.x6{left:729.446700px;}
.x18{left:732.249300px;}
.x17{left:734.924550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000533pt;}
.v1{vertical-align:32.005333pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.725333pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws72{word-spacing:-11.952000pt;}
.ws6a{word-spacing:-11.376000pt;}
.ws7f{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws22{word-spacing:-9.066667pt;}
.ws6b{word-spacing:-8.533333pt;}
.ws27{word-spacing:-6.632208pt;}
.ws3e{word-spacing:-4.752000pt;}
.ws3c{word-spacing:-4.128000pt;}
.wsf{word-spacing:-3.984000pt;}
.ws60{word-spacing:-3.552000pt;}
.ws64{word-spacing:-3.264000pt;}
.ws7{word-spacing:-3.072000pt;}
.ws76{word-spacing:-2.880000pt;}
.ws49{word-spacing:-2.448000pt;}
.wsc{word-spacing:-2.352000pt;}
.ws4{word-spacing:-2.208000pt;}
.ws3b{word-spacing:-2.112000pt;}
.ws54{word-spacing:-2.016000pt;}
.ws53{word-spacing:-1.872000pt;}
.ws62{word-spacing:-1.632000pt;}
.ws44{word-spacing:-1.584000pt;}
.ws42{word-spacing:-1.536000pt;}
.ws18{word-spacing:-1.488000pt;}
.ws31{word-spacing:-1.440000pt;}
.ws47{word-spacing:-1.296000pt;}
.ws5e{word-spacing:-1.200000pt;}
.ws50{word-spacing:-1.152000pt;}
.ws32{word-spacing:-1.056000pt;}
.ws3f{word-spacing:-1.008000pt;}
.ws28{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.912000pt;}
.ws37{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws2b{word-spacing:-0.624000pt;}
.ws6{word-spacing:-0.528000pt;}
.ws75{word-spacing:-0.432000pt;}
.ws78{word-spacing:-0.288000pt;}
.ws39{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws33{word-spacing:0.192000pt;}
.ws7c{word-spacing:0.288000pt;}
.ws30{word-spacing:0.384000pt;}
.ws80{word-spacing:0.426667pt;}
.ws17{word-spacing:0.432000pt;}
.ws41{word-spacing:0.480000pt;}
.ws5{word-spacing:0.528000pt;}
.ws6f{word-spacing:0.624000pt;}
.ws5a{word-spacing:0.672000pt;}
.ws7e{word-spacing:0.725333pt;}
.ws6c{word-spacing:0.768000pt;}
.ws73{word-spacing:0.816000pt;}
.ws7d{word-spacing:0.853333pt;}
.ws16{word-spacing:0.864000pt;}
.ws79{word-spacing:1.056000pt;}
.ws40{word-spacing:1.200000pt;}
.ws14{word-spacing:1.248000pt;}
.ws13{word-spacing:1.344000pt;}
.ws71{word-spacing:1.440000pt;}
.wsd{word-spacing:1.488000pt;}
.ws4b{word-spacing:1.632000pt;}
.ws12{word-spacing:1.680000pt;}
.ws4e{word-spacing:1.728000pt;}
.wse{word-spacing:1.776000pt;}
.ws48{word-spacing:1.872000pt;}
.ws67{word-spacing:2.160000pt;}
.ws11{word-spacing:2.256000pt;}
.wsb{word-spacing:2.304000pt;}
.ws4a{word-spacing:2.400000pt;}
.ws10{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.736000pt;}
.ws2c{word-spacing:3.024000pt;}
.ws77{word-spacing:3.072000pt;}
.ws45{word-spacing:3.168000pt;}
.ws66{word-spacing:3.264000pt;}
.ws9{word-spacing:3.312000pt;}
.ws70{word-spacing:3.600000pt;}
.ws7a{word-spacing:3.696000pt;}
.ws34{word-spacing:4.032000pt;}
.ws3a{word-spacing:4.080000pt;}
.ws46{word-spacing:4.128000pt;}
.ws4f{word-spacing:4.176000pt;}
.wsa{word-spacing:4.272000pt;}
.ws1c{word-spacing:4.368000pt;}
.ws6e{word-spacing:4.512000pt;}
.ws59{word-spacing:4.560000pt;}
.ws1d{word-spacing:4.608000pt;}
.ws3d{word-spacing:4.848000pt;}
.ws5c{word-spacing:5.040000pt;}
.ws74{word-spacing:5.328000pt;}
.ws2d{word-spacing:5.424000pt;}
.ws38{word-spacing:5.472000pt;}
.ws20{word-spacing:5.760000pt;}
.ws8{word-spacing:5.856000pt;}
.ws65{word-spacing:5.904000pt;}
.ws3{word-spacing:6.048000pt;}
.ws2f{word-spacing:6.096000pt;}
.ws1b{word-spacing:6.144000pt;}
.ws69{word-spacing:6.240000pt;}
.ws2e{word-spacing:6.288000pt;}
.ws5f{word-spacing:6.336000pt;}
.ws4d{word-spacing:6.576000pt;}
.ws56{word-spacing:6.960000pt;}
.ws57{word-spacing:7.056000pt;}
.ws6d{word-spacing:7.152000pt;}
.ws63{word-spacing:7.200000pt;}
.ws15{word-spacing:7.248000pt;}
.ws1f{word-spacing:7.392000pt;}
.ws2a{word-spacing:7.536000pt;}
.ws51{word-spacing:7.680000pt;}
.ws36{word-spacing:8.112000pt;}
.ws52{word-spacing:8.256000pt;}
.ws5b{word-spacing:8.352000pt;}
.ws1a{word-spacing:8.400000pt;}
.ws61{word-spacing:8.448000pt;}
.ws58{word-spacing:8.544000pt;}
.ws68{word-spacing:9.312000pt;}
.ws29{word-spacing:9.600000pt;}
.ws4c{word-spacing:9.984000pt;}
.ws43{word-spacing:10.128000pt;}
.ws19{word-spacing:10.800000pt;}
.ws7b{word-spacing:12.624000pt;}
.ws23{word-spacing:129.562667pt;}
.ws24{word-spacing:252.824000pt;}
.ws26{word-spacing:400.000000pt;}
.ws21{word-spacing:490.197333pt;}
.ws25{word-spacing:866.093333pt;}
._4{margin-left:-13.772267pt;}
._35{margin-left:-6.762133pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._7{margin-left:-3.249600pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._6{width:2.775467pt;}
._8{width:3.763200pt;}
._b{width:4.795200pt;}
._c{width:5.923200pt;}
._9{width:6.825600pt;}
._a{width:8.524800pt;}
._f{width:9.561600pt;}
._34{width:10.478400pt;}
._e{width:12.326400pt;}
._16{width:13.521600pt;}
._d{width:14.961600pt;}
._10{width:15.892800pt;}
._11{width:17.428800pt;}
._3a{width:18.681600pt;}
._38{width:23.020800pt;}
._36{width:23.985600pt;}
._37{width:25.464000pt;}
._33{width:34.133333pt;}
._15{width:35.232000pt;}
._13{width:37.440000pt;}
._14{width:39.264000pt;}
._12{width:45.024000pt;}
._39{width:64.704000pt;}
._27{width:117.781333pt;}
._2c{width:137.514667pt;}
._23{width:151.160000pt;}
._1d{width:197.173333pt;}
._2e{width:220.792000pt;}
._30{width:233.290667pt;}
._18{width:255.957333pt;}
._21{width:261.546667pt;}
._1e{width:273.197333pt;}
._22{width:274.829333pt;}
._1a{width:277.762667pt;}
._2d{width:281.733333pt;}
._20{width:284.621333pt;}
._2a{width:293.306667pt;}
._24{width:331.917333pt;}
._2f{width:370.061333pt;}
._1b{width:397.378667pt;}
._1f{width:399.904000pt;}
._19{width:431.016000pt;}
._1c{width:444.253333pt;}
._29{width:459.925333pt;}
._2b{width:550.301333pt;}
._32{width:588.426667pt;}
._28{width:591.605333pt;}
._31{width:611.114667pt;}
._25{width:640.554667pt;}
._17{width:651.904000pt;}
._26{width:722.150933pt;}
.fs9{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.ye2{bottom:94.488400pt;}
.y226{bottom:94.562400pt;}
.y1d2{bottom:100.336400pt;}
.y52{bottom:100.396400pt;}
.y120{bottom:100.440400pt;}
.y146{bottom:100.460400pt;}
.y73{bottom:100.464400pt;}
.y12f{bottom:100.468400pt;}
.y24c{bottom:101.207733pt;}
.y1fa{bottom:102.381733pt;}
.ye1{bottom:107.288400pt;}
.ybe{bottom:107.439200pt;}
.y225{bottom:111.895733pt;}
.y24b{bottom:118.541067pt;}
.y1f9{bottom:119.715067pt;}
.ye0{bottom:120.088400pt;}
.y1d1{bottom:120.340400pt;}
.y134{bottom:120.392400pt;}
.y51{bottom:120.400400pt;}
.y197{bottom:120.416400pt;}
.y1ad{bottom:120.428400pt;}
.y11f{bottom:120.444400pt;}
.y145{bottom:120.464400pt;}
.y72{bottom:120.468400pt;}
.y12e{bottom:120.472400pt;}
.y224{bottom:129.229067pt;}
.ybd{bottom:130.492267pt;}
.ydf{bottom:132.888400pt;}
.y24a{bottom:135.874400pt;}
.y1f8{bottom:137.048400pt;}
.y1d0{bottom:140.344400pt;}
.y133{bottom:140.396400pt;}
.y50{bottom:140.404400pt;}
.y182{bottom:140.420400pt;}
.y1ac{bottom:140.432400pt;}
.y11e{bottom:140.448400pt;}
.y144{bottom:140.468400pt;}
.y71{bottom:140.472400pt;}
.ybc{bottom:153.158933pt;}
.y223{bottom:157.901067pt;}
.y25{bottom:158.843867pt;}
.y1cf{bottom:160.348400pt;}
.y132{bottom:160.400400pt;}
.y181{bottom:160.424400pt;}
.y1ab{bottom:160.436400pt;}
.y11d{bottom:160.452400pt;}
.y15d{bottom:160.456400pt;}
.y150{bottom:160.468400pt;}
.y12d{bottom:160.472400pt;}
.y88{bottom:160.476400pt;}
.y249{bottom:164.546400pt;}
.y1f7{bottom:165.720400pt;}
.ybb{bottom:169.161600pt;}
.y222{bottom:175.234400pt;}
.y1ce{bottom:180.352400pt;}
.yfd{bottom:180.392400pt;}
.y4f{bottom:180.400400pt;}
.y131{bottom:180.404400pt;}
.y196{bottom:180.428400pt;}
.y1aa{bottom:180.440400pt;}
.y11c{bottom:180.456400pt;}
.y15c{bottom:180.460400pt;}
.y143{bottom:180.464400pt;}
.yde{bottom:180.468267pt;}
.y70{bottom:180.472400pt;}
.yb5{bottom:180.494933pt;}
.y248{bottom:181.879733pt;}
.y1f6{bottom:183.053733pt;}
.yba{bottom:191.828267pt;}
.y221{bottom:192.567733pt;}
.yb4{bottom:196.497600pt;}
.y24{bottom:198.839867pt;}
.yb9{bottom:199.829600pt;}
.y1cd{bottom:200.356400pt;}
.y12c{bottom:200.384400pt;}
.yfc{bottom:200.396400pt;}
.y4e{bottom:200.404400pt;}
.y180{bottom:200.420400pt;}
.y195{bottom:200.432400pt;}
.y1a9{bottom:200.444400pt;}
.y14f{bottom:200.464400pt;}
.y142{bottom:200.468400pt;}
.ydd{bottom:200.472267pt;}
.y87{bottom:200.472400pt;}
.y247{bottom:210.551733pt;}
.y1f5{bottom:211.725733pt;}
.yb3{bottom:212.500267pt;}
.y23{bottom:218.843867pt;}
.y1cc{bottom:220.360400pt;}
.y91{bottom:220.364400pt;}
.y12b{bottom:220.388400pt;}
.yfb{bottom:220.400400pt;}
.y4d{bottom:220.408400pt;}
.y17f{bottom:220.424400pt;}
.y194{bottom:220.436400pt;}
.y1a8{bottom:220.448400pt;}
.y11b{bottom:220.452400pt;}
.y14e{bottom:220.468400pt;}
.y141{bottom:220.472400pt;}
.y220{bottom:221.239733pt;}
.y1f4{bottom:229.059067pt;}
.yb8{bottom:230.497600pt;}
.y21f{bottom:238.573067pt;}
.y22{bottom:238.847867pt;}
.y246{bottom:239.223733pt;}
.y1cb{bottom:240.364400pt;}
.y90{bottom:240.368400pt;}
.y6f{bottom:240.380400pt;}
.y12a{bottom:240.392400pt;}
.yfa{bottom:240.404400pt;}
.y4c{bottom:240.412400pt;}
.y17e{bottom:240.428400pt;}
.y193{bottom:240.440400pt;}
.y1a7{bottom:240.452400pt;}
.y11a{bottom:240.456400pt;}
.y86{bottom:240.472400pt;}
.ydc{bottom:240.476267pt;}
.y1f3{bottom:246.392400pt;}
.yb7{bottom:246.500267pt;}
.y21e{bottom:255.906400pt;}
.y245{bottom:256.557067pt;}
.y21{bottom:258.851867pt;}
.y1ca{bottom:260.368400pt;}
.y8f{bottom:260.372400pt;}
.y6e{bottom:260.384400pt;}
.y129{bottom:260.396400pt;}
.y130{bottom:260.408400pt;}
.y4b{bottom:260.416400pt;}
.y17d{bottom:260.432400pt;}
.y192{bottom:260.444400pt;}
.y1a6{bottom:260.456400pt;}
.y119{bottom:260.460400pt;}
.y15b{bottom:260.464400pt;}
.y173{bottom:260.467067pt;}
.y140{bottom:260.472400pt;}
.yb6{bottom:262.502933pt;}
.y1f2{bottom:275.064400pt;}
.y20{bottom:278.855867pt;}
.y1c9{bottom:280.372400pt;}
.y8e{bottom:280.376400pt;}
.y6d{bottom:280.388400pt;}
.yf9{bottom:280.400400pt;}
.y4a{bottom:280.420400pt;}
.y191{bottom:280.448400pt;}
.y1a5{bottom:280.460400pt;}
.y14d{bottom:280.468400pt;}
.ydb{bottom:280.472267pt;}
.y172{bottom:280.472400pt;}
.y21d{bottom:284.578400pt;}
.yb2{bottom:285.180933pt;}
.y244{bottom:285.229067pt;}
.y1f1{bottom:292.397733pt;}
.y1f{bottom:298.859867pt;}
.y85{bottom:300.368400pt;}
.y1c8{bottom:300.376400pt;}
.y8d{bottom:300.380400pt;}
.y6c{bottom:300.392400pt;}
.yf8{bottom:300.404400pt;}
.y13f{bottom:300.416400pt;}
.y17c{bottom:300.428400pt;}
.y190{bottom:300.452400pt;}
.y118{bottom:300.456400pt;}
.y1a4{bottom:300.464400pt;}
.y14c{bottom:300.472400pt;}
.yb1{bottom:301.183600pt;}
.y21c{bottom:301.911733pt;}
.y243{bottom:302.562400pt;}
.y1f0{bottom:309.731067pt;}
.y1e{bottom:318.863867pt;}
.yad{bottom:319.180933pt;}
.y21b{bottom:319.245067pt;}
.y84{bottom:320.372400pt;}
.y1c7{bottom:320.380400pt;}
.y8c{bottom:320.384400pt;}
.y128{bottom:320.396400pt;}
.yf7{bottom:320.408400pt;}
.y49{bottom:320.416400pt;}
.y13e{bottom:320.420400pt;}
.y171{bottom:320.452400pt;}
.y18f{bottom:320.456400pt;}
.y117{bottom:320.460400pt;}
.y1a3{bottom:320.468400pt;}
.yb0{bottom:323.850267pt;}
.y242{bottom:331.234400pt;}
.yac{bottom:335.183600pt;}
.y1ef{bottom:338.403067pt;}
.y1d{bottom:338.867867pt;}
.y83{bottom:340.376400pt;}
.y6b{bottom:340.388400pt;}
.y127{bottom:340.400400pt;}
.yf6{bottom:340.412400pt;}
.yda{bottom:340.420267pt;}
.y48{bottom:340.420400pt;}
.y13d{bottom:340.424400pt;}
.y170{bottom:340.456400pt;}
.y116{bottom:340.464400pt;}
.y14b{bottom:340.472400pt;}
.yaf{bottom:346.516933pt;}
.y21a{bottom:347.917067pt;}
.y241{bottom:348.567733pt;}
.y1ee{bottom:355.736400pt;}
.y1c{bottom:358.871867pt;}
.y1c6{bottom:360.376400pt;}
.y82{bottom:360.380400pt;}
.y6a{bottom:360.392400pt;}
.y126{bottom:360.404400pt;}
.yf5{bottom:360.416400pt;}
.yd9{bottom:360.424267pt;}
.y47{bottom:360.424400pt;}
.y17b{bottom:360.428400pt;}
.y18e{bottom:360.452400pt;}
.y16f{bottom:360.460400pt;}
.y115{bottom:360.468400pt;}
.y219{bottom:365.250400pt;}
.yae{bottom:369.183600pt;}
.y1ed{bottom:373.069733pt;}
.y240{bottom:377.239733pt;}
.y1b{bottom:378.875867pt;}
.y1c5{bottom:380.380400pt;}
.y69{bottom:380.396400pt;}
.y125{bottom:380.408400pt;}
.y15a{bottom:380.416400pt;}
.yf4{bottom:380.420400pt;}
.yd8{bottom:380.428267pt;}
.y46{bottom:380.428400pt;}
.y17a{bottom:380.432400pt;}
.y18d{bottom:380.456400pt;}
.y16e{bottom:380.464400pt;}
.y1a2{bottom:380.467067pt;}
.y114{bottom:380.472400pt;}
.y218{bottom:382.583733pt;}
.yab{bottom:392.196667pt;}
.y23f{bottom:394.573067pt;}
.y1a{bottom:398.879867pt;}
.y81{bottom:400.376400pt;}
.y1c4{bottom:400.384400pt;}
.y68{bottom:400.400400pt;}
.y124{bottom:400.412400pt;}
.y159{bottom:400.420400pt;}
.y13c{bottom:400.424400pt;}
.yd7{bottom:400.432267pt;}
.y45{bottom:400.432400pt;}
.y179{bottom:400.436400pt;}
.y18c{bottom:400.460400pt;}
.y16d{bottom:400.468400pt;}
.y1a1{bottom:400.472400pt;}
.y1ec{bottom:401.741733pt;}
.y217{bottom:411.255733pt;}
.y19{bottom:418.883867pt;}
.y80{bottom:420.380400pt;}
.y1c3{bottom:420.388400pt;}
.y8b{bottom:420.392400pt;}
.y67{bottom:420.404400pt;}
.yf3{bottom:420.416400pt;}
.y158{bottom:420.424400pt;}
.y13b{bottom:420.428400pt;}
.yd6{bottom:420.436267pt;}
.y44{bottom:420.436400pt;}
.y18b{bottom:420.464400pt;}
.y113{bottom:420.472400pt;}
.y23e{bottom:423.245067pt;}
.y216{bottom:428.589067pt;}
.y1eb{bottom:430.413733pt;}
.y18{bottom:438.887867pt;}
.y7f{bottom:440.384400pt;}
.y1c2{bottom:440.392400pt;}
.y8a{bottom:440.396400pt;}
.y66{bottom:440.408400pt;}
.yf2{bottom:440.420400pt;}
.y157{bottom:440.428400pt;}
.y178{bottom:440.432400pt;}
.yd5{bottom:440.440267pt;}
.y43{bottom:440.440400pt;}
.y18a{bottom:440.468400pt;}
.yaa{bottom:440.468533pt;}
.y16c{bottom:440.476400pt;}
.y23d{bottom:440.578400pt;}
.y215{bottom:445.922400pt;}
.y1ea{bottom:447.747067pt;}
.y23c{bottom:457.911733pt;}
.y17{bottom:458.891867pt;}
.y7e{bottom:460.388400pt;}
.y1c1{bottom:460.396400pt;}
.y89{bottom:460.400400pt;}
.y123{bottom:460.412400pt;}
.y13a{bottom:460.424400pt;}
.y156{bottom:460.432400pt;}
.y177{bottom:460.436400pt;}
.y42{bottom:460.444400pt;}
.y1a0{bottom:460.460400pt;}
.y112{bottom:460.472400pt;}
.ya9{bottom:460.472533pt;}
.y214{bottom:463.255733pt;}
.y1e9{bottom:476.419067pt;}
.y7d{bottom:480.392400pt;}
.y1c0{bottom:480.400400pt;}
.y65{bottom:480.404400pt;}
.yf1{bottom:480.416400pt;}
.y139{bottom:480.428400pt;}
.yd4{bottom:480.436267pt;}
.y16b{bottom:480.440400pt;}
.y41{bottom:480.448400pt;}
.y19f{bottom:480.464400pt;}
.y23b{bottom:486.583733pt;}
.y213{bottom:491.927733pt;}
.y1e8{bottom:493.752400pt;}
.y7c{bottom:500.396400pt;}
.y1bf{bottom:500.404400pt;}
.y64{bottom:500.408400pt;}
.yf0{bottom:500.420400pt;}
.y111{bottom:500.428400pt;}
.y138{bottom:500.432400pt;}
.yd3{bottom:500.440267pt;}
.y16a{bottom:500.444400pt;}
.y40{bottom:500.452400pt;}
.y19e{bottom:500.468400pt;}
.y189{bottom:500.472400pt;}
.y257{bottom:503.266400pt;}
.y16{bottom:503.447867pt;}
.y23a{bottom:503.917067pt;}
.y212{bottom:509.261067pt;}
.y1e7{bottom:511.085733pt;}
.y7b{bottom:520.400400pt;}
.y1be{bottom:520.408400pt;}
.y63{bottom:520.412400pt;}
.yef{bottom:520.424400pt;}
.y110{bottom:520.432400pt;}
.y137{bottom:520.436400pt;}
.y169{bottom:520.448400pt;}
.y19d{bottom:520.472400pt;}
.y256{bottom:520.599733pt;}
.y211{bottom:526.594400pt;}
.ya8{bottom:531.423467pt;}
.y239{bottom:532.589067pt;}
.y255{bottom:537.933067pt;}
.y1e6{bottom:539.757733pt;}
.y7a{bottom:540.404400pt;}
.y1bd{bottom:540.412400pt;}
.y62{bottom:540.416400pt;}
.yee{bottom:540.428400pt;}
.yd2{bottom:540.436267pt;}
.y10f{bottom:540.436400pt;}
.y176{bottom:540.440400pt;}
.y3f{bottom:540.448400pt;}
.y238{bottom:549.922400pt;}
.ya7{bottom:554.500267pt;}
.y210{bottom:555.266400pt;}
.y1e5{bottom:557.091067pt;}
.y15{bottom:557.463600pt;}
.y79{bottom:560.408400pt;}
.y61{bottom:560.420400pt;}
.y188{bottom:560.428400pt;}
.yed{bottom:560.432400pt;}
.yd1{bottom:560.440267pt;}
.y10e{bottom:560.440400pt;}
.y168{bottom:560.444400pt;}
.y3e{bottom:560.452400pt;}
.y19c{bottom:560.472400pt;}
.y254{bottom:566.605067pt;}
.ya5{bottom:570.502933pt;}
.y14{bottom:572.130267pt;}
.y20f{bottom:572.599733pt;}
.y1e4{bottom:574.424400pt;}
.y237{bottom:578.594400pt;}
.y1bc{bottom:580.408400pt;}
.y78{bottom:580.412400pt;}
.y60{bottom:580.424400pt;}
.y155{bottom:580.432400pt;}
.yec{bottom:580.436400pt;}
.yd0{bottom:580.444267pt;}
.y10d{bottom:580.444400pt;}
.y167{bottom:580.448400pt;}
.y3d{bottom:580.456400pt;}
.y253{bottom:583.938400pt;}
.ya6{bottom:586.505600pt;}
.y20e{bottom:589.933067pt;}
.y13{bottom:592.466267pt;}
.y236{bottom:595.927733pt;}
.y1bb{bottom:600.412400pt;}
.y77{bottom:600.416400pt;}
.y5f{bottom:600.428400pt;}
.y154{bottom:600.436400pt;}
.yeb{bottom:600.440400pt;}
.ycf{bottom:600.448267pt;}
.y10c{bottom:600.448400pt;}
.y166{bottom:600.452400pt;}
.y3c{bottom:600.460400pt;}
.y252{bottom:601.271733pt;}
.y1e3{bottom:603.096400pt;}
.ya1{bottom:609.172267pt;}
.y20d{bottom:618.605067pt;}
.y19b{bottom:620.408400pt;}
.y1ba{bottom:620.416400pt;}
.y76{bottom:620.420400pt;}
.y1e2{bottom:620.429733pt;}
.y122{bottom:620.432400pt;}
.y153{bottom:620.440400pt;}
.y175{bottom:620.444400pt;}
.yce{bottom:620.452267pt;}
.y10b{bottom:620.452400pt;}
.y3b{bottom:620.464400pt;}
.y12{bottom:623.143467pt;}
.y235{bottom:624.599733pt;}
.ya0{bottom:625.174933pt;}
.y251{bottom:629.943733pt;}
.y20c{bottom:635.938400pt;}
.y11{bottom:637.810133pt;}
.y19a{bottom:640.412400pt;}
.y1b9{bottom:640.420400pt;}
.y5e{bottom:640.424400pt;}
.yea{bottom:640.436400pt;}
.y152{bottom:640.444400pt;}
.y165{bottom:640.448400pt;}
.ycd{bottom:640.456267pt;}
.y3a{bottom:640.468400pt;}
.y9f{bottom:641.177600pt;}
.y234{bottom:641.933067pt;}
.y250{bottom:647.277067pt;}
.y1e1{bottom:649.101733pt;}
.y20b{bottom:653.271733pt;}
.y10{bottom:658.146133pt;}
.y199{bottom:660.416400pt;}
.y1b8{bottom:660.424400pt;}
.y5d{bottom:660.428400pt;}
.ye9{bottom:660.440400pt;}
.y10a{bottom:660.448400pt;}
.y164{bottom:660.452400pt;}
.ycc{bottom:660.460267pt;}
.y39{bottom:660.472400pt;}
.ya4{bottom:663.844267pt;}
.y24f{bottom:664.610400pt;}
.y1e0{bottom:666.435067pt;}
.y233{bottom:670.605067pt;}
.ya2{bottom:679.846933pt;}
.y198{bottom:680.420400pt;}
.y1b7{bottom:680.428400pt;}
.y5c{bottom:680.432400pt;}
.y187{bottom:680.440400pt;}
.ye8{bottom:680.444400pt;}
.y109{bottom:680.452400pt;}
.y163{bottom:680.456400pt;}
.y20a{bottom:681.943733pt;}
.y232{bottom:687.938400pt;}
.yf{bottom:688.823200pt;}
.y24e{bottom:693.282400pt;}
.y1df{bottom:695.107067pt;}
.ya3{bottom:695.849600pt;}
.y75{bottom:700.424400pt;}
.y1b6{bottom:700.432400pt;}
.y121{bottom:700.436400pt;}
.y186{bottom:700.444400pt;}
.y136{bottom:700.448400pt;}
.ycb{bottom:700.456267pt;}
.y108{bottom:700.456400pt;}
.y162{bottom:700.460400pt;}
.y38{bottom:700.472400pt;}
.ye{bottom:703.489867pt;}
.y209{bottom:710.615733pt;}
.y1de{bottom:712.440400pt;}
.y231{bottom:716.610400pt;}
.y9e{bottom:718.516267pt;}
.y5b{bottom:720.428400pt;}
.ye7{bottom:720.440400pt;}
.y185{bottom:720.448400pt;}
.y14a{bottom:720.452400pt;}
.yca{bottom:720.460267pt;}
.yd{bottom:723.825867pt;}
.y9d{bottom:726.517600pt;}
.y208{bottom:739.287733pt;}
.y1b5{bottom:740.428400pt;}
.y5a{bottom:740.432400pt;}
.ye6{bottom:740.444400pt;}
.y107{bottom:740.452400pt;}
.y149{bottom:740.456400pt;}
.yc9{bottom:740.464267pt;}
.y1dd{bottom:741.112400pt;}
.y230{bottom:745.282400pt;}
.yc{bottom:754.503067pt;}
.y207{bottom:756.621067pt;}
.y9c{bottom:757.185600pt;}
.y1dc{bottom:758.445733pt;}
.y1b4{bottom:760.432400pt;}
.y37{bottom:760.436400pt;}
.ye5{bottom:760.448400pt;}
.y106{bottom:760.456400pt;}
.y148{bottom:760.460400pt;}
.yc8{bottom:760.468267pt;}
.y22f{bottom:762.615733pt;}
.yb{bottom:769.169733pt;}
.y9b{bottom:773.188267pt;}
.y206{bottom:773.954400pt;}
.y1b3{bottom:780.436400pt;}
.y59{bottom:780.440400pt;}
.ye4{bottom:780.452400pt;}
.y105{bottom:780.460400pt;}
.y161{bottom:780.464400pt;}
.yc7{bottom:780.468267pt;}
.y24d{bottom:785.293067pt;}
.y1db{bottom:787.117733pt;}
.ya{bottom:789.505733pt;}
.y22e{bottom:791.287733pt;}
.y9a{bottom:795.854933pt;}
.y36{bottom:800.432400pt;}
.y1b2{bottom:800.440400pt;}
.y58{bottom:800.444400pt;}
.ye3{bottom:800.456400pt;}
.y151{bottom:800.464400pt;}
.yc6{bottom:800.472267pt;}
.y205{bottom:802.626400pt;}
.y1da{bottom:804.451067pt;}
.y22d{bottom:808.621067pt;}
.y99{bottom:818.521600pt;}
.y204{bottom:819.959733pt;}
.y35{bottom:820.436400pt;}
.y1b1{bottom:820.444400pt;}
.y57{bottom:820.448400pt;}
.y104{bottom:820.456400pt;}
.y135{bottom:820.460400pt;}
.y22c{bottom:825.954400pt;}
.y1d9{bottom:833.123067pt;}
.y34{bottom:840.440400pt;}
.y1b0{bottom:840.448400pt;}
.y56{bottom:840.452400pt;}
.y103{bottom:840.460400pt;}
.y147{bottom:840.464400pt;}
.y98{bottom:841.188267pt;}
.y9{bottom:842.857333pt;}
.yc5{bottom:843.912800pt;}
.y94{bottom:844.508933pt;}
.y203{bottom:848.631733pt;}
.y1d8{bottom:850.456400pt;}
.y22b{bottom:854.626400pt;}
.y33{bottom:860.444400pt;}
.y1af{bottom:860.452400pt;}
.y55{bottom:860.456400pt;}
.y102{bottom:860.464400pt;}
.y160{bottom:860.468400pt;}
.y93{bottom:860.511600pt;}
.y8{bottom:862.860000pt;}
.y97{bottom:863.854933pt;}
.y202{bottom:865.965067pt;}
.y22a{bottom:871.959733pt;}
.yc4{bottom:874.520667pt;}
.y1d7{bottom:879.128400pt;}
.y32{bottom:880.448400pt;}
.y1ae{bottom:880.456400pt;}
.y54{bottom:880.460400pt;}
.y101{bottom:880.468400pt;}
.y15f{bottom:880.472400pt;}
.y201{bottom:883.298400pt;}
.y96{bottom:886.521600pt;}
.yc3{bottom:890.523333pt;}
.y7{bottom:894.198667pt;}
.y31{bottom:900.452400pt;}
.y184{bottom:900.460400pt;}
.y53{bottom:900.464400pt;}
.y100{bottom:900.472400pt;}
.y229{bottom:900.631733pt;}
.yc0{bottom:901.856667pt;}
.y1d6{bottom:907.800400pt;}
.y95{bottom:909.188267pt;}
.y200{bottom:911.970400pt;}
.yc2{bottom:913.190000pt;}
.y228{bottom:917.965067pt;}
.y30{bottom:920.456400pt;}
.y183{bottom:920.464400pt;}
.y74{bottom:920.468400pt;}
.y15e{bottom:920.472400pt;}
.y6{bottom:923.532000pt;}
.y1d5{bottom:925.133733pt;}
.yc1{bottom:929.192667pt;}
.y1ff{bottom:929.303733pt;}
.y92{bottom:932.196667pt;}
.y2f{bottom:940.460400pt;}
.yff{bottom:940.468400pt;}
.y174{bottom:940.472400pt;}
.y1fe{bottom:946.637067pt;}
.ybf{bottom:952.197867pt;}
.y5{bottom:952.865333pt;}
.y1d4{bottom:953.805733pt;}
.y2e{bottom:960.464400pt;}
.yfe{bottom:960.472400pt;}
.y227{bottom:963.970400pt;}
.y1d3{bottom:971.139067pt;}
.y1fd{bottom:975.309067pt;}
.y2d{bottom:980.468400pt;}
.y1fc{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y1fb{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h4{height:29.344000pt;}
.h13{height:30.592000pt;}
.h17{height:32.554667pt;}
.hd{height:32.725333pt;}
.h14{height:33.093333pt;}
.h3{height:33.376000pt;}
.hf{height:34.080000pt;}
.ha{height:35.040000pt;}
.he{height:36.624000pt;}
.h21{height:37.418667pt;}
.hc{height:37.728000pt;}
.h20{height:37.760000pt;}
.h1a{height:38.058667pt;}
.h8{height:38.144000pt;}
.h7{height:38.933333pt;}
.h1b{height:39.360000pt;}
.h15{height:40.528000pt;}
.h1f{height:41.856000pt;}
.h11{height:42.480000pt;}
.hb{height:42.816000pt;}
.h9{height:42.912000pt;}
.h12{height:47.088000pt;}
.h18{height:47.104000pt;}
.h1d{height:47.216000pt;}
.h1e{height:51.920000pt;}
.h1c{height:52.320000pt;}
.h10{height:52.448000pt;}
.h6{height:52.901333pt;}
.h19{height:57.552000pt;}
.h16{height:72.533333pt;}
.h5{height:78.613333pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.xd{left:109.872933pt;}
.x5{left:112.896933pt;}
.xa{left:124.727200pt;}
.x9{left:126.047200pt;}
.x1a{left:132.287200pt;}
.x19{left:136.044533pt;}
.xb{left:166.307200pt;}
.x16{left:186.047200pt;}
.xe{left:195.586933pt;}
.x12{left:201.264933pt;}
.x14{left:217.868267pt;}
.xc{left:245.652133pt;}
.x11{left:248.486800pt;}
.x13{left:279.470533pt;}
.xf{left:370.448933pt;}
.x15{left:415.748267pt;}
.x3{left:520.369600pt;}
.x4{left:553.866933pt;}
.x2{left:602.278933pt;}
.x10{left:631.240267pt;}
.x7{left:644.207467pt;}
.x8{left:646.019067pt;}
.x6{left:648.397067pt;}
.x18{left:650.888267pt;}
.x17{left:653.266267pt;}
}




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