
    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_1613d552a0af931785e77963.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_8401bcdf27298e67843049a4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d749b0fc9df219d9622ea785.woff')format("woff");}.ff3{font-family:ff3;line-height:1.019043;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_1636f31b9687f0750efeccf5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3fbbba22f4929df1f479ea6c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_7b12935dd08df8c89b8d3f2d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.034000;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_091460ed789da071b7c182eb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_4e3e3eae1047f896876f6e6c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c40d5795bcadb2fb79b1a30d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_6718fbb08b668033510e94bf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.019043;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_7ee1fff330de01669eab5498.woff')format("woff");}.ffb{font-family:ffb;line-height:0.678711;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_5e0e6641f546cec15855494e.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-7.200000px;}
.ls36{letter-spacing:-1.872000px;}
.ls32{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-1.224000px;}
.lsb{letter-spacing:-1.152000px;}
.ls1b{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.648000px;}
.ls25{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.152000px;}
.ls2c{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.296000px;}
.ls31{letter-spacing:1.368000px;}
.ls2f{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.512000px;}
.ls33{letter-spacing:1.584000px;}
.ls1e{letter-spacing:1.656000px;}
.ls30{letter-spacing:1.944000px;}
.ls1d{letter-spacing:2.088000px;}
.ls2b{letter-spacing:2.520000px;}
.ls35{letter-spacing:2.904000px;}
.ls38{letter-spacing:2.923200px;}
.ls37{letter-spacing:2.928000px;}
.ls5{letter-spacing:4.560000px;}
.ls34{letter-spacing:4.752000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.ls3{letter-spacing:70.620000px;}
.ls2{letter-spacing:195.768000px;}
.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;}
}
.ws2c{word-spacing:-63.576000px;}
.ws69{word-spacing:-20.880000px;}
.ws19{word-spacing:-20.232000px;}
.ws4c{word-spacing:-20.160000px;}
.ws7e{word-spacing:-17.784000px;}
.ws10{word-spacing:-16.860000px;}
.ws8d{word-spacing:-13.488000px;}
.ws8c{word-spacing:-11.856000px;}
.ws93{word-spacing:-4.752000px;}
.ws5{word-spacing:-4.560000px;}
.ws15{word-spacing:-2.016000px;}
.ws64{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.008000px;}
.ws17{word-spacing:-0.792000px;}
.ws55{word-spacing:-0.360000px;}
.ws5a{word-spacing:-0.144000px;}
.ws9{word-spacing:0.000000px;}
.ws56{word-spacing:0.072000px;}
.ws36{word-spacing:0.216000px;}
.wse{word-spacing:0.360000px;}
.wsa{word-spacing:0.504000px;}
.ws58{word-spacing:0.576000px;}
.ws86{word-spacing:0.720000px;}
.ws80{word-spacing:0.792000px;}
.ws3b{word-spacing:0.864000px;}
.ws88{word-spacing:0.936000px;}
.ws5b{word-spacing:1.152000px;}
.ws81{word-spacing:1.368000px;}
.ws95{word-spacing:1.440000px;}
.ws38{word-spacing:1.512000px;}
.ws42{word-spacing:1.584000px;}
.ws8b{word-spacing:1.656000px;}
.ws4{word-spacing:1.800000px;}
.ws53{word-spacing:1.872000px;}
.ws31{word-spacing:1.944000px;}
.ws41{word-spacing:2.016000px;}
.ws2f{word-spacing:2.088000px;}
.ws1d{word-spacing:2.160000px;}
.wsb{word-spacing:2.232000px;}
.ws4e{word-spacing:2.304000px;}
.ws35{word-spacing:2.376000px;}
.wsc{word-spacing:2.400000px;}
.ws29{word-spacing:2.448000px;}
.ws71{word-spacing:2.520000px;}
.ws77{word-spacing:2.736000px;}
.ws23{word-spacing:2.808000px;}
.ws60{word-spacing:2.880000px;}
.ws54{word-spacing:2.952000px;}
.ws94{word-spacing:2.976000px;}
.ws37{word-spacing:3.024000px;}
.ws47{word-spacing:3.096000px;}
.ws49{word-spacing:3.168000px;}
.ws6d{word-spacing:3.240000px;}
.ws70{word-spacing:3.312000px;}
.wsf{word-spacing:3.360000px;}
.ws11{word-spacing:3.456000px;}
.ws34{word-spacing:3.528000px;}
.ws45{word-spacing:3.600000px;}
.ws48{word-spacing:3.672000px;}
.ws2{word-spacing:3.720000px;}
.ws59{word-spacing:3.816000px;}
.ws44{word-spacing:3.888000px;}
.ws6c{word-spacing:4.032000px;}
.ws89{word-spacing:4.104000px;}
.ws30{word-spacing:4.176000px;}
.ws1{word-spacing:4.200000px;}
.ws1e{word-spacing:4.248000px;}
.ws24{word-spacing:4.320000px;}
.ws51{word-spacing:4.392000px;}
.ws18{word-spacing:4.464000px;}
.ws2b{word-spacing:4.536000px;}
.ws14{word-spacing:4.608000px;}
.ws21{word-spacing:4.680000px;}
.ws7d{word-spacing:4.752000px;}
.ws5f{word-spacing:4.824000px;}
.ws6{word-spacing:4.980000px;}
.ws8{word-spacing:5.040000px;}
.ws12{word-spacing:5.184000px;}
.ws20{word-spacing:5.256000px;}
.ws73{word-spacing:5.400000px;}
.ws6e{word-spacing:5.472000px;}
.ws8f{word-spacing:5.544000px;}
.ws8a{word-spacing:5.616000px;}
.ws43{word-spacing:5.688000px;}
.ws2e{word-spacing:5.760000px;}
.ws85{word-spacing:5.832000px;}
.ws57{word-spacing:5.904000px;}
.ws79{word-spacing:5.976000px;}
.ws84{word-spacing:6.048000px;}
.ws75{word-spacing:6.192000px;}
.ws82{word-spacing:6.264000px;}
.ws7b{word-spacing:6.408000px;}
.ws1a{word-spacing:6.480000px;}
.ws5c{word-spacing:6.552000px;}
.ws5d{word-spacing:6.624000px;}
.ws7c{word-spacing:6.696000px;}
.ws1f{word-spacing:6.840000px;}
.ws25{word-spacing:6.912000px;}
.ws32{word-spacing:6.984000px;}
.ws3a{word-spacing:7.056000px;}
.ws6b{word-spacing:7.200000px;}
.ws52{word-spacing:7.272000px;}
.ws78{word-spacing:7.416000px;}
.ws39{word-spacing:7.488000px;}
.ws5e{word-spacing:7.560000px;}
.ws3f{word-spacing:7.632000px;}
.ws26{word-spacing:7.776000px;}
.ws87{word-spacing:7.848000px;}
.ws28{word-spacing:7.920000px;}
.ws13{word-spacing:8.064000px;}
.ws2d{word-spacing:8.136000px;}
.ws63{word-spacing:8.208000px;}
.ws1c{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws3{word-spacing:8.400000px;}
.ws6a{word-spacing:8.424000px;}
.ws4d{word-spacing:8.496000px;}
.ws3d{word-spacing:8.568000px;}
.ws8e{word-spacing:8.712000px;}
.ws76{word-spacing:8.784000px;}
.ws65{word-spacing:8.856000px;}
.ws33{word-spacing:9.072000px;}
.ws7{word-spacing:9.216000px;}
.ws27{word-spacing:9.360000px;}
.ws92{word-spacing:9.504000px;}
.ws46{word-spacing:9.576000px;}
.ws4a{word-spacing:10.008000px;}
.ws2a{word-spacing:10.080000px;}
.ws1b{word-spacing:10.152000px;}
.ws4f{word-spacing:10.296000px;}
.ws67{word-spacing:10.440000px;}
.ws91{word-spacing:10.584000px;}
.ws40{word-spacing:10.656000px;}
.ws7f{word-spacing:10.728000px;}
.ws66{word-spacing:11.232000px;}
.ws83{word-spacing:11.376000px;}
.ws4b{word-spacing:11.664000px;}
.ws74{word-spacing:11.880000px;}
.ws7a{word-spacing:11.952000px;}
.ws6f{word-spacing:12.096000px;}
.ws61{word-spacing:12.240000px;}
.ws50{word-spacing:12.384000px;}
.ws22{word-spacing:12.744000px;}
.ws90{word-spacing:13.176000px;}
.ws3e{word-spacing:13.248000px;}
.ws68{word-spacing:13.392000px;}
.ws72{word-spacing:14.616000px;}
.ws3c{word-spacing:15.408000px;}
.ws62{word-spacing:17.496000px;}
.wsd{word-spacing:199.140000px;}
._f{margin-left:-940.386000px;}
._8{margin-left:-194.964000px;}
._9{margin-left:-152.472000px;}
._13{margin-left:-20.016000px;}
._7{margin-left:-8.318400px;}
._10{margin-left:-7.024800px;}
._4{margin-left:-5.370000px;}
._15{margin-left:-3.849600px;}
._5{margin-left:-2.332800px;}
._2{margin-left:-1.156800px;}
._1{width:1.536000px;}
._6{width:3.139200px;}
._c{width:4.606800px;}
._3{width:5.830800px;}
._14{width:7.160400px;}
._11{width:9.518400px;}
._12{width:11.100000px;}
._d{width:41.692800px;}
._a{width:125.940000px;}
._b{width:162.900000px;}
._e{width:194.940000px;}
._0{width:201.564000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.ya6{bottom:117.000000px;}
.y62{bottom:118.086000px;}
.yc9{bottom:118.092000px;}
.yea{bottom:119.244000px;}
.y1b{bottom:121.746900px;}
.y84{bottom:122.004000px;}
.y3f{bottom:122.878500px;}
.ye9{bottom:134.244000px;}
.ya5{bottom:139.500000px;}
.y61{bottom:141.180000px;}
.yc8{bottom:141.186000px;}
.y3e{bottom:145.072500px;}
.y83{bottom:145.404000px;}
.ye8{bottom:149.244000px;}
.y1a{bottom:154.749600px;}
.ya4{bottom:162.000000px;}
.ye7{bottom:164.244000px;}
.y60{bottom:164.274000px;}
.yc7{bottom:164.280000px;}
.y82{bottom:168.804000px;}
.y3d{bottom:175.776300px;}
.ye6{bottom:179.244000px;}
.ya3{bottom:184.500000px;}
.y5f{bottom:187.368000px;}
.yc6{bottom:187.374000px;}
.y81{bottom:192.204000px;}
.ye5{bottom:194.244000px;}
.y3c{bottom:194.826300px;}
.y19{bottom:206.529600px;}
.ya2{bottom:207.000000px;}
.y5e{bottom:210.462000px;}
.yc5{bottom:210.468000px;}
.y3b{bottom:213.876300px;}
.y80{bottom:215.604000px;}
.ye4{bottom:215.616000px;}
.ya1{bottom:229.500000px;}
.y3a{bottom:232.926300px;}
.y5d{bottom:233.556000px;}
.yc4{bottom:233.562000px;}
.y7f{bottom:239.004000px;}
.ya0{bottom:252.000000px;}
.y5c{bottom:256.650000px;}
.yc3{bottom:256.656000px;}
.y18{bottom:258.309600px;}
.y39{bottom:260.416200px;}
.ye3{bottom:260.616000px;}
.y7e{bottom:262.404000px;}
.y9f{bottom:274.500000px;}
.ye2{bottom:275.616000px;}
.y5b{bottom:279.744000px;}
.yc2{bottom:279.750000px;}
.y38{bottom:283.222200px;}
.y7d{bottom:285.804000px;}
.ye1{bottom:290.616000px;}
.y9e{bottom:297.000000px;}
.y5a{bottom:302.838000px;}
.yc1{bottom:302.844000px;}
.y17{bottom:303.714600px;}
.ye0{bottom:305.616000px;}
.y37{bottom:306.028200px;}
.y7c{bottom:309.204000px;}
.y9d{bottom:319.500000px;}
.ydf{bottom:320.616000px;}
.y59{bottom:325.932000px;}
.yc0{bottom:325.938000px;}
.y36{bottom:328.834200px;}
.y16{bottom:332.592450px;}
.yde{bottom:335.616000px;}
.y7b{bottom:341.100000px;}
.y9c{bottom:342.000000px;}
.y58{bottom:349.026000px;}
.ybf{bottom:349.032000px;}
.yd8{bottom:349.050000px;}
.ydd{bottom:350.616000px;}
.y35{bottom:351.640200px;}
.y7a{bottom:364.500000px;}
.ydc{bottom:365.616000px;}
.y57{bottom:372.120000px;}
.ybe{bottom:372.126000px;}
.yd7{bottom:372.144000px;}
.y15{bottom:373.092450px;}
.y34{bottom:374.446200px;}
.ydb{bottom:380.616000px;}
.y9b{bottom:387.000000px;}
.y79{bottom:387.900000px;}
.y56{bottom:395.214000px;}
.ybd{bottom:395.220000px;}
.yd6{bottom:395.238000px;}
.y14{bottom:395.592450px;}
.yda{bottom:395.616000px;}
.y33{bottom:397.252200px;}
.y9a{bottom:409.500000px;}
.yd9{bottom:410.616000px;}
.y78{bottom:411.300000px;}
.y13{bottom:418.092450px;}
.y55{bottom:418.308000px;}
.ybc{bottom:418.314000px;}
.yd5{bottom:418.332000px;}
.y32{bottom:420.058200px;}
.yff{bottom:425.622000px;}
.y99{bottom:432.000000px;}
.y77{bottom:434.700000px;}
.y12{bottom:440.592450px;}
.y54{bottom:441.402000px;}
.ybb{bottom:441.408000px;}
.yd4{bottom:441.426000px;}
.y31{bottom:442.864200px;}
.yfe{bottom:444.372000px;}
.y98{bottom:454.500000px;}
.y76{bottom:458.100000px;}
.y11{bottom:463.092450px;}
.yfd{bottom:463.122000px;}
.y53{bottom:464.496000px;}
.yba{bottom:464.502000px;}
.yd3{bottom:464.520000px;}
.y30{bottom:474.166200px;}
.y97{bottom:477.000000px;}
.y75{bottom:481.500000px;}
.yfc{bottom:481.872000px;}
.y52{bottom:487.590000px;}
.yb9{bottom:487.596000px;}
.yd2{bottom:487.614000px;}
.y10{bottom:494.095350px;}
.y2f{bottom:496.972200px;}
.y96{bottom:499.500000px;}
.y74{bottom:504.900000px;}
.y51{bottom:510.684000px;}
.yb8{bottom:510.690000px;}
.yd1{bottom:510.708000px;}
.yf{bottom:512.845350px;}
.yfb{bottom:519.372000px;}
.y2e{bottom:519.778200px;}
.y95{bottom:522.000000px;}
.y73{bottom:528.300000px;}
.ye{bottom:531.595350px;}
.y50{bottom:533.778000px;}
.yb7{bottom:533.784000px;}
.yd0{bottom:533.802000px;}
.yfa{bottom:538.122000px;}
.y2d{bottom:542.584200px;}
.y94{bottom:544.500000px;}
.yd{bottom:550.345350px;}
.y72{bottom:551.700000px;}
.y4f{bottom:556.872000px;}
.yb6{bottom:556.878000px;}
.ycf{bottom:556.896000px;}
.y93{bottom:567.000000px;}
.y2c{bottom:573.886050px;}
.y71{bottom:575.100000px;}
.yf9{bottom:575.622000px;}
.yc{bottom:577.600350px;}
.y4e{bottom:579.966000px;}
.yb5{bottom:579.972000px;}
.yce{bottom:579.990000px;}
.y92{bottom:589.500000px;}
.y2b{bottom:592.936050px;}
.yf8{bottom:594.372000px;}
.yb{bottom:596.350350px;}
.y70{bottom:598.500000px;}
.y4d{bottom:603.060000px;}
.yb4{bottom:603.066000px;}
.ycd{bottom:603.084000px;}
.y2a{bottom:611.986050px;}
.y91{bottom:612.000000px;}
.yf7{bottom:613.122000px;}
.ya{bottom:615.100350px;}
.y6f{bottom:621.900000px;}
.y4c{bottom:626.154000px;}
.yb3{bottom:626.160000px;}
.ycc{bottom:626.178000px;}
.yf6{bottom:631.872000px;}
.y90{bottom:634.500000px;}
.y29{bottom:639.541050px;}
.y9{bottom:642.354300px;}
.y6e{bottom:645.300000px;}
.y4b{bottom:649.248000px;}
.yb2{bottom:649.254000px;}
.ycb{bottom:649.272000px;}
.yf5{bottom:650.622000px;}
.y8f{bottom:657.000000px;}
.y28{bottom:658.591050px;}
.y8{bottom:664.854300px;}
.y6d{bottom:668.700000px;}
.yf4{bottom:669.372000px;}
.yca{bottom:672.366000px;}
.y27{bottom:677.641050px;}
.y8e{bottom:679.500000px;}
.y7{bottom:687.354300px;}
.yf3{bottom:688.122000px;}
.y6c{bottom:692.100000px;}
.y4a{bottom:695.454000px;}
.yb1{bottom:695.460000px;}
.y26{bottom:696.691050px;}
.ya7{bottom:702.000000px;}
.yf2{bottom:706.872000px;}
.y6b{bottom:715.500000px;}
.y49{bottom:718.548000px;}
.yb0{bottom:718.554000px;}
.y25{bottom:724.246050px;}
.y8d{bottom:724.500000px;}
.yf1{bottom:725.622000px;}
.y6{bottom:732.354300px;}
.y6a{bottom:738.900000px;}
.y48{bottom:741.642000px;}
.yaf{bottom:741.648000px;}
.y24{bottom:743.296050px;}
.yf0{bottom:744.372000px;}
.y8c{bottom:747.000000px;}
.y5{bottom:751.104300px;}
.y69{bottom:762.300000px;}
.y23{bottom:762.346050px;}
.y47{bottom:764.736000px;}
.yae{bottom:764.742000px;}
.y8b{bottom:769.500000px;}
.y68{bottom:785.700000px;}
.y46{bottom:787.830000px;}
.yad{bottom:787.836000px;}
.y22{bottom:789.864000px;}
.y8a{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.y67{bottom:809.100000px;}
.y45{bottom:810.924000px;}
.yac{bottom:810.930000px;}
.y21{bottom:812.670000px;}
.y89{bottom:814.500000px;}
.yef{bottom:829.500000px;}
.y66{bottom:832.500000px;}
.y44{bottom:834.018000px;}
.yab{bottom:834.024000px;}
.y20{bottom:835.476000px;}
.y88{bottom:837.000000px;}
.yee{bottom:844.500000px;}
.y43{bottom:857.112000px;}
.yaa{bottom:857.118000px;}
.y1f{bottom:858.282000px;}
.y3{bottom:859.500000px;}
.yed{bottom:874.500000px;}
.y65{bottom:879.300000px;}
.y42{bottom:880.206000px;}
.ya9{bottom:880.212000px;}
.y1e{bottom:881.088000px;}
.y87{bottom:882.000000px;}
.y2{bottom:889.500000px;}
.y64{bottom:902.700000px;}
.y41{bottom:903.300000px;}
.ya8{bottom:903.306000px;}
.y1d{bottom:903.894000px;}
.y86{bottom:904.500000px;}
.yec{bottom:919.500000px;}
.y63{bottom:926.100000px;}
.y40{bottom:926.400000px;}
.y1c{bottom:926.700000px;}
.y85{bottom:927.000000px;}
.yeb{bottom:934.500000px;}
.h9{height:39.888000px;}
.h6{height:40.757812px;}
.ha{height:41.396484px;}
.h3{height:42.000000px;}
.h7{height:48.832031px;}
.h8{height:49.675781px;}
.h5{height:49.860000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x2{left:82.381950px;}
.x3{left:97.263750px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x7{left:142.263750px;}
.x8{left:180.526950px;}
.x4{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-6.400000pt;}
.ls36{letter-spacing:-1.664000pt;}
.ls32{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-1.088000pt;}
.lsb{letter-spacing:-1.024000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls26{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls2c{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.152000pt;}
.ls31{letter-spacing:1.216000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.344000pt;}
.ls33{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls30{letter-spacing:1.728000pt;}
.ls1d{letter-spacing:1.856000pt;}
.ls2b{letter-spacing:2.240000pt;}
.ls35{letter-spacing:2.581333pt;}
.ls38{letter-spacing:2.598400pt;}
.ls37{letter-spacing:2.602667pt;}
.ls5{letter-spacing:4.053333pt;}
.ls34{letter-spacing:4.224000pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls3{letter-spacing:62.773333pt;}
.ls2{letter-spacing:174.016000pt;}
.ws2c{word-spacing:-56.512000pt;}
.ws69{word-spacing:-18.560000pt;}
.ws19{word-spacing:-17.984000pt;}
.ws4c{word-spacing:-17.920000pt;}
.ws7e{word-spacing:-15.808000pt;}
.ws10{word-spacing:-14.986667pt;}
.ws8d{word-spacing:-11.989333pt;}
.ws8c{word-spacing:-10.538667pt;}
.ws93{word-spacing:-4.224000pt;}
.ws5{word-spacing:-4.053333pt;}
.ws15{word-spacing:-1.792000pt;}
.ws64{word-spacing:-1.152000pt;}
.ws16{word-spacing:-0.896000pt;}
.ws17{word-spacing:-0.704000pt;}
.ws55{word-spacing:-0.320000pt;}
.ws5a{word-spacing:-0.128000pt;}
.ws9{word-spacing:0.000000pt;}
.ws56{word-spacing:0.064000pt;}
.ws36{word-spacing:0.192000pt;}
.wse{word-spacing:0.320000pt;}
.wsa{word-spacing:0.448000pt;}
.ws58{word-spacing:0.512000pt;}
.ws86{word-spacing:0.640000pt;}
.ws80{word-spacing:0.704000pt;}
.ws3b{word-spacing:0.768000pt;}
.ws88{word-spacing:0.832000pt;}
.ws5b{word-spacing:1.024000pt;}
.ws81{word-spacing:1.216000pt;}
.ws95{word-spacing:1.280000pt;}
.ws38{word-spacing:1.344000pt;}
.ws42{word-spacing:1.408000pt;}
.ws8b{word-spacing:1.472000pt;}
.ws4{word-spacing:1.600000pt;}
.ws53{word-spacing:1.664000pt;}
.ws31{word-spacing:1.728000pt;}
.ws41{word-spacing:1.792000pt;}
.ws2f{word-spacing:1.856000pt;}
.ws1d{word-spacing:1.920000pt;}
.wsb{word-spacing:1.984000pt;}
.ws4e{word-spacing:2.048000pt;}
.ws35{word-spacing:2.112000pt;}
.wsc{word-spacing:2.133333pt;}
.ws29{word-spacing:2.176000pt;}
.ws71{word-spacing:2.240000pt;}
.ws77{word-spacing:2.432000pt;}
.ws23{word-spacing:2.496000pt;}
.ws60{word-spacing:2.560000pt;}
.ws54{word-spacing:2.624000pt;}
.ws94{word-spacing:2.645333pt;}
.ws37{word-spacing:2.688000pt;}
.ws47{word-spacing:2.752000pt;}
.ws49{word-spacing:2.816000pt;}
.ws6d{word-spacing:2.880000pt;}
.ws70{word-spacing:2.944000pt;}
.wsf{word-spacing:2.986667pt;}
.ws11{word-spacing:3.072000pt;}
.ws34{word-spacing:3.136000pt;}
.ws45{word-spacing:3.200000pt;}
.ws48{word-spacing:3.264000pt;}
.ws2{word-spacing:3.306667pt;}
.ws59{word-spacing:3.392000pt;}
.ws44{word-spacing:3.456000pt;}
.ws6c{word-spacing:3.584000pt;}
.ws89{word-spacing:3.648000pt;}
.ws30{word-spacing:3.712000pt;}
.ws1{word-spacing:3.733333pt;}
.ws1e{word-spacing:3.776000pt;}
.ws24{word-spacing:3.840000pt;}
.ws51{word-spacing:3.904000pt;}
.ws18{word-spacing:3.968000pt;}
.ws2b{word-spacing:4.032000pt;}
.ws14{word-spacing:4.096000pt;}
.ws21{word-spacing:4.160000pt;}
.ws7d{word-spacing:4.224000pt;}
.ws5f{word-spacing:4.288000pt;}
.ws6{word-spacing:4.426667pt;}
.ws8{word-spacing:4.480000pt;}
.ws12{word-spacing:4.608000pt;}
.ws20{word-spacing:4.672000pt;}
.ws73{word-spacing:4.800000pt;}
.ws6e{word-spacing:4.864000pt;}
.ws8f{word-spacing:4.928000pt;}
.ws8a{word-spacing:4.992000pt;}
.ws43{word-spacing:5.056000pt;}
.ws2e{word-spacing:5.120000pt;}
.ws85{word-spacing:5.184000pt;}
.ws57{word-spacing:5.248000pt;}
.ws79{word-spacing:5.312000pt;}
.ws84{word-spacing:5.376000pt;}
.ws75{word-spacing:5.504000pt;}
.ws82{word-spacing:5.568000pt;}
.ws7b{word-spacing:5.696000pt;}
.ws1a{word-spacing:5.760000pt;}
.ws5c{word-spacing:5.824000pt;}
.ws5d{word-spacing:5.888000pt;}
.ws7c{word-spacing:5.952000pt;}
.ws1f{word-spacing:6.080000pt;}
.ws25{word-spacing:6.144000pt;}
.ws32{word-spacing:6.208000pt;}
.ws3a{word-spacing:6.272000pt;}
.ws6b{word-spacing:6.400000pt;}
.ws52{word-spacing:6.464000pt;}
.ws78{word-spacing:6.592000pt;}
.ws39{word-spacing:6.656000pt;}
.ws5e{word-spacing:6.720000pt;}
.ws3f{word-spacing:6.784000pt;}
.ws26{word-spacing:6.912000pt;}
.ws87{word-spacing:6.976000pt;}
.ws28{word-spacing:7.040000pt;}
.ws13{word-spacing:7.168000pt;}
.ws2d{word-spacing:7.232000pt;}
.ws63{word-spacing:7.296000pt;}
.ws1c{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws3{word-spacing:7.466667pt;}
.ws6a{word-spacing:7.488000pt;}
.ws4d{word-spacing:7.552000pt;}
.ws3d{word-spacing:7.616000pt;}
.ws8e{word-spacing:7.744000pt;}
.ws76{word-spacing:7.808000pt;}
.ws65{word-spacing:7.872000pt;}
.ws33{word-spacing:8.064000pt;}
.ws7{word-spacing:8.192000pt;}
.ws27{word-spacing:8.320000pt;}
.ws92{word-spacing:8.448000pt;}
.ws46{word-spacing:8.512000pt;}
.ws4a{word-spacing:8.896000pt;}
.ws2a{word-spacing:8.960000pt;}
.ws1b{word-spacing:9.024000pt;}
.ws4f{word-spacing:9.152000pt;}
.ws67{word-spacing:9.280000pt;}
.ws91{word-spacing:9.408000pt;}
.ws40{word-spacing:9.472000pt;}
.ws7f{word-spacing:9.536000pt;}
.ws66{word-spacing:9.984000pt;}
.ws83{word-spacing:10.112000pt;}
.ws4b{word-spacing:10.368000pt;}
.ws74{word-spacing:10.560000pt;}
.ws7a{word-spacing:10.624000pt;}
.ws6f{word-spacing:10.752000pt;}
.ws61{word-spacing:10.880000pt;}
.ws50{word-spacing:11.008000pt;}
.ws22{word-spacing:11.328000pt;}
.ws90{word-spacing:11.712000pt;}
.ws3e{word-spacing:11.776000pt;}
.ws68{word-spacing:11.904000pt;}
.ws72{word-spacing:12.992000pt;}
.ws3c{word-spacing:13.696000pt;}
.ws62{word-spacing:15.552000pt;}
.wsd{word-spacing:177.013333pt;}
._f{margin-left:-835.898667pt;}
._8{margin-left:-173.301333pt;}
._9{margin-left:-135.530667pt;}
._13{margin-left:-17.792000pt;}
._7{margin-left:-7.394133pt;}
._10{margin-left:-6.244267pt;}
._4{margin-left:-4.773333pt;}
._15{margin-left:-3.421867pt;}
._5{margin-left:-2.073600pt;}
._2{margin-left:-1.028267pt;}
._1{width:1.365333pt;}
._6{width:2.790400pt;}
._c{width:4.094933pt;}
._3{width:5.182933pt;}
._14{width:6.364800pt;}
._11{width:8.460800pt;}
._12{width:9.866667pt;}
._d{width:37.060267pt;}
._a{width:111.946667pt;}
._b{width:144.800000pt;}
._e{width:173.280000pt;}
._0{width:179.168000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.ya6{bottom:104.000000pt;}
.y62{bottom:104.965333pt;}
.yc9{bottom:104.970667pt;}
.yea{bottom:105.994667pt;}
.y1b{bottom:108.219467pt;}
.y84{bottom:108.448000pt;}
.y3f{bottom:109.225333pt;}
.ye9{bottom:119.328000pt;}
.ya5{bottom:124.000000pt;}
.y61{bottom:125.493333pt;}
.yc8{bottom:125.498667pt;}
.y3e{bottom:128.953333pt;}
.y83{bottom:129.248000pt;}
.ye8{bottom:132.661333pt;}
.y1a{bottom:137.555200pt;}
.ya4{bottom:144.000000pt;}
.ye7{bottom:145.994667pt;}
.y60{bottom:146.021333pt;}
.yc7{bottom:146.026667pt;}
.y82{bottom:150.048000pt;}
.y3d{bottom:156.245600pt;}
.ye6{bottom:159.328000pt;}
.ya3{bottom:164.000000pt;}
.y5f{bottom:166.549333pt;}
.yc6{bottom:166.554667pt;}
.y81{bottom:170.848000pt;}
.ye5{bottom:172.661333pt;}
.y3c{bottom:173.178933pt;}
.y19{bottom:183.581867pt;}
.ya2{bottom:184.000000pt;}
.y5e{bottom:187.077333pt;}
.yc5{bottom:187.082667pt;}
.y3b{bottom:190.112267pt;}
.y80{bottom:191.648000pt;}
.ye4{bottom:191.658667pt;}
.ya1{bottom:204.000000pt;}
.y3a{bottom:207.045600pt;}
.y5d{bottom:207.605333pt;}
.yc4{bottom:207.610667pt;}
.y7f{bottom:212.448000pt;}
.ya0{bottom:224.000000pt;}
.y5c{bottom:228.133333pt;}
.yc3{bottom:228.138667pt;}
.y18{bottom:229.608533pt;}
.y39{bottom:231.481067pt;}
.ye3{bottom:231.658667pt;}
.y7e{bottom:233.248000pt;}
.y9f{bottom:244.000000pt;}
.ye2{bottom:244.992000pt;}
.y5b{bottom:248.661333pt;}
.yc2{bottom:248.666667pt;}
.y38{bottom:251.753067pt;}
.y7d{bottom:254.048000pt;}
.ye1{bottom:258.325333pt;}
.y9e{bottom:264.000000pt;}
.y5a{bottom:269.189333pt;}
.yc1{bottom:269.194667pt;}
.y17{bottom:269.968533pt;}
.ye0{bottom:271.658667pt;}
.y37{bottom:272.025067pt;}
.y7c{bottom:274.848000pt;}
.y9d{bottom:284.000000pt;}
.ydf{bottom:284.992000pt;}
.y59{bottom:289.717333pt;}
.yc0{bottom:289.722667pt;}
.y36{bottom:292.297067pt;}
.y16{bottom:295.637733pt;}
.yde{bottom:298.325333pt;}
.y7b{bottom:303.200000pt;}
.y9c{bottom:304.000000pt;}
.y58{bottom:310.245333pt;}
.ybf{bottom:310.250667pt;}
.yd8{bottom:310.266667pt;}
.ydd{bottom:311.658667pt;}
.y35{bottom:312.569067pt;}
.y7a{bottom:324.000000pt;}
.ydc{bottom:324.992000pt;}
.y57{bottom:330.773333pt;}
.ybe{bottom:330.778667pt;}
.yd7{bottom:330.794667pt;}
.y15{bottom:331.637733pt;}
.y34{bottom:332.841067pt;}
.ydb{bottom:338.325333pt;}
.y9b{bottom:344.000000pt;}
.y79{bottom:344.800000pt;}
.y56{bottom:351.301333pt;}
.ybd{bottom:351.306667pt;}
.yd6{bottom:351.322667pt;}
.y14{bottom:351.637733pt;}
.yda{bottom:351.658667pt;}
.y33{bottom:353.113067pt;}
.y9a{bottom:364.000000pt;}
.yd9{bottom:364.992000pt;}
.y78{bottom:365.600000pt;}
.y13{bottom:371.637733pt;}
.y55{bottom:371.829333pt;}
.ybc{bottom:371.834667pt;}
.yd5{bottom:371.850667pt;}
.y32{bottom:373.385067pt;}
.yff{bottom:378.330667pt;}
.y99{bottom:384.000000pt;}
.y77{bottom:386.400000pt;}
.y12{bottom:391.637733pt;}
.y54{bottom:392.357333pt;}
.ybb{bottom:392.362667pt;}
.yd4{bottom:392.378667pt;}
.y31{bottom:393.657067pt;}
.yfe{bottom:394.997333pt;}
.y98{bottom:404.000000pt;}
.y76{bottom:407.200000pt;}
.y11{bottom:411.637733pt;}
.yfd{bottom:411.664000pt;}
.y53{bottom:412.885333pt;}
.yba{bottom:412.890667pt;}
.yd3{bottom:412.906667pt;}
.y30{bottom:421.481067pt;}
.y97{bottom:424.000000pt;}
.y75{bottom:428.000000pt;}
.yfc{bottom:428.330667pt;}
.y52{bottom:433.413333pt;}
.yb9{bottom:433.418667pt;}
.yd2{bottom:433.434667pt;}
.y10{bottom:439.195867pt;}
.y2f{bottom:441.753067pt;}
.y96{bottom:444.000000pt;}
.y74{bottom:448.800000pt;}
.y51{bottom:453.941333pt;}
.yb8{bottom:453.946667pt;}
.yd1{bottom:453.962667pt;}
.yf{bottom:455.862533pt;}
.yfb{bottom:461.664000pt;}
.y2e{bottom:462.025067pt;}
.y95{bottom:464.000000pt;}
.y73{bottom:469.600000pt;}
.ye{bottom:472.529200pt;}
.y50{bottom:474.469333pt;}
.yb7{bottom:474.474667pt;}
.yd0{bottom:474.490667pt;}
.yfa{bottom:478.330667pt;}
.y2d{bottom:482.297067pt;}
.y94{bottom:484.000000pt;}
.yd{bottom:489.195867pt;}
.y72{bottom:490.400000pt;}
.y4f{bottom:494.997333pt;}
.yb6{bottom:495.002667pt;}
.ycf{bottom:495.018667pt;}
.y93{bottom:504.000000pt;}
.y2c{bottom:510.120933pt;}
.y71{bottom:511.200000pt;}
.yf9{bottom:511.664000pt;}
.yc{bottom:513.422533pt;}
.y4e{bottom:515.525333pt;}
.yb5{bottom:515.530667pt;}
.yce{bottom:515.546667pt;}
.y92{bottom:524.000000pt;}
.y2b{bottom:527.054267pt;}
.yf8{bottom:528.330667pt;}
.yb{bottom:530.089200pt;}
.y70{bottom:532.000000pt;}
.y4d{bottom:536.053333pt;}
.yb4{bottom:536.058667pt;}
.ycd{bottom:536.074667pt;}
.y2a{bottom:543.987600pt;}
.y91{bottom:544.000000pt;}
.yf7{bottom:544.997333pt;}
.ya{bottom:546.755867pt;}
.y6f{bottom:552.800000pt;}
.y4c{bottom:556.581333pt;}
.yb3{bottom:556.586667pt;}
.ycc{bottom:556.602667pt;}
.yf6{bottom:561.664000pt;}
.y90{bottom:564.000000pt;}
.y29{bottom:568.480933pt;}
.y9{bottom:570.981600pt;}
.y6e{bottom:573.600000pt;}
.y4b{bottom:577.109333pt;}
.yb2{bottom:577.114667pt;}
.ycb{bottom:577.130667pt;}
.yf5{bottom:578.330667pt;}
.y8f{bottom:584.000000pt;}
.y28{bottom:585.414267pt;}
.y8{bottom:590.981600pt;}
.y6d{bottom:594.400000pt;}
.yf4{bottom:594.997333pt;}
.yca{bottom:597.658667pt;}
.y27{bottom:602.347600pt;}
.y8e{bottom:604.000000pt;}
.y7{bottom:610.981600pt;}
.yf3{bottom:611.664000pt;}
.y6c{bottom:615.200000pt;}
.y4a{bottom:618.181333pt;}
.yb1{bottom:618.186667pt;}
.y26{bottom:619.280933pt;}
.ya7{bottom:624.000000pt;}
.yf2{bottom:628.330667pt;}
.y6b{bottom:636.000000pt;}
.y49{bottom:638.709333pt;}
.yb0{bottom:638.714667pt;}
.y25{bottom:643.774267pt;}
.y8d{bottom:644.000000pt;}
.yf1{bottom:644.997333pt;}
.y6{bottom:650.981600pt;}
.y6a{bottom:656.800000pt;}
.y48{bottom:659.237333pt;}
.yaf{bottom:659.242667pt;}
.y24{bottom:660.707600pt;}
.yf0{bottom:661.664000pt;}
.y8c{bottom:664.000000pt;}
.y5{bottom:667.648267pt;}
.y69{bottom:677.600000pt;}
.y23{bottom:677.640933pt;}
.y47{bottom:679.765333pt;}
.yae{bottom:679.770667pt;}
.y8b{bottom:684.000000pt;}
.y68{bottom:698.400000pt;}
.y46{bottom:700.293333pt;}
.yad{bottom:700.298667pt;}
.y22{bottom:702.101333pt;}
.y8a{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.y67{bottom:719.200000pt;}
.y45{bottom:720.821333pt;}
.yac{bottom:720.826667pt;}
.y21{bottom:722.373333pt;}
.y89{bottom:724.000000pt;}
.yef{bottom:737.333333pt;}
.y66{bottom:740.000000pt;}
.y44{bottom:741.349333pt;}
.yab{bottom:741.354667pt;}
.y20{bottom:742.645333pt;}
.y88{bottom:744.000000pt;}
.yee{bottom:750.666667pt;}
.y43{bottom:761.877333pt;}
.yaa{bottom:761.882667pt;}
.y1f{bottom:762.917333pt;}
.y3{bottom:764.000000pt;}
.yed{bottom:777.333333pt;}
.y65{bottom:781.600000pt;}
.y42{bottom:782.405333pt;}
.ya9{bottom:782.410667pt;}
.y1e{bottom:783.189333pt;}
.y87{bottom:784.000000pt;}
.y2{bottom:790.666667pt;}
.y64{bottom:802.400000pt;}
.y41{bottom:802.933333pt;}
.ya8{bottom:802.938667pt;}
.y1d{bottom:803.461333pt;}
.y86{bottom:804.000000pt;}
.yec{bottom:817.333333pt;}
.y63{bottom:823.200000pt;}
.y40{bottom:823.466667pt;}
.y1c{bottom:823.733333pt;}
.y85{bottom:824.000000pt;}
.yeb{bottom:830.666667pt;}
.h9{height:35.456000pt;}
.h6{height:36.229167pt;}
.ha{height:36.796875pt;}
.h3{height:37.333333pt;}
.h7{height:43.406250pt;}
.h8{height:44.156250pt;}
.h5{height:44.320000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x2{left:73.228400pt;}
.x3{left:86.456667pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x7{left:126.456667pt;}
.x8{left:160.468400pt;}
.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; }
  