
    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_e4c4d802679d58df52a5586c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_11463f52f256d676fcdae29c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_d03fcafeb242739213f474d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_21cc61e0a90af1e4cea6af17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.482000;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;}
.m4{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);}
.m11{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);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1c{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);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{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.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);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m14{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);}
.mc{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);}
.m7{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);}
.m1d{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.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m5{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);}
.m17{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);}
.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);}
.m1b{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);}
.m21{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);}
.m19{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);}
.m3{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m22{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);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.md{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);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1a{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);}
.m8{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);}
.m10{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);}
.v3{vertical-align:-17.358000px;}
.v4{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.702000px;}
.v1{vertical-align:39.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lsc{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.449600px;}
.lse{letter-spacing:13.454400px;}
.lsd{letter-spacing:13.487210px;}
.ls9{letter-spacing:14.943900px;}
.lsf{letter-spacing:15.197459px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:62.917200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.lsb{letter-spacing:94.292700px;}
.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;}
}
.ws52{word-spacing:-13.449600px;}
.ws1b{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws59{word-spacing:-1.775347px;}
.ws50{word-spacing:-1.613952px;}
.ws27{word-spacing:-1.135736px;}
.ws40{word-spacing:-0.806976px;}
.ws33{word-spacing:-0.484186px;}
.ws34{word-spacing:-0.430387px;}
.ws48{word-spacing:-0.376589px;}
.ws31{word-spacing:-0.358654px;}
.ws13{word-spacing:-0.298878px;}
.ws17{word-spacing:-0.239102px;}
.ws3e{word-spacing:-0.215194px;}
.wsa{word-spacing:-0.179327px;}
.ws4c{word-spacing:-0.161395px;}
.ws32{word-spacing:-0.119551px;}
.ws2d{word-spacing:-0.107597px;}
.ws19{word-spacing:-0.059776px;}
.ws41{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.053798px;}
.ws11{word-spacing:0.059776px;}
.ws4d{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.ws4b{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws2c{word-spacing:0.215194px;}
.ws15{word-spacing:0.239102px;}
.ws3f{word-spacing:0.268992px;}
.ws39{word-spacing:0.298878px;}
.ws12{word-spacing:0.358654px;}
.ws4a{word-spacing:0.484186px;}
.ws54{word-spacing:0.591782px;}
.ws9{word-spacing:0.717307px;}
.ws37{word-spacing:0.777083px;}
.ws3a{word-spacing:0.956410px;}
.ws26{word-spacing:1.016185px;}
.ws2b{word-spacing:1.315063px;}
.ws5c{word-spacing:1.344960px;}
.ws3b{word-spacing:1.434614px;}
.ws45{word-spacing:1.452557px;}
.ws5b{word-spacing:1.506355px;}
.ws36{word-spacing:1.554166px;}
.ws35{word-spacing:1.613941px;}
.wsc{word-spacing:2.391024px;}
.wsb{word-spacing:2.450800px;}
.ws5{word-spacing:2.510252px;}
.ws30{word-spacing:2.689902px;}
.ws8{word-spacing:2.869236px;}
.ws47{word-spacing:3.066509px;}
.ws5a{word-spacing:3.219744px;}
.ws5e{word-spacing:3.227904px;}
.ws42{word-spacing:3.287658px;}
.ws14{word-spacing:3.347434px;}
.ws18{word-spacing:3.407209px;}
.ws61{word-spacing:3.496896px;}
.wse{word-spacing:3.583475px;}
.ws3d{word-spacing:3.586536px;}
.wsf{word-spacing:4.303872px;}
.ws60{word-spacing:5.218445px;}
.ws43{word-spacing:6.097111px;}
.ws4f{word-spacing:6.240614px;}
.ws2f{word-spacing:6.276438px;}
.ws16{word-spacing:6.575316px;}
.ws38{word-spacing:7.113296px;}
.ws2e{word-spacing:7.352399px;}
.ws44{word-spacing:7.890379px;}
.ws3c{word-spacing:8.249033px;}
.ws46{word-spacing:9.537646px;}
.ws3{word-spacing:10.418857px;}
.ws5f{word-spacing:13.388736px;}
.ws57{word-spacing:13.388995px;}
.ws53{word-spacing:13.393373px;}
.ws58{word-spacing:13.395667px;}
.ws56{word-spacing:13.395802px;}
.ws1a{word-spacing:14.776565px;}
.ws6{word-spacing:14.884124px;}
.ws4e{word-spacing:15.967164px;}
.ws51{word-spacing:16.623706px;}
.ws55{word-spacing:16.838899px;}
.ws5d{word-spacing:21.142771px;}
.ws1{word-spacing:28.455541px;}
.ws1d{word-spacing:141.435994px;}
.ws20{word-spacing:210.459341px;}
.ws1e{word-spacing:210.674534px;}
.ws21{word-spacing:220.250650px;}
.ws1f{word-spacing:227.621030px;}
.ws24{word-spacing:236.497766px;}
.ws23{word-spacing:255.004416px;}
.ws22{word-spacing:301.809024px;}
.ws25{word-spacing:326.932877px;}
.ws28{word-spacing:536.316250px;}
.ws29{word-spacing:571.177613px;}
.ws2a{word-spacing:608.190912px;}
._5{margin-left:-7.531776px;}
._32{margin-left:-6.419941px;}
._2{margin-left:-5.397721px;}
._9{margin-left:-4.309861px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._7{width:2.999980px;}
._34{width:9.970645px;}
._f{width:11.094379px;}
._0{width:12.971268px;}
._29{width:14.955851px;}
._d{width:16.109544px;}
._a{width:17.842997px;}
._c{width:19.020592px;}
._35{width:20.215014px;}
._2a{width:22.236672px;}
._e{width:23.683088px;}
._4{width:25.187507px;}
._b{width:26.791420px;}
._6{width:27.899501px;}
._2e{width:29.887800px;}
._37{width:31.848653px;}
._38{width:33.762896px;}
._2b{width:37.957506px;}
._2c{width:40.480032px;}
._2d{width:43.576412px;}
._8{width:54.380941px;}
._36{width:61.868160px;}
._31{width:71.713267px;}
._33{width:88.767360px;}
._2f{width:118.631461px;}
._30{width:129.062362px;}
._1a{width:280.881446px;}
._19{width:282.333989px;}
._18{width:288.257816px;}
._1b{width:290.080973px;}
._1f{width:296.321587px;}
._21{width:301.593816px;}
._20{width:307.081267px;}
._15{width:314.344051px;}
._17{width:333.119693px;}
._1e{width:345.385728px;}
._13{width:349.313011px;}
._24{width:353.186496px;}
._1d{width:389.070029px;}
._12{width:414.086285px;}
._23{width:415.879513px;}
._14{width:429.042240px;}
._22{width:430.978982px;}
._16{width:439.748122px;}
._1c{width:475.039872px;}
._25{width:618.358810px;}
._28{width:706.749581px;}
._27{width:709.439501px;}
._26{width:711.699034px;}
._10{width:1522.702083px;}
._11{width:2286.087638px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3e{bottom:45.921000px;}
.y66{bottom:96.523500px;}
.y3d{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.y93{bottom:100.653000px;}
.yc2{bottom:112.630500px;}
.y65{bottom:115.756500px;}
.y13{bottom:118.147500px;}
.y3c{bottom:120.610500px;}
.y92{bottom:121.545000px;}
.yc1{bottom:131.781000px;}
.y64{bottom:134.989500px;}
.y12{bottom:136.035000px;}
.y3b{bottom:141.502500px;}
.y91{bottom:142.437000px;}
.yc0{bottom:150.931500px;}
.y11{bottom:153.924000px;}
.y3a{bottom:162.394500px;}
.y90{bottom:167.811000px;}
.ybf{bottom:170.082000px;}
.y10{bottom:171.811500px;}
.y39{bottom:183.285000px;}
.y8f{bottom:188.703000px;}
.ybe{bottom:189.232500px;}
.yf{bottom:189.699000px;}
.y38{bottom:204.177000px;}
.ye{bottom:207.588000px;}
.ybd{bottom:208.383000px;}
.y76{bottom:208.660500px;}
.y8e{bottom:209.593500px;}
.yd{bottom:225.475500px;}
.ybc{bottom:227.533500px;}
.y37{bottom:229.552500px;}
.y8d{bottom:230.485500px;}
.y75{bottom:239.803500px;}
.ybb{bottom:246.684000px;}
.y8c{bottom:251.377500px;}
.yc{bottom:252.330000px;}
.yba{bottom:265.836000px;}
.y36{bottom:268.377000px;}
.yb{bottom:270.217500px;}
.y8b{bottom:272.269500px;}
.yb9{bottom:284.986500px;}
.ya{bottom:288.105000px;}
.y35{bottom:289.267500px;}
.y8a{bottom:293.160000px;}
.yb8{bottom:304.137000px;}
.y9{bottom:305.994000px;}
.y34{bottom:310.159500px;}
.y89{bottom:314.052000px;}
.y63{bottom:319.050000px;}
.yb7{bottom:323.287500px;}
.y8{bottom:323.881500px;}
.y33{bottom:331.051500px;}
.y88{bottom:334.944000px;}
.y62{bottom:339.940500px;}
.y7{bottom:341.769000px;}
.yb6{bottom:342.438000px;}
.y32{bottom:351.942000px;}
.y87{bottom:355.834500px;}
.y6{bottom:359.658000px;}
.y61{bottom:360.832500px;}
.yb5{bottom:361.588500px;}
.y31{bottom:372.834000px;}
.y5{bottom:377.545500px;}
.yb4{bottom:380.739000px;}
.y86{bottom:381.210000px;}
.y60{bottom:381.724500px;}
.y30{bottom:393.726000px;}
.yb3{bottom:399.889500px;}
.y4{bottom:401.367000px;}
.y85{bottom:402.100500px;}
.y5f{bottom:407.098500px;}
.y2f{bottom:414.616500px;}
.yb2{bottom:419.040000px;}
.y84{bottom:422.992500px;}
.y3{bottom:425.232000px;}
.y5e{bottom:431.530500px;}
.y2e{bottom:435.508500px;}
.yb1{bottom:438.190500px;}
.y2{bottom:443.119500px;}
.y83{bottom:448.368000px;}
.y2d{bottom:456.400500px;}
.yb0{bottom:457.341000px;}
.y1{bottom:461.008500px;}
.y5d{bottom:470.355000px;}
.y2c{bottom:477.291000px;}
.yaf{bottom:480.975000px;}
.y82{bottom:483.996000px;}
.y5c{bottom:491.247000px;}
.y2b{bottom:502.666500px;}
.y81{bottom:503.227500px;}
.y5b{bottom:512.137500px;}
.yae{bottom:520.875000px;}
.y80{bottom:522.460500px;}
.y5a{bottom:533.029500px;}
.yad{bottom:540.375000px;}
.y7f{bottom:541.693500px;}
.y74{bottom:544.387500px;}
.y59{bottom:553.921500px;}
.yac{bottom:559.873500px;}
.y73{bottom:563.619000px;}
.y58{bottom:574.812000px;}
.y2a{bottom:581.490000px;}
.y72{bottom:582.852000px;}
.yab{bottom:594.516000px;}
.y57{bottom:595.704000px;}
.ydc{bottom:599.146500px;}
.ydb{bottom:618.297000px;}
.yaa{bottom:618.496500px;}
.y29{bottom:620.314500px;}
.yda{bottom:637.447500px;}
.y28{bottom:641.205000px;}
.y56{bottom:642.030000px;}
.ya9{bottom:657.321000px;}
.y55{bottom:658.468500px;}
.y27{bottom:662.097000px;}
.y54{bottom:674.907000px;}
.yd9{bottom:680.478000px;}
.y26{bottom:682.989000px;}
.ya8{bottom:685.786500px;}
.y53{bottom:698.548500px;}
.yd8{bottom:699.628500px;}
.y25{bottom:703.879500px;}
.ya7{bottom:705.285000px;}
.yd7{bottom:718.779000px;}
.y24{bottom:724.771500px;}
.ya6{bottom:724.783500px;}
.y52{bottom:730.167000px;}
.yd6{bottom:737.929500px;}
.ya5{bottom:744.283500px;}
.y23{bottom:745.663500px;}
.yd5{bottom:757.081500px;}
.y51{bottom:762.181500px;}
.ya4{bottom:763.782000px;}
.y22{bottom:766.554000px;}
.yd4{bottom:776.232000px;}
.y50{bottom:783.073500px;}
.y21{bottom:787.446000px;}
.ya3{bottom:792.247500px;}
.yd3{bottom:795.382500px;}
.y4f{bottom:803.964000px;}
.ya2{bottom:811.746000px;}
.yd2{bottom:814.533000px;}
.y20{bottom:817.303500px;}
.y4e{bottom:824.856000px;}
.ya1{bottom:831.244500px;}
.yd1{bottom:833.683500px;}
.yd0{bottom:852.834000px;}
.y1f{bottom:856.453500px;}
.ya0{bottom:859.710000px;}
.y4d{bottom:871.182000px;}
.ycf{bottom:871.984500px;}
.y1e{bottom:876.933000px;}
.y4c{bottom:887.620500px;}
.y9f{bottom:888.174000px;}
.y1d{bottom:888.732000px;}
.yce{bottom:891.135000px;}
.y4b{bottom:904.059000px;}
.y71{bottom:905.802000px;}
.y1c{bottom:909.211500px;}
.y7e{bottom:910.285500px;}
.y9e{bottom:916.639500px;}
.y4a{bottom:920.497500px;}
.y1b{bottom:925.351500px;}
.y70{bottom:926.694000px;}
.ycd{bottom:929.436000px;}
.y7d{bottom:931.177500px;}
.y9d{bottom:936.138000px;}
.y49{bottom:936.936000px;}
.y1a{bottom:937.150500px;}
.y6f{bottom:947.584500px;}
.ycc{bottom:948.586500px;}
.y7c{bottom:952.068000px;}
.y48{bottom:953.374500px;}
.y9c{bottom:955.636500px;}
.y19{bottom:957.630000px;}
.ycb{bottom:967.737000px;}
.y6e{bottom:968.476500px;}
.y47{bottom:969.813000px;}
.y7b{bottom:972.960000px;}
.y9b{bottom:975.136500px;}
.y46{bottom:986.251500px;}
.yca{bottom:986.887500px;}
.y6d{bottom:989.368500px;}
.y7a{bottom:993.852000px;}
.y9a{bottom:994.635000px;}
.y18{bottom:1001.436000px;}
.yc9{bottom:1006.038000px;}
.y45{bottom:1009.891500px;}
.y6c{bottom:1010.260500px;}
.y99{bottom:1014.133500px;}
.y79{bottom:1014.742500px;}
.yc8{bottom:1025.188500px;}
.y6b{bottom:1031.151000px;}
.y98{bottom:1033.632000px;}
.y78{bottom:1035.634500px;}
.y17{bottom:1040.260500px;}
.y44{bottom:1041.511500px;}
.yc7{bottom:1044.339000px;}
.y6a{bottom:1052.043000px;}
.y97{bottom:1053.130500px;}
.y77{bottom:1056.526500px;}
.yc6{bottom:1063.489500px;}
.y16{bottom:1071.598500px;}
.y69{bottom:1072.935000px;}
.y43{bottom:1077.417000px;}
.y96{bottom:1081.596000px;}
.yc5{bottom:1082.640000px;}
.y68{bottom:1093.825500px;}
.y42{bottom:1098.309000px;}
.y95{bottom:1101.094500px;}
.yc4{bottom:1101.790500px;}
.y15{bottom:1102.935000px;}
.y67{bottom:1114.717500px;}
.y41{bottom:1119.201000px;}
.y94{bottom:1120.593000px;}
.yc3{bottom:1120.941000px;}
.y40{bottom:1140.091500px;}
.y3f{bottom:1200.196500px;}
.h8{height:26.110157px;}
.h2{height:30.461558px;}
.hd{height:30.582721px;}
.h3{height:30.670772px;}
.h9{height:34.813397px;}
.he{height:35.052500px;}
.h10{height:38.734848px;}
.hf{height:39.165235px;}
.h11{height:39.434227px;}
.ha{height:43.038432px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.hc{height:51.646464px;}
.h7{height:54.411312px;}
.h5{height:77.469696px;}
.h6{height:97.936416px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2a{left:84.220500px;}
.x29{left:85.848000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.580000px;}
.x23{left:270.670500px;}
.x5{left:281.479500px;}
.x1c{left:287.157000px;}
.x20{left:291.072000px;}
.x1d{left:296.404500px;}
.x1e{left:298.636500px;}
.x22{left:300.661500px;}
.x21{left:308.220000px;}
.x1f{left:311.776500px;}
.x24{left:316.594500px;}
.x14{left:336.547500px;}
.xa{left:337.561500px;}
.x15{left:344.020500px;}
.xb{left:345.033000px;}
.xc{left:348.694500px;}
.x25{left:350.148000px;}
.xd{left:356.166000px;}
.x10{left:359.371500px;}
.x11{left:366.843000px;}
.x12{left:370.542000px;}
.x26{left:374.134500px;}
.x13{left:378.013500px;}
.x16{left:438.987000px;}
.x17{left:446.458500px;}
.x18{left:494.470500px;}
.x19{left:510.496500px;}
.x27{left:537.348000px;}
.x28{left:552.292500px;}
.x6{left:695.680500px;}
.x7{left:703.153500px;}
.xe{left:722.436000px;}
.xf{left:729.907500px;}
.x1a{left:792.744000px;}
.x1b{left:800.215500px;}
.x8{left:806.062500px;}
.x9{left:813.535500px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.290667pt;}
.v1{vertical-align:34.720000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lsc{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.955200pt;}
.lse{letter-spacing:11.959467pt;}
.lsd{letter-spacing:11.988631pt;}
.ls9{letter-spacing:13.283467pt;}
.lsf{letter-spacing:13.508852pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:55.926400pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.lsb{letter-spacing:83.815733pt;}
.ws52{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws59{word-spacing:-1.578086pt;}
.ws50{word-spacing:-1.434624pt;}
.ws27{word-spacing:-1.009543pt;}
.ws40{word-spacing:-0.717312pt;}
.ws33{word-spacing:-0.430387pt;}
.ws34{word-spacing:-0.382566pt;}
.ws48{word-spacing:-0.334746pt;}
.ws31{word-spacing:-0.318803pt;}
.ws13{word-spacing:-0.265669pt;}
.ws17{word-spacing:-0.212535pt;}
.ws3e{word-spacing:-0.191283pt;}
.wsa{word-spacing:-0.159402pt;}
.ws4c{word-spacing:-0.143462pt;}
.ws32{word-spacing:-0.106268pt;}
.ws2d{word-spacing:-0.095642pt;}
.ws19{word-spacing:-0.053134pt;}
.ws41{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.047821pt;}
.ws11{word-spacing:0.053134pt;}
.ws4d{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.ws4b{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws2c{word-spacing:0.191283pt;}
.ws15{word-spacing:0.212535pt;}
.ws3f{word-spacing:0.239104pt;}
.ws39{word-spacing:0.265669pt;}
.ws12{word-spacing:0.318803pt;}
.ws4a{word-spacing:0.430387pt;}
.ws54{word-spacing:0.526029pt;}
.ws9{word-spacing:0.637606pt;}
.ws37{word-spacing:0.690740pt;}
.ws3a{word-spacing:0.850142pt;}
.ws26{word-spacing:0.903276pt;}
.ws2b{word-spacing:1.168945pt;}
.ws5c{word-spacing:1.195520pt;}
.ws3b{word-spacing:1.275213pt;}
.ws45{word-spacing:1.291162pt;}
.ws5b{word-spacing:1.338982pt;}
.ws36{word-spacing:1.381481pt;}
.ws35{word-spacing:1.434614pt;}
.wsc{word-spacing:2.125355pt;}
.wsb{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231335pt;}
.ws30{word-spacing:2.391024pt;}
.ws8{word-spacing:2.550432pt;}
.ws47{word-spacing:2.725786pt;}
.ws5a{word-spacing:2.861995pt;}
.ws5e{word-spacing:2.869248pt;}
.ws42{word-spacing:2.922363pt;}
.ws14{word-spacing:2.975497pt;}
.ws18{word-spacing:3.028630pt;}
.ws61{word-spacing:3.108352pt;}
.wse{word-spacing:3.185311pt;}
.ws3d{word-spacing:3.188032pt;}
.wsf{word-spacing:3.825664pt;}
.ws60{word-spacing:4.638618pt;}
.ws43{word-spacing:5.419654pt;}
.ws4f{word-spacing:5.547213pt;}
.ws2f{word-spacing:5.579056pt;}
.ws16{word-spacing:5.844725pt;}
.ws38{word-spacing:6.322930pt;}
.ws2e{word-spacing:6.535466pt;}
.ws44{word-spacing:7.013670pt;}
.ws3c{word-spacing:7.332474pt;}
.ws46{word-spacing:8.477907pt;}
.ws3{word-spacing:9.261206pt;}
.ws5f{word-spacing:11.901099pt;}
.ws57{word-spacing:11.901329pt;}
.ws53{word-spacing:11.905220pt;}
.ws58{word-spacing:11.907260pt;}
.ws56{word-spacing:11.907379pt;}
.ws1a{word-spacing:13.134725pt;}
.ws6{word-spacing:13.230333pt;}
.ws4e{word-spacing:14.193035pt;}
.ws51{word-spacing:14.776627pt;}
.ws55{word-spacing:14.967910pt;}
.ws5d{word-spacing:18.793574pt;}
.ws1{word-spacing:25.293814pt;}
.ws1d{word-spacing:125.720883pt;}
.ws20{word-spacing:187.074970pt;}
.ws1e{word-spacing:187.266253pt;}
.ws21{word-spacing:195.778355pt;}
.ws1f{word-spacing:202.329805pt;}
.ws24{word-spacing:210.220237pt;}
.ws23{word-spacing:226.670592pt;}
.ws22{word-spacing:268.274688pt;}
.ws25{word-spacing:290.607002pt;}
.ws28{word-spacing:476.725555pt;}
.ws29{word-spacing:507.713434pt;}
.ws2a{word-spacing:540.614144pt;}
._5{margin-left:-6.694912pt;}
._32{margin-left:-5.706614pt;}
._2{margin-left:-4.797974pt;}
._9{margin-left:-3.830987pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._7{width:2.666649pt;}
._34{width:8.862795pt;}
._f{width:9.861670pt;}
._0{width:11.530016pt;}
._29{width:13.294090pt;}
._d{width:14.319595pt;}
._a{width:15.860442pt;}
._c{width:16.907193pt;}
._35{width:17.968901pt;}
._2a{width:19.765931pt;}
._e{width:21.051634pt;}
._4{width:22.388895pt;}
._b{width:23.814595pt;}
._6{width:24.799556pt;}
._2e{width:26.566933pt;}
._37{width:28.309914pt;}
._38{width:30.011463pt;}
._2b{width:33.740005pt;}
._2c{width:35.982251pt;}
._2d{width:38.734589pt;}
._8{width:48.338614pt;}
._36{width:54.993920pt;}
._31{width:63.745126pt;}
._33{width:78.904320pt;}
._2f{width:105.450187pt;}
._30{width:114.722099pt;}
._1a{width:249.672397pt;}
._19{width:250.963546pt;}
._18{width:256.229170pt;}
._1b{width:257.849754pt;}
._1f{width:263.396966pt;}
._21{width:268.083392pt;}
._20{width:272.961126pt;}
._15{width:279.416934pt;}
._17{width:296.106394pt;}
._1e{width:307.009536pt;}
._13{width:310.500454pt;}
._24{width:313.943552pt;}
._1d{width:345.840026pt;}
._12{width:368.076698pt;}
._23{width:369.670678pt;}
._14{width:381.370880pt;}
._22{width:383.092429pt;}
._16{width:390.887219pt;}
._1c{width:422.257664pt;}
._25{width:549.652275pt;}
._28{width:628.221850pt;}
._27{width:630.612890pt;}
._26{width:632.621363pt;}
._10{width:1353.512963pt;}
._11{width:2032.077900pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:40.818667pt;}
.y66{bottom:85.798667pt;}
.y3d{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.y93{bottom:89.469333pt;}
.yc2{bottom:100.116000pt;}
.y65{bottom:102.894667pt;}
.y13{bottom:105.020000pt;}
.y3c{bottom:107.209333pt;}
.y92{bottom:108.040000pt;}
.yc1{bottom:117.138667pt;}
.y64{bottom:119.990667pt;}
.y12{bottom:120.920000pt;}
.y3b{bottom:125.780000pt;}
.y91{bottom:126.610667pt;}
.yc0{bottom:134.161333pt;}
.y11{bottom:136.821333pt;}
.y3a{bottom:144.350667pt;}
.y90{bottom:149.165333pt;}
.ybf{bottom:151.184000pt;}
.y10{bottom:152.721333pt;}
.y39{bottom:162.920000pt;}
.y8f{bottom:167.736000pt;}
.ybe{bottom:168.206667pt;}
.yf{bottom:168.621333pt;}
.y38{bottom:181.490667pt;}
.ye{bottom:184.522667pt;}
.ybd{bottom:185.229333pt;}
.y76{bottom:185.476000pt;}
.y8e{bottom:186.305333pt;}
.yd{bottom:200.422667pt;}
.ybc{bottom:202.252000pt;}
.y37{bottom:204.046667pt;}
.y8d{bottom:204.876000pt;}
.y75{bottom:213.158667pt;}
.ybb{bottom:219.274667pt;}
.y8c{bottom:223.446667pt;}
.yc{bottom:224.293333pt;}
.yba{bottom:236.298667pt;}
.y36{bottom:238.557333pt;}
.yb{bottom:240.193333pt;}
.y8b{bottom:242.017333pt;}
.yb9{bottom:253.321333pt;}
.ya{bottom:256.093333pt;}
.y35{bottom:257.126667pt;}
.y8a{bottom:260.586667pt;}
.yb8{bottom:270.344000pt;}
.y9{bottom:271.994667pt;}
.y34{bottom:275.697333pt;}
.y89{bottom:279.157333pt;}
.y63{bottom:283.600000pt;}
.yb7{bottom:287.366667pt;}
.y8{bottom:287.894667pt;}
.y33{bottom:294.268000pt;}
.y88{bottom:297.728000pt;}
.y62{bottom:302.169333pt;}
.y7{bottom:303.794667pt;}
.yb6{bottom:304.389333pt;}
.y32{bottom:312.837333pt;}
.y87{bottom:316.297333pt;}
.y6{bottom:319.696000pt;}
.y61{bottom:320.740000pt;}
.yb5{bottom:321.412000pt;}
.y31{bottom:331.408000pt;}
.y5{bottom:335.596000pt;}
.yb4{bottom:338.434667pt;}
.y86{bottom:338.853333pt;}
.y60{bottom:339.310667pt;}
.y30{bottom:349.978667pt;}
.yb3{bottom:355.457333pt;}
.y4{bottom:356.770667pt;}
.y85{bottom:357.422667pt;}
.y5f{bottom:361.865333pt;}
.y2f{bottom:368.548000pt;}
.yb2{bottom:372.480000pt;}
.y84{bottom:375.993333pt;}
.y3{bottom:377.984000pt;}
.y5e{bottom:383.582667pt;}
.y2e{bottom:387.118667pt;}
.yb1{bottom:389.502667pt;}
.y2{bottom:393.884000pt;}
.y83{bottom:398.549333pt;}
.y2d{bottom:405.689333pt;}
.yb0{bottom:406.525333pt;}
.y1{bottom:409.785333pt;}
.y5d{bottom:418.093333pt;}
.y2c{bottom:424.258667pt;}
.yaf{bottom:427.533333pt;}
.y82{bottom:430.218667pt;}
.y5c{bottom:436.664000pt;}
.y2b{bottom:446.814667pt;}
.y81{bottom:447.313333pt;}
.y5b{bottom:455.233333pt;}
.yae{bottom:463.000000pt;}
.y80{bottom:464.409333pt;}
.y5a{bottom:473.804000pt;}
.yad{bottom:480.333333pt;}
.y7f{bottom:481.505333pt;}
.y74{bottom:483.900000pt;}
.y59{bottom:492.374667pt;}
.yac{bottom:497.665333pt;}
.y73{bottom:500.994667pt;}
.y58{bottom:510.944000pt;}
.y2a{bottom:516.880000pt;}
.y72{bottom:518.090667pt;}
.yab{bottom:528.458667pt;}
.y57{bottom:529.514667pt;}
.ydc{bottom:532.574667pt;}
.ydb{bottom:549.597333pt;}
.yaa{bottom:549.774667pt;}
.y29{bottom:551.390667pt;}
.yda{bottom:566.620000pt;}
.y28{bottom:569.960000pt;}
.y56{bottom:570.693333pt;}
.ya9{bottom:584.285333pt;}
.y55{bottom:585.305333pt;}
.y27{bottom:588.530667pt;}
.y54{bottom:599.917333pt;}
.yd9{bottom:604.869333pt;}
.y26{bottom:607.101333pt;}
.ya8{bottom:609.588000pt;}
.y53{bottom:620.932000pt;}
.yd8{bottom:621.892000pt;}
.y25{bottom:625.670667pt;}
.ya7{bottom:626.920000pt;}
.yd7{bottom:638.914667pt;}
.y24{bottom:644.241333pt;}
.ya6{bottom:644.252000pt;}
.y52{bottom:649.037333pt;}
.yd6{bottom:655.937333pt;}
.ya5{bottom:661.585333pt;}
.y23{bottom:662.812000pt;}
.yd5{bottom:672.961333pt;}
.y51{bottom:677.494667pt;}
.ya4{bottom:678.917333pt;}
.y22{bottom:681.381333pt;}
.yd4{bottom:689.984000pt;}
.y50{bottom:696.065333pt;}
.y21{bottom:699.952000pt;}
.ya3{bottom:704.220000pt;}
.yd3{bottom:707.006667pt;}
.y4f{bottom:714.634667pt;}
.ya2{bottom:721.552000pt;}
.yd2{bottom:724.029333pt;}
.y20{bottom:726.492000pt;}
.y4e{bottom:733.205333pt;}
.ya1{bottom:738.884000pt;}
.yd1{bottom:741.052000pt;}
.yd0{bottom:758.074667pt;}
.y1f{bottom:761.292000pt;}
.ya0{bottom:764.186667pt;}
.y4d{bottom:774.384000pt;}
.ycf{bottom:775.097333pt;}
.y1e{bottom:779.496000pt;}
.y4c{bottom:788.996000pt;}
.y9f{bottom:789.488000pt;}
.y1d{bottom:789.984000pt;}
.yce{bottom:792.120000pt;}
.y4b{bottom:803.608000pt;}
.y71{bottom:805.157333pt;}
.y1c{bottom:808.188000pt;}
.y7e{bottom:809.142667pt;}
.y9e{bottom:814.790667pt;}
.y4a{bottom:818.220000pt;}
.y1b{bottom:822.534667pt;}
.y70{bottom:823.728000pt;}
.ycd{bottom:826.165333pt;}
.y7d{bottom:827.713333pt;}
.y9d{bottom:832.122667pt;}
.y49{bottom:832.832000pt;}
.y1a{bottom:833.022667pt;}
.y6f{bottom:842.297333pt;}
.ycc{bottom:843.188000pt;}
.y7c{bottom:846.282667pt;}
.y48{bottom:847.444000pt;}
.y9c{bottom:849.454667pt;}
.y19{bottom:851.226667pt;}
.ycb{bottom:860.210667pt;}
.y6e{bottom:860.868000pt;}
.y47{bottom:862.056000pt;}
.y7b{bottom:864.853333pt;}
.y9b{bottom:866.788000pt;}
.y46{bottom:876.668000pt;}
.yca{bottom:877.233333pt;}
.y6d{bottom:879.438667pt;}
.y7a{bottom:883.424000pt;}
.y9a{bottom:884.120000pt;}
.y18{bottom:890.165333pt;}
.yc9{bottom:894.256000pt;}
.y45{bottom:897.681333pt;}
.y6c{bottom:898.009333pt;}
.y99{bottom:901.452000pt;}
.y79{bottom:901.993333pt;}
.yc8{bottom:911.278667pt;}
.y6b{bottom:916.578667pt;}
.y98{bottom:918.784000pt;}
.y78{bottom:920.564000pt;}
.y17{bottom:924.676000pt;}
.y44{bottom:925.788000pt;}
.yc7{bottom:928.301333pt;}
.y6a{bottom:935.149333pt;}
.y97{bottom:936.116000pt;}
.y77{bottom:939.134667pt;}
.yc6{bottom:945.324000pt;}
.y16{bottom:952.532000pt;}
.y69{bottom:953.720000pt;}
.y43{bottom:957.704000pt;}
.y96{bottom:961.418667pt;}
.yc5{bottom:962.346667pt;}
.y68{bottom:972.289333pt;}
.y42{bottom:976.274667pt;}
.y95{bottom:978.750667pt;}
.yc4{bottom:979.369333pt;}
.y15{bottom:980.386667pt;}
.y67{bottom:990.860000pt;}
.y41{bottom:994.845333pt;}
.y94{bottom:996.082667pt;}
.yc3{bottom:996.392000pt;}
.y40{bottom:1013.414667pt;}
.y3f{bottom:1066.841333pt;}
.h8{height:23.209028pt;}
.h2{height:27.076941pt;}
.hd{height:27.184641pt;}
.h3{height:27.262909pt;}
.h9{height:30.945242pt;}
.he{height:31.157778pt;}
.h10{height:34.430976pt;}
.hf{height:34.813542pt;}
.h11{height:35.052646pt;}
.ha{height:38.256384pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.hc{height:45.907968pt;}
.h7{height:48.365611pt;}
.h5{height:68.861952pt;}
.h6{height:87.054592pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2a{left:74.862667pt;}
.x29{left:76.309333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.626667pt;}
.x23{left:240.596000pt;}
.x5{left:250.204000pt;}
.x1c{left:255.250667pt;}
.x20{left:258.730667pt;}
.x1d{left:263.470667pt;}
.x1e{left:265.454667pt;}
.x22{left:267.254667pt;}
.x21{left:273.973333pt;}
.x1f{left:277.134667pt;}
.x24{left:281.417333pt;}
.x14{left:299.153333pt;}
.xa{left:300.054667pt;}
.x15{left:305.796000pt;}
.xb{left:306.696000pt;}
.xc{left:309.950667pt;}
.x25{left:311.242667pt;}
.xd{left:316.592000pt;}
.x10{left:319.441333pt;}
.x11{left:326.082667pt;}
.x12{left:329.370667pt;}
.x26{left:332.564000pt;}
.x13{left:336.012000pt;}
.x16{left:390.210667pt;}
.x17{left:396.852000pt;}
.x18{left:439.529333pt;}
.x19{left:453.774667pt;}
.x27{left:477.642667pt;}
.x28{left:490.926667pt;}
.x6{left:618.382667pt;}
.x7{left:625.025333pt;}
.xe{left:642.165333pt;}
.xf{left:648.806667pt;}
.x1a{left:704.661333pt;}
.x1b{left:711.302667pt;}
.x8{left:716.500000pt;}
.x9{left:723.142667pt;}
}




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