
    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_7217895122c26c3156380766.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2fdf1659ca1936038b03809a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5d15ef665ff939a933a3707a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_09e069b40f40b600accca4b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ee60ebacb9043db74b2b295.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f649df5546a8c040252744d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_345ce648ace3b9c6b97421db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_986b6acd158c5efad44b487d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892000;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_35ac4e17220850a19198c041.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_ec6cb1a6863be17dfc0e2892.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6a361b04572d0bceaecae7e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_1e0872668dd83f16dc6338ec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.765000;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_9fb72036a42a2e36e55f840f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.061000;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_5449ad33bc4547e587e3dbaf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727000;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_2cc94fb0c87e9fbed3204034.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29e7dfa9b1b602ead02ca2d0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.441000;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_869db2807febfd0df3450ddc.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_94f6bc4db0d6ea9b3b55e29f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c765adceb56db9996c52789f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727000;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_29e7dfa9b1b602ead02ca2d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.441000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-5.380206px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:31.470000px;}
.v3{vertical-align:40.440000px;}
.ls6{letter-spacing:-0.060867px;}
.ls7{letter-spacing:-0.039185px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000068px;}
.lsf{letter-spacing:0.001293px;}
.lsc{letter-spacing:0.001818px;}
.lse{letter-spacing:0.002323px;}
.ls10{letter-spacing:0.002510px;}
.ls13{letter-spacing:0.003031px;}
.ls16{letter-spacing:0.003269px;}
.ls0{letter-spacing:0.004200px;}
.ls15{letter-spacing:0.005306px;}
.ls4{letter-spacing:0.057823px;}
.ls3{letter-spacing:0.060867px;}
.lsd{letter-spacing:0.474898px;}
.ls1a{letter-spacing:0.834017px;}
.lsb{letter-spacing:1.792522px;}
.ls2{letter-spacing:2.964877px;}
.ls1b{letter-spacing:2.987675px;}
.ls12{letter-spacing:2.988532px;}
.ls18{letter-spacing:2.988780px;}
.lsa{letter-spacing:9.959347px;}
.ls1{letter-spacing:13.468130px;}
.ls9{letter-spacing:16.310387px;}
.ls19{letter-spacing:20.276638px;}
.ls8{letter-spacing:22.490387px;}
.ls14{letter-spacing:26.373269px;}
.ls17{letter-spacing:511.538338px;}
.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;}
}
.ws56{word-spacing:-33.830137px;}
.ws6a{word-spacing:-22.699862px;}
.ws57{word-spacing:-22.564701px;}
.ws1c{word-spacing:-14.920027px;}
.ws13{word-spacing:-13.449600px;}
.ws95{word-spacing:-11.955150px;}
.ws37{word-spacing:-9.796140px;}
.ws36{word-spacing:-9.756955px;}
.ws34{word-spacing:-8.521336px;}
.ws35{word-spacing:-8.399602px;}
.ws1d{word-spacing:-1.075961px;}
.ws70{word-spacing:-0.812950px;}
.ws2a{word-spacing:-0.777083px;}
.ws14{word-spacing:-0.753178px;}
.ws8f{word-spacing:-0.621668px;}
.ws4a{word-spacing:-0.597756px;}
.ws9d{word-spacing:-0.573847px;}
.ws50{word-spacing:-0.273900px;}
.ws4{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws69{word-spacing:-0.035853px;}
.ws6b{word-spacing:-0.034033px;}
.ws4f{word-spacing:0.000000px;}
.ws52{word-spacing:0.039185px;}
.ws51{word-spacing:0.117554px;}
.ws42{word-spacing:0.119551px;}
.ws9e{word-spacing:0.239103px;}
.ws54{word-spacing:0.274292px;}
.ws53{word-spacing:0.313476px;}
.ws5a{word-spacing:0.358654px;}
.ws11{word-spacing:0.376589px;}
.ws89{word-spacing:0.717307px;}
.ws8b{word-spacing:0.860771px;}
.ws67{word-spacing:0.896634px;}
.ws45{word-spacing:0.956410px;}
.ws8c{word-spacing:1.004233px;}
.ws7e{word-spacing:1.075961px;}
.ws25{word-spacing:1.255288px;}
.ws97{word-spacing:1.338977px;}
.ws4e{word-spacing:1.494390px;}
.wsf{word-spacing:2.367130px;}
.ws7b{word-spacing:2.391024px;}
.ws96{word-spacing:2.391030px;}
.ws4d{word-spacing:2.689902px;}
.ws15{word-spacing:3.227904px;}
.ws10{word-spacing:3.496896px;}
.ws71{word-spacing:3.885414px;}
.ws6{word-spacing:4.088678px;}
.ws55{word-spacing:4.303854px;}
.ws82{word-spacing:4.483170px;}
.ws93{word-spacing:4.495136px;}
.ws7a{word-spacing:4.542946px;}
.ws64{word-spacing:4.722272px;}
.ws38{word-spacing:4.782060px;}
.ws94{word-spacing:4.785942px;}
.ws84{word-spacing:5.260253px;}
.ws81{word-spacing:5.499355px;}
.ws24{word-spacing:5.798233px;}
.ws44{word-spacing:5.858009px;}
.ws92{word-spacing:5.881934px;}
.ws77{word-spacing:5.929754px;}
.ws3{word-spacing:5.976575px;}
.ws2{word-spacing:5.977560px;}
.ws43{word-spacing:5.977575px;}
.ws63{word-spacing:6.097111px;}
.ws99{word-spacing:6.360140px;}
.ws4b{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws17{word-spacing:6.724800px;}
.ws1e{word-spacing:6.814418px;}
.ws65{word-spacing:6.874194px;}
.ws5f{word-spacing:6.933970px;}
.ws8d{word-spacing:6.981808px;}
.ws16{word-spacing:7.101389px;}
.ws3b{word-spacing:7.113296px;}
.ws8e{word-spacing:7.173090px;}
.ws7c{word-spacing:7.292623px;}
.ws7d{word-spacing:7.298134px;}
.ws58{word-spacing:7.352399px;}
.ws90{word-spacing:7.890399px;}
.ws40{word-spacing:8.069706px;}
.ws9a{word-spacing:8.512067px;}
.ws27{word-spacing:8.607686px;}
.ws20{word-spacing:8.727238px;}
.ws98{word-spacing:8.846811px;}
.ws3e{word-spacing:8.906564px;}
.ws12{word-spacing:8.912206px;}
.ws2d{word-spacing:8.966340px;}
.ws79{word-spacing:9.026116px;}
.ws9{word-spacing:9.091930px;}
.ws32{word-spacing:9.145667px;}
.ws62{word-spacing:9.205442px;}
.ws23{word-spacing:9.384769px;}
.ws59{word-spacing:9.444545px;}
.ws60{word-spacing:9.564096px;}
.ws9f{word-spacing:9.564120px;}
.ws2b{word-spacing:9.862974px;}
.ws83{word-spacing:9.902624px;}
.ws5c{word-spacing:9.922750px;}
.ws68{word-spacing:9.931393px;}
.ws9b{word-spacing:10.090147px;}
.ws49{word-spacing:10.161852px;}
.ws87{word-spacing:10.221628px;}
.ws9c{word-spacing:10.281429px;}
.ws66{word-spacing:10.460730px;}
.ws46{word-spacing:10.819384px;}
.ws78{word-spacing:10.998710px;}
.ws73{word-spacing:11.417140px;}
.ws72{word-spacing:11.428246px;}
.wsd{word-spacing:11.781850px;}
.ws91{word-spacing:11.811688px;}
.ws76{word-spacing:11.955120px;}
.ws22{word-spacing:12.074671px;}
.ws85{word-spacing:12.253998px;}
.ws47{word-spacing:12.313774px;}
.ws3f{word-spacing:12.552876px;}
.ws39{word-spacing:12.791978px;}
.ws7{word-spacing:13.772390px;}
.ws3a{word-spacing:13.867939px;}
.ws31{word-spacing:13.927715px;}
.ws3c{word-spacing:13.987490px;}
.ws29{word-spacing:14.166817px;}
.ws5e{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws48{word-spacing:14.405920px;}
.ws1f{word-spacing:14.465695px;}
.ws5d{word-spacing:14.585246px;}
.ws5b{word-spacing:14.597408px;}
.ws33{word-spacing:15.362329px;}
.ws4c{word-spacing:15.720983px;}
.ws2f{word-spacing:16.199188px;}
.ws28{word-spacing:16.498066px;}
.ws74{word-spacing:16.557841px;}
.ws8a{word-spacing:17.119775px;}
.wsc{word-spacing:17.376883px;}
.ws88{word-spacing:17.454475px;}
.ws3d{word-spacing:17.514251px;}
.wsa{word-spacing:17.645875px;}
.ws80{word-spacing:17.753353px;}
.ws1b{word-spacing:17.932680px;}
.ws41{word-spacing:18.112007px;}
.wsb{word-spacing:18.506650px;}
.ws7f{word-spacing:18.590212px;}
.ws1a{word-spacing:19.044634px;}
.ws61{word-spacing:19.068416px;}
.wse{word-spacing:19.744013px;}
.ws19{word-spacing:20.389594px;}
.ws21{word-spacing:20.622582px;}
.ws8{word-spacing:20.927578px;}
.ws2e{word-spacing:21.280114px;}
.ws2c{word-spacing:21.638767px;}
.ws26{word-spacing:22.774504px;}
.ws86{word-spacing:28.572737px;}
.ws30{word-spacing:31.800619px;}
.ws75{word-spacing:33.425057px;}
.ws18{word-spacing:33.785395px;}
.ws6e{word-spacing:72.189115px;}
.ws6d{word-spacing:72.192531px;}
.ws6f{word-spacing:80.698470px;}
.ws6c{word-spacing:80.699563px;}
._4{margin-left:-5.265360px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.582312px;}
._3{margin-left:-1.459440px;}
._6{width:2.054033px;}
._2{width:3.920938px;}
._7{width:20.754095px;}
._b{width:22.236579px;}
._a{width:23.491811px;}
._9{width:29.887800px;}
._5{width:32.171443px;}
._8{width:33.474420px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:25.097311px;}
.fs5{font-size:30.433342px;}
.fs7{font-size:33.830137px;}
.fsa{font-size:34.032777px;}
.fs8{font-size:35.853405px;}
.fs6{font-size:39.184560px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.968480px;}
.y9a{bottom:4.962652px;}
.y70{bottom:9.312707px;}
.y95{bottom:17.185243px;}
.y45{bottom:24.214044px;}
.y36{bottom:25.516768px;}
.y96{bottom:26.986716px;}
.y72{bottom:34.097922px;}
.y9b{bottom:35.287693px;}
.y8a{bottom:36.448646px;}
.y44{bottom:36.919638px;}
.y3d{bottom:38.418447px;}
.y3f{bottom:43.365498px;}
.y97{bottom:47.255789px;}
.y8b{bottom:48.123154px;}
.y8d{bottom:49.255876px;}
.y3c{bottom:50.173815px;}
.y3e{bottom:55.120866px;}
.y8c{bottom:56.593829px;}
.y89{bottom:61.441413px;}
.y3b{bottom:61.929183px;}
.y98{bottom:67.524863px;}
.y48{bottom:69.315473px;}
.y6f{bottom:69.472626px;}
.y3a{bottom:73.684551px;}
.y71{bottom:75.611203px;}
.y8e{bottom:81.589295px;}
.y40{bottom:82.755777px;}
.y39{bottom:85.439919px;}
.y99{bottom:87.793936px;}
.y41{bottom:96.872015px;}
.y94{bottom:109.335484px;}
.y34{bottom:113.332500px;}
.y91{bottom:116.441701px;}
.y6e{bottom:120.785898px;}
.y33{bottom:131.265000px;}
.y65{bottom:131.266500px;}
.y47{bottom:131.716885px;}
.y92{bottom:133.670499px;}
.y42{bottom:134.871242px;}
.y4a{bottom:143.148109px;}
.y46{bottom:143.472253px;}
.y32{bottom:149.199000px;}
.y93{bottom:150.899297px;}
.y49{bottom:154.903477px;}
.y43{bottom:155.883962px;}
.y6d{bottom:156.784563px;}
.y31{bottom:167.131500px;}
.y87{bottom:173.662500px;}
.y30{bottom:185.064000px;}
.y64{bottom:189.913500px;}
.y6c{bottom:192.973386px;}
.y38{bottom:200.378030px;}
.y2f{bottom:202.996500px;}
.y86{bottom:206.110500px;}
.yb6{bottom:211.773000px;}
.y4b{bottom:212.759480px;}
.y63{bottom:218.278500px;}
.y2e{bottom:220.929000px;}
.y85{bottom:224.043000px;}
.y6b{bottom:228.295458px;}
.y62{bottom:236.211000px;}
.y2d{bottom:238.861500px;}
.y84{bottom:241.975500px;}
.yb5{bottom:245.556000px;}
.y61{bottom:254.143500px;}
.y2c{bottom:256.795500px;}
.y83{bottom:259.908000px;}
.yb4{bottom:263.488500px;}
.y6a{bottom:264.438440px;}
.y60{bottom:272.076000px;}
.y2b{bottom:274.840500px;}
.y82{bottom:277.840500px;}
.yb3{bottom:281.421000px;}
.y5f{bottom:290.008500px;}
.y2a{bottom:292.773000px;}
.y81{bottom:295.773000px;}
.yb2{bottom:299.353500px;}
.y5e{bottom:307.942500px;}
.y29{bottom:310.705500px;}
.y80{bottom:313.707000px;}
.yb1{bottom:317.286000px;}
.y5d{bottom:325.875000px;}
.y28{bottom:328.638000px;}
.y7f{bottom:332.160000px;}
.y69{bottom:334.970524px;}
.yb0{bottom:335.220000px;}
.y5c{bottom:343.807500px;}
.y27{bottom:346.572000px;}
.y7e{bottom:350.092500px;}
.yaf{bottom:353.830500px;}
.y5b{bottom:361.740000px;}
.y26{bottom:364.504500px;}
.y7d{bottom:368.025000px;}
.yae{bottom:371.763000px;}
.y25{bottom:382.437000px;}
.y5a{bottom:384.522000px;}
.y7c{bottom:385.959000px;}
.yad{bottom:389.695500px;}
.y24{bottom:400.369500px;}
.y7b{bottom:403.891500px;}
.y59{bottom:407.406000px;}
.yac{bottom:407.628000px;}
.y23{bottom:418.414500px;}
.y7a{bottom:421.824000px;}
.yab{bottom:425.560500px;}
.y58{bottom:435.771000px;}
.y22{bottom:436.348500px;}
.y79{bottom:439.756500px;}
.yaa{bottom:443.494500px;}
.y57{bottom:453.703500px;}
.y21{bottom:454.281000px;}
.y78{bottom:457.689000px;}
.ya9{bottom:461.427000px;}
.y56{bottom:471.636000px;}
.y20{bottom:472.213500px;}
.y77{bottom:476.143500px;}
.ya8{bottom:480.037500px;}
.y55{bottom:489.568500px;}
.y1f{bottom:490.146000px;}
.y76{bottom:494.076000px;}
.ya7{bottom:497.970000px;}
.y54{bottom:507.501000px;}
.y1e{bottom:508.078500px;}
.y75{bottom:512.008500px;}
.ya6{bottom:515.902500px;}
.y53{bottom:525.435000px;}
.y1d{bottom:526.011000px;}
.y74{bottom:529.941000px;}
.ya5{bottom:533.835000px;}
.y52{bottom:543.367500px;}
.y1c{bottom:543.945000px;}
.ya4{bottom:560.544000px;}
.y51{bottom:561.300000px;}
.y1b{bottom:561.877500px;}
.y50{bottom:579.273000px;}
.y73{bottom:579.648000px;}
.ya3{bottom:584.260500px;}
.y1a{bottom:585.193500px;}
.ya2{bottom:594.511500px;}
.y4f{bottom:597.205500px;}
.y68{bottom:606.546000px;}
.yd8{bottom:614.329500px;}
.y4e{bottom:615.138000px;}
.y19{bottom:618.325500px;}
.yd7{bottom:627.778500px;}
.ya1{bottom:632.164500px;}
.y4d{bottom:633.072000px;}
.y18{bottom:633.270000px;}
.yd6{bottom:641.229000px;}
.y17{bottom:648.214500px;}
.ya0{bottom:650.097000px;}
.yd5{bottom:654.678000px;}
.y16{bottom:663.270000px;}
.y4c{bottom:663.564000px;}
.y9f{bottom:668.029500px;}
.yd4{bottom:668.128500px;}
.y15{bottom:678.214500px;}
.yd3{bottom:681.577500px;}
.y35{bottom:690.462000px;}
.y14{bottom:693.159000px;}
.yd2{bottom:695.026500px;}
.y13{bottom:708.102000px;}
.yd1{bottom:708.477000px;}
.y9e{bottom:718.155000px;}
.yd0{bottom:721.926000px;}
.y12{bottom:723.046500px;}
.ycf{bottom:735.375000px;}
.y11{bottom:737.991000px;}
.yce{bottom:748.825500px;}
.y10{bottom:752.934000px;}
.ycd{bottom:762.274500px;}
.yf{bottom:767.878500px;}
.ycc{bottom:775.725000px;}
.ye{bottom:782.823000px;}
.ycb{bottom:789.174000px;}
.yd{bottom:797.766000px;}
.yca{bottom:802.623000px;}
.yc{bottom:812.710500px;}
.yc9{bottom:816.073500px;}
.yb{bottom:827.655000px;}
.yc8{bottom:829.522500px;}
.ya{bottom:842.598000px;}
.yc7{bottom:842.971500px;}
.yc6{bottom:856.422000px;}
.y9{bottom:857.542500px;}
.yc5{bottom:869.871000px;}
.y8{bottom:872.487000px;}
.y9d{bottom:876.208500px;}
.yc4{bottom:883.321500px;}
.y7{bottom:887.430000px;}
.y9c{bottom:889.657500px;}
.yc3{bottom:896.770500px;}
.y6{bottom:902.374500px;}
.yc2{bottom:910.219500px;}
.y67{bottom:910.626000px;}
.y8f{bottom:910.812000px;}
.yc1{bottom:923.670000px;}
.y66{bottom:924.075000px;}
.y90{bottom:926.205000px;}
.yc0{bottom:937.119000px;}
.ybf{bottom:950.568000px;}
.y88{bottom:953.842500px;}
.y5{bottom:955.027500px;}
.ybe{bottom:964.018500px;}
.y4{bottom:973.521000px;}
.ybd{bottom:977.467500px;}
.ybc{bottom:990.918000px;}
.y3{bottom:992.235000px;}
.ybb{bottom:1013.109000px;}
.y2{bottom:1039.309500px;}
.yba{bottom:1041.129000px;}
.yb9{bottom:1059.061500px;}
.yb8{bottom:1076.994000px;}
.y1{bottom:1081.152000px;}
.yb7{bottom:1099.635000px;}
.h12{height:10.074807px;}
.h9{height:22.156305px;}
.h11{height:22.695205px;}
.he{height:24.222378px;}
.h15{height:25.524583px;}
.h13{height:26.890054px;}
.ha{height:27.207248px;}
.h19{height:32.661470px;}
.hb{height:32.900573px;}
.h18{height:33.140573px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.hc{height:40.826735px;}
.h4{height:41.125613px;}
.hf{height:42.141798px;}
.h5{height:44.831700px;}
.h3{height:45.238339px;}
.h2{height:45.568339px;}
.h17{height:83.145798px;}
.h16{height:85.271700px;}
.h1{height:98.701718px;}
.h10{height:102.371465px;}
.h14{height:171.040269px;}
.h8{height:224.462221px;}
.hd{height:279.480542px;}
.h0{height:1188.000000px;}
.w3{width:150.641269px;}
.w2{width:169.463257px;}
.w4{width:207.135001px;}
.w1{width:244.774517px;}
.w0{width:918.000000px;}
.x1d{left:-61.122600px;}
.x0{left:0.000000px;}
.x2a{left:2.987904px;}
.x30{left:9.216476px;}
.xc{left:12.006748px;}
.x2e{left:17.724978px;}
.x17{left:19.010988px;}
.x2f{left:21.439921px;}
.x2d{left:25.693745px;}
.x29{left:26.789467px;}
.x10{left:34.968900px;}
.x16{left:42.619685px;}
.x21{left:47.932852px;}
.x27{left:50.990498px;}
.x26{left:52.200594px;}
.x1f{left:53.861744px;}
.x20{left:57.938282px;}
.x12{left:64.014455px;}
.x1e{left:66.864729px;}
.x23{left:70.257882px;}
.x8{left:73.446000px;}
.x1{left:75.798000px;}
.xb{left:84.325500px;}
.x7{left:88.390500px;}
.x28{left:89.968201px;}
.x39{left:94.857000px;}
.x15{left:100.152416px;}
.x14{left:101.778575px;}
.x13{left:103.091258px;}
.x3a{left:113.707500px;}
.x2{left:133.362000px;}
.x22{left:140.595563px;}
.x11{left:151.895627px;}
.x24{left:163.050000px;}
.xd{left:168.676415px;}
.xe{left:171.252800px;}
.xf{left:174.387564px;}
.x18{left:176.195877px;}
.x5{left:180.715500px;}
.x37{left:196.570500px;}
.x9{left:203.430000px;}
.x3b{left:210.405000px;}
.x38{left:219.897000px;}
.x6{left:252.439500px;}
.x3{left:263.673000px;}
.x3c{left:268.296000px;}
.x1a{left:467.967000px;}
.x25{left:477.381000px;}
.x1b{left:482.910000px;}
.xa{left:533.871000px;}
.x2b{left:546.063000px;}
.x35{left:549.472500px;}
.x19{left:563.500500px;}
.x32{left:576.997500px;}
.x1c{left:582.385500px;}
.x36{left:599.781000px;}
.x33{left:613.275000px;}
.x4{left:625.101000px;}
.x2c{left:628.014000px;}
.x34{left:663.625500px;}
.x31{left:724.606500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-4.782405pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:27.973333pt;}
.v3{vertical-align:35.946667pt;}
.ls6{letter-spacing:-0.054104pt;}
.ls7{letter-spacing:-0.034831pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000061pt;}
.lsf{letter-spacing:0.001150pt;}
.lsc{letter-spacing:0.001616pt;}
.lse{letter-spacing:0.002065pt;}
.ls10{letter-spacing:0.002231pt;}
.ls13{letter-spacing:0.002694pt;}
.ls16{letter-spacing:0.002906pt;}
.ls0{letter-spacing:0.003733pt;}
.ls15{letter-spacing:0.004716pt;}
.ls4{letter-spacing:0.051399pt;}
.ls3{letter-spacing:0.054104pt;}
.lsd{letter-spacing:0.422131pt;}
.ls1a{letter-spacing:0.741348pt;}
.lsb{letter-spacing:1.593353pt;}
.ls2{letter-spacing:2.635446pt;}
.ls1b{letter-spacing:2.655711pt;}
.ls12{letter-spacing:2.656473pt;}
.ls18{letter-spacing:2.656693pt;}
.lsa{letter-spacing:8.852752pt;}
.ls1{letter-spacing:11.971671pt;}
.ls9{letter-spacing:14.498122pt;}
.ls19{letter-spacing:18.023679pt;}
.ls8{letter-spacing:19.991455pt;}
.ls14{letter-spacing:23.442906pt;}
.ls17{letter-spacing:454.700745pt;}
.ws56{word-spacing:-30.071233pt;}
.ws6a{word-spacing:-20.177655pt;}
.ws57{word-spacing:-20.057512pt;}
.ws1c{word-spacing:-13.262246pt;}
.ws13{word-spacing:-11.955200pt;}
.ws95{word-spacing:-10.626800pt;}
.ws37{word-spacing:-8.707680pt;}
.ws36{word-spacing:-8.672849pt;}
.ws34{word-spacing:-7.574521pt;}
.ws35{word-spacing:-7.466313pt;}
.ws1d{word-spacing:-0.956410pt;}
.ws70{word-spacing:-0.722622pt;}
.ws2a{word-spacing:-0.690740pt;}
.ws14{word-spacing:-0.669491pt;}
.ws8f{word-spacing:-0.552594pt;}
.ws4a{word-spacing:-0.531339pt;}
.ws9d{word-spacing:-0.510086pt;}
.ws50{word-spacing:-0.243467pt;}
.ws4{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws69{word-spacing:-0.031870pt;}
.ws6b{word-spacing:-0.030251pt;}
.ws4f{word-spacing:0.000000pt;}
.ws52{word-spacing:0.034831pt;}
.ws51{word-spacing:0.104492pt;}
.ws42{word-spacing:0.106268pt;}
.ws9e{word-spacing:0.212536pt;}
.ws54{word-spacing:0.243815pt;}
.ws53{word-spacing:0.278646pt;}
.ws5a{word-spacing:0.318803pt;}
.ws11{word-spacing:0.334746pt;}
.ws89{word-spacing:0.637606pt;}
.ws8b{word-spacing:0.765130pt;}
.ws67{word-spacing:0.797008pt;}
.ws45{word-spacing:0.850142pt;}
.ws8c{word-spacing:0.892651pt;}
.ws7e{word-spacing:0.956410pt;}
.ws25{word-spacing:1.115811pt;}
.ws97{word-spacing:1.190202pt;}
.ws4e{word-spacing:1.328347pt;}
.wsf{word-spacing:2.104115pt;}
.ws7b{word-spacing:2.125355pt;}
.ws96{word-spacing:2.125360pt;}
.ws4d{word-spacing:2.391024pt;}
.ws15{word-spacing:2.869248pt;}
.ws10{word-spacing:3.108352pt;}
.ws71{word-spacing:3.453701pt;}
.ws6{word-spacing:3.634381pt;}
.ws55{word-spacing:3.825648pt;}
.ws82{word-spacing:3.985040pt;}
.ws93{word-spacing:3.995677pt;}
.ws7a{word-spacing:4.038174pt;}
.ws64{word-spacing:4.197575pt;}
.ws38{word-spacing:4.250720pt;}
.ws94{word-spacing:4.254171pt;}
.ws84{word-spacing:4.675780pt;}
.ws81{word-spacing:4.888316pt;}
.ws24{word-spacing:5.153985pt;}
.ws44{word-spacing:5.207119pt;}
.ws92{word-spacing:5.228386pt;}
.ws77{word-spacing:5.270893pt;}
.ws3{word-spacing:5.312511pt;}
.ws2{word-spacing:5.313387pt;}
.ws43{word-spacing:5.313400pt;}
.ws63{word-spacing:5.419654pt;}
.ws99{word-spacing:5.653458pt;}
.ws4b{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws17{word-spacing:5.977600pt;}
.ws1e{word-spacing:6.057261pt;}
.ws65{word-spacing:6.110395pt;}
.ws5f{word-spacing:6.163529pt;}
.ws8d{word-spacing:6.206051pt;}
.ws16{word-spacing:6.312346pt;}
.ws3b{word-spacing:6.322930pt;}
.ws8e{word-spacing:6.376080pt;}
.ws7c{word-spacing:6.482332pt;}
.ws7d{word-spacing:6.487230pt;}
.ws58{word-spacing:6.535466pt;}
.ws90{word-spacing:7.013688pt;}
.ws40{word-spacing:7.173072pt;}
.ws9a{word-spacing:7.566282pt;}
.ws27{word-spacing:7.651277pt;}
.ws20{word-spacing:7.757545pt;}
.ws98{word-spacing:7.863832pt;}
.ws3e{word-spacing:7.916946pt;}
.ws12{word-spacing:7.921961pt;}
.ws2d{word-spacing:7.970080pt;}
.ws79{word-spacing:8.023214pt;}
.ws9{word-spacing:8.081715pt;}
.ws32{word-spacing:8.129482pt;}
.ws62{word-spacing:8.182615pt;}
.ws23{word-spacing:8.342017pt;}
.ws59{word-spacing:8.395151pt;}
.ws60{word-spacing:8.501419pt;}
.ws9f{word-spacing:8.501440pt;}
.ws2b{word-spacing:8.767088pt;}
.ws83{word-spacing:8.802333pt;}
.ws5c{word-spacing:8.820222pt;}
.ws68{word-spacing:8.827905pt;}
.ws9b{word-spacing:8.969019pt;}
.ws49{word-spacing:9.032757pt;}
.ws87{word-spacing:9.085891pt;}
.ws9c{word-spacing:9.139048pt;}
.ws66{word-spacing:9.298427pt;}
.ws46{word-spacing:9.617230pt;}
.ws78{word-spacing:9.776631pt;}
.ws73{word-spacing:10.148569pt;}
.ws72{word-spacing:10.158441pt;}
.wsd{word-spacing:10.472755pt;}
.ws91{word-spacing:10.499278pt;}
.ws76{word-spacing:10.626773pt;}
.ws22{word-spacing:10.733041pt;}
.ws85{word-spacing:10.892443pt;}
.ws47{word-spacing:10.945577pt;}
.ws3f{word-spacing:11.158112pt;}
.ws39{word-spacing:11.370647pt;}
.ws7{word-spacing:12.242125pt;}
.ws3a{word-spacing:12.327057pt;}
.ws31{word-spacing:12.380191pt;}
.ws3c{word-spacing:12.433325pt;}
.ws29{word-spacing:12.592726pt;}
.ws5e{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws48{word-spacing:12.805262pt;}
.ws1f{word-spacing:12.858396pt;}
.ws5d{word-spacing:12.964663pt;}
.ws5b{word-spacing:12.975474pt;}
.ws33{word-spacing:13.655404pt;}
.ws4c{word-spacing:13.974207pt;}
.ws2f{word-spacing:14.399278pt;}
.ws28{word-spacing:14.664947pt;}
.ws74{word-spacing:14.718081pt;}
.ws8a{word-spacing:15.217578pt;}
.wsc{word-spacing:15.446118pt;}
.ws88{word-spacing:15.515089pt;}
.ws3d{word-spacing:15.568223pt;}
.wsa{word-spacing:15.685222pt;}
.ws80{word-spacing:15.780758pt;}
.ws1b{word-spacing:15.940160pt;}
.ws41{word-spacing:16.099562pt;}
.wsb{word-spacing:16.450355pt;}
.ws7f{word-spacing:16.524633pt;}
.ws1a{word-spacing:16.928563pt;}
.ws61{word-spacing:16.949703pt;}
.wse{word-spacing:17.550234pt;}
.ws19{word-spacing:18.124083pt;}
.ws21{word-spacing:18.331184pt;}
.ws8{word-spacing:18.602291pt;}
.ws2e{word-spacing:18.915657pt;}
.ws2c{word-spacing:19.234460pt;}
.ws26{word-spacing:20.244003pt;}
.ws86{word-spacing:25.397988pt;}
.ws30{word-spacing:28.267217pt;}
.ws75{word-spacing:29.711162pt;}
.ws18{word-spacing:30.031462pt;}
.ws6e{word-spacing:64.168102pt;}
.ws6d{word-spacing:64.171138pt;}
.ws6f{word-spacing:71.731974pt;}
.ws6c{word-spacing:71.732945pt;}
._4{margin-left:-4.680320pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-2.295389pt;}
._3{margin-left:-1.297280pt;}
._6{width:1.825807pt;}
._2{width:3.485278pt;}
._7{width:18.448084pt;}
._b{width:19.765848pt;}
._a{width:20.881610pt;}
._9{width:26.566933pt;}
._5{width:28.596838pt;}
._8{width:29.755040pt;}
.fs9{font-size:22.308721pt;}
.fs5{font-size:27.051859pt;}
.fs7{font-size:30.071233pt;}
.fsa{font-size:30.251357pt;}
.fs8{font-size:31.869693pt;}
.fs6{font-size:34.830720pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:1.749760pt;}
.y9a{bottom:4.411246pt;}
.y70{bottom:8.277962pt;}
.y95{bottom:15.275772pt;}
.y45{bottom:21.523595pt;}
.y36{bottom:22.681571pt;}
.y96{bottom:23.988192pt;}
.y72{bottom:30.309264pt;}
.y9b{bottom:31.366838pt;}
.y8a{bottom:32.398797pt;}
.y44{bottom:32.817456pt;}
.y3d{bottom:34.149731pt;}
.y3f{bottom:38.547109pt;}
.y97{bottom:42.005146pt;}
.y8b{bottom:42.776137pt;}
.y8d{bottom:43.783001pt;}
.y3c{bottom:44.598947pt;}
.y3e{bottom:48.996325pt;}
.y8c{bottom:50.305626pt;}
.y89{bottom:54.614589pt;}
.y3b{bottom:55.048163pt;}
.y98{bottom:60.022100pt;}
.y48{bottom:61.613754pt;}
.y6f{bottom:61.753446pt;}
.y3a{bottom:65.497379pt;}
.y71{bottom:67.209958pt;}
.y8e{bottom:72.523817pt;}
.y40{bottom:73.560691pt;}
.y39{bottom:75.946595pt;}
.y99{bottom:78.039054pt;}
.y41{bottom:86.108458pt;}
.y94{bottom:97.187097pt;}
.y34{bottom:100.740000pt;}
.y91{bottom:103.503735pt;}
.y6e{bottom:107.365243pt;}
.y33{bottom:116.680000pt;}
.y65{bottom:116.681333pt;}
.y47{bottom:117.081675pt;}
.y92{bottom:118.818222pt;}
.y42{bottom:119.885548pt;}
.y4a{bottom:127.242764pt;}
.y46{bottom:127.530891pt;}
.y32{bottom:132.621333pt;}
.y93{bottom:134.132708pt;}
.y49{bottom:137.691980pt;}
.y43{bottom:138.563522pt;}
.y6d{bottom:139.364056pt;}
.y31{bottom:148.561333pt;}
.y87{bottom:154.366667pt;}
.y30{bottom:164.501333pt;}
.y64{bottom:168.812000pt;}
.y6c{bottom:171.531899pt;}
.y38{bottom:178.113804pt;}
.y2f{bottom:180.441333pt;}
.y86{bottom:183.209333pt;}
.yb6{bottom:188.242667pt;}
.y4b{bottom:189.119538pt;}
.y63{bottom:194.025333pt;}
.y2e{bottom:196.381333pt;}
.y85{bottom:199.149333pt;}
.y6b{bottom:202.929296pt;}
.y62{bottom:209.965333pt;}
.y2d{bottom:212.321333pt;}
.y84{bottom:215.089333pt;}
.yb5{bottom:218.272000pt;}
.y61{bottom:225.905333pt;}
.y2c{bottom:228.262667pt;}
.y83{bottom:231.029333pt;}
.yb4{bottom:234.212000pt;}
.y6a{bottom:235.056391pt;}
.y60{bottom:241.845333pt;}
.y2b{bottom:244.302667pt;}
.y82{bottom:246.969333pt;}
.yb3{bottom:250.152000pt;}
.y5f{bottom:257.785333pt;}
.y2a{bottom:260.242667pt;}
.y81{bottom:262.909333pt;}
.yb2{bottom:266.092000pt;}
.y5e{bottom:273.726667pt;}
.y29{bottom:276.182667pt;}
.y80{bottom:278.850667pt;}
.yb1{bottom:282.032000pt;}
.y5d{bottom:289.666667pt;}
.y28{bottom:292.122667pt;}
.y7f{bottom:295.253333pt;}
.y69{bottom:297.751577pt;}
.yb0{bottom:297.973333pt;}
.y5c{bottom:305.606667pt;}
.y27{bottom:308.064000pt;}
.y7e{bottom:311.193333pt;}
.yaf{bottom:314.516000pt;}
.y5b{bottom:321.546667pt;}
.y26{bottom:324.004000pt;}
.y7d{bottom:327.133333pt;}
.yae{bottom:330.456000pt;}
.y25{bottom:339.944000pt;}
.y5a{bottom:341.797333pt;}
.y7c{bottom:343.074667pt;}
.yad{bottom:346.396000pt;}
.y24{bottom:355.884000pt;}
.y7b{bottom:359.014667pt;}
.y59{bottom:362.138667pt;}
.yac{bottom:362.336000pt;}
.y23{bottom:371.924000pt;}
.y7a{bottom:374.954667pt;}
.yab{bottom:378.276000pt;}
.y58{bottom:387.352000pt;}
.y22{bottom:387.865333pt;}
.y79{bottom:390.894667pt;}
.yaa{bottom:394.217333pt;}
.y57{bottom:403.292000pt;}
.y21{bottom:403.805333pt;}
.y78{bottom:406.834667pt;}
.ya9{bottom:410.157333pt;}
.y56{bottom:419.232000pt;}
.y20{bottom:419.745333pt;}
.y77{bottom:423.238667pt;}
.ya8{bottom:426.700000pt;}
.y55{bottom:435.172000pt;}
.y1f{bottom:435.685333pt;}
.y76{bottom:439.178667pt;}
.ya7{bottom:442.640000pt;}
.y54{bottom:451.112000pt;}
.y1e{bottom:451.625333pt;}
.y75{bottom:455.118667pt;}
.ya6{bottom:458.580000pt;}
.y53{bottom:467.053333pt;}
.y1d{bottom:467.565333pt;}
.y74{bottom:471.058667pt;}
.ya5{bottom:474.520000pt;}
.y52{bottom:482.993333pt;}
.y1c{bottom:483.506667pt;}
.ya4{bottom:498.261333pt;}
.y51{bottom:498.933333pt;}
.y1b{bottom:499.446667pt;}
.y50{bottom:514.909333pt;}
.y73{bottom:515.242667pt;}
.ya3{bottom:519.342667pt;}
.y1a{bottom:520.172000pt;}
.ya2{bottom:528.454667pt;}
.y4f{bottom:530.849333pt;}
.y68{bottom:539.152000pt;}
.yd8{bottom:546.070667pt;}
.y4e{bottom:546.789333pt;}
.y19{bottom:549.622667pt;}
.yd7{bottom:558.025333pt;}
.ya1{bottom:561.924000pt;}
.y4d{bottom:562.730667pt;}
.y18{bottom:562.906667pt;}
.yd6{bottom:569.981333pt;}
.y17{bottom:576.190667pt;}
.ya0{bottom:577.864000pt;}
.yd5{bottom:581.936000pt;}
.y16{bottom:589.573333pt;}
.y4c{bottom:589.834667pt;}
.y9f{bottom:593.804000pt;}
.yd4{bottom:593.892000pt;}
.y15{bottom:602.857333pt;}
.yd3{bottom:605.846667pt;}
.y35{bottom:613.744000pt;}
.y14{bottom:616.141333pt;}
.yd2{bottom:617.801333pt;}
.y13{bottom:629.424000pt;}
.yd1{bottom:629.757333pt;}
.y9e{bottom:638.360000pt;}
.yd0{bottom:641.712000pt;}
.y12{bottom:642.708000pt;}
.ycf{bottom:653.666667pt;}
.y11{bottom:655.992000pt;}
.yce{bottom:665.622667pt;}
.y10{bottom:669.274667pt;}
.ycd{bottom:677.577333pt;}
.yf{bottom:682.558667pt;}
.ycc{bottom:689.533333pt;}
.ye{bottom:695.842667pt;}
.ycb{bottom:701.488000pt;}
.yd{bottom:709.125333pt;}
.yca{bottom:713.442667pt;}
.yc{bottom:722.409333pt;}
.yc9{bottom:725.398667pt;}
.yb{bottom:735.693333pt;}
.yc8{bottom:737.353333pt;}
.ya{bottom:748.976000pt;}
.yc7{bottom:749.308000pt;}
.yc6{bottom:761.264000pt;}
.y9{bottom:762.260000pt;}
.yc5{bottom:773.218667pt;}
.y8{bottom:775.544000pt;}
.y9d{bottom:778.852000pt;}
.yc4{bottom:785.174667pt;}
.y7{bottom:788.826667pt;}
.y9c{bottom:790.806667pt;}
.yc3{bottom:797.129333pt;}
.y6{bottom:802.110667pt;}
.yc2{bottom:809.084000pt;}
.y67{bottom:809.445333pt;}
.y8f{bottom:809.610667pt;}
.yc1{bottom:821.040000pt;}
.y66{bottom:821.400000pt;}
.y90{bottom:823.293333pt;}
.yc0{bottom:832.994667pt;}
.ybf{bottom:844.949333pt;}
.y88{bottom:847.860000pt;}
.y5{bottom:848.913333pt;}
.ybe{bottom:856.905333pt;}
.y4{bottom:865.352000pt;}
.ybd{bottom:868.860000pt;}
.ybc{bottom:880.816000pt;}
.y3{bottom:881.986667pt;}
.ybb{bottom:900.541333pt;}
.y2{bottom:923.830667pt;}
.yba{bottom:925.448000pt;}
.yb9{bottom:941.388000pt;}
.yb8{bottom:957.328000pt;}
.y1{bottom:961.024000pt;}
.yb7{bottom:977.453333pt;}
.h12{height:8.955384pt;}
.h9{height:19.694493pt;}
.h11{height:20.173516pt;}
.he{height:21.531003pt;}
.h15{height:22.688518pt;}
.h13{height:23.902270pt;}
.ha{height:24.184221pt;}
.h19{height:29.032418pt;}
.hb{height:29.244954pt;}
.h18{height:29.458287pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.hc{height:36.290431pt;}
.h4{height:36.556100pt;}
.hf{height:37.459376pt;}
.h5{height:39.850400pt;}
.h3{height:40.211857pt;}
.h2{height:40.505190pt;}
.h17{height:73.907376pt;}
.h16{height:75.797067pt;}
.h1{height:87.734861pt;}
.h10{height:90.996858pt;}
.h14{height:152.035794pt;}
.h8{height:199.521974pt;}
.hd{height:248.427148pt;}
.h0{height:1056.000000pt;}
.w3{width:133.903351pt;}
.w2{width:150.634007pt;}
.w4{width:184.120001pt;}
.w1{width:217.577349pt;}
.w0{width:816.000000pt;}
.x1d{left:-54.331200pt;}
.x0{left:0.000000pt;}
.x2a{left:2.655914pt;}
.x30{left:8.192423pt;}
.xc{left:10.672665pt;}
.x2e{left:15.755536pt;}
.x17{left:16.898656pt;}
.x2f{left:19.057708pt;}
.x2d{left:22.838884pt;}
.x29{left:23.812860pt;}
.x10{left:31.083467pt;}
.x16{left:37.884165pt;}
.x21{left:42.606980pt;}
.x27{left:45.324887pt;}
.x26{left:46.400528pt;}
.x1f{left:47.877106pt;}
.x20{left:51.500695pt;}
.x12{left:56.901738pt;}
.x1e{left:59.435314pt;}
.x23{left:62.451451pt;}
.x8{left:65.285333pt;}
.x1{left:67.376000pt;}
.xb{left:74.956000pt;}
.x7{left:78.569333pt;}
.x28{left:79.971734pt;}
.x39{left:84.317333pt;}
.x15{left:89.024369pt;}
.x14{left:90.469844pt;}
.x13{left:91.636673pt;}
.x3a{left:101.073333pt;}
.x2{left:118.544000pt;}
.x22{left:124.973834pt;}
.x11{left:135.018335pt;}
.x24{left:144.933333pt;}
.xd{left:149.934591pt;}
.xe{left:152.224711pt;}
.xf{left:155.011168pt;}
.x18{left:156.618558pt;}
.x5{left:160.636000pt;}
.x37{left:174.729333pt;}
.x9{left:180.826667pt;}
.x3b{left:187.026667pt;}
.x38{left:195.464000pt;}
.x6{left:224.390667pt;}
.x3{left:234.376000pt;}
.x3c{left:238.485333pt;}
.x1a{left:415.970667pt;}
.x25{left:424.338667pt;}
.x1b{left:429.253333pt;}
.xa{left:474.552000pt;}
.x2b{left:485.389333pt;}
.x35{left:488.420000pt;}
.x19{left:500.889333pt;}
.x32{left:512.886667pt;}
.x1c{left:517.676000pt;}
.x36{left:533.138667pt;}
.x33{left:545.133333pt;}
.x4{left:555.645333pt;}
.x2c{left:558.234667pt;}
.x34{left:589.889333pt;}
.x31{left:644.094667pt;}
}




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