
    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_20ef93a0f34a3895b350b961.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_1f27d7c91f5983abaeacbba6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_04807a08d42ace659557068c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_d83baebbfa4678dd95108c7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_54626c74baec2b2c5c67cda7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_b7d512be242c88ab457607f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_20ef93a0f34a3895b350b961.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_097ea4a21f405f871b91df67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_51dc2f93631ead1bebe86534.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.981934;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_995802740d86558765c1848d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_352fec27d267217992ca2ff3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_0d5457d5f142bfb0536f4ba3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_5eaf61bd453b0a572f74dcfa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_f68fa3ec775965f8261e6c4d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e907325fe05ea40a5ce6e110.woff2')format("woff");}.fff{font-family:fff;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29fa42fdd84b28081c5125fd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6dde4e8087a54ef51a2f7756.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_45359bce4d3d4a693f9101ed.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_eb4e97b6a61ac25ecb04b0e9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_59eb3084c45752552f10e643.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_aab28da227c79a5edf0134ce.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bf1c04f57d9d998e4583ac55.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fac22e15198b50185c5e78d3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e907325fe05ea40a5ce6e110.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.981934;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:ff19;src:url('chunks/assets/font_e0f4f1dea8292b4c59977e6e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.202148;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:ff1a;src:url('chunks/assets/font_befe7c5fbddb2aea4b7b30f8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.202148;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:ff1b;src:url('chunks/assets/font_59eb3084c45752552f10e643.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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:ff1c;src:url('chunks/assets/font_3e5588425a3240717501d6fe.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_c0f2b3d0676bf120eaca5d04.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-5.820000px;}
.lsd{letter-spacing:-0.147000px;}
.ls1e{letter-spacing:-0.137400px;}
.ls4{letter-spacing:-0.109800px;}
.lsf{letter-spacing:-0.042000px;}
.ls17{letter-spacing:-0.032400px;}
.ls1{letter-spacing:-0.027000px;}
.ls23{letter-spacing:-0.018000px;}
.ls20{letter-spacing:-0.015600px;}
.ls1c{letter-spacing:-0.003000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.009120px;}
.ls13{letter-spacing:0.015600px;}
.ls8{letter-spacing:0.036600px;}
.ls2{letter-spacing:0.071400px;}
.lsa{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.078600px;}
.ls6{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.107760px;}
.lsc{letter-spacing:0.123600px;}
.ls21{letter-spacing:0.166200px;}
.ls19{letter-spacing:0.182160px;}
.ls9{letter-spacing:0.182400px;}
.ls1b{letter-spacing:0.189600px;}
.ls10{letter-spacing:0.231120px;}
.ls16{letter-spacing:0.318000px;}
.ls1a{letter-spacing:0.318240px;}
.ls1d{letter-spacing:2.925360px;}
.ls11{letter-spacing:6.165360px;}
.ls15{letter-spacing:38.205360px;}
.ls3{letter-spacing:39.645360px;}
.ls1f{letter-spacing:39.765360px;}
.ls14{letter-spacing:41.445360px;}
.ls18{letter-spacing:45.045360px;}
.ls22{letter-spacing:51.948000px;}
.lsb{letter-spacing:87.840720px;}
.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;}
}
.ws1a{word-spacing:-65.742600px;}
.ws8{word-spacing:-18.956880px;}
.ws18{word-spacing:-15.078480px;}
.ws1b{word-spacing:-15.055080px;}
.ws16{word-spacing:-15.012480px;}
.ws6{word-spacing:-14.978880px;}
.ws5{word-spacing:-14.967480px;}
.ws3{word-spacing:-14.960280px;}
.ws1{word-spacing:-14.888880px;}
.ws19{word-spacing:-14.885880px;}
.ws0{word-spacing:-14.861880px;}
.ws15{word-spacing:-14.856480px;}
.ws4{word-spacing:-14.779080px;}
.ws17{word-spacing:-14.741880px;}
.ws1c{word-spacing:-12.186000px;}
.ws13{word-spacing:-0.330000px;}
.wsd{word-spacing:-0.198000px;}
.wse{word-spacing:-0.024000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.132000px;}
.wsc{word-spacing:0.198000px;}
.wsb{word-spacing:0.264000px;}
.wsf{word-spacing:0.486000px;}
.ws14{word-spacing:0.696000px;}
.ws9{word-spacing:25.715640px;}
.ws11{word-spacing:42.003360px;}
.ws7{word-spacing:42.872400px;}
.ws10{word-spacing:44.582040px;}
.ws12{word-spacing:49.083120px;}
._6{margin-left:-6.980016px;}
._5{margin-left:-5.615736px;}
._7{margin-left:-4.583616px;}
._4{margin-left:-2.858496px;}
._3{margin-left:-1.045572px;}
._0{width:1.251588px;}
._2{width:2.330784px;}
._1{width:849.231120px;}
.fc7{color:rgb(47,84,150);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,102);}
.fc6{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(23,54,93);}
.fc0{color:rgb(33,86,139);}
.fs4{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.410000px;}
.yc3{bottom:24.480000px;}
.y18{bottom:24.570000px;}
.yc2{bottom:44.640000px;}
.y54{bottom:112.320000px;}
.y74{bottom:127.080000px;}
.y34{bottom:128.700000px;}
.ya3{bottom:131.490000px;}
.y53{bottom:134.100000px;}
.y43{bottom:141.390000px;}
.ycf{bottom:143.640000px;}
.y73{bottom:148.770000px;}
.y33{bottom:148.860000px;}
.ya2{bottom:154.710000px;}
.y42{bottom:161.580000px;}
.yce{bottom:163.830000px;}
.y72{bottom:170.580000px;}
.ya1{bottom:173.460000px;}
.y1b{bottom:178.590000px;}
.y41{bottom:181.740000px;}
.ycd{bottom:183.990000px;}
.y71{bottom:192.270000px;}
.y1a{bottom:195.060000px;}
.yde{bottom:202.800000px;}
.ycc{bottom:204.150000px;}
.ye5{bottom:210.360000px;}
.y40{bottom:210.810000px;}
.y70{bottom:214.050000px;}
.ycb{bottom:224.310000px;}
.y81{bottom:224.490000px;}
.y3f{bottom:230.970000px;}
.y6f{bottom:235.740000px;}
.y19{bottom:236.100000px;}
.yca{bottom:244.380000px;}
.yb2{bottom:245.010000px;}
.y6e{bottom:257.520000px;}
.y3e{bottom:260.130000px;}
.yc9{bottom:264.540000px;}
.y17{bottom:277.140000px;}
.yb1{bottom:278.760000px;}
.y6d{bottom:279.300000px;}
.y3d{bottom:280.290000px;}
.yc8{bottom:284.700000px;}
.y6c{bottom:299.460000px;}
.yb0{bottom:300.450000px;}
.yc7{bottom:304.860000px;}
.y32{bottom:305.760000px;}
.y3c{bottom:312.420000px;}
.y15{bottom:318.180000px;}
.y6b{bottom:319.530000px;}
.yaf{bottom:322.230000px;}
.yc6{bottom:325.020000px;}
.y31{bottom:325.920000px;}
.y3b{bottom:335.550000px;}
.y6a{bottom:339.690000px;}
.yc5{bottom:341.490000px;}
.ya0{bottom:343.200000px;}
.y14{bottom:343.470000px;}
.yae{bottom:344.010000px;}
.y30{bottom:346.080000px;}
.y3a{bottom:358.770000px;}
.y69{bottom:359.040000px;}
.y13{bottom:363.630000px;}
.y9f{bottom:364.890000px;}
.y2f{bottom:366.150000px;}
.yad{bottom:367.140000px;}
.y68{bottom:376.320000px;}
.yc4{bottom:382.530000px;}
.yac{bottom:385.860000px;}
.y9e{bottom:386.670000px;}
.y12{bottom:392.700000px;}
.y39{bottom:392.970000px;}
.y67{bottom:396.480000px;}
.y9d{bottom:408.360000px;}
.y66{bottom:416.640000px;}
.yc1{bottom:423.570000px;}
.y9c{bottom:430.140000px;}
.y11{bottom:431.130000px;}
.y65{bottom:436.710000px;}
.y38{bottom:444.360000px;}
.y80{bottom:450.120000px;}
.y64{bottom:456.870000px;}
.y9b{bottom:459.300000px;}
.y9a{bottom:479.460000px;}
.y37{bottom:482.520000px;}
.y7f{bottom:483.870000px;}
.yc0{bottom:484.680000px;}
.y2e{bottom:487.470000px;}
.y10{bottom:489.630000px;}
.y63{bottom:491.160000px;}
.y99{bottom:495.120000px;}
.y36{bottom:502.680000px;}
.y7e{bottom:505.560000px;}
.y2d{bottom:507.630000px;}
.y35{bottom:522.840000px;}
.ybf{bottom:525.720000px;}
.y7d{bottom:527.340000px;}
.y2c{bottom:527.790000px;}
.y98{bottom:529.050000px;}
.y62{bottom:542.550000px;}
.ye4{bottom:543.000000px;}
.y2b{bottom:547.860000px;}
.y52{bottom:548.490000px;}
.y7c{bottom:549.030000px;}
.y97{bottom:552.270000px;}
.ydd{bottom:560.640000px;}
.y61{bottom:562.620000px;}
.ye3{bottom:563.160000px;}
.y2a{bottom:568.020000px;}
.y7b{bottom:570.810000px;}
.ybe{bottom:571.170000px;}
.y51{bottom:571.620000px;}
.y96{bottom:575.430000px;}
.ydc{bottom:580.830000px;}
.y60{bottom:582.810000px;}
.ye2{bottom:583.260000px;}
.y29{bottom:588.210000px;}
.ybd{bottom:591.360000px;}
.y7a{bottom:592.530000px;}
.ydb{bottom:600.990000px;}
.y5f{bottom:602.970000px;}
.ye1{bottom:603.420000px;}
.y28{bottom:603.960000px;}
.y95{bottom:604.590000px;}
.y50{bottom:605.400000px;}
.ybc{bottom:611.520000px;}
.yda{bottom:621.150000px;}
.y5e{bottom:623.130000px;}
.ye0{bottom:623.580000px;}
.y94{bottom:624.750000px;}
.y4f{bottom:627.180000px;}
.ybb{bottom:631.590000px;}
.yd9{bottom:641.220000px;}
.y5d{bottom:643.290000px;}
.y93{bottom:644.910000px;}
.y4e{bottom:648.870000px;}
.yd8{bottom:661.380000px;}
.ydf{bottom:661.920000px;}
.y5c{bottom:663.360000px;}
.y92{bottom:664.980000px;}
.yba{bottom:669.750000px;}
.y4d{bottom:670.650000px;}
.yd7{bottom:681.540000px;}
.y5b{bottom:683.520000px;}
.y91{bottom:685.140000px;}
.yb9{bottom:689.910000px;}
.y4c{bottom:692.340000px;}
.yab{bottom:697.110000px;}
.yd6{bottom:701.700000px;}
.y5a{bottom:703.680000px;}
.y90{bottom:705.300000px;}
.yb8{bottom:710.070000px;}
.y4b{bottom:714.120000px;}
.yd5{bottom:721.860000px;}
.y59{bottom:723.840000px;}
.y8f{bottom:725.460000px;}
.yaa{bottom:730.860000px;}
.y4a{bottom:735.810000px;}
.yd4{bottom:741.930000px;}
.y58{bottom:744.000000px;}
.y8e{bottom:745.620000px;}
.yb7{bottom:748.410000px;}
.ya9{bottom:752.550000px;}
.yd3{bottom:762.090000px;}
.ya8{bottom:774.330000px;}
.yf{bottom:777.570000px;}
.yd2{bottom:782.250000px;}
.y8d{bottom:783.870000px;}
.ya7{bottom:793.050000px;}
.ye{bottom:797.640000px;}
.yd1{bottom:802.410000px;}
.y27{bottom:806.370000px;}
.yb6{bottom:811.320000px;}
.yd{bottom:817.800000px;}
.yd0{bottom:822.570000px;}
.y26{bottom:826.440000px;}
.y8c{bottom:826.800000px;}
.yb5{bottom:831.480000px;}
.yc{bottom:837.960000px;}
.y8b{bottom:842.640000px;}
.y25{bottom:846.600000px;}
.yb4{bottom:854.610000px;}
.y8a{bottom:862.800000px;}
.y24{bottom:866.760000px;}
.yb{bottom:867.120000px;}
.yb3{bottom:873.420000px;}
.y89{bottom:882.960000px;}
.y23{bottom:886.920000px;}
.ya{bottom:887.280000px;}
.y79{bottom:898.620000px;}
.y88{bottom:903.120000px;}
.y22{bottom:907.080000px;}
.y9{bottom:907.350000px;}
.y49{bottom:913.650000px;}
.y78{bottom:921.840000px;}
.y87{bottom:923.280000px;}
.y8{bottom:927.510000px;}
.y21{bottom:941.280000px;}
.y86{bottom:943.350000px;}
.y77{bottom:955.500000px;}
.y48{bottom:957.120000px;}
.y85{bottom:963.510000px;}
.y7{bottom:965.670000px;}
.y57{bottom:971.970000px;}
.y20{bottom:974.670000px;}
.y76{bottom:977.280000px;}
.y47{bottom:978.900000px;}
.y84{bottom:983.670000px;}
.ya6{bottom:985.560000px;}
.y6{bottom:985.830000px;}
.y1f{bottom:994.860000px;}
.y75{bottom:999.000000px;}
.y46{bottom:1000.620000px;}
.y83{bottom:1003.860000px;}
.y5{bottom:1006.020000px;}
.y1e{bottom:1015.020000px;}
.ya5{bottom:1019.340000px;}
.y56{bottom:1020.780000px;}
.y45{bottom:1022.400000px;}
.y82{bottom:1024.020000px;}
.y4{bottom:1026.090000px;}
.y1d{bottom:1035.090000px;}
.ya4{bottom:1041.120000px;}
.y55{bottom:1042.470000px;}
.y44{bottom:1044.090000px;}
.y3{bottom:1046.250000px;}
.y1c{bottom:1064.250000px;}
.y2{bottom:1090.980000px;}
.y1{bottom:1116.180000px;}
.h6{height:20.160000px;}
.hd{height:40.230000px;}
.h7{height:40.320000px;}
.hb{height:49.025566px;}
.he{height:50.053359px;}
.h4{height:53.012812px;}
.ha{height:53.709961px;}
.h1{height:56.969473px;}
.hc{height:60.390000px;}
.h2{height:65.526152px;}
.h8{height:67.415273px;}
.h3{height:67.456230px;}
.h9{height:67.714259px;}
.h5{height:122.748223px;}
.h0{height:1188.000000px;}
.w3{width:106.920000px;}
.w5{width:184.410000px;}
.w4{width:309.810000px;}
.w1{width:349.950000px;}
.w2{width:349.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x3{left:108.000000px;}
.x18{left:135.000000px;}
.x1e{left:157.710000px;}
.x9{left:162.030000px;}
.xa{left:189.030000px;}
.x10{left:216.030000px;}
.x11{left:243.030000px;}
.x1f{left:265.350000px;}
.x1b{left:410.880000px;}
.xd{left:432.120000px;}
.x6{left:435.000000px;}
.x2{left:449.040000px;}
.x8{left:459.390000px;}
.x1d{left:512.700000px;}
.xe{left:546.360000px;}
.x1c{left:556.710000px;}
.x14{left:559.500000px;}
.x12{left:574.800000px;}
.x20{left:575.880000px;}
.x16{left:577.680000px;}
.x13{left:587.670000px;}
.x19{left:589.920000px;}
.x4{left:592.440000px;}
.xb{left:605.310000px;}
.x1a{left:611.520000px;}
.x23{left:616.830000px;}
.x15{left:620.070000px;}
.x21{left:630.600000px;}
.x22{left:632.850000px;}
.xf{left:637.890000px;}
.x24{left:717.810000px;}
.x17{left:747.060000px;}
.x5{left:749.310000px;}
.x1{left:810.090000px;}
.xc{left:814.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-5.173333pt;}
.lsd{letter-spacing:-0.130667pt;}
.ls1e{letter-spacing:-0.122133pt;}
.ls4{letter-spacing:-0.097600pt;}
.lsf{letter-spacing:-0.037333pt;}
.ls17{letter-spacing:-0.028800pt;}
.ls1{letter-spacing:-0.024000pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls20{letter-spacing:-0.013867pt;}
.ls1c{letter-spacing:-0.002667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.008107pt;}
.ls13{letter-spacing:0.013867pt;}
.ls8{letter-spacing:0.032533pt;}
.ls2{letter-spacing:0.063467pt;}
.lsa{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.069867pt;}
.ls6{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.095787pt;}
.lsc{letter-spacing:0.109867pt;}
.ls21{letter-spacing:0.147733pt;}
.ls19{letter-spacing:0.161920pt;}
.ls9{letter-spacing:0.162133pt;}
.ls1b{letter-spacing:0.168533pt;}
.ls10{letter-spacing:0.205440pt;}
.ls16{letter-spacing:0.282667pt;}
.ls1a{letter-spacing:0.282880pt;}
.ls1d{letter-spacing:2.600320pt;}
.ls11{letter-spacing:5.480320pt;}
.ls15{letter-spacing:33.960320pt;}
.ls3{letter-spacing:35.240320pt;}
.ls1f{letter-spacing:35.346987pt;}
.ls14{letter-spacing:36.840320pt;}
.ls18{letter-spacing:40.040320pt;}
.ls22{letter-spacing:46.176000pt;}
.lsb{letter-spacing:78.080640pt;}
.ws1a{word-spacing:-58.437867pt;}
.ws8{word-spacing:-16.850560pt;}
.ws18{word-spacing:-13.403093pt;}
.ws1b{word-spacing:-13.382293pt;}
.ws16{word-spacing:-13.344427pt;}
.ws6{word-spacing:-13.314560pt;}
.ws5{word-spacing:-13.304427pt;}
.ws3{word-spacing:-13.298027pt;}
.ws1{word-spacing:-13.234560pt;}
.ws19{word-spacing:-13.231893pt;}
.ws0{word-spacing:-13.210560pt;}
.ws15{word-spacing:-13.205760pt;}
.ws4{word-spacing:-13.136960pt;}
.ws17{word-spacing:-13.103893pt;}
.ws1c{word-spacing:-10.832000pt;}
.ws13{word-spacing:-0.293333pt;}
.wsd{word-spacing:-0.176000pt;}
.wse{word-spacing:-0.021333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.117333pt;}
.wsc{word-spacing:0.176000pt;}
.wsb{word-spacing:0.234667pt;}
.wsf{word-spacing:0.432000pt;}
.ws14{word-spacing:0.618667pt;}
.ws9{word-spacing:22.858347pt;}
.ws11{word-spacing:37.336320pt;}
.ws7{word-spacing:38.108800pt;}
.ws10{word-spacing:39.628480pt;}
.ws12{word-spacing:43.629440pt;}
._6{margin-left:-6.204459pt;}
._5{margin-left:-4.991766pt;}
._7{margin-left:-4.074326pt;}
._4{margin-left:-2.540886pt;}
._3{margin-left:-0.929397pt;}
._0{width:1.112523pt;}
._2{width:2.071808pt;}
._1{width:754.872107pt;}
.fs4{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.920000pt;}
.yc3{bottom:21.760000pt;}
.y18{bottom:21.840000pt;}
.yc2{bottom:39.680000pt;}
.y54{bottom:99.840000pt;}
.y74{bottom:112.960000pt;}
.y34{bottom:114.400000pt;}
.ya3{bottom:116.880000pt;}
.y53{bottom:119.200000pt;}
.y43{bottom:125.680000pt;}
.ycf{bottom:127.680000pt;}
.y73{bottom:132.240000pt;}
.y33{bottom:132.320000pt;}
.ya2{bottom:137.520000pt;}
.y42{bottom:143.626667pt;}
.yce{bottom:145.626667pt;}
.y72{bottom:151.626667pt;}
.ya1{bottom:154.186667pt;}
.y1b{bottom:158.746667pt;}
.y41{bottom:161.546667pt;}
.ycd{bottom:163.546667pt;}
.y71{bottom:170.906667pt;}
.y1a{bottom:173.386667pt;}
.yde{bottom:180.266667pt;}
.ycc{bottom:181.466667pt;}
.ye5{bottom:186.986667pt;}
.y40{bottom:187.386667pt;}
.y70{bottom:190.266667pt;}
.ycb{bottom:199.386667pt;}
.y81{bottom:199.546667pt;}
.y3f{bottom:205.306667pt;}
.y6f{bottom:209.546667pt;}
.y19{bottom:209.866667pt;}
.yca{bottom:217.226667pt;}
.yb2{bottom:217.786667pt;}
.y6e{bottom:228.906667pt;}
.y3e{bottom:231.226667pt;}
.yc9{bottom:235.146667pt;}
.y17{bottom:246.346667pt;}
.yb1{bottom:247.786667pt;}
.y6d{bottom:248.266667pt;}
.y3d{bottom:249.146667pt;}
.yc8{bottom:253.066667pt;}
.y6c{bottom:266.186667pt;}
.yb0{bottom:267.066667pt;}
.yc7{bottom:270.986667pt;}
.y32{bottom:271.786667pt;}
.y3c{bottom:277.706667pt;}
.y15{bottom:282.826667pt;}
.y6b{bottom:284.026667pt;}
.yaf{bottom:286.426667pt;}
.yc6{bottom:288.906667pt;}
.y31{bottom:289.706667pt;}
.y3b{bottom:298.266667pt;}
.y6a{bottom:301.946667pt;}
.yc5{bottom:303.546667pt;}
.ya0{bottom:305.066667pt;}
.y14{bottom:305.306667pt;}
.yae{bottom:305.786667pt;}
.y30{bottom:307.626667pt;}
.y3a{bottom:318.906667pt;}
.y69{bottom:319.146667pt;}
.y13{bottom:323.226667pt;}
.y9f{bottom:324.346667pt;}
.y2f{bottom:325.466667pt;}
.yad{bottom:326.346667pt;}
.y68{bottom:334.506667pt;}
.yc4{bottom:340.026667pt;}
.yac{bottom:342.986667pt;}
.y9e{bottom:343.706667pt;}
.y12{bottom:349.066667pt;}
.y39{bottom:349.306667pt;}
.y67{bottom:352.426667pt;}
.y9d{bottom:362.986667pt;}
.y66{bottom:370.346667pt;}
.yc1{bottom:376.506667pt;}
.y9c{bottom:382.346667pt;}
.y11{bottom:383.226667pt;}
.y65{bottom:388.186667pt;}
.y38{bottom:394.986667pt;}
.y80{bottom:400.106667pt;}
.y64{bottom:406.106667pt;}
.y9b{bottom:408.266667pt;}
.y9a{bottom:426.186667pt;}
.y37{bottom:428.906667pt;}
.y7f{bottom:430.106667pt;}
.yc0{bottom:430.826667pt;}
.y2e{bottom:433.306667pt;}
.y10{bottom:435.226667pt;}
.y63{bottom:436.586667pt;}
.y99{bottom:440.106667pt;}
.y36{bottom:446.826667pt;}
.y7e{bottom:449.386667pt;}
.y2d{bottom:451.226667pt;}
.y35{bottom:464.746667pt;}
.ybf{bottom:467.306667pt;}
.y7d{bottom:468.746667pt;}
.y2c{bottom:469.146667pt;}
.y98{bottom:470.266667pt;}
.y62{bottom:482.266667pt;}
.ye4{bottom:482.666667pt;}
.y2b{bottom:486.986667pt;}
.y52{bottom:487.546667pt;}
.y7c{bottom:488.026667pt;}
.y97{bottom:490.906667pt;}
.ydd{bottom:498.346667pt;}
.y61{bottom:500.106667pt;}
.ye3{bottom:500.586667pt;}
.y2a{bottom:504.906667pt;}
.y7b{bottom:507.386667pt;}
.ybe{bottom:507.706667pt;}
.y51{bottom:508.106667pt;}
.y96{bottom:511.493333pt;}
.ydc{bottom:516.293333pt;}
.y60{bottom:518.053333pt;}
.ye2{bottom:518.453333pt;}
.y29{bottom:522.853333pt;}
.ybd{bottom:525.653333pt;}
.y7a{bottom:526.693333pt;}
.ydb{bottom:534.213333pt;}
.y5f{bottom:535.973333pt;}
.ye1{bottom:536.373333pt;}
.y28{bottom:536.853333pt;}
.y95{bottom:537.413333pt;}
.y50{bottom:538.133333pt;}
.ybc{bottom:543.573333pt;}
.yda{bottom:552.133333pt;}
.y5e{bottom:553.893333pt;}
.ye0{bottom:554.293333pt;}
.y94{bottom:555.333333pt;}
.y4f{bottom:557.493333pt;}
.ybb{bottom:561.413333pt;}
.yd9{bottom:569.973333pt;}
.y5d{bottom:571.813333pt;}
.y93{bottom:573.253333pt;}
.y4e{bottom:576.773333pt;}
.yd8{bottom:587.893333pt;}
.ydf{bottom:588.373333pt;}
.y5c{bottom:589.653333pt;}
.y92{bottom:591.093333pt;}
.yba{bottom:595.333333pt;}
.y4d{bottom:596.133333pt;}
.yd7{bottom:605.813333pt;}
.y5b{bottom:607.573333pt;}
.y91{bottom:609.013333pt;}
.yb9{bottom:613.253333pt;}
.y4c{bottom:615.413333pt;}
.yab{bottom:619.653333pt;}
.yd6{bottom:623.733333pt;}
.y5a{bottom:625.493333pt;}
.y90{bottom:626.933333pt;}
.yb8{bottom:631.173333pt;}
.y4b{bottom:634.773333pt;}
.yd5{bottom:641.653333pt;}
.y59{bottom:643.413333pt;}
.y8f{bottom:644.853333pt;}
.yaa{bottom:649.653333pt;}
.y4a{bottom:654.053333pt;}
.yd4{bottom:659.493333pt;}
.y58{bottom:661.333333pt;}
.y8e{bottom:662.773333pt;}
.yb7{bottom:665.253333pt;}
.ya9{bottom:668.933333pt;}
.yd3{bottom:677.413333pt;}
.ya8{bottom:688.293333pt;}
.yf{bottom:691.173333pt;}
.yd2{bottom:695.333333pt;}
.y8d{bottom:696.773333pt;}
.ya7{bottom:704.933333pt;}
.ye{bottom:709.013333pt;}
.yd1{bottom:713.253333pt;}
.y27{bottom:716.773333pt;}
.yb6{bottom:721.173333pt;}
.yd{bottom:726.933333pt;}
.yd0{bottom:731.173333pt;}
.y26{bottom:734.613333pt;}
.y8c{bottom:734.933333pt;}
.yb5{bottom:739.093333pt;}
.yc{bottom:744.853333pt;}
.y8b{bottom:749.013333pt;}
.y25{bottom:752.533333pt;}
.yb4{bottom:759.653333pt;}
.y8a{bottom:766.933333pt;}
.y24{bottom:770.453333pt;}
.yb{bottom:770.773333pt;}
.yb3{bottom:776.373333pt;}
.y89{bottom:784.853333pt;}
.y23{bottom:788.373333pt;}
.ya{bottom:788.693333pt;}
.y79{bottom:798.773333pt;}
.y88{bottom:802.773333pt;}
.y22{bottom:806.293333pt;}
.y9{bottom:806.533333pt;}
.y49{bottom:812.133333pt;}
.y78{bottom:819.413333pt;}
.y87{bottom:820.693333pt;}
.y8{bottom:824.453333pt;}
.y21{bottom:836.693333pt;}
.y86{bottom:838.533333pt;}
.y77{bottom:849.333333pt;}
.y48{bottom:850.773333pt;}
.y85{bottom:856.453333pt;}
.y7{bottom:858.373333pt;}
.y57{bottom:863.973333pt;}
.y20{bottom:866.373333pt;}
.y76{bottom:868.693333pt;}
.y47{bottom:870.133333pt;}
.y84{bottom:874.373333pt;}
.ya6{bottom:876.053333pt;}
.y6{bottom:876.293333pt;}
.y1f{bottom:884.320000pt;}
.y75{bottom:888.000000pt;}
.y46{bottom:889.440000pt;}
.y83{bottom:892.320000pt;}
.y5{bottom:894.240000pt;}
.y1e{bottom:902.240000pt;}
.ya5{bottom:906.080000pt;}
.y56{bottom:907.360000pt;}
.y45{bottom:908.800000pt;}
.y82{bottom:910.240000pt;}
.y4{bottom:912.080000pt;}
.y1d{bottom:920.080000pt;}
.ya4{bottom:925.440000pt;}
.y55{bottom:926.640000pt;}
.y44{bottom:928.080000pt;}
.y3{bottom:930.000000pt;}
.y1c{bottom:946.000000pt;}
.y2{bottom:969.760000pt;}
.y1{bottom:992.160000pt;}
.h6{height:17.920000pt;}
.hd{height:35.760000pt;}
.h7{height:35.840000pt;}
.hb{height:43.578281pt;}
.he{height:44.491875pt;}
.h4{height:47.122500pt;}
.ha{height:47.742188pt;}
.h1{height:50.639531pt;}
.hc{height:53.680000pt;}
.h2{height:58.245469pt;}
.h8{height:59.924687pt;}
.h3{height:59.961094pt;}
.h9{height:60.190452pt;}
.h5{height:109.109531pt;}
.h0{height:1056.000000pt;}
.w3{width:95.040000pt;}
.w5{width:163.920000pt;}
.w4{width:275.386667pt;}
.w1{width:311.066667pt;}
.w2{width:311.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x3{left:96.000000pt;}
.x18{left:120.000000pt;}
.x1e{left:140.186667pt;}
.x9{left:144.026667pt;}
.xa{left:168.026667pt;}
.x10{left:192.026667pt;}
.x11{left:216.026667pt;}
.x1f{left:235.866667pt;}
.x1b{left:365.226667pt;}
.xd{left:384.106667pt;}
.x6{left:386.666667pt;}
.x2{left:399.146667pt;}
.x8{left:408.346667pt;}
.x1d{left:455.733333pt;}
.xe{left:485.653333pt;}
.x1c{left:494.853333pt;}
.x14{left:497.333333pt;}
.x12{left:510.933333pt;}
.x20{left:511.893333pt;}
.x16{left:513.493333pt;}
.x13{left:522.373333pt;}
.x19{left:524.373333pt;}
.x4{left:526.613333pt;}
.xb{left:538.053333pt;}
.x1a{left:543.573333pt;}
.x23{left:548.293333pt;}
.x15{left:551.173333pt;}
.x21{left:560.533333pt;}
.x22{left:562.533333pt;}
.xf{left:567.013333pt;}
.x24{left:638.053333pt;}
.x17{left:664.053333pt;}
.x5{left:666.053333pt;}
.x1{left:720.080000pt;}
.xc{left:724.080000pt;}
}




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