
    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_92141fa8a45b26da8f6d26ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e821c7da07aa82c9f9e2c582.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6b7514089748b5619f5c7bc7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_891bc9b369c868707b78c2f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_fea64d139ee1062d46ed2ca3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ba674f94b3a399e908b5d316.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694824;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_e9fb136b9982f1c67ec373cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_a127e4fd470d7fe29bf0dca0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694824;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_f9f06b29f4f8544d9f799f20.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9f7eba85fe16a6214280d6dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_2bb06b9ed29e27af35111be0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694824;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_3384473f34c65a029cb79bb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689453;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_c2577ebf75a647f8d585d61e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.694824;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_a7626d438636ded33ab4a87a.woff2')format("woff");}.fff{font-family:fff;line-height:0.689453;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_02439e128694526ad8873290.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.694824;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_f144b0ab656de42725bcfee6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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_de45663dfff469597b5bfc02.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.694824;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_f56a564eb75f4f5f1382f5bf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.689453;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_aca9867438bc4356d2e3fb6d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.694824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_260b859ef947f0c3108c1ea4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_50a2f5a5fd47ea97b7e1ad25.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e3f3ccf89dd505834b9a3385.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.694824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_30bb0a7dcb4ca8ff7309aa81.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.687500;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);}
.v2{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.v1{vertical-align:29.880000px;}
.ls20{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.027600px;}
.ls17{letter-spacing:-0.018000px;}
.ls1b{letter-spacing:-0.012000px;}
.ls1c{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.006000px;}
.ls1a{letter-spacing:0.012000px;}
.ls18{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.024000px;}
.lse{letter-spacing:0.029898px;}
.ls1d{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.090600px;}
.ls1f{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.139200px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.197976px;}
.ls1e{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.557994px;}
.lsf{letter-spacing:1.980000px;}
.ls2{letter-spacing:2.340000px;}
.ls16{letter-spacing:6.660000px;}
.ls14{letter-spacing:83.280000px;}
.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;}
}
.ws1{word-spacing:-37.336320px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.470000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.ws35{word-spacing:-13.752000px;}
.wsa{word-spacing:-13.644000px;}
.ws36{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.356000px;}
.wse{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.248000px;}
.ws6{word-spacing:-9.000000px;}
.ws10{word-spacing:-0.990000px;}
.wsc{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.156000px;}
.wsd{word-spacing:0.000000px;}
.wsf{word-spacing:0.090000px;}
.ws22{word-spacing:0.108000px;}
.ws24{word-spacing:0.162000px;}
.ws20{word-spacing:0.180000px;}
.ws48{word-spacing:0.216000px;}
.ws23{word-spacing:0.234000px;}
.ws1f{word-spacing:0.270000px;}
.ws21{word-spacing:0.342000px;}
.ws4e{word-spacing:0.810000px;}
.ws4c{word-spacing:0.918000px;}
.ws4f{word-spacing:1.080000px;}
.ws4a{word-spacing:1.242000px;}
.ws4d{word-spacing:1.296000px;}
.ws49{word-spacing:1.350000px;}
.ws4b{word-spacing:1.776000px;}
.ws43{word-spacing:2.052000px;}
.ws44{word-spacing:2.268000px;}
.ws47{word-spacing:2.322000px;}
.ws46{word-spacing:2.376000px;}
.ws45{word-spacing:2.430000px;}
.ws6a{word-spacing:2.538000px;}
.ws6c{word-spacing:2.646000px;}
.ws6b{word-spacing:2.700000px;}
.ws61{word-spacing:2.754000px;}
.ws62{word-spacing:2.808000px;}
.ws1a{word-spacing:2.862000px;}
.ws64{word-spacing:2.916000px;}
.ws63{word-spacing:2.970000px;}
.ws17{word-spacing:3.024000px;}
.ws60{word-spacing:3.078000px;}
.ws5f{word-spacing:3.132000px;}
.ws1b{word-spacing:3.186000px;}
.ws16{word-spacing:3.240000px;}
.ws18{word-spacing:3.294000px;}
.ws15{word-spacing:3.402000px;}
.ws14{word-spacing:3.474000px;}
.ws19{word-spacing:3.510000px;}
.ws72{word-spacing:3.726000px;}
.ws73{word-spacing:3.942000px;}
.ws5c{word-spacing:4.104000px;}
.ws34{word-spacing:4.170000px;}
.ws5b{word-spacing:4.212000px;}
.ws58{word-spacing:4.266000px;}
.ws5d{word-spacing:4.320000px;}
.ws59{word-spacing:4.428000px;}
.ws77{word-spacing:4.446000px;}
.ws57{word-spacing:4.482000px;}
.ws5e{word-spacing:4.536000px;}
.ws5a{word-spacing:4.590000px;}
.ws66{word-spacing:5.292000px;}
.ws68{word-spacing:5.508000px;}
.ws67{word-spacing:5.562000px;}
.ws65{word-spacing:5.616000px;}
.ws69{word-spacing:5.670000px;}
.ws2d{word-spacing:5.760000px;}
.ws2b{word-spacing:5.778000px;}
.ws29{word-spacing:5.886000px;}
.ws2a{word-spacing:5.940000px;}
.ws2c{word-spacing:5.994000px;}
.ws33{word-spacing:6.264000px;}
.ws2f{word-spacing:6.372000px;}
.ws2e{word-spacing:6.588000px;}
.ws31{word-spacing:6.642000px;}
.ws32{word-spacing:6.660000px;}
.ws30{word-spacing:6.696000px;}
.ws55{word-spacing:7.560000px;}
.ws53{word-spacing:7.722000px;}
.ws50{word-spacing:7.938000px;}
.ws52{word-spacing:8.046000px;}
.ws51{word-spacing:8.100000px;}
.ws56{word-spacing:8.154000px;}
.ws54{word-spacing:8.208000px;}
.ws38{word-spacing:10.098000px;}
.ws28{word-spacing:10.152000px;}
.ws26{word-spacing:10.206000px;}
.ws39{word-spacing:10.260000px;}
.ws25{word-spacing:10.314000px;}
.ws27{word-spacing:10.368000px;}
.ws37{word-spacing:10.386000px;}
.ws3c{word-spacing:10.398000px;}
.ws3d{word-spacing:10.404000px;}
.ws3b{word-spacing:10.596000px;}
.ws3a{word-spacing:10.740000px;}
.ws3f{word-spacing:10.800000px;}
.ws42{word-spacing:10.908000px;}
.ws41{word-spacing:10.962000px;}
.ws3e{word-spacing:11.016000px;}
.ws40{word-spacing:11.070000px;}
.ws74{word-spacing:13.176000px;}
.ws75{word-spacing:13.608000px;}
.ws70{word-spacing:14.148000px;}
.ws6e{word-spacing:14.202000px;}
.ws6d{word-spacing:14.310000px;}
.ws6f{word-spacing:14.418000px;}
.ws71{word-spacing:14.526000px;}
.ws1e{word-spacing:14.580000px;}
.ws1d{word-spacing:14.634000px;}
.ws1c{word-spacing:14.688000px;}
.ws76{word-spacing:31.464000px;}
._2{margin-left:-2.191887px;}
._0{margin-left:-1.031976px;}
._1{width:1.263600px;}
._5{width:2.700000px;}
._8{width:3.737982px;}
._9{width:5.633838px;}
._7{width:6.888054px;}
._6{width:7.949982px;}
._a{width:9.288000px;}
._c{width:10.326000px;}
._d{width:12.088305px;}
._e{width:14.742000px;}
._10{width:15.876000px;}
._3{width:17.280000px;}
._4{width:18.461982px;}
._f{width:19.500018px;}
._b{width:1221.242160px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:74.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ydb{bottom:2.970000px;}
.yab{bottom:3.060000px;}
.y109{bottom:3.150000px;}
.ye0{bottom:3.240000px;}
.ye7{bottom:3.330000px;}
.y10c{bottom:10.980000px;}
.yfa{bottom:11.070000px;}
.ye9{bottom:11.100000px;}
.yb3{bottom:11.790000px;}
.yaf{bottom:11.880000px;}
.ybd{bottom:11.910000px;}
.yaa{bottom:18.540000px;}
.ydf{bottom:18.810000px;}
.yea{bottom:18.840000px;}
.yf5{bottom:26.910000px;}
.ye1{bottom:34.290000px;}
.yfe{bottom:34.320000px;}
.yf0{bottom:34.380000px;}
.ydd{bottom:34.650000px;}
.yfc{bottom:34.680000px;}
.ye5{bottom:34.740000px;}
.yb1{bottom:36.630000px;}
.ybb{bottom:36.660000px;}
.yad{bottom:36.720000px;}
.yf2{bottom:42.390000px;}
.yef{bottom:49.860000px;}
.yec{bottom:50.220000px;}
.yee{bottom:65.430000px;}
.y1{bottom:76.620000px;}
.y31{bottom:129.000000px;}
.y30{bottom:144.480000px;}
.y33{bottom:152.580000px;}
.y2f{bottom:160.140000px;}
.y2e{bottom:175.620000px;}
.y2d{bottom:191.190000px;}
.yc7{bottom:191.460000px;}
.y8a{bottom:192.000000px;}
.yf4{bottom:197.850000px;}
.y119{bottom:199.470000px;}
.y99{bottom:199.560000px;}
.y2c{bottom:206.670000px;}
.y89{bottom:207.540000px;}
.yf6{bottom:214.140000px;}
.y118{bottom:214.995000px;}
.y98{bottom:215.085000px;}
.y57{bottom:219.090000px;}
.yc5{bottom:220.170000px;}
.y2b{bottom:222.240000px;}
.y88{bottom:223.080000px;}
.y117{bottom:230.520000px;}
.y97{bottom:230.610000px;}
.y2a{bottom:237.720000px;}
.y104{bottom:237.900000px;}
.y87{bottom:238.620000px;}
.yc6{bottom:245.010000px;}
.y116{bottom:246.045000px;}
.y96{bottom:246.135000px;}
.y29{bottom:253.380000px;}
.y103{bottom:253.470000px;}
.yf1{bottom:261.480000px;}
.y115{bottom:261.570000px;}
.y95{bottom:261.660000px;}
.y28{bottom:268.860000px;}
.y102{bottom:268.950000px;}
.y86{bottom:269.760000px;}
.y114{bottom:277.095000px;}
.y94{bottom:277.185000px;}
.y27{bottom:284.430000px;}
.y85{bottom:286.410000px;}
.y113{bottom:292.620000px;}
.y93{bottom:292.710000px;}
.yc3{bottom:294.600000px;}
.y26{bottom:299.910000px;}
.y84{bottom:302.970000px;}
.y112{bottom:308.145000px;}
.y92{bottom:308.235000px;}
.yf3{bottom:308.730000px;}
.y25{bottom:315.480000px;}
.yc4{bottom:319.440000px;}
.y83{bottom:319.530000px;}
.y111{bottom:323.670000px;}
.y91{bottom:323.760000px;}
.y24{bottom:330.960000px;}
.y82{bottom:335.100000px;}
.y110{bottom:339.195000px;}
.yc2{bottom:344.280000px;}
.y23{bottom:346.530000px;}
.y81{bottom:350.670000px;}
.y10f{bottom:354.720000px;}
.y90{bottom:354.990000px;}
.yeb{bottom:356.070000px;}
.y22{bottom:362.010000px;}
.y80{bottom:366.240000px;}
.yc0{bottom:369.120000px;}
.y10e{bottom:370.245000px;}
.y21{bottom:377.490000px;}
.y7f{bottom:381.810000px;}
.y10d{bottom:385.770000px;}
.y20{bottom:393.060000px;}
.yc1{bottom:393.960000px;}
.y7e{bottom:397.290000px;}
.y1f{bottom:408.630000px;}
.y10b{bottom:414.480000px;}
.ybe{bottom:418.710000px;}
.y1e{bottom:424.200000px;}
.y7d{bottom:428.250000px;}
.yed{bottom:434.460000px;}
.y1d{bottom:439.680000px;}
.ybf{bottom:443.550000px;}
.y10a{bottom:446.250000px;}
.y1c{bottom:455.250000px;}
.y7c{bottom:459.570000px;}
.ye8{bottom:466.230000px;}
.yba{bottom:468.390000px;}
.y1b{bottom:470.730000px;}
.y7b{bottom:475.080000px;}
.y108{bottom:478.050000px;}
.y1a{bottom:486.330000px;}
.y7a{bottom:490.650000px;}
.ybc{bottom:493.260000px;}
.y107{bottom:497.850000px;}
.ye4{bottom:498.030000px;}
.y79{bottom:506.130000px;}
.y19{bottom:517.200000px;}
.yb8{bottom:518.100000px;}
.y78{bottom:521.700000px;}
.y106{bottom:529.080000px;}
.ye6{bottom:529.890000px;}
.y77{bottom:537.180000px;}
.yb9{bottom:542.940000px;}
.y105{bottom:544.560000px;}
.y76{bottom:552.750000px;}
.y18{bottom:563.460000px;}
.yb6{bottom:567.690000px;}
.y75{bottom:568.230000px;}
.ye2{bottom:577.230000px;}
.y74{bottom:583.800000px;}
.yb7{bottom:592.530000px;}
.y17{bottom:598.020000px;}
.y73{bottom:599.280000px;}
.ye3{bottom:609.000000px;}
.y16{bottom:613.590000px;}
.y72{bottom:614.850000px;}
.yb4{bottom:617.370000px;}
.y15{bottom:629.070000px;}
.y71{bottom:630.330000px;}
.y56{bottom:630.600000px;}
.yb5{bottom:642.210000px;}
.y14{bottom:644.640000px;}
.y70{bottom:645.900000px;}
.y55{bottom:646.080000px;}
.ydc{bottom:656.340000px;}
.y13{bottom:660.120000px;}
.y6f{bottom:661.380000px;}
.y54{bottom:661.650000px;}
.yb0{bottom:667.050000px;}
.y12{bottom:675.690000px;}
.y6e{bottom:676.950000px;}
.y53{bottom:677.130000px;}
.yde{bottom:688.110000px;}
.y11{bottom:691.170000px;}
.yb2{bottom:691.890000px;}
.y6d{bottom:692.430000px;}
.y52{bottom:692.700000px;}
.y10{bottom:706.740000px;}
.y6c{bottom:708.000000px;}
.y51{bottom:708.180000px;}
.yac{bottom:716.640000px;}
.y6b{bottom:723.480000px;}
.y126{bottom:723.570000px;}
.y50{bottom:723.660000px;}
.yf{bottom:728.970000px;}
.yda{bottom:735.450000px;}
.y6a{bottom:739.050000px;}
.y4f{bottom:739.320000px;}
.yae{bottom:741.480000px;}
.y69{bottom:754.530000px;}
.y125{bottom:754.620000px;}
.y4e{bottom:754.800000px;}
.yd9{bottom:754.980000px;}
.ye{bottom:755.700000px;}
.ya9{bottom:766.320000px;}
.y68{bottom:770.100000px;}
.y4d{bottom:770.370000px;}
.yd{bottom:771.270000px;}
.y67{bottom:785.580000px;}
.y124{bottom:785.670000px;}
.y4c{bottom:785.850000px;}
.yd8{bottom:786.210000px;}
.yc{bottom:786.840000px;}
.y66{bottom:801.150000px;}
.y4b{bottom:801.420000px;}
.yd7{bottom:801.690000px;}
.y65{bottom:816.630000px;}
.y123{bottom:816.720000px;}
.y4a{bottom:816.900000px;}
.yd6{bottom:817.260000px;}
.yb{bottom:821.400000px;}
.y122{bottom:832.200000px;}
.y49{bottom:832.470000px;}
.ya8{bottom:832.650000px;}
.yd5{bottom:832.740000px;}
.ya{bottom:843.000000px;}
.y64{bottom:847.410000px;}
.y121{bottom:847.770000px;}
.y48{bottom:847.950000px;}
.ya7{bottom:848.130000px;}
.yd4{bottom:848.310000px;}
.y120{bottom:863.250000px;}
.y47{bottom:863.520000px;}
.ya6{bottom:863.610000px;}
.yd3{bottom:863.790000px;}
.y9{bottom:873.960000px;}
.y63{bottom:878.550000px;}
.y11f{bottom:878.820000px;}
.y46{bottom:879.090000px;}
.ya5{bottom:879.180000px;}
.yd2{bottom:879.360000px;}
.y100{bottom:886.290000px;}
.y45{bottom:894.660000px;}
.yd1{bottom:894.840000px;}
.y11e{bottom:909.600000px;}
.y62{bottom:909.870000px;}
.y44{bottom:910.140000px;}
.ya4{bottom:910.320000px;}
.yd0{bottom:910.410000px;}
.y8{bottom:912.390000px;}
.y101{bottom:918.150000px;}
.y61{bottom:925.530000px;}
.y43{bottom:925.710000px;}
.ya3{bottom:925.800000px;}
.ycf{bottom:925.890000px;}
.y60{bottom:941.010000px;}
.y42{bottom:941.190000px;}
.ya2{bottom:941.370000px;}
.yce{bottom:941.460000px;}
.y7{bottom:951.360000px;}
.y41{bottom:956.670000px;}
.ya1{bottom:956.850000px;}
.ycd{bottom:956.940000px;}
.yff{bottom:965.400000px;}
.y5f{bottom:972.150000px;}
.y40{bottom:972.330000px;}
.ya0{bottom:972.420000px;}
.ycc{bottom:972.510000px;}
.y11d{bottom:987.720000px;}
.y3f{bottom:987.810000px;}
.y9f{bottom:987.900000px;}
.ycb{bottom:987.990000px;}
.yfb{bottom:997.260000px;}
.y11c{bottom:1003.200000px;}
.y5e{bottom:1003.290000px;}
.y3e{bottom:1003.380000px;}
.y9e{bottom:1003.470000px;}
.yca{bottom:1003.560000px;}
.y11b{bottom:1018.710000px;}
.y5d{bottom:1018.800000px;}
.y3d{bottom:1018.890000px;}
.y9d{bottom:1018.980000px;}
.yc9{bottom:1019.070000px;}
.y4{bottom:1030.500000px;}
.y3c{bottom:1034.460000px;}
.y9c{bottom:1034.550000px;}
.y6{bottom:1039.140000px;}
.yfd{bottom:1044.540000px;}
.y11a{bottom:1049.670000px;}
.y3b{bottom:1049.940000px;}
.y9b{bottom:1050.030000px;}
.yc8{bottom:1050.120000px;}
.y5{bottom:1055.520000px;}
.y3{bottom:1058.670000px;}
.y3a{bottom:1065.510000px;}
.y5c{bottom:1065.600000px;}
.yf9{bottom:1076.400000px;}
.y39{bottom:1080.990000px;}
.y5b{bottom:1081.080000px;}
.y9a{bottom:1081.170000px;}
.y8f{bottom:1091.520000px;}
.y38{bottom:1096.560000px;}
.y5a{bottom:1096.650000px;}
.y8e{bottom:1108.080000px;}
.yf8{bottom:1108.170000px;}
.y37{bottom:1112.130000px;}
.y59{bottom:1112.220000px;}
.y8d{bottom:1124.640000px;}
.y36{bottom:1127.610000px;}
.y58{bottom:1127.700000px;}
.y8c{bottom:1141.200000px;}
.y35{bottom:1143.270000px;}
.yf7{bottom:1155.510000px;}
.y8b{bottom:1157.760000px;}
.y2{bottom:1157.940000px;}
.y34{bottom:1158.750000px;}
.y32{bottom:1193.670000px;}
.h15{height:15.480000px;}
.h22{height:15.750000px;}
.h12{height:24.030000px;}
.h10{height:24.120000px;}
.h14{height:24.142500px;}
.he{height:31.050000px;}
.h19{height:31.072500px;}
.ha{height:35.314453px;}
.h1b{height:37.705078px;}
.h23{height:44.520469px;}
.h17{height:46.530000px;}
.h21{height:46.560000px;}
.h1e{height:46.620000px;}
.h11{height:48.870000px;}
.h13{height:48.892500px;}
.hf{height:48.960000px;}
.h9{height:52.971680px;}
.hc{height:52.998047px;}
.hb{height:54.421875px;}
.h6{height:55.796836px;}
.h5{height:57.324375px;}
.hd{height:59.452031px;}
.h1f{height:62.820000px;}
.h2{height:64.657617px;}
.h8{height:72.329063px;}
.h3{height:72.562500px;}
.h4{height:75.465000px;}
.h1c{height:77.670000px;}
.h16{height:78.300000px;}
.h20{height:78.330000px;}
.h18{height:78.390000px;}
.h7{height:84.535312px;}
.h1d{height:93.870000px;}
.h1a{height:109.440000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w8{width:134.670000px;}
.wb{width:135.990000px;}
.wc{width:136.020000px;}
.wa{width:142.672500px;}
.w9{width:149.310000px;}
.w7{width:152.010000px;}
.w6{width:155.640000px;}
.w5{width:157.855500px;}
.w4{width:162.570000px;}
.w3{width:238.980000px;}
.w2{width:244.738500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x16{left:7.768500px;}
.x28{left:9.570000px;}
.x2c{left:11.070000px;}
.x35{left:12.780000px;}
.x3a{left:14.430000px;}
.x40{left:16.500000px;}
.x2a{left:17.910000px;}
.x38{left:19.170000px;}
.x2f{left:21.060000px;}
.x30{left:22.410000px;}
.x3f{left:25.020000px;}
.x32{left:26.490000px;}
.x33{left:27.570000px;}
.x34{left:29.070000px;}
.x41{left:31.410000px;}
.x3c{left:33.390000px;}
.x22{left:36.535500px;}
.x2e{left:38.790000px;}
.x2d{left:40.950000px;}
.x31{left:42.565500px;}
.x3d{left:43.650000px;}
.x3b{left:44.820000px;}
.x26{left:46.170000px;}
.x24{left:48.150000px;}
.x42{left:50.040000px;}
.x37{left:51.570000px;}
.x3e{left:52.645500px;}
.x36{left:54.175500px;}
.x39{left:56.340000px;}
.x29{left:60.115500px;}
.x8{left:61.920000px;}
.xb{left:63.007500px;}
.x1f{left:65.908500px;}
.x2b{left:68.610000px;}
.x45{left:73.530000px;}
.x43{left:81.900000px;}
.xd{left:83.970000px;}
.x1a{left:85.978500px;}
.x11{left:88.920000px;}
.x1b{left:92.368500px;}
.x1d{left:96.148500px;}
.x1c{left:97.588500px;}
.x1e{left:100.648500px;}
.x19{left:103.618500px;}
.x15{left:111.511500px;}
.x6{left:117.660000px;}
.x13{left:122.610000px;}
.x21{left:134.404500px;}
.x47{left:152.490000px;}
.x7{left:176.790000px;}
.xe{left:182.640000px;}
.x4{left:199.830000px;}
.x3{left:207.480000px;}
.x20{left:208.650000px;}
.x46{left:214.950000px;}
.x14{left:236.460000px;}
.x44{left:275.610000px;}
.x2{left:277.860000px;}
.x23{left:292.620000px;}
.x48{left:302.160000px;}
.xf{left:345.180000px;}
.x10{left:348.510000px;}
.x17{left:356.610000px;}
.xa{left:384.540000px;}
.x4b{left:392.550000px;}
.x9{left:394.170000px;}
.xc{left:422.610000px;}
.x12{left:426.010500px;}
.x1{left:440.610000px;}
.x49{left:445.200000px;}
.x25{left:448.620000px;}
.x5{left:478.950000px;}
.x4a{left:581.550000px;}
.x18{left:595.950000px;}
.x27{left:600.990000px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.v1{vertical-align:26.560000pt;}
.ls20{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.024533pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls1b{letter-spacing:-0.010667pt;}
.ls1c{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005333pt;}
.ls1a{letter-spacing:0.010667pt;}
.ls18{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.026576pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.080533pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.123733pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.175979pt;}
.ls1e{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.495995pt;}
.lsf{letter-spacing:1.760000pt;}
.ls2{letter-spacing:2.080000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls14{letter-spacing:74.026667pt;}
.ws1{word-spacing:-33.187840pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.640000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.ws35{word-spacing:-12.224000pt;}
.wsa{word-spacing:-12.128000pt;}
.ws36{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.872000pt;}
.wse{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.776000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws10{word-spacing:-0.880000pt;}
.wsc{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.138667pt;}
.wsd{word-spacing:0.000000pt;}
.wsf{word-spacing:0.080000pt;}
.ws22{word-spacing:0.096000pt;}
.ws24{word-spacing:0.144000pt;}
.ws20{word-spacing:0.160000pt;}
.ws48{word-spacing:0.192000pt;}
.ws23{word-spacing:0.208000pt;}
.ws1f{word-spacing:0.240000pt;}
.ws21{word-spacing:0.304000pt;}
.ws4e{word-spacing:0.720000pt;}
.ws4c{word-spacing:0.816000pt;}
.ws4f{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.104000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws49{word-spacing:1.200000pt;}
.ws4b{word-spacing:1.578667pt;}
.ws43{word-spacing:1.824000pt;}
.ws44{word-spacing:2.016000pt;}
.ws47{word-spacing:2.064000pt;}
.ws46{word-spacing:2.112000pt;}
.ws45{word-spacing:2.160000pt;}
.ws6a{word-spacing:2.256000pt;}
.ws6c{word-spacing:2.352000pt;}
.ws6b{word-spacing:2.400000pt;}
.ws61{word-spacing:2.448000pt;}
.ws62{word-spacing:2.496000pt;}
.ws1a{word-spacing:2.544000pt;}
.ws64{word-spacing:2.592000pt;}
.ws63{word-spacing:2.640000pt;}
.ws17{word-spacing:2.688000pt;}
.ws60{word-spacing:2.736000pt;}
.ws5f{word-spacing:2.784000pt;}
.ws1b{word-spacing:2.832000pt;}
.ws16{word-spacing:2.880000pt;}
.ws18{word-spacing:2.928000pt;}
.ws15{word-spacing:3.024000pt;}
.ws14{word-spacing:3.088000pt;}
.ws19{word-spacing:3.120000pt;}
.ws72{word-spacing:3.312000pt;}
.ws73{word-spacing:3.504000pt;}
.ws5c{word-spacing:3.648000pt;}
.ws34{word-spacing:3.706667pt;}
.ws5b{word-spacing:3.744000pt;}
.ws58{word-spacing:3.792000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws59{word-spacing:3.936000pt;}
.ws77{word-spacing:3.952000pt;}
.ws57{word-spacing:3.984000pt;}
.ws5e{word-spacing:4.032000pt;}
.ws5a{word-spacing:4.080000pt;}
.ws66{word-spacing:4.704000pt;}
.ws68{word-spacing:4.896000pt;}
.ws67{word-spacing:4.944000pt;}
.ws65{word-spacing:4.992000pt;}
.ws69{word-spacing:5.040000pt;}
.ws2d{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.136000pt;}
.ws29{word-spacing:5.232000pt;}
.ws2a{word-spacing:5.280000pt;}
.ws2c{word-spacing:5.328000pt;}
.ws33{word-spacing:5.568000pt;}
.ws2f{word-spacing:5.664000pt;}
.ws2e{word-spacing:5.856000pt;}
.ws31{word-spacing:5.904000pt;}
.ws32{word-spacing:5.920000pt;}
.ws30{word-spacing:5.952000pt;}
.ws55{word-spacing:6.720000pt;}
.ws53{word-spacing:6.864000pt;}
.ws50{word-spacing:7.056000pt;}
.ws52{word-spacing:7.152000pt;}
.ws51{word-spacing:7.200000pt;}
.ws56{word-spacing:7.248000pt;}
.ws54{word-spacing:7.296000pt;}
.ws38{word-spacing:8.976000pt;}
.ws28{word-spacing:9.024000pt;}
.ws26{word-spacing:9.072000pt;}
.ws39{word-spacing:9.120000pt;}
.ws25{word-spacing:9.168000pt;}
.ws27{word-spacing:9.216000pt;}
.ws37{word-spacing:9.232000pt;}
.ws3c{word-spacing:9.242667pt;}
.ws3d{word-spacing:9.248000pt;}
.ws3b{word-spacing:9.418667pt;}
.ws3a{word-spacing:9.546667pt;}
.ws3f{word-spacing:9.600000pt;}
.ws42{word-spacing:9.696000pt;}
.ws41{word-spacing:9.744000pt;}
.ws3e{word-spacing:9.792000pt;}
.ws40{word-spacing:9.840000pt;}
.ws74{word-spacing:11.712000pt;}
.ws75{word-spacing:12.096000pt;}
.ws70{word-spacing:12.576000pt;}
.ws6e{word-spacing:12.624000pt;}
.ws6d{word-spacing:12.720000pt;}
.ws6f{word-spacing:12.816000pt;}
.ws71{word-spacing:12.912000pt;}
.ws1e{word-spacing:12.960000pt;}
.ws1d{word-spacing:13.008000pt;}
.ws1c{word-spacing:13.056000pt;}
.ws76{word-spacing:27.968000pt;}
._2{margin-left:-1.948344pt;}
._0{margin-left:-0.917312pt;}
._1{width:1.123200pt;}
._5{width:2.400000pt;}
._8{width:3.322651pt;}
._9{width:5.007856pt;}
._7{width:6.122715pt;}
._6{width:7.066651pt;}
._a{width:8.256000pt;}
._c{width:9.178667pt;}
._d{width:10.745160pt;}
._e{width:13.104000pt;}
._10{width:14.112000pt;}
._3{width:15.360000pt;}
._4{width:16.410651pt;}
._f{width:17.333349pt;}
._b{width:1085.548587pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:2.640000pt;}
.yab{bottom:2.720000pt;}
.y109{bottom:2.800000pt;}
.ye0{bottom:2.880000pt;}
.ye7{bottom:2.960000pt;}
.y10c{bottom:9.760000pt;}
.yfa{bottom:9.840000pt;}
.ye9{bottom:9.866667pt;}
.yb3{bottom:10.480000pt;}
.yaf{bottom:10.560000pt;}
.ybd{bottom:10.586667pt;}
.yaa{bottom:16.480000pt;}
.ydf{bottom:16.720000pt;}
.yea{bottom:16.746667pt;}
.yf5{bottom:23.920000pt;}
.ye1{bottom:30.480000pt;}
.yfe{bottom:30.506667pt;}
.yf0{bottom:30.560000pt;}
.ydd{bottom:30.800000pt;}
.yfc{bottom:30.826667pt;}
.ye5{bottom:30.880000pt;}
.yb1{bottom:32.560000pt;}
.ybb{bottom:32.586667pt;}
.yad{bottom:32.640000pt;}
.yf2{bottom:37.680000pt;}
.yef{bottom:44.320000pt;}
.yec{bottom:44.640000pt;}
.yee{bottom:58.160000pt;}
.y1{bottom:68.106667pt;}
.y31{bottom:114.666667pt;}
.y30{bottom:128.426667pt;}
.y33{bottom:135.626667pt;}
.y2f{bottom:142.346667pt;}
.y2e{bottom:156.106667pt;}
.y2d{bottom:169.946667pt;}
.yc7{bottom:170.186667pt;}
.y8a{bottom:170.666667pt;}
.yf4{bottom:175.866667pt;}
.y119{bottom:177.306667pt;}
.y99{bottom:177.386667pt;}
.y2c{bottom:183.706667pt;}
.y89{bottom:184.480000pt;}
.yf6{bottom:190.346667pt;}
.y118{bottom:191.106667pt;}
.y98{bottom:191.186667pt;}
.y57{bottom:194.746667pt;}
.yc5{bottom:195.706667pt;}
.y2b{bottom:197.546667pt;}
.y88{bottom:198.293333pt;}
.y117{bottom:204.906667pt;}
.y97{bottom:204.986667pt;}
.y2a{bottom:211.306667pt;}
.y104{bottom:211.466667pt;}
.y87{bottom:212.106667pt;}
.yc6{bottom:217.786667pt;}
.y116{bottom:218.706667pt;}
.y96{bottom:218.786667pt;}
.y29{bottom:225.226667pt;}
.y103{bottom:225.306667pt;}
.yf1{bottom:232.426667pt;}
.y115{bottom:232.506667pt;}
.y95{bottom:232.586667pt;}
.y28{bottom:238.986667pt;}
.y102{bottom:239.066667pt;}
.y86{bottom:239.786667pt;}
.y114{bottom:246.306667pt;}
.y94{bottom:246.386667pt;}
.y27{bottom:252.826667pt;}
.y85{bottom:254.586667pt;}
.y113{bottom:260.106667pt;}
.y93{bottom:260.186667pt;}
.yc3{bottom:261.866667pt;}
.y26{bottom:266.586667pt;}
.y84{bottom:269.306667pt;}
.y112{bottom:273.906667pt;}
.y92{bottom:273.986667pt;}
.yf3{bottom:274.426667pt;}
.y25{bottom:280.426667pt;}
.yc4{bottom:283.946667pt;}
.y83{bottom:284.026667pt;}
.y111{bottom:287.706667pt;}
.y91{bottom:287.786667pt;}
.y24{bottom:294.186667pt;}
.y82{bottom:297.866667pt;}
.y110{bottom:301.506667pt;}
.yc2{bottom:306.026667pt;}
.y23{bottom:308.026667pt;}
.y81{bottom:311.706667pt;}
.y10f{bottom:315.306667pt;}
.y90{bottom:315.546667pt;}
.yeb{bottom:316.506667pt;}
.y22{bottom:321.786667pt;}
.y80{bottom:325.546667pt;}
.yc0{bottom:328.106667pt;}
.y10e{bottom:329.106667pt;}
.y21{bottom:335.546667pt;}
.y7f{bottom:339.386667pt;}
.y10d{bottom:342.906667pt;}
.y20{bottom:349.386667pt;}
.yc1{bottom:350.186667pt;}
.y7e{bottom:353.146667pt;}
.y1f{bottom:363.226667pt;}
.y10b{bottom:368.426667pt;}
.ybe{bottom:372.186667pt;}
.y1e{bottom:377.066667pt;}
.y7d{bottom:380.666667pt;}
.yed{bottom:386.186667pt;}
.y1d{bottom:390.826667pt;}
.ybf{bottom:394.266667pt;}
.y10a{bottom:396.666667pt;}
.y1c{bottom:404.666667pt;}
.y7c{bottom:408.506667pt;}
.ye8{bottom:414.426667pt;}
.yba{bottom:416.346667pt;}
.y1b{bottom:418.426667pt;}
.y7b{bottom:422.293333pt;}
.y108{bottom:424.933333pt;}
.y1a{bottom:432.293333pt;}
.y7a{bottom:436.133333pt;}
.ybc{bottom:438.453333pt;}
.y107{bottom:442.533333pt;}
.ye4{bottom:442.693333pt;}
.y79{bottom:449.893333pt;}
.y19{bottom:459.733333pt;}
.yb8{bottom:460.533333pt;}
.y78{bottom:463.733333pt;}
.y106{bottom:470.293333pt;}
.ye6{bottom:471.013333pt;}
.y77{bottom:477.493333pt;}
.yb9{bottom:482.613333pt;}
.y105{bottom:484.053333pt;}
.y76{bottom:491.333333pt;}
.y18{bottom:500.853333pt;}
.yb6{bottom:504.613333pt;}
.y75{bottom:505.093333pt;}
.ye2{bottom:513.093333pt;}
.y74{bottom:518.933333pt;}
.yb7{bottom:526.693333pt;}
.y17{bottom:531.573333pt;}
.y73{bottom:532.693333pt;}
.ye3{bottom:541.333333pt;}
.y16{bottom:545.413333pt;}
.y72{bottom:546.533333pt;}
.yb4{bottom:548.773333pt;}
.y15{bottom:559.173333pt;}
.y71{bottom:560.293333pt;}
.y56{bottom:560.533333pt;}
.yb5{bottom:570.853333pt;}
.y14{bottom:573.013333pt;}
.y70{bottom:574.133333pt;}
.y55{bottom:574.293333pt;}
.ydc{bottom:583.413333pt;}
.y13{bottom:586.773333pt;}
.y6f{bottom:587.893333pt;}
.y54{bottom:588.133333pt;}
.yb0{bottom:592.933333pt;}
.y12{bottom:600.613333pt;}
.y6e{bottom:601.733333pt;}
.y53{bottom:601.893333pt;}
.yde{bottom:611.653333pt;}
.y11{bottom:614.373333pt;}
.yb2{bottom:615.013333pt;}
.y6d{bottom:615.493333pt;}
.y52{bottom:615.733333pt;}
.y10{bottom:628.213333pt;}
.y6c{bottom:629.333333pt;}
.y51{bottom:629.493333pt;}
.yac{bottom:637.013333pt;}
.y6b{bottom:643.093333pt;}
.y126{bottom:643.173333pt;}
.y50{bottom:643.253333pt;}
.yf{bottom:647.973333pt;}
.yda{bottom:653.733333pt;}
.y6a{bottom:656.933333pt;}
.y4f{bottom:657.173333pt;}
.yae{bottom:659.093333pt;}
.y69{bottom:670.693333pt;}
.y125{bottom:670.773333pt;}
.y4e{bottom:670.933333pt;}
.yd9{bottom:671.093333pt;}
.ye{bottom:671.733333pt;}
.ya9{bottom:681.173333pt;}
.y68{bottom:684.533333pt;}
.y4d{bottom:684.773333pt;}
.yd{bottom:685.573333pt;}
.y67{bottom:698.293333pt;}
.y124{bottom:698.373333pt;}
.y4c{bottom:698.533333pt;}
.yd8{bottom:698.853333pt;}
.yc{bottom:699.413333pt;}
.y66{bottom:712.133333pt;}
.y4b{bottom:712.373333pt;}
.yd7{bottom:712.613333pt;}
.y65{bottom:725.893333pt;}
.y123{bottom:725.973333pt;}
.y4a{bottom:726.133333pt;}
.yd6{bottom:726.453333pt;}
.yb{bottom:730.133333pt;}
.y122{bottom:739.733333pt;}
.y49{bottom:739.973333pt;}
.ya8{bottom:740.133333pt;}
.yd5{bottom:740.213333pt;}
.ya{bottom:749.333333pt;}
.y64{bottom:753.253333pt;}
.y121{bottom:753.573333pt;}
.y48{bottom:753.733333pt;}
.ya7{bottom:753.893333pt;}
.yd4{bottom:754.053333pt;}
.y120{bottom:767.333333pt;}
.y47{bottom:767.573333pt;}
.ya6{bottom:767.653333pt;}
.yd3{bottom:767.813333pt;}
.y9{bottom:776.853333pt;}
.y63{bottom:780.933333pt;}
.y11f{bottom:781.173333pt;}
.y46{bottom:781.413333pt;}
.ya5{bottom:781.493333pt;}
.yd2{bottom:781.653333pt;}
.y100{bottom:787.813333pt;}
.y45{bottom:795.253333pt;}
.yd1{bottom:795.413333pt;}
.y11e{bottom:808.533333pt;}
.y62{bottom:808.773333pt;}
.y44{bottom:809.013333pt;}
.ya4{bottom:809.173333pt;}
.yd0{bottom:809.253333pt;}
.y8{bottom:811.013333pt;}
.y101{bottom:816.133333pt;}
.y61{bottom:822.693333pt;}
.y43{bottom:822.853333pt;}
.ya3{bottom:822.933333pt;}
.ycf{bottom:823.013333pt;}
.y60{bottom:836.453333pt;}
.y42{bottom:836.613333pt;}
.ya2{bottom:836.773333pt;}
.yce{bottom:836.853333pt;}
.y7{bottom:845.653333pt;}
.y41{bottom:850.373333pt;}
.ya1{bottom:850.533333pt;}
.ycd{bottom:850.613333pt;}
.yff{bottom:858.133333pt;}
.y5f{bottom:864.133333pt;}
.y40{bottom:864.293333pt;}
.ya0{bottom:864.373333pt;}
.ycc{bottom:864.453333pt;}
.y11d{bottom:877.973333pt;}
.y3f{bottom:878.053333pt;}
.y9f{bottom:878.133333pt;}
.ycb{bottom:878.213333pt;}
.yfb{bottom:886.453333pt;}
.y11c{bottom:891.733333pt;}
.y5e{bottom:891.813333pt;}
.y3e{bottom:891.893333pt;}
.y9e{bottom:891.973333pt;}
.yca{bottom:892.053333pt;}
.y11b{bottom:905.520000pt;}
.y5d{bottom:905.600000pt;}
.y3d{bottom:905.680000pt;}
.y9d{bottom:905.760000pt;}
.yc9{bottom:905.840000pt;}
.y4{bottom:916.000000pt;}
.y3c{bottom:919.520000pt;}
.y9c{bottom:919.600000pt;}
.y6{bottom:923.680000pt;}
.yfd{bottom:928.480000pt;}
.y11a{bottom:933.040000pt;}
.y3b{bottom:933.280000pt;}
.y9b{bottom:933.360000pt;}
.yc8{bottom:933.440000pt;}
.y5{bottom:938.240000pt;}
.y3{bottom:941.040000pt;}
.y3a{bottom:947.120000pt;}
.y5c{bottom:947.200000pt;}
.yf9{bottom:956.800000pt;}
.y39{bottom:960.880000pt;}
.y5b{bottom:960.960000pt;}
.y9a{bottom:961.040000pt;}
.y8f{bottom:970.240000pt;}
.y38{bottom:974.720000pt;}
.y5a{bottom:974.800000pt;}
.y8e{bottom:984.960000pt;}
.yf8{bottom:985.040000pt;}
.y37{bottom:988.560000pt;}
.y59{bottom:988.640000pt;}
.y8d{bottom:999.680000pt;}
.y36{bottom:1002.320000pt;}
.y58{bottom:1002.400000pt;}
.y8c{bottom:1014.400000pt;}
.y35{bottom:1016.240000pt;}
.yf7{bottom:1027.120000pt;}
.y8b{bottom:1029.120000pt;}
.y2{bottom:1029.280000pt;}
.y34{bottom:1030.000000pt;}
.y32{bottom:1061.040000pt;}
.h15{height:13.760000pt;}
.h22{height:14.000000pt;}
.h12{height:21.360000pt;}
.h10{height:21.440000pt;}
.h14{height:21.460000pt;}
.he{height:27.600000pt;}
.h19{height:27.620000pt;}
.ha{height:31.390625pt;}
.h1b{height:33.515625pt;}
.h23{height:39.573750pt;}
.h17{height:41.360000pt;}
.h21{height:41.386667pt;}
.h1e{height:41.440000pt;}
.h11{height:43.440000pt;}
.h13{height:43.460000pt;}
.hf{height:43.520000pt;}
.h9{height:47.085938pt;}
.hc{height:47.109375pt;}
.hb{height:48.375000pt;}
.h6{height:49.597187pt;}
.h5{height:50.955000pt;}
.hd{height:52.846250pt;}
.h1f{height:55.840000pt;}
.h2{height:57.473437pt;}
.h8{height:64.292500pt;}
.h3{height:64.500000pt;}
.h4{height:67.080000pt;}
.h1c{height:69.040000pt;}
.h16{height:69.600000pt;}
.h20{height:69.626667pt;}
.h18{height:69.680000pt;}
.h7{height:75.142500pt;}
.h1d{height:83.440000pt;}
.h1a{height:97.280000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w8{width:119.706667pt;}
.wb{width:120.880000pt;}
.wc{width:120.906667pt;}
.wa{width:126.820000pt;}
.w9{width:132.720000pt;}
.w7{width:135.120000pt;}
.w6{width:138.346667pt;}
.w5{width:140.316000pt;}
.w4{width:144.506667pt;}
.w3{width:212.426667pt;}
.w2{width:217.545333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x16{left:6.905333pt;}
.x28{left:8.506667pt;}
.x2c{left:9.840000pt;}
.x35{left:11.360000pt;}
.x3a{left:12.826667pt;}
.x40{left:14.666667pt;}
.x2a{left:15.920000pt;}
.x38{left:17.040000pt;}
.x2f{left:18.720000pt;}
.x30{left:19.920000pt;}
.x3f{left:22.240000pt;}
.x32{left:23.546667pt;}
.x33{left:24.506667pt;}
.x34{left:25.840000pt;}
.x41{left:27.920000pt;}
.x3c{left:29.680000pt;}
.x22{left:32.476000pt;}
.x2e{left:34.480000pt;}
.x2d{left:36.400000pt;}
.x31{left:37.836000pt;}
.x3d{left:38.800000pt;}
.x3b{left:39.840000pt;}
.x26{left:41.040000pt;}
.x24{left:42.800000pt;}
.x42{left:44.480000pt;}
.x37{left:45.840000pt;}
.x3e{left:46.796000pt;}
.x36{left:48.156000pt;}
.x39{left:50.080000pt;}
.x29{left:53.436000pt;}
.x8{left:55.040000pt;}
.xb{left:56.006667pt;}
.x1f{left:58.585333pt;}
.x2b{left:60.986667pt;}
.x45{left:65.360000pt;}
.x43{left:72.800000pt;}
.xd{left:74.640000pt;}
.x1a{left:76.425333pt;}
.x11{left:79.040000pt;}
.x1b{left:82.105333pt;}
.x1d{left:85.465333pt;}
.x1c{left:86.745333pt;}
.x1e{left:89.465333pt;}
.x19{left:92.105333pt;}
.x15{left:99.121333pt;}
.x6{left:104.586667pt;}
.x13{left:108.986667pt;}
.x21{left:119.470667pt;}
.x47{left:135.546667pt;}
.x7{left:157.146667pt;}
.xe{left:162.346667pt;}
.x4{left:177.626667pt;}
.x3{left:184.426667pt;}
.x20{left:185.466667pt;}
.x46{left:191.066667pt;}
.x14{left:210.186667pt;}
.x44{left:244.986667pt;}
.x2{left:246.986667pt;}
.x23{left:260.106667pt;}
.x48{left:268.586667pt;}
.xf{left:306.826667pt;}
.x10{left:309.786667pt;}
.x17{left:316.986667pt;}
.xa{left:341.813333pt;}
.x4b{left:348.933333pt;}
.x9{left:350.373333pt;}
.xc{left:375.653333pt;}
.x12{left:378.676000pt;}
.x1{left:391.653333pt;}
.x49{left:395.733333pt;}
.x25{left:398.773333pt;}
.x5{left:425.733333pt;}
.x4a{left:516.933333pt;}
.x18{left:529.733333pt;}
.x27{left:534.213333pt;}
}




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