
    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_28e2f7c80b671e677791b75d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_d5ce4e8a4abb9dd762a3c232.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_4bbf3737569e242555fc5d77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_e83eee192071d28d39adacc8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c10e611a228ad5185dd48e03.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0d98065ba895215927ef7cfb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.684000;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_315888eb343eaaf2fae20eda.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa45d8f308e0a3148c9fc7d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_9225ea2bf4b8a615b9c57af0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_feb554abbe0fe105a0ece3ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_b048cd126ca10aa3f1df105d.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;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_f81605e3572bd96c136073a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_885b0f268efb53d02f403b89.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_82c9060dfee4cd709f5cb45c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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_89d0847683752eca00d51a1f.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-10.662000px;}
.v1{vertical-align:-8.970000px;}
.v6{vertical-align:-7.746000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:8.514000px;}
.v2{vertical-align:9.816000px;}
.v8{vertical-align:12.750000px;}
.vc{vertical-align:19.350000px;}
.v7{vertical-align:22.572000px;}
.vb{vertical-align:39.978000px;}
.v3{vertical-align:44.898000px;}
.v5{vertical-align:46.158000px;}
.va{vertical-align:49.092000px;}
.vd{vertical-align:53.850000px;}
.v4{vertical-align:111.930000px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000511px;}
.ls23{letter-spacing:0.001289px;}
.ls1e{letter-spacing:0.001591px;}
.ls29{letter-spacing:0.002124px;}
.ls13{letter-spacing:0.002154px;}
.ls4{letter-spacing:0.002706px;}
.lsc{letter-spacing:0.002712px;}
.ls7{letter-spacing:0.003239px;}
.ls21{letter-spacing:0.003242px;}
.ls2c{letter-spacing:0.004332px;}
.ls5{letter-spacing:0.004344px;}
.ls15{letter-spacing:0.004528px;}
.ls6{letter-spacing:0.005972px;}
.lsf{letter-spacing:1.814137px;}
.ls10{letter-spacing:1.820137px;}
.ls19{letter-spacing:2.342156px;}
.lsb{letter-spacing:2.348156px;}
.ls26{letter-spacing:2.349242px;}
.ls14{letter-spacing:2.674328px;}
.ls20{letter-spacing:2.984915px;}
.ls25{letter-spacing:2.989289px;}
.lse{letter-spacing:3.638154px;}
.ls3{letter-spacing:3.771239px;}
.ls1c{letter-spacing:3.777239px;}
.ls22{letter-spacing:5.011059px;}
.lsa{letter-spacing:7.131229px;}
.ls28{letter-spacing:13.250156px;}
.lsd{letter-spacing:14.540712px;}
.ls9{letter-spacing:14.543412px;}
.ls2a{letter-spacing:17.538499px;}
.ls1a{letter-spacing:18.176706px;}
.ls8{letter-spacing:18.179412px;}
.ls12{letter-spacing:18.182706px;}
.ls1b{letter-spacing:18.185412px;}
.ls1d{letter-spacing:23.497591px;}
.ls17{letter-spacing:28.953229px;}
.ls18{letter-spacing:32.223229px;}
.ls2{letter-spacing:32.723973px;}
.ls1f{letter-spacing:32.725605px;}
.ls0{letter-spacing:32.727300px;}
.ls2b{letter-spacing:33.552499px;}
.ls27{letter-spacing:38.521059px;}
.ls16{letter-spacing:65.450712px;}
.ls11{letter-spacing:340.952712px;}
.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;}
}
.ws2a{word-spacing:-65.454600px;}
.ws27{word-spacing:-42.637126px;}
.ws5{word-spacing:-38.937826px;}
.ws14{word-spacing:-33.696028px;}
.ws17{word-spacing:-33.106937px;}
.ws16{word-spacing:-32.910573px;}
.ws31{word-spacing:-31.771663px;}
.ws34{word-spacing:-24.440748px;}
.ws30{word-spacing:-20.975024px;}
.ws2b{word-spacing:-18.183288px;}
.ws10{word-spacing:-16.743287px;}
.ws6a{word-spacing:-16.730196px;}
.ws32{word-spacing:-12.177902px;}
.ws2c{word-spacing:-7.299364px;}
.ws3b{word-spacing:-7.143902px;}
.ws5e{word-spacing:-3.652367px;}
.ws3c{word-spacing:-3.521457px;}
.ws7f{word-spacing:-3.063275px;}
.ws6e{word-spacing:-2.997821px;}
.ws5c{word-spacing:-2.736002px;}
.ws60{word-spacing:-2.408729px;}
.ws71{word-spacing:-2.343275px;}
.ws50{word-spacing:-2.016002px;}
.ws4b{word-spacing:-1.950547px;}
.ws86{word-spacing:-1.296001px;}
.wsb{word-spacing:-1.243332px;}
.ws73{word-spacing:-1.165092px;}
.ws4{word-spacing:-1.064006px;}
.ws1{word-spacing:-0.103292px;}
.wse{word-spacing:-0.086077px;}
.ws1f{word-spacing:-0.065455px;}
.ws28{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws29{word-spacing:-0.017548px;}
.ws15{word-spacing:0.000000px;}
.ws80{word-spacing:0.484364px;}
.ws53{word-spacing:0.536728px;}
.ws6f{word-spacing:0.549819px;}
.ws51{word-spacing:0.929455px;}
.ws72{word-spacing:1.204365px;}
.ws66{word-spacing:1.453092px;}
.ws58{word-spacing:1.911274px;}
.ws87{word-spacing:2.120729px;}
.wsa{word-spacing:2.163877px;}
.ws4c{word-spacing:2.304002px;}
.ws47{word-spacing:2.369457px;}
.ws63{word-spacing:2.500366px;}
.ws64{word-spacing:2.565820px;}
.ws4d{word-spacing:3.024003px;}
.ws3{word-spacing:3.239838px;}
.wsd{word-spacing:3.299613px;}
.ws65{word-spacing:3.603218px;}
.ws1c{word-spacing:3.613094px;}
.ws46{word-spacing:3.624268px;}
.ws38{word-spacing:3.628261px;}
.ws33{word-spacing:3.630498px;}
.ws2d{word-spacing:3.634209px;}
.ws57{word-spacing:3.634224px;}
.ws37{word-spacing:3.636360px;}
.ws49{word-spacing:3.636468px;}
.ws45{word-spacing:3.638418px;}
.ws67{word-spacing:3.646667px;}
.ws70{word-spacing:3.659101px;}
.ws19{word-spacing:3.678549px;}
.wsc{word-spacing:3.897369px;}
.ws5d{word-spacing:4.660368px;}
.ws78{word-spacing:4.856731px;}
.ws7{word-spacing:4.913554px;}
.ws7a{word-spacing:5.118550px;}
.ws3e{word-spacing:5.314914px;}
.ws1b{word-spacing:5.380368px;}
.ws6c{word-spacing:5.511277px;}
.ws48{word-spacing:5.642187px;}
.ws1e{word-spacing:5.773096px;}
.ws55{word-spacing:5.838550px;}
.ws23{word-spacing:5.969460px;}
.ws81{word-spacing:6.034914px;}
.ws59{word-spacing:6.100369px;}
.ws69{word-spacing:6.165823px;}
.ws3d{word-spacing:6.296733px;}
.ws7c{word-spacing:6.427642px;}
.ws88{word-spacing:6.558551px;}
.ws83{word-spacing:6.624006px;}
.ws6b{word-spacing:6.637096px;}
.ws68{word-spacing:6.702551px;}
.ws7d{word-spacing:6.885824px;}
.ws4f{word-spacing:7.409461px;}
.ws4e{word-spacing:7.474915px;}
.ws79{word-spacing:7.749825px;}
.ws54{word-spacing:7.998552px;}
.ws5a{word-spacing:8.064007px;}
.ws62{word-spacing:8.325825px;}
.ws6d{word-spacing:8.404371px;}
.ws20{word-spacing:8.653098px;}
.ws8a{word-spacing:8.718553px;}
.ws7b{word-spacing:8.797098px;}
.ws82{word-spacing:8.862553px;}
.ws89{word-spacing:9.386190px;}
.ws1a{word-spacing:9.634917px;}
.ws7e{word-spacing:9.648008px;}
.ws24{word-spacing:9.765826px;}
.ws56{word-spacing:9.962190px;}
.ws22{word-spacing:10.027645px;}
.ws9{word-spacing:10.173807px;}
.ws5b{word-spacing:10.289463px;}
.ws25{word-spacing:10.485827px;}
.ws5f{word-spacing:11.140373px;}
.ws8b{word-spacing:11.349828px;}
.ws77{word-spacing:11.533101px;}
.ws8{word-spacing:11.548646px;}
.ws74{word-spacing:11.794919px;}
.ws52{word-spacing:12.056737px;}
.ws76{word-spacing:12.462556px;}
.ws4a{word-spacing:13.562193px;}
.ws43{word-spacing:13.848151px;}
.ws75{word-spacing:14.164375px;}
.ws11{word-spacing:14.544012px;}
.ws84{word-spacing:15.656740px;}
.ws3f{word-spacing:17.483160px;}
.ws40{word-spacing:17.503617px;}
.ws85{word-spacing:17.764378px;}
.ws44{word-spacing:21.097146px;}
.ws42{word-spacing:21.097797px;}
.ws41{word-spacing:21.119160px;}
.ws2f{word-spacing:21.125451px;}
.ws2{word-spacing:23.312640px;}
.ws36{word-spacing:24.756403px;}
.ws2e{word-spacing:24.761451px;}
.ws12{word-spacing:25.003657px;}
.ws3a{word-spacing:25.023664px;}
.ws39{word-spacing:25.032938px;}
.ws13{word-spacing:25.069112px;}
.ws21{word-spacing:26.827469px;}
.ws1d{word-spacing:27.556387px;}
.ws0{word-spacing:31.091012px;}
.ws26{word-spacing:32.192873px;}
.wsf{word-spacing:60.480050px;}
.ws35{word-spacing:75.606666px;}
.ws61{word-spacing:80.625869px;}
.ws18{word-spacing:96.750773px;}
._1d{margin-left:-39.992761px;}
._21{margin-left:-38.160032px;}
._15{margin-left:-34.560029px;}
._c{margin-left:-32.727300px;}
._16{margin-left:-30.894571px;}
._27{margin-left:-29.061842px;}
._e{margin-left:-14.334557px;}
._17{margin-left:-11.978192px;}
._d{margin-left:-10.930918px;}
._24{margin-left:-9.425462px;}
._1{margin-left:-8.160100px;}
._3{margin-left:-5.881958px;}
._4{margin-left:-3.873485px;}
._0{margin-left:-2.685602px;}
._6{margin-left:-1.673717px;}
._5{width:1.613941px;}
._2{width:2.685602px;}
._29{width:4.516367px;}
._1b{width:8.901826px;}
._22{width:16.561978px;}
._2f{width:18.270127px;}
._30{width:19.872059px;}
._12{width:20.878054px;}
._11{width:22.714710px;}
._33{width:24.025766px;}
._a{width:25.213374px;}
._13{width:26.705477px;}
._9{width:28.632512px;}
._28{width:30.174571px;}
._7{width:31.322414px;}
._2b{width:32.727300px;}
._1e{width:34.167301px;}
._31{width:35.553061px;}
._2e{width:38.079943px;}
._34{width:39.444531px;}
._25{width:41.301853px;}
._2c{width:42.960641px;}
._32{width:43.987455px;}
._19{width:48.960041px;}
._8{width:51.407016px;}
._1f{width:52.478150px;}
._f{width:60.741869px;}
._10{width:66.894601px;}
._2a{width:80.697600px;}
._14{width:93.403714px;}
._2d{width:96.836850px;}
._26{width:1087.043858px;}
._1c{width:1504.408526px;}
._20{width:1685.652314px;}
._23{width:1716.332610px;}
._1a{width:1885.638541px;}
._18{width:1907.667325px;}
._b{width:2257.184845px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y23{bottom:108.000000px;}
.y9e{bottom:116.514000px;}
.y61{bottom:125.958000px;}
.y22{bottom:128.323500px;}
.y5f{bottom:131.601000px;}
.yd3{bottom:139.402500px;}
.y60{bottom:139.662000px;}
.y5e{bottom:144.450000px;}
.y21{bottom:148.647000px;}
.y9d{bottom:150.286500px;}
.y10b{bottom:161.572500px;}
.y81{bottom:161.746500px;}
.yec{bottom:165.738000px;}
.yd2{bottom:170.805000px;}
.y10a{bottom:181.896000px;}
.y80{bottom:182.070000px;}
.y9c{bottom:184.060500px;}
.y20{bottom:185.335500px;}
.yd1{bottom:191.130000px;}
.y5d{bottom:195.109500px;}
.yeb{bottom:199.512000px;}
.y7f{bottom:202.393500px;}
.y1f{bottom:205.659000px;}
.y43{bottom:214.321500px;}
.y109{bottom:215.145000px;}
.y9b{bottom:217.833000px;}
.yd0{bottom:222.532500px;}
.y1e{bottom:225.982500px;}
.y5c{bottom:228.883500px;}
.y7e{bottom:233.286000px;}
.y9a{bottom:238.158000px;}
.y1d{bottom:246.306000px;}
.y42{bottom:248.095500px;}
.y108{bottom:248.392500px;}
.ycf{bottom:250.378500px;}
.y99{bottom:258.481500px;}
.y5b{bottom:262.656000px;}
.yea{bottom:264.177000px;}
.y1c{bottom:266.629500px;}
.y107{bottom:268.716000px;}
.yce{bottom:270.702000px;}
.yb3{bottom:274.686000px;}
.y7d{bottom:277.039500px;}
.y41{bottom:281.868000px;}
.y98{bottom:289.372500px;}
.ycd{bottom:291.027000px;}
.y5a{bottom:291.952500px;}
.y106{bottom:301.965000px;}
.y1b{bottom:303.318000px;}
.ye9{bottom:307.996500px;}
.y7c{bottom:310.672500px;}
.y59{bottom:314.248500px;}
.y40{bottom:315.642000px;}
.ycc{bottom:321.918000px;}
.y105{bottom:322.288500px;}
.y1a{bottom:323.641500px;}
.yb2{bottom:326.244000px;}
.y97{bottom:333.192000px;}
.ye8{bottom:341.770500px;}
.y19{bottom:343.965000px;}
.y7b{bottom:344.305500px;}
.y58{bottom:346.726500px;}
.y3f{bottom:349.414500px;}
.y104{bottom:355.537500px;}
.ycb{bottom:359.044500px;}
.yb1{bottom:360.018000px;}
.ye7{bottom:362.094000px;}
.y96{bottom:366.966000px;}
.y103{bottom:375.861000px;}
.y57{bottom:377.617500px;}
.y7a{bottom:377.727000px;}
.y3e{bottom:380.307000px;}
.y18{bottom:380.652000px;}
.y95{bottom:387.289500px;}
.ye6{bottom:392.985000px;}
.yb0{bottom:393.790500px;}
.y17{bottom:400.977000px;}
.y78{bottom:406.522500px;}
.y102{bottom:409.108500px;}
.y79{bottom:409.231500px;}
.yca{bottom:409.485000px;}
.y77{bottom:411.360000px;}
.y94{bottom:421.063500px;}
.y16{bottom:421.300500px;}
.y56{bottom:421.437000px;}
.y3d{bottom:424.126500px;}
.yaf{bottom:427.564500px;}
.y101{bottom:429.433500px;}
.yc9{bottom:433.416000px;}
.y75{bottom:436.284000px;}
.ye5{bottom:436.804500px;}
.y76{bottom:438.993000px;}
.y74{bottom:441.121500px;}
.y15{bottom:441.624000px;}
.y3c{bottom:444.450000px;}
.y93{bottom:454.836000px;}
.y55{bottom:455.211000px;}
.ye4{bottom:457.128000px;}
.yae{bottom:458.455500px;}
.y100{bottom:462.681000px;}
.y3b{bottom:464.773500px;}
.yc8{bottom:464.818500px;}
.y73{bottom:470.824500px;}
.y14{bottom:478.311000px;}
.yff{bottom:483.004500px;}
.y3a{bottom:485.098500px;}
.yc7{bottom:485.142000px;}
.ye3{bottom:488.020500px;}
.y92{bottom:488.610000px;}
.y54{bottom:488.983500px;}
.y13{bottom:498.636000px;}
.yad{bottom:502.275000px;}
.y72{bottom:504.457500px;}
.yc6{bottom:512.988000px;}
.y39{bottom:515.989500px;}
.yfe{bottom:516.253500px;}
.y12{bottom:518.959500px;}
.y91{bottom:522.382500px;}
.y53{bottom:522.757500px;}
.ye2{bottom:531.840000px;}
.yac{bottom:536.049000px;}
.yfd{bottom:536.577000px;}
.y11{bottom:539.283000px;}
.y71{bottom:540.798000px;}
.yc5{bottom:540.835500px;}
.ye1{bottom:552.163500px;}
.y90{bottom:556.156500px;}
.yab{bottom:556.372500px;}
.y52{bottom:559.519500px;}
.y38{bottom:559.809000px;}
.yfc{bottom:569.826000px;}
.yc4{bottom:572.238000px;}
.y10{bottom:575.970000px;}
.y70{bottom:577.140000px;}
.y37{bottom:580.132500px;}
.ye0{bottom:588.691500px;}
.y8f{bottom:589.929000px;}
.yaa{bottom:590.145000px;}
.yfb{bottom:590.149500px;}
.yc3{bottom:592.561500px;}
.y51{bottom:596.281500px;}
.y6f{bottom:610.773000px;}
.y36{bottom:613.906500px;}
.yc2{bottom:620.409000px;}
.yfa{bottom:623.398500px;}
.y8e{bottom:623.703000px;}
.ya9{bottom:623.919000px;}
.yf{bottom:626.899500px;}
.y50{bottom:633.043500px;}
.ydf{bottom:640.249500px;}
.yf9{bottom:643.722000px;}
.y8d{bottom:644.026500px;}
.y6e{bottom:644.194500px;}
.ye{bottom:644.833500px;}
.y35{bottom:647.679000px;}
.yc1{bottom:651.300000px;}
.ya8{bottom:657.693000px;}
.yde{bottom:660.573000px;}
.yd{bottom:662.766000px;}
.y6d{bottom:664.518000px;}
.y4f{bottom:669.805500px;}
.y8c{bottom:674.919000px;}
.yf8{bottom:676.969500px;}
.yc{bottom:680.698500px;}
.y34{bottom:681.453000px;}
.y6c{bottom:684.843000px;}
.ya7{bottom:691.465500px;}
.yc0{bottom:694.002000px;}
.ydd{bottom:694.347000px;}
.yf7{bottom:697.294500px;}
.yb{bottom:698.631000px;}
.y4e{bottom:700.698000px;}
.y33{bottom:701.776500px;}
.y6b{bottom:715.734000px;}
.ya{bottom:716.563500px;}
.ybf{bottom:717.933000px;}
.y8b{bottom:718.738500px;}
.ya6{bottom:725.239500px;}
.ydc{bottom:728.121000px;}
.yf6{bottom:730.542000px;}
.y9{bottom:734.497500px;}
.y32{bottom:735.550500px;}
.y4d{bottom:737.824500px;}
.y8a{bottom:739.062000px;}
.ybe{bottom:749.335500px;}
.yf5{bottom:750.865500px;}
.y8{bottom:752.430000px;}
.y31{bottom:755.874000px;}
.ya5{bottom:759.012000px;}
.y6a{bottom:759.487500px;}
.ydb{bottom:761.893500px;}
.ybd{bottom:769.659000px;}
.y7{bottom:770.362500px;}
.y89{bottom:775.590000px;}
.y30{bottom:776.197500px;}
.y69{bottom:779.811000px;}
.yf4{bottom:784.114500px;}
.y4c{bottom:789.382500px;}
.ya4{bottom:792.786000px;}
.y6{bottom:793.636500px;}
.yda{bottom:795.667500px;}
.y2f{bottom:796.521000px;}
.ybc{bottom:797.506500px;}
.y68{bottom:800.134500px;}
.yf3{bottom:804.438000px;}
.y4b{bottom:809.706000px;}
.ya3{bottom:813.109500px;}
.ybb{bottom:825.352500px;}
.yd9{bottom:826.558500px;}
.y88{bottom:827.148000px;}
.y2e{bottom:833.049000px;}
.ya2{bottom:833.433000px;}
.y67{bottom:836.664000px;}
.yf2{bottom:837.687000px;}
.y4a{bottom:843.478500px;}
.yba{bottom:845.676000px;}
.y5{bottom:850.050000px;}
.yf1{bottom:858.010500px;}
.y87{bottom:860.922000px;}
.ya1{bottom:864.325500px;}
.yd8{bottom:870.378000px;}
.y66{bottom:876.930000px;}
.yb9{bottom:877.080000px;}
.y49{bottom:877.252500px;}
.y2d{bottom:884.607000px;}
.y4{bottom:886.737000px;}
.yf0{bottom:891.258000px;}
.y86{bottom:894.694500px;}
.yb8{bottom:897.403500px;}
.y65{bottom:899.226000px;}
.yd7{bottom:904.152000px;}
.y2c{bottom:904.932000px;}
.ya0{bottom:908.145000px;}
.y48{bottom:911.026500px;}
.yef{bottom:911.583000px;}
.yd6{bottom:924.475500px;}
.yb7{bottom:925.249500px;}
.y2b{bottom:925.255500px;}
.y85{bottom:928.468500px;}
.y64{bottom:932.191500px;}
.y3{bottom:932.203500px;}
.y9f{bottom:941.917500px;}
.y47{bottom:944.799000px;}
.y2a{bottom:945.579000px;}
.yee{bottom:948.111000px;}
.yb6{bottom:953.097000px;}
.y10e{bottom:955.368000px;}
.yd5{bottom:958.248000px;}
.y84{bottom:962.241000px;}
.y2{bottom:965.080500px;}
.y63{bottom:965.614500px;}
.y29{bottom:965.902500px;}
.yb5{bottom:973.420500px;}
.y10d{bottom:975.691500px;}
.y46{bottom:978.573000px;}
.y83{bottom:996.015000px;}
.y1{bottom:997.957500px;}
.y45{bottom:998.896500px;}
.y62{bottom:999.247500px;}
.yed{bottom:999.421500px;}
.y28{bottom:1002.591000px;}
.yb4{bottom:1004.823000px;}
.y10c{bottom:1009.464000px;}
.yd4{bottom:1012.345500px;}
.y27{bottom:1022.914500px;}
.y82{bottom:1029.789000px;}
.y44{bottom:1032.669000px;}
.y26{bottom:1043.238000px;}
.y25{bottom:1063.561500px;}
.hc{height:35.865450px;}
.h3{height:41.723369px;}
.h4{height:44.831700px;}
.h6{height:45.687311px;}
.h9{height:46.210948px;}
.h7{height:49.090950px;}
.h2{height:49.781453px;}
.h8{height:53.798400px;}
.h11{height:57.604950px;}
.hf{height:63.827702px;}
.h5{height:64.557900px;}
.hd{height:71.662950px;}
.h1{height:72.201388px;}
.h10{height:89.715450px;}
.ha{height:93.988950px;}
.he{height:93.994950px;}
.hb{height:114.548184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x1b{left:116.182500px;}
.x2{left:127.963500px;}
.xa{left:132.546000px;}
.x1c{left:141.636000px;}
.x8{left:148.909500px;}
.x16{left:167.319000px;}
.x7{left:171.325500px;}
.x1{left:190.668000px;}
.x17{left:257.403000px;}
.x19{left:264.642000px;}
.x18{left:306.042000px;}
.x1a{left:335.269500px;}
.x10{left:347.655000px;}
.xc{left:355.227000px;}
.xe{left:368.938500px;}
.xf{left:370.213500px;}
.x3{left:386.931000px;}
.x15{left:391.807500px;}
.x5{left:393.520500px;}
.xd{left:398.910000px;}
.x4{left:400.960500px;}
.x14{left:407.256000px;}
.x11{left:410.673000px;}
.x6{left:426.123000px;}
.x12{left:428.035500px;}
.x13{left:444.406500px;}
.x1d{left:450.817500px;}
.xb{left:454.909500px;}
@media print{
.v9{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.973333pt;}
.v6{vertical-align:-6.885333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:7.568000pt;}
.v2{vertical-align:8.725333pt;}
.v8{vertical-align:11.333333pt;}
.vc{vertical-align:17.200000pt;}
.v7{vertical-align:20.064000pt;}
.vb{vertical-align:35.536000pt;}
.v3{vertical-align:39.909333pt;}
.v5{vertical-align:41.029333pt;}
.va{vertical-align:43.637333pt;}
.vd{vertical-align:47.866667pt;}
.v4{vertical-align:99.493333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000455pt;}
.ls23{letter-spacing:0.001146pt;}
.ls1e{letter-spacing:0.001414pt;}
.ls29{letter-spacing:0.001888pt;}
.ls13{letter-spacing:0.001914pt;}
.ls4{letter-spacing:0.002405pt;}
.lsc{letter-spacing:0.002411pt;}
.ls7{letter-spacing:0.002879pt;}
.ls21{letter-spacing:0.002881pt;}
.ls2c{letter-spacing:0.003851pt;}
.ls5{letter-spacing:0.003861pt;}
.ls15{letter-spacing:0.004025pt;}
.ls6{letter-spacing:0.005308pt;}
.lsf{letter-spacing:1.612566pt;}
.ls10{letter-spacing:1.617899pt;}
.ls19{letter-spacing:2.081916pt;}
.lsb{letter-spacing:2.087250pt;}
.ls26{letter-spacing:2.088215pt;}
.ls14{letter-spacing:2.377181pt;}
.ls20{letter-spacing:2.653258pt;}
.ls25{letter-spacing:2.657146pt;}
.lse{letter-spacing:3.233914pt;}
.ls3{letter-spacing:3.352213pt;}
.ls1c{letter-spacing:3.357546pt;}
.ls22{letter-spacing:4.454275pt;}
.lsa{letter-spacing:6.338870pt;}
.ls28{letter-spacing:11.777916pt;}
.lsd{letter-spacing:12.925077pt;}
.ls9{letter-spacing:12.927477pt;}
.ls2a{letter-spacing:15.589777pt;}
.ls1a{letter-spacing:16.157072pt;}
.ls8{letter-spacing:16.159477pt;}
.ls12{letter-spacing:16.162405pt;}
.ls1b{letter-spacing:16.164811pt;}
.ls1d{letter-spacing:20.886748pt;}
.ls17{letter-spacing:25.736203pt;}
.ls18{letter-spacing:28.642870pt;}
.ls2{letter-spacing:29.087976pt;}
.ls1f{letter-spacing:29.089427pt;}
.ls0{letter-spacing:29.090933pt;}
.ls2b{letter-spacing:29.824444pt;}
.ls27{letter-spacing:34.240942pt;}
.ls16{letter-spacing:58.178411pt;}
.ls11{letter-spacing:303.069077pt;}
.ws2a{word-spacing:-58.181867pt;}
.ws27{word-spacing:-37.899668pt;}
.ws5{word-spacing:-34.611401pt;}
.ws14{word-spacing:-29.952025pt;}
.ws17{word-spacing:-29.428388pt;}
.ws16{word-spacing:-29.253843pt;}
.ws31{word-spacing:-28.241478pt;}
.ws34{word-spacing:-21.725109pt;}
.ws30{word-spacing:-18.644465pt;}
.ws2b{word-spacing:-16.162923pt;}
.ws10{word-spacing:-14.882921pt;}
.ws6a{word-spacing:-14.871285pt;}
.ws32{word-spacing:-10.824802pt;}
.ws2c{word-spacing:-6.488323pt;}
.ws3b{word-spacing:-6.350135pt;}
.ws5e{word-spacing:-3.246548pt;}
.ws3c{word-spacing:-3.130184pt;}
.ws7f{word-spacing:-2.722911pt;}
.ws6e{word-spacing:-2.664729pt;}
.ws5c{word-spacing:-2.432002pt;}
.ws60{word-spacing:-2.141093pt;}
.ws71{word-spacing:-2.082911pt;}
.ws50{word-spacing:-1.792001pt;}
.ws4b{word-spacing:-1.733820pt;}
.ws86{word-spacing:-1.152001pt;}
.wsb{word-spacing:-1.105184pt;}
.ws73{word-spacing:-1.035637pt;}
.ws4{word-spacing:-0.945783pt;}
.ws1{word-spacing:-0.091815pt;}
.wse{word-spacing:-0.076513pt;}
.ws1f{word-spacing:-0.058182pt;}
.ws28{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws29{word-spacing:-0.015599pt;}
.ws15{word-spacing:0.000000pt;}
.ws80{word-spacing:0.430546pt;}
.ws53{word-spacing:0.477091pt;}
.ws6f{word-spacing:0.488728pt;}
.ws51{word-spacing:0.826183pt;}
.ws72{word-spacing:1.070546pt;}
.ws66{word-spacing:1.291637pt;}
.ws58{word-spacing:1.698911pt;}
.ws87{word-spacing:1.885092pt;}
.wsa{word-spacing:1.923446pt;}
.ws4c{word-spacing:2.048002pt;}
.ws47{word-spacing:2.106184pt;}
.ws63{word-spacing:2.222547pt;}
.ws64{word-spacing:2.280729pt;}
.ws4d{word-spacing:2.688002pt;}
.ws3{word-spacing:2.879856pt;}
.wsd{word-spacing:2.932989pt;}
.ws65{word-spacing:3.202861pt;}
.ws1c{word-spacing:3.211639pt;}
.ws46{word-spacing:3.221572pt;}
.ws38{word-spacing:3.225121pt;}
.ws33{word-spacing:3.227110pt;}
.ws2d{word-spacing:3.230408pt;}
.ws57{word-spacing:3.230422pt;}
.ws37{word-spacing:3.232320pt;}
.ws49{word-spacing:3.232416pt;}
.ws45{word-spacing:3.234149pt;}
.ws67{word-spacing:3.241482pt;}
.ws70{word-spacing:3.252535pt;}
.ws19{word-spacing:3.269821pt;}
.wsc{word-spacing:3.464328pt;}
.ws5d{word-spacing:4.142549pt;}
.ws78{word-spacing:4.317095pt;}
.ws7{word-spacing:4.367604pt;}
.ws7a{word-spacing:4.549822pt;}
.ws3e{word-spacing:4.724368pt;}
.ws1b{word-spacing:4.782549pt;}
.ws6c{word-spacing:4.898913pt;}
.ws48{word-spacing:5.015277pt;}
.ws1e{word-spacing:5.131641pt;}
.ws55{word-spacing:5.189823pt;}
.ws23{word-spacing:5.306186pt;}
.ws81{word-spacing:5.364368pt;}
.ws59{word-spacing:5.422550pt;}
.ws69{word-spacing:5.480732pt;}
.ws3d{word-spacing:5.597096pt;}
.ws7c{word-spacing:5.713459pt;}
.ws88{word-spacing:5.829823pt;}
.ws83{word-spacing:5.888005pt;}
.ws6b{word-spacing:5.899641pt;}
.ws68{word-spacing:5.957823pt;}
.ws7d{word-spacing:6.120732pt;}
.ws4f{word-spacing:6.586187pt;}
.ws4e{word-spacing:6.644369pt;}
.ws79{word-spacing:6.888733pt;}
.ws54{word-spacing:7.109824pt;}
.ws5a{word-spacing:7.168006pt;}
.ws62{word-spacing:7.400733pt;}
.ws6d{word-spacing:7.470552pt;}
.ws20{word-spacing:7.691643pt;}
.ws8a{word-spacing:7.749825pt;}
.ws7b{word-spacing:7.819643pt;}
.ws82{word-spacing:7.877825pt;}
.ws89{word-spacing:8.343280pt;}
.ws1a{word-spacing:8.564371pt;}
.ws7e{word-spacing:8.576007pt;}
.ws24{word-spacing:8.680735pt;}
.ws56{word-spacing:8.855280pt;}
.ws22{word-spacing:8.913462pt;}
.ws9{word-spacing:9.043384pt;}
.ws5b{word-spacing:9.146189pt;}
.ws25{word-spacing:9.320735pt;}
.ws5f{word-spacing:9.902554pt;}
.ws8b{word-spacing:10.088736pt;}
.ws77{word-spacing:10.251645pt;}
.ws8{word-spacing:10.265463pt;}
.ws74{word-spacing:10.484372pt;}
.ws52{word-spacing:10.717100pt;}
.ws76{word-spacing:11.077827pt;}
.ws4a{word-spacing:12.055283pt;}
.ws43{word-spacing:12.309467pt;}
.ws75{word-spacing:12.590556pt;}
.ws11{word-spacing:12.928011pt;}
.ws84{word-spacing:13.917103pt;}
.ws3f{word-spacing:15.540587pt;}
.ws40{word-spacing:15.558771pt;}
.ws85{word-spacing:15.790559pt;}
.ws44{word-spacing:18.753018pt;}
.ws42{word-spacing:18.753597pt;}
.ws41{word-spacing:18.772587pt;}
.ws2f{word-spacing:18.778178pt;}
.ws2{word-spacing:20.722347pt;}
.ws36{word-spacing:22.005692pt;}
.ws2e{word-spacing:22.010178pt;}
.ws12{word-spacing:22.225473pt;}
.ws3a{word-spacing:22.243257pt;}
.ws39{word-spacing:22.251501pt;}
.ws13{word-spacing:22.283655pt;}
.ws21{word-spacing:23.846639pt;}
.ws1d{word-spacing:24.494566pt;}
.ws0{word-spacing:27.636455pt;}
.ws26{word-spacing:28.615887pt;}
.wsf{word-spacing:53.760045pt;}
.ws35{word-spacing:67.205926pt;}
.ws61{word-spacing:71.667439pt;}
.ws18{word-spacing:86.000687pt;}
._1d{margin-left:-35.549121pt;}
._21{margin-left:-33.920028pt;}
._15{margin-left:-30.720026pt;}
._c{margin-left:-29.090933pt;}
._16{margin-left:-27.461841pt;}
._27{margin-left:-25.832749pt;}
._e{margin-left:-12.741829pt;}
._17{margin-left:-10.647282pt;}
._d{margin-left:-9.716372pt;}
._24{margin-left:-8.378189pt;}
._1{margin-left:-7.253422pt;}
._3{margin-left:-5.228407pt;}
._4{margin-left:-3.443098pt;}
._0{margin-left:-2.387202pt;}
._6{margin-left:-1.487748pt;}
._5{width:1.434614pt;}
._2{width:2.387202pt;}
._29{width:4.014549pt;}
._1b{width:7.912734pt;}
._22{width:14.721758pt;}
._2f{width:16.240113pt;}
._30{width:17.664053pt;}
._12{width:18.558270pt;}
._11{width:20.190853pt;}
._33{width:21.356236pt;}
._a{width:22.411888pt;}
._13{width:23.738202pt;}
._9{width:25.451122pt;}
._28{width:26.821841pt;}
._7{width:27.842146pt;}
._2b{width:29.090933pt;}
._1e{width:30.370934pt;}
._31{width:31.602721pt;}
._2e{width:33.848838pt;}
._34{width:35.061806pt;}
._25{width:36.712758pt;}
._2c{width:38.187237pt;}
._32{width:39.099960pt;}
._19{width:43.520036pt;}
._8{width:45.695125pt;}
._1f{width:46.647244pt;}
._f{width:53.992772pt;}
._10{width:59.461868pt;}
._2a{width:71.731200pt;}
._14{width:83.025524pt;}
._2d{width:86.077200pt;}
._26{width:966.261207pt;}
._1c{width:1337.252023pt;}
._20{width:1498.357612pt;}
._23{width:1525.628987pt;}
._1a{width:1676.123147pt;}
._18{width:1695.704289pt;}
._b{width:2006.386529pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y23{bottom:96.000000pt;}
.y9e{bottom:103.568000pt;}
.y61{bottom:111.962667pt;}
.y22{bottom:114.065333pt;}
.y5f{bottom:116.978667pt;}
.yd3{bottom:123.913333pt;}
.y60{bottom:124.144000pt;}
.y5e{bottom:128.400000pt;}
.y21{bottom:132.130667pt;}
.y9d{bottom:133.588000pt;}
.y10b{bottom:143.620000pt;}
.y81{bottom:143.774667pt;}
.yec{bottom:147.322667pt;}
.yd2{bottom:151.826667pt;}
.y10a{bottom:161.685333pt;}
.y80{bottom:161.840000pt;}
.y9c{bottom:163.609333pt;}
.y20{bottom:164.742667pt;}
.yd1{bottom:169.893333pt;}
.y5d{bottom:173.430667pt;}
.yeb{bottom:177.344000pt;}
.y7f{bottom:179.905333pt;}
.y1f{bottom:182.808000pt;}
.y43{bottom:190.508000pt;}
.y109{bottom:191.240000pt;}
.y9b{bottom:193.629333pt;}
.yd0{bottom:197.806667pt;}
.y1e{bottom:200.873333pt;}
.y5c{bottom:203.452000pt;}
.y7e{bottom:207.365333pt;}
.y9a{bottom:211.696000pt;}
.y1d{bottom:218.938667pt;}
.y42{bottom:220.529333pt;}
.y108{bottom:220.793333pt;}
.ycf{bottom:222.558667pt;}
.y99{bottom:229.761333pt;}
.y5b{bottom:233.472000pt;}
.yea{bottom:234.824000pt;}
.y1c{bottom:237.004000pt;}
.y107{bottom:238.858667pt;}
.yce{bottom:240.624000pt;}
.yb3{bottom:244.165333pt;}
.y7d{bottom:246.257333pt;}
.y41{bottom:250.549333pt;}
.y98{bottom:257.220000pt;}
.ycd{bottom:258.690667pt;}
.y5a{bottom:259.513333pt;}
.y106{bottom:268.413333pt;}
.y1b{bottom:269.616000pt;}
.ye9{bottom:273.774667pt;}
.y7c{bottom:276.153333pt;}
.y59{bottom:279.332000pt;}
.y40{bottom:280.570667pt;}
.ycc{bottom:286.149333pt;}
.y105{bottom:286.478667pt;}
.y1a{bottom:287.681333pt;}
.yb2{bottom:289.994667pt;}
.y97{bottom:296.170667pt;}
.ye8{bottom:303.796000pt;}
.y19{bottom:305.746667pt;}
.y7b{bottom:306.049333pt;}
.y58{bottom:308.201333pt;}
.y3f{bottom:310.590667pt;}
.y104{bottom:316.033333pt;}
.ycb{bottom:319.150667pt;}
.yb1{bottom:320.016000pt;}
.ye7{bottom:321.861333pt;}
.y96{bottom:326.192000pt;}
.y103{bottom:334.098667pt;}
.y57{bottom:335.660000pt;}
.y7a{bottom:335.757333pt;}
.y3e{bottom:338.050667pt;}
.y18{bottom:338.357333pt;}
.y95{bottom:344.257333pt;}
.ye6{bottom:349.320000pt;}
.yb0{bottom:350.036000pt;}
.y17{bottom:356.424000pt;}
.y78{bottom:361.353333pt;}
.y102{bottom:363.652000pt;}
.y79{bottom:363.761333pt;}
.yca{bottom:363.986667pt;}
.y77{bottom:365.653333pt;}
.y94{bottom:374.278667pt;}
.y16{bottom:374.489333pt;}
.y56{bottom:374.610667pt;}
.y3d{bottom:377.001333pt;}
.yaf{bottom:380.057333pt;}
.y101{bottom:381.718667pt;}
.yc9{bottom:385.258667pt;}
.y75{bottom:387.808000pt;}
.ye5{bottom:388.270667pt;}
.y76{bottom:390.216000pt;}
.y74{bottom:392.108000pt;}
.y15{bottom:392.554667pt;}
.y3c{bottom:395.066667pt;}
.y93{bottom:404.298667pt;}
.y55{bottom:404.632000pt;}
.ye4{bottom:406.336000pt;}
.yae{bottom:407.516000pt;}
.y100{bottom:411.272000pt;}
.y3b{bottom:413.132000pt;}
.yc8{bottom:413.172000pt;}
.y73{bottom:418.510667pt;}
.y14{bottom:425.165333pt;}
.yff{bottom:429.337333pt;}
.y3a{bottom:431.198667pt;}
.yc7{bottom:431.237333pt;}
.ye3{bottom:433.796000pt;}
.y92{bottom:434.320000pt;}
.y54{bottom:434.652000pt;}
.y13{bottom:443.232000pt;}
.yad{bottom:446.466667pt;}
.y72{bottom:448.406667pt;}
.yc6{bottom:455.989333pt;}
.y39{bottom:458.657333pt;}
.yfe{bottom:458.892000pt;}
.y12{bottom:461.297333pt;}
.y91{bottom:464.340000pt;}
.y53{bottom:464.673333pt;}
.ye2{bottom:472.746667pt;}
.yac{bottom:476.488000pt;}
.yfd{bottom:476.957333pt;}
.y11{bottom:479.362667pt;}
.y71{bottom:480.709333pt;}
.yc5{bottom:480.742667pt;}
.ye1{bottom:490.812000pt;}
.y90{bottom:494.361333pt;}
.yab{bottom:494.553333pt;}
.y52{bottom:497.350667pt;}
.y38{bottom:497.608000pt;}
.yfc{bottom:506.512000pt;}
.yc4{bottom:508.656000pt;}
.y10{bottom:511.973333pt;}
.y70{bottom:513.013333pt;}
.y37{bottom:515.673333pt;}
.ye0{bottom:523.281333pt;}
.y8f{bottom:524.381333pt;}
.yaa{bottom:524.573333pt;}
.yfb{bottom:524.577333pt;}
.yc3{bottom:526.721333pt;}
.y51{bottom:530.028000pt;}
.y6f{bottom:542.909333pt;}
.y36{bottom:545.694667pt;}
.yc2{bottom:551.474667pt;}
.yfa{bottom:554.132000pt;}
.y8e{bottom:554.402667pt;}
.ya9{bottom:554.594667pt;}
.yf{bottom:557.244000pt;}
.y50{bottom:562.705333pt;}
.ydf{bottom:569.110667pt;}
.yf9{bottom:572.197333pt;}
.y8d{bottom:572.468000pt;}
.y6e{bottom:572.617333pt;}
.ye{bottom:573.185333pt;}
.y35{bottom:575.714667pt;}
.yc1{bottom:578.933333pt;}
.ya8{bottom:584.616000pt;}
.yde{bottom:587.176000pt;}
.yd{bottom:589.125333pt;}
.y6d{bottom:590.682667pt;}
.y4f{bottom:595.382667pt;}
.y8c{bottom:599.928000pt;}
.yf8{bottom:601.750667pt;}
.yc{bottom:605.065333pt;}
.y34{bottom:605.736000pt;}
.y6c{bottom:608.749333pt;}
.ya7{bottom:614.636000pt;}
.yc0{bottom:616.890667pt;}
.ydd{bottom:617.197333pt;}
.yf7{bottom:619.817333pt;}
.yb{bottom:621.005333pt;}
.y4e{bottom:622.842667pt;}
.y33{bottom:623.801333pt;}
.y6b{bottom:636.208000pt;}
.ya{bottom:636.945333pt;}
.ybf{bottom:638.162667pt;}
.y8b{bottom:638.878667pt;}
.ya6{bottom:644.657333pt;}
.ydc{bottom:647.218667pt;}
.yf6{bottom:649.370667pt;}
.y9{bottom:652.886667pt;}
.y32{bottom:653.822667pt;}
.y4d{bottom:655.844000pt;}
.y8a{bottom:656.944000pt;}
.ybe{bottom:666.076000pt;}
.yf5{bottom:667.436000pt;}
.y8{bottom:668.826667pt;}
.y31{bottom:671.888000pt;}
.ya5{bottom:674.677333pt;}
.y6a{bottom:675.100000pt;}
.ydb{bottom:677.238667pt;}
.ybd{bottom:684.141333pt;}
.y7{bottom:684.766667pt;}
.y89{bottom:689.413333pt;}
.y30{bottom:689.953333pt;}
.y69{bottom:693.165333pt;}
.yf4{bottom:696.990667pt;}
.y4c{bottom:701.673333pt;}
.ya4{bottom:704.698667pt;}
.y6{bottom:705.454667pt;}
.yda{bottom:707.260000pt;}
.y2f{bottom:708.018667pt;}
.ybc{bottom:708.894667pt;}
.y68{bottom:711.230667pt;}
.yf3{bottom:715.056000pt;}
.y4b{bottom:719.738667pt;}
.ya3{bottom:722.764000pt;}
.ybb{bottom:733.646667pt;}
.yd9{bottom:734.718667pt;}
.y88{bottom:735.242667pt;}
.y2e{bottom:740.488000pt;}
.ya2{bottom:740.829333pt;}
.y67{bottom:743.701333pt;}
.yf2{bottom:744.610667pt;}
.y4a{bottom:749.758667pt;}
.yba{bottom:751.712000pt;}
.y5{bottom:755.600000pt;}
.yf1{bottom:762.676000pt;}
.y87{bottom:765.264000pt;}
.ya1{bottom:768.289333pt;}
.yd8{bottom:773.669333pt;}
.y66{bottom:779.493333pt;}
.yb9{bottom:779.626667pt;}
.y49{bottom:779.780000pt;}
.y2d{bottom:786.317333pt;}
.y4{bottom:788.210667pt;}
.yf0{bottom:792.229333pt;}
.y86{bottom:795.284000pt;}
.yb8{bottom:797.692000pt;}
.y65{bottom:799.312000pt;}
.yd7{bottom:803.690667pt;}
.y2c{bottom:804.384000pt;}
.ya0{bottom:807.240000pt;}
.y48{bottom:809.801333pt;}
.yef{bottom:810.296000pt;}
.yd6{bottom:821.756000pt;}
.yb7{bottom:822.444000pt;}
.y2b{bottom:822.449333pt;}
.y85{bottom:825.305333pt;}
.y64{bottom:828.614667pt;}
.y3{bottom:828.625333pt;}
.y9f{bottom:837.260000pt;}
.y47{bottom:839.821333pt;}
.y2a{bottom:840.514667pt;}
.yee{bottom:842.765333pt;}
.yb6{bottom:847.197333pt;}
.y10e{bottom:849.216000pt;}
.yd5{bottom:851.776000pt;}
.y84{bottom:855.325333pt;}
.y2{bottom:857.849333pt;}
.y63{bottom:858.324000pt;}
.y29{bottom:858.580000pt;}
.yb5{bottom:865.262667pt;}
.y10d{bottom:867.281333pt;}
.y46{bottom:869.842667pt;}
.y83{bottom:885.346667pt;}
.y1{bottom:887.073333pt;}
.y45{bottom:887.908000pt;}
.y62{bottom:888.220000pt;}
.yed{bottom:888.374667pt;}
.y28{bottom:891.192000pt;}
.yb4{bottom:893.176000pt;}
.y10c{bottom:897.301333pt;}
.yd4{bottom:899.862667pt;}
.y27{bottom:909.257333pt;}
.y82{bottom:915.368000pt;}
.y44{bottom:917.928000pt;}
.y26{bottom:927.322667pt;}
.y25{bottom:945.388000pt;}
.hc{height:31.880400pt;}
.h3{height:37.087439pt;}
.h4{height:39.850400pt;}
.h6{height:40.610943pt;}
.h9{height:41.076398pt;}
.h7{height:43.636400pt;}
.h2{height:44.250180pt;}
.h8{height:47.820800pt;}
.h11{height:51.204400pt;}
.hf{height:56.735735pt;}
.h5{height:57.384800pt;}
.hd{height:63.700400pt;}
.h1{height:64.179011pt;}
.h10{height:79.747067pt;}
.ha{height:83.545733pt;}
.he{height:83.551067pt;}
.hb{height:101.820608pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x1b{left:103.273333pt;}
.x2{left:113.745333pt;}
.xa{left:117.818667pt;}
.x1c{left:125.898667pt;}
.x8{left:132.364000pt;}
.x16{left:148.728000pt;}
.x7{left:152.289333pt;}
.x1{left:169.482667pt;}
.x17{left:228.802667pt;}
.x19{left:235.237333pt;}
.x18{left:272.037333pt;}
.x1a{left:298.017333pt;}
.x10{left:309.026667pt;}
.xc{left:315.757333pt;}
.xe{left:327.945333pt;}
.xf{left:329.078667pt;}
.x3{left:343.938667pt;}
.x15{left:348.273333pt;}
.x5{left:349.796000pt;}
.xd{left:354.586667pt;}
.x4{left:356.409333pt;}
.x14{left:362.005333pt;}
.x11{left:365.042667pt;}
.x6{left:378.776000pt;}
.x12{left:380.476000pt;}
.x13{left:395.028000pt;}
.x1d{left:400.726667pt;}
.xb{left:404.364000pt;}
}




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