
    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_6a9c62470778e87de8322014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_f5e1520c075831437dda0609.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_b818f1a15a7e8339e37ab3e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ff72fd33758b354274fb0d48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740000;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_ff72fd33758b354274fb0d48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_2e9639c25686ec03880c52dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_9b4bedf9040b3b23e5eb6384.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_8f9e664640a0f73472bee1d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032000;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_40d8de4d5f4eec600b604fbd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904000;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_84161e8891aa99c22d793e97.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.026000;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_e307241aa0717570db874389.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.693000;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_ebf3ad5f051bb6efbd936f22.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920127;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_86eeeb2ebd0b22c1edc556d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_48e4ff4e1d3eb303db56bbbd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.936000px;}
.ls15{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.080000px;}
.lse{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.224000px;}
.ls18{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.368000px;}
.ls24{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.ls1d{letter-spacing:1.656000px;}
.ls29{letter-spacing:1.728000px;}
.ls25{letter-spacing:1.800000px;}
.ls11{letter-spacing:1.872000px;}
.ls20{letter-spacing:2.160000px;}
.ls27{letter-spacing:2.232000px;}
.ls23{letter-spacing:2.304000px;}
.ls28{letter-spacing:2.376000px;}
.ls1{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.ws7b{word-spacing:-15.300000px;}
.ws81{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.680000px;}
.ws1e{word-spacing:-13.464000px;}
.ws3{word-spacing:-12.888000px;}
.ws2{word-spacing:-12.420000px;}
.ws4f{word-spacing:-3.888000px;}
.ws7{word-spacing:-3.816000px;}
.ws3d{word-spacing:-3.744000px;}
.ws2c{word-spacing:-3.600000px;}
.ws6c{word-spacing:-3.528000px;}
.ws5{word-spacing:-3.456000px;}
.ws6{word-spacing:-3.384000px;}
.ws21{word-spacing:-3.312000px;}
.ws40{word-spacing:-3.240000px;}
.ws27{word-spacing:-3.168000px;}
.ws77{word-spacing:-3.096000px;}
.ws35{word-spacing:-2.952000px;}
.ws56{word-spacing:-2.880000px;}
.ws6d{word-spacing:-2.808000px;}
.wsb{word-spacing:-2.736000px;}
.ws72{word-spacing:-2.592000px;}
.ws48{word-spacing:-2.448000px;}
.ws4e{word-spacing:-2.376000px;}
.ws76{word-spacing:-2.304000px;}
.ws45{word-spacing:-2.232000px;}
.ws85{word-spacing:-2.220000px;}
.ws3b{word-spacing:-2.160000px;}
.ws36{word-spacing:-2.088000px;}
.ws66{word-spacing:-2.016000px;}
.ws10{word-spacing:-1.944000px;}
.ws43{word-spacing:-1.872000px;}
.ws17{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.728000px;}
.ws78{word-spacing:-1.584000px;}
.ws12{word-spacing:-1.512000px;}
.ws24{word-spacing:-1.368000px;}
.ws37{word-spacing:-1.296000px;}
.ws63{word-spacing:-1.152000px;}
.ws5a{word-spacing:-1.080000px;}
.ws7f{word-spacing:-0.936000px;}
.ws6f{word-spacing:-0.864000px;}
.ws44{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.648000px;}
.ws4d{word-spacing:-0.504000px;}
.ws38{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.360000px;}
.ws86{word-spacing:-0.300000px;}
.ws47{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws59{word-spacing:0.072000px;}
.ws51{word-spacing:0.144000px;}
.ws7c{word-spacing:0.216000px;}
.ws1f{word-spacing:0.288000px;}
.ws30{word-spacing:0.360000px;}
.ws4a{word-spacing:0.432000px;}
.ws1a{word-spacing:0.504000px;}
.ws3c{word-spacing:0.576000px;}
.ws2f{word-spacing:0.648000px;}
.ws33{word-spacing:0.720000px;}
.ws6b{word-spacing:0.864000px;}
.wsc{word-spacing:0.936000px;}
.ws22{word-spacing:1.008000px;}
.ws5f{word-spacing:1.080000px;}
.ws6a{word-spacing:1.224000px;}
.ws20{word-spacing:1.296000px;}
.ws58{word-spacing:1.368000px;}
.ws32{word-spacing:1.440000px;}
.ws4c{word-spacing:1.512000px;}
.wsd{word-spacing:1.584000px;}
.ws65{word-spacing:1.656000px;}
.ws49{word-spacing:1.728000px;}
.ws7d{word-spacing:1.800000px;}
.ws74{word-spacing:1.872000px;}
.ws1b{word-spacing:1.944000px;}
.ws70{word-spacing:2.016000px;}
.ws62{word-spacing:2.088000px;}
.ws71{word-spacing:2.232000px;}
.ws9{word-spacing:2.304000px;}
.ws73{word-spacing:2.376000px;}
.ws61{word-spacing:2.448000px;}
.ws26{word-spacing:2.592000px;}
.ws80{word-spacing:2.664000px;}
.ws8{word-spacing:2.736000px;}
.ws1d{word-spacing:2.808000px;}
.ws69{word-spacing:2.880000px;}
.ws2d{word-spacing:2.952000px;}
.ws2e{word-spacing:3.024000px;}
.ws15{word-spacing:3.096000px;}
.ws64{word-spacing:3.168000px;}
.ws68{word-spacing:3.240000px;}
.ws46{word-spacing:3.384000px;}
.ws13{word-spacing:3.456000px;}
.ws6e{word-spacing:3.528000px;}
.ws28{word-spacing:3.744000px;}
.ws5e{word-spacing:3.888000px;}
.ws16{word-spacing:4.032000px;}
.wsf{word-spacing:4.104000px;}
.ws50{word-spacing:4.176000px;}
.ws23{word-spacing:4.248000px;}
.ws5d{word-spacing:4.320000px;}
.ws3f{word-spacing:4.392000px;}
.ws79{word-spacing:4.464000px;}
.wse{word-spacing:4.536000px;}
.ws52{word-spacing:4.680000px;}
.ws5b{word-spacing:4.752000px;}
.ws7e{word-spacing:4.824000px;}
.ws2b{word-spacing:4.896000px;}
.ws39{word-spacing:5.040000px;}
.ws29{word-spacing:5.112000px;}
.ws34{word-spacing:5.184000px;}
.ws19{word-spacing:5.256000px;}
.ws1c{word-spacing:5.328000px;}
.ws82{word-spacing:5.544000px;}
.ws83{word-spacing:5.688000px;}
.ws42{word-spacing:5.760000px;}
.ws5c{word-spacing:5.832000px;}
.ws25{word-spacing:5.904000px;}
.ws54{word-spacing:5.976000px;}
.ws75{word-spacing:6.120000px;}
.ws53{word-spacing:6.192000px;}
.ws3a{word-spacing:6.264000px;}
.ws4b{word-spacing:6.408000px;}
.ws60{word-spacing:6.480000px;}
.ws7a{word-spacing:6.624000px;}
.ws41{word-spacing:6.696000px;}
.ws57{word-spacing:6.768000px;}
.wsa{word-spacing:6.840000px;}
.ws3e{word-spacing:6.912000px;}
.ws2a{word-spacing:7.560000px;}
.ws87{word-spacing:13.680000px;}
.ws84{word-spacing:17.820000px;}
._8{margin-left:-17.760000px;}
._6{margin-left:-13.200000px;}
._b{margin-left:-10.348800px;}
._7{margin-left:-8.880000px;}
._2{margin-left:-7.353600px;}
._a{margin-left:-5.718000px;}
._3{margin-left:-4.284000px;}
._4{margin-left:-3.000000px;}
._1{margin-left:-1.996800px;}
._5{width:1.338000px;}
._9{width:2.688000px;}
._c{width:3.864000px;}
._0{width:5.587200px;}
.fc4{color:transparent;}
.fc3{color:rgb(69,85,101);}
.fc5{color:rgb(5,5,5);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:156.000000px;}
.fs6{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y3d{bottom:65.866950px;}
.ybe{bottom:80.806500px;}
.ye4{bottom:81.150450px;}
.y67{bottom:82.662150px;}
.y49{bottom:82.874850px;}
.ya3{bottom:88.142550px;}
.y8d{bottom:89.654400px;}
.y3c{bottom:89.866950px;}
.yd1{bottom:92.394450px;}
.y25{bottom:92.710650px;}
.y86{bottom:95.134650px;}
.y14{bottom:99.795000px;}
.ybd{bottom:104.806500px;}
.ye3{bottom:105.150450px;}
.y24{bottom:106.210650px;}
.y66{bottom:106.662150px;}
.y48{bottom:106.874850px;}
.ya2{bottom:112.142550px;}
.y8c{bottom:113.654400px;}
.y18{bottom:113.670000px;}
.yd0{bottom:116.394450px;}
.y85{bottom:119.134650px;}
.y23{bottom:119.710650px;}
.ybc{bottom:128.806500px;}
.ye1{bottom:128.866950px;}
.ye2{bottom:129.150450px;}
.y65{bottom:130.662150px;}
.y3b{bottom:130.874700px;}
.y47{bottom:130.874850px;}
.y22{bottom:133.210650px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y8b{bottom:137.654400px;}
.ycf{bottom:140.394450px;}
.y84{bottom:143.134650px;}
.y21{bottom:146.710650px;}
.ybb{bottom:152.806500px;}
.ya1{bottom:153.150450px;}
.y64{bottom:154.662150px;}
.y3a{bottom:154.874700px;}
.y46{bottom:154.874850px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.yf1{bottom:157.402350px;}
.y16{bottom:157.830000px;}
.y20{bottom:160.210650px;}
.yed{bottom:161.654400px;}
.yce{bottom:164.394450px;}
.ye0{bottom:165.622800px;}
.y83{bottom:167.134650px;}
.y1f{bottom:173.710650px;}
.ya0{bottom:177.150450px;}
.y63{bottom:178.662150px;}
.y39{bottom:178.874700px;}
.y45{bottom:178.874850px;}
.yec{bottom:185.654400px;}
.ycd{bottom:188.394450px;}
.ydf{bottom:189.622800px;}
.y82{bottom:191.134650px;}
.y9f{bottom:201.150450px;}
.y62{bottom:202.662150px;}
.y38{bottom:202.874700px;}
.y44{bottom:202.874850px;}
.yeb{bottom:209.654400px;}
.ycc{bottom:212.394450px;}
.yde{bottom:213.622800px;}
.y81{bottom:215.134650px;}
.yf0{bottom:219.670050px;}
.y9e{bottom:225.150450px;}
.yba{bottom:226.318350px;}
.y61{bottom:226.662150px;}
.y37{bottom:226.874850px;}
.yea{bottom:233.654400px;}
.ycb{bottom:236.394450px;}
.ydd{bottom:237.622800px;}
.y80{bottom:239.134650px;}
.yef{bottom:243.670050px;}
.y9d{bottom:249.150450px;}
.yb9{bottom:250.318350px;}
.y60{bottom:250.662150px;}
.y36{bottom:250.874850px;}
.yca{bottom:260.394450px;}
.ydc{bottom:261.622800px;}
.y7f{bottom:263.134650px;}
.yee{bottom:267.670050px;}
.y9c{bottom:273.150450px;}
.yb8{bottom:274.318350px;}
.y5f{bottom:274.662150px;}
.y35{bottom:274.874850px;}
.ye9{bottom:284.394450px;}
.ydb{bottom:285.622800px;}
.y7e{bottom:287.134650px;}
.y8a{bottom:291.670050px;}
.y43{bottom:291.882750px;}
.yf7{bottom:294.882600px;}
.y9b{bottom:297.150450px;}
.yb7{bottom:298.318350px;}
.y5e{bottom:298.662150px;}
.y34{bottom:298.874850px;}
.yc9{bottom:301.402350px;}
.ye8{bottom:308.394450px;}
.yf6{bottom:312.882600px;}
.y89{bottom:315.670050px;}
.y42{bottom:315.882750px;}
.y9a{bottom:321.150450px;}
.yb6{bottom:322.318350px;}
.y5d{bottom:322.662150px;}
.y33{bottom:322.874850px;}
.yc8{bottom:325.402350px;}
.y7d{bottom:328.142550px;}
.yda{bottom:330.882600px;}
.ye7{bottom:332.394450px;}
.y88{bottom:339.670050px;}
.y41{bottom:339.882750px;}
.ya{bottom:344.680500px;}
.y99{bottom:345.150450px;}
.yb5{bottom:346.318350px;}
.y5c{bottom:346.662150px;}
.y32{bottom:346.874850px;}
.yf5{bottom:348.882600px;}
.yc7{bottom:349.402350px;}
.y7c{bottom:352.142550px;}
.ye6{bottom:356.394450px;}
.y87{bottom:363.670050px;}
.y40{bottom:363.882750px;}
.y98{bottom:369.150450px;}
.yb4{bottom:370.318350px;}
.y5b{bottom:370.662150px;}
.y31{bottom:370.874850px;}
.yf4{bottom:371.134650px;}
.yc6{bottom:373.402350px;}
.y7b{bottom:376.142550px;}
.yd{bottom:386.490000px;}
.y75{bottom:387.670050px;}
.y3f{bottom:387.882750px;}
.yf3{bottom:389.134650px;}
.y97{bottom:393.150450px;}
.yb3{bottom:394.318350px;}
.y5a{bottom:394.662150px;}
.y30{bottom:394.874850px;}
.y9{bottom:395.689500px;}
.yc5{bottom:397.402350px;}
.y7a{bottom:400.142550px;}
.y74{bottom:411.670050px;}
.y3e{bottom:411.882750px;}
.y96{bottom:417.150450px;}
.yb2{bottom:418.318350px;}
.y59{bottom:418.662150px;}
.yc4{bottom:421.402350px;}
.y79{bottom:424.142550px;}
.yd9{bottom:425.654250px;}
.yf2{bottom:428.394450px;}
.ye5{bottom:429.906300px;}
.yb{bottom:434.850000px;}
.y73{bottom:435.670050px;}
.y2f{bottom:435.882750px;}
.y95{bottom:441.150450px;}
.y58{bottom:442.662300px;}
.yc3{bottom:445.402350px;}
.y8{bottom:446.698500px;}
.y78{bottom:448.142550px;}
.yd8{bottom:449.654250px;}
.yb1{bottom:459.326250px;}
.y72{bottom:459.670050px;}
.y2e{bottom:459.882750px;}
.y94{bottom:465.150450px;}
.y57{bottom:466.662300px;}
.yc2{bottom:469.402350px;}
.y77{bottom:472.142550px;}
.yd7{bottom:473.654250px;}
.yb0{bottom:483.326250px;}
.y71{bottom:483.670050px;}
.y2d{bottom:483.882750px;}
.y11{bottom:488.055000px;}
.y93{bottom:489.150450px;}
.y56{bottom:490.662300px;}
.yc1{bottom:493.402350px;}
.yd6{bottom:497.654250px;}
.y7{bottom:497.707500px;}
.yaf{bottom:507.326250px;}
.y70{bottom:507.670050px;}
.y2c{bottom:507.882750px;}
.y55{bottom:514.662300px;}
.y76{bottom:517.402350px;}
.yd5{bottom:521.654250px;}
.y92{bottom:530.158200px;}
.yae{bottom:531.326250px;}
.y6f{bottom:531.670050px;}
.y2b{bottom:531.882750px;}
.y12{bottom:538.230000px;}
.y54{bottom:538.662300px;}
.yc0{bottom:541.402350px;}
.yd4{bottom:545.654250px;}
.y6{bottom:548.716500px;}
.y91{bottom:554.158200px;}
.yad{bottom:555.326250px;}
.y6e{bottom:555.670050px;}
.y2a{bottom:555.882750px;}
.y53{bottom:562.662300px;}
.yd3{bottom:569.654250px;}
.y90{bottom:578.158200px;}
.yac{bottom:579.326250px;}
.y6d{bottom:579.670050px;}
.y29{bottom:579.882750px;}
.y52{bottom:586.662300px;}
.y19{bottom:589.605000px;}
.yd2{bottom:593.654250px;}
.y5{bottom:599.725500px;}
.y8f{bottom:602.158200px;}
.yab{bottom:603.326250px;}
.y6c{bottom:603.670050px;}
.y1e{bottom:604.428750px;}
.y51{bottom:610.662300px;}
.ybf{bottom:614.914200px;}
.y1d{bottom:624.228900px;}
.y8e{bottom:626.158200px;}
.yaa{bottom:627.326250px;}
.y6b{bottom:627.670050px;}
.ye{bottom:631.920000px;}
.y50{bottom:634.662150px;}
.ya9{bottom:651.326250px;}
.y6a{bottom:651.670050px;}
.y26{bottom:658.636200px;}
.y4f{bottom:658.662150px;}
.y1c{bottom:672.881100px;}
.ya8{bottom:675.326250px;}
.y69{bottom:675.670050px;}
.y4e{bottom:682.662150px;}
.ya7{bottom:699.326250px;}
.y68{bottom:699.670050px;}
.y28{bottom:713.940000px;}
.ya6{bottom:723.326250px;}
.y4d{bottom:723.670050px;}
.y1b{bottom:747.054450px;}
.ya5{bottom:747.326250px;}
.y4c{bottom:747.670050px;}
.y27{bottom:763.440000px;}
.y1a{bottom:768.654450px;}
.y4b{bottom:771.670050px;}
.y4{bottom:778.225500px;}
.ya4{bottom:792.586050px;}
.y4a{bottom:795.670050px;}
.y13{bottom:815.670000px;}
.y3{bottom:905.716500px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h4{height:33.000000px;}
.h15{height:41.689453px;}
.he{height:42.600000px;}
.hd{height:45.858398px;}
.hc{height:50.400000px;}
.h13{height:54.576000px;}
.h12{height:55.008000px;}
.h14{height:57.408000px;}
.h3{height:58.406250px;}
.hb{height:63.632812px;}
.hf{height:64.176000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h11{height:113.568000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h10{height:174.720000px;}
.h9{height:892.914000px;}
.ha{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:1262.835000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x17{left:72.283500px;}
.x1f{left:97.795200px;}
.x16{left:109.034100px;}
.x26{left:114.803100px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x15{left:300.185550px;}
.x18{left:597.401550px;}
.x23{left:622.913400px;}
.x14{left:666.795000px;}
.x1e{left:679.666800px;}
.x21{left:718.311150px;}
.x19{left:723.954450px;}
.x1c{left:725.228700px;}
.x1b{left:751.742550px;}
.x22{left:756.850500px;}
.x24{left:797.269650px;}
.x1a{left:799.015800px;}
.x25{left:801.711450px;}
.x1d{left:820.690500px;}
.x20{left:832.322850px;}
.x10{left:1116.423150px;}
.xd{left:1118.373000px;}
.xe{left:1120.240500px;}
.x13{left:1124.755350px;}
.xb{left:1126.112250px;}
.xa{left:1129.168200px;}
.xf{left:1132.135200px;}
.x12{left:1136.687550px;}
.xc{left:1142.518200px;}
.x11{left:1146.437550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.088000pt;}
.ls18{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.216000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:1.472000pt;}
.ls29{letter-spacing:1.536000pt;}
.ls25{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.664000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls27{letter-spacing:1.984000pt;}
.ls23{letter-spacing:2.048000pt;}
.ls28{letter-spacing:2.112000pt;}
.ls1{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.240000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws7b{word-spacing:-13.600000pt;}
.ws81{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.160000pt;}
.ws1e{word-spacing:-11.968000pt;}
.ws3{word-spacing:-11.456000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4f{word-spacing:-3.456000pt;}
.ws7{word-spacing:-3.392000pt;}
.ws3d{word-spacing:-3.328000pt;}
.ws2c{word-spacing:-3.200000pt;}
.ws6c{word-spacing:-3.136000pt;}
.ws5{word-spacing:-3.072000pt;}
.ws6{word-spacing:-3.008000pt;}
.ws21{word-spacing:-2.944000pt;}
.ws40{word-spacing:-2.880000pt;}
.ws27{word-spacing:-2.816000pt;}
.ws77{word-spacing:-2.752000pt;}
.ws35{word-spacing:-2.624000pt;}
.ws56{word-spacing:-2.560000pt;}
.ws6d{word-spacing:-2.496000pt;}
.wsb{word-spacing:-2.432000pt;}
.ws72{word-spacing:-2.304000pt;}
.ws48{word-spacing:-2.176000pt;}
.ws4e{word-spacing:-2.112000pt;}
.ws76{word-spacing:-2.048000pt;}
.ws45{word-spacing:-1.984000pt;}
.ws85{word-spacing:-1.973333pt;}
.ws3b{word-spacing:-1.920000pt;}
.ws36{word-spacing:-1.856000pt;}
.ws66{word-spacing:-1.792000pt;}
.ws10{word-spacing:-1.728000pt;}
.ws43{word-spacing:-1.664000pt;}
.ws17{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.536000pt;}
.ws78{word-spacing:-1.408000pt;}
.ws12{word-spacing:-1.344000pt;}
.ws24{word-spacing:-1.216000pt;}
.ws37{word-spacing:-1.152000pt;}
.ws63{word-spacing:-1.024000pt;}
.ws5a{word-spacing:-0.960000pt;}
.ws7f{word-spacing:-0.832000pt;}
.ws6f{word-spacing:-0.768000pt;}
.ws44{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.576000pt;}
.ws4d{word-spacing:-0.448000pt;}
.ws38{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.320000pt;}
.ws86{word-spacing:-0.266667pt;}
.ws47{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws59{word-spacing:0.064000pt;}
.ws51{word-spacing:0.128000pt;}
.ws7c{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws30{word-spacing:0.320000pt;}
.ws4a{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.448000pt;}
.ws3c{word-spacing:0.512000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws33{word-spacing:0.640000pt;}
.ws6b{word-spacing:0.768000pt;}
.wsc{word-spacing:0.832000pt;}
.ws22{word-spacing:0.896000pt;}
.ws5f{word-spacing:0.960000pt;}
.ws6a{word-spacing:1.088000pt;}
.ws20{word-spacing:1.152000pt;}
.ws58{word-spacing:1.216000pt;}
.ws32{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.344000pt;}
.wsd{word-spacing:1.408000pt;}
.ws65{word-spacing:1.472000pt;}
.ws49{word-spacing:1.536000pt;}
.ws7d{word-spacing:1.600000pt;}
.ws74{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.728000pt;}
.ws70{word-spacing:1.792000pt;}
.ws62{word-spacing:1.856000pt;}
.ws71{word-spacing:1.984000pt;}
.ws9{word-spacing:2.048000pt;}
.ws73{word-spacing:2.112000pt;}
.ws61{word-spacing:2.176000pt;}
.ws26{word-spacing:2.304000pt;}
.ws80{word-spacing:2.368000pt;}
.ws8{word-spacing:2.432000pt;}
.ws1d{word-spacing:2.496000pt;}
.ws69{word-spacing:2.560000pt;}
.ws2d{word-spacing:2.624000pt;}
.ws2e{word-spacing:2.688000pt;}
.ws15{word-spacing:2.752000pt;}
.ws64{word-spacing:2.816000pt;}
.ws68{word-spacing:2.880000pt;}
.ws46{word-spacing:3.008000pt;}
.ws13{word-spacing:3.072000pt;}
.ws6e{word-spacing:3.136000pt;}
.ws28{word-spacing:3.328000pt;}
.ws5e{word-spacing:3.456000pt;}
.ws16{word-spacing:3.584000pt;}
.wsf{word-spacing:3.648000pt;}
.ws50{word-spacing:3.712000pt;}
.ws23{word-spacing:3.776000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws3f{word-spacing:3.904000pt;}
.ws79{word-spacing:3.968000pt;}
.wse{word-spacing:4.032000pt;}
.ws52{word-spacing:4.160000pt;}
.ws5b{word-spacing:4.224000pt;}
.ws7e{word-spacing:4.288000pt;}
.ws2b{word-spacing:4.352000pt;}
.ws39{word-spacing:4.480000pt;}
.ws29{word-spacing:4.544000pt;}
.ws34{word-spacing:4.608000pt;}
.ws19{word-spacing:4.672000pt;}
.ws1c{word-spacing:4.736000pt;}
.ws82{word-spacing:4.928000pt;}
.ws83{word-spacing:5.056000pt;}
.ws42{word-spacing:5.120000pt;}
.ws5c{word-spacing:5.184000pt;}
.ws25{word-spacing:5.248000pt;}
.ws54{word-spacing:5.312000pt;}
.ws75{word-spacing:5.440000pt;}
.ws53{word-spacing:5.504000pt;}
.ws3a{word-spacing:5.568000pt;}
.ws4b{word-spacing:5.696000pt;}
.ws60{word-spacing:5.760000pt;}
.ws7a{word-spacing:5.888000pt;}
.ws41{word-spacing:5.952000pt;}
.ws57{word-spacing:6.016000pt;}
.wsa{word-spacing:6.080000pt;}
.ws3e{word-spacing:6.144000pt;}
.ws2a{word-spacing:6.720000pt;}
.ws87{word-spacing:12.160000pt;}
.ws84{word-spacing:15.840000pt;}
._8{margin-left:-15.786667pt;}
._6{margin-left:-11.733333pt;}
._b{margin-left:-9.198933pt;}
._7{margin-left:-7.893333pt;}
._2{margin-left:-6.536533pt;}
._a{margin-left:-5.082667pt;}
._3{margin-left:-3.808000pt;}
._4{margin-left:-2.666667pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.189333pt;}
._9{width:2.389333pt;}
._c{width:3.434667pt;}
._0{width:4.966400pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:138.666667pt;}
.fs6{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y3d{bottom:58.548400pt;}
.ybe{bottom:71.828000pt;}
.ye4{bottom:72.133733pt;}
.y67{bottom:73.477467pt;}
.y49{bottom:73.666533pt;}
.ya3{bottom:78.348933pt;}
.y8d{bottom:79.692800pt;}
.y3c{bottom:79.881733pt;}
.yd1{bottom:82.128400pt;}
.y25{bottom:82.409467pt;}
.y86{bottom:84.564133pt;}
.y14{bottom:88.706667pt;}
.ybd{bottom:93.161333pt;}
.ye3{bottom:93.467067pt;}
.y24{bottom:94.409467pt;}
.y66{bottom:94.810800pt;}
.y48{bottom:94.999867pt;}
.ya2{bottom:99.682267pt;}
.y8c{bottom:101.026133pt;}
.y18{bottom:101.040000pt;}
.yd0{bottom:103.461733pt;}
.y85{bottom:105.897467pt;}
.y23{bottom:106.409467pt;}
.ybc{bottom:114.494667pt;}
.ye1{bottom:114.548400pt;}
.ye2{bottom:114.800400pt;}
.y65{bottom:116.144133pt;}
.y3b{bottom:116.333067pt;}
.y47{bottom:116.333200pt;}
.y22{bottom:118.409467pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y8b{bottom:122.359467pt;}
.ycf{bottom:124.795067pt;}
.y84{bottom:127.230800pt;}
.y21{bottom:130.409467pt;}
.ybb{bottom:135.828000pt;}
.ya1{bottom:136.133733pt;}
.y64{bottom:137.477467pt;}
.y3a{bottom:137.666400pt;}
.y46{bottom:137.666533pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.yf1{bottom:139.913200pt;}
.y16{bottom:140.293333pt;}
.y20{bottom:142.409467pt;}
.yed{bottom:143.692800pt;}
.yce{bottom:146.128400pt;}
.ye0{bottom:147.220267pt;}
.y83{bottom:148.564133pt;}
.y1f{bottom:154.409467pt;}
.ya0{bottom:157.467067pt;}
.y63{bottom:158.810800pt;}
.y39{bottom:158.999733pt;}
.y45{bottom:158.999867pt;}
.yec{bottom:165.026133pt;}
.ycd{bottom:167.461733pt;}
.ydf{bottom:168.553600pt;}
.y82{bottom:169.897467pt;}
.y9f{bottom:178.800400pt;}
.y62{bottom:180.144133pt;}
.y38{bottom:180.333067pt;}
.y44{bottom:180.333200pt;}
.yeb{bottom:186.359467pt;}
.ycc{bottom:188.795067pt;}
.yde{bottom:189.886933pt;}
.y81{bottom:191.230800pt;}
.yf0{bottom:195.262267pt;}
.y9e{bottom:200.133733pt;}
.yba{bottom:201.171867pt;}
.y61{bottom:201.477467pt;}
.y37{bottom:201.666533pt;}
.yea{bottom:207.692800pt;}
.ycb{bottom:210.128400pt;}
.ydd{bottom:211.220267pt;}
.y80{bottom:212.564133pt;}
.yef{bottom:216.595600pt;}
.y9d{bottom:221.467067pt;}
.yb9{bottom:222.505200pt;}
.y60{bottom:222.810800pt;}
.y36{bottom:222.999867pt;}
.yca{bottom:231.461733pt;}
.ydc{bottom:232.553600pt;}
.y7f{bottom:233.897467pt;}
.yee{bottom:237.928933pt;}
.y9c{bottom:242.800400pt;}
.yb8{bottom:243.838533pt;}
.y5f{bottom:244.144133pt;}
.y35{bottom:244.333200pt;}
.ye9{bottom:252.795067pt;}
.ydb{bottom:253.886933pt;}
.y7e{bottom:255.230800pt;}
.y8a{bottom:259.262267pt;}
.y43{bottom:259.451333pt;}
.yf7{bottom:262.117867pt;}
.y9b{bottom:264.133733pt;}
.yb7{bottom:265.171867pt;}
.y5e{bottom:265.477467pt;}
.y34{bottom:265.666533pt;}
.yc9{bottom:267.913200pt;}
.ye8{bottom:274.128400pt;}
.yf6{bottom:278.117867pt;}
.y89{bottom:280.595600pt;}
.y42{bottom:280.784667pt;}
.y9a{bottom:285.467067pt;}
.yb6{bottom:286.505200pt;}
.y5d{bottom:286.810800pt;}
.y33{bottom:286.999867pt;}
.yc8{bottom:289.246533pt;}
.y7d{bottom:291.682267pt;}
.yda{bottom:294.117867pt;}
.ye7{bottom:295.461733pt;}
.y88{bottom:301.928933pt;}
.y41{bottom:302.118000pt;}
.ya{bottom:306.382667pt;}
.y99{bottom:306.800400pt;}
.yb5{bottom:307.838533pt;}
.y5c{bottom:308.144133pt;}
.y32{bottom:308.333200pt;}
.yf5{bottom:310.117867pt;}
.yc7{bottom:310.579867pt;}
.y7c{bottom:313.015600pt;}
.ye6{bottom:316.795067pt;}
.y87{bottom:323.262267pt;}
.y40{bottom:323.451333pt;}
.y98{bottom:328.133733pt;}
.yb4{bottom:329.171867pt;}
.y5b{bottom:329.477467pt;}
.y31{bottom:329.666533pt;}
.yf4{bottom:329.897467pt;}
.yc6{bottom:331.913200pt;}
.y7b{bottom:334.348933pt;}
.yd{bottom:343.546667pt;}
.y75{bottom:344.595600pt;}
.y3f{bottom:344.784667pt;}
.yf3{bottom:345.897467pt;}
.y97{bottom:349.467067pt;}
.yb3{bottom:350.505200pt;}
.y5a{bottom:350.810800pt;}
.y30{bottom:350.999867pt;}
.y9{bottom:351.724000pt;}
.yc5{bottom:353.246533pt;}
.y7a{bottom:355.682267pt;}
.y74{bottom:365.928933pt;}
.y3e{bottom:366.118000pt;}
.y96{bottom:370.800400pt;}
.yb2{bottom:371.838533pt;}
.y59{bottom:372.144133pt;}
.yc4{bottom:374.579867pt;}
.y79{bottom:377.015600pt;}
.yd9{bottom:378.359333pt;}
.yf2{bottom:380.795067pt;}
.ye5{bottom:382.138933pt;}
.yb{bottom:386.533333pt;}
.y73{bottom:387.262267pt;}
.y2f{bottom:387.451333pt;}
.y95{bottom:392.133733pt;}
.y58{bottom:393.477600pt;}
.yc3{bottom:395.913200pt;}
.y8{bottom:397.065333pt;}
.y78{bottom:398.348933pt;}
.yd8{bottom:399.692667pt;}
.yb1{bottom:408.290000pt;}
.y72{bottom:408.595600pt;}
.y2e{bottom:408.784667pt;}
.y94{bottom:413.467067pt;}
.y57{bottom:414.810933pt;}
.yc2{bottom:417.246533pt;}
.y77{bottom:419.682267pt;}
.yd7{bottom:421.026000pt;}
.yb0{bottom:429.623333pt;}
.y71{bottom:429.928933pt;}
.y2d{bottom:430.118000pt;}
.y11{bottom:433.826667pt;}
.y93{bottom:434.800400pt;}
.y56{bottom:436.144267pt;}
.yc1{bottom:438.579867pt;}
.yd6{bottom:442.359333pt;}
.y7{bottom:442.406667pt;}
.yaf{bottom:450.956667pt;}
.y70{bottom:451.262267pt;}
.y2c{bottom:451.451333pt;}
.y55{bottom:457.477600pt;}
.y76{bottom:459.913200pt;}
.yd5{bottom:463.692667pt;}
.y92{bottom:471.251733pt;}
.yae{bottom:472.290000pt;}
.y6f{bottom:472.595600pt;}
.y2b{bottom:472.784667pt;}
.y12{bottom:478.426667pt;}
.y54{bottom:478.810933pt;}
.yc0{bottom:481.246533pt;}
.yd4{bottom:485.026000pt;}
.y6{bottom:487.748000pt;}
.y91{bottom:492.585067pt;}
.yad{bottom:493.623333pt;}
.y6e{bottom:493.928933pt;}
.y2a{bottom:494.118000pt;}
.y53{bottom:500.144267pt;}
.yd3{bottom:506.359333pt;}
.y90{bottom:513.918400pt;}
.yac{bottom:514.956667pt;}
.y6d{bottom:515.262267pt;}
.y29{bottom:515.451333pt;}
.y52{bottom:521.477600pt;}
.y19{bottom:524.093333pt;}
.yd2{bottom:527.692667pt;}
.y5{bottom:533.089333pt;}
.y8f{bottom:535.251733pt;}
.yab{bottom:536.290000pt;}
.y6c{bottom:536.595600pt;}
.y1e{bottom:537.270000pt;}
.y51{bottom:542.810933pt;}
.ybf{bottom:546.590400pt;}
.y1d{bottom:554.870133pt;}
.y8e{bottom:556.585067pt;}
.yaa{bottom:557.623333pt;}
.y6b{bottom:557.928933pt;}
.ye{bottom:561.706667pt;}
.y50{bottom:564.144133pt;}
.ya9{bottom:578.956667pt;}
.y6a{bottom:579.262267pt;}
.y26{bottom:585.454400pt;}
.y4f{bottom:585.477467pt;}
.y1c{bottom:598.116533pt;}
.ya8{bottom:600.290000pt;}
.y69{bottom:600.595600pt;}
.y4e{bottom:606.810800pt;}
.ya7{bottom:621.623333pt;}
.y68{bottom:621.928933pt;}
.y28{bottom:634.613333pt;}
.ya6{bottom:642.956667pt;}
.y4d{bottom:643.262267pt;}
.y1b{bottom:664.048400pt;}
.ya5{bottom:664.290000pt;}
.y4c{bottom:664.595600pt;}
.y27{bottom:678.613333pt;}
.y1a{bottom:683.248400pt;}
.y4b{bottom:685.928933pt;}
.y4{bottom:691.756000pt;}
.ya4{bottom:704.520933pt;}
.y4a{bottom:707.262267pt;}
.y13{bottom:725.040000pt;}
.y3{bottom:805.081333pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h4{height:29.333333pt;}
.h15{height:37.057292pt;}
.he{height:37.866667pt;}
.hd{height:40.763021pt;}
.hc{height:44.800000pt;}
.h13{height:48.512000pt;}
.h12{height:48.896000pt;}
.h14{height:51.029333pt;}
.h3{height:51.916667pt;}
.hb{height:56.562500pt;}
.hf{height:57.045333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h11{height:100.949333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h10{height:155.306667pt;}
.h9{height:793.701333pt;}
.ha{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:1122.520000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x17{left:64.252000pt;}
.x1f{left:86.929067pt;}
.x16{left:96.919200pt;}
.x26{left:102.047200pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x15{left:266.831600pt;}
.x18{left:531.023600pt;}
.x23{left:553.700800pt;}
.x14{left:592.706667pt;}
.x1e{left:604.148267pt;}
.x21{left:638.498800pt;}
.x19{left:643.515067pt;}
.x1c{left:644.647733pt;}
.x1b{left:668.215600pt;}
.x22{left:672.756000pt;}
.x24{left:708.684133pt;}
.x1a{left:710.236267pt;}
.x25{left:712.632400pt;}
.x1d{left:729.502667pt;}
.x20{left:739.842533pt;}
.x10{left:992.376133pt;}
.xd{left:994.109333pt;}
.xe{left:995.769333pt;}
.x13{left:999.782533pt;}
.xb{left:1000.988667pt;}
.xa{left:1003.705067pt;}
.xf{left:1006.342400pt;}
.x12{left:1010.388933pt;}
.xc{left:1015.571733pt;}
.x11{left:1019.055600pt;}
}




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