
    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_732cad1eddc3745da0168ebd.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_b55288a0d0e058dad8ea0e7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_5ae83e8110fbfec69256421f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142578;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_ffc026026ac25420c351b48b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099121;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_fea3fcf0deb03a3387b4b7cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4494a7fd610889516c28354b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024000;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_59426393bfb2789096192775.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_be13acaca31920802ab80534.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_721f8ebeceb9cf9730d2591f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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;}
.mb{transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.138887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138887,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.172221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172221,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.222216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222216,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.227777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227777,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.400073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400073,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.538600px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.456920px;}
.ls8{letter-spacing:-0.651240px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.328020px;}
.ls5{letter-spacing:0.960030px;}
.ls1{letter-spacing:1.125320px;}
.ls6{letter-spacing:1.650030px;}
.ls4{letter-spacing:1.827540px;}
.ls2{letter-spacing:1.890025px;}
.lsa{letter-spacing:1.904220px;}
.ls7{letter-spacing:2.250030px;}
.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;}
}
.ws27{word-spacing:-18.360000px;}
.ws71{word-spacing:-16.488000px;}
.ws9a{word-spacing:-3.960000px;}
.ws6b{word-spacing:-3.240000px;}
.ws25{word-spacing:-3.096000px;}
.ws44{word-spacing:-3.024000px;}
.wsa1{word-spacing:-2.952000px;}
.ws90{word-spacing:-2.880000px;}
.ws95{word-spacing:-2.808000px;}
.ws32{word-spacing:-2.736000px;}
.ws70{word-spacing:-2.664000px;}
.ws67{word-spacing:-2.592000px;}
.ws3c{word-spacing:-2.520000px;}
.wsd{word-spacing:-2.448000px;}
.ws84{word-spacing:-2.376000px;}
.ws37{word-spacing:-2.304000px;}
.ws1e{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.088000px;}
.ws58{word-spacing:-2.016000px;}
.ws61{word-spacing:-1.944000px;}
.ws3e{word-spacing:-1.800000px;}
.ws52{word-spacing:-1.656000px;}
.ws9f{word-spacing:-1.584000px;}
.ws51{word-spacing:-1.512000px;}
.ws76{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.368000px;}
.ws8{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.224000px;}
.wsa{word-spacing:-1.152000px;}
.ws8d{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.008000px;}
.ws96{word-spacing:-0.864000px;}
.ws56{word-spacing:-0.792000px;}
.ws35{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.576000px;}
.ws5c{word-spacing:-0.504000px;}
.ws11{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.288000px;}
.ws62{word-spacing:-0.252000px;}
.ws98{word-spacing:-0.144000px;}
.ws38{word-spacing:-0.072000px;}
.ws45{word-spacing:-0.057600px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:0.072000px;}
.ws40{word-spacing:0.144000px;}
.wsa0{word-spacing:0.216000px;}
.ws60{word-spacing:0.360000px;}
.ws54{word-spacing:0.432000px;}
.ws2b{word-spacing:0.576000px;}
.ws1{word-spacing:0.648000px;}
.ws57{word-spacing:0.720000px;}
.ws36{word-spacing:0.792000px;}
.ws55{word-spacing:0.864000px;}
.ws3f{word-spacing:0.936000px;}
.ws18{word-spacing:1.008000px;}
.ws30{word-spacing:1.080000px;}
.ws7{word-spacing:1.152000px;}
.ws4{word-spacing:1.296000px;}
.ws82{word-spacing:1.368000px;}
.ws33{word-spacing:1.440000px;}
.ws42{word-spacing:1.512000px;}
.ws64{word-spacing:1.584000px;}
.ws81{word-spacing:1.656000px;}
.ws63{word-spacing:1.728000px;}
.ws5a{word-spacing:1.800000px;}
.wsa2{word-spacing:1.872000px;}
.ws4f{word-spacing:1.944000px;}
.ws43{word-spacing:2.016000px;}
.ws2a{word-spacing:2.160000px;}
.ws5d{word-spacing:2.232000px;}
.ws5b{word-spacing:2.304000px;}
.ws93{word-spacing:2.448000px;}
.ws8c{word-spacing:2.520000px;}
.ws10{word-spacing:2.592000px;}
.ws8b{word-spacing:2.736000px;}
.ws9{word-spacing:2.808000px;}
.ws4d{word-spacing:2.880000px;}
.ws2e{word-spacing:2.952000px;}
.ws3d{word-spacing:3.024000px;}
.ws26{word-spacing:3.096000px;}
.ws7b{word-spacing:3.168000px;}
.ws24{word-spacing:3.240000px;}
.wse{word-spacing:3.312000px;}
.ws91{word-spacing:3.384000px;}
.ws7c{word-spacing:3.456000px;}
.ws1f{word-spacing:3.528000px;}
.ws3{word-spacing:3.600000px;}
.ws21{word-spacing:3.816000px;}
.ws7a{word-spacing:3.888000px;}
.wsb{word-spacing:3.960000px;}
.ws9c{word-spacing:4.032000px;}
.ws7f{word-spacing:4.104000px;}
.ws6e{word-spacing:4.320000px;}
.ws2{word-spacing:4.392000px;}
.ws20{word-spacing:4.464000px;}
.ws5f{word-spacing:4.536000px;}
.ws49{word-spacing:4.608000px;}
.ws12{word-spacing:4.824000px;}
.ws53{word-spacing:4.896000px;}
.ws6{word-spacing:4.968000px;}
.ws4e{word-spacing:5.040000px;}
.ws2f{word-spacing:5.184000px;}
.ws5e{word-spacing:5.256000px;}
.ws17{word-spacing:5.328000px;}
.ws3a{word-spacing:5.400000px;}
.ws2c{word-spacing:5.472000px;}
.ws13{word-spacing:5.544000px;}
.ws6a{word-spacing:5.616000px;}
.ws31{word-spacing:5.688000px;}
.ws69{word-spacing:5.760000px;}
.ws29{word-spacing:5.904000px;}
.ws41{word-spacing:5.976000px;}
.ws48{word-spacing:6.048000px;}
.ws68{word-spacing:6.192000px;}
.ws34{word-spacing:6.264000px;}
.ws46{word-spacing:6.336000px;}
.ws72{word-spacing:6.408000px;}
.ws2d{word-spacing:6.480000px;}
.ws23{word-spacing:6.552000px;}
.ws1a{word-spacing:6.696000px;}
.ws7d{word-spacing:6.768000px;}
.ws94{word-spacing:6.912000px;}
.ws99{word-spacing:6.984000px;}
.wsf{word-spacing:7.128000px;}
.ws6c{word-spacing:7.272000px;}
.ws4a{word-spacing:7.344000px;}
.ws80{word-spacing:7.488000px;}
.ws8a{word-spacing:7.560000px;}
.ws39{word-spacing:7.632000px;}
.ws1c{word-spacing:7.704000px;}
.ws83{word-spacing:7.848000px;}
.ws65{word-spacing:7.920000px;}
.ws6d{word-spacing:7.992000px;}
.ws85{word-spacing:8.064000px;}
.ws92{word-spacing:8.136000px;}
.ws4c{word-spacing:8.208000px;}
.ws15{word-spacing:8.712000px;}
.ws28{word-spacing:8.784000px;}
.ws66{word-spacing:8.928000px;}
.ws6f{word-spacing:9.000000px;}
.ws59{word-spacing:9.072000px;}
.ws1d{word-spacing:9.288000px;}
.ws50{word-spacing:9.576000px;}
.ws19{word-spacing:9.648000px;}
.ws4b{word-spacing:9.792000px;}
.ws14{word-spacing:9.864000px;}
.ws74{word-spacing:10.224000px;}
.ws9d{word-spacing:10.296000px;}
.ws8f{word-spacing:10.656000px;}
.ws88{word-spacing:11.016000px;}
.ws9b{word-spacing:11.160000px;}
.ws86{word-spacing:11.664000px;}
.ws75{word-spacing:12.312000px;}
.ws77{word-spacing:12.744000px;}
.ws9e{word-spacing:13.392000px;}
.ws8e{word-spacing:13.968000px;}
.ws97{word-spacing:15.192000px;}
.ws79{word-spacing:15.336000px;}
.ws78{word-spacing:16.992000px;}
.ws7e{word-spacing:19.296000px;}
.ws5{word-spacing:21.240000px;}
._0{margin-left:-991.994880px;}
._2{margin-left:-727.454208px;}
._1{margin-left:-719.698944px;}
._f{margin-left:-13.669200px;}
._8{margin-left:-10.092288px;}
._c{margin-left:-6.465600px;}
._9{margin-left:-4.215014px;}
._d{margin-left:-2.610600px;}
._4{margin-left:-1.584000px;}
._3{width:1.042800px;}
._7{width:2.422800px;}
._5{width:3.535200px;}
._b{width:4.963200px;}
._6{width:6.106800px;}
._10{width:8.179456px;}
._12{width:10.143677px;}
._11{width:12.384310px;}
._e{width:13.562097px;}
._a{width:22.186800px;}
.fc7{color:rgb(246,135,18);}
.fc5{color:rgb(80,173,229);}
.fc4{color:rgb(155,176,185);}
.fc6{color:rgb(56,113,193);}
.fc3{color:rgb(101,127,140);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(101,98,99);}
.fc0{color:transparent;}
.fs9{font-size:14.242200px;}
.fs7{font-size:19.200600px;}
.fs8{font-size:33.000600px;}
.fsc{font-size:42.600000px;}
.fsa{font-size:45.000600px;}
.fsb{font-size:48.600000px;}
.fs6{font-size:57.600000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:132.000000px;}
.fs0{font-size:261.120000px;}
.fs4{font-size:296.832000px;}
.y0{bottom:0.000000px;}
.yed{bottom:73.855650px;}
.y26{bottom:77.767350px;}
.y9e{bottom:82.359600px;}
.ycd{bottom:84.427800px;}
.yb2{bottom:85.017750px;}
.ydd{bottom:89.247600px;}
.y46{bottom:89.281350px;}
.yb{bottom:89.291250px;}
.y58{bottom:90.863550px;}
.yf6{bottom:92.847600px;}
.y67{bottom:92.847750px;}
.yec{bottom:95.455650px;}
.y25{bottom:99.367350px;}
.y9d{bottom:103.959600px;}
.ycc{bottom:106.027800px;}
.yb1{bottom:106.617750px;}
.y10a{bottom:107.570250px;}
.y45{bottom:110.881350px;}
.ya{bottom:110.891400px;}
.y57{bottom:112.463400px;}
.yf5{bottom:114.447600px;}
.y66{bottom:114.447750px;}
.yeb{bottom:117.055650px;}
.ydc{bottom:119.351550px;}
.y138{bottom:120.311850px;}
.y24{bottom:120.967350px;}
.y9c{bottom:125.559600px;}
.ycb{bottom:127.627650px;}
.y109{bottom:129.170250px;}
.y44{bottom:132.481350px;}
.y56{bottom:134.063400px;}
.yf4{bottom:136.047600px;}
.y65{bottom:136.047750px;}
.yb0{bottom:136.721700px;}
.yea{bottom:138.655650px;}
.ydb{bottom:140.951550px;}
.y9{bottom:140.995200px;}
.y137{bottom:141.911850px;}
.y23{bottom:142.567500px;}
.y9b{bottom:147.159600px;}
.yca{bottom:149.227650px;}
.y108{bottom:150.770250px;}
.y43{bottom:154.081350px;}
.y55{bottom:155.663550px;}
.yf3{bottom:157.647600px;}
.y64{bottom:157.647750px;}
.yaf{bottom:158.321700px;}
.ye9{bottom:160.255650px;}
.y136{bottom:163.511850px;}
.y22{bottom:164.167350px;}
.y9a{bottom:168.759450px;}
.yc9{bottom:170.827650px;}
.yda{bottom:171.055500px;}
.y107{bottom:172.370250px;}
.y42{bottom:175.681350px;}
.y54{bottom:177.263550px;}
.y63{bottom:179.247750px;}
.yae{bottom:179.921700px;}
.ye8{bottom:181.855650px;}
.y135{bottom:185.111850px;}
.y21{bottom:185.767350px;}
.yf2{bottom:187.751550px;}
.yc8{bottom:192.427800px;}
.y41{bottom:197.281350px;}
.y53{bottom:198.863550px;}
.y62{bottom:200.847750px;}
.y106{bottom:202.474050px;}
.ye7{bottom:203.455650px;}
.y134{bottom:206.711850px;}
.yad{bottom:210.025650px;}
.yc7{bottom:214.027800px;}
.y40{bottom:218.881350px;}
.y52{bottom:220.463400px;}
.y61{bottom:222.447750px;}
.y105{bottom:224.074200px;}
.ye6{bottom:225.055650px;}
.y133{bottom:228.311850px;}
.yac{bottom:231.625650px;}
.yc6{bottom:235.627650px;}
.y3f{bottom:240.481350px;}
.y51{bottom:242.063400px;}
.y104{bottom:245.674050px;}
.y132{bottom:249.911850px;}
.yab{bottom:253.225500px;}
.ye5{bottom:255.159600px;}
.y60{bottom:261.055650px;}
.y3e{bottom:262.081350px;}
.y50{bottom:263.663550px;}
.yc5{bottom:265.731600px;}
.y103{bottom:267.274050px;}
.y131{bottom:271.511850px;}
.y3c{bottom:274.087950px;}
.yaa{bottom:274.825650px;}
.ye4{bottom:276.759450px;}
.y102{bottom:288.874050px;}
.y5f{bottom:289.855650px;}
.y130{bottom:293.111850px;}
.y4f{bottom:293.767350px;}
.ya9{bottom:296.425650px;}
.ye3{bottom:298.359600px;}
.y3b{bottom:299.287950px;}
.y8{bottom:302.305800px;}
.y71{bottom:304.517700px;}
.yc4{bottom:307.939500px;}
.y101{bottom:310.474050px;}
.y4e{bottom:315.367350px;}
.ya8{bottom:318.025650px;}
.ye2{bottom:319.959600px;}
.y12f{bottom:323.215800px;}
.y3a{bottom:324.487950px;}
.y70{bottom:326.117700px;}
.y5c{bottom:331.886100px;}
.y100{bottom:332.074200px;}
.yc3{bottom:336.739500px;}
.y4d{bottom:336.967350px;}
.ya7{bottom:339.625650px;}
.ye1{bottom:341.559600px;}
.y6f{bottom:347.717700px;}
.y86{bottom:348.415950px;}
.y39{bottom:349.687950px;}
.y90{bottom:352.047750px;}
.y12e{bottom:353.319750px;}
.ybc{bottom:354.655650px;}
.y5b{bottom:357.086100px;}
.y4c{bottom:358.567500px;}
.ya6{bottom:361.225500px;}
.y79{bottom:361.436700px;}
.yff{bottom:362.178000px;}
.y85{bottom:370.015800px;}
.y8f{bottom:373.647750px;}
.y38{bottom:374.887950px;}
.y12d{bottom:374.919750px;}
.ybb{bottom:376.255650px;}
.y11d{bottom:377.620350px;}
.y6e{bottom:377.821650px;}
.y4b{bottom:380.167350px;}
.y5a{bottom:382.286100px;}
.ya5{bottom:382.825650px;}
.yfe{bottom:383.778000px;}
.yd{bottom:386.629650px;}
.y84{bottom:391.615800px;}
.y7{bottom:392.617500px;}
.y8e{bottom:395.247750px;}
.y11c{bottom:399.220350px;}
.y6d{bottom:399.421650px;}
.y78{bottom:401.670300px;}
.y4a{bottom:401.767350px;}
.ya4{bottom:404.425650px;}
.yba{bottom:406.359600px;}
.y59{bottom:407.486100px;}
.y143{bottom:411.458250px;}
.y83{bottom:413.215800px;}
.y12c{bottom:413.527650px;}
.yfd{bottom:413.881950px;}
.y8d{bottom:416.847750px;}
.y11b{bottom:420.820350px;}
.y6{bottom:422.721450px;}
.y49{bottom:423.367350px;}
.yb9{bottom:427.959600px;}
.y6c{bottom:429.525600px;}
.yc2{bottom:429.659250px;}
.y77{bottom:432.241500px;}
.y142{bottom:433.058250px;}
.ya3{bottom:434.529450px;}
.yfc{bottom:435.481950px;}
.yd9{bottom:436.463400px;}
.y8c{bottom:438.447750px;}
.y37{bottom:440.836650px;}
.y11a{bottom:442.420350px;}
.y82{bottom:443.319750px;}
.y48{bottom:444.967500px;}
.yb8{bottom:449.559600px;}
.yc1{bottom:451.259250px;}
.y20{bottom:453.471300px;}
.y141{bottom:454.658250px;}
.ya2{bottom:456.129450px;}
.yd8{bottom:458.063400px;}
.y6b{bottom:459.629550px;}
.y8b{bottom:460.047750px;}
.y146{bottom:460.093201px;}
.y36{bottom:462.436500px;}
.y76{bottom:462.812700px;}
.y119{bottom:464.020350px;}
.y81{bottom:464.919750px;}
.y145{bottom:465.238201px;}
.yfb{bottom:465.585900px;}
.y47{bottom:466.567350px;}
.yb7{bottom:471.159600px;}
.yc0{bottom:472.859250px;}
.y144{bottom:473.938201px;}
.y5{bottom:474.425400px;}
.y1f{bottom:475.071300px;}
.yc{bottom:475.679250px;}
.y140{bottom:476.258400px;}
.y12b{bottom:476.343450px;}
.y149{bottom:477.103202px;}
.ya1{bottom:477.729450px;}
.yd7{bottom:479.663400px;}
.y6a{bottom:481.229550px;}
.y8a{bottom:481.647750px;}
.y35{bottom:484.036500px;}
.y118{bottom:485.620350px;}
.y80{bottom:486.519750px;}
.yfa{bottom:487.185900px;}
.yb6{bottom:492.759450px;}
.y75{bottom:493.383900px;}
.ybf{bottom:494.459250px;}
.y1e{bottom:496.671300px;}
.y13f{bottom:497.858250px;}
.yd6{bottom:501.263400px;}
.y69{bottom:502.829550px;}
.y89{bottom:503.247750px;}
.y4{bottom:504.529350px;}
.y34{bottom:505.636500px;}
.y148{bottom:506.383201px;}
.y12a{bottom:506.447250px;}
.y117{bottom:507.220350px;}
.y7f{bottom:508.119750px;}
.yb5{bottom:514.359600px;}
.ya0{bottom:516.337350px;}
.y147{bottom:517.063201px;}
.yf9{bottom:517.289850px;}
.y1d{bottom:518.271300px;}
.y13e{bottom:519.458250px;}
.y74{bottom:523.955100px;}
.y68{bottom:524.429550px;}
.ybe{bottom:524.563200px;}
.y88{bottom:524.847750px;}
.y33{bottom:527.236500px;}
.y116{bottom:528.820350px;}
.y7e{bottom:529.719750px;}
.yd5{bottom:531.367350px;}
.y129{bottom:536.551200px;}
.yf8{bottom:538.889850px;}
.y5e{bottom:539.334750px;}
.y1c{bottom:539.871300px;}
.y13d{bottom:541.058250px;}
.yb4{bottom:544.463400px;}
.y9f{bottom:545.137350px;}
.ybd{bottom:546.163200px;}
.y32{bottom:548.836650px;}
.y115{bottom:550.420350px;}
.y7d{bottom:551.319750px;}
.yd4{bottom:552.967350px;}
.y73{bottom:554.526300px;}
.yf7{bottom:560.489850px;}
.y1b{bottom:561.471300px;}
.y13c{bottom:562.658250px;}
.y87{bottom:563.455650px;}
.ye{bottom:564.147600px;}
.y5d{bottom:564.534750px;}
.yb3{bottom:566.063550px;}
.y128{bottom:566.655150px;}
.y31{bottom:570.436500px;}
.y114{bottom:572.020350px;}
.y3{bottom:572.303850px;}
.y7c{bottom:572.919750px;}
.yd3{bottom:574.567350px;}
.yf1{bottom:579.159450px;}
.y1a{bottom:583.071300px;}
.y13b{bottom:584.258400px;}
.y30{bottom:592.036500px;}
.y113{bottom:593.620350px;}
.y7b{bottom:594.519750px;}
.y99{bottom:596.167350px;}
.y127{bottom:596.759100px;}
.y72{bottom:600.116700px;}
.yf0{bottom:600.759450px;}
.y19{bottom:604.671300px;}
.y13a{bottom:605.858250px;}
.y2f{bottom:613.636500px;}
.y112{bottom:615.220350px;}
.y7a{bottom:616.119750px;}
.y98{bottom:617.767350px;}
.y126{bottom:618.359100px;}
.yef{bottom:622.359450px;}
.y18{bottom:626.271300px;}
.y139{bottom:627.458250px;}
.y2e{bottom:635.236500px;}
.y111{bottom:636.820350px;}
.y97{bottom:639.367350px;}
.y125{bottom:639.959100px;}
.yee{bottom:643.959450px;}
.y17{bottom:647.871300px;}
.ye0{bottom:652.463400px;}
.y2d{bottom:656.836650px;}
.y110{bottom:658.420350px;}
.yd2{bottom:660.967350px;}
.y96{bottom:660.967500px;}
.y124{bottom:661.559100px;}
.y16{bottom:669.471300px;}
.ydf{bottom:674.063400px;}
.y2c{bottom:678.436500px;}
.y10f{bottom:680.020350px;}
.yd1{bottom:682.567350px;}
.y95{bottom:682.567500px;}
.y94{bottom:685.924500px;}
.y15{bottom:691.071300px;}
.y123{bottom:691.663050px;}
.y2b{bottom:700.036500px;}
.y10e{bottom:701.620350px;}
.yd0{bottom:704.167350px;}
.y93{bottom:711.124350px;}
.y14{bottom:712.671300px;}
.y122{bottom:713.263050px;}
.y2a{bottom:721.636500px;}
.y1{bottom:722.448150px;}
.y10d{bottom:723.220350px;}
.ycf{bottom:725.767350px;}
.y13{bottom:734.271300px;}
.y121{bottom:734.863050px;}
.y92{bottom:736.324500px;}
.y29{bottom:743.236500px;}
.yde{bottom:747.367350px;}
.y10c{bottom:753.324300px;}
.y12{bottom:755.871300px;}
.y120{bottom:756.463050px;}
.y91{bottom:761.524500px;}
.y28{bottom:764.836500px;}
.yce{bottom:777.471150px;}
.y11{bottom:777.471300px;}
.y11f{bottom:778.063050px;}
.y27{bottom:794.940450px;}
.y10b{bottom:795.532200px;}
.y10{bottom:799.071300px;}
.y11e{bottom:799.663050px;}
.y2{bottom:804.587400px;}
.y3d{bottom:851.162100px;}
.yf{bottom:852.546750px;}
.h11{height:9.485305px;}
.hf{height:20.025626px;}
.h10{height:34.418595px;}
.hc{height:43.257600px;}
.h14{height:44.430469px;}
.h12{height:46.934220px;}
.hd{height:47.116800px;}
.h13{height:47.698242px;}
.h6{height:62.753906px;}
.h5{height:62.824219px;}
.hb{height:65.425781px;}
.ha{height:76.330078px;}
.h9{height:81.695775px;}
.h4{height:87.234375px;}
.h3{height:92.400000px;}
.h2{height:227.842500px;}
.h7{height:259.003312px;}
.h0{height:918.424500px;}
.h8{height:918.539999px;}
.he{height:918.593701px;}
.h1{height:918.750000px;}
.w0{width:918.424500px;}
.w2{width:918.539999px;}
.w3{width:918.593256px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1d{left:50.617350px;}
.x1f{left:51.789150px;}
.xe{left:58.937550px;}
.x3{left:72.283500px;}
.x1{left:76.535400px;}
.x2{left:81.529050px;}
.x11{left:85.528650px;}
.x1b{left:90.245550px;}
.x18{left:102.461850px;}
.x20{left:110.551200px;}
.x19{left:112.671450px;}
.xf{left:117.233850px;}
.x10{left:122.206950px;}
.x12{left:127.282650px;}
.x17{left:149.679450px;}
.x5{left:178.650000px;}
.x1c{left:202.751400px;}
.x16{left:229.383450px;}
.x1a{left:256.570650px;}
.x4{left:284.399850px;}
.x6{left:331.720050px;}
.x8{left:476.220450px;}
.x15{left:484.724400px;}
.xc{left:491.263650px;}
.xa{left:494.821650px;}
.x9{left:499.589700px;}
.xb{left:501.671250px;}
.x23{left:506.988756px;}
.x1e{left:510.236250px;}
.x21{left:514.968756px;}
.x26{left:523.398756px;}
.x27{left:525.363756px;}
.x24{left:528.468756px;}
.x28{left:538.428756px;}
.x13{left:539.816700px;}
.x29{left:541.188756px;}
.x22{left:548.313756px;}
.x25{left:554.973756px;}
.x2a{left:572.058756px;}
.xd{left:589.824150px;}
.x14{left:595.044300px;}
.x2e{left:606.168756px;}
.x7{left:623.314500px;}
.x2b{left:642.603756px;}
.x2c{left:677.808756px;}
.x2d{left:688.293756px;}
@media print{
.v1{vertical-align:-4.923200pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.295040pt;}
.ls8{letter-spacing:-0.578880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.291573pt;}
.ls5{letter-spacing:0.853360pt;}
.ls1{letter-spacing:1.000285pt;}
.ls6{letter-spacing:1.466693pt;}
.ls4{letter-spacing:1.624480pt;}
.ls2{letter-spacing:1.680022pt;}
.lsa{letter-spacing:1.692640pt;}
.ls7{letter-spacing:2.000027pt;}
.ws27{word-spacing:-16.320000pt;}
.ws71{word-spacing:-14.656000pt;}
.ws9a{word-spacing:-3.520000pt;}
.ws6b{word-spacing:-2.880000pt;}
.ws25{word-spacing:-2.752000pt;}
.ws44{word-spacing:-2.688000pt;}
.wsa1{word-spacing:-2.624000pt;}
.ws90{word-spacing:-2.560000pt;}
.ws95{word-spacing:-2.496000pt;}
.ws32{word-spacing:-2.432000pt;}
.ws70{word-spacing:-2.368000pt;}
.ws67{word-spacing:-2.304000pt;}
.ws3c{word-spacing:-2.240000pt;}
.wsd{word-spacing:-2.176000pt;}
.ws84{word-spacing:-2.112000pt;}
.ws37{word-spacing:-2.048000pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.856000pt;}
.ws58{word-spacing:-1.792000pt;}
.ws61{word-spacing:-1.728000pt;}
.ws3e{word-spacing:-1.600000pt;}
.ws52{word-spacing:-1.472000pt;}
.ws9f{word-spacing:-1.408000pt;}
.ws51{word-spacing:-1.344000pt;}
.ws76{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.216000pt;}
.ws8{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.088000pt;}
.wsa{word-spacing:-1.024000pt;}
.ws8d{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.896000pt;}
.ws96{word-spacing:-0.768000pt;}
.ws56{word-spacing:-0.704000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.512000pt;}
.ws5c{word-spacing:-0.448000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws62{word-spacing:-0.224000pt;}
.ws98{word-spacing:-0.128000pt;}
.ws38{word-spacing:-0.064000pt;}
.ws45{word-spacing:-0.051200pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.064000pt;}
.ws40{word-spacing:0.128000pt;}
.wsa0{word-spacing:0.192000pt;}
.ws60{word-spacing:0.320000pt;}
.ws54{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.512000pt;}
.ws1{word-spacing:0.576000pt;}
.ws57{word-spacing:0.640000pt;}
.ws36{word-spacing:0.704000pt;}
.ws55{word-spacing:0.768000pt;}
.ws3f{word-spacing:0.832000pt;}
.ws18{word-spacing:0.896000pt;}
.ws30{word-spacing:0.960000pt;}
.ws7{word-spacing:1.024000pt;}
.ws4{word-spacing:1.152000pt;}
.ws82{word-spacing:1.216000pt;}
.ws33{word-spacing:1.280000pt;}
.ws42{word-spacing:1.344000pt;}
.ws64{word-spacing:1.408000pt;}
.ws81{word-spacing:1.472000pt;}
.ws63{word-spacing:1.536000pt;}
.ws5a{word-spacing:1.600000pt;}
.wsa2{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.728000pt;}
.ws43{word-spacing:1.792000pt;}
.ws2a{word-spacing:1.920000pt;}
.ws5d{word-spacing:1.984000pt;}
.ws5b{word-spacing:2.048000pt;}
.ws93{word-spacing:2.176000pt;}
.ws8c{word-spacing:2.240000pt;}
.ws10{word-spacing:2.304000pt;}
.ws8b{word-spacing:2.432000pt;}
.ws9{word-spacing:2.496000pt;}
.ws4d{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.624000pt;}
.ws3d{word-spacing:2.688000pt;}
.ws26{word-spacing:2.752000pt;}
.ws7b{word-spacing:2.816000pt;}
.ws24{word-spacing:2.880000pt;}
.wse{word-spacing:2.944000pt;}
.ws91{word-spacing:3.008000pt;}
.ws7c{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.136000pt;}
.ws3{word-spacing:3.200000pt;}
.ws21{word-spacing:3.392000pt;}
.ws7a{word-spacing:3.456000pt;}
.wsb{word-spacing:3.520000pt;}
.ws9c{word-spacing:3.584000pt;}
.ws7f{word-spacing:3.648000pt;}
.ws6e{word-spacing:3.840000pt;}
.ws2{word-spacing:3.904000pt;}
.ws20{word-spacing:3.968000pt;}
.ws5f{word-spacing:4.032000pt;}
.ws49{word-spacing:4.096000pt;}
.ws12{word-spacing:4.288000pt;}
.ws53{word-spacing:4.352000pt;}
.ws6{word-spacing:4.416000pt;}
.ws4e{word-spacing:4.480000pt;}
.ws2f{word-spacing:4.608000pt;}
.ws5e{word-spacing:4.672000pt;}
.ws17{word-spacing:4.736000pt;}
.ws3a{word-spacing:4.800000pt;}
.ws2c{word-spacing:4.864000pt;}
.ws13{word-spacing:4.928000pt;}
.ws6a{word-spacing:4.992000pt;}
.ws31{word-spacing:5.056000pt;}
.ws69{word-spacing:5.120000pt;}
.ws29{word-spacing:5.248000pt;}
.ws41{word-spacing:5.312000pt;}
.ws48{word-spacing:5.376000pt;}
.ws68{word-spacing:5.504000pt;}
.ws34{word-spacing:5.568000pt;}
.ws46{word-spacing:5.632000pt;}
.ws72{word-spacing:5.696000pt;}
.ws2d{word-spacing:5.760000pt;}
.ws23{word-spacing:5.824000pt;}
.ws1a{word-spacing:5.952000pt;}
.ws7d{word-spacing:6.016000pt;}
.ws94{word-spacing:6.144000pt;}
.ws99{word-spacing:6.208000pt;}
.wsf{word-spacing:6.336000pt;}
.ws6c{word-spacing:6.464000pt;}
.ws4a{word-spacing:6.528000pt;}
.ws80{word-spacing:6.656000pt;}
.ws8a{word-spacing:6.720000pt;}
.ws39{word-spacing:6.784000pt;}
.ws1c{word-spacing:6.848000pt;}
.ws83{word-spacing:6.976000pt;}
.ws65{word-spacing:7.040000pt;}
.ws6d{word-spacing:7.104000pt;}
.ws85{word-spacing:7.168000pt;}
.ws92{word-spacing:7.232000pt;}
.ws4c{word-spacing:7.296000pt;}
.ws15{word-spacing:7.744000pt;}
.ws28{word-spacing:7.808000pt;}
.ws66{word-spacing:7.936000pt;}
.ws6f{word-spacing:8.000000pt;}
.ws59{word-spacing:8.064000pt;}
.ws1d{word-spacing:8.256000pt;}
.ws50{word-spacing:8.512000pt;}
.ws19{word-spacing:8.576000pt;}
.ws4b{word-spacing:8.704000pt;}
.ws14{word-spacing:8.768000pt;}
.ws74{word-spacing:9.088000pt;}
.ws9d{word-spacing:9.152000pt;}
.ws8f{word-spacing:9.472000pt;}
.ws88{word-spacing:9.792000pt;}
.ws9b{word-spacing:9.920000pt;}
.ws86{word-spacing:10.368000pt;}
.ws75{word-spacing:10.944000pt;}
.ws77{word-spacing:11.328000pt;}
.ws9e{word-spacing:11.904000pt;}
.ws8e{word-spacing:12.416000pt;}
.ws97{word-spacing:13.504000pt;}
.ws79{word-spacing:13.632000pt;}
.ws78{word-spacing:15.104000pt;}
.ws7e{word-spacing:17.152000pt;}
.ws5{word-spacing:18.880000pt;}
._0{margin-left:-881.773227pt;}
._2{margin-left:-646.625963pt;}
._1{margin-left:-639.732395pt;}
._f{margin-left:-12.150400pt;}
._8{margin-left:-8.970923pt;}
._c{margin-left:-5.747200pt;}
._9{margin-left:-3.746679pt;}
._d{margin-left:-2.320533pt;}
._4{margin-left:-1.408000pt;}
._3{width:0.926933pt;}
._7{width:2.153600pt;}
._5{width:3.142400pt;}
._b{width:4.411733pt;}
._6{width:5.428267pt;}
._10{width:7.270627pt;}
._12{width:9.016602pt;}
._11{width:11.008276pt;}
._e{width:12.055197pt;}
._a{width:19.721600pt;}
.fs9{font-size:12.659733pt;}
.fs7{font-size:17.067200pt;}
.fs8{font-size:29.333867pt;}
.fsc{font-size:37.866667pt;}
.fsa{font-size:40.000533pt;}
.fsb{font-size:43.200000pt;}
.fs6{font-size:51.200000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:117.333333pt;}
.fs0{font-size:232.106667pt;}
.fs4{font-size:263.850667pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:65.649467pt;}
.y26{bottom:69.126533pt;}
.y9e{bottom:73.208533pt;}
.ycd{bottom:75.046933pt;}
.yb2{bottom:75.571333pt;}
.ydd{bottom:79.331200pt;}
.y46{bottom:79.361200pt;}
.yb{bottom:79.370000pt;}
.y58{bottom:80.767600pt;}
.yf6{bottom:82.531200pt;}
.y67{bottom:82.531333pt;}
.yec{bottom:84.849467pt;}
.y25{bottom:88.326533pt;}
.y9d{bottom:92.408533pt;}
.ycc{bottom:94.246933pt;}
.yb1{bottom:94.771333pt;}
.y10a{bottom:95.618000pt;}
.y45{bottom:98.561200pt;}
.ya{bottom:98.570133pt;}
.y57{bottom:99.967467pt;}
.yf5{bottom:101.731200pt;}
.y66{bottom:101.731333pt;}
.yeb{bottom:104.049467pt;}
.ydc{bottom:106.090267pt;}
.y138{bottom:106.943867pt;}
.y24{bottom:107.526533pt;}
.y9c{bottom:111.608533pt;}
.ycb{bottom:113.446800pt;}
.y109{bottom:114.818000pt;}
.y44{bottom:117.761200pt;}
.y56{bottom:119.167467pt;}
.yf4{bottom:120.931200pt;}
.y65{bottom:120.931333pt;}
.yb0{bottom:121.530400pt;}
.yea{bottom:123.249467pt;}
.ydb{bottom:125.290267pt;}
.y9{bottom:125.329067pt;}
.y137{bottom:126.143867pt;}
.y23{bottom:126.726667pt;}
.y9b{bottom:130.808533pt;}
.yca{bottom:132.646800pt;}
.y108{bottom:134.018000pt;}
.y43{bottom:136.961200pt;}
.y55{bottom:138.367600pt;}
.yf3{bottom:140.131200pt;}
.y64{bottom:140.131333pt;}
.yaf{bottom:140.730400pt;}
.ye9{bottom:142.449467pt;}
.y136{bottom:145.343867pt;}
.y22{bottom:145.926533pt;}
.y9a{bottom:150.008400pt;}
.yc9{bottom:151.846800pt;}
.yda{bottom:152.049333pt;}
.y107{bottom:153.218000pt;}
.y42{bottom:156.161200pt;}
.y54{bottom:157.567600pt;}
.y63{bottom:159.331333pt;}
.yae{bottom:159.930400pt;}
.ye8{bottom:161.649467pt;}
.y135{bottom:164.543867pt;}
.y21{bottom:165.126533pt;}
.yf2{bottom:166.890267pt;}
.yc8{bottom:171.046933pt;}
.y41{bottom:175.361200pt;}
.y53{bottom:176.767600pt;}
.y62{bottom:178.531333pt;}
.y106{bottom:179.976933pt;}
.ye7{bottom:180.849467pt;}
.y134{bottom:183.743867pt;}
.yad{bottom:186.689467pt;}
.yc7{bottom:190.246933pt;}
.y40{bottom:194.561200pt;}
.y52{bottom:195.967467pt;}
.y61{bottom:197.731333pt;}
.y105{bottom:199.177067pt;}
.ye6{bottom:200.049467pt;}
.y133{bottom:202.943867pt;}
.yac{bottom:205.889467pt;}
.yc6{bottom:209.446800pt;}
.y3f{bottom:213.761200pt;}
.y51{bottom:215.167467pt;}
.y104{bottom:218.376933pt;}
.y132{bottom:222.143867pt;}
.yab{bottom:225.089333pt;}
.ye5{bottom:226.808533pt;}
.y60{bottom:232.049467pt;}
.y3e{bottom:232.961200pt;}
.y50{bottom:234.367600pt;}
.yc5{bottom:236.205867pt;}
.y103{bottom:237.576933pt;}
.y131{bottom:241.343867pt;}
.y3c{bottom:243.633733pt;}
.yaa{bottom:244.289467pt;}
.ye4{bottom:246.008400pt;}
.y102{bottom:256.776933pt;}
.y5f{bottom:257.649467pt;}
.y130{bottom:260.543867pt;}
.y4f{bottom:261.126533pt;}
.ya9{bottom:263.489467pt;}
.ye3{bottom:265.208533pt;}
.y3b{bottom:266.033733pt;}
.y8{bottom:268.716267pt;}
.y71{bottom:270.682400pt;}
.yc4{bottom:273.724000pt;}
.y101{bottom:275.976933pt;}
.y4e{bottom:280.326533pt;}
.ya8{bottom:282.689467pt;}
.ye2{bottom:284.408533pt;}
.y12f{bottom:287.302933pt;}
.y3a{bottom:288.433733pt;}
.y70{bottom:289.882400pt;}
.y5c{bottom:295.009867pt;}
.y100{bottom:295.177067pt;}
.yc3{bottom:299.324000pt;}
.y4d{bottom:299.526533pt;}
.ya7{bottom:301.889467pt;}
.ye1{bottom:303.608533pt;}
.y6f{bottom:309.082400pt;}
.y86{bottom:309.703067pt;}
.y39{bottom:310.833733pt;}
.y90{bottom:312.931333pt;}
.y12e{bottom:314.062000pt;}
.ybc{bottom:315.249467pt;}
.y5b{bottom:317.409867pt;}
.y4c{bottom:318.726667pt;}
.ya6{bottom:321.089333pt;}
.y79{bottom:321.277067pt;}
.yff{bottom:321.936000pt;}
.y85{bottom:328.902933pt;}
.y8f{bottom:332.131333pt;}
.y38{bottom:333.233733pt;}
.y12d{bottom:333.262000pt;}
.ybb{bottom:334.449467pt;}
.y11d{bottom:335.662533pt;}
.y6e{bottom:335.841467pt;}
.y4b{bottom:337.926533pt;}
.y5a{bottom:339.809867pt;}
.ya5{bottom:340.289467pt;}
.yfe{bottom:341.136000pt;}
.yd{bottom:343.670800pt;}
.y84{bottom:348.102933pt;}
.y7{bottom:348.993333pt;}
.y8e{bottom:351.331333pt;}
.y11c{bottom:354.862533pt;}
.y6d{bottom:355.041467pt;}
.y78{bottom:357.040267pt;}
.y4a{bottom:357.126533pt;}
.ya4{bottom:359.489467pt;}
.yba{bottom:361.208533pt;}
.y59{bottom:362.209867pt;}
.y143{bottom:365.740667pt;}
.y83{bottom:367.302933pt;}
.y12c{bottom:367.580133pt;}
.yfd{bottom:367.895067pt;}
.y8d{bottom:370.531333pt;}
.y11b{bottom:374.062533pt;}
.y6{bottom:375.752400pt;}
.y49{bottom:376.326533pt;}
.yb9{bottom:380.408533pt;}
.y6c{bottom:381.800533pt;}
.yc2{bottom:381.919333pt;}
.y77{bottom:384.214667pt;}
.y142{bottom:384.940667pt;}
.ya3{bottom:386.248400pt;}
.yfc{bottom:387.095067pt;}
.yd9{bottom:387.967467pt;}
.y8c{bottom:389.731333pt;}
.y37{bottom:391.854800pt;}
.y11a{bottom:393.262533pt;}
.y82{bottom:394.062000pt;}
.y48{bottom:395.526667pt;}
.yb8{bottom:399.608533pt;}
.yc1{bottom:401.119333pt;}
.y20{bottom:403.085600pt;}
.y141{bottom:404.140667pt;}
.ya2{bottom:405.448400pt;}
.yd8{bottom:407.167467pt;}
.y6b{bottom:408.559600pt;}
.y8b{bottom:408.931333pt;}
.y146{bottom:408.971735pt;}
.y36{bottom:411.054667pt;}
.y76{bottom:411.389067pt;}
.y119{bottom:412.462533pt;}
.y81{bottom:413.262000pt;}
.y145{bottom:413.545068pt;}
.yfb{bottom:413.854133pt;}
.y47{bottom:414.726533pt;}
.yb7{bottom:418.808533pt;}
.yc0{bottom:420.319333pt;}
.y144{bottom:421.278401pt;}
.y5{bottom:421.711467pt;}
.y1f{bottom:422.285600pt;}
.yc{bottom:422.826000pt;}
.y140{bottom:423.340800pt;}
.y12b{bottom:423.416400pt;}
.y149{bottom:424.091735pt;}
.ya1{bottom:424.648400pt;}
.yd7{bottom:426.367467pt;}
.y6a{bottom:427.759600pt;}
.y8a{bottom:428.131333pt;}
.y35{bottom:430.254667pt;}
.y118{bottom:431.662533pt;}
.y80{bottom:432.462000pt;}
.yfa{bottom:433.054133pt;}
.yb6{bottom:438.008400pt;}
.y75{bottom:438.563467pt;}
.ybf{bottom:439.519333pt;}
.y1e{bottom:441.485600pt;}
.y13f{bottom:442.540667pt;}
.yd6{bottom:445.567467pt;}
.y69{bottom:446.959600pt;}
.y89{bottom:447.331333pt;}
.y4{bottom:448.470533pt;}
.y34{bottom:449.454667pt;}
.y148{bottom:450.118401pt;}
.y12a{bottom:450.175333pt;}
.y117{bottom:450.862533pt;}
.y7f{bottom:451.662000pt;}
.yb5{bottom:457.208533pt;}
.ya0{bottom:458.966533pt;}
.y147{bottom:459.611735pt;}
.yf9{bottom:459.813200pt;}
.y1d{bottom:460.685600pt;}
.y13e{bottom:461.740667pt;}
.y74{bottom:465.737867pt;}
.y68{bottom:466.159600pt;}
.ybe{bottom:466.278400pt;}
.y88{bottom:466.531333pt;}
.y33{bottom:468.654667pt;}
.y116{bottom:470.062533pt;}
.y7e{bottom:470.862000pt;}
.yd5{bottom:472.326533pt;}
.y129{bottom:476.934400pt;}
.yf8{bottom:479.013200pt;}
.y5e{bottom:479.408667pt;}
.y1c{bottom:479.885600pt;}
.y13d{bottom:480.940667pt;}
.yb4{bottom:483.967467pt;}
.y9f{bottom:484.566533pt;}
.ybd{bottom:485.478400pt;}
.y32{bottom:487.854800pt;}
.y115{bottom:489.262533pt;}
.y7d{bottom:490.062000pt;}
.yd4{bottom:491.526533pt;}
.y73{bottom:492.912267pt;}
.yf7{bottom:498.213200pt;}
.y1b{bottom:499.085600pt;}
.y13c{bottom:500.140667pt;}
.y87{bottom:500.849467pt;}
.ye{bottom:501.464533pt;}
.y5d{bottom:501.808667pt;}
.yb3{bottom:503.167600pt;}
.y128{bottom:503.693467pt;}
.y31{bottom:507.054667pt;}
.y114{bottom:508.462533pt;}
.y3{bottom:508.714533pt;}
.y7c{bottom:509.262000pt;}
.yd3{bottom:510.726533pt;}
.yf1{bottom:514.808400pt;}
.y1a{bottom:518.285600pt;}
.y13b{bottom:519.340800pt;}
.y30{bottom:526.254667pt;}
.y113{bottom:527.662533pt;}
.y7b{bottom:528.462000pt;}
.y99{bottom:529.926533pt;}
.y127{bottom:530.452533pt;}
.y72{bottom:533.437067pt;}
.yf0{bottom:534.008400pt;}
.y19{bottom:537.485600pt;}
.y13a{bottom:538.540667pt;}
.y2f{bottom:545.454667pt;}
.y112{bottom:546.862533pt;}
.y7a{bottom:547.662000pt;}
.y98{bottom:549.126533pt;}
.y126{bottom:549.652533pt;}
.yef{bottom:553.208400pt;}
.y18{bottom:556.685600pt;}
.y139{bottom:557.740667pt;}
.y2e{bottom:564.654667pt;}
.y111{bottom:566.062533pt;}
.y97{bottom:568.326533pt;}
.y125{bottom:568.852533pt;}
.yee{bottom:572.408400pt;}
.y17{bottom:575.885600pt;}
.ye0{bottom:579.967467pt;}
.y2d{bottom:583.854800pt;}
.y110{bottom:585.262533pt;}
.yd2{bottom:587.526533pt;}
.y96{bottom:587.526667pt;}
.y124{bottom:588.052533pt;}
.y16{bottom:595.085600pt;}
.ydf{bottom:599.167467pt;}
.y2c{bottom:603.054667pt;}
.y10f{bottom:604.462533pt;}
.yd1{bottom:606.726533pt;}
.y95{bottom:606.726667pt;}
.y94{bottom:609.710667pt;}
.y15{bottom:614.285600pt;}
.y123{bottom:614.811600pt;}
.y2b{bottom:622.254667pt;}
.y10e{bottom:623.662533pt;}
.yd0{bottom:625.926533pt;}
.y93{bottom:632.110533pt;}
.y14{bottom:633.485600pt;}
.y122{bottom:634.011600pt;}
.y2a{bottom:641.454667pt;}
.y1{bottom:642.176133pt;}
.y10d{bottom:642.862533pt;}
.ycf{bottom:645.126533pt;}
.y13{bottom:652.685600pt;}
.y121{bottom:653.211600pt;}
.y92{bottom:654.510667pt;}
.y29{bottom:660.654667pt;}
.yde{bottom:664.326533pt;}
.y10c{bottom:669.621600pt;}
.y12{bottom:671.885600pt;}
.y120{bottom:672.411600pt;}
.y91{bottom:676.910667pt;}
.y28{bottom:679.854667pt;}
.yce{bottom:691.085467pt;}
.y11{bottom:691.085600pt;}
.y11f{bottom:691.611600pt;}
.y27{bottom:706.613733pt;}
.y10b{bottom:707.139733pt;}
.y10{bottom:710.285600pt;}
.y11e{bottom:710.811600pt;}
.y2{bottom:715.188800pt;}
.y3d{bottom:756.588533pt;}
.yf{bottom:757.819333pt;}
.h11{height:8.431382pt;}
.hf{height:17.800556pt;}
.h10{height:30.594306pt;}
.hc{height:38.451200pt;}
.h14{height:39.493750pt;}
.h12{height:41.719306pt;}
.hd{height:41.881600pt;}
.h13{height:42.398437pt;}
.h6{height:55.781250pt;}
.h5{height:55.843750pt;}
.hb{height:58.156250pt;}
.ha{height:67.848958pt;}
.h9{height:72.618467pt;}
.h4{height:77.541667pt;}
.h3{height:82.133333pt;}
.h2{height:202.526667pt;}
.h7{height:230.225167pt;}
.h0{height:816.377333pt;}
.h8{height:816.479999pt;}
.he{height:816.527735pt;}
.h1{height:816.666667pt;}
.w0{width:816.377333pt;}
.w2{width:816.479999pt;}
.w3{width:816.527339pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:44.993200pt;}
.x1f{left:46.034800pt;}
.xe{left:52.388933pt;}
.x3{left:64.252000pt;}
.x1{left:68.031467pt;}
.x2{left:72.470267pt;}
.x11{left:76.025467pt;}
.x1b{left:80.218267pt;}
.x18{left:91.077200pt;}
.x20{left:98.267733pt;}
.x19{left:100.152400pt;}
.xf{left:104.207867pt;}
.x10{left:108.628400pt;}
.x12{left:113.140133pt;}
.x17{left:133.048400pt;}
.x5{left:158.800000pt;}
.x1c{left:180.223467pt;}
.x16{left:203.896400pt;}
.x1a{left:228.062800pt;}
.x4{left:252.799867pt;}
.x6{left:294.862267pt;}
.x8{left:423.307067pt;}
.x15{left:430.866133pt;}
.xc{left:436.678800pt;}
.xa{left:439.841467pt;}
.x9{left:444.079733pt;}
.xb{left:445.930000pt;}
.x23{left:450.656672pt;}
.x1e{left:453.543333pt;}
.x21{left:457.750005pt;}
.x26{left:465.243339pt;}
.x27{left:466.990005pt;}
.x24{left:469.750005pt;}
.x28{left:478.603339pt;}
.x13{left:479.837067pt;}
.x29{left:481.056672pt;}
.x22{left:487.390005pt;}
.x25{left:493.310005pt;}
.x2a{left:508.496672pt;}
.xd{left:524.288133pt;}
.x14{left:528.928267pt;}
.x2e{left:538.816672pt;}
.x7{left:554.057333pt;}
.x2b{left:571.203339pt;}
.x2c{left:602.496672pt;}
.x2d{left:611.816672pt;}
}




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