
    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_a4c325fe53abfaf6fcd382d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.949085;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_0604de6aaf648b2b84fd16b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_8889902e9f6be52307cfd2eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.390000;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_c0f5ec9bedfe41a402d46931.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111000;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_5fc3d8c57950717fde306408.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_1e5131ebe419e7d4223f2870.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111000;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_36188509c4ba0f5f44c25c8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.502000;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_5362bec4a4bbab1affbae0d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949085;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_2e084f18bc9c31d369299eb6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936254;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_6a1f4e1df86e5df7da896934.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m14{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mf{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.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);}
.m4{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);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.m8{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);}
.v1{vertical-align:-9.366000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.462000px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.001224px;}
.ls6{letter-spacing:0.214387px;}
.lse{letter-spacing:0.552952px;}
.ls13{letter-spacing:1.310294px;}
.ls12{letter-spacing:1.744387px;}
.ls9{letter-spacing:1.750387px;}
.ls2c{letter-spacing:2.386387px;}
.ls24{letter-spacing:2.392387px;}
.ls17{letter-spacing:2.615563px;}
.ls27{letter-spacing:2.988952px;}
.ls14{letter-spacing:3.707495px;}
.ls1f{letter-spacing:3.942952px;}
.ls18{letter-spacing:5.237495px;}
.ls29{letter-spacing:5.799089px;}
.lsb{letter-spacing:6.251563px;}
.ls7{letter-spacing:6.257563px;}
.ls21{letter-spacing:7.584562px;}
.lsc{letter-spacing:8.168880px;}
.ls8{letter-spacing:11.750880px;}
.lsd{letter-spacing:12.056880px;}
.ls10{letter-spacing:12.350880px;}
.ls23{letter-spacing:12.876562px;}
.ls20{letter-spacing:14.749978px;}
.ls1a{letter-spacing:18.634718px;}
.ls1e{letter-spacing:18.934718px;}
.ls1c{letter-spacing:19.234718px;}
.ls22{letter-spacing:20.053978px;}
.ls1b{letter-spacing:21.508387px;}
.ls25{letter-spacing:22.143164px;}
.ls26{letter-spacing:22.377484px;}
.ls1d{letter-spacing:24.915089px;}
.ls15{letter-spacing:25.702178px;}
.ls19{letter-spacing:25.987978px;}
.ls11{letter-spacing:29.290178px;}
.ls16{letter-spacing:29.590178px;}
.ls3{letter-spacing:29.890178px;}
.ls5{letter-spacing:29.922755px;}
.ls4{letter-spacing:29.930067px;}
.ls1{letter-spacing:44.520648px;}
.ls28{letter-spacing:44.579228px;}
.ls0{letter-spacing:47.039579px;}
.ls2b{letter-spacing:51.784543px;}
.lsa{letter-spacing:241.472294px;}
.lsf{letter-spacing:248.402294px;}
.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;}
}
.ws28{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.058580px;}
.ws19{word-spacing:0.000000px;}
.ws53{word-spacing:16.753823px;}
.ws6d{word-spacing:16.988142px;}
.ws54{word-spacing:17.163881px;}
.ws57{word-spacing:17.456780px;}
.ws5f{word-spacing:17.573940px;}
.ws60{word-spacing:18.686956px;}
.ws41{word-spacing:19.326757px;}
.ws40{word-spacing:19.331334px;}
.ws46{word-spacing:19.624233px;}
.ws2b{word-spacing:19.975712px;}
.ws42{word-spacing:20.092871px;}
.ws3f{word-spacing:20.327191px;}
.wsf{word-spacing:20.795829px;}
.ws1b{word-spacing:20.971568px;}
.ws1d{word-spacing:21.030148px;}
.wse{word-spacing:21.205888px;}
.ws45{word-spacing:21.381627px;}
.ws39{word-spacing:21.615946px;}
.ws17{word-spacing:21.674526px;}
.ws29{word-spacing:21.698021px;}
.ws2a{word-spacing:21.717013px;}
.ws4{word-spacing:21.733106px;}
.ws21{word-spacing:21.791686px;}
.ws24{word-spacing:21.850265px;}
.ws1a{word-spacing:21.908845px;}
.ws47{word-spacing:21.967425px;}
.ws14{word-spacing:22.026005px;}
.ws22{word-spacing:22.084328px;}
.ws11{word-spacing:22.084585px;}
.ws38{word-spacing:22.085133px;}
.ws1e{word-spacing:22.085804px;}
.ws34{word-spacing:22.143164px;}
.ws35{word-spacing:22.171913px;}
.ws16{word-spacing:22.201744px;}
.ws59{word-spacing:22.260324px;}
.ws44{word-spacing:22.318904px;}
.ws13{word-spacing:22.377484px;}
.ws58{word-spacing:22.436063px;}
.ws5a{word-spacing:22.494643px;}
.ws36{word-spacing:22.553223px;}
.ws18{word-spacing:22.787542px;}
.ws4b{word-spacing:22.846122px;}
.ws5b{word-spacing:22.904702px;}
.ws62{word-spacing:23.080441px;}
.ws3c{word-spacing:23.197601px;}
.ws10{word-spacing:23.256181px;}
.ws4c{word-spacing:23.314760px;}
.ws27{word-spacing:23.373340px;}
.ws2c{word-spacing:23.607659px;}
.ws5e{word-spacing:23.783399px;}
.ws1f{word-spacing:23.900558px;}
.ws6a{word-spacing:23.959138px;}
.ws20{word-spacing:24.369197px;}
.ws3a{word-spacing:24.486356px;}
.wsa{word-spacing:24.662096px;}
.ws3d{word-spacing:25.013575px;}
.ws61{word-spacing:25.365053px;}
.ws43{word-spacing:25.599373px;}
.ws66{word-spacing:25.892272px;}
.ws52{word-spacing:26.068011px;}
.ws3{word-spacing:26.302330px;}
.ws1{word-spacing:26.501592px;}
.ws4f{word-spacing:26.536649px;}
.ws12{word-spacing:26.653809px;}
.ws6{word-spacing:26.829548px;}
.ws51{word-spacing:26.887293px;}
.ws5{word-spacing:26.888128px;}
.ws64{word-spacing:26.946708px;}
.ws7{word-spacing:27.473926px;}
.ws23{word-spacing:27.591086px;}
.wsd{word-spacing:27.766825px;}
.ws48{word-spacing:28.645522px;}
.ws5d{word-spacing:29.055581px;}
.ws5c{word-spacing:29.114161px;}
.ws65{word-spacing:29.172740px;}
.ws37{word-spacing:29.465639px;}
.wsb{word-spacing:29.582799px;}
.ws3b{word-spacing:29.641379px;}
.ws25{word-spacing:29.875698px;}
.ws26{word-spacing:29.879290px;}
.ws3e{word-spacing:29.934278px;}
.ws55{word-spacing:30.637235px;}
.ws63{word-spacing:30.695815px;}
.ws30{word-spacing:30.930134px;}
.ws68{word-spacing:32.570369px;}
.ws33{word-spacing:32.863268px;}
.ws50{word-spacing:32.980427px;}
.ws2f{word-spacing:33.507646px;}
.ws2d{word-spacing:33.530087px;}
.ws2e{word-spacing:33.550247px;}
.ws4d{word-spacing:33.657725px;}
.ws8{word-spacing:34.210603px;}
.ws4e{word-spacing:34.854981px;}
.ws4a{word-spacing:34.913561px;}
.ws49{word-spacing:35.030720px;}
.wsc{word-spacing:35.382199px;}
.ws31{word-spacing:36.085157px;}
.ws32{word-spacing:36.090207px;}
.ws9{word-spacing:36.846694px;}
.ws0{word-spacing:38.162202px;}
.ws56{word-spacing:39.834264px;}
.ws67{word-spacing:42.821834px;}
.ws69{word-spacing:44.052010px;}
.ws6c{word-spacing:44.989286px;}
.ws15{word-spacing:51.878448px;}
.ws6b{word-spacing:58.814119px;}
.ws2{word-spacing:84.270845px;}
._16{margin-left:-4.180776px;}
._b{margin-left:-2.817071px;}
._18{width:2.988780px;}
._13{width:17.983999px;}
._1f{width:21.665130px;}
._17{width:24.017718px;}
._3{width:26.009431px;}
._0{width:28.176884px;}
._7{width:29.231320px;}
._5{width:31.340193px;}
._14{width:32.980427px;}
._1a{width:34.152023px;}
._f{width:35.499359px;}
._1{width:37.432492px;}
._12{width:38.545508px;}
._2{width:40.712961px;}
._15{width:44.462068px;}
._4{width:46.453781px;}
._19{width:47.918276px;}
._10{width:49.148452px;}
._1d{width:50.905846px;}
._d{width:51.937841px;}
._e{width:56.953800px;}
._8{width:71.701675px;}
._1c{width:74.747825px;}
._11{width:84.355200px;}
._1e{width:89.861413px;}
._1b{width:126.590948px;}
._9{width:139.127025px;}
._c{width:161.277451px;}
._a{width:193.174927px;}
._6{width:651.758855px;}
.fc1{color:rgb(33,68,120);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.636200px;}
.fs3{font-size:58.579800px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:70.296000px;}
.fs2{font-size:84.355200px;}
.fs0{font-size:101.226000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:37.218000px;}
.ya7{bottom:82.050000px;}
.y4e{bottom:87.513000px;}
.y22{bottom:96.810000px;}
.ya6{bottom:99.984000px;}
.y73{bottom:100.392000px;}
.y4d{bottom:105.445500px;}
.y21{bottom:114.742500px;}
.ya5{bottom:117.916500px;}
.y72{bottom:118.324500px;}
.y4c{bottom:123.378000px;}
.y20{bottom:132.676500px;}
.ya4{bottom:135.849000px;}
.y71{bottom:136.257000px;}
.y4b{bottom:141.310500px;}
.y82{bottom:146.392500px;}
.y1f{bottom:150.609000px;}
.ya3{bottom:153.781500px;}
.y70{bottom:154.189500px;}
.y4a{bottom:159.244500px;}
.y81{bottom:164.325000px;}
.y1e{bottom:168.541500px;}
.ya2{bottom:171.714000px;}
.y6f{bottom:172.122000px;}
.y49{bottom:177.177000px;}
.y80{bottom:182.257500px;}
.ya1{bottom:189.646500px;}
.y6e{bottom:190.054500px;}
.y48{bottom:195.109500px;}
.y7f{bottom:200.190000px;}
.y1d{bottom:204.729000px;}
.y6d{bottom:207.988500px;}
.y47{bottom:213.042000px;}
.y7e{bottom:218.122500px;}
.y6c{bottom:225.921000px;}
.y46{bottom:230.974500px;}
.y1b{bottom:231.627000px;}
.y1c{bottom:231.628500px;}
.ya0{bottom:234.073500px;}
.y7d{bottom:236.055000px;}
.y9c{bottom:248.718000px;}
.y45{bottom:248.907000px;}
.y9f{bottom:252.006000px;}
.y7c{bottom:253.989000px;}
.y6b{bottom:262.108500px;}
.y9e{bottom:269.938500px;}
.y7b{bottom:271.921500px;}
.y1a{bottom:283.284000px;}
.y9d{bottom:287.871000px;}
.y7a{bottom:289.854000px;}
.y19{bottom:301.216500px;}
.y44{bottom:301.839000px;}
.y79{bottom:307.786500px;}
.y6a{bottom:313.764000px;}
.y18{bottom:319.149000px;}
.y78{bottom:325.719000px;}
.y43{bottom:327.243000px;}
.y69{bottom:331.696500px;}
.y17{bottom:337.083000px;}
.y9b{bottom:343.230000px;}
.y77{bottom:343.653000px;}
.y68{bottom:349.630500px;}
.y16{bottom:355.015500px;}
.y9a{bottom:361.162500px;}
.y76{bottom:361.585500px;}
.y42{bottom:363.706500px;}
.y67{bottom:367.563000px;}
.y15{bottom:372.948000px;}
.y99{bottom:379.095000px;}
.y75{bottom:379.518000px;}
.y41{bottom:381.639000px;}
.y66{bottom:385.495500px;}
.y14{bottom:390.880500px;}
.y98{bottom:397.027500px;}
.y74{bottom:397.450500px;}
.y65{bottom:403.428000px;}
.y13{bottom:408.813000px;}
.y40{bottom:415.383000px;}
.y64{bottom:421.360500px;}
.y12{bottom:426.745500px;}
.y97{bottom:426.915000px;}
.y3f{bottom:433.315500px;}
.y63{bottom:439.293000px;}
.y11{bottom:444.679500px;}
.y96{bottom:444.847500px;}
.y3e{bottom:451.249500px;}
.y62{bottom:457.227000px;}
.y10{bottom:462.612000px;}
.y3d{bottom:469.182000px;}
.y95{bottom:474.736500px;}
.y61{bottom:475.159500px;}
.yf{bottom:480.544500px;}
.y3c{bottom:487.114500px;}
.y94{bottom:492.669000px;}
.y60{bottom:493.092000px;}
.ye{bottom:498.477000px;}
.y3b{bottom:505.047000px;}
.y5f{bottom:511.024500px;}
.yd{bottom:516.409500px;}
.y93{bottom:522.556500px;}
.y3a{bottom:522.979500px;}
.y5e{bottom:528.957000px;}
.yc{bottom:534.343500px;}
.y92{bottom:540.489000px;}
.y39{bottom:540.912000px;}
.y5d{bottom:546.889500px;}
.yb{bottom:552.276000px;}
.y38{bottom:558.846000px;}
.y5c{bottom:564.823500px;}
.ya{bottom:570.208500px;}
.y91{bottom:570.378000px;}
.y37{bottom:576.778500px;}
.y5b{bottom:582.756000px;}
.y9{bottom:588.141000px;}
.y90{bottom:588.310500px;}
.y36{bottom:594.711000px;}
.y5a{bottom:600.688500px;}
.y8{bottom:606.073500px;}
.y35{bottom:612.643500px;}
.y8f{bottom:618.198000px;}
.y59{bottom:618.621000px;}
.y7{bottom:624.006000px;}
.y34{bottom:630.576000px;}
.y8e{bottom:636.130500px;}
.y58{bottom:636.553500px;}
.y6{bottom:641.940000px;}
.y33{bottom:648.508500px;}
.y57{bottom:654.486000px;}
.y8d{bottom:666.019500px;}
.y32{bottom:666.442500px;}
.y56{bottom:672.420000px;}
.y5{bottom:678.126000px;}
.y8c{bottom:683.952000px;}
.y31{bottom:684.375000px;}
.y55{bottom:690.352500px;}
.y8b{bottom:701.884500px;}
.y30{bottom:702.307500px;}
.y54{bottom:708.285000px;}
.y2f{bottom:720.240000px;}
.y53{bottom:726.217500px;}
.y8a{bottom:738.093000px;}
.y2e{bottom:738.172500px;}
.y52{bottom:744.150000px;}
.y4{bottom:744.727500px;}
.y2d{bottom:756.105000px;}
.y51{bottom:762.082500px;}
.y2c{bottom:774.039000px;}
.y3{bottom:779.568000px;}
.y89{bottom:789.750000px;}
.y2b{bottom:791.971500px;}
.y50{bottom:794.959500px;}
.y88{bottom:807.682500px;}
.y2a{bottom:809.904000px;}
.y2{bottom:822.457500px;}
.y87{bottom:825.615000px;}
.y29{bottom:827.836500px;}
.y86{bottom:843.547500px;}
.y28{bottom:845.769000px;}
.y1{bottom:855.333000px;}
.y85{bottom:861.480000px;}
.y27{bottom:863.701500px;}
.y84{bottom:879.412500px;}
.y26{bottom:881.635500px;}
.y25{bottom:899.568000px;}
.y83{bottom:913.615500px;}
.y24{bottom:917.500500px;}
.y23{bottom:975.184500px;}
.h7{height:26.659918px;}
.h9{height:41.544042px;}
.h5{height:42.177456px;}
.h6{height:42.880414px;}
.h3{height:50.613120px;}
.h8{height:52.363426px;}
.h4{height:61.748006px;}
.h2{height:72.882720px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x23{left:83.428500px;}
.x5{left:85.039500px;}
.x32{left:99.684000px;}
.x6{left:107.455500px;}
.x26{left:109.641000px;}
.x19{left:115.215000px;}
.x7{left:119.499000px;}
.x8{left:122.400000px;}
.x1{left:129.810000px;}
.x27{left:142.002000px;}
.x1a{left:153.489000px;}
.xd{left:156.501000px;}
.xb{left:158.070000px;}
.xc{left:159.636000px;}
.x2{left:163.707000px;}
.xf{left:191.503500px;}
.x37{left:202.029000px;}
.x10{left:209.257500px;}
.x2f{left:221.130000px;}
.x1e{left:226.830000px;}
.x3{left:247.788000px;}
.x30{left:249.612000px;}
.x4{left:262.198500px;}
.xe{left:287.595000px;}
.x28{left:305.085000px;}
.x33{left:320.802000px;}
.x29{left:333.568500px;}
.x2c{left:335.698500px;}
.x9{left:337.008000px;}
.xa{left:347.706000px;}
.x1b{left:367.909500px;}
.x1c{left:378.789000px;}
.x21{left:399.147000px;}
.x34{left:400.752000px;}
.x31{left:408.597000px;}
.x13{left:419.890500px;}
.x22{left:434.298000px;}
.x14{left:437.899500px;}
.x24{left:447.901500px;}
.x36{left:463.501500px;}
.x25{left:474.771000px;}
.x11{left:481.362000px;}
.x2a{left:482.922000px;}
.x15{left:495.145500px;}
.x12{left:497.785500px;}
.x2d{left:502.119000px;}
.x16{left:510.336000px;}
.x2b{left:516.591000px;}
.x1f{left:527.713500px;}
.x35{left:534.094500px;}
.x2e{left:536.775000px;}
.x17{left:551.994000px;}
.x20{left:562.986000px;}
.x18{left:567.189000px;}
.x1d{left:569.881500px;}
@media print{
.v1{vertical-align:-8.325333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.410667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.001088pt;}
.ls6{letter-spacing:0.190566pt;}
.lse{letter-spacing:0.491513pt;}
.ls13{letter-spacing:1.164706pt;}
.ls12{letter-spacing:1.550566pt;}
.ls9{letter-spacing:1.555900pt;}
.ls2c{letter-spacing:2.121233pt;}
.ls24{letter-spacing:2.126566pt;}
.ls17{letter-spacing:2.324945pt;}
.ls27{letter-spacing:2.656846pt;}
.ls14{letter-spacing:3.295551pt;}
.ls1f{letter-spacing:3.504846pt;}
.ls18{letter-spacing:4.655551pt;}
.ls29{letter-spacing:5.154746pt;}
.lsb{letter-spacing:5.556945pt;}
.ls7{letter-spacing:5.562278pt;}
.ls21{letter-spacing:6.741833pt;}
.lsc{letter-spacing:7.261227pt;}
.ls8{letter-spacing:10.445227pt;}
.lsd{letter-spacing:10.717227pt;}
.ls10{letter-spacing:10.978560pt;}
.ls23{letter-spacing:11.445833pt;}
.ls20{letter-spacing:13.111091pt;}
.ls1a{letter-spacing:16.564194pt;}
.ls1e{letter-spacing:16.830861pt;}
.ls1c{letter-spacing:17.097527pt;}
.ls22{letter-spacing:17.825758pt;}
.ls1b{letter-spacing:19.118566pt;}
.ls25{letter-spacing:19.682813pt;}
.ls26{letter-spacing:19.891097pt;}
.ls1d{letter-spacing:22.146746pt;}
.ls15{letter-spacing:22.846380pt;}
.ls19{letter-spacing:23.100425pt;}
.ls11{letter-spacing:26.035713pt;}
.ls16{letter-spacing:26.302380pt;}
.ls3{letter-spacing:26.569047pt;}
.ls5{letter-spacing:26.598004pt;}
.ls4{letter-spacing:26.604504pt;}
.ls1{letter-spacing:39.573909pt;}
.ls28{letter-spacing:39.625980pt;}
.ls0{letter-spacing:41.812959pt;}
.ls2b{letter-spacing:46.030705pt;}
.lsa{letter-spacing:214.642039pt;}
.lsf{letter-spacing:220.802039pt;}
.ws28{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.052071pt;}
.ws19{word-spacing:0.000000pt;}
.ws53{word-spacing:14.892287pt;}
.ws6d{word-spacing:15.100571pt;}
.ws54{word-spacing:15.256783pt;}
.ws57{word-spacing:15.517138pt;}
.ws5f{word-spacing:15.621280pt;}
.ws60{word-spacing:16.610628pt;}
.ws41{word-spacing:17.179340pt;}
.ws40{word-spacing:17.183408pt;}
.ws46{word-spacing:17.443763pt;}
.ws2b{word-spacing:17.756188pt;}
.ws42{word-spacing:17.860330pt;}
.ws3f{word-spacing:18.068614pt;}
.wsf{word-spacing:18.485181pt;}
.ws1b{word-spacing:18.641394pt;}
.ws1d{word-spacing:18.693465pt;}
.wse{word-spacing:18.849678pt;}
.ws45{word-spacing:19.005891pt;}
.ws39{word-spacing:19.214174pt;}
.ws17{word-spacing:19.266245pt;}
.ws29{word-spacing:19.287130pt;}
.ws2a{word-spacing:19.304012pt;}
.ws4{word-spacing:19.318316pt;}
.ws21{word-spacing:19.370387pt;}
.ws24{word-spacing:19.422458pt;}
.ws1a{word-spacing:19.474529pt;}
.ws47{word-spacing:19.526600pt;}
.ws14{word-spacing:19.578671pt;}
.ws22{word-spacing:19.630514pt;}
.ws11{word-spacing:19.630742pt;}
.ws38{word-spacing:19.631229pt;}
.ws1e{word-spacing:19.631826pt;}
.ws34{word-spacing:19.682813pt;}
.ws35{word-spacing:19.708367pt;}
.ws16{word-spacing:19.734884pt;}
.ws59{word-spacing:19.786955pt;}
.ws44{word-spacing:19.839026pt;}
.ws13{word-spacing:19.891097pt;}
.ws58{word-spacing:19.943167pt;}
.ws5a{word-spacing:19.995238pt;}
.ws36{word-spacing:20.047309pt;}
.ws18{word-spacing:20.255593pt;}
.ws4b{word-spacing:20.307664pt;}
.ws5b{word-spacing:20.359735pt;}
.ws62{word-spacing:20.515948pt;}
.ws3c{word-spacing:20.620090pt;}
.ws10{word-spacing:20.672161pt;}
.ws4c{word-spacing:20.724231pt;}
.ws27{word-spacing:20.776302pt;}
.ws2c{word-spacing:20.984586pt;}
.ws5e{word-spacing:21.140799pt;}
.ws1f{word-spacing:21.244941pt;}
.ws6a{word-spacing:21.297012pt;}
.ws20{word-spacing:21.661508pt;}
.ws3a{word-spacing:21.765650pt;}
.wsa{word-spacing:21.921863pt;}
.ws3d{word-spacing:22.234289pt;}
.ws61{word-spacing:22.546714pt;}
.ws43{word-spacing:22.754998pt;}
.ws66{word-spacing:23.015353pt;}
.ws52{word-spacing:23.171565pt;}
.ws3{word-spacing:23.379849pt;}
.ws1{word-spacing:23.556971pt;}
.ws4f{word-spacing:23.588133pt;}
.ws12{word-spacing:23.692275pt;}
.ws6{word-spacing:23.848487pt;}
.ws51{word-spacing:23.899816pt;}
.ws5{word-spacing:23.900558pt;}
.ws64{word-spacing:23.952629pt;}
.ws7{word-spacing:24.421268pt;}
.ws23{word-spacing:24.525410pt;}
.wsd{word-spacing:24.681622pt;}
.ws48{word-spacing:25.462686pt;}
.ws5d{word-spacing:25.827183pt;}
.ws5c{word-spacing:25.879254pt;}
.ws65{word-spacing:25.931325pt;}
.ws37{word-spacing:26.191679pt;}
.wsb{word-spacing:26.295821pt;}
.ws3b{word-spacing:26.347892pt;}
.ws25{word-spacing:26.556176pt;}
.ws26{word-spacing:26.559369pt;}
.ws3e{word-spacing:26.608247pt;}
.ws55{word-spacing:27.233098pt;}
.ws63{word-spacing:27.285169pt;}
.ws30{word-spacing:27.493453pt;}
.ws68{word-spacing:28.951439pt;}
.ws33{word-spacing:29.211794pt;}
.ws50{word-spacing:29.315935pt;}
.ws2f{word-spacing:29.784574pt;}
.ws2d{word-spacing:29.804522pt;}
.ws2e{word-spacing:29.822442pt;}
.ws4d{word-spacing:29.917978pt;}
.ws8{word-spacing:30.409425pt;}
.ws4e{word-spacing:30.982205pt;}
.ws4a{word-spacing:31.034276pt;}
.ws49{word-spacing:31.138418pt;}
.wsc{word-spacing:31.450844pt;}
.ws31{word-spacing:32.075695pt;}
.ws32{word-spacing:32.080184pt;}
.ws9{word-spacing:32.752617pt;}
.ws0{word-spacing:33.921957pt;}
.ws56{word-spacing:35.408235pt;}
.ws67{word-spacing:38.063852pt;}
.ws69{word-spacing:39.157342pt;}
.ws6c{word-spacing:39.990477pt;}
.ws15{word-spacing:46.114176pt;}
.ws6b{word-spacing:52.279217pt;}
.ws2{word-spacing:74.907418pt;}
._16{margin-left:-3.716245pt;}
._b{margin-left:-2.504063pt;}
._18{width:2.656693pt;}
._13{width:15.985777pt;}
._1f{width:19.257893pt;}
._17{width:21.349083pt;}
._3{width:23.119494pt;}
._0{width:25.046119pt;}
._7{width:25.983396pt;}
._5{width:27.857949pt;}
._14{width:29.315935pt;}
._1a{width:30.357354pt;}
._f{width:31.554986pt;}
._1{width:33.273326pt;}
._12{width:34.262674pt;}
._2{width:36.189299pt;}
._15{width:39.521838pt;}
._4{width:41.292250pt;}
._19{width:42.594023pt;}
._10{width:43.687513pt;}
._1d{width:45.249641pt;}
._d{width:46.166970pt;}
._e{width:50.625600pt;}
._8{width:63.734822pt;}
._1c{width:66.442511pt;}
._11{width:74.982400pt;}
._1e{width:79.876812pt;}
._1b{width:112.525287pt;}
._9{width:123.668467pt;}
._c{width:143.357734pt;}
._a{width:171.711046pt;}
._6{width:579.341204pt;}
.fs5{font-size:38.787733pt;}
.fs3{font-size:52.070933pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:62.485333pt;}
.fs2{font-size:74.982400pt;}
.fs0{font-size:89.978667pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:33.082667pt;}
.ya7{bottom:72.933333pt;}
.y4e{bottom:77.789333pt;}
.y22{bottom:86.053333pt;}
.ya6{bottom:88.874667pt;}
.y73{bottom:89.237333pt;}
.y4d{bottom:93.729333pt;}
.y21{bottom:101.993333pt;}
.ya5{bottom:104.814667pt;}
.y72{bottom:105.177333pt;}
.y4c{bottom:109.669333pt;}
.y20{bottom:117.934667pt;}
.ya4{bottom:120.754667pt;}
.y71{bottom:121.117333pt;}
.y4b{bottom:125.609333pt;}
.y82{bottom:130.126667pt;}
.y1f{bottom:133.874667pt;}
.ya3{bottom:136.694667pt;}
.y70{bottom:137.057333pt;}
.y4a{bottom:141.550667pt;}
.y81{bottom:146.066667pt;}
.y1e{bottom:149.814667pt;}
.ya2{bottom:152.634667pt;}
.y6f{bottom:152.997333pt;}
.y49{bottom:157.490667pt;}
.y80{bottom:162.006667pt;}
.ya1{bottom:168.574667pt;}
.y6e{bottom:168.937333pt;}
.y48{bottom:173.430667pt;}
.y7f{bottom:177.946667pt;}
.y1d{bottom:181.981333pt;}
.y6d{bottom:184.878667pt;}
.y47{bottom:189.370667pt;}
.y7e{bottom:193.886667pt;}
.y6c{bottom:200.818667pt;}
.y46{bottom:205.310667pt;}
.y1b{bottom:205.890667pt;}
.y1c{bottom:205.892000pt;}
.ya0{bottom:208.065333pt;}
.y7d{bottom:209.826667pt;}
.y9c{bottom:221.082667pt;}
.y45{bottom:221.250667pt;}
.y9f{bottom:224.005333pt;}
.y7c{bottom:225.768000pt;}
.y6b{bottom:232.985333pt;}
.y9e{bottom:239.945333pt;}
.y7b{bottom:241.708000pt;}
.y1a{bottom:251.808000pt;}
.y9d{bottom:255.885333pt;}
.y7a{bottom:257.648000pt;}
.y19{bottom:267.748000pt;}
.y44{bottom:268.301333pt;}
.y79{bottom:273.588000pt;}
.y6a{bottom:278.901333pt;}
.y18{bottom:283.688000pt;}
.y78{bottom:289.528000pt;}
.y43{bottom:290.882667pt;}
.y69{bottom:294.841333pt;}
.y17{bottom:299.629333pt;}
.y9b{bottom:305.093333pt;}
.y77{bottom:305.469333pt;}
.y68{bottom:310.782667pt;}
.y16{bottom:315.569333pt;}
.y9a{bottom:321.033333pt;}
.y76{bottom:321.409333pt;}
.y42{bottom:323.294667pt;}
.y67{bottom:326.722667pt;}
.y15{bottom:331.509333pt;}
.y99{bottom:336.973333pt;}
.y75{bottom:337.349333pt;}
.y41{bottom:339.234667pt;}
.y66{bottom:342.662667pt;}
.y14{bottom:347.449333pt;}
.y98{bottom:352.913333pt;}
.y74{bottom:353.289333pt;}
.y65{bottom:358.602667pt;}
.y13{bottom:363.389333pt;}
.y40{bottom:369.229333pt;}
.y64{bottom:374.542667pt;}
.y12{bottom:379.329333pt;}
.y97{bottom:379.480000pt;}
.y3f{bottom:385.169333pt;}
.y63{bottom:390.482667pt;}
.y11{bottom:395.270667pt;}
.y96{bottom:395.420000pt;}
.y3e{bottom:401.110667pt;}
.y62{bottom:406.424000pt;}
.y10{bottom:411.210667pt;}
.y3d{bottom:417.050667pt;}
.y95{bottom:421.988000pt;}
.y61{bottom:422.364000pt;}
.yf{bottom:427.150667pt;}
.y3c{bottom:432.990667pt;}
.y94{bottom:437.928000pt;}
.y60{bottom:438.304000pt;}
.ye{bottom:443.090667pt;}
.y3b{bottom:448.930667pt;}
.y5f{bottom:454.244000pt;}
.yd{bottom:459.030667pt;}
.y93{bottom:464.494667pt;}
.y3a{bottom:464.870667pt;}
.y5e{bottom:470.184000pt;}
.yc{bottom:474.972000pt;}
.y92{bottom:480.434667pt;}
.y39{bottom:480.810667pt;}
.y5d{bottom:486.124000pt;}
.yb{bottom:490.912000pt;}
.y38{bottom:496.752000pt;}
.y5c{bottom:502.065333pt;}
.ya{bottom:506.852000pt;}
.y91{bottom:507.002667pt;}
.y37{bottom:512.692000pt;}
.y5b{bottom:518.005333pt;}
.y9{bottom:522.792000pt;}
.y90{bottom:522.942667pt;}
.y36{bottom:528.632000pt;}
.y5a{bottom:533.945333pt;}
.y8{bottom:538.732000pt;}
.y35{bottom:544.572000pt;}
.y8f{bottom:549.509333pt;}
.y59{bottom:549.885333pt;}
.y7{bottom:554.672000pt;}
.y34{bottom:560.512000pt;}
.y8e{bottom:565.449333pt;}
.y58{bottom:565.825333pt;}
.y6{bottom:570.613333pt;}
.y33{bottom:576.452000pt;}
.y57{bottom:581.765333pt;}
.y8d{bottom:592.017333pt;}
.y32{bottom:592.393333pt;}
.y56{bottom:597.706667pt;}
.y5{bottom:602.778667pt;}
.y8c{bottom:607.957333pt;}
.y31{bottom:608.333333pt;}
.y55{bottom:613.646667pt;}
.y8b{bottom:623.897333pt;}
.y30{bottom:624.273333pt;}
.y54{bottom:629.586667pt;}
.y2f{bottom:640.213333pt;}
.y53{bottom:645.526667pt;}
.y8a{bottom:656.082667pt;}
.y2e{bottom:656.153333pt;}
.y52{bottom:661.466667pt;}
.y4{bottom:661.980000pt;}
.y2d{bottom:672.093333pt;}
.y51{bottom:677.406667pt;}
.y2c{bottom:688.034667pt;}
.y3{bottom:692.949333pt;}
.y89{bottom:702.000000pt;}
.y2b{bottom:703.974667pt;}
.y50{bottom:706.630667pt;}
.y88{bottom:717.940000pt;}
.y2a{bottom:719.914667pt;}
.y2{bottom:731.073333pt;}
.y87{bottom:733.880000pt;}
.y29{bottom:735.854667pt;}
.y86{bottom:749.820000pt;}
.y28{bottom:751.794667pt;}
.y1{bottom:760.296000pt;}
.y85{bottom:765.760000pt;}
.y27{bottom:767.734667pt;}
.y84{bottom:781.700000pt;}
.y26{bottom:783.676000pt;}
.y25{bottom:799.616000pt;}
.y83{bottom:812.102667pt;}
.y24{bottom:815.556000pt;}
.y23{bottom:866.830667pt;}
.h7{height:23.697705pt;}
.h9{height:36.928037pt;}
.h5{height:37.491072pt;}
.h6{height:38.115923pt;}
.h3{height:44.989440pt;}
.h8{height:46.545267pt;}
.h4{height:54.887117pt;}
.h2{height:64.784640pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x23{left:74.158667pt;}
.x5{left:75.590667pt;}
.x32{left:88.608000pt;}
.x6{left:95.516000pt;}
.x26{left:97.458667pt;}
.x19{left:102.413333pt;}
.x7{left:106.221333pt;}
.x8{left:108.800000pt;}
.x1{left:115.386667pt;}
.x27{left:126.224000pt;}
.x1a{left:136.434667pt;}
.xd{left:139.112000pt;}
.xb{left:140.506667pt;}
.xc{left:141.898667pt;}
.x2{left:145.517333pt;}
.xf{left:170.225333pt;}
.x37{left:179.581333pt;}
.x10{left:186.006667pt;}
.x2f{left:196.560000pt;}
.x1e{left:201.626667pt;}
.x3{left:220.256000pt;}
.x30{left:221.877333pt;}
.x4{left:233.065333pt;}
.xe{left:255.640000pt;}
.x28{left:271.186667pt;}
.x33{left:285.157333pt;}
.x29{left:296.505333pt;}
.x2c{left:298.398667pt;}
.x9{left:299.562667pt;}
.xa{left:309.072000pt;}
.x1b{left:327.030667pt;}
.x1c{left:336.701333pt;}
.x21{left:354.797333pt;}
.x34{left:356.224000pt;}
.x31{left:363.197333pt;}
.x13{left:373.236000pt;}
.x22{left:386.042667pt;}
.x14{left:389.244000pt;}
.x24{left:398.134667pt;}
.x36{left:412.001333pt;}
.x25{left:422.018667pt;}
.x11{left:427.877333pt;}
.x2a{left:429.264000pt;}
.x15{left:440.129333pt;}
.x12{left:442.476000pt;}
.x2d{left:446.328000pt;}
.x16{left:453.632000pt;}
.x2b{left:459.192000pt;}
.x1f{left:469.078667pt;}
.x35{left:474.750667pt;}
.x2e{left:477.133333pt;}
.x17{left:490.661333pt;}
.x20{left:500.432000pt;}
.x18{left:504.168000pt;}
.x1d{left:506.561333pt;}
}




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