
    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_03cb050510ec10f2c316fb64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_f8685f7af41e69e52f6acb9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987305;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_6b087b2babb120c1476aa23f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e20601ced92c5969b11b9781.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_c607c2b4f3d2018943b41a36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_dc17d629e6dfea0ad1497c10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079590;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_296c073fed61e032dd919fef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_d5f6362ce0b3d6436074f4e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_7f835831cf19f92880cde24a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_feb64fc5645ceff7613890e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_dc79cf032b5fb17b6bd36958.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.731445;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_84f1df0785a41be7fdec46cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.119629;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_e6fb03677fee68b259760296.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975098;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_abb2304eafd0560c2098a2cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975098;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_5ab6f103b02292dce31a2048.woff2')format("woff");}.fff{font-family:fff;line-height:1.192871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_718bd013a524eb9bdcd238cd.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d7e6f7a2dadc1f26d685b179.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_35251d0659005a0b0423c6f6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_db01e72d4b1f9e0c7247fc43.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2d7b87252022758079855a01.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919000;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:ff15;src:url('chunks/assets/font_37cd7f5412839dde032506fe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.756836;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:ff16;src:url('chunks/assets/font_76f1addf4eb415279bec6510.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.955000;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:ff17;src:url('chunks/assets/font_666579075a0e1aa156239f70.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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:ff18;src:url('chunks/assets/font_7eb54d51f3f6c2922e6480b5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.728000;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(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.986000px;}
.v3{vertical-align:-5.182800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.v4{vertical-align:36.000000px;}
.ls10{letter-spacing:-5.520000px;}
.ls8{letter-spacing:-2.940000px;}
.ls9{letter-spacing:-1.680000px;}
.lsf{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.096000px;}
.ls12{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003384px;}
.ls2{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.296000px;}
.ls4{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.488000px;}
.ls6{letter-spacing:1.680000px;}
.ls3{letter-spacing:2.520000px;}
.lsc{letter-spacing:34.848000px;}
.ls11{letter-spacing:489.017400px;}
.ls1{letter-spacing:604.846800px;}
.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;}
}
.ws11{word-spacing:-48.000000px;}
.ws16{word-spacing:-20.016000px;}
.ws1a{word-spacing:-16.680000px;}
.ws14{word-spacing:-15.600000px;}
.ws12{word-spacing:-15.360000px;}
.ws1{word-spacing:-14.916000px;}
.ws0{word-spacing:-8.696028px;}
.ws2{word-spacing:-6.807108px;}
.ws28{word-spacing:-3.726000px;}
.wsa{word-spacing:-2.520000px;}
.wse{word-spacing:-1.680000px;}
.wsd{word-spacing:-1.488000px;}
.wsb{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.260000px;}
.ws3{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:0.096000px;}
.ws2b{word-spacing:0.384000px;}
.ws13{word-spacing:0.480000px;}
.ws8{word-spacing:0.780000px;}
.ws6{word-spacing:1.680000px;}
.ws5{word-spacing:2.940000px;}
.ws23{word-spacing:123.792000px;}
.ws2a{word-spacing:124.176000px;}
.ws29{word-spacing:126.528000px;}
.ws15{word-spacing:146.064000px;}
.ws7{word-spacing:197.064000px;}
.ws10{word-spacing:202.848000px;}
.ws26{word-spacing:245.762400px;}
.ws22{word-spacing:265.936800px;}
.ws25{word-spacing:279.121800px;}
.ws24{word-spacing:295.806600px;}
.ws27{word-spacing:378.294000px;}
.ws18{word-spacing:400.819200px;}
.ws19{word-spacing:417.494400px;}
.ws1c{word-spacing:434.179200px;}
.ws1e{word-spacing:450.854400px;}
.ws1b{word-spacing:464.224200px;}
.ws17{word-spacing:464.224800px;}
.ws21{word-spacing:1601.362800px;}
.ws1d{word-spacing:1744.434000px;}
.ws1f{word-spacing:1752.834000px;}
.ws20{word-spacing:1761.118800px;}
._16{margin-left:-8.946000px;}
._d{margin-left:-7.050000px;}
._2{margin-left:-5.460000px;}
._a{margin-left:-4.310400px;}
._1{margin-left:-3.303000px;}
._0{margin-left:-1.809000px;}
._3{width:1.680000px;}
._6{width:2.691264px;}
._4{width:3.915168px;}
._5{width:5.209632px;}
._8{width:6.247872px;}
._7{width:7.310400px;}
._9{width:8.390400px;}
._e{width:9.408336px;}
._11{width:10.727328px;}
._42{width:11.820000px;}
._14{width:13.038000px;}
._f{width:14.826000px;}
._10{width:17.946000px;}
._13{width:19.788000px;}
._33{width:27.114000px;}
._43{width:29.100000px;}
._36{width:192.553200px;}
._32{width:227.712600px;}
._3e{width:262.442400px;}
._3b{width:279.126600px;}
._38{width:312.486600px;}
._2a{width:417.499200px;}
._20{width:434.174400px;}
._1d{width:450.859200px;}
._40{width:717.126000px;}
._39{width:951.799200px;}
._29{width:980.820000px;}
._3c{width:1115.044800px;}
._3a{width:1145.044800px;}
._2c{width:1154.284800px;}
._2b{width:1197.660000px;}
._37{width:1223.470200px;}
._12{width:1232.980800px;}
._41{width:1252.996800px;}
._23{width:1255.252800px;}
._26{width:1362.973800px;}
._22{width:1424.404800px;}
._17{width:1446.168600px;}
._1c{width:1476.304800px;}
._24{width:1481.164800px;}
._b{width:1497.271200px;}
._44{width:1499.494536px;}
._3d{width:1502.194800px;}
._1e{width:1506.244800px;}
._34{width:1507.318536px;}
._3f{width:1510.595400px;}
._15{width:1518.358536px;}
._c{width:1521.286536px;}
._28{width:1527.844800px;}
._27{width:1537.924800px;}
._1f{width:1559.584800px;}
._21{width:1593.000000px;}
._35{width:1618.552200px;}
._25{width:1641.120000px;}
._2e{width:1651.264800px;}
._18{width:1656.300000px;}
._31{width:1659.664800px;}
._1a{width:1661.284800px;}
._1b{width:1681.200000px;}
._19{width:1743.004800px;}
._30{width:1771.260000px;}
._2f{width:1796.344800px;}
._2d{width:1804.629600px;}
.fc6{color:rgb(254,0,0);}
.fc5{color:rgb(26,102,186);}
.fc4{color:rgb(238,37,43);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(45,99,183);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(238,39,44);}
.fs5{font-size:24.486000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.231750px;}
.y42{bottom:98.610300px;}
.y40{bottom:121.468500px;}
.y3f{bottom:135.868500px;}
.y125{bottom:161.671800px;}
.y8c{bottom:169.056900px;}
.yb0{bottom:170.655300px;}
.y14a{bottom:171.108600px;}
.yfc{bottom:171.897900px;}
.y69{bottom:175.623900px;}
.yd5{bottom:178.452450px;}
.y124{bottom:182.221800px;}
.y149{bottom:183.858600px;}
.y8b{bottom:190.056900px;}
.yaf{bottom:192.558000px;}
.yfb{bottom:192.897900px;}
.y148{bottom:196.608600px;}
.y68{bottom:196.623900px;}
.yd4{bottom:199.452450px;}
.y123{bottom:202.771800px;}
.y8a{bottom:211.056900px;}
.yfa{bottom:213.897900px;}
.yae{bottom:215.478450px;}
.y67{bottom:217.623900px;}
.yd3{bottom:220.452450px;}
.y147{bottom:222.114600px;}
.y89{bottom:232.056900px;}
.yf9{bottom:234.897900px;}
.yad{bottom:238.398750px;}
.y66{bottom:238.623900px;}
.yd2{bottom:241.452450px;}
.y122{bottom:244.581600px;}
.y88{bottom:253.056900px;}
.yf8{bottom:255.897900px;}
.y1e{bottom:256.586400px;}
.y65{bottom:259.623900px;}
.yac{bottom:261.319200px;}
.yd1{bottom:262.452450px;}
.y3e{bottom:263.763300px;}
.y121{bottom:265.131600px;}
.y87{bottom:274.056900px;}
.yf7{bottom:276.897900px;}
.y1d{bottom:277.846200px;}
.y146{bottom:278.382300px;}
.yd0{bottom:283.452450px;}
.y3d{bottom:283.696050px;}
.yab{bottom:284.239650px;}
.y120{bottom:285.681600px;}
.y86{bottom:295.056900px;}
.y1c{bottom:299.106150px;}
.y145{bottom:299.382300px;}
.y64{bottom:301.883700px;}
.yaa{bottom:304.203750px;}
.ycf{bottom:304.452450px;}
.y11f{bottom:306.231600px;}
.y3c{bottom:312.652050px;}
.yf6{bottom:319.157850px;}
.y1b{bottom:320.365950px;}
.y144{bottom:320.382300px;}
.ya9{bottom:321.211650px;}
.y63{bottom:322.883700px;}
.y3b{bottom:324.652050px;}
.y85{bottom:333.064800px;}
.y3a{bottom:336.652050px;}
.ya8{bottom:338.219550px;}
.y143{bottom:341.382300px;}
.y1a{bottom:341.625750px;}
.y62{bottom:343.883700px;}
.yce{bottom:346.712250px;}
.y11e{bottom:348.041400px;}
.y39{bottom:348.652050px;}
.ya7{bottom:358.183650px;}
.y38{bottom:360.652050px;}
.y142{bottom:362.382300px;}
.y19{bottom:362.885550px;}
.y61{bottom:364.883700px;}
.y11d{bottom:368.591400px;}
.ycd{bottom:371.115900px;}
.y37{bottom:372.652050px;}
.y84{bottom:373.824600px;}
.yf5{bottom:375.425400px;}
.ya6{bottom:381.104100px;}
.y141{bottom:383.382300px;}
.y18{bottom:384.145500px;}
.y36{bottom:384.652050px;}
.y60{bottom:385.883700px;}
.y11c{bottom:389.141400px;}
.y83{bottom:394.824600px;}
.ycc{bottom:396.440250px;}
.y35{bottom:396.652050px;}
.yf4{bottom:399.333000px;}
.ya5{bottom:404.024400px;}
.y140{bottom:404.382300px;}
.y17{bottom:405.405300px;}
.y5f{bottom:406.883700px;}
.y34{bottom:408.652050px;}
.y11b{bottom:409.691400px;}
.y82{bottom:415.824600px;}
.yf3{bottom:417.333000px;}
.y33{bottom:420.652050px;}
.ycb{bottom:421.952100px;}
.ya4{bottom:424.135650px;}
.y13f{bottom:425.382300px;}
.y16{bottom:427.975650px;}
.y11a{bottom:430.241400px;}
.y32{bottom:432.652050px;}
.y81{bottom:436.824600px;}
.y15{bottom:438.440550px;}
.yf0{bottom:442.642800px;}
.y31{bottom:444.652050px;}
.yca{bottom:447.463800px;}
.y14{bottom:448.905450px;}
.y5e{bottom:449.143500px;}
.y119{bottom:450.791400px;}
.yf2{bottom:451.642800px;}
.ya3{bottom:453.500850px;}
.y30{bottom:456.652050px;}
.y80{bottom:457.824600px;}
.y13{bottom:459.370350px;}
.yee{bottom:460.642800px;}
.y13e{bottom:467.642100px;}
.yf1{bottom:469.642800px;}
.y5d{bottom:470.143500px;}
.y118{bottom:471.341400px;}
.y2f{bottom:472.903950px;}
.yc9{bottom:472.975650px;}
.yef{bottom:478.642800px;}
.y7f{bottom:478.824600px;}
.y12{bottom:481.940700px;}
.ya2{bottom:482.508750px;}
.y13d{bottom:488.642100px;}
.y5c{bottom:491.143500px;}
.y117{bottom:491.891400px;}
.y2e{bottom:493.965750px;}
.yc8{bottom:498.487500px;}
.y7e{bottom:499.824600px;}
.ya1{bottom:503.508750px;}
.yed{bottom:508.362150px;}
.y13c{bottom:509.642100px;}
.y5b{bottom:512.143500px;}
.y116{bottom:512.441400px;}
.y2d{bottom:513.879600px;}
.yc7{bottom:523.999350px;}
.ya0{bottom:524.508750px;}
.yec{bottom:526.362150px;}
.y13b{bottom:530.642100px;}
.y115{bottom:532.991400px;}
.y5a{bottom:533.143500px;}
.y7d{bottom:537.832500px;}
.y2c{bottom:542.835600px;}
.y9f{bottom:545.508750px;}
.yc6{bottom:549.511050px;}
.y13a{bottom:551.642100px;}
.y59{bottom:554.143500px;}
.y2b{bottom:554.835600px;}
.yeb{bottom:564.542400px;}
.y9e{bottom:566.508750px;}
.y2a{bottom:566.835600px;}
.y139{bottom:572.642100px;}
.y114{bottom:574.801350px;}
.yc5{bottom:575.022900px;}
.y58{bottom:575.143500px;}
.y16a{bottom:578.218350px;}
.y7c{bottom:578.592300px;}
.y29{bottom:578.835600px;}
.yea{bottom:585.542400px;}
.y28{bottom:590.835600px;}
.y169{bottom:590.968350px;}
.y138{bottom:593.642100px;}
.y113{bottom:595.351200px;}
.y57{bottom:596.143500px;}
.y7b{bottom:599.592300px;}
.yc4{bottom:600.534750px;}
.y27{bottom:602.835600px;}
.ye9{bottom:606.542400px;}
.y9d{bottom:608.768550px;}
.y168{bottom:612.222300px;}
.y137{bottom:614.642100px;}
.y26{bottom:614.835600px;}
.y112{bottom:615.901350px;}
.y7a{bottom:620.592300px;}
.y167{bottom:624.972300px;}
.yc3{bottom:626.046450px;}
.y25{bottom:626.835600px;}
.ye8{bottom:627.542400px;}
.y136{bottom:635.642100px;}
.y111{bottom:636.451350px;}
.y56{bottom:638.403450px;}
.y24{bottom:638.835600px;}
.y79{bottom:641.592300px;}
.y166{bottom:646.226250px;}
.ye7{bottom:648.542400px;}
.y23{bottom:650.835600px;}
.yc2{bottom:651.558300px;}
.y110{bottom:657.001350px;}
.y165{bottom:658.976250px;}
.y55{bottom:659.403450px;}
.y22{bottom:662.835600px;}
.y9c{bottom:665.036250px;}
.y21{bottom:674.835600px;}
.yc1{bottom:677.070150px;}
.y10f{bottom:677.551350px;}
.y135{bottom:677.902050px;}
.y78{bottom:679.600200px;}
.y164{bottom:680.230200px;}
.y54{bottom:680.403450px;}
.y9b{bottom:686.036250px;}
.y20{bottom:686.835600px;}
.y163{bottom:692.980200px;}
.ye6{bottom:695.853300px;}
.y10e{bottom:698.101200px;}
.y53{bottom:701.403450px;}
.yc0{bottom:702.582000px;}
.y1f{bottom:703.087500px;}
.y9a{bottom:707.036250px;}
.y162{bottom:714.234150px;}
.y10d{bottom:718.651350px;}
.y77{bottom:720.360150px;}
.ye5{bottom:721.365000px;}
.y52{bottom:722.403450px;}
.y161{bottom:726.984150px;}
.y99{bottom:728.036250px;}
.ybf{bottom:728.093700px;}
.y134{bottom:734.169750px;}
.y10c{bottom:739.201200px;}
.y76{bottom:741.360150px;}
.y51{bottom:743.403450px;}
.ye4{bottom:746.876850px;}
.y160{bottom:748.238100px;}
.ybe{bottom:753.605550px;}
.y133{bottom:755.169750px;}
.y10b{bottom:759.751350px;}
.y15f{bottom:760.988100px;}
.y75{bottom:762.360150px;}
.y50{bottom:764.403450px;}
.y98{bottom:766.044150px;}
.ye3{bottom:771.093000px;}
.y10{bottom:772.005000px;}
.y15e{bottom:773.738100px;}
.y132{bottom:776.169750px;}
.ybd{bottom:779.117400px;}
.yf{bottom:784.604850px;}
.y4f{bottom:785.403450px;}
.y15d{bottom:794.992050px;}
.ye2{bottom:796.604850px;}
.y131{bottom:797.169750px;}
.ye{bottom:797.205000px;}
.y74{bottom:800.367900px;}
.y10a{bottom:801.561150px;}
.ybc{bottom:804.629400px;}
.y4e{bottom:806.403450px;}
.y97{bottom:806.803950px;}
.y15c{bottom:807.742050px;}
.yd{bottom:809.804850px;}
.y109{bottom:822.111150px;}
.ye1{bottom:822.116850px;}
.yc{bottom:822.405000px;}
.y96{bottom:827.803950px;}
.y15b{bottom:828.995850px;}
.ybb{bottom:830.141250px;}
.yb{bottom:835.005000px;}
.y130{bottom:839.429700px;}
.y73{bottom:841.127700px;}
.y15a{bottom:841.745850px;}
.y108{bottom:842.661150px;}
.ya{bottom:847.604850px;}
.ye0{bottom:847.628700px;}
.y4d{bottom:848.663250px;}
.y95{bottom:848.803950px;}
.yba{bottom:855.653100px;}
.y9{bottom:860.205000px;}
.y12f{bottom:860.429700px;}
.y72{bottom:862.127700px;}
.y159{bottom:862.999950px;}
.y107{bottom:863.211150px;}
.y8{bottom:869.308350px;}
.y4c{bottom:869.663250px;}
.ydf{bottom:874.436400px;}
.y158{bottom:875.749950px;}
.yb9{bottom:881.165100px;}
.y12e{bottom:881.429700px;}
.y71{bottom:883.127700px;}
.y106{bottom:883.761150px;}
.y7{bottom:885.405000px;}
.y94{bottom:886.811850px;}
.y4b{bottom:890.663250px;}
.y157{bottom:897.003900px;}
.yde{bottom:899.948250px;}
.y12d{bottom:902.429700px;}
.y70{bottom:904.127700px;}
.y105{bottom:904.311150px;}
.yb8{bottom:906.676950px;}
.y156{bottom:909.753900px;}
.y4a{bottom:911.663250px;}
.y6{bottom:915.808350px;}
.y12c{bottom:923.429550px;}
.y104{bottom:924.861150px;}
.ydd{bottom:925.460100px;}
.y93{bottom:927.571650px;}
.y155{bottom:931.007700px;}
.yb7{bottom:932.188800px;}
.y49{bottom:932.663250px;}
.y5{bottom:933.808350px;}
.y154{bottom:943.757700px;}
.y12b{bottom:944.429550px;}
.y103{bottom:945.411150px;}
.y6f{bottom:946.387500px;}
.ydc{bottom:948.380550px;}
.y92{bottom:948.571650px;}
.y48{bottom:953.663250px;}
.y153{bottom:956.507700px;}
.yb6{bottom:957.700800px;}
.y12a{bottom:965.429550px;}
.y102{bottom:965.961150px;}
.y6e{bottom:967.387500px;}
.y91{bottom:969.571650px;}
.ydb{bottom:971.301000px;}
.y47{bottom:974.663250px;}
.y4{bottom:977.320200px;}
.y152{bottom:977.761650px;}
.yb5{bottom:983.212650px;}
.y129{bottom:986.429550px;}
.y101{bottom:986.511150px;}
.y6d{bottom:988.387500px;}
.y151{bottom:990.511650px;}
.yda{bottom:993.203550px;}
.y46{bottom:995.663250px;}
.y100{bottom:1007.061150px;}
.y90{bottom:1007.579550px;}
.yb4{bottom:1008.724500px;}
.y6c{bottom:1009.387500px;}
.y150{bottom:1011.765600px;}
.y45{bottom:1016.663250px;}
.yd9{bottom:1019.279850px;}
.y14f{bottom:1024.515600px;}
.y3{bottom:1026.232050px;}
.y128{bottom:1028.689500px;}
.yd8{bottom:1031.279850px;}
.yb3{bottom:1034.236500px;}
.y14e{bottom:1045.769550px;}
.y6b{bottom:1047.395550px;}
.y8f{bottom:1048.339350px;}
.yff{bottom:1048.870950px;}
.y127{bottom:1049.239350px;}
.y2{bottom:1051.432050px;}
.y14d{bottom:1058.519550px;}
.yb2{bottom:1059.560850px;}
.y8e{bottom:1069.339350px;}
.yd7{bottom:1069.339500px;}
.y126{bottom:1069.789350px;}
.yfe{bottom:1069.870950px;}
.y14c{bottom:1079.773500px;}
.yb1{bottom:1083.964350px;}
.y11{bottom:1084.650750px;}
.y6a{bottom:1088.155350px;}
.y44{bottom:1088.686950px;}
.y8d{bottom:1090.339350px;}
.yd6{bottom:1090.339500px;}
.yfd{bottom:1090.870950px;}
.y14b{bottom:1092.523500px;}
.y41{bottom:1111.393800px;}
.y43{bottom:1154.834700px;}
.h6{height:22.517906px;}
.h8{height:22.518506px;}
.hc{height:30.187500px;}
.ha{height:30.577148px;}
.h12{height:35.088000px;}
.h7{height:36.503906px;}
.hb{height:37.877930px;}
.h11{height:38.016000px;}
.hd{height:38.185547px;}
.h2{height:39.474000px;}
.h17{height:41.718750px;}
.hf{height:43.289062px;}
.h10{height:43.640625px;}
.h15{height:43.681641px;}
.he{height:46.218750px;}
.h14{height:52.148438px;}
.h13{height:52.417969px;}
.h4{height:53.129883px;}
.h5{height:53.399414px;}
.h9{height:58.800000px;}
.h3{height:72.817383px;}
.h16{height:79.681641px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:63.779700px;}
.x5{left:68.031600px;}
.x2{left:75.926400px;}
.x12{left:98.301600px;}
.x8{left:99.319200px;}
.xa{left:105.545100px;}
.xb{left:106.979550px;}
.x1c{left:112.299150px;}
.x1b{left:114.399150px;}
.x9{left:118.714050px;}
.xf{left:129.250500px;}
.x4{left:141.869250px;}
.x18{left:148.818900px;}
.x11{left:151.204800px;}
.x1a{left:159.448800px;}
.xe{left:174.035700px;}
.xc{left:193.824450px;}
.x10{left:242.120700px;}
.xd{left:269.614950px;}
.x6{left:303.964500px;}
.x13{left:318.147750px;}
.x3{left:326.063100px;}
.x19{left:334.767300px;}
.x1f{left:356.207550px;}
.x1e{left:364.956450px;}
.x1d{left:373.719750px;}
.x1{left:380.019750px;}
.x15{left:450.951000px;}
.x21{left:502.234050px;}
.x20{left:503.904000px;}
.x17{left:548.456700px;}
.x23{left:656.010000px;}
.x22{left:663.938550px;}
.x14{left:715.491450px;}
.x16{left:751.480050px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v3{vertical-align:-4.606933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.v4{vertical-align:32.000000pt;}
.ls10{letter-spacing:-4.906667pt;}
.ls8{letter-spacing:-2.613333pt;}
.ls9{letter-spacing:-1.493333pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.085333pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003008pt;}
.ls2{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.152000pt;}
.ls4{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.322667pt;}
.ls6{letter-spacing:1.493333pt;}
.ls3{letter-spacing:2.240000pt;}
.lsc{letter-spacing:30.976000pt;}
.ls11{letter-spacing:434.682133pt;}
.ls1{letter-spacing:537.641600pt;}
.ws11{word-spacing:-42.666667pt;}
.ws16{word-spacing:-17.792000pt;}
.ws1a{word-spacing:-14.826667pt;}
.ws14{word-spacing:-13.866667pt;}
.ws12{word-spacing:-13.653333pt;}
.ws1{word-spacing:-13.258667pt;}
.ws0{word-spacing:-7.729803pt;}
.ws2{word-spacing:-6.050763pt;}
.ws28{word-spacing:-3.312000pt;}
.wsa{word-spacing:-2.240000pt;}
.wse{word-spacing:-1.493333pt;}
.wsd{word-spacing:-1.322667pt;}
.wsb{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.120000pt;}
.ws3{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:0.085333pt;}
.ws2b{word-spacing:0.341333pt;}
.ws13{word-spacing:0.426667pt;}
.ws8{word-spacing:0.693333pt;}
.ws6{word-spacing:1.493333pt;}
.ws5{word-spacing:2.613333pt;}
.ws23{word-spacing:110.037333pt;}
.ws2a{word-spacing:110.378667pt;}
.ws29{word-spacing:112.469333pt;}
.ws15{word-spacing:129.834667pt;}
.ws7{word-spacing:175.168000pt;}
.ws10{word-spacing:180.309333pt;}
.ws26{word-spacing:218.455467pt;}
.ws22{word-spacing:236.388267pt;}
.ws25{word-spacing:248.108267pt;}
.ws24{word-spacing:262.939200pt;}
.ws27{word-spacing:336.261333pt;}
.ws18{word-spacing:356.283733pt;}
.ws19{word-spacing:371.106133pt;}
.ws1c{word-spacing:385.937067pt;}
.ws1e{word-spacing:400.759467pt;}
.ws1b{word-spacing:412.643733pt;}
.ws17{word-spacing:412.644267pt;}
.ws21{word-spacing:1423.433600pt;}
.ws1d{word-spacing:1550.608000pt;}
.ws1f{word-spacing:1558.074667pt;}
.ws20{word-spacing:1565.438933pt;}
._16{margin-left:-7.952000pt;}
._d{margin-left:-6.266667pt;}
._2{margin-left:-4.853333pt;}
._a{margin-left:-3.831467pt;}
._1{margin-left:-2.936000pt;}
._0{margin-left:-1.608000pt;}
._3{width:1.493333pt;}
._6{width:2.392235pt;}
._4{width:3.480149pt;}
._5{width:4.630784pt;}
._8{width:5.553664pt;}
._7{width:6.498133pt;}
._9{width:7.458133pt;}
._e{width:8.362965pt;}
._11{width:9.535403pt;}
._42{width:10.506667pt;}
._14{width:11.589333pt;}
._f{width:13.178667pt;}
._10{width:15.952000pt;}
._13{width:17.589333pt;}
._33{width:24.101333pt;}
._43{width:25.866667pt;}
._36{width:171.158400pt;}
._32{width:202.411200pt;}
._3e{width:233.282133pt;}
._3b{width:248.112533pt;}
._38{width:277.765867pt;}
._2a{width:371.110400pt;}
._20{width:385.932800pt;}
._1d{width:400.763733pt;}
._40{width:637.445333pt;}
._39{width:846.043733pt;}
._29{width:871.840000pt;}
._3c{width:991.150933pt;}
._3a{width:1017.817600pt;}
._2c{width:1026.030933pt;}
._2b{width:1064.586667pt;}
._37{width:1087.529067pt;}
._12{width:1095.982933pt;}
._41{width:1113.774933pt;}
._23{width:1115.780267pt;}
._26{width:1211.532267pt;}
._22{width:1266.137600pt;}
._17{width:1285.483200pt;}
._1c{width:1312.270933pt;}
._24{width:1316.590933pt;}
._b{width:1330.907733pt;}
._44{width:1332.884032pt;}
._3d{width:1335.284267pt;}
._1e{width:1338.884267pt;}
._34{width:1339.838699pt;}
._3f{width:1342.751467pt;}
._15{width:1349.652032pt;}
._c{width:1352.254699pt;}
._28{width:1358.084267pt;}
._27{width:1367.044267pt;}
._1f{width:1386.297600pt;}
._21{width:1416.000000pt;}
._35{width:1438.713067pt;}
._25{width:1458.773333pt;}
._2e{width:1467.790933pt;}
._18{width:1472.266667pt;}
._31{width:1475.257600pt;}
._1a{width:1476.697600pt;}
._1b{width:1494.400000pt;}
._19{width:1549.337600pt;}
._30{width:1574.453333pt;}
._2f{width:1596.750933pt;}
._2d{width:1604.115200pt;}
.fs5{font-size:21.765333pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.872667pt;}
.y42{bottom:87.653600pt;}
.y40{bottom:107.972000pt;}
.y3f{bottom:120.772000pt;}
.y125{bottom:143.708267pt;}
.y8c{bottom:150.272800pt;}
.yb0{bottom:151.693600pt;}
.y14a{bottom:152.096533pt;}
.yfc{bottom:152.798133pt;}
.y69{bottom:156.110133pt;}
.yd5{bottom:158.624400pt;}
.y124{bottom:161.974933pt;}
.y149{bottom:163.429867pt;}
.y8b{bottom:168.939467pt;}
.yaf{bottom:171.162667pt;}
.yfb{bottom:171.464800pt;}
.y148{bottom:174.763200pt;}
.y68{bottom:174.776800pt;}
.yd4{bottom:177.291067pt;}
.y123{bottom:180.241600pt;}
.y8a{bottom:187.606133pt;}
.yfa{bottom:190.131467pt;}
.yae{bottom:191.536400pt;}
.y67{bottom:193.443467pt;}
.yd3{bottom:195.957733pt;}
.y147{bottom:197.435200pt;}
.y89{bottom:206.272800pt;}
.yf9{bottom:208.798133pt;}
.yad{bottom:211.910000pt;}
.y66{bottom:212.110133pt;}
.yd2{bottom:214.624400pt;}
.y122{bottom:217.405867pt;}
.y88{bottom:224.939467pt;}
.yf8{bottom:227.464800pt;}
.y1e{bottom:228.076800pt;}
.y65{bottom:230.776800pt;}
.yac{bottom:232.283733pt;}
.yd1{bottom:233.291067pt;}
.y3e{bottom:234.456267pt;}
.y121{bottom:235.672533pt;}
.y87{bottom:243.606133pt;}
.yf7{bottom:246.131467pt;}
.y1d{bottom:246.974400pt;}
.y146{bottom:247.450933pt;}
.yd0{bottom:251.957733pt;}
.y3d{bottom:252.174267pt;}
.yab{bottom:252.657467pt;}
.y120{bottom:253.939200pt;}
.y86{bottom:262.272800pt;}
.y1c{bottom:265.872133pt;}
.y145{bottom:266.117600pt;}
.y64{bottom:268.341067pt;}
.yaa{bottom:270.403333pt;}
.ycf{bottom:270.624400pt;}
.y11f{bottom:272.205867pt;}
.y3c{bottom:277.912933pt;}
.yf6{bottom:283.695867pt;}
.y1b{bottom:284.769733pt;}
.y144{bottom:284.784267pt;}
.ya9{bottom:285.521467pt;}
.y63{bottom:287.007733pt;}
.y3b{bottom:288.579600pt;}
.y85{bottom:296.057600pt;}
.y3a{bottom:299.246267pt;}
.ya8{bottom:300.639600pt;}
.y143{bottom:303.450933pt;}
.y1a{bottom:303.667333pt;}
.y62{bottom:305.674400pt;}
.yce{bottom:308.188667pt;}
.y11e{bottom:309.370133pt;}
.y39{bottom:309.912933pt;}
.ya7{bottom:318.385467pt;}
.y38{bottom:320.579600pt;}
.y142{bottom:322.117600pt;}
.y19{bottom:322.564933pt;}
.y61{bottom:324.341067pt;}
.y11d{bottom:327.636800pt;}
.ycd{bottom:329.880800pt;}
.y37{bottom:331.246267pt;}
.y84{bottom:332.288533pt;}
.yf5{bottom:333.711467pt;}
.ya6{bottom:338.759200pt;}
.y141{bottom:340.784267pt;}
.y18{bottom:341.462667pt;}
.y36{bottom:341.912933pt;}
.y60{bottom:343.007733pt;}
.y11c{bottom:345.903467pt;}
.y83{bottom:350.955200pt;}
.ycc{bottom:352.391333pt;}
.y35{bottom:352.579600pt;}
.yf4{bottom:354.962667pt;}
.ya5{bottom:359.132800pt;}
.y140{bottom:359.450933pt;}
.y17{bottom:360.360267pt;}
.y5f{bottom:361.674400pt;}
.y34{bottom:363.246267pt;}
.y11b{bottom:364.170133pt;}
.y82{bottom:369.621867pt;}
.yf3{bottom:370.962667pt;}
.y33{bottom:373.912933pt;}
.ycb{bottom:375.068533pt;}
.ya4{bottom:377.009467pt;}
.y13f{bottom:378.117600pt;}
.y16{bottom:380.422800pt;}
.y11a{bottom:382.436800pt;}
.y32{bottom:384.579600pt;}
.y81{bottom:388.288533pt;}
.y15{bottom:389.724933pt;}
.yf0{bottom:393.460267pt;}
.y31{bottom:395.246267pt;}
.yca{bottom:397.745600pt;}
.y14{bottom:399.027067pt;}
.y5e{bottom:399.238667pt;}
.y119{bottom:400.703467pt;}
.yf2{bottom:401.460267pt;}
.ya3{bottom:403.111867pt;}
.y30{bottom:405.912933pt;}
.y80{bottom:406.955200pt;}
.y13{bottom:408.329200pt;}
.yee{bottom:409.460267pt;}
.y13e{bottom:415.681867pt;}
.yf1{bottom:417.460267pt;}
.y5d{bottom:417.905333pt;}
.y118{bottom:418.970133pt;}
.y2f{bottom:420.359067pt;}
.yc9{bottom:420.422800pt;}
.yef{bottom:425.460267pt;}
.y7f{bottom:425.621867pt;}
.y12{bottom:428.391733pt;}
.ya2{bottom:428.896667pt;}
.y13d{bottom:434.348533pt;}
.y5c{bottom:436.572000pt;}
.y117{bottom:437.236800pt;}
.y2e{bottom:439.080667pt;}
.yc8{bottom:443.100000pt;}
.y7e{bottom:444.288533pt;}
.ya1{bottom:447.563333pt;}
.yed{bottom:451.877467pt;}
.y13c{bottom:453.015200pt;}
.y5b{bottom:455.238667pt;}
.y116{bottom:455.503467pt;}
.y2d{bottom:456.781867pt;}
.yc7{bottom:465.777200pt;}
.ya0{bottom:466.230000pt;}
.yec{bottom:467.877467pt;}
.y13b{bottom:471.681867pt;}
.y115{bottom:473.770133pt;}
.y5a{bottom:473.905333pt;}
.y7d{bottom:478.073333pt;}
.y2c{bottom:482.520533pt;}
.y9f{bottom:484.896667pt;}
.yc6{bottom:488.454267pt;}
.y13a{bottom:490.348533pt;}
.y59{bottom:492.572000pt;}
.y2b{bottom:493.187200pt;}
.yeb{bottom:501.815467pt;}
.y9e{bottom:503.563333pt;}
.y2a{bottom:503.853867pt;}
.y139{bottom:509.015200pt;}
.y114{bottom:510.934533pt;}
.yc5{bottom:511.131467pt;}
.y58{bottom:511.238667pt;}
.y16a{bottom:513.971867pt;}
.y7c{bottom:514.304267pt;}
.y29{bottom:514.520533pt;}
.yea{bottom:520.482133pt;}
.y28{bottom:525.187200pt;}
.y169{bottom:525.305200pt;}
.y138{bottom:527.681867pt;}
.y113{bottom:529.201067pt;}
.y57{bottom:529.905333pt;}
.y7b{bottom:532.970933pt;}
.yc4{bottom:533.808667pt;}
.y27{bottom:535.853867pt;}
.ye9{bottom:539.148800pt;}
.y9d{bottom:541.127600pt;}
.y168{bottom:544.197600pt;}
.y137{bottom:546.348533pt;}
.y26{bottom:546.520533pt;}
.y112{bottom:547.467867pt;}
.y7a{bottom:551.637600pt;}
.y167{bottom:555.530933pt;}
.yc3{bottom:556.485733pt;}
.y25{bottom:557.187200pt;}
.ye8{bottom:557.815467pt;}
.y136{bottom:565.015200pt;}
.y111{bottom:565.734533pt;}
.y56{bottom:567.469733pt;}
.y24{bottom:567.853867pt;}
.y79{bottom:570.304267pt;}
.y166{bottom:574.423333pt;}
.ye7{bottom:576.482133pt;}
.y23{bottom:578.520533pt;}
.yc2{bottom:579.162933pt;}
.y110{bottom:584.001200pt;}
.y165{bottom:585.756667pt;}
.y55{bottom:586.136400pt;}
.y22{bottom:589.187200pt;}
.y9c{bottom:591.143333pt;}
.y21{bottom:599.853867pt;}
.yc1{bottom:601.840133pt;}
.y10f{bottom:602.267867pt;}
.y135{bottom:602.579600pt;}
.y78{bottom:604.089067pt;}
.y164{bottom:604.649067pt;}
.y54{bottom:604.803067pt;}
.y9b{bottom:609.810000pt;}
.y20{bottom:610.520533pt;}
.y163{bottom:615.982400pt;}
.ye6{bottom:618.536267pt;}
.y10e{bottom:620.534400pt;}
.y53{bottom:623.469733pt;}
.yc0{bottom:624.517333pt;}
.y1f{bottom:624.966667pt;}
.y9a{bottom:628.476667pt;}
.y162{bottom:634.874800pt;}
.y10d{bottom:638.801200pt;}
.y77{bottom:640.320133pt;}
.ye5{bottom:641.213333pt;}
.y52{bottom:642.136400pt;}
.y161{bottom:646.208133pt;}
.y99{bottom:647.143333pt;}
.ybf{bottom:647.194400pt;}
.y134{bottom:652.595333pt;}
.y10c{bottom:657.067733pt;}
.y76{bottom:658.986800pt;}
.y51{bottom:660.803067pt;}
.ye4{bottom:663.890533pt;}
.y160{bottom:665.100533pt;}
.ybe{bottom:669.871600pt;}
.y133{bottom:671.262000pt;}
.y10b{bottom:675.334533pt;}
.y15f{bottom:676.433867pt;}
.y75{bottom:677.653467pt;}
.y50{bottom:679.469733pt;}
.y98{bottom:680.928133pt;}
.ye3{bottom:685.416000pt;}
.y10{bottom:686.226667pt;}
.y15e{bottom:687.767200pt;}
.y132{bottom:689.928667pt;}
.ybd{bottom:692.548800pt;}
.yf{bottom:697.426533pt;}
.y4f{bottom:698.136400pt;}
.y15d{bottom:706.659600pt;}
.ye2{bottom:708.093200pt;}
.y131{bottom:708.595333pt;}
.ye{bottom:708.626667pt;}
.y74{bottom:711.438133pt;}
.y10a{bottom:712.498800pt;}
.ybc{bottom:715.226133pt;}
.y4e{bottom:716.803067pt;}
.y97{bottom:717.159067pt;}
.y15c{bottom:717.992933pt;}
.yd{bottom:719.826533pt;}
.y109{bottom:730.765467pt;}
.ye1{bottom:730.770533pt;}
.yc{bottom:731.026667pt;}
.y96{bottom:735.825733pt;}
.y15b{bottom:736.885200pt;}
.ybb{bottom:737.903333pt;}
.yb{bottom:742.226667pt;}
.y130{bottom:746.159733pt;}
.y73{bottom:747.669067pt;}
.y15a{bottom:748.218533pt;}
.y108{bottom:749.032133pt;}
.ya{bottom:753.426533pt;}
.ye0{bottom:753.447733pt;}
.y4d{bottom:754.367333pt;}
.y95{bottom:754.492400pt;}
.yba{bottom:760.580533pt;}
.y9{bottom:764.626667pt;}
.y12f{bottom:764.826400pt;}
.y72{bottom:766.335733pt;}
.y159{bottom:767.111067pt;}
.y107{bottom:767.298800pt;}
.y8{bottom:772.718533pt;}
.y4c{bottom:773.034000pt;}
.ydf{bottom:777.276800pt;}
.y158{bottom:778.444400pt;}
.yb9{bottom:783.257867pt;}
.y12e{bottom:783.493067pt;}
.y71{bottom:785.002400pt;}
.y106{bottom:785.565467pt;}
.y7{bottom:787.026667pt;}
.y94{bottom:788.277200pt;}
.y4b{bottom:791.700667pt;}
.y157{bottom:797.336800pt;}
.yde{bottom:799.954000pt;}
.y12d{bottom:802.159733pt;}
.y70{bottom:803.669067pt;}
.y105{bottom:803.832133pt;}
.yb8{bottom:805.935067pt;}
.y156{bottom:808.670133pt;}
.y4a{bottom:810.367333pt;}
.y6{bottom:814.051867pt;}
.y12c{bottom:820.826267pt;}
.y104{bottom:822.098800pt;}
.ydd{bottom:822.631200pt;}
.y93{bottom:824.508133pt;}
.y155{bottom:827.562400pt;}
.yb7{bottom:828.612267pt;}
.y49{bottom:829.034000pt;}
.y5{bottom:830.051867pt;}
.y154{bottom:838.895733pt;}
.y12b{bottom:839.492933pt;}
.y103{bottom:840.365467pt;}
.y6f{bottom:841.233333pt;}
.ydc{bottom:843.004933pt;}
.y92{bottom:843.174800pt;}
.y48{bottom:847.700667pt;}
.y153{bottom:850.229067pt;}
.yb6{bottom:851.289600pt;}
.y12a{bottom:858.159600pt;}
.y102{bottom:858.632133pt;}
.y6e{bottom:859.900000pt;}
.y91{bottom:861.841467pt;}
.ydb{bottom:863.378667pt;}
.y47{bottom:866.367333pt;}
.y4{bottom:868.729067pt;}
.y152{bottom:869.121467pt;}
.yb5{bottom:873.966800pt;}
.y129{bottom:876.826267pt;}
.y101{bottom:876.898800pt;}
.y6d{bottom:878.566667pt;}
.y151{bottom:880.454800pt;}
.yda{bottom:882.847600pt;}
.y46{bottom:885.034000pt;}
.y100{bottom:895.165467pt;}
.y90{bottom:895.626267pt;}
.yb4{bottom:896.644000pt;}
.y6c{bottom:897.233333pt;}
.y150{bottom:899.347200pt;}
.y45{bottom:903.700667pt;}
.yd9{bottom:906.026533pt;}
.y14f{bottom:910.680533pt;}
.y3{bottom:912.206267pt;}
.y128{bottom:914.390667pt;}
.yd8{bottom:916.693200pt;}
.yb3{bottom:919.321333pt;}
.y14e{bottom:929.572933pt;}
.y6b{bottom:931.018267pt;}
.y8f{bottom:931.857200pt;}
.yff{bottom:932.329733pt;}
.y127{bottom:932.657200pt;}
.y2{bottom:934.606267pt;}
.y14d{bottom:940.906267pt;}
.yb2{bottom:941.831867pt;}
.y8e{bottom:950.523867pt;}
.yd7{bottom:950.524000pt;}
.y126{bottom:950.923867pt;}
.yfe{bottom:950.996400pt;}
.y14c{bottom:959.798667pt;}
.yb1{bottom:963.523867pt;}
.y11{bottom:964.134000pt;}
.y6a{bottom:967.249200pt;}
.y44{bottom:967.721733pt;}
.y8d{bottom:969.190533pt;}
.yd6{bottom:969.190667pt;}
.yfd{bottom:969.663067pt;}
.y14b{bottom:971.132000pt;}
.y41{bottom:987.905600pt;}
.y43{bottom:1026.519733pt;}
.h6{height:20.015917pt;}
.h8{height:20.016450pt;}
.hc{height:26.833333pt;}
.ha{height:27.179688pt;}
.h12{height:31.189333pt;}
.h7{height:32.447917pt;}
.hb{height:33.669271pt;}
.h11{height:33.792000pt;}
.hd{height:33.942708pt;}
.h2{height:35.088000pt;}
.h17{height:37.083333pt;}
.hf{height:38.479167pt;}
.h10{height:38.791667pt;}
.h15{height:38.828125pt;}
.he{height:41.083333pt;}
.h14{height:46.354167pt;}
.h13{height:46.593750pt;}
.h4{height:47.226562pt;}
.h5{height:47.466146pt;}
.h9{height:52.266667pt;}
.h3{height:64.726562pt;}
.h16{height:70.828125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:56.693067pt;}
.x5{left:60.472533pt;}
.x2{left:67.490133pt;}
.x12{left:87.379200pt;}
.x8{left:88.283733pt;}
.xa{left:93.817867pt;}
.xb{left:95.092933pt;}
.x1c{left:99.821467pt;}
.x1b{left:101.688133pt;}
.x9{left:105.523600pt;}
.xf{left:114.889333pt;}
.x4{left:126.106000pt;}
.x18{left:132.283467pt;}
.x11{left:134.404267pt;}
.x1a{left:141.732267pt;}
.xe{left:154.698400pt;}
.xc{left:172.288400pt;}
.x10{left:215.218400pt;}
.xd{left:239.657733pt;}
.x6{left:270.190667pt;}
.x13{left:282.798000pt;}
.x3{left:289.833867pt;}
.x19{left:297.570933pt;}
.x1f{left:316.628933pt;}
.x1e{left:324.405733pt;}
.x1d{left:332.195333pt;}
.x1{left:337.795333pt;}
.x15{left:400.845333pt;}
.x21{left:446.430267pt;}
.x20{left:447.914667pt;}
.x17{left:487.517067pt;}
.x23{left:583.120000pt;}
.x22{left:590.167600pt;}
.x14{left:635.992400pt;}
.x16{left:667.982267pt;}
}




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