
    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_e302d35d6c2d812631006d78.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0d25bf8572fbc72bac16f6a0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_39d2a76277a2138520433778.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_43e979018cc3e41932ea043b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_51c847c48bc913e41de19a92.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_c48392889bd9ac4127f939f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.012000;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_f7ee13bf1c3ed27af054562b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_900f4672738186db94e5b3d1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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_db3f09f36cab79e4b4a74efd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_6d1d8fdf9a0698493c89603e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_6d67bc83938858b51920d5fc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902344;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_385e5207afce8f10516bec3a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.837000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls24{letter-spacing:-2.808000px;}
.ls20{letter-spacing:-2.340000px;}
.ls10{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.252000px;}
.ls30{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.936000px;}
.ls26{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.440000px;}
.ls21{letter-spacing:1.656000px;}
.ls2b{letter-spacing:3.240000px;}
.ls28{letter-spacing:4.290000px;}
.ls2f{letter-spacing:4.416000px;}
.ls5{letter-spacing:4.560000px;}
.ls2d{letter-spacing:4.752000px;}
.ls1{letter-spacing:7.320000px;}
.lsc{letter-spacing:7.380000px;}
.ls3{letter-spacing:8.460000px;}
.ls27{letter-spacing:9.000000px;}
.ls2{letter-spacing:10.740000px;}
.ls1f{letter-spacing:12.000000px;}
.ls0{letter-spacing:16.740000px;}
.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;}
}
.ws75{word-spacing:-25.860000px;}
.ws3{word-spacing:-25.320000px;}
.ws1e{word-spacing:-22.200000px;}
.ws6d{word-spacing:-20.232000px;}
.ws64{word-spacing:-19.224000px;}
.ws20{word-spacing:-18.648000px;}
.ws1d{word-spacing:-18.072000px;}
.ws3f{word-spacing:-18.000000px;}
.ws34{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws63{word-spacing:-17.568000px;}
.ws65{word-spacing:-17.424000px;}
.ws1{word-spacing:-16.860000px;}
.ws2{word-spacing:-14.820000px;}
.ws35{word-spacing:-14.162400px;}
.ws6e{word-spacing:-13.910400px;}
.ws91{word-spacing:-13.488000px;}
.ws5f{word-spacing:-12.000000px;}
.ws92{word-spacing:-11.856000px;}
.ws67{word-spacing:-7.380000px;}
.ws11{word-spacing:-6.264000px;}
.wsc{word-spacing:-4.560000px;}
.ws96{word-spacing:-4.464000px;}
.ws13{word-spacing:-2.088000px;}
.wsd{word-spacing:-2.016000px;}
.ws78{word-spacing:-1.800000px;}
.ws31{word-spacing:-0.936000px;}
.ws5e{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.792000px;}
.ws41{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.504000px;}
.ws71{word-spacing:-0.432000px;}
.ws3d{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.288000px;}
.ws62{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.144000px;}
.ws3e{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:0.072000px;}
.ws18{word-spacing:0.144000px;}
.ws6a{word-spacing:0.216000px;}
.ws97{word-spacing:0.240000px;}
.ws48{word-spacing:0.288000px;}
.ws80{word-spacing:0.300000px;}
.ws26{word-spacing:0.360000px;}
.ws98{word-spacing:0.384000px;}
.ws22{word-spacing:0.432000px;}
.ws95{word-spacing:0.480000px;}
.ws8f{word-spacing:0.576000px;}
.ws7c{word-spacing:0.600000px;}
.ws12{word-spacing:0.648000px;}
.ws2b{word-spacing:0.720000px;}
.ws44{word-spacing:0.792000px;}
.ws5c{word-spacing:0.864000px;}
.ws72{word-spacing:1.008000px;}
.ws16{word-spacing:1.080000px;}
.ws3b{word-spacing:1.152000px;}
.ws38{word-spacing:1.224000px;}
.ws87{word-spacing:1.368000px;}
.ws88{word-spacing:1.440000px;}
.ws7e{word-spacing:1.512000px;}
.ws83{word-spacing:1.584000px;}
.ws56{word-spacing:1.656000px;}
.wse{word-spacing:1.728000px;}
.wsa{word-spacing:1.800000px;}
.ws4b{word-spacing:1.872000px;}
.ws85{word-spacing:1.944000px;}
.ws66{word-spacing:2.016000px;}
.wsf{word-spacing:2.088000px;}
.ws4e{word-spacing:2.520000px;}
.ws19{word-spacing:2.592000px;}
.ws7a{word-spacing:2.664000px;}
.ws4d{word-spacing:2.736000px;}
.ws2d{word-spacing:2.808000px;}
.ws59{word-spacing:2.880000px;}
.ws93{word-spacing:2.976000px;}
.ws6f{word-spacing:3.024000px;}
.ws60{word-spacing:3.060000px;}
.ws15{word-spacing:3.096000px;}
.ws61{word-spacing:3.168000px;}
.ws1c{word-spacing:3.312000px;}
.ws94{word-spacing:3.360000px;}
.ws6c{word-spacing:3.384000px;}
.ws68{word-spacing:3.456000px;}
.ws39{word-spacing:3.528000px;}
.ws27{word-spacing:3.672000px;}
.ws6{word-spacing:3.720000px;}
.ws8e{word-spacing:3.744000px;}
.ws50{word-spacing:3.816000px;}
.ws81{word-spacing:3.960000px;}
.ws1b{word-spacing:4.032000px;}
.ws89{word-spacing:4.176000px;}
.ws4{word-spacing:4.200000px;}
.ws36{word-spacing:4.320000px;}
.wsb{word-spacing:4.464000px;}
.ws4f{word-spacing:4.536000px;}
.ws79{word-spacing:4.608000px;}
.ws32{word-spacing:4.680000px;}
.ws29{word-spacing:4.752000px;}
.ws82{word-spacing:4.824000px;}
.ws86{word-spacing:4.968000px;}
.ws10{word-spacing:5.040000px;}
.ws40{word-spacing:5.184000px;}
.ws2a{word-spacing:5.328000px;}
.ws69{word-spacing:5.400000px;}
.ws8c{word-spacing:5.472000px;}
.ws3a{word-spacing:5.544000px;}
.ws8a{word-spacing:5.616000px;}
.ws47{word-spacing:5.688000px;}
.ws49{word-spacing:5.760000px;}
.ws57{word-spacing:5.832000px;}
.ws1a{word-spacing:5.976000px;}
.ws77{word-spacing:6.048000px;}
.ws51{word-spacing:6.336000px;}
.ws37{word-spacing:6.408000px;}
.ws23{word-spacing:6.480000px;}
.ws58{word-spacing:6.552000px;}
.ws33{word-spacing:6.768000px;}
.ws46{word-spacing:6.840000px;}
.ws4a{word-spacing:6.912000px;}
.ws7f{word-spacing:7.056000px;}
.ws73{word-spacing:7.128000px;}
.ws53{word-spacing:7.200000px;}
.ws76{word-spacing:7.272000px;}
.ws52{word-spacing:7.416000px;}
.ws9{word-spacing:7.440000px;}
.ws7d{word-spacing:7.560000px;}
.ws5a{word-spacing:7.632000px;}
.ws21{word-spacing:7.776000px;}
.ws90{word-spacing:8.064000px;}
.ws5b{word-spacing:8.136000px;}
.ws70{word-spacing:8.208000px;}
.ws2c{word-spacing:8.280000px;}
.ws0{word-spacing:8.376000px;}
.ws8{word-spacing:8.400000px;}
.ws84{word-spacing:8.568000px;}
.ws54{word-spacing:8.856000px;}
.ws8d{word-spacing:8.928000px;}
.ws2f{word-spacing:9.144000px;}
.ws45{word-spacing:9.288000px;}
.ws25{word-spacing:9.432000px;}
.ws74{word-spacing:9.576000px;}
.ws5d{word-spacing:9.720000px;}
.ws30{word-spacing:9.792000px;}
.ws8b{word-spacing:9.864000px;}
.ws55{word-spacing:9.936000px;}
.ws4c{word-spacing:10.008000px;}
.ws24{word-spacing:10.080000px;}
.ws28{word-spacing:10.152000px;}
.ws7b{word-spacing:10.368000px;}
.ws6b{word-spacing:13.248000px;}
.ws5{word-spacing:54.720000px;}
._e{margin-left:-940.386000px;}
._1{margin-left:-35.580000px;}
._1a{margin-left:-13.226400px;}
._13{margin-left:-12.213600px;}
._15{margin-left:-11.004000px;}
._14{margin-left:-8.769600px;}
._a{margin-left:-7.128000px;}
._9{margin-left:-5.328000px;}
._c{margin-left:-3.874800px;}
._8{margin-left:-2.676000px;}
._3{margin-left:-1.062000px;}
._2{width:1.818000px;}
._b{width:2.967600px;}
._5{width:4.272000px;}
._d{width:5.886000px;}
._10{width:6.888000px;}
._6{width:7.968000px;}
._f{width:9.384000px;}
._11{width:11.238000px;}
._4{width:13.806000px;}
._12{width:15.420000px;}
._7{width:48.684000px;}
._0{width:201.564000px;}
._18{width:389.206800px;}
._16{width:474.522000px;}
._17{width:556.476000px;}
._19{width:822.396000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y296{bottom:118.572000px;}
.y1cd{bottom:118.729200px;}
.y21{bottom:119.332650px;}
.yfe{bottom:119.388150px;}
.y262{bottom:119.598000px;}
.yd9{bottom:119.722200px;}
.y1e7{bottom:119.929200px;}
.y8b{bottom:119.941050px;}
.y231{bottom:119.970000px;}
.y43{bottom:120.114450px;}
.y66{bottom:120.484200px;}
.y123{bottom:120.518550px;}
.yb1{bottom:120.933150px;}
.y145{bottom:121.222500px;}
.y1a6{bottom:122.266200px;}
.y189{bottom:122.472000px;}
.y16b{bottom:122.674200px;}
.y20c{bottom:123.422250px;}
.y261{bottom:134.298000px;}
.y1cc{bottom:137.029200px;}
.y295{bottom:137.172000px;}
.y1e6{bottom:138.379200px;}
.y8a{bottom:139.141050px;}
.yb0{bottom:139.383150px;}
.y20{bottom:141.832650px;}
.y230{bottom:142.020000px;}
.yfd{bottom:142.338150px;}
.y42{bottom:142.470450px;}
.yd8{bottom:142.528200px;}
.y65{bottom:142.984200px;}
.y122{bottom:143.468550px;}
.y144{bottom:143.722500px;}
.y1a5{bottom:144.622200px;}
.y188{bottom:144.828000px;}
.y16a{bottom:145.030200px;}
.y20b{bottom:145.616250px;}
.y260{bottom:149.142000px;}
.y1cb{bottom:155.329200px;}
.y294{bottom:155.772000px;}
.y1e5{bottom:156.829200px;}
.yaf{bottom:157.833150px;}
.y89{bottom:158.341050px;}
.y25f{bottom:163.986000px;}
.y22f{bottom:164.070000px;}
.y1f{bottom:164.332650px;}
.y41{bottom:164.826450px;}
.yfc{bottom:165.288150px;}
.yd7{bottom:165.334200px;}
.y64{bottom:165.484200px;}
.y143{bottom:166.222500px;}
.y121{bottom:166.418550px;}
.y1a4{bottom:166.978200px;}
.y187{bottom:167.184000px;}
.y169{bottom:167.386200px;}
.y20a{bottom:167.810250px;}
.y1ca{bottom:173.629200px;}
.y293{bottom:174.372000px;}
.y1e4{bottom:175.279200px;}
.y88{bottom:177.541050px;}
.y25e{bottom:178.830000px;}
.yae{bottom:184.788150px;}
.y22e{bottom:186.120000px;}
.y1e{bottom:186.832650px;}
.y63{bottom:187.984200px;}
.yfb{bottom:188.238150px;}
.y142{bottom:188.722500px;}
.y1a3{bottom:189.334200px;}
.y120{bottom:189.368550px;}
.y186{bottom:189.540000px;}
.y168{bottom:189.742200px;}
.y209{bottom:190.004250px;}
.y25d{bottom:193.674000px;}
.y40{bottom:195.676050px;}
.yd6{bottom:196.637100px;}
.y87{bottom:196.741050px;}
.y292{bottom:199.422000px;}
.y1c9{bottom:200.434200px;}
.y1e3{bottom:202.234200px;}
.yad{bottom:203.238150px;}
.y25c{bottom:208.518000px;}
.y1d{bottom:209.332650px;}
.y62{bottom:210.484200px;}
.yfa{bottom:211.188150px;}
.y141{bottom:211.222500px;}
.y185{bottom:211.896000px;}
.y167{bottom:212.098200px;}
.y208{bottom:212.198250px;}
.y11f{bottom:212.318550px;}
.yd5{bottom:215.687100px;}
.y86{bottom:215.941050px;}
.y291{bottom:217.266000px;}
.y1c8{bottom:218.734200px;}
.y22d{bottom:218.970000px;}
.y1a2{bottom:220.188150px;}
.y1e2{bottom:220.684200px;}
.yac{bottom:221.688150px;}
.y3f{bottom:222.781050px;}
.y25b{bottom:223.362000px;}
.y1c{bottom:231.832650px;}
.y61{bottom:232.984200px;}
.y140{bottom:233.722500px;}
.yf9{bottom:234.138150px;}
.y184{bottom:234.252000px;}
.y207{bottom:234.392250px;}
.y166{bottom:234.454200px;}
.yd4{bottom:234.737100px;}
.y85{bottom:235.141050px;}
.y11e{bottom:235.268550px;}
.y1c7{bottom:237.034200px;}
.y25a{bottom:238.206000px;}
.y1a1{bottom:238.788150px;}
.y1e1{bottom:239.134200px;}
.yab{bottom:240.138150px;}
.y22c{bottom:241.164000px;}
.y3e{bottom:241.381050px;}
.y259{bottom:253.050000px;}
.y1b{bottom:254.332650px;}
.y1c6{bottom:255.334200px;}
.y60{bottom:255.484200px;}
.y206{bottom:256.586250px;}
.y183{bottom:256.608000px;}
.y165{bottom:256.810200px;}
.y1a0{bottom:257.388150px;}
.y1e0{bottom:257.584200px;}
.y11d{bottom:258.218550px;}
.yaa{bottom:258.588150px;}
.y290{bottom:261.966000px;}
.yd3{bottom:262.292100px;}
.y84{bottom:262.846050px;}
.y22b{bottom:263.358000px;}
.y13f{bottom:264.724200px;}
.y258{bottom:267.894000px;}
.y3d{bottom:268.486050px;}
.y2b5{bottom:274.500000px;}
.y19f{bottom:275.988150px;}
.y1df{bottom:276.034200px;}
.y1a{bottom:276.832650px;}
.y28f{bottom:276.966000px;}
.ya9{bottom:277.038150px;}
.y5f{bottom:277.984200px;}
.y205{bottom:278.780250px;}
.y182{bottom:278.964000px;}
.y164{bottom:279.166200px;}
.yf8{bottom:280.038150px;}
.yd2{bottom:281.342100px;}
.y83{bottom:282.046050px;}
.y1c5{bottom:282.138150px;}
.y257{bottom:282.738000px;}
.y13e{bottom:283.474200px;}
.y22a{bottom:285.552000px;}
.y11c{bottom:289.670250px;}
.y28e{bottom:291.966000px;}
.y2b4{bottom:293.250000px;}
.ya8{bottom:295.488150px;}
.y3c{bottom:295.591050px;}
.y256{bottom:297.582000px;}
.y19{bottom:299.332650px;}
.y5e{bottom:300.484200px;}
.y181{bottom:301.320000px;}
.y163{bottom:301.522200px;}
.yf7{bottom:302.988150px;}
.y1de{bottom:303.006150px;}
.y19e{bottom:303.074100px;}
.y1c4{bottom:304.188150px;}
.y28d{bottom:306.966000px;}
.y229{bottom:307.746000px;}
.yd1{bottom:308.866050px;}
.y11b{bottom:309.020250px;}
.y204{bottom:309.483150px;}
.y82{bottom:309.642000px;}
.y13d{bottom:310.729200px;}
.y2b3{bottom:312.000000px;}
.y255{bottom:312.426000px;}
.ya7{bottom:313.938150px;}
.y18{bottom:321.832650px;}
.y28c{bottom:321.966000px;}
.y3b{bottom:322.696050px;}
.y5d{bottom:322.984200px;}
.y162{bottom:323.878200px;}
.y1dd{bottom:325.200150px;}
.y19d{bottom:325.430100px;}
.yf6{bottom:325.938150px;}
.y1c3{bottom:326.238150px;}
.y254{bottom:327.270000px;}
.y203{bottom:327.933150px;}
.y11a{bottom:328.370250px;}
.y13c{bottom:329.479200px;}
.y228{bottom:329.940000px;}
.y2b2{bottom:330.750000px;}
.yd0{bottom:331.672050px;}
.y81{bottom:332.592000px;}
.y28b{bottom:336.966000px;}
.ya6{bottom:340.988100px;}
.y3a{bottom:341.296050px;}
.y253{bottom:342.114000px;}
.y17{bottom:344.332650px;}
.y5c{bottom:345.484200px;}
.y180{bottom:346.014000px;}
.y161{bottom:346.234200px;}
.y202{bottom:346.383150px;}
.y1dc{bottom:347.394150px;}
.y119{bottom:347.720250px;}
.y19c{bottom:347.786100px;}
.y13b{bottom:348.229200px;}
.y1c2{bottom:348.288150px;}
.yf5{bottom:348.888150px;}
.y2b1{bottom:349.500000px;}
.y28a{bottom:351.966000px;}
.y227{bottom:352.134000px;}
.ycf{bottom:354.478050px;}
.y80{bottom:355.542000px;}
.y252{bottom:356.958000px;}
.ya5{bottom:363.182100px;}
.y16{bottom:366.832650px;}
.y289{bottom:366.966000px;}
.y13a{bottom:366.979200px;}
.y118{bottom:367.070250px;}
.y5b{bottom:367.984200px;}
.y39{bottom:368.340000px;}
.y17f{bottom:368.370000px;}
.y1db{bottom:369.588150px;}
.y19b{bottom:370.142100px;}
.y1c1{bottom:370.338150px;}
.y251{bottom:371.802000px;}
.yf4{bottom:371.838150px;}
.y201{bottom:373.338150px;}
.y226{bottom:374.328000px;}
.y160{bottom:377.086050px;}
.yce{bottom:377.284050px;}
.y7f{bottom:378.492000px;}
.y2b0{bottom:379.500000px;}
.y288{bottom:381.966000px;}
.ya4{bottom:385.376100px;}
.y139{bottom:385.729200px;}
.y117{bottom:386.420250px;}
.y250{bottom:386.646000px;}
.y15{bottom:389.332650px;}
.y38{bottom:390.696000px;}
.y17e{bottom:390.726000px;}
.y200{bottom:391.788150px;}
.y1c0{bottom:392.388150px;}
.yf3{bottom:394.788150px;}
.y15f{bottom:395.686050px;}
.y225{bottom:396.522000px;}
.y287{bottom:396.966000px;}
.y2af{bottom:398.250000px;}
.y5a{bottom:398.986050px;}
.ycd{bottom:400.090050px;}
.y19a{bottom:400.996050px;}
.y7e{bottom:401.442000px;}
.y24f{bottom:401.490000px;}
.y138{bottom:404.479200px;}
.y116{bottom:405.770250px;}
.ya3{bottom:407.570100px;}
.y1ff{bottom:410.238150px;}
.y14{bottom:411.832650px;}
.y286{bottom:411.966000px;}
.y37{bottom:413.052000px;}
.y17d{bottom:413.082000px;}
.y15e{bottom:414.286050px;}
.y1bf{bottom:414.438150px;}
.y24e{bottom:416.334000px;}
.y2ae{bottom:417.000000px;}
.y59{bottom:417.736050px;}
.yf2{bottom:417.738150px;}
.y224{bottom:418.716000px;}
.y199{bottom:419.596050px;}
.y1da{bottom:422.491050px;}
.ycc{bottom:422.896050px;}
.y7d{bottom:424.392000px;}
.y285{bottom:426.966000px;}
.ya2{bottom:429.764100px;}
.y24d{bottom:431.178000px;}
.y137{bottom:431.734200px;}
.y115{bottom:433.625250px;}
.y13{bottom:434.332650px;}
.y36{bottom:435.408000px;}
.y17c{bottom:435.438000px;}
.y2ad{bottom:435.750000px;}
.y58{bottom:436.486050px;}
.y1be{bottom:436.488150px;}
.y1fe{bottom:437.216100px;}
.y198{bottom:438.196050px;}
.yf1{bottom:440.688150px;}
.y223{bottom:440.910000px;}
.y1d9{bottom:441.091050px;}
.y15d{bottom:441.391050px;}
.y284{bottom:441.966000px;}
.y24c{bottom:446.022000px;}
.y7c{bottom:447.342000px;}
.y136{bottom:450.484200px;}
.ya1{bottom:451.958100px;}
.y114{bottom:452.975250px;}
.ycb{bottom:454.200000px;}
.y2ac{bottom:454.500000px;}
.y57{bottom:455.236050px;}
.y197{bottom:456.796050px;}
.y12{bottom:456.832650px;}
.y283{bottom:456.966000px;}
.y35{bottom:457.764000px;}
.y17b{bottom:457.794000px;}
.y1bd{bottom:458.538150px;}
.y1fd{bottom:459.410100px;}
.y1d8{bottom:459.691050px;}
.y15c{bottom:459.991050px;}
.y24b{bottom:460.866000px;}
.y222{bottom:463.104000px;}
.yf0{bottom:463.638150px;}
.y135{bottom:469.234200px;}
.y7b{bottom:470.292000px;}
.y282{bottom:471.966000px;}
.yca{bottom:473.250000px;}
.ya0{bottom:474.152100px;}
.y196{bottom:475.396050px;}
.y24a{bottom:475.710000px;}
.y1d7{bottom:478.291050px;}
.y15b{bottom:478.591050px;}
.y11{bottom:479.332650px;}
.y17a{bottom:480.084000px;}
.y34{bottom:480.120000px;}
.y1bc{bottom:480.588150px;}
.y113{bottom:480.830250px;}
.y1fc{bottom:481.604100px;}
.y56{bottom:482.491050px;}
.y2ab{bottom:484.500000px;}
.y221{bottom:485.298000px;}
.yef{bottom:486.588150px;}
.y281{bottom:486.966000px;}
.y249{bottom:490.554000px;}
.yc9{bottom:492.300000px;}
.y7a{bottom:493.242000px;}
.y9f{bottom:496.346100px;}
.y134{bottom:496.488150px;}
.y1d6{bottom:496.891050px;}
.y15a{bottom:497.191050px;}
.y112{bottom:500.180250px;}
.y55{bottom:501.241050px;}
.y10{bottom:501.832650px;}
.y280{bottom:501.966000px;}
.y179{bottom:502.440000px;}
.y195{bottom:502.446000px;}
.y1fb{bottom:503.798100px;}
.y248{bottom:505.398000px;}
.y220{bottom:507.492000px;}
.yee{bottom:509.538150px;}
.yc8{bottom:511.350000px;}
.y1d5{bottom:515.491050px;}
.y159{bottom:515.791050px;}
.y79{bottom:516.192000px;}
.y27f{bottom:516.966000px;}
.y9e{bottom:518.540100px;}
.y133{bottom:518.988150px;}
.y111{bottom:519.530250px;}
.y54{bottom:519.991050px;}
.y247{bottom:520.242000px;}
.yf{bottom:524.332650px;}
.y1bb{bottom:524.688150px;}
.y178{bottom:524.796000px;}
.y194{bottom:524.802000px;}
.y33{bottom:524.814000px;}
.y2aa{bottom:525.750000px;}
.y1fa{bottom:525.998100px;}
.y21f{bottom:529.686000px;}
.yc7{bottom:530.400000px;}
.y27e{bottom:531.966000px;}
.yed{bottom:532.488150px;}
.y1d4{bottom:534.091050px;}
.y158{bottom:534.391050px;}
.y246{bottom:535.086000px;}
.y78{bottom:538.998000px;}
.y9d{bottom:540.734100px;}
.y132{bottom:541.488150px;}
.y1ba{bottom:542.988150px;}
.y2a9{bottom:544.500000px;}
.ye{bottom:546.832650px;}
.y27d{bottom:546.966000px;}
.y177{bottom:547.152000px;}
.y193{bottom:547.158000px;}
.y32{bottom:547.170000px;}
.y53{bottom:547.246050px;}
.y110{bottom:547.384200px;}
.y1f9{bottom:548.192100px;}
.yc6{bottom:549.450000px;}
.y245{bottom:549.930000px;}
.y21e{bottom:551.880000px;}
.y1d3{bottom:552.691050px;}
.y157{bottom:552.991050px;}
.yec{bottom:555.438150px;}
.y1b9{bottom:561.288150px;}
.y77{bottom:561.804000px;}
.y27c{bottom:561.966000px;}
.y9c{bottom:562.928100px;}
.y2a8{bottom:563.250000px;}
.y131{bottom:563.988150px;}
.y244{bottom:564.774000px;}
.y52{bottom:565.996050px;}
.yc5{bottom:568.500000px;}
.yd{bottom:569.332650px;}
.y176{bottom:569.508000px;}
.y192{bottom:569.514000px;}
.y31{bottom:569.526000px;}
.y10f{bottom:570.334200px;}
.y1d2{bottom:571.291050px;}
.y156{bottom:571.591050px;}
.y21d{bottom:574.074000px;}
.y27b{bottom:576.966000px;}
.y1b8{bottom:579.588150px;}
.y243{bottom:579.618000px;}
.y76{bottom:584.610000px;}
.y51{bottom:584.746050px;}
.y9b{bottom:585.122100px;}
.y130{bottom:586.488150px;}
.yeb{bottom:586.890000px;}
.yc4{bottom:587.550000px;}
.y1d1{bottom:589.891050px;}
.y155{bottom:590.191050px;}
.y175{bottom:591.864000px;}
.y191{bottom:591.870000px;}
.y30{bottom:591.882000px;}
.y27a{bottom:591.966000px;}
.y1f8{bottom:592.591050px;}
.y2a7{bottom:593.250000px;}
.y10e{bottom:593.284200px;}
.y242{bottom:594.462000px;}
.y21c{bottom:596.268000px;}
.y1b7{bottom:597.888150px;}
.yea{bottom:606.090000px;}
.yc3{bottom:606.600000px;}
.y279{bottom:606.966000px;}
.y9a{bottom:607.316100px;}
.y75{bottom:607.416000px;}
.y1d0{bottom:608.491050px;}
.y154{bottom:608.791050px;}
.y241{bottom:609.306000px;}
.y1f7{bottom:611.041050px;}
.y50{bottom:612.000000px;}
.y190{bottom:614.226000px;}
.y2f{bottom:614.238000px;}
.yc{bottom:614.332650px;}
.y1b6{bottom:616.188150px;}
.y10d{bottom:616.234200px;}
.y12f{bottom:617.492100px;}
.y21b{bottom:618.462000px;}
.y278{bottom:621.966000px;}
.y240{bottom:624.150000px;}
.ye9{bottom:625.290000px;}
.yc2{bottom:625.650000px;}
.y153{bottom:627.391050px;}
.y1f6{bottom:629.491050px;}
.y74{bottom:630.222000px;}
.y2a6{bottom:630.750000px;}
.y1b5{bottom:634.488150px;}
.y4f{bottom:634.500000px;}
.y1cf{bottom:635.596050px;}
.y12e{bottom:636.242100px;}
.y174{bottom:636.558000px;}
.y18f{bottom:636.582000px;}
.y2e{bottom:636.594000px;}
.y277{bottom:636.966000px;}
.y23f{bottom:638.994000px;}
.y21a{bottom:640.656000px;}
.ye8{bottom:644.490000px;}
.yc1{bottom:644.700000px;}
.y152{bottom:645.991050px;}
.y10c{bottom:647.686050px;}
.y1f5{bottom:647.941050px;}
.y2a5{bottom:649.500000px;}
.y99{bottom:651.722100px;}
.y276{bottom:651.966000px;}
.y1b4{bottom:652.788150px;}
.y73{bottom:653.028000px;}
.y23e{bottom:653.838000px;}
.y1ce{bottom:654.196050px;}
.yb{bottom:656.468550px;}
.y4e{bottom:657.000000px;}
.y173{bottom:658.914000px;}
.y18e{bottom:658.938000px;}
.y2d{bottom:658.950000px;}
.y219{bottom:662.850000px;}
.y12d{bottom:663.496050px;}
.ye7{bottom:663.690000px;}
.yc0{bottom:663.750000px;}
.y151{bottom:664.591050px;}
.y1f4{bottom:666.391050px;}
.y10b{bottom:666.886050px;}
.y275{bottom:666.966000px;}
.y2a4{bottom:668.250000px;}
.y23d{bottom:668.682000px;}
.y1b3{bottom:671.088150px;}
.y98{bottom:673.916100px;}
.y72{bottom:675.834000px;}
.ya{bottom:678.968550px;}
.y4d{bottom:679.500000px;}
.y172{bottom:681.270000px;}
.y18d{bottom:681.294000px;}
.y2c{bottom:681.300000px;}
.y274{bottom:681.966000px;}
.ybf{bottom:682.800000px;}
.ye6{bottom:682.890000px;}
.y150{bottom:683.191050px;}
.y23c{bottom:683.526000px;}
.y218{bottom:684.900000px;}
.y12c{bottom:685.996050px;}
.y10a{bottom:686.086050px;}
.y2a3{bottom:687.000000px;}
.y1b2{bottom:689.388150px;}
.y1f3{bottom:693.346050px;}
.y97{bottom:696.110100px;}
.y273{bottom:696.966000px;}
.y23b{bottom:698.370000px;}
.y71{bottom:698.640000px;}
.y9{bottom:701.468550px;}
.ybe{bottom:701.850000px;}
.y4c{bottom:702.000000px;}
.ye5{bottom:702.090000px;}
.y171{bottom:703.626000px;}
.y18c{bottom:703.644000px;}
.y109{bottom:705.286050px;}
.y2a2{bottom:705.750000px;}
.y217{bottom:706.950000px;}
.y1b1{bottom:707.688150px;}
.y12b{bottom:708.496050px;}
.y14f{bottom:710.296050px;}
.y1f2{bottom:711.796050px;}
.y272{bottom:711.966000px;}
.y23a{bottom:713.214000px;}
.y96{bottom:718.304100px;}
.ybd{bottom:720.900000px;}
.y70{bottom:721.446000px;}
.y108{bottom:724.486050px;}
.y4b{bottom:724.500000px;}
.y2b{bottom:725.946000px;}
.y18b{bottom:725.964000px;}
.y170{bottom:725.982000px;}
.y271{bottom:726.810000px;}
.y239{bottom:728.058000px;}
.y14e{bottom:728.896050px;}
.y216{bottom:729.000000px;}
.ye4{bottom:729.795000px;}
.y1f1{bottom:730.246050px;}
.y12a{bottom:730.996050px;}
.y1b0{bottom:734.492100px;}
.ybc{bottom:739.950000px;}
.y95{bottom:740.498100px;}
.y270{bottom:741.654000px;}
.y238{bottom:742.902000px;}
.y2a1{bottom:743.250000px;}
.y107{bottom:743.686050px;}
.y6f{bottom:744.252000px;}
.y4a{bottom:747.000000px;}
.y8{bottom:747.354300px;}
.y14d{bottom:747.496050px;}
.y2a{bottom:748.302000px;}
.y18a{bottom:748.320000px;}
.y16f{bottom:748.338000px;}
.y1f0{bottom:748.696050px;}
.ye3{bottom:748.995000px;}
.y215{bottom:751.050000px;}
.y129{bottom:753.496050px;}
.y26f{bottom:756.498000px;}
.y1af{bottom:756.542100px;}
.y237{bottom:757.746000px;}
.ybb{bottom:759.000000px;}
.y2a0{bottom:762.000000px;}
.y94{bottom:762.692100px;}
.y14c{bottom:766.096050px;}
.y6e{bottom:767.058000px;}
.y1ef{bottom:767.146050px;}
.ye2{bottom:768.195000px;}
.y49{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.y29{bottom:770.658000px;}
.y16e{bottom:770.694000px;}
.y26e{bottom:771.342000px;}
.y106{bottom:771.391050px;}
.y236{bottom:772.590000px;}
.y214{bottom:773.100000px;}
.y128{bottom:775.996050px;}
.yba{bottom:778.050000px;}
.y1ae{bottom:778.592100px;}
.y29f{bottom:780.750000px;}
.y14b{bottom:784.696050px;}
.y26d{bottom:786.186000px;}
.ye1{bottom:787.395000px;}
.y235{bottom:787.434000px;}
.y6d{bottom:789.864000px;}
.y105{bottom:790.591050px;}
.y48{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.y28{bottom:793.014000px;}
.y16d{bottom:793.050000px;}
.y93{bottom:793.395000px;}
.y1ee{bottom:794.124000px;}
.y213{bottom:795.150000px;}
.yb9{bottom:797.100000px;}
.y29e{bottom:799.500000px;}
.y1ad{bottom:800.642100px;}
.y26c{bottom:801.030000px;}
.y234{bottom:802.278000px;}
.y14a{bottom:803.296050px;}
.y92{bottom:811.845000px;}
.y6c{bottom:812.670000px;}
.y47{bottom:814.500000px;}
.ye0{bottom:815.100000px;}
.y27{bottom:815.370000px;}
.y16c{bottom:815.400000px;}
.y26b{bottom:815.886000px;}
.yb8{bottom:816.150000px;}
.y1ed{bottom:816.318000px;}
.y233{bottom:817.122000px;}
.y212{bottom:817.200000px;}
.y29d{bottom:818.250000px;}
.y104{bottom:818.296050px;}
.y127{bottom:820.996050px;}
.y149{bottom:821.896050px;}
.y26a{bottom:830.730000px;}
.y1ac{bottom:831.195000px;}
.ydf{bottom:834.300000px;}
.yb7{bottom:835.200000px;}
.y6b{bottom:835.476000px;}
.y29c{bottom:837.000000px;}
.y103{bottom:837.496050px;}
.y26{bottom:837.726000px;}
.y232{bottom:838.350000px;}
.y1ec{bottom:838.512000px;}
.y91{bottom:838.800000px;}
.y211{bottom:839.250000px;}
.y126{bottom:839.746050px;}
.y148{bottom:840.496050px;}
.y269{bottom:845.574000px;}
.y1ab{bottom:849.495000px;}
.yde{bottom:853.500000px;}
.yb6{bottom:854.250000px;}
.y29b{bottom:855.750000px;}
.y102{bottom:856.696050px;}
.y90{bottom:857.250000px;}
.y6a{bottom:858.282000px;}
.y125{bottom:858.496050px;}
.y147{bottom:859.096050px;}
.y5{bottom:859.500000px;}
.y25{bottom:860.082000px;}
.y268{bottom:860.418000px;}
.y1eb{bottom:860.706000px;}
.y210{bottom:861.300000px;}
.y1aa{bottom:867.795000px;}
.ydd{bottom:872.700000px;}
.yb5{bottom:873.300000px;}
.y29a{bottom:874.500000px;}
.y267{bottom:875.262000px;}
.y8f{bottom:875.700000px;}
.y101{bottom:875.896050px;}
.y124{bottom:877.246050px;}
.y146{bottom:877.696050px;}
.y69{bottom:881.088000px;}
.y46{bottom:882.000000px;}
.y24{bottom:882.438000px;}
.y1ea{bottom:882.912000px;}
.y20f{bottom:883.350000px;}
.y4{bottom:889.500000px;}
.y266{bottom:890.118000px;}
.ydc{bottom:891.900000px;}
.yb4{bottom:892.350000px;}
.y299{bottom:893.250000px;}
.y8e{bottom:894.150000px;}
.y1a9{bottom:894.600000px;}
.y100{bottom:903.600000px;}
.y68{bottom:903.894000px;}
.y45{bottom:904.500000px;}
.y23{bottom:904.794000px;}
.y265{bottom:904.962000px;}
.y1e9{bottom:905.106000px;}
.y20e{bottom:905.400000px;}
.ydb{bottom:911.100000px;}
.yb3{bottom:911.400000px;}
.y298{bottom:912.000000px;}
.y8d{bottom:912.600000px;}
.y1a8{bottom:912.900000px;}
.y3{bottom:919.500000px;}
.y264{bottom:919.806000px;}
.yff{bottom:926.550000px;}
.y67{bottom:926.700000px;}
.y44{bottom:927.000000px;}
.y22{bottom:927.150000px;}
.y1e8{bottom:927.300000px;}
.y20d{bottom:927.450000px;}
.yda{bottom:930.300000px;}
.yb2{bottom:930.450000px;}
.y297{bottom:930.750000px;}
.y8c{bottom:931.050000px;}
.y1a7{bottom:931.200000px;}
.y263{bottom:934.650000px;}
.hf{height:33.117188px;}
.hd{height:39.072000px;}
.h10{height:39.792000px;}
.he{height:40.757812px;}
.h6{height:41.396484px;}
.h4{height:42.000000px;}
.h8{height:47.988281px;}
.h7{height:49.675781px;}
.h1{height:50.947266px;}
.ha{height:57.495797px;}
.h5{height:61.136719px;}
.hb{height:61.160719px;}
.hc{height:61.208719px;}
.h9{height:61.400719px;}
.h2{height:82.792969px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x8{left:97.263750px;}
.xa{left:101.526900px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x2{left:135.000000px;}
.x7{left:142.263750px;}
.x9{left:157.128750px;}
.x4{left:635.390550px;}
@media print{
.v1{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls24{letter-spacing:-2.496000pt;}
.ls20{letter-spacing:-2.080000pt;}
.ls10{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls26{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.472000pt;}
.ls2b{letter-spacing:2.880000pt;}
.ls28{letter-spacing:3.813333pt;}
.ls2f{letter-spacing:3.925333pt;}
.ls5{letter-spacing:4.053333pt;}
.ls2d{letter-spacing:4.224000pt;}
.ls1{letter-spacing:6.506667pt;}
.lsc{letter-spacing:6.560000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls27{letter-spacing:8.000000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls1f{letter-spacing:10.666667pt;}
.ls0{letter-spacing:14.880000pt;}
.ws75{word-spacing:-22.986667pt;}
.ws3{word-spacing:-22.506667pt;}
.ws1e{word-spacing:-19.733333pt;}
.ws6d{word-spacing:-17.984000pt;}
.ws64{word-spacing:-17.088000pt;}
.ws20{word-spacing:-16.576000pt;}
.ws1d{word-spacing:-16.064000pt;}
.ws3f{word-spacing:-16.000000pt;}
.ws34{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws63{word-spacing:-15.616000pt;}
.ws65{word-spacing:-15.488000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws2{word-spacing:-13.173333pt;}
.ws35{word-spacing:-12.588800pt;}
.ws6e{word-spacing:-12.364800pt;}
.ws91{word-spacing:-11.989333pt;}
.ws5f{word-spacing:-10.666667pt;}
.ws92{word-spacing:-10.538667pt;}
.ws67{word-spacing:-6.560000pt;}
.ws11{word-spacing:-5.568000pt;}
.wsc{word-spacing:-4.053333pt;}
.ws96{word-spacing:-3.968000pt;}
.ws13{word-spacing:-1.856000pt;}
.wsd{word-spacing:-1.792000pt;}
.ws78{word-spacing:-1.600000pt;}
.ws31{word-spacing:-0.832000pt;}
.ws5e{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.704000pt;}
.ws41{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.448000pt;}
.ws71{word-spacing:-0.384000pt;}
.ws3d{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.256000pt;}
.ws62{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.128000pt;}
.ws3e{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:0.064000pt;}
.ws18{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.192000pt;}
.ws97{word-spacing:0.213333pt;}
.ws48{word-spacing:0.256000pt;}
.ws80{word-spacing:0.266667pt;}
.ws26{word-spacing:0.320000pt;}
.ws98{word-spacing:0.341333pt;}
.ws22{word-spacing:0.384000pt;}
.ws95{word-spacing:0.426667pt;}
.ws8f{word-spacing:0.512000pt;}
.ws7c{word-spacing:0.533333pt;}
.ws12{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.640000pt;}
.ws44{word-spacing:0.704000pt;}
.ws5c{word-spacing:0.768000pt;}
.ws72{word-spacing:0.896000pt;}
.ws16{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.024000pt;}
.ws38{word-spacing:1.088000pt;}
.ws87{word-spacing:1.216000pt;}
.ws88{word-spacing:1.280000pt;}
.ws7e{word-spacing:1.344000pt;}
.ws83{word-spacing:1.408000pt;}
.ws56{word-spacing:1.472000pt;}
.wse{word-spacing:1.536000pt;}
.wsa{word-spacing:1.600000pt;}
.ws4b{word-spacing:1.664000pt;}
.ws85{word-spacing:1.728000pt;}
.ws66{word-spacing:1.792000pt;}
.wsf{word-spacing:1.856000pt;}
.ws4e{word-spacing:2.240000pt;}
.ws19{word-spacing:2.304000pt;}
.ws7a{word-spacing:2.368000pt;}
.ws4d{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws59{word-spacing:2.560000pt;}
.ws93{word-spacing:2.645333pt;}
.ws6f{word-spacing:2.688000pt;}
.ws60{word-spacing:2.720000pt;}
.ws15{word-spacing:2.752000pt;}
.ws61{word-spacing:2.816000pt;}
.ws1c{word-spacing:2.944000pt;}
.ws94{word-spacing:2.986667pt;}
.ws6c{word-spacing:3.008000pt;}
.ws68{word-spacing:3.072000pt;}
.ws39{word-spacing:3.136000pt;}
.ws27{word-spacing:3.264000pt;}
.ws6{word-spacing:3.306667pt;}
.ws8e{word-spacing:3.328000pt;}
.ws50{word-spacing:3.392000pt;}
.ws81{word-spacing:3.520000pt;}
.ws1b{word-spacing:3.584000pt;}
.ws89{word-spacing:3.712000pt;}
.ws4{word-spacing:3.733333pt;}
.ws36{word-spacing:3.840000pt;}
.wsb{word-spacing:3.968000pt;}
.ws4f{word-spacing:4.032000pt;}
.ws79{word-spacing:4.096000pt;}
.ws32{word-spacing:4.160000pt;}
.ws29{word-spacing:4.224000pt;}
.ws82{word-spacing:4.288000pt;}
.ws86{word-spacing:4.416000pt;}
.ws10{word-spacing:4.480000pt;}
.ws40{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.736000pt;}
.ws69{word-spacing:4.800000pt;}
.ws8c{word-spacing:4.864000pt;}
.ws3a{word-spacing:4.928000pt;}
.ws8a{word-spacing:4.992000pt;}
.ws47{word-spacing:5.056000pt;}
.ws49{word-spacing:5.120000pt;}
.ws57{word-spacing:5.184000pt;}
.ws1a{word-spacing:5.312000pt;}
.ws77{word-spacing:5.376000pt;}
.ws51{word-spacing:5.632000pt;}
.ws37{word-spacing:5.696000pt;}
.ws23{word-spacing:5.760000pt;}
.ws58{word-spacing:5.824000pt;}
.ws33{word-spacing:6.016000pt;}
.ws46{word-spacing:6.080000pt;}
.ws4a{word-spacing:6.144000pt;}
.ws7f{word-spacing:6.272000pt;}
.ws73{word-spacing:6.336000pt;}
.ws53{word-spacing:6.400000pt;}
.ws76{word-spacing:6.464000pt;}
.ws52{word-spacing:6.592000pt;}
.ws9{word-spacing:6.613333pt;}
.ws7d{word-spacing:6.720000pt;}
.ws5a{word-spacing:6.784000pt;}
.ws21{word-spacing:6.912000pt;}
.ws90{word-spacing:7.168000pt;}
.ws5b{word-spacing:7.232000pt;}
.ws70{word-spacing:7.296000pt;}
.ws2c{word-spacing:7.360000pt;}
.ws0{word-spacing:7.445333pt;}
.ws8{word-spacing:7.466667pt;}
.ws84{word-spacing:7.616000pt;}
.ws54{word-spacing:7.872000pt;}
.ws8d{word-spacing:7.936000pt;}
.ws2f{word-spacing:8.128000pt;}
.ws45{word-spacing:8.256000pt;}
.ws25{word-spacing:8.384000pt;}
.ws74{word-spacing:8.512000pt;}
.ws5d{word-spacing:8.640000pt;}
.ws30{word-spacing:8.704000pt;}
.ws8b{word-spacing:8.768000pt;}
.ws55{word-spacing:8.832000pt;}
.ws4c{word-spacing:8.896000pt;}
.ws24{word-spacing:8.960000pt;}
.ws28{word-spacing:9.024000pt;}
.ws7b{word-spacing:9.216000pt;}
.ws6b{word-spacing:11.776000pt;}
.ws5{word-spacing:48.640000pt;}
._e{margin-left:-835.898667pt;}
._1{margin-left:-31.626667pt;}
._1a{margin-left:-11.756800pt;}
._13{margin-left:-10.856533pt;}
._15{margin-left:-9.781333pt;}
._14{margin-left:-7.795200pt;}
._a{margin-left:-6.336000pt;}
._9{margin-left:-4.736000pt;}
._c{margin-left:-3.444267pt;}
._8{margin-left:-2.378667pt;}
._3{margin-left:-0.944000pt;}
._2{width:1.616000pt;}
._b{width:2.637867pt;}
._5{width:3.797333pt;}
._d{width:5.232000pt;}
._10{width:6.122667pt;}
._6{width:7.082667pt;}
._f{width:8.341333pt;}
._11{width:9.989333pt;}
._4{width:12.272000pt;}
._12{width:13.706667pt;}
._7{width:43.274667pt;}
._0{width:179.168000pt;}
._18{width:345.961600pt;}
._16{width:421.797333pt;}
._17{width:494.645333pt;}
._19{width:731.018667pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y296{bottom:105.397333pt;}
.y1cd{bottom:105.537067pt;}
.y21{bottom:106.073467pt;}
.yfe{bottom:106.122800pt;}
.y262{bottom:106.309333pt;}
.yd9{bottom:106.419733pt;}
.y1e7{bottom:106.603733pt;}
.y8b{bottom:106.614267pt;}
.y231{bottom:106.640000pt;}
.y43{bottom:106.768400pt;}
.y66{bottom:107.097067pt;}
.y123{bottom:107.127600pt;}
.yb1{bottom:107.496133pt;}
.y145{bottom:107.753333pt;}
.y1a6{bottom:108.681067pt;}
.y189{bottom:108.864000pt;}
.y16b{bottom:109.043733pt;}
.y20c{bottom:109.708667pt;}
.y261{bottom:119.376000pt;}
.y1cc{bottom:121.803733pt;}
.y295{bottom:121.930667pt;}
.y1e6{bottom:123.003733pt;}
.y8a{bottom:123.680933pt;}
.yb0{bottom:123.896133pt;}
.y20{bottom:126.073467pt;}
.y230{bottom:126.240000pt;}
.yfd{bottom:126.522800pt;}
.y42{bottom:126.640400pt;}
.yd8{bottom:126.691733pt;}
.y65{bottom:127.097067pt;}
.y122{bottom:127.527600pt;}
.y144{bottom:127.753333pt;}
.y1a5{bottom:128.553067pt;}
.y188{bottom:128.736000pt;}
.y16a{bottom:128.915733pt;}
.y20b{bottom:129.436667pt;}
.y260{bottom:132.570667pt;}
.y1cb{bottom:138.070400pt;}
.y294{bottom:138.464000pt;}
.y1e5{bottom:139.403733pt;}
.yaf{bottom:140.296133pt;}
.y89{bottom:140.747600pt;}
.y25f{bottom:145.765333pt;}
.y22f{bottom:145.840000pt;}
.y1f{bottom:146.073467pt;}
.y41{bottom:146.512400pt;}
.yfc{bottom:146.922800pt;}
.yd7{bottom:146.963733pt;}
.y64{bottom:147.097067pt;}
.y143{bottom:147.753333pt;}
.y121{bottom:147.927600pt;}
.y1a4{bottom:148.425067pt;}
.y187{bottom:148.608000pt;}
.y169{bottom:148.787733pt;}
.y20a{bottom:149.164667pt;}
.y1ca{bottom:154.337067pt;}
.y293{bottom:154.997333pt;}
.y1e4{bottom:155.803733pt;}
.y88{bottom:157.814267pt;}
.y25e{bottom:158.960000pt;}
.yae{bottom:164.256133pt;}
.y22e{bottom:165.440000pt;}
.y1e{bottom:166.073467pt;}
.y63{bottom:167.097067pt;}
.yfb{bottom:167.322800pt;}
.y142{bottom:167.753333pt;}
.y1a3{bottom:168.297067pt;}
.y120{bottom:168.327600pt;}
.y186{bottom:168.480000pt;}
.y168{bottom:168.659733pt;}
.y209{bottom:168.892667pt;}
.y25d{bottom:172.154667pt;}
.y40{bottom:173.934267pt;}
.yd6{bottom:174.788533pt;}
.y87{bottom:174.880933pt;}
.y292{bottom:177.264000pt;}
.y1c9{bottom:178.163733pt;}
.y1e3{bottom:179.763733pt;}
.yad{bottom:180.656133pt;}
.y25c{bottom:185.349333pt;}
.y1d{bottom:186.073467pt;}
.y62{bottom:187.097067pt;}
.yfa{bottom:187.722800pt;}
.y141{bottom:187.753333pt;}
.y185{bottom:188.352000pt;}
.y167{bottom:188.531733pt;}
.y208{bottom:188.620667pt;}
.y11f{bottom:188.727600pt;}
.yd5{bottom:191.721867pt;}
.y86{bottom:191.947600pt;}
.y291{bottom:193.125333pt;}
.y1c8{bottom:194.430400pt;}
.y22d{bottom:194.640000pt;}
.y1a2{bottom:195.722800pt;}
.y1e2{bottom:196.163733pt;}
.yac{bottom:197.056133pt;}
.y3f{bottom:198.027600pt;}
.y25b{bottom:198.544000pt;}
.y1c{bottom:206.073467pt;}
.y61{bottom:207.097067pt;}
.y140{bottom:207.753333pt;}
.yf9{bottom:208.122800pt;}
.y184{bottom:208.224000pt;}
.y207{bottom:208.348667pt;}
.y166{bottom:208.403733pt;}
.yd4{bottom:208.655200pt;}
.y85{bottom:209.014267pt;}
.y11e{bottom:209.127600pt;}
.y1c7{bottom:210.697067pt;}
.y25a{bottom:211.738667pt;}
.y1a1{bottom:212.256133pt;}
.y1e1{bottom:212.563733pt;}
.yab{bottom:213.456133pt;}
.y22c{bottom:214.368000pt;}
.y3e{bottom:214.560933pt;}
.y259{bottom:224.933333pt;}
.y1b{bottom:226.073467pt;}
.y1c6{bottom:226.963733pt;}
.y60{bottom:227.097067pt;}
.y206{bottom:228.076667pt;}
.y183{bottom:228.096000pt;}
.y165{bottom:228.275733pt;}
.y1a0{bottom:228.789467pt;}
.y1e0{bottom:228.963733pt;}
.y11d{bottom:229.527600pt;}
.yaa{bottom:229.856133pt;}
.y290{bottom:232.858667pt;}
.yd3{bottom:233.148533pt;}
.y84{bottom:233.640933pt;}
.y22b{bottom:234.096000pt;}
.y13f{bottom:235.310400pt;}
.y258{bottom:238.128000pt;}
.y3d{bottom:238.654267pt;}
.y2b5{bottom:244.000000pt;}
.y19f{bottom:245.322800pt;}
.y1df{bottom:245.363733pt;}
.y1a{bottom:246.073467pt;}
.y28f{bottom:246.192000pt;}
.ya9{bottom:246.256133pt;}
.y5f{bottom:247.097067pt;}
.y205{bottom:247.804667pt;}
.y182{bottom:247.968000pt;}
.y164{bottom:248.147733pt;}
.yf8{bottom:248.922800pt;}
.yd2{bottom:250.081867pt;}
.y83{bottom:250.707600pt;}
.y1c5{bottom:250.789467pt;}
.y257{bottom:251.322667pt;}
.y13e{bottom:251.977067pt;}
.y22a{bottom:253.824000pt;}
.y11c{bottom:257.484667pt;}
.y28e{bottom:259.525333pt;}
.y2b4{bottom:260.666667pt;}
.ya8{bottom:262.656133pt;}
.y3c{bottom:262.747600pt;}
.y256{bottom:264.517333pt;}
.y19{bottom:266.073467pt;}
.y5e{bottom:267.097067pt;}
.y181{bottom:267.840000pt;}
.y163{bottom:268.019733pt;}
.yf7{bottom:269.322800pt;}
.y1de{bottom:269.338800pt;}
.y19e{bottom:269.399200pt;}
.y1c4{bottom:270.389467pt;}
.y28d{bottom:272.858667pt;}
.y229{bottom:273.552000pt;}
.yd1{bottom:274.547600pt;}
.y11b{bottom:274.684667pt;}
.y204{bottom:275.096133pt;}
.y82{bottom:275.237333pt;}
.y13d{bottom:276.203733pt;}
.y2b3{bottom:277.333333pt;}
.y255{bottom:277.712000pt;}
.ya7{bottom:279.056133pt;}
.y18{bottom:286.073467pt;}
.y28c{bottom:286.192000pt;}
.y3b{bottom:286.840933pt;}
.y5d{bottom:287.097067pt;}
.y162{bottom:287.891733pt;}
.y1dd{bottom:289.066800pt;}
.y19d{bottom:289.271200pt;}
.yf6{bottom:289.722800pt;}
.y1c3{bottom:289.989467pt;}
.y254{bottom:290.906667pt;}
.y203{bottom:291.496133pt;}
.y11a{bottom:291.884667pt;}
.y13c{bottom:292.870400pt;}
.y228{bottom:293.280000pt;}
.y2b2{bottom:294.000000pt;}
.yd0{bottom:294.819600pt;}
.y81{bottom:295.637333pt;}
.y28b{bottom:299.525333pt;}
.ya6{bottom:303.100533pt;}
.y3a{bottom:303.374267pt;}
.y253{bottom:304.101333pt;}
.y17{bottom:306.073467pt;}
.y5c{bottom:307.097067pt;}
.y180{bottom:307.568000pt;}
.y161{bottom:307.763733pt;}
.y202{bottom:307.896133pt;}
.y1dc{bottom:308.794800pt;}
.y119{bottom:309.084667pt;}
.y19c{bottom:309.143200pt;}
.y13b{bottom:309.537067pt;}
.y1c2{bottom:309.589467pt;}
.yf5{bottom:310.122800pt;}
.y2b1{bottom:310.666667pt;}
.y28a{bottom:312.858667pt;}
.y227{bottom:313.008000pt;}
.ycf{bottom:315.091600pt;}
.y80{bottom:316.037333pt;}
.y252{bottom:317.296000pt;}
.ya5{bottom:322.828533pt;}
.y16{bottom:326.073467pt;}
.y289{bottom:326.192000pt;}
.y13a{bottom:326.203733pt;}
.y118{bottom:326.284667pt;}
.y5b{bottom:327.097067pt;}
.y39{bottom:327.413333pt;}
.y17f{bottom:327.440000pt;}
.y1db{bottom:328.522800pt;}
.y19b{bottom:329.015200pt;}
.y1c1{bottom:329.189467pt;}
.y251{bottom:330.490667pt;}
.yf4{bottom:330.522800pt;}
.y201{bottom:331.856133pt;}
.y226{bottom:332.736000pt;}
.y160{bottom:335.187600pt;}
.yce{bottom:335.363600pt;}
.y7f{bottom:336.437333pt;}
.y2b0{bottom:337.333333pt;}
.y288{bottom:339.525333pt;}
.ya4{bottom:342.556533pt;}
.y139{bottom:342.870400pt;}
.y117{bottom:343.484667pt;}
.y250{bottom:343.685333pt;}
.y15{bottom:346.073467pt;}
.y38{bottom:347.285333pt;}
.y17e{bottom:347.312000pt;}
.y200{bottom:348.256133pt;}
.y1c0{bottom:348.789467pt;}
.yf3{bottom:350.922800pt;}
.y15f{bottom:351.720933pt;}
.y225{bottom:352.464000pt;}
.y287{bottom:352.858667pt;}
.y2af{bottom:354.000000pt;}
.y5a{bottom:354.654267pt;}
.ycd{bottom:355.635600pt;}
.y19a{bottom:356.440933pt;}
.y7e{bottom:356.837333pt;}
.y24f{bottom:356.880000pt;}
.y138{bottom:359.537067pt;}
.y116{bottom:360.684667pt;}
.ya3{bottom:362.284533pt;}
.y1ff{bottom:364.656133pt;}
.y14{bottom:366.073467pt;}
.y286{bottom:366.192000pt;}
.y37{bottom:367.157333pt;}
.y17d{bottom:367.184000pt;}
.y15e{bottom:368.254267pt;}
.y1bf{bottom:368.389467pt;}
.y24e{bottom:370.074667pt;}
.y2ae{bottom:370.666667pt;}
.y59{bottom:371.320933pt;}
.yf2{bottom:371.322800pt;}
.y224{bottom:372.192000pt;}
.y199{bottom:372.974267pt;}
.y1da{bottom:375.547600pt;}
.ycc{bottom:375.907600pt;}
.y7d{bottom:377.237333pt;}
.y285{bottom:379.525333pt;}
.ya2{bottom:382.012533pt;}
.y24d{bottom:383.269333pt;}
.y137{bottom:383.763733pt;}
.y115{bottom:385.444667pt;}
.y13{bottom:386.073467pt;}
.y36{bottom:387.029333pt;}
.y17c{bottom:387.056000pt;}
.y2ad{bottom:387.333333pt;}
.y58{bottom:387.987600pt;}
.y1be{bottom:387.989467pt;}
.y1fe{bottom:388.636533pt;}
.y198{bottom:389.507600pt;}
.yf1{bottom:391.722800pt;}
.y223{bottom:391.920000pt;}
.y1d9{bottom:392.080933pt;}
.y15d{bottom:392.347600pt;}
.y284{bottom:392.858667pt;}
.y24c{bottom:396.464000pt;}
.y7c{bottom:397.637333pt;}
.y136{bottom:400.430400pt;}
.ya1{bottom:401.740533pt;}
.y114{bottom:402.644667pt;}
.ycb{bottom:403.733333pt;}
.y2ac{bottom:404.000000pt;}
.y57{bottom:404.654267pt;}
.y197{bottom:406.040933pt;}
.y12{bottom:406.073467pt;}
.y283{bottom:406.192000pt;}
.y35{bottom:406.901333pt;}
.y17b{bottom:406.928000pt;}
.y1bd{bottom:407.589467pt;}
.y1fd{bottom:408.364533pt;}
.y1d8{bottom:408.614267pt;}
.y15c{bottom:408.880933pt;}
.y24b{bottom:409.658667pt;}
.y222{bottom:411.648000pt;}
.yf0{bottom:412.122800pt;}
.y135{bottom:417.097067pt;}
.y7b{bottom:418.037333pt;}
.y282{bottom:419.525333pt;}
.yca{bottom:420.666667pt;}
.ya0{bottom:421.468533pt;}
.y196{bottom:422.574267pt;}
.y24a{bottom:422.853333pt;}
.y1d7{bottom:425.147600pt;}
.y15b{bottom:425.414267pt;}
.y11{bottom:426.073467pt;}
.y17a{bottom:426.741333pt;}
.y34{bottom:426.773333pt;}
.y1bc{bottom:427.189467pt;}
.y113{bottom:427.404667pt;}
.y1fc{bottom:428.092533pt;}
.y56{bottom:428.880933pt;}
.y2ab{bottom:430.666667pt;}
.y221{bottom:431.376000pt;}
.yef{bottom:432.522800pt;}
.y281{bottom:432.858667pt;}
.y249{bottom:436.048000pt;}
.yc9{bottom:437.600000pt;}
.y7a{bottom:438.437333pt;}
.y9f{bottom:441.196533pt;}
.y134{bottom:441.322800pt;}
.y1d6{bottom:441.680933pt;}
.y15a{bottom:441.947600pt;}
.y112{bottom:444.604667pt;}
.y55{bottom:445.547600pt;}
.y10{bottom:446.073467pt;}
.y280{bottom:446.192000pt;}
.y179{bottom:446.613333pt;}
.y195{bottom:446.618667pt;}
.y1fb{bottom:447.820533pt;}
.y248{bottom:449.242667pt;}
.y220{bottom:451.104000pt;}
.yee{bottom:452.922800pt;}
.yc8{bottom:454.533333pt;}
.y1d5{bottom:458.214267pt;}
.y159{bottom:458.480933pt;}
.y79{bottom:458.837333pt;}
.y27f{bottom:459.525333pt;}
.y9e{bottom:460.924533pt;}
.y133{bottom:461.322800pt;}
.y111{bottom:461.804667pt;}
.y54{bottom:462.214267pt;}
.y247{bottom:462.437333pt;}
.yf{bottom:466.073467pt;}
.y1bb{bottom:466.389467pt;}
.y178{bottom:466.485333pt;}
.y194{bottom:466.490667pt;}
.y33{bottom:466.501333pt;}
.y2aa{bottom:467.333333pt;}
.y1fa{bottom:467.553867pt;}
.y21f{bottom:470.832000pt;}
.yc7{bottom:471.466667pt;}
.y27e{bottom:472.858667pt;}
.yed{bottom:473.322800pt;}
.y1d4{bottom:474.747600pt;}
.y158{bottom:475.014267pt;}
.y246{bottom:475.632000pt;}
.y78{bottom:479.109333pt;}
.y9d{bottom:480.652533pt;}
.y132{bottom:481.322800pt;}
.y1ba{bottom:482.656133pt;}
.y2a9{bottom:484.000000pt;}
.ye{bottom:486.073467pt;}
.y27d{bottom:486.192000pt;}
.y177{bottom:486.357333pt;}
.y193{bottom:486.362667pt;}
.y32{bottom:486.373333pt;}
.y53{bottom:486.440933pt;}
.y110{bottom:486.563733pt;}
.y1f9{bottom:487.281867pt;}
.yc6{bottom:488.400000pt;}
.y245{bottom:488.826667pt;}
.y21e{bottom:490.560000pt;}
.y1d3{bottom:491.280933pt;}
.y157{bottom:491.547600pt;}
.yec{bottom:493.722800pt;}
.y1b9{bottom:498.922800pt;}
.y77{bottom:499.381333pt;}
.y27c{bottom:499.525333pt;}
.y9c{bottom:500.380533pt;}
.y2a8{bottom:500.666667pt;}
.y131{bottom:501.322800pt;}
.y244{bottom:502.021333pt;}
.y52{bottom:503.107600pt;}
.yc5{bottom:505.333333pt;}
.yd{bottom:506.073467pt;}
.y176{bottom:506.229333pt;}
.y192{bottom:506.234667pt;}
.y31{bottom:506.245333pt;}
.y10f{bottom:506.963733pt;}
.y1d2{bottom:507.814267pt;}
.y156{bottom:508.080933pt;}
.y21d{bottom:510.288000pt;}
.y27b{bottom:512.858667pt;}
.y1b8{bottom:515.189467pt;}
.y243{bottom:515.216000pt;}
.y76{bottom:519.653333pt;}
.y51{bottom:519.774267pt;}
.y9b{bottom:520.108533pt;}
.y130{bottom:521.322800pt;}
.yeb{bottom:521.680000pt;}
.yc4{bottom:522.266667pt;}
.y1d1{bottom:524.347600pt;}
.y155{bottom:524.614267pt;}
.y175{bottom:526.101333pt;}
.y191{bottom:526.106667pt;}
.y30{bottom:526.117333pt;}
.y27a{bottom:526.192000pt;}
.y1f8{bottom:526.747600pt;}
.y2a7{bottom:527.333333pt;}
.y10e{bottom:527.363733pt;}
.y242{bottom:528.410667pt;}
.y21c{bottom:530.016000pt;}
.y1b7{bottom:531.456133pt;}
.yea{bottom:538.746667pt;}
.yc3{bottom:539.200000pt;}
.y279{bottom:539.525333pt;}
.y9a{bottom:539.836533pt;}
.y75{bottom:539.925333pt;}
.y1d0{bottom:540.880933pt;}
.y154{bottom:541.147600pt;}
.y241{bottom:541.605333pt;}
.y1f7{bottom:543.147600pt;}
.y50{bottom:544.000000pt;}
.y190{bottom:545.978667pt;}
.y2f{bottom:545.989333pt;}
.yc{bottom:546.073467pt;}
.y1b6{bottom:547.722800pt;}
.y10d{bottom:547.763733pt;}
.y12f{bottom:548.881867pt;}
.y21b{bottom:549.744000pt;}
.y278{bottom:552.858667pt;}
.y240{bottom:554.800000pt;}
.ye9{bottom:555.813333pt;}
.yc2{bottom:556.133333pt;}
.y153{bottom:557.680933pt;}
.y1f6{bottom:559.547600pt;}
.y74{bottom:560.197333pt;}
.y2a6{bottom:560.666667pt;}
.y1b5{bottom:563.989467pt;}
.y4f{bottom:564.000000pt;}
.y1cf{bottom:564.974267pt;}
.y12e{bottom:565.548533pt;}
.y174{bottom:565.829333pt;}
.y18f{bottom:565.850667pt;}
.y2e{bottom:565.861333pt;}
.y277{bottom:566.192000pt;}
.y23f{bottom:567.994667pt;}
.y21a{bottom:569.472000pt;}
.ye8{bottom:572.880000pt;}
.yc1{bottom:573.066667pt;}
.y152{bottom:574.214267pt;}
.y10c{bottom:575.720933pt;}
.y1f5{bottom:575.947600pt;}
.y2a5{bottom:577.333333pt;}
.y99{bottom:579.308533pt;}
.y276{bottom:579.525333pt;}
.y1b4{bottom:580.256133pt;}
.y73{bottom:580.469333pt;}
.y23e{bottom:581.189333pt;}
.y1ce{bottom:581.507600pt;}
.yb{bottom:583.527600pt;}
.y4e{bottom:584.000000pt;}
.y173{bottom:585.701333pt;}
.y18e{bottom:585.722667pt;}
.y2d{bottom:585.733333pt;}
.y219{bottom:589.200000pt;}
.y12d{bottom:589.774267pt;}
.ye7{bottom:589.946667pt;}
.yc0{bottom:590.000000pt;}
.y151{bottom:590.747600pt;}
.y1f4{bottom:592.347600pt;}
.y10b{bottom:592.787600pt;}
.y275{bottom:592.858667pt;}
.y2a4{bottom:594.000000pt;}
.y23d{bottom:594.384000pt;}
.y1b3{bottom:596.522800pt;}
.y98{bottom:599.036533pt;}
.y72{bottom:600.741333pt;}
.ya{bottom:603.527600pt;}
.y4d{bottom:604.000000pt;}
.y172{bottom:605.573333pt;}
.y18d{bottom:605.594667pt;}
.y2c{bottom:605.600000pt;}
.y274{bottom:606.192000pt;}
.ybf{bottom:606.933333pt;}
.ye6{bottom:607.013333pt;}
.y150{bottom:607.280933pt;}
.y23c{bottom:607.578667pt;}
.y218{bottom:608.800000pt;}
.y12c{bottom:609.774267pt;}
.y10a{bottom:609.854267pt;}
.y2a3{bottom:610.666667pt;}
.y1b2{bottom:612.789467pt;}
.y1f3{bottom:616.307600pt;}
.y97{bottom:618.764533pt;}
.y273{bottom:619.525333pt;}
.y23b{bottom:620.773333pt;}
.y71{bottom:621.013333pt;}
.y9{bottom:623.527600pt;}
.ybe{bottom:623.866667pt;}
.y4c{bottom:624.000000pt;}
.ye5{bottom:624.080000pt;}
.y171{bottom:625.445333pt;}
.y18c{bottom:625.461333pt;}
.y109{bottom:626.920933pt;}
.y2a2{bottom:627.333333pt;}
.y217{bottom:628.400000pt;}
.y1b1{bottom:629.056133pt;}
.y12b{bottom:629.774267pt;}
.y14f{bottom:631.374267pt;}
.y1f2{bottom:632.707600pt;}
.y272{bottom:632.858667pt;}
.y23a{bottom:633.968000pt;}
.y96{bottom:638.492533pt;}
.ybd{bottom:640.800000pt;}
.y70{bottom:641.285333pt;}
.y108{bottom:643.987600pt;}
.y4b{bottom:644.000000pt;}
.y2b{bottom:645.285333pt;}
.y18b{bottom:645.301333pt;}
.y170{bottom:645.317333pt;}
.y271{bottom:646.053333pt;}
.y239{bottom:647.162667pt;}
.y14e{bottom:647.907600pt;}
.y216{bottom:648.000000pt;}
.ye4{bottom:648.706667pt;}
.y1f1{bottom:649.107600pt;}
.y12a{bottom:649.774267pt;}
.y1b0{bottom:652.881867pt;}
.ybc{bottom:657.733333pt;}
.y95{bottom:658.220533pt;}
.y270{bottom:659.248000pt;}
.y238{bottom:660.357333pt;}
.y2a1{bottom:660.666667pt;}
.y107{bottom:661.054267pt;}
.y6f{bottom:661.557333pt;}
.y4a{bottom:664.000000pt;}
.y8{bottom:664.314933pt;}
.y14d{bottom:664.440933pt;}
.y2a{bottom:665.157333pt;}
.y18a{bottom:665.173333pt;}
.y16f{bottom:665.189333pt;}
.y1f0{bottom:665.507600pt;}
.ye3{bottom:665.773333pt;}
.y215{bottom:667.600000pt;}
.y129{bottom:669.774267pt;}
.y26f{bottom:672.442667pt;}
.y1af{bottom:672.481867pt;}
.y237{bottom:673.552000pt;}
.ybb{bottom:674.666667pt;}
.y2a0{bottom:677.333333pt;}
.y94{bottom:677.948533pt;}
.y14c{bottom:680.974267pt;}
.y6e{bottom:681.829333pt;}
.y1ef{bottom:681.907600pt;}
.ye2{bottom:682.840000pt;}
.y49{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.y29{bottom:685.029333pt;}
.y16e{bottom:685.061333pt;}
.y26e{bottom:685.637333pt;}
.y106{bottom:685.680933pt;}
.y236{bottom:686.746667pt;}
.y214{bottom:687.200000pt;}
.y128{bottom:689.774267pt;}
.yba{bottom:691.600000pt;}
.y1ae{bottom:692.081867pt;}
.y29f{bottom:694.000000pt;}
.y14b{bottom:697.507600pt;}
.y26d{bottom:698.832000pt;}
.ye1{bottom:699.906667pt;}
.y235{bottom:699.941333pt;}
.y6d{bottom:702.101333pt;}
.y105{bottom:702.747600pt;}
.y48{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.y28{bottom:704.901333pt;}
.y16d{bottom:704.933333pt;}
.y93{bottom:705.240000pt;}
.y1ee{bottom:705.888000pt;}
.y213{bottom:706.800000pt;}
.yb9{bottom:708.533333pt;}
.y29e{bottom:710.666667pt;}
.y1ad{bottom:711.681867pt;}
.y26c{bottom:712.026667pt;}
.y234{bottom:713.136000pt;}
.y14a{bottom:714.040933pt;}
.y92{bottom:721.640000pt;}
.y6c{bottom:722.373333pt;}
.y47{bottom:724.000000pt;}
.ye0{bottom:724.533333pt;}
.y27{bottom:724.773333pt;}
.y16c{bottom:724.800000pt;}
.y26b{bottom:725.232000pt;}
.yb8{bottom:725.466667pt;}
.y1ed{bottom:725.616000pt;}
.y233{bottom:726.330667pt;}
.y212{bottom:726.400000pt;}
.y29d{bottom:727.333333pt;}
.y104{bottom:727.374267pt;}
.y127{bottom:729.774267pt;}
.y149{bottom:730.574267pt;}
.y26a{bottom:738.426667pt;}
.y1ac{bottom:738.840000pt;}
.ydf{bottom:741.600000pt;}
.yb7{bottom:742.400000pt;}
.y6b{bottom:742.645333pt;}
.y29c{bottom:744.000000pt;}
.y103{bottom:744.440933pt;}
.y26{bottom:744.645333pt;}
.y232{bottom:745.200000pt;}
.y1ec{bottom:745.344000pt;}
.y91{bottom:745.600000pt;}
.y211{bottom:746.000000pt;}
.y126{bottom:746.440933pt;}
.y148{bottom:747.107600pt;}
.y269{bottom:751.621333pt;}
.y1ab{bottom:755.106667pt;}
.yde{bottom:758.666667pt;}
.yb6{bottom:759.333333pt;}
.y29b{bottom:760.666667pt;}
.y102{bottom:761.507600pt;}
.y90{bottom:762.000000pt;}
.y6a{bottom:762.917333pt;}
.y125{bottom:763.107600pt;}
.y147{bottom:763.640933pt;}
.y5{bottom:764.000000pt;}
.y25{bottom:764.517333pt;}
.y268{bottom:764.816000pt;}
.y1eb{bottom:765.072000pt;}
.y210{bottom:765.600000pt;}
.y1aa{bottom:771.373333pt;}
.ydd{bottom:775.733333pt;}
.yb5{bottom:776.266667pt;}
.y29a{bottom:777.333333pt;}
.y267{bottom:778.010667pt;}
.y8f{bottom:778.400000pt;}
.y101{bottom:778.574267pt;}
.y124{bottom:779.774267pt;}
.y146{bottom:780.174267pt;}
.y69{bottom:783.189333pt;}
.y46{bottom:784.000000pt;}
.y24{bottom:784.389333pt;}
.y1ea{bottom:784.810667pt;}
.y20f{bottom:785.200000pt;}
.y4{bottom:790.666667pt;}
.y266{bottom:791.216000pt;}
.ydc{bottom:792.800000pt;}
.yb4{bottom:793.200000pt;}
.y299{bottom:794.000000pt;}
.y8e{bottom:794.800000pt;}
.y1a9{bottom:795.200000pt;}
.y100{bottom:803.200000pt;}
.y68{bottom:803.461333pt;}
.y45{bottom:804.000000pt;}
.y23{bottom:804.261333pt;}
.y265{bottom:804.410667pt;}
.y1e9{bottom:804.538667pt;}
.y20e{bottom:804.800000pt;}
.ydb{bottom:809.866667pt;}
.yb3{bottom:810.133333pt;}
.y298{bottom:810.666667pt;}
.y8d{bottom:811.200000pt;}
.y1a8{bottom:811.466667pt;}
.y3{bottom:817.333333pt;}
.y264{bottom:817.605333pt;}
.yff{bottom:823.600000pt;}
.y67{bottom:823.733333pt;}
.y44{bottom:824.000000pt;}
.y22{bottom:824.133333pt;}
.y1e8{bottom:824.266667pt;}
.y20d{bottom:824.400000pt;}
.yda{bottom:826.933333pt;}
.yb2{bottom:827.066667pt;}
.y297{bottom:827.333333pt;}
.y8c{bottom:827.600000pt;}
.y1a7{bottom:827.733333pt;}
.y263{bottom:830.800000pt;}
.hf{height:29.437500pt;}
.hd{height:34.730667pt;}
.h10{height:35.370667pt;}
.he{height:36.229167pt;}
.h6{height:36.796875pt;}
.h4{height:37.333333pt;}
.h8{height:42.656250pt;}
.h7{height:44.156250pt;}
.h1{height:45.286458pt;}
.ha{height:51.107375pt;}
.h5{height:54.343750pt;}
.hb{height:54.365083pt;}
.hc{height:54.407750pt;}
.h9{height:54.578417pt;}
.h2{height:73.593750pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x8{left:86.456667pt;}
.xa{left:90.246133pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x2{left:120.000000pt;}
.x7{left:126.456667pt;}
.x9{left:139.670000pt;}
.x4{left:564.791600pt;}
}




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