
    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_707ae964b05a025c8db5bd84.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_0a1b6e7963116f011fece705.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8dea4f0ad7c0d5e8e1a5510b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_f45bf6694d5fe2744ad2e9f3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_2ff72d4c0bd26d5b62715eb0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_e1e176adc6a7dd05857cfc79.woff')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_158ed82e6071aa61a8aca3f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_500e8178f1ff4cdc14e3faeb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_4a4c82c66be803d930367ba6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_53dc84de9e3fd4fff71eb781.woff')format("woff");}.ffa{font-family:ffa;line-height:2.262000;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_c9409c4733cedde5c056bc22.woff')format("woff");}.ffb{font-family:ffb;line-height:0.389000;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_98a744fc45b9075db8ad758d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_f9dcb26baf6dbdb05a32b28b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_fe04e94c8139c0096788645a.woff')format("woff");}.ffe{font-family:ffe;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.mc{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-59.358000px;}
.v3{vertical-align:-10.134000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:9.822000px;}
.vc{vertical-align:18.912000px;}
.v5{vertical-align:22.572000px;}
.va{vertical-align:23.754000px;}
.v4{vertical-align:25.770000px;}
.vf{vertical-align:27.024000px;}
.vd{vertical-align:34.764000px;}
.v9{vertical-align:44.898000px;}
.v2{vertical-align:52.728000px;}
.vb{vertical-align:55.962000px;}
.v6{vertical-align:69.342000px;}
.ve{vertical-align:71.922000px;}
.v7{vertical-align:89.088000px;}
.lsf{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.002627px;}
.ls2b{letter-spacing:0.003239px;}
.ls43{letter-spacing:0.009730px;}
.ls3d{letter-spacing:0.010813px;}
.ls17{letter-spacing:0.011425px;}
.ls3b{letter-spacing:0.015732px;}
.ls2{letter-spacing:0.021900px;}
.lsd{letter-spacing:0.027935px;}
.ls38{letter-spacing:1.819611px;}
.ls3e{letter-spacing:2.062335px;}
.ls3c{letter-spacing:2.349242px;}
.ls3f{letter-spacing:2.985072px;}
.ls25{letter-spacing:2.991072px;}
.ls24{letter-spacing:3.003659px;}
.ls27{letter-spacing:3.007025px;}
.lsc{letter-spacing:3.796367px;}
.ls10{letter-spacing:5.301823px;}
.lse{letter-spacing:5.344571px;}
.ls40{letter-spacing:6.115301px;}
.ls36{letter-spacing:7.152445px;}
.ls2d{letter-spacing:7.167748px;}
.ls15{letter-spacing:7.170240px;}
.ls37{letter-spacing:7.172700px;}
.ls30{letter-spacing:9.523578px;}
.ls5{letter-spacing:9.922750px;}
.ls4{letter-spacing:9.982525px;}
.ls1e{letter-spacing:10.919790px;}
.ls9{letter-spacing:10.930918px;}
.ls47{letter-spacing:13.025465px;}
.ls1d{letter-spacing:14.374892px;}
.ls3a{letter-spacing:14.530921px;}
.ls1{letter-spacing:16.557841px;}
.ls0{letter-spacing:16.617617px;}
.ls39{letter-spacing:17.534915px;}
.ls16{letter-spacing:18.130924px;}
.ls7{letter-spacing:18.196379px;}
.ls26{letter-spacing:20.002332px;}
.ls2e{letter-spacing:21.170367px;}
.ls28{letter-spacing:21.171072px;}
.ls3{letter-spacing:21.631295px;}
.ls22{letter-spacing:21.796382px;}
.ls32{letter-spacing:21.861836px;}
.ls13{letter-spacing:21.927291px;}
.ls6{letter-spacing:21.992746px;}
.ls18{letter-spacing:23.524571px;}
.ls34{letter-spacing:23.629111px;}
.ls8{letter-spacing:23.632338px;}
.ls11{letter-spacing:23.638338px;}
.ls1b{letter-spacing:23.929462px;}
.ls35{letter-spacing:25.353756px;}
.ls23{letter-spacing:25.592749px;}
.ls33{letter-spacing:27.294568px;}
.ls19{letter-spacing:28.921939px;}
.ls21{letter-spacing:30.453768px;}
.ls2a{letter-spacing:30.894571px;}
.ls1c{letter-spacing:31.084346px;}
.lsb{letter-spacing:32.727300px;}
.ls12{letter-spacing:38.749123px;}
.ls14{letter-spacing:38.825412px;}
.ls2f{letter-spacing:42.695412px;}
.ls2c{letter-spacing:42.905412px;}
.ls1f{letter-spacing:65.454600px;}
.ls45{letter-spacing:141.840118px;}
.ls20{letter-spacing:227.192917px;}
.ls46{letter-spacing:628.364160px;}
.ls29{letter-spacing:773.935190px;}
.ls41{letter-spacing:796.844300px;}
.ls31{letter-spacing:910.604395px;}
.ls44{letter-spacing:956.684434px;}
.ls1a{letter-spacing:1146.764592px;}
.lsa{letter-spacing:1313.084731px;}
.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;}
}
.ws29{word-spacing:-86.077200px;}
.ws15{word-spacing:-65.454600px;}
.ws20{word-spacing:-42.637126px;}
.ws1e{word-spacing:-33.211407px;}
.ws1d{word-spacing:-31.771663px;}
.ws1f{word-spacing:-31.706208px;}
.ws37{word-spacing:-20.906199px;}
.ws2c{word-spacing:-20.644381px;}
.ws1a{word-spacing:-18.183288px;}
.ws49{word-spacing:-14.111859px;}
.ws44{word-spacing:-12.549034px;}
.ws2a{word-spacing:-9.124183px;}
.ws23{word-spacing:-9.038106px;}
.ws14{word-spacing:-7.317824px;}
.ws24{word-spacing:-7.252370px;}
.ws25{word-spacing:-1.426910px;}
.ws1c{word-spacing:-1.296001px;}
.ws1{word-spacing:-0.103292px;}
.ws13{word-spacing:-0.086077px;}
.ws28{word-spacing:-0.065455px;}
.ws2b{word-spacing:-0.052364px;}
.ws19{word-spacing:0.000000px;}
.ws22{word-spacing:0.013091px;}
.ws2f{word-spacing:0.340364px;}
.ws4{word-spacing:0.890183px;}
.ws33{word-spacing:1.976729px;}
.ws56{word-spacing:3.180062px;}
.ws4b{word-spacing:3.285821px;}
.ws8{word-spacing:3.299613px;}
.ws55{word-spacing:3.351276px;}
.wsb{word-spacing:3.359389px;}
.ws50{word-spacing:3.416730px;}
.ws48{word-spacing:3.426224px;}
.wsd{word-spacing:3.538716px;}
.ws2e{word-spacing:3.547639px;}
.ws6{word-spacing:3.613094px;}
.ws1b{word-spacing:3.678549px;}
.ws12{word-spacing:3.801728px;}
.ws27{word-spacing:3.809458px;}
.ws2{word-spacing:3.873485px;}
.ws3a{word-spacing:4.005822px;}
.ws53{word-spacing:4.071276px;}
.ws3{word-spacing:4.162913px;}
.ws16{word-spacing:4.228367px;}
.ws52{word-spacing:4.686549px;}
.ws30{word-spacing:4.791277px;}
.wsf{word-spacing:5.152657px;}
.ws40{word-spacing:5.249459px;}
.ws4a{word-spacing:5.773096px;}
.ws10{word-spacing:5.953650px;}
.wse{word-spacing:6.109066px;}
.ws46{word-spacing:6.296733px;}
.ws39{word-spacing:7.016733px;}
.ws3b{word-spacing:7.056169px;}
.ws21{word-spacing:7.056634px;}
.ws4d{word-spacing:7.077646px;}
.ws11{word-spacing:7.149162px;}
.ws38{word-spacing:8.090189px;}
.ws5{word-spacing:8.221098px;}
.ws9{word-spacing:9.456500px;}
.ws7{word-spacing:9.934705px;}
.ws36{word-spacing:10.027645px;}
.ws18{word-spacing:10.878555px;}
.ws34{word-spacing:11.074918px;}
.ws35{word-spacing:11.467646px;}
.ws4f{word-spacing:11.860374px;}
.ws26{word-spacing:17.293105px;}
.ws32{word-spacing:18.130924px;}
.wsa{word-spacing:21.339889px;}
.ws4e{word-spacing:23.445838px;}
.wsc{word-spacing:25.404630px;}
.ws54{word-spacing:27.163659px;}
.ws3e{word-spacing:27.242205px;}
.ws51{word-spacing:30.318571px;}
.ws17{word-spacing:32.192873px;}
.ws3f{word-spacing:32.451104px;}
.ws31{word-spacing:32.795413px;}
.ws43{word-spacing:33.053645px;}
.ws47{word-spacing:33.067664px;}
.ws0{word-spacing:38.528065px;}
.ws4c{word-spacing:46.158584px;}
.ws2d{word-spacing:47.271312px;}
.ws45{word-spacing:47.729494px;}
.ws42{word-spacing:63.700417px;}
.ws3d{word-spacing:75.809518px;}
.ws41{word-spacing:99.202992px;}
.ws3c{word-spacing:319.824267px;}
._1e{margin-left:-38.749123px;}
._0{margin-left:-9.709486px;}
._25{margin-left:-8.091257px;}
._5{margin-left:-5.810227px;}
._a{margin-left:-4.602721px;}
._1{margin-left:-3.098772px;}
._4{margin-left:-1.936742px;}
._6{width:1.767274px;}
._3{width:2.892187px;}
._20{width:5.531889px;}
._1f{width:6.764662px;}
._7{width:16.617617px;}
._11{width:18.196379px;}
._26{width:21.796382px;}
._19{width:22.909110px;}
._22{width:24.704142px;}
._d{width:27.353366px;}
._8{width:29.935646px;}
._c{width:32.816804px;}
._10{width:33.827642px;}
._b{width:36.082974px;}
._21{width:43.038600px;}
._9{width:45.838027px;}
._2{width:51.439615px;}
._e{width:60.545505px;}
._28{width:65.454521px;}
._1d{width:95.101965px;}
._1c{width:96.836850px;}
._17{width:141.589240px;}
._13{width:247.182742px;}
._29{width:379.975616px;}
._24{width:445.025825px;}
._27{width:513.338389px;}
._15{width:551.835346px;}
._23{width:759.076996px;}
._16{width:1060.375460px;}
._18{width:1119.680897px;}
._14{width:1165.564571px;}
._1b{width:1406.191672px;}
._1a{width:1440.015709px;}
._12{width:1441.637565px;}
._f{width:1893.574682px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y21{bottom:129.882000px;}
.y63{bottom:134.896500px;}
.y42{bottom:138.157500px;}
.y62{bottom:155.220000px;}
.y20{bottom:157.677000px;}
.y41{bottom:174.685500px;}
.y61{bottom:175.543500px;}
.y1f{bottom:185.473500px;}
.y60{bottom:204.084000px;}
.y1e{bottom:216.112500px;}
.y40{bottom:234.261000px;}
.y5f{bottom:243.234000px;}
.y1d{bottom:254.508000px;}
.y3f{bottom:254.586000px;}
.y3e{bottom:274.909500px;}
.y5e{bottom:279.762000px;}
.y1c{bottom:306.066000px;}
.y3d{bottom:308.730000px;}
.y5d{bottom:332.280000px;}
.y1b{bottom:342.754500px;}
.y3c{bottom:348.916500px;}
.y5c{bottom:352.603500px;}
.y7e{bottom:368.506500px;}
.y3b{bottom:369.240000px;}
.y5b{bottom:372.927000px;}
.y1a{bottom:379.441500px;}
.y7d{bottom:386.440500px;}
.y3a{bottom:389.565000px;}
.y5a{bottom:401.466000px;}
.y19{bottom:416.128500px;}
.y39{bottom:418.104000px;}
.y7c{bottom:420.577500px;}
.y59{bottom:439.515000px;}
.y18{bottom:452.817000px;}
.y38{bottom:453.163500px;}
.y58{bottom:461.809500px;}
.y7b{bottom:472.135500px;}
.y37{bottom:475.458000px;}
.y17{bottom:489.504000px;}
.y7a{bottom:492.459000px;}
.y57{bottom:495.196500px;}
.y36{bottom:508.705500px;}
.y79{bottom:512.782500px;}
.y16{bottom:526.191000px;}
.y56{bottom:531.724500px;}
.y35{bottom:535.603500px;}
.y78{bottom:540.579000px;}
.y55{bottom:558.624000px;}
.y77{bottom:560.902500px;}
.y15{bottom:562.878000px;}
.y76{bottom:581.226000px;}
.y34{bottom:586.926000px;}
.y14{bottom:599.566500px;}
.y33{bottom:607.249500px;}
.y75{bottom:609.022500px;}
.y54{bottom:611.140500px;}
.y32{bottom:627.573000px;}
.y74{bottom:629.346000px;}
.y53{bottom:631.465500px;}
.y13{bottom:636.253500px;}
.y73{bottom:649.669500px;}
.y31{bottom:656.113500px;}
.y52{bottom:660.004500px;}
.y12{bottom:672.940500px;}
.y72{bottom:686.197500px;}
.y51{bottom:698.245500px;}
.y30{bottom:706.011000px;}
.y11{bottom:709.629000px;}
.y50{bottom:720.817500px;}
.y4f{bottom:732.042000px;}
.y10{bottom:746.316000px;}
.y71{bottom:748.956000px;}
.y2f{bottom:752.557500px;}
.y70{bottom:769.279500px;}
.y4e{bottom:776.176500px;}
.yf{bottom:797.874000px;}
.y6f{bottom:800.064000px;}
.y2e{bottom:806.271000px;}
.ye{bottom:815.806500px;}
.y6e{bottom:820.387500px;}
.y2d{bottom:826.594500px;}
.y4d{bottom:827.499000px;}
.yd{bottom:833.739000px;}
.y2c{bottom:846.918000px;}
.y4c{bottom:847.822500px;}
.y6d{bottom:848.184000px;}
.yc{bottom:851.673000px;}
.y4b{bottom:868.146000px;}
.y6c{bottom:868.507500px;}
.yb{bottom:869.605500px;}
.y2b{bottom:875.457000px;}
.ya{bottom:887.538000px;}
.y4a{bottom:896.686500px;}
.y6b{bottom:901.419000px;}
.y9{bottom:905.470500px;}
.y2a{bottom:914.607000px;}
.y8{bottom:932.743500px;}
.y49{bottom:939.724500px;}
.y6a{bottom:941.310000px;}
.y29{bottom:951.136500px;}
.y7{bottom:968.608500px;}
.y48{bottom:976.486500px;}
.y69{bottom:992.631000px;}
.y6{bottom:995.508000px;}
.y28{bottom:1010.712000px;}
.y68{bottom:1012.954500px;}
.y47{bottom:1013.014500px;}
.y27{bottom:1016.355000px;}
.y5{bottom:1018.821000px;}
.y67{bottom:1033.279500px;}
.y26{bottom:1044.150000px;}
.y4{bottom:1048.111500px;}
.y66{bottom:1061.818500px;}
.y46{bottom:1065.532500px;}
.y25{bottom:1071.946500px;}
.y45{bottom:1085.856000px;}
.y3{bottom:1086.367500px;}
.y24{bottom:1099.741500px;}
.y65{bottom:1101.868500px;}
.y44{bottom:1106.179500px;}
.y2{bottom:1112.668500px;}
.y23{bottom:1127.538000px;}
.y43{bottom:1134.720000px;}
.y1{bottom:1136.902500px;}
.y64{bottom:1138.396500px;}
.h5{height:44.831700px;}
.h13{height:46.865494px;}
.h4{height:49.090950px;}
.h3{height:51.216077px;}
.h7{height:55.346184px;}
.hd{height:57.897908px;}
.he{height:58.580184px;}
.h8{height:59.913908px;}
.h6{height:64.557900px;}
.h9{height:71.662950px;}
.ha{height:72.785088px;}
.h2{height:77.469300px;}
.hf{height:91.145494px;}
.hb{height:91.706184px;}
.hc{height:93.988950px;}
.h12{height:106.065908px;}
.h10{height:136.043494px;}
.h11{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.xf{left:110.368500px;}
.xb{left:122.115000px;}
.x3{left:132.691500px;}
.x25{left:142.114500px;}
.x14{left:144.313500px;}
.xc{left:146.707500px;}
.xa{left:147.717000px;}
.x9{left:148.909500px;}
.x2b{left:161.109000px;}
.x26{left:163.024500px;}
.x12{left:183.801000px;}
.x19{left:221.908500px;}
.x15{left:257.121000px;}
.x16{left:258.397500px;}
.x13{left:270.100500px;}
.xe{left:280.059000px;}
.x22{left:284.085000px;}
.x7{left:291.610500px;}
.x4{left:296.185500px;}
.x1a{left:320.478000px;}
.x1e{left:328.702500px;}
.x5{left:336.241500px;}
.x10{left:344.919000px;}
.x1b{left:354.651000px;}
.x6{left:363.582000px;}
.x21{left:366.172500px;}
.x1f{left:384.766500px;}
.x2{left:405.519000px;}
.x1c{left:407.550000px;}
.x8{left:413.811000px;}
.xd{left:442.366500px;}
.x23{left:470.866500px;}
.x24{left:481.843500px;}
.x1d{left:513.826500px;}
.x17{left:564.013500px;}
.x11{left:565.927500px;}
.x27{left:618.201000px;}
.x28{left:640.015500px;}
.x29{left:692.674500px;}
.x2a{left:709.102500px;}
.x20{left:728.584500px;}
.x18{left:738.006000px;}
@media print{
.v8{vertical-align:-52.762667pt;}
.v3{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:8.730667pt;}
.vc{vertical-align:16.810667pt;}
.v5{vertical-align:20.064000pt;}
.va{vertical-align:21.114667pt;}
.v4{vertical-align:22.906667pt;}
.vf{vertical-align:24.021333pt;}
.vd{vertical-align:30.901333pt;}
.v9{vertical-align:39.909333pt;}
.v2{vertical-align:46.869333pt;}
.vb{vertical-align:49.744000pt;}
.v6{vertical-align:61.637333pt;}
.ve{vertical-align:63.930667pt;}
.v7{vertical-align:79.189333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.002335pt;}
.ls2b{letter-spacing:0.002879pt;}
.ls43{letter-spacing:0.008649pt;}
.ls3d{letter-spacing:0.009612pt;}
.ls17{letter-spacing:0.010155pt;}
.ls3b{letter-spacing:0.013984pt;}
.ls2{letter-spacing:0.019467pt;}
.lsd{letter-spacing:0.024831pt;}
.ls38{letter-spacing:1.617432pt;}
.ls3e{letter-spacing:1.833187pt;}
.ls3c{letter-spacing:2.088215pt;}
.ls3f{letter-spacing:2.653398pt;}
.ls25{letter-spacing:2.658731pt;}
.ls24{letter-spacing:2.669919pt;}
.ls27{letter-spacing:2.672911pt;}
.lsc{letter-spacing:3.374548pt;}
.ls10{letter-spacing:4.712731pt;}
.lse{letter-spacing:4.750730pt;}
.ls40{letter-spacing:5.435823pt;}
.ls36{letter-spacing:6.357729pt;}
.ls2d{letter-spacing:6.371332pt;}
.ls15{letter-spacing:6.373547pt;}
.ls37{letter-spacing:6.375733pt;}
.ls30{letter-spacing:8.465403pt;}
.ls5{letter-spacing:8.820222pt;}
.ls4{letter-spacing:8.873356pt;}
.ls1e{letter-spacing:9.706480pt;}
.ls9{letter-spacing:9.716372pt;}
.ls47{letter-spacing:11.578191pt;}
.ls1d{letter-spacing:12.777682pt;}
.ls3a{letter-spacing:12.916374pt;}
.ls1{letter-spacing:14.718081pt;}
.ls0{letter-spacing:14.771215pt;}
.ls39{letter-spacing:15.586591pt;}
.ls16{letter-spacing:16.116377pt;}
.ls7{letter-spacing:16.174559pt;}
.ls26{letter-spacing:17.779850pt;}
.ls2e{letter-spacing:18.818104pt;}
.ls28{letter-spacing:18.818731pt;}
.ls3{letter-spacing:19.227818pt;}
.ls22{letter-spacing:19.374562pt;}
.ls32{letter-spacing:19.432743pt;}
.ls13{letter-spacing:19.490925pt;}
.ls6{letter-spacing:19.549107pt;}
.ls18{letter-spacing:20.910730pt;}
.ls34{letter-spacing:21.003654pt;}
.ls8{letter-spacing:21.006523pt;}
.ls11{letter-spacing:21.011856pt;}
.ls1b{letter-spacing:21.270633pt;}
.ls35{letter-spacing:22.536672pt;}
.ls23{letter-spacing:22.749110pt;}
.ls33{letter-spacing:24.261838pt;}
.ls19{letter-spacing:25.708390pt;}
.ls21{letter-spacing:27.070016pt;}
.ls2a{letter-spacing:27.461841pt;}
.ls1c{letter-spacing:27.630530pt;}
.lsb{letter-spacing:29.090933pt;}
.ls12{letter-spacing:34.443665pt;}
.ls14{letter-spacing:34.511477pt;}
.ls2f{letter-spacing:37.951477pt;}
.ls2c{letter-spacing:38.138144pt;}
.ls1f{letter-spacing:58.181867pt;}
.ls45{letter-spacing:126.080105pt;}
.ls20{letter-spacing:201.949259pt;}
.ls46{letter-spacing:558.545920pt;}
.ls29{letter-spacing:687.942391pt;}
.ls41{letter-spacing:708.306045pt;}
.ls31{letter-spacing:809.426129pt;}
.ls44{letter-spacing:850.386163pt;}
.ls1a{letter-spacing:1019.346304pt;}
.lsa{letter-spacing:1167.186427pt;}
.ws29{word-spacing:-76.513067pt;}
.ws15{word-spacing:-58.181867pt;}
.ws20{word-spacing:-37.899668pt;}
.ws1e{word-spacing:-29.521250pt;}
.ws1d{word-spacing:-28.241478pt;}
.ws1f{word-spacing:-28.183296pt;}
.ws37{word-spacing:-18.583288pt;}
.ws2c{word-spacing:-18.350561pt;}
.ws1a{word-spacing:-16.162923pt;}
.ws49{word-spacing:-12.543875pt;}
.ws44{word-spacing:-11.154697pt;}
.ws2a{word-spacing:-8.110385pt;}
.ws23{word-spacing:-8.033872pt;}
.ws14{word-spacing:-6.504733pt;}
.ws24{word-spacing:-6.446551pt;}
.ws25{word-spacing:-1.268365pt;}
.ws1c{word-spacing:-1.152001pt;}
.ws1{word-spacing:-0.091815pt;}
.ws13{word-spacing:-0.076513pt;}
.ws28{word-spacing:-0.058182pt;}
.ws2b{word-spacing:-0.046545pt;}
.ws19{word-spacing:0.000000pt;}
.ws22{word-spacing:0.011636pt;}
.ws2f{word-spacing:0.302546pt;}
.ws4{word-spacing:0.791273pt;}
.ws33{word-spacing:1.757092pt;}
.ws56{word-spacing:2.826722pt;}
.ws4b{word-spacing:2.920730pt;}
.ws8{word-spacing:2.932989pt;}
.ws55{word-spacing:2.978912pt;}
.wsb{word-spacing:2.986123pt;}
.ws50{word-spacing:3.037093pt;}
.ws48{word-spacing:3.045532pt;}
.wsd{word-spacing:3.145525pt;}
.ws2e{word-spacing:3.153457pt;}
.ws6{word-spacing:3.211639pt;}
.ws1b{word-spacing:3.269821pt;}
.ws12{word-spacing:3.379314pt;}
.ws27{word-spacing:3.386185pt;}
.ws2{word-spacing:3.443098pt;}
.ws3a{word-spacing:3.560730pt;}
.ws53{word-spacing:3.618912pt;}
.ws3{word-spacing:3.700367pt;}
.ws16{word-spacing:3.758549pt;}
.ws52{word-spacing:4.165822pt;}
.ws30{word-spacing:4.258913pt;}
.wsf{word-spacing:4.580139pt;}
.ws40{word-spacing:4.666186pt;}
.ws4a{word-spacing:5.131641pt;}
.ws10{word-spacing:5.292133pt;}
.wse{word-spacing:5.430281pt;}
.ws46{word-spacing:5.597096pt;}
.ws39{word-spacing:6.237096pt;}
.ws3b{word-spacing:6.272150pt;}
.ws21{word-spacing:6.272564pt;}
.ws4d{word-spacing:6.291240pt;}
.ws11{word-spacing:6.354810pt;}
.ws38{word-spacing:7.191279pt;}
.ws5{word-spacing:7.307642pt;}
.ws9{word-spacing:8.405778pt;}
.ws7{word-spacing:8.830849pt;}
.ws36{word-spacing:8.913462pt;}
.ws18{word-spacing:9.669826pt;}
.ws34{word-spacing:9.844372pt;}
.ws35{word-spacing:10.193463pt;}
.ws4f{word-spacing:10.542554pt;}
.ws26{word-spacing:15.371649pt;}
.ws32{word-spacing:16.116377pt;}
.wsa{word-spacing:18.968790pt;}
.ws4e{word-spacing:20.840745pt;}
.wsc{word-spacing:22.581893pt;}
.ws54{word-spacing:24.145475pt;}
.ws3e{word-spacing:24.215293pt;}
.ws51{word-spacing:26.949841pt;}
.ws17{word-spacing:28.615887pt;}
.ws3f{word-spacing:28.845426pt;}
.ws31{word-spacing:29.151478pt;}
.ws43{word-spacing:29.381018pt;}
.ws47{word-spacing:29.393479pt;}
.ws0{word-spacing:34.247169pt;}
.ws4c{word-spacing:41.029852pt;}
.ws2d{word-spacing:42.018944pt;}
.ws45{word-spacing:42.426217pt;}
.ws42{word-spacing:56.622593pt;}
.ws3d{word-spacing:67.386238pt;}
.ws41{word-spacing:88.180437pt;}
.ws3c{word-spacing:284.288237pt;}
._1e{margin-left:-34.443665pt;}
._0{margin-left:-8.630654pt;}
._25{margin-left:-7.192228pt;}
._5{margin-left:-5.164646pt;}
._a{margin-left:-4.091308pt;}
._1{margin-left:-2.754464pt;}
._4{margin-left:-1.721549pt;}
._6{width:1.570910pt;}
._3{width:2.570833pt;}
._20{width:4.917235pt;}
._1f{width:6.013033pt;}
._7{width:14.771215pt;}
._11{width:16.174559pt;}
._26{width:19.374562pt;}
._19{width:20.363653pt;}
._22{width:21.959237pt;}
._d{width:24.314103pt;}
._8{width:26.609463pt;}
._c{width:29.170493pt;}
._10{width:30.069015pt;}
._b{width:32.073755pt;}
._21{width:38.256533pt;}
._9{width:40.744913pt;}
._2{width:45.724102pt;}
._e{width:53.818227pt;}
._28{width:58.181797pt;}
._1d{width:84.535080pt;}
._1c{width:86.077200pt;}
._17{width:125.857102pt;}
._13{width:219.717993pt;}
._29{width:337.756103pt;}
._24{width:395.578511pt;}
._27{width:456.300790pt;}
._15{width:490.520308pt;}
._23{width:674.735108pt;}
._16{width:942.555965pt;}
._18{width:995.271908pt;}
._14{width:1036.057397pt;}
._1b{width:1249.948153pt;}
._1a{width:1280.013964pt;}
._12{width:1281.455613pt;}
._f{width:1683.177495pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y21{bottom:115.450667pt;}
.y63{bottom:119.908000pt;}
.y42{bottom:122.806667pt;}
.y62{bottom:137.973333pt;}
.y20{bottom:140.157333pt;}
.y41{bottom:155.276000pt;}
.y61{bottom:156.038667pt;}
.y1f{bottom:164.865333pt;}
.y60{bottom:181.408000pt;}
.y1e{bottom:192.100000pt;}
.y40{bottom:208.232000pt;}
.y5f{bottom:216.208000pt;}
.y1d{bottom:226.229333pt;}
.y3f{bottom:226.298667pt;}
.y3e{bottom:244.364000pt;}
.y5e{bottom:248.677333pt;}
.y1c{bottom:272.058667pt;}
.y3d{bottom:274.426667pt;}
.y5d{bottom:295.360000pt;}
.y1b{bottom:304.670667pt;}
.y3c{bottom:310.148000pt;}
.y5c{bottom:313.425333pt;}
.y7e{bottom:327.561333pt;}
.y3b{bottom:328.213333pt;}
.y5b{bottom:331.490667pt;}
.y1a{bottom:337.281333pt;}
.y7d{bottom:343.502667pt;}
.y3a{bottom:346.280000pt;}
.y5a{bottom:356.858667pt;}
.y19{bottom:369.892000pt;}
.y39{bottom:371.648000pt;}
.y7c{bottom:373.846667pt;}
.y59{bottom:390.680000pt;}
.y18{bottom:402.504000pt;}
.y38{bottom:402.812000pt;}
.y58{bottom:410.497333pt;}
.y7b{bottom:419.676000pt;}
.y37{bottom:422.629333pt;}
.y17{bottom:435.114667pt;}
.y7a{bottom:437.741333pt;}
.y57{bottom:440.174667pt;}
.y36{bottom:452.182667pt;}
.y79{bottom:455.806667pt;}
.y16{bottom:467.725333pt;}
.y56{bottom:472.644000pt;}
.y35{bottom:476.092000pt;}
.y78{bottom:480.514667pt;}
.y55{bottom:496.554667pt;}
.y77{bottom:498.580000pt;}
.y15{bottom:500.336000pt;}
.y76{bottom:516.645333pt;}
.y34{bottom:521.712000pt;}
.y14{bottom:532.948000pt;}
.y33{bottom:539.777333pt;}
.y75{bottom:541.353333pt;}
.y54{bottom:543.236000pt;}
.y32{bottom:557.842667pt;}
.y74{bottom:559.418667pt;}
.y53{bottom:561.302667pt;}
.y13{bottom:565.558667pt;}
.y73{bottom:577.484000pt;}
.y31{bottom:583.212000pt;}
.y52{bottom:586.670667pt;}
.y12{bottom:598.169333pt;}
.y72{bottom:609.953333pt;}
.y51{bottom:620.662667pt;}
.y30{bottom:627.565333pt;}
.y11{bottom:630.781333pt;}
.y50{bottom:640.726667pt;}
.y4f{bottom:650.704000pt;}
.y10{bottom:663.392000pt;}
.y71{bottom:665.738667pt;}
.y2f{bottom:668.940000pt;}
.y70{bottom:683.804000pt;}
.y4e{bottom:689.934667pt;}
.yf{bottom:709.221333pt;}
.y6f{bottom:711.168000pt;}
.y2e{bottom:716.685333pt;}
.ye{bottom:725.161333pt;}
.y6e{bottom:729.233333pt;}
.y2d{bottom:734.750667pt;}
.y4d{bottom:735.554667pt;}
.yd{bottom:741.101333pt;}
.y2c{bottom:752.816000pt;}
.y4c{bottom:753.620000pt;}
.y6d{bottom:753.941333pt;}
.yc{bottom:757.042667pt;}
.y4b{bottom:771.685333pt;}
.y6c{bottom:772.006667pt;}
.yb{bottom:772.982667pt;}
.y2b{bottom:778.184000pt;}
.ya{bottom:788.922667pt;}
.y4a{bottom:797.054667pt;}
.y6b{bottom:801.261333pt;}
.y9{bottom:804.862667pt;}
.y2a{bottom:812.984000pt;}
.y8{bottom:829.105333pt;}
.y49{bottom:835.310667pt;}
.y6a{bottom:836.720000pt;}
.y29{bottom:845.454667pt;}
.y7{bottom:860.985333pt;}
.y48{bottom:867.988000pt;}
.y69{bottom:882.338667pt;}
.y6{bottom:884.896000pt;}
.y28{bottom:898.410667pt;}
.y68{bottom:900.404000pt;}
.y47{bottom:900.457333pt;}
.y27{bottom:903.426667pt;}
.y5{bottom:905.618667pt;}
.y67{bottom:918.470667pt;}
.y26{bottom:928.133333pt;}
.y4{bottom:931.654667pt;}
.y66{bottom:943.838667pt;}
.y46{bottom:947.140000pt;}
.y25{bottom:952.841333pt;}
.y45{bottom:965.205333pt;}
.y3{bottom:965.660000pt;}
.y24{bottom:977.548000pt;}
.y65{bottom:979.438667pt;}
.y44{bottom:983.270667pt;}
.y2{bottom:989.038667pt;}
.y23{bottom:1002.256000pt;}
.y43{bottom:1008.640000pt;}
.y1{bottom:1010.580000pt;}
.y64{bottom:1011.908000pt;}
.h5{height:39.850400pt;}
.h13{height:41.658217pt;}
.h4{height:43.636400pt;}
.h3{height:45.525402pt;}
.h7{height:49.196608pt;}
.hd{height:51.464807pt;}
.he{height:52.071275pt;}
.h8{height:53.256807pt;}
.h6{height:57.384800pt;}
.h9{height:63.700400pt;}
.ha{height:64.697856pt;}
.h2{height:68.861600pt;}
.hf{height:81.018217pt;}
.hb{height:81.516608pt;}
.hc{height:83.545733pt;}
.h12{height:94.280807pt;}
.h10{height:120.927550pt;}
.h11{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.xf{left:98.105333pt;}
.xb{left:108.546667pt;}
.x3{left:117.948000pt;}
.x25{left:126.324000pt;}
.x14{left:128.278667pt;}
.xc{left:130.406667pt;}
.xa{left:131.304000pt;}
.x9{left:132.364000pt;}
.x2b{left:143.208000pt;}
.x26{left:144.910667pt;}
.x12{left:163.378667pt;}
.x19{left:197.252000pt;}
.x15{left:228.552000pt;}
.x16{left:229.686667pt;}
.x13{left:240.089333pt;}
.xe{left:248.941333pt;}
.x22{left:252.520000pt;}
.x7{left:259.209333pt;}
.x4{left:263.276000pt;}
.x1a{left:284.869333pt;}
.x1e{left:292.180000pt;}
.x5{left:298.881333pt;}
.x10{left:306.594667pt;}
.x1b{left:315.245333pt;}
.x6{left:323.184000pt;}
.x21{left:325.486667pt;}
.x1f{left:342.014667pt;}
.x2{left:360.461333pt;}
.x1c{left:362.266667pt;}
.x8{left:367.832000pt;}
.xd{left:393.214667pt;}
.x23{left:418.548000pt;}
.x24{left:428.305333pt;}
.x1d{left:456.734667pt;}
.x17{left:501.345333pt;}
.x11{left:503.046667pt;}
.x27{left:549.512000pt;}
.x28{left:568.902667pt;}
.x29{left:615.710667pt;}
.x2a{left:630.313333pt;}
.x20{left:647.630667pt;}
.x18{left:656.005333pt;}
}




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