
    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_4831e6c61e1d9fca2ab839c3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f16649351d0fb15d72563d7e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_de59e4621c2b9dae29a4aa5e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_8e2ac3f39e289d6ef9ed6b8b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.955566;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_cc3d2c170b3f4dcf5034dba9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.961426;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_cd16902ff634286be0d0cd7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.961426;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_039cbd10128eb03e03ecbb8c.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7e418dac0af25cd8eaa48ce6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_e6b2ea00023b8603624f6c35.woff')format("woff");}.ff9{font-family:ff9;line-height:0.859375;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_f3337977c188a605717b21c4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_bb212b19241b19ea91736102.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_39ea91a656289e9e28b30208.woff')format("woff");}.ffc{font-family:ffc;line-height:0.955566;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_8c80abf11e6cbe6bea6f89ad.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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_a0de6bc28c06f61cc078d4ef.woff')format("woff");}.ffe{font-family:ffe;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_82eb2fdada246fd53519016f.woff')format("woff");}.fff{font-family:fff;line-height:1.083008;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);}
.v4{vertical-align:-34.128000px;}
.v2{vertical-align:-28.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.v3{vertical-align:59.184000px;}
.ls34{letter-spacing:-4.752000px;}
.ls1c{letter-spacing:-0.451800px;}
.ls2c{letter-spacing:-0.385200px;}
.lsd{letter-spacing:-0.341400px;}
.ls1b{letter-spacing:-0.331800px;}
.lsa{letter-spacing:-0.328800px;}
.ls2a{letter-spacing:-0.324000px;}
.ls3{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.284400px;}
.ls5{letter-spacing:-0.208200px;}
.ls4{letter-spacing:-0.204600px;}
.ls33{letter-spacing:-0.202800px;}
.ls2d{letter-spacing:-0.186600px;}
.ls2b{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.122400px;}
.ls26{letter-spacing:-0.091200px;}
.lse{letter-spacing:-0.037440px;}
.ls12{letter-spacing:-0.028080px;}
.ls1a{letter-spacing:-0.018720px;}
.ls25{letter-spacing:-0.012240px;}
.lsf{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.031968px;}
.ls8{letter-spacing:0.103968px;}
.ls0{letter-spacing:0.204480px;}
.ls27{letter-spacing:0.208200px;}
.ls31{letter-spacing:0.252000px;}
.ls2f{letter-spacing:0.280080px;}
.lsc{letter-spacing:0.327600px;}
.ls10{letter-spacing:0.341400px;}
.ls15{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576432px;}
.ls21{letter-spacing:0.684000px;}
.lsb{letter-spacing:1.080000px;}
.ls18{letter-spacing:22.500000px;}
.ls17{letter-spacing:23.220000px;}
.ls1{letter-spacing:26.435520px;}
.ls24{letter-spacing:53.616000px;}
.ls20{letter-spacing:53.640000px;}
.ls1f{letter-spacing:53.712000px;}
.ls23{letter-spacing:54.288000px;}
.ls22{letter-spacing:54.360000px;}
.ls1e{letter-spacing:54.504000px;}
.ls16{letter-spacing:56.160000px;}
.ls30{letter-spacing:93.276000px;}
.ls28{letter-spacing:97.509600px;}
.ls29{letter-spacing:97.560000px;}
.ls7{letter-spacing:101.844000px;}
.ls32{letter-spacing:119.865600px;}
.ls2e{letter-spacing:119.916000px;}
.ls13{letter-spacing:124.200000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-108.000000px;}
.ws9{word-spacing:-48.240000px;}
.ws6{word-spacing:-46.637280px;}
.ws1e{word-spacing:-33.466752px;}
.ws1d{word-spacing:-33.426720px;}
.ws18{word-spacing:-30.024000px;}
.wsa{word-spacing:-29.891520px;}
.ws1c{word-spacing:-26.661312px;}
.wsd{word-spacing:-26.621280px;}
.ws16{word-spacing:-26.277696px;}
.ws15{word-spacing:-26.238240px;}
.ws17{word-spacing:-26.186496px;}
.ws8{word-spacing:-23.458752px;}
.ws7{word-spacing:-23.418720px;}
.wse{word-spacing:-23.390640px;}
.ws1a{word-spacing:-23.081760px;}
.ws1{word-spacing:-22.217760px;}
.ws4{word-spacing:-20.448000px;}
.ws5{word-spacing:-20.056032px;}
.ws0{word-spacing:-20.016000px;}
.ws1f{word-spacing:-15.264000px;}
.ws12{word-spacing:-2.610720px;}
.ws19{word-spacing:-2.234400px;}
.ws2{word-spacing:-0.839040px;}
.wsb{word-spacing:-0.784800px;}
.wsc{word-spacing:-0.558720px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:1.620000px;}
.ws11{word-spacing:848.478240px;}
.ws10{word-spacing:1114.025568px;}
.ws13{word-spacing:1587.300000px;}
.ws1b{word-spacing:3311.685984px;}
._10{margin-left:-2306.880000px;}
._3{margin-left:-13.707360px;}
._1{margin-left:-11.062080px;}
._c{margin-left:-9.260352px;}
._4{margin-left:-7.628880px;}
._9{margin-left:-6.570720px;}
._6{margin-left:-5.225472px;}
._2{margin-left:-3.126240px;}
._0{margin-left:-1.513008px;}
._5{width:1.320480px;}
._7{width:2.401440px;}
._8{width:4.386528px;}
._a{width:20.871120px;}
._b{width:21.995760px;}
._e{width:29.051088px;}
._f{width:31.441008px;}
._d{width:60.193104px;}
.fc7{color:rgb(192,0,0);}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,32,96);}
.fc5{color:rgb(136,136,136);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:48.240000px;}
.fs6{font-size:64.080000px;}
.fs8{font-size:64.224000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs4{font-size:79.920000px;}
.fs1{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fsf{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs10{font-size:131.760000px;}
.fsa{font-size:167.760000px;}
.fs11{font-size:167.904000px;}
.fs12{font-size:216.000000px;}
.fs0{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.yee{bottom:6.120000px;}
.y3{bottom:14.004000px;}
.yea{bottom:14.508000px;}
.ya3{bottom:14.616000px;}
.ya0{bottom:16.380000px;}
.y52{bottom:22.068000px;}
.yd0{bottom:23.040000px;}
.yf0{bottom:23.112000px;}
.yeb{bottom:24.192000px;}
.y75{bottom:28.080000px;}
.y2{bottom:29.376000px;}
.y24{bottom:29.412000px;}
.ya6{bottom:29.556000px;}
.yef{bottom:29.736000px;}
.y50{bottom:31.032000px;}
.y16{bottom:34.416000px;}
.yed{bottom:39.168000px;}
.y54{bottom:45.612000px;}
.y9e{bottom:52.380000px;}
.ycf{bottom:55.440000px;}
.yb3{bottom:60.120000px;}
.ya2{bottom:60.804000px;}
.y4e{bottom:61.488000px;}
.y15{bottom:63.216000px;}
.ya5{bottom:68.112000px;}
.y44{bottom:68.544000px;}
.y53{bottom:78.048000px;}
.y8d{bottom:80.025000px;}
.y83{bottom:80.070000px;}
.y73{bottom:80.385000px;}
.y9f{bottom:80.424000px;}
.y65{bottom:80.430000px;}
.y58{bottom:80.460000px;}
.y97{bottom:80.490000px;}
.y56{bottom:80.565000px;}
.yc9{bottom:83.664000px;}
.y9c{bottom:88.380000px;}
.yb2{bottom:88.740000px;}
.y4d{bottom:90.324000px;}
.y14{bottom:92.016000px;}
.y43{bottom:93.744000px;}
.ya4{bottom:96.192000px;}
.ya1{bottom:96.804000px;}
.yce{bottom:96.840000px;}
.y10{bottom:97.128000px;}
.yb1{bottom:117.540000px;}
.y42{bottom:118.944000px;}
.y4c{bottom:119.124000px;}
.y13{bottom:120.816000px;}
.yf{bottom:121.068000px;}
.y92{bottom:123.480000px;}
.y9a{bottom:124.380000px;}
.y78{bottom:128.880000px;}
.y6d{bottom:135.540000px;}
.y10b{bottom:136.944000px;}
.ye{bottom:137.808000px;}
.ycd{bottom:138.240000px;}
.y41{bottom:144.144000px;}
.yb0{bottom:147.276000px;}
.y4b{bottom:147.924000px;}
.y12{bottom:149.616000px;}
.y70{bottom:155.985000px;}
.y77{bottom:156.030000px;}
.y95{bottom:156.090000px;}
.y59{bottom:157.140000px;}
.y98{bottom:163.080000px;}
.y9d{bottom:168.840000px;}
.yd{bottom:169.125000px;}
.y40{bottom:169.350000px;}
.ycc{bottom:170.670000px;}
.y10a{bottom:172.950000px;}
.y72{bottom:175.140000px;}
.y4a{bottom:176.730000px;}
.yaf{bottom:179.670000px;}
.y6e{bottom:181.185000px;}
.y86{bottom:181.230000px;}
.y76{bottom:181.260000px;}
.y93{bottom:181.290000px;}
.y23{bottom:190.470000px;}
.yc{bottom:193.065000px;}
.y3f{bottom:194.190000px;}
.yfc{bottom:196.815000px;}
.y27{bottom:200.850000px;}
.ycb{bottom:203.070000px;}
.y9b{bottom:204.840000px;}
.y109{bottom:208.950000px;}
.y79{bottom:209.340000px;}
.yb{bottom:209.805000px;}
.y22{bottom:212.070000px;}
.y26{bottom:222.450000px;}
.y96{bottom:224.280000px;}
.yfb{bottom:232.815000px;}
.ya{bottom:241.170000px;}
.y99{bottom:243.570000px;}
.y108{bottom:244.980000px;}
.y74{bottom:255.525000px;}
.y9{bottom:265.110000px;}
.yfa{bottom:268.815000px;}
.yae{bottom:279.180000px;}
.y4f{bottom:280.545000px;}
.y85{bottom:281.160000px;}
.y39{bottom:283.065000px;}
.y8f{bottom:284.760000px;}
.y8{bottom:289.050000px;}
.yba{bottom:290.445000px;}
.y71{bottom:291.525000px;}
.y107{bottom:298.980000px;}
.y29{bottom:302.040000px;}
.y48{bottom:303.300000px;}
.yc8{bottom:303.585000px;}
.y94{bottom:304.770000px;}
.yf9{bottom:304.845000px;}
.y7{bottom:305.970000px;}
.yad{bottom:307.980000px;}
.y38{bottom:308.265000px;}
.yb9{bottom:312.045000px;}
.y6f{bottom:316.725000px;}
.y21{bottom:318.060000px;}
.y8b{bottom:320.760000px;}
.y28{bottom:323.640000px;}
.y47{bottom:328.500000px;}
.yc7{bottom:328.965000px;}
.y106{bottom:334.980000px;}
.yac{bottom:336.600000px;}
.y6{bottom:337.110000px;}
.y20{bottom:339.690000px;}
.yf8{bottom:340.845000px;}
.y2d{bottom:341.310000px;}
.y6c{bottom:352.725000px;}
.y46{bottom:353.730000px;}
.y91{bottom:364.785000px;}
.y90{bottom:365.145000px;}
.yab{bottom:365.430000px;}
.y2c{bottom:366.510000px;}
.yda{bottom:373.530000px;}
.yf7{bottom:376.845000px;}
.y6b{bottom:377.970000px;}
.y45{bottom:378.930000px;}
.y88{bottom:381.960000px;}
.y62{bottom:382.860000px;}
.ye8{bottom:386.640000px;}
.yc6{bottom:387.975000px;}
.y105{bottom:389.010000px;}
.y5{bottom:392.580000px;}
.y19{bottom:392.790000px;}
.yaa{bottom:394.230000px;}
.y33{bottom:399.495000px;}
.y8e{bottom:400.785000px;}
.y8c{bottom:401.145000px;}
.y6a{bottom:403.170000px;}
.y60{bottom:408.060000px;}
.ydb{bottom:408.420000px;}
.yf6{bottom:412.845000px;}
.yc5{bottom:413.355000px;}
.y32{bottom:413.895000px;}
.y18{bottom:414.390000px;}
.y81{bottom:417.960000px;}
.y64{bottom:423.540000px;}
.ya9{bottom:423.930000px;}
.y4{bottom:424.980000px;}
.y104{bottom:425.010000px;}
.y69{bottom:428.370000px;}
.yd7{bottom:431.205000px;}
.ye5{bottom:432.465000px;}
.y5e{bottom:433.260000px;}
.yc3{bottom:435.090000px;}
.y8a{bottom:437.190000px;}
.y3e{bottom:440.925000px;}
.y1f{bottom:441.360000px;}
.y68{bottom:453.570000px;}
.y7f{bottom:453.960000px;}
.ya8{bottom:456.330000px;}
.y5c{bottom:458.460000px;}
.y89{bottom:462.030000px;}
.y87{bottom:462.390000px;}
.y1e{bottom:467.280000px;}
.yc2{bottom:467.490000px;}
.y103{bottom:470.010000px;}
.y67{bottom:478.770000px;}
.y5a{bottom:483.660000px;}
.ye2{bottom:486.435000px;}
.yd6{bottom:487.590000px;}
.ya7{bottom:488.775000px;}
.y84{bottom:498.030000px;}
.y82{bottom:498.390000px;}
.yc1{bottom:499.890000px;}
.y66{bottom:503.970000px;}
.y31{bottom:505.980000px;}
.y102{bottom:506.055000px;}
.ye1{bottom:510.405000px;}
.y1{bottom:512.355000px;}
.yf5{bottom:518.295000px;}
.y17{bottom:521.970000px;}
.y30{bottom:531.180000px;}
.yc0{bottom:532.335000px;}
.y80{bottom:534.390000px;}
.ye7{bottom:538.170000px;}
.ydd{bottom:539.820000px;}
.y63{bottom:540.000000px;}
.yd5{bottom:541.695000px;}
.y101{bottom:542.055000px;}
.yd1{bottom:545.610000px;}
.yb8{bottom:551.775000px;}
.yf4{bottom:554.295000px;}
.y37{bottom:555.225000px;}
.y2f{bottom:556.380000px;}
.y1d{bottom:559.515000px;}
.y57{bottom:560.340000px;}
.ye0{bottom:560.625000px;}
.yd4{bottom:563.475000px;}
.y61{bottom:565.200000px;}
.y49{bottom:565.665000px;}
.ye6{bottom:567.000000px;}
.ydc{bottom:568.650000px;}
.y7e{bottom:570.960000px;}
.ybf{bottom:573.735000px;}
.yd9{bottom:574.845000px;}
.y36{bottom:580.065000px;}
.yb7{bottom:580.395000px;}
.y2e{bottom:581.610000px;}
.ydf{bottom:584.610000px;}
.y1c{bottom:585.435000px;}
.yf3{bottom:590.325000px;}
.y5f{bottom:590.400000px;}
.ye9{bottom:592.710000px;}
.ye4{bottom:595.410000px;}
.y100{bottom:596.055000px;}
.y55{bottom:596.340000px;}
.yd8{bottom:598.860000px;}
.y1b{bottom:601.485000px;}
.yd3{bottom:602.850000px;}
.y35{bottom:605.625000px;}
.ybe{bottom:606.135000px;}
.yb6{bottom:609.195000px;}
.y3d{bottom:614.700000px;}
.y5d{bottom:615.600000px;}
.ye3{bottom:619.380000px;}
.y7d{bottom:623.160000px;}
.y2b{bottom:625.650000px;}
.yf2{bottom:626.325000px;}
.y1a{bottom:627.405000px;}
.y34{bottom:630.825000px;}
.yff{bottom:632.055000px;}
.y3c{bottom:636.300000px;}
.yd2{bottom:637.740000px;}
.yb5{bottom:638.025000px;}
.ybd{bottom:638.535000px;}
.y5b{bottom:640.800000px;}
.y2a{bottom:650.850000px;}
.y7c{bottom:655.560000px;}
.y3b{bottom:657.930000px;}
.yf1{bottom:662.325000px;}
.yb4{bottom:667.725000px;}
.yfe{bottom:668.085000px;}
.ybc{bottom:670.965000px;}
.y3a{bottom:679.530000px;}
.yde{bottom:683.895000px;}
.yec{bottom:685.695000px;}
.y7b{bottom:687.960000px;}
.yc4{bottom:696.240000px;}
.y25{bottom:699.915000px;}
.y51{bottom:734.760000px;}
.y11{bottom:735.810000px;}
.yfd{bottom:737.745000px;}
.ybb{bottom:737.970000px;}
.y7a{bottom:738.180000px;}
.yca{bottom:742.245000px;}
.hf{height:42.210000px;}
.hb{height:53.191406px;}
.hc{height:53.297789px;}
.h1c{height:62.233945px;}
.h10{height:63.344531px;}
.h11{height:63.452813px;}
.h28{height:67.375547px;}
.h20{height:70.744570px;}
.h6{height:71.074688px;}
.h8{height:71.224875px;}
.h27{height:72.614883px;}
.h3{height:75.093750px;}
.he{height:75.243937px;}
.h16{height:75.519844px;}
.h17{height:75.648938px;}
.h1e{height:77.805000px;}
.h1f{height:77.922000px;}
.h22{height:79.787109px;}
.h23{height:79.893492px;}
.h21{height:79.998047px;}
.h1d{height:80.104711px;}
.h25{height:81.896484px;}
.h26{height:82.005680px;}
.h2{height:87.859687px;}
.hd{height:88.009875px;}
.h7{height:99.874688px;}
.ha{height:100.024875px;}
.h2a{height:107.793281px;}
.h13{height:112.640625px;}
.h12{height:112.790813px;}
.h4{height:125.406562px;}
.h5{height:125.556750px;}
.h19{height:137.421562px;}
.h1b{height:147.193875px;}
.h1a{height:156.960000px;}
.h9{height:174.968437px;}
.h24{height:175.118625px;}
.h14{height:176.580000px;}
.h29{height:225.281250px;}
.h1{height:225.431438px;}
.h18{height:352.980000px;}
.h15{height:652.860000px;}
.h0{height:810.000000px;}
.w2{width:266.940000px;}
.w6{width:282.420000px;}
.w5{width:306.360000px;}
.w4{width:401.220000px;}
.w3{width:721.620000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2c{left:9.431984px;}
.x33{left:10.908000px;}
.x38{left:30.527984px;}
.x2e{left:36.143984px;}
.x4d{left:39.743984px;}
.x4e{left:43.055984px;}
.x32{left:45.000000px;}
.x56{left:49.535984px;}
.x7{left:57.527984px;}
.x2d{left:58.895984px;}
.x1{left:61.415984px;}
.x39{left:68.867984px;}
.x3a{left:79.595984px;}
.x6d{left:80.747984px;}
.x60{left:87.155984px;}
.x57{left:90.035984px;}
.x8{left:91.367984px;}
.x58{left:92.375984px;}
.x70{left:99.791984px;}
.x4{left:103.607984px;}
.x4b{left:107.351984px;}
.x49{left:110.951984px;}
.x41{left:117.791984px;}
.x53{left:125.567984px;}
.x54{left:127.907984px;}
.x5{left:133.307984px;}
.x43{left:135.971984px;}
.x36{left:142.127984px;}
.x46{left:146.951984px;}
.x11{left:206.819984px;}
.x12{left:209.054984px;}
.x28{left:217.259984px;}
.x27{left:220.349984px;}
.x13{left:222.014984px;}
.x10{left:231.659984px;}
.x37{left:242.609984px;}
.x26{left:244.829984px;}
.xe{left:255.314984px;}
.xf{left:256.754984px;}
.x6b{left:277.379984px;}
.x59{left:286.529984px;}
.x34{left:311.760000px;}
.x15{left:321.689984px;}
.x35{left:335.849984px;}
.x64{left:339.989984px;}
.x14{left:346.169984px;}
.x5c{left:350.789984px;}
.x62{left:354.884984px;}
.x63{left:364.964984px;}
.x1e{left:369.794984px;}
.x1c{left:375.374984px;}
.x31{left:378.719984px;}
.x1f{left:381.854984px;}
.x2b{left:386.024984px;}
.x55{left:396.179984px;}
.x66{left:409.319984px;}
.x1d{left:412.994984px;}
.x5d{left:415.649984px;}
.x61{left:430.769984px;}
.x3b{left:446.400000px;}
.x6{left:450.209984px;}
.x69{left:458.309984px;}
.x1b{left:474.869984px;}
.x50{left:488.129984px;}
.x48{left:493.304984px;}
.x4a{left:495.824984px;}
.x44{left:501.764984px;}
.x3{left:504.614984px;}
.x6e{left:507.674984px;}
.x65{left:510.194984px;}
.x3f{left:512.204984px;}
.x5a{left:514.619984px;}
.x71{left:519.119984px;}
.x30{left:522.179984px;}
.x16{left:524.084984px;}
.x47{left:528.269984px;}
.x4c{left:529.844984px;}
.x2f{left:548.819984px;}
.x3c{left:556.349984px;}
.x25{left:560.594984px;}
.x24{left:567.434984px;}
.x51{left:588.449984px;}
.x4f{left:606.494984px;}
.x52{left:622.289984px;}
.xd{left:645.194984px;}
.x18{left:647.999984px;}
.x67{left:653.144984px;}
.x5b{left:659.234984px;}
.x17{left:662.039984px;}
.x68{left:667.229984px;}
.xc{left:678.854984px;}
.xb{left:709.664984px;}
.x19{left:714.164984px;}
.x9{left:720.689984px;}
.xa{left:731.984984px;}
.x1a{left:736.304984px;}
.x3d{left:752.580000px;}
.x42{left:770.549984px;}
.x6a{left:774.644984px;}
.x29{left:776.129984px;}
.x5e{left:783.689984px;}
.x5f{left:789.839984px;}
.x2a{left:800.249984px;}
.x45{left:819.539984px;}
.x40{left:858.959984px;}
.x3e{left:862.559984px;}
.x22{left:900.284984px;}
.x21{left:944.024984px;}
.x20{left:951.764984px;}
.x23{left:955.544984px;}
.x6f{left:1008.539984px;}
.x2{left:1019.159984px;}
.x6c{left:1043.639984px;}
.x72{left:1051.454984px;}
@media print{
.v4{vertical-align:-30.336000pt;}
.v2{vertical-align:-25.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.v3{vertical-align:52.608000pt;}
.ls34{letter-spacing:-4.224000pt;}
.ls1c{letter-spacing:-0.401600pt;}
.ls2c{letter-spacing:-0.342400pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls1b{letter-spacing:-0.294933pt;}
.lsa{letter-spacing:-0.292267pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.252800pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls4{letter-spacing:-0.181867pt;}
.ls33{letter-spacing:-0.180267pt;}
.ls2d{letter-spacing:-0.165867pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.108800pt;}
.ls26{letter-spacing:-0.081067pt;}
.lse{letter-spacing:-0.033280pt;}
.ls12{letter-spacing:-0.024960pt;}
.ls1a{letter-spacing:-0.016640pt;}
.ls25{letter-spacing:-0.010880pt;}
.lsf{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.028416pt;}
.ls8{letter-spacing:0.092416pt;}
.ls0{letter-spacing:0.181760pt;}
.ls27{letter-spacing:0.185067pt;}
.ls31{letter-spacing:0.224000pt;}
.ls2f{letter-spacing:0.248960pt;}
.lsc{letter-spacing:0.291200pt;}
.ls10{letter-spacing:0.303467pt;}
.ls15{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512384pt;}
.ls21{letter-spacing:0.608000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls18{letter-spacing:20.000000pt;}
.ls17{letter-spacing:20.640000pt;}
.ls1{letter-spacing:23.498240pt;}
.ls24{letter-spacing:47.658667pt;}
.ls20{letter-spacing:47.680000pt;}
.ls1f{letter-spacing:47.744000pt;}
.ls23{letter-spacing:48.256000pt;}
.ls22{letter-spacing:48.320000pt;}
.ls1e{letter-spacing:48.448000pt;}
.ls16{letter-spacing:49.920000pt;}
.ls30{letter-spacing:82.912000pt;}
.ls28{letter-spacing:86.675200pt;}
.ls29{letter-spacing:86.720000pt;}
.ls7{letter-spacing:90.528000pt;}
.ls32{letter-spacing:106.547200pt;}
.ls2e{letter-spacing:106.592000pt;}
.ls13{letter-spacing:110.400000pt;}
.ws14{word-spacing:-96.000000pt;}
.ws9{word-spacing:-42.880000pt;}
.ws6{word-spacing:-41.455360pt;}
.ws1e{word-spacing:-29.748224pt;}
.ws1d{word-spacing:-29.712640pt;}
.ws18{word-spacing:-26.688000pt;}
.wsa{word-spacing:-26.570240pt;}
.ws1c{word-spacing:-23.698944pt;}
.wsd{word-spacing:-23.663360pt;}
.ws16{word-spacing:-23.357952pt;}
.ws15{word-spacing:-23.322880pt;}
.ws17{word-spacing:-23.276885pt;}
.ws8{word-spacing:-20.852224pt;}
.ws7{word-spacing:-20.816640pt;}
.wse{word-spacing:-20.791680pt;}
.ws1a{word-spacing:-20.517120pt;}
.ws1{word-spacing:-19.749120pt;}
.ws4{word-spacing:-18.176000pt;}
.ws5{word-spacing:-17.827584pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1f{word-spacing:-13.568000pt;}
.ws12{word-spacing:-2.320640pt;}
.ws19{word-spacing:-1.986133pt;}
.ws2{word-spacing:-0.745813pt;}
.wsb{word-spacing:-0.697600pt;}
.wsc{word-spacing:-0.496640pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:1.440000pt;}
.ws11{word-spacing:754.202880pt;}
.ws10{word-spacing:990.244949pt;}
.ws13{word-spacing:1410.933333pt;}
.ws1b{word-spacing:2943.720875pt;}
._10{margin-left:-2050.560000pt;}
._3{margin-left:-12.184320pt;}
._1{margin-left:-9.832960pt;}
._c{margin-left:-8.231424pt;}
._4{margin-left:-6.781227pt;}
._9{margin-left:-5.840640pt;}
._6{margin-left:-4.644864pt;}
._2{margin-left:-2.778880pt;}
._0{margin-left:-1.344896pt;}
._5{width:1.173760pt;}
._7{width:2.134613pt;}
._8{width:3.899136pt;}
._a{width:18.552107pt;}
._b{width:19.551787pt;}
._e{width:25.823189pt;}
._f{width:27.947563pt;}
._d{width:53.504981pt;}
.fsd{font-size:42.880000pt;}
.fs6{font-size:56.960000pt;}
.fs8{font-size:57.088000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs4{font-size:71.040000pt;}
.fs1{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fsf{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs10{font-size:117.120000pt;}
.fsa{font-size:149.120000pt;}
.fs11{font-size:149.248000pt;}
.fs12{font-size:192.000000pt;}
.fs0{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:5.440000pt;}
.y3{bottom:12.448000pt;}
.yea{bottom:12.896000pt;}
.ya3{bottom:12.992000pt;}
.ya0{bottom:14.560000pt;}
.y52{bottom:19.616000pt;}
.yd0{bottom:20.480000pt;}
.yf0{bottom:20.544000pt;}
.yeb{bottom:21.504000pt;}
.y75{bottom:24.960000pt;}
.y2{bottom:26.112000pt;}
.y24{bottom:26.144000pt;}
.ya6{bottom:26.272000pt;}
.yef{bottom:26.432000pt;}
.y50{bottom:27.584000pt;}
.y16{bottom:30.592000pt;}
.yed{bottom:34.816000pt;}
.y54{bottom:40.544000pt;}
.y9e{bottom:46.560000pt;}
.ycf{bottom:49.280000pt;}
.yb3{bottom:53.440000pt;}
.ya2{bottom:54.048000pt;}
.y4e{bottom:54.656000pt;}
.y15{bottom:56.192000pt;}
.ya5{bottom:60.544000pt;}
.y44{bottom:60.928000pt;}
.y53{bottom:69.376000pt;}
.y8d{bottom:71.133333pt;}
.y83{bottom:71.173333pt;}
.y73{bottom:71.453333pt;}
.y9f{bottom:71.488000pt;}
.y65{bottom:71.493333pt;}
.y58{bottom:71.520000pt;}
.y97{bottom:71.546667pt;}
.y56{bottom:71.613333pt;}
.yc9{bottom:74.368000pt;}
.y9c{bottom:78.560000pt;}
.yb2{bottom:78.880000pt;}
.y4d{bottom:80.288000pt;}
.y14{bottom:81.792000pt;}
.y43{bottom:83.328000pt;}
.ya4{bottom:85.504000pt;}
.ya1{bottom:86.048000pt;}
.yce{bottom:86.080000pt;}
.y10{bottom:86.336000pt;}
.yb1{bottom:104.480000pt;}
.y42{bottom:105.728000pt;}
.y4c{bottom:105.888000pt;}
.y13{bottom:107.392000pt;}
.yf{bottom:107.616000pt;}
.y92{bottom:109.760000pt;}
.y9a{bottom:110.560000pt;}
.y78{bottom:114.560000pt;}
.y6d{bottom:120.480000pt;}
.y10b{bottom:121.728000pt;}
.ye{bottom:122.496000pt;}
.ycd{bottom:122.880000pt;}
.y41{bottom:128.128000pt;}
.yb0{bottom:130.912000pt;}
.y4b{bottom:131.488000pt;}
.y12{bottom:132.992000pt;}
.y70{bottom:138.653333pt;}
.y77{bottom:138.693333pt;}
.y95{bottom:138.746667pt;}
.y59{bottom:139.680000pt;}
.y98{bottom:144.960000pt;}
.y9d{bottom:150.080000pt;}
.yd{bottom:150.333333pt;}
.y40{bottom:150.533333pt;}
.ycc{bottom:151.706667pt;}
.y10a{bottom:153.733333pt;}
.y72{bottom:155.680000pt;}
.y4a{bottom:157.093333pt;}
.yaf{bottom:159.706667pt;}
.y6e{bottom:161.053333pt;}
.y86{bottom:161.093333pt;}
.y76{bottom:161.120000pt;}
.y93{bottom:161.146667pt;}
.y23{bottom:169.306667pt;}
.yc{bottom:171.613333pt;}
.y3f{bottom:172.613333pt;}
.yfc{bottom:174.946667pt;}
.y27{bottom:178.533333pt;}
.ycb{bottom:180.506667pt;}
.y9b{bottom:182.080000pt;}
.y109{bottom:185.733333pt;}
.y79{bottom:186.080000pt;}
.yb{bottom:186.493333pt;}
.y22{bottom:188.506667pt;}
.y26{bottom:197.733333pt;}
.y96{bottom:199.360000pt;}
.yfb{bottom:206.946667pt;}
.ya{bottom:214.373333pt;}
.y99{bottom:216.506667pt;}
.y108{bottom:217.760000pt;}
.y74{bottom:227.133333pt;}
.y9{bottom:235.653333pt;}
.yfa{bottom:238.946667pt;}
.yae{bottom:248.160000pt;}
.y4f{bottom:249.373333pt;}
.y85{bottom:249.920000pt;}
.y39{bottom:251.613333pt;}
.y8f{bottom:253.120000pt;}
.y8{bottom:256.933333pt;}
.yba{bottom:258.173333pt;}
.y71{bottom:259.133333pt;}
.y107{bottom:265.760000pt;}
.y29{bottom:268.480000pt;}
.y48{bottom:269.600000pt;}
.yc8{bottom:269.853333pt;}
.y94{bottom:270.906667pt;}
.yf9{bottom:270.973333pt;}
.y7{bottom:271.973333pt;}
.yad{bottom:273.760000pt;}
.y38{bottom:274.013333pt;}
.yb9{bottom:277.373333pt;}
.y6f{bottom:281.533333pt;}
.y21{bottom:282.720000pt;}
.y8b{bottom:285.120000pt;}
.y28{bottom:287.680000pt;}
.y47{bottom:292.000000pt;}
.yc7{bottom:292.413333pt;}
.y106{bottom:297.760000pt;}
.yac{bottom:299.200000pt;}
.y6{bottom:299.653333pt;}
.y20{bottom:301.946667pt;}
.yf8{bottom:302.973333pt;}
.y2d{bottom:303.386667pt;}
.y6c{bottom:313.533333pt;}
.y46{bottom:314.426667pt;}
.y91{bottom:324.253333pt;}
.y90{bottom:324.573333pt;}
.yab{bottom:324.826667pt;}
.y2c{bottom:325.786667pt;}
.yda{bottom:332.026667pt;}
.yf7{bottom:334.973333pt;}
.y6b{bottom:335.973333pt;}
.y45{bottom:336.826667pt;}
.y88{bottom:339.520000pt;}
.y62{bottom:340.320000pt;}
.ye8{bottom:343.680000pt;}
.yc6{bottom:344.866667pt;}
.y105{bottom:345.786667pt;}
.y5{bottom:348.960000pt;}
.y19{bottom:349.146667pt;}
.yaa{bottom:350.426667pt;}
.y33{bottom:355.106667pt;}
.y8e{bottom:356.253333pt;}
.y8c{bottom:356.573333pt;}
.y6a{bottom:358.373333pt;}
.y60{bottom:362.720000pt;}
.ydb{bottom:363.040000pt;}
.yf6{bottom:366.973333pt;}
.yc5{bottom:367.426667pt;}
.y32{bottom:367.906667pt;}
.y18{bottom:368.346667pt;}
.y81{bottom:371.520000pt;}
.y64{bottom:376.480000pt;}
.ya9{bottom:376.826667pt;}
.y4{bottom:377.760000pt;}
.y104{bottom:377.786667pt;}
.y69{bottom:380.773333pt;}
.yd7{bottom:383.293333pt;}
.ye5{bottom:384.413333pt;}
.y5e{bottom:385.120000pt;}
.yc3{bottom:386.746667pt;}
.y8a{bottom:388.613333pt;}
.y3e{bottom:391.933333pt;}
.y1f{bottom:392.320000pt;}
.y68{bottom:403.173333pt;}
.y7f{bottom:403.520000pt;}
.ya8{bottom:405.626667pt;}
.y5c{bottom:407.520000pt;}
.y89{bottom:410.693333pt;}
.y87{bottom:411.013333pt;}
.y1e{bottom:415.360000pt;}
.yc2{bottom:415.546667pt;}
.y103{bottom:417.786667pt;}
.y67{bottom:425.573333pt;}
.y5a{bottom:429.920000pt;}
.ye2{bottom:432.386667pt;}
.yd6{bottom:433.413333pt;}
.ya7{bottom:434.466667pt;}
.y84{bottom:442.693333pt;}
.y82{bottom:443.013333pt;}
.yc1{bottom:444.346667pt;}
.y66{bottom:447.973333pt;}
.y31{bottom:449.760000pt;}
.y102{bottom:449.826667pt;}
.ye1{bottom:453.693333pt;}
.y1{bottom:455.426667pt;}
.yf5{bottom:460.706667pt;}
.y17{bottom:463.973333pt;}
.y30{bottom:472.160000pt;}
.yc0{bottom:473.186667pt;}
.y80{bottom:475.013333pt;}
.ye7{bottom:478.373333pt;}
.ydd{bottom:479.840000pt;}
.y63{bottom:480.000000pt;}
.yd5{bottom:481.506667pt;}
.y101{bottom:481.826667pt;}
.yd1{bottom:484.986667pt;}
.yb8{bottom:490.466667pt;}
.yf4{bottom:492.706667pt;}
.y37{bottom:493.533333pt;}
.y2f{bottom:494.560000pt;}
.y1d{bottom:497.346667pt;}
.y57{bottom:498.080000pt;}
.ye0{bottom:498.333333pt;}
.yd4{bottom:500.866667pt;}
.y61{bottom:502.400000pt;}
.y49{bottom:502.813333pt;}
.ye6{bottom:504.000000pt;}
.ydc{bottom:505.466667pt;}
.y7e{bottom:507.520000pt;}
.ybf{bottom:509.986667pt;}
.yd9{bottom:510.973333pt;}
.y36{bottom:515.613333pt;}
.yb7{bottom:515.906667pt;}
.y2e{bottom:516.986667pt;}
.ydf{bottom:519.653333pt;}
.y1c{bottom:520.386667pt;}
.yf3{bottom:524.733333pt;}
.y5f{bottom:524.800000pt;}
.ye9{bottom:526.853333pt;}
.ye4{bottom:529.253333pt;}
.y100{bottom:529.826667pt;}
.y55{bottom:530.080000pt;}
.yd8{bottom:532.320000pt;}
.y1b{bottom:534.653333pt;}
.yd3{bottom:535.866667pt;}
.y35{bottom:538.333333pt;}
.ybe{bottom:538.786667pt;}
.yb6{bottom:541.506667pt;}
.y3d{bottom:546.400000pt;}
.y5d{bottom:547.200000pt;}
.ye3{bottom:550.560000pt;}
.y7d{bottom:553.920000pt;}
.y2b{bottom:556.133333pt;}
.yf2{bottom:556.733333pt;}
.y1a{bottom:557.693333pt;}
.y34{bottom:560.733333pt;}
.yff{bottom:561.826667pt;}
.y3c{bottom:565.600000pt;}
.yd2{bottom:566.880000pt;}
.yb5{bottom:567.133333pt;}
.ybd{bottom:567.586667pt;}
.y5b{bottom:569.600000pt;}
.y2a{bottom:578.533333pt;}
.y7c{bottom:582.720000pt;}
.y3b{bottom:584.826667pt;}
.yf1{bottom:588.733333pt;}
.yb4{bottom:593.533333pt;}
.yfe{bottom:593.853333pt;}
.ybc{bottom:596.413333pt;}
.y3a{bottom:604.026667pt;}
.yde{bottom:607.906667pt;}
.yec{bottom:609.506667pt;}
.y7b{bottom:611.520000pt;}
.yc4{bottom:618.880000pt;}
.y25{bottom:622.146667pt;}
.y51{bottom:653.120000pt;}
.y11{bottom:654.053333pt;}
.yfd{bottom:655.773333pt;}
.ybb{bottom:655.973333pt;}
.y7a{bottom:656.160000pt;}
.yca{bottom:659.773333pt;}
.hf{height:37.520000pt;}
.hb{height:47.281250pt;}
.hc{height:47.375812pt;}
.h1c{height:55.319062pt;}
.h10{height:56.306250pt;}
.h11{height:56.402500pt;}
.h28{height:59.889375pt;}
.h20{height:62.884062pt;}
.h6{height:63.177500pt;}
.h8{height:63.311000pt;}
.h27{height:64.546562pt;}
.h3{height:66.750000pt;}
.he{height:66.883500pt;}
.h16{height:67.128750pt;}
.h17{height:67.243500pt;}
.h1e{height:69.160000pt;}
.h1f{height:69.264000pt;}
.h22{height:70.921875pt;}
.h23{height:71.016437pt;}
.h21{height:71.109375pt;}
.h1d{height:71.204188pt;}
.h25{height:72.796875pt;}
.h26{height:72.893938pt;}
.h2{height:78.097500pt;}
.hd{height:78.231000pt;}
.h7{height:88.777500pt;}
.ha{height:88.911000pt;}
.h2a{height:95.816250pt;}
.h13{height:100.125000pt;}
.h12{height:100.258500pt;}
.h4{height:111.472500pt;}
.h5{height:111.606000pt;}
.h19{height:122.152500pt;}
.h1b{height:130.839000pt;}
.h1a{height:139.520000pt;}
.h9{height:155.527500pt;}
.h24{height:155.661000pt;}
.h14{height:156.960000pt;}
.h29{height:200.250000pt;}
.h1{height:200.383500pt;}
.h18{height:313.760000pt;}
.h15{height:580.320000pt;}
.h0{height:720.000000pt;}
.w2{width:237.280000pt;}
.w6{width:251.040000pt;}
.w5{width:272.320000pt;}
.w4{width:356.640000pt;}
.w3{width:641.440000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:8.383986pt;}
.x33{left:9.696000pt;}
.x38{left:27.135986pt;}
.x2e{left:32.127986pt;}
.x4d{left:35.327986pt;}
.x4e{left:38.271986pt;}
.x32{left:40.000000pt;}
.x56{left:44.031986pt;}
.x7{left:51.135986pt;}
.x2d{left:52.351986pt;}
.x1{left:54.591986pt;}
.x39{left:61.215986pt;}
.x3a{left:70.751986pt;}
.x6d{left:71.775986pt;}
.x60{left:77.471986pt;}
.x57{left:80.031986pt;}
.x8{left:81.215986pt;}
.x58{left:82.111986pt;}
.x70{left:88.703986pt;}
.x4{left:92.095986pt;}
.x4b{left:95.423986pt;}
.x49{left:98.623986pt;}
.x41{left:104.703986pt;}
.x53{left:111.615986pt;}
.x54{left:113.695986pt;}
.x5{left:118.495986pt;}
.x43{left:120.863986pt;}
.x36{left:126.335986pt;}
.x46{left:130.623986pt;}
.x11{left:183.839986pt;}
.x12{left:185.826652pt;}
.x28{left:193.119986pt;}
.x27{left:195.866652pt;}
.x13{left:197.346652pt;}
.x10{left:205.919986pt;}
.x37{left:215.653319pt;}
.x26{left:217.626652pt;}
.xe{left:226.946652pt;}
.xf{left:228.226652pt;}
.x6b{left:246.559986pt;}
.x59{left:254.693319pt;}
.x34{left:277.120000pt;}
.x15{left:285.946652pt;}
.x35{left:298.533319pt;}
.x64{left:302.213319pt;}
.x14{left:307.706652pt;}
.x5c{left:311.813319pt;}
.x62{left:315.453319pt;}
.x63{left:324.413319pt;}
.x1e{left:328.706652pt;}
.x1c{left:333.666652pt;}
.x31{left:336.639986pt;}
.x1f{left:339.426652pt;}
.x2b{left:343.133319pt;}
.x55{left:352.159986pt;}
.x66{left:363.839986pt;}
.x1d{left:367.106652pt;}
.x5d{left:369.466652pt;}
.x61{left:382.906652pt;}
.x3b{left:396.800000pt;}
.x6{left:400.186652pt;}
.x69{left:407.386652pt;}
.x1b{left:422.106652pt;}
.x50{left:433.893319pt;}
.x48{left:438.493319pt;}
.x4a{left:440.733319pt;}
.x44{left:446.013319pt;}
.x3{left:448.546652pt;}
.x6e{left:451.266652pt;}
.x65{left:453.506652pt;}
.x3f{left:455.293319pt;}
.x5a{left:457.439986pt;}
.x71{left:461.439986pt;}
.x30{left:464.159986pt;}
.x16{left:465.853319pt;}
.x47{left:469.573319pt;}
.x4c{left:470.973319pt;}
.x2f{left:487.839986pt;}
.x3c{left:494.533319pt;}
.x25{left:498.306652pt;}
.x24{left:504.386652pt;}
.x51{left:523.066652pt;}
.x4f{left:539.106652pt;}
.x52{left:553.146652pt;}
.xd{left:573.506652pt;}
.x18{left:575.999986pt;}
.x67{left:580.573319pt;}
.x5b{left:585.986652pt;}
.x17{left:588.479986pt;}
.x68{left:593.093319pt;}
.xc{left:603.426652pt;}
.xb{left:630.813319pt;}
.x19{left:634.813319pt;}
.x9{left:640.613319pt;}
.xa{left:650.653319pt;}
.x1a{left:654.493319pt;}
.x3d{left:668.960000pt;}
.x42{left:684.933319pt;}
.x6a{left:688.573319pt;}
.x29{left:689.893319pt;}
.x5e{left:696.613319pt;}
.x5f{left:702.079986pt;}
.x2a{left:711.333319pt;}
.x45{left:728.479986pt;}
.x40{left:763.519986pt;}
.x3e{left:766.719986pt;}
.x22{left:800.253319pt;}
.x21{left:839.133319pt;}
.x20{left:846.013319pt;}
.x23{left:849.373319pt;}
.x6f{left:896.479986pt;}
.x2{left:905.919986pt;}
.x6c{left:927.679986pt;}
.x72{left:934.626652pt;}
}




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