
    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_afc389654fdb4dc96a751431.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_6c31160b68e04090b29e05a8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_17d553155c03394738bd4384.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900879;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_5468c4a95760ff55bb3a9efd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_1419026c2711a4ea21d29306.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_e6da0ef3311742d0bc849dab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.912598;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_ba02f3501eefb0118bcabb7a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.674316;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_074dd09409a66a722dc816a2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_a4f3e5ed1ad3d76983960a10.woff')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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_704fc0fdd1bc8fe46691e091.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919434;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_5075b8735306df0a22483369.woff')format("woff");}.ffb{font-family:ffb;line-height:0.760254;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_04e07d2c857c5b60985c4395.woff')format("woff");}.ffc{font-family:ffc;line-height:0.882812;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_32e999fa10fb41c7fcb7b952.woff')format("woff");}.ffd{font-family:ffd;line-height:0.674316;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_0ee0fdac5eaf87b85b347798.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919434;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_d4624709e4cf2df4bc2c2964.woff')format("woff");}.fff{font-family:fff;line-height:0.771484;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_73d77a156e1a05de20796f51.woff')format("woff");}.ff10{font-family:ff10;line-height:0.882812;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_75b628d160a8e510b8f1fadc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_37f0ead12c69bbbad3254745.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_4a3d5ba4dc307178370541b0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.927734;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_d11f519c926749b5bc363a62.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_cb8f32672bae1ca617ddffb6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_f1d4a68323768f3d7194efb0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.927734;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_b03d9ac6f59d32a6685bc20e.woff')format("woff");}.ff17{font-family:ff17;line-height:0.682129;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_21bd82c9936ce2c3d4f867c9.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsc{letter-spacing:-0.450432px;}
.ls17{letter-spacing:-0.314496px;}
.ls16{letter-spacing:-0.278208px;}
.ls11{letter-spacing:-0.260064px;}
.ls2d{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.153913px;}
.ls35{letter-spacing:-0.152352px;}
.ls14{letter-spacing:-0.145728px;}
.ls2e{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.099360px;}
.ls2f{letter-spacing:-0.078624px;}
.ls15{letter-spacing:-0.046368px;}
.ls10{letter-spacing:-0.028800px;}
.lsa{letter-spacing:-0.021600px;}
.ls13{letter-spacing:-0.014400px;}
.ls12{letter-spacing:-0.007200px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.001440px;}
.ls5{letter-spacing:0.005616px;}
.ls4{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.010800px;}
.ls18{letter-spacing:0.021600px;}
.ls36{letter-spacing:0.028800px;}
.ls9{letter-spacing:0.032400px;}
.ls3a{letter-spacing:0.054432px;}
.ls7{letter-spacing:0.061776px;}
.ls4f{letter-spacing:0.062208px;}
.ls3d{letter-spacing:0.069552px;}
.ls21{letter-spacing:0.069984px;}
.ls4a{letter-spacing:0.070560px;}
.ls1f{letter-spacing:0.077760px;}
.ls2b{letter-spacing:0.078912px;}
.ls4e{letter-spacing:0.080640px;}
.ls52{letter-spacing:0.081936px;}
.ls23{letter-spacing:0.082080px;}
.ls20{letter-spacing:0.082224px;}
.ls51{letter-spacing:0.083520px;}
.ls1d{letter-spacing:0.085536px;}
.ls3{letter-spacing:0.086832px;}
.ls31{letter-spacing:0.090288px;}
.ls48{letter-spacing:0.093312px;}
.ls38{letter-spacing:0.101088px;}
.ls1e{letter-spacing:0.108864px;}
.ls1b{letter-spacing:0.116640px;}
.ls43{letter-spacing:0.119952px;}
.ls24{letter-spacing:0.120960px;}
.ls1a{letter-spacing:0.124416px;}
.ls1c{letter-spacing:0.132192px;}
.ls2a{letter-spacing:0.139104px;}
.ls29{letter-spacing:0.139968px;}
.ls3c{letter-spacing:0.142128px;}
.ls3b{letter-spacing:0.153216px;}
.ls25{letter-spacing:0.155520px;}
.ls4c{letter-spacing:0.163296px;}
.ls39{letter-spacing:0.171072px;}
.ls37{letter-spacing:0.178848px;}
.ls4b{letter-spacing:0.202176px;}
.ls53{letter-spacing:0.217728px;}
.lse{letter-spacing:0.225504px;}
.ls30{letter-spacing:0.237600px;}
.ls32{letter-spacing:0.256608px;}
.ls33{letter-spacing:0.327888px;}
.ls34{letter-spacing:0.346896px;}
.ls3f{letter-spacing:0.693648px;}
.ls40{letter-spacing:0.695520px;}
.ls1{letter-spacing:2.096471px;}
.lsd{letter-spacing:2.138823px;}
.ls2{letter-spacing:2.160000px;}
.ls41{letter-spacing:6.755184px;}
.ls44{letter-spacing:7.005600px;}
.ls27{letter-spacing:8.398080px;}
.ls26{letter-spacing:8.398656px;}
.ls3e{letter-spacing:9.159840px;}
.ls28{letter-spacing:9.606240px;}
.ls49{letter-spacing:11.952000px;}
.ls45{letter-spacing:13.604544px;}
.ls42{letter-spacing:15.563232px;}
.ls22{letter-spacing:24.412320px;}
.ls46{letter-spacing:30.060864px;}
.ls2c{letter-spacing:34.477920px;}
.ls47{letter-spacing:37.857600px;}
.ls50{letter-spacing:95.307984px;}
.ls4d{letter-spacing:138.497472px;}
.ls6{letter-spacing:849.427200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-14.878080px;}
.ws1d{word-spacing:-14.841792px;}
.ws1e{word-spacing:-12.136608px;}
.ws45{word-spacing:-9.684000px;}
.ws8{word-spacing:-2.265882px;}
.ws9{word-spacing:-2.244706px;}
.ws7{word-spacing:-2.202353px;}
.wsa{word-spacing:-0.309024px;}
.ws78{word-spacing:-0.295488px;}
.ws4f{word-spacing:-0.279936px;}
.ws44{word-spacing:-0.256608px;}
.ws4d{word-spacing:-0.248832px;}
.ws50{word-spacing:-0.241056px;}
.ws43{word-spacing:-0.233280px;}
.ws46{word-spacing:-0.217728px;}
.ws2b{word-spacing:-0.209952px;}
.ws2c{word-spacing:-0.202176px;}
.ws2d{word-spacing:-0.194400px;}
.ws33{word-spacing:-0.186624px;}
.ws38{word-spacing:-0.178848px;}
.ws4e{word-spacing:-0.163296px;}
.ws77{word-spacing:-0.159840px;}
.ws34{word-spacing:-0.155520px;}
.ws39{word-spacing:-0.147744px;}
.ws1{word-spacing:-0.140400px;}
.ws79{word-spacing:-0.139968px;}
.ws40{word-spacing:-0.132192px;}
.ws3{word-spacing:-0.118800px;}
.ws0{word-spacing:-0.108000px;}
.ws22{word-spacing:-0.100800px;}
.ws21{word-spacing:-0.093600px;}
.ws2{word-spacing:-0.086400px;}
.ws11{word-spacing:-0.079200px;}
.ws3a{word-spacing:-0.077760px;}
.ws10{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.066240px;}
.ws17{word-spacing:-0.064800px;}
.wsf{word-spacing:-0.060480px;}
.ws18{word-spacing:-0.057600px;}
.wsd{word-spacing:-0.050400px;}
.wsc{word-spacing:-0.043200px;}
.ws1b{word-spacing:0.000000px;}
.ws4{word-spacing:0.033120px;}
.wsb{word-spacing:0.083953px;}
.ws1f{word-spacing:0.086112px;}
.wse{word-spacing:0.199584px;}
.ws19{word-spacing:0.217728px;}
.ws1a{word-spacing:0.254016px;}
.ws6{word-spacing:0.384192px;}
.ws64{word-spacing:11.531808px;}
.ws67{word-spacing:11.556576px;}
.ws65{word-spacing:11.617344px;}
.ws68{word-spacing:11.726208px;}
.ws66{word-spacing:11.741760px;}
.ws16{word-spacing:12.607200px;}
.ws2f{word-spacing:12.807072px;}
.ws2e{word-spacing:12.807936px;}
.ws55{word-spacing:13.203648px;}
.ws54{word-spacing:13.335840px;}
.ws13{word-spacing:13.435200px;}
.ws3f{word-spacing:13.794624px;}
.ws14{word-spacing:13.903200px;}
.ws51{word-spacing:15.155424px;}
.ws53{word-spacing:15.318720px;}
.ws52{word-spacing:15.342048px;}
.ws6a{word-spacing:16.835904px;}
.ws6c{word-spacing:16.889472px;}
.ws6b{word-spacing:16.905024px;}
.ws69{word-spacing:17.037216px;}
.ws70{word-spacing:18.475776px;}
.ws6f{word-spacing:18.559008px;}
.ws75{word-spacing:19.121184px;}
.ws15{word-spacing:19.202400px;}
.ws3b{word-spacing:20.870784px;}
.ws36{word-spacing:20.940768px;}
.ws35{word-spacing:21.072960px;}
.ws12{word-spacing:21.333600px;}
.ws6d{word-spacing:21.866112px;}
.ws6e{word-spacing:22.048704px;}
.ws59{word-spacing:22.876992px;}
.ws37{word-spacing:22.884768px;}
.ws5c{word-spacing:23.118048px;}
.ws5b{word-spacing:23.125824px;}
.ws3d{word-spacing:24.012288px;}
.ws3e{word-spacing:24.027840px;}
.ws3c{word-spacing:24.058944px;}
.ws24{word-spacing:25.228800px;}
.ws76{word-spacing:25.847424px;}
.ws32{word-spacing:28.740096px;}
.ws31{word-spacing:28.747872px;}
.ws5d{word-spacing:29.670048px;}
.ws5e{word-spacing:29.750976px;}
.ws5f{word-spacing:29.766096px;}
.ws23{word-spacing:30.268800px;}
.ws4c{word-spacing:34.183296px;}
.ws4a{word-spacing:34.214400px;}
.ws4b{word-spacing:34.400160px;}
.ws28{word-spacing:35.899200px;}
.ws71{word-spacing:36.578304px;}
.ws62{word-spacing:37.511424px;}
.ws63{word-spacing:37.620288px;}
.ws61{word-spacing:37.628064px;}
.ws72{word-spacing:39.424320px;}
.ws47{word-spacing:41.166144px;}
.ws30{word-spacing:43.257888px;}
.ws42{word-spacing:49.097664px;}
.ws41{word-spacing:49.105440px;}
.ws73{word-spacing:49.991904px;}
.ws74{word-spacing:50.054112px;}
.ws58{word-spacing:51.352704px;}
.ws57{word-spacing:51.469488px;}
.ws56{word-spacing:51.477120px;}
.ws29{word-spacing:53.150400px;}
.ws5a{word-spacing:53.436672px;}
.ws2a{word-spacing:56.685600px;}
.ws26{word-spacing:58.622400px;}
.ws60{word-spacing:79.159680px;}
.ws27{word-spacing:83.318400px;}
.ws49{word-spacing:90.901440px;}
.ws48{word-spacing:91.049184px;}
.ws25{word-spacing:93.535200px;}
.ws20{word-spacing:1050.330240px;}
._9{margin-left:-4.959224px;}
._7{margin-left:-3.600576px;}
._1{margin-left:-2.117647px;}
._2{margin-left:-1.058824px;}
._0{width:1.059840px;}
._5{width:2.750400px;}
._8{width:3.982464px;}
._a{width:5.215680px;}
._4{width:6.336000px;}
._3{width:7.538400px;}
._6{width:9.532800px;}
._b{width:11.040192px;}
.fc3{color:rgb(33,42,53);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.720000px;}
.fsb{font-size:38.880000px;}
.fsc{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs8{font-size:69.960659px;}
.fsa{font-size:72.000000px;}
.fsd{font-size:77.760000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:105.882350px;}
.fs2{font-size:108.000000px;}
.y31{bottom:-6.540000px;}
.y0{bottom:0.000000px;}
.y54{bottom:4.620000px;}
.y11{bottom:4.920000px;}
.y41{bottom:5.400000px;}
.y18{bottom:7.500000px;}
.y13{bottom:7.620000px;}
.ye{bottom:7.732944px;}
.y16{bottom:8.340000px;}
.y23{bottom:8.640000px;}
.y35{bottom:9.420000px;}
.y30{bottom:10.380000px;}
.y32{bottom:16.500000px;}
.y8{bottom:23.160000px;}
.y34{bottom:23.460000px;}
.y53{bottom:25.500000px;}
.y40{bottom:26.280000px;}
.y42{bottom:30.240000px;}
.y22{bottom:32.760000px;}
.y26{bottom:32.820000px;}
.y33{bottom:37.140000px;}
.y10{bottom:37.680000px;}
.yd{bottom:39.412940px;}
.y7{bottom:42.600000px;}
.y52{bottom:46.740000px;}
.y25{bottom:56.940000px;}
.y21{bottom:57.240000px;}
.y3a{bottom:58.320000px;}
.y6{bottom:64.200000px;}
.y51{bottom:67.620000px;}
.yc{bottom:71.092940px;}
.y39{bottom:74.520000px;}
.y2e{bottom:78.480000px;}
.y38{bottom:78.840000px;}
.y20{bottom:81.360000px;}
.y50{bottom:88.500000px;}
.y2d{bottom:92.880000px;}
.y5{bottom:95.880000px;}
.y6e{bottom:100.440000px;}
.y1f{bottom:105.480000px;}
.y4f{bottom:109.740000px;}
.y96{bottom:123.480000px;}
.y6d{bottom:126.720000px;}
.y4{bottom:127.560000px;}
.y49{bottom:129.900000px;}
.y1e{bottom:129.960000px;}
.y4e{bottom:130.620000px;}
.y3{bottom:133.680000px;}
.y9{bottom:139.080000px;}
.y48{bottom:147.540000px;}
.y2{bottom:148.800000px;}
.y95{bottom:149.760000px;}
.y4d{bottom:151.500000px;}
.y6c{bottom:153.000000px;}
.y1d{bottom:154.080000px;}
.y47{bottom:164.820000px;}
.y4c{bottom:172.740000px;}
.y94{bottom:176.040000px;}
.y1c{bottom:178.560000px;}
.y6b{bottom:179.280000px;}
.y46{bottom:182.460000px;}
.y4b{bottom:193.620000px;}
.y45{bottom:200.100000px;}
.y93{bottom:202.320000px;}
.y1b{bottom:202.680000px;}
.y6a{bottom:205.560000px;}
.y4a{bottom:214.500000px;}
.y44{bottom:217.740000px;}
.y1a{bottom:226.800000px;}
.y92{bottom:228.600000px;}
.y69{bottom:231.840000px;}
.y91{bottom:254.880000px;}
.y68{bottom:258.120000px;}
.y90{bottom:281.160000px;}
.y67{bottom:284.400000px;}
.y2c{bottom:288.720000px;}
.y8f{bottom:307.440000px;}
.y66{bottom:310.680000px;}
.y2b{bottom:317.880000px;}
.y8e{bottom:333.720000px;}
.y65{bottom:336.960000px;}
.y2a{bottom:338.040000px;}
.y29{bottom:358.200000px;}
.y8d{bottom:360.000000px;}
.y64{bottom:363.240000px;}
.y28{bottom:377.280000px;}
.y8c{bottom:386.280000px;}
.y63{bottom:389.520000px;}
.y27{bottom:396.720000px;}
.y24{bottom:412.500000px;}
.y8b{bottom:412.560000px;}
.y62{bottom:415.800000px;}
.y8a{bottom:438.840000px;}
.y61{bottom:442.080000px;}
.y89{bottom:465.120000px;}
.y60{bottom:468.360000px;}
.y19{bottom:486.000000px;}
.y88{bottom:491.400000px;}
.y5f{bottom:495.000000px;}
.y87{bottom:517.680000px;}
.y5e{bottom:521.280000px;}
.y86{bottom:544.320000px;}
.y5d{bottom:547.560000px;}
.y85{bottom:570.600000px;}
.y5c{bottom:573.840000px;}
.y84{bottom:596.880000px;}
.y5b{bottom:600.120000px;}
.y83{bottom:623.160000px;}
.y5a{bottom:626.400000px;}
.y82{bottom:649.440000px;}
.y59{bottom:652.680000px;}
.y81{bottom:675.720000px;}
.y58{bottom:678.960000px;}
.y80{bottom:702.000000px;}
.y57{bottom:705.240000px;}
.y7f{bottom:728.280000px;}
.y17{bottom:730.500000px;}
.y56{bottom:731.520000px;}
.y15{bottom:754.500000px;}
.y7e{bottom:754.560000px;}
.y55{bottom:757.800000px;}
.y43{bottom:775.500000px;}
.y7d{bottom:780.840000px;}
.y14{bottom:783.720000px;}
.y12{bottom:799.500000px;}
.y7c{bottom:807.120000px;}
.yf{bottom:831.000000px;}
.y7b{bottom:833.400000px;}
.y7a{bottom:859.680000px;}
.y79{bottom:885.960000px;}
.yb{bottom:895.500000px;}
.y78{bottom:912.240000px;}
.y77{bottom:938.520000px;}
.y76{bottom:964.800000px;}
.y75{bottom:991.080000px;}
.ya{bottom:995.040000px;}
.y3f{bottom:1008.000000px;}
.y1{bottom:1014.000000px;}
.y74{bottom:1017.360000px;}
.y73{bottom:1043.640000px;}
.y3e{bottom:1055.520000px;}
.y72{bottom:1069.920000px;}
.y3d{bottom:1078.200000px;}
.y71{bottom:1096.200000px;}
.y3c{bottom:1109.880000px;}
.y70{bottom:1122.480000px;}
.y3b{bottom:1141.560000px;}
.y6f{bottom:1148.760000px;}
.y2f{bottom:1180.500000px;}
.y37{bottom:1211.400000px;}
.y36{bottom:1227.240000px;}
.h3{height:12.476953px;}
.h10{height:25.500000px;}
.h16{height:28.006875px;}
.h19{height:31.997109px;}
.hd{height:33.000000px;}
.h4{height:40.310156px;}
.h17{height:40.723594px;}
.h7{height:42.229688px;}
.h1a{height:43.500000px;}
.h15{height:44.602031px;}
.hf{height:46.068750px;}
.h6{height:46.445625px;}
.he{height:49.054446px;}
.h18{height:49.500000px;}
.h12{height:50.343750px;}
.h11{height:50.484375px;}
.h1b{height:51.082031px;}
.h1e{height:52.434844px;}
.h1d{height:55.168594px;}
.hc{height:58.357969px;}
.hb{height:58.498594px;}
.ha{height:66.000000px;}
.h14{height:75.000000px;}
.h9{height:75.120632px;}
.h5{height:76.623047px;}
.h8{height:97.500000px;}
.h2{height:153.000000px;}
.h1c{height:232.500000px;}
.h13{height:244.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:139.500000px;}
.w2{width:183.000000px;}
.wb{width:202.500000px;}
.w7{width:223.500000px;}
.w3{width:424.500000px;}
.w8{width:534.000000px;}
.wc{width:549.000000px;}
.w9{width:562.500000px;}
.w6{width:756.000000px;}
.w5{width:759.000000px;}
.wa{width:787.500000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.355096px;}
.xa{left:24.495240px;}
.x16{left:28.078848px;}
.x4{left:32.062872px;}
.x1b{left:40.905024px;}
.x5{left:51.923928px;}
.x15{left:58.500000px;}
.x8{left:73.495236px;}
.xb{left:76.680180px;}
.x1{left:85.500000px;}
.xc{left:87.000000px;}
.x19{left:93.255264px;}
.x13{left:109.926000px;}
.x7{left:129.770040px;}
.x17{left:146.072016px;}
.x6{left:154.406640px;}
.xe{left:232.008000px;}
.x3{left:267.000000px;}
.x12{left:279.000000px;}
.x14{left:280.485000px;}
.x1a{left:286.500000px;}
.x11{left:292.680180px;}
.x10{left:302.419188px;}
.xd{left:309.000000px;}
.xf{left:377.950320px;}
.x9{left:690.000000px;}
.x18{left:825.657840px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsc{letter-spacing:-0.400384pt;}
.ls17{letter-spacing:-0.279552pt;}
.ls16{letter-spacing:-0.247296pt;}
.ls11{letter-spacing:-0.231168pt;}
.ls2d{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.136812pt;}
.ls35{letter-spacing:-0.135424pt;}
.ls14{letter-spacing:-0.129536pt;}
.ls2e{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.088320pt;}
.ls2f{letter-spacing:-0.069888pt;}
.ls15{letter-spacing:-0.041216pt;}
.ls10{letter-spacing:-0.025600pt;}
.lsa{letter-spacing:-0.019200pt;}
.ls13{letter-spacing:-0.012800pt;}
.ls12{letter-spacing:-0.006400pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.001280pt;}
.ls5{letter-spacing:0.004992pt;}
.ls4{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.009600pt;}
.ls18{letter-spacing:0.019200pt;}
.ls36{letter-spacing:0.025600pt;}
.ls9{letter-spacing:0.028800pt;}
.ls3a{letter-spacing:0.048384pt;}
.ls7{letter-spacing:0.054912pt;}
.ls4f{letter-spacing:0.055296pt;}
.ls3d{letter-spacing:0.061824pt;}
.ls21{letter-spacing:0.062208pt;}
.ls4a{letter-spacing:0.062720pt;}
.ls1f{letter-spacing:0.069120pt;}
.ls2b{letter-spacing:0.070144pt;}
.ls4e{letter-spacing:0.071680pt;}
.ls52{letter-spacing:0.072832pt;}
.ls23{letter-spacing:0.072960pt;}
.ls20{letter-spacing:0.073088pt;}
.ls51{letter-spacing:0.074240pt;}
.ls1d{letter-spacing:0.076032pt;}
.ls3{letter-spacing:0.077184pt;}
.ls31{letter-spacing:0.080256pt;}
.ls48{letter-spacing:0.082944pt;}
.ls38{letter-spacing:0.089856pt;}
.ls1e{letter-spacing:0.096768pt;}
.ls1b{letter-spacing:0.103680pt;}
.ls43{letter-spacing:0.106624pt;}
.ls24{letter-spacing:0.107520pt;}
.ls1a{letter-spacing:0.110592pt;}
.ls1c{letter-spacing:0.117504pt;}
.ls2a{letter-spacing:0.123648pt;}
.ls29{letter-spacing:0.124416pt;}
.ls3c{letter-spacing:0.126336pt;}
.ls3b{letter-spacing:0.136192pt;}
.ls25{letter-spacing:0.138240pt;}
.ls4c{letter-spacing:0.145152pt;}
.ls39{letter-spacing:0.152064pt;}
.ls37{letter-spacing:0.158976pt;}
.ls4b{letter-spacing:0.179712pt;}
.ls53{letter-spacing:0.193536pt;}
.lse{letter-spacing:0.200448pt;}
.ls30{letter-spacing:0.211200pt;}
.ls32{letter-spacing:0.228096pt;}
.ls33{letter-spacing:0.291456pt;}
.ls34{letter-spacing:0.308352pt;}
.ls3f{letter-spacing:0.616576pt;}
.ls40{letter-spacing:0.618240pt;}
.ls1{letter-spacing:1.863529pt;}
.lsd{letter-spacing:1.901176pt;}
.ls2{letter-spacing:1.920000pt;}
.ls41{letter-spacing:6.004608pt;}
.ls44{letter-spacing:6.227200pt;}
.ls27{letter-spacing:7.464960pt;}
.ls26{letter-spacing:7.465472pt;}
.ls3e{letter-spacing:8.142080pt;}
.ls28{letter-spacing:8.538880pt;}
.ls49{letter-spacing:10.624000pt;}
.ls45{letter-spacing:12.092928pt;}
.ls42{letter-spacing:13.833984pt;}
.ls22{letter-spacing:21.699840pt;}
.ls46{letter-spacing:26.720768pt;}
.ls2c{letter-spacing:30.647040pt;}
.ls47{letter-spacing:33.651200pt;}
.ls50{letter-spacing:84.718208pt;}
.ls4d{letter-spacing:123.108864pt;}
.ls6{letter-spacing:755.046400pt;}
.ws1c{word-spacing:-13.224960pt;}
.ws1d{word-spacing:-13.192704pt;}
.ws1e{word-spacing:-10.788096pt;}
.ws45{word-spacing:-8.608000pt;}
.ws8{word-spacing:-2.014118pt;}
.ws9{word-spacing:-1.995294pt;}
.ws7{word-spacing:-1.957647pt;}
.wsa{word-spacing:-0.274688pt;}
.ws78{word-spacing:-0.262656pt;}
.ws4f{word-spacing:-0.248832pt;}
.ws44{word-spacing:-0.228096pt;}
.ws4d{word-spacing:-0.221184pt;}
.ws50{word-spacing:-0.214272pt;}
.ws43{word-spacing:-0.207360pt;}
.ws46{word-spacing:-0.193536pt;}
.ws2b{word-spacing:-0.186624pt;}
.ws2c{word-spacing:-0.179712pt;}
.ws2d{word-spacing:-0.172800pt;}
.ws33{word-spacing:-0.165888pt;}
.ws38{word-spacing:-0.158976pt;}
.ws4e{word-spacing:-0.145152pt;}
.ws77{word-spacing:-0.142080pt;}
.ws34{word-spacing:-0.138240pt;}
.ws39{word-spacing:-0.131328pt;}
.ws1{word-spacing:-0.124800pt;}
.ws79{word-spacing:-0.124416pt;}
.ws40{word-spacing:-0.117504pt;}
.ws3{word-spacing:-0.105600pt;}
.ws0{word-spacing:-0.096000pt;}
.ws22{word-spacing:-0.089600pt;}
.ws21{word-spacing:-0.083200pt;}
.ws2{word-spacing:-0.076800pt;}
.ws11{word-spacing:-0.070400pt;}
.ws3a{word-spacing:-0.069120pt;}
.ws10{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.058880pt;}
.ws17{word-spacing:-0.057600pt;}
.wsf{word-spacing:-0.053760pt;}
.ws18{word-spacing:-0.051200pt;}
.wsd{word-spacing:-0.044800pt;}
.wsc{word-spacing:-0.038400pt;}
.ws1b{word-spacing:0.000000pt;}
.ws4{word-spacing:0.029440pt;}
.wsb{word-spacing:0.074625pt;}
.ws1f{word-spacing:0.076544pt;}
.wse{word-spacing:0.177408pt;}
.ws19{word-spacing:0.193536pt;}
.ws1a{word-spacing:0.225792pt;}
.ws6{word-spacing:0.341504pt;}
.ws64{word-spacing:10.250496pt;}
.ws67{word-spacing:10.272512pt;}
.ws65{word-spacing:10.326528pt;}
.ws68{word-spacing:10.423296pt;}
.ws66{word-spacing:10.437120pt;}
.ws16{word-spacing:11.206400pt;}
.ws2f{word-spacing:11.384064pt;}
.ws2e{word-spacing:11.384832pt;}
.ws55{word-spacing:11.736576pt;}
.ws54{word-spacing:11.854080pt;}
.ws13{word-spacing:11.942400pt;}
.ws3f{word-spacing:12.261888pt;}
.ws14{word-spacing:12.358400pt;}
.ws51{word-spacing:13.471488pt;}
.ws53{word-spacing:13.616640pt;}
.ws52{word-spacing:13.637376pt;}
.ws6a{word-spacing:14.965248pt;}
.ws6c{word-spacing:15.012864pt;}
.ws6b{word-spacing:15.026688pt;}
.ws69{word-spacing:15.144192pt;}
.ws70{word-spacing:16.422912pt;}
.ws6f{word-spacing:16.496896pt;}
.ws75{word-spacing:16.996608pt;}
.ws15{word-spacing:17.068800pt;}
.ws3b{word-spacing:18.551808pt;}
.ws36{word-spacing:18.614016pt;}
.ws35{word-spacing:18.731520pt;}
.ws12{word-spacing:18.963200pt;}
.ws6d{word-spacing:19.436544pt;}
.ws6e{word-spacing:19.598848pt;}
.ws59{word-spacing:20.335104pt;}
.ws37{word-spacing:20.342016pt;}
.ws5c{word-spacing:20.549376pt;}
.ws5b{word-spacing:20.556288pt;}
.ws3d{word-spacing:21.344256pt;}
.ws3e{word-spacing:21.358080pt;}
.ws3c{word-spacing:21.385728pt;}
.ws24{word-spacing:22.425600pt;}
.ws76{word-spacing:22.975488pt;}
.ws32{word-spacing:25.546752pt;}
.ws31{word-spacing:25.553664pt;}
.ws5d{word-spacing:26.373376pt;}
.ws5e{word-spacing:26.445312pt;}
.ws5f{word-spacing:26.458752pt;}
.ws23{word-spacing:26.905600pt;}
.ws4c{word-spacing:30.385152pt;}
.ws4a{word-spacing:30.412800pt;}
.ws4b{word-spacing:30.577920pt;}
.ws28{word-spacing:31.910400pt;}
.ws71{word-spacing:32.514048pt;}
.ws62{word-spacing:33.343488pt;}
.ws63{word-spacing:33.440256pt;}
.ws61{word-spacing:33.447168pt;}
.ws72{word-spacing:35.043840pt;}
.ws47{word-spacing:36.592128pt;}
.ws30{word-spacing:38.451456pt;}
.ws42{word-spacing:43.642368pt;}
.ws41{word-spacing:43.649280pt;}
.ws73{word-spacing:44.437248pt;}
.ws74{word-spacing:44.492544pt;}
.ws58{word-spacing:45.646848pt;}
.ws57{word-spacing:45.750656pt;}
.ws56{word-spacing:45.757440pt;}
.ws29{word-spacing:47.244800pt;}
.ws5a{word-spacing:47.499264pt;}
.ws2a{word-spacing:50.387200pt;}
.ws26{word-spacing:52.108800pt;}
.ws60{word-spacing:70.364160pt;}
.ws27{word-spacing:74.060800pt;}
.ws49{word-spacing:80.801280pt;}
.ws48{word-spacing:80.932608pt;}
.ws25{word-spacing:83.142400pt;}
.ws20{word-spacing:933.626880pt;}
._9{margin-left:-4.408200pt;}
._7{margin-left:-3.200512pt;}
._1{margin-left:-1.882353pt;}
._2{margin-left:-0.941176pt;}
._0{width:0.942080pt;}
._5{width:2.444800pt;}
._8{width:3.539968pt;}
._a{width:4.636160pt;}
._4{width:5.632000pt;}
._3{width:6.700800pt;}
._6{width:8.473600pt;}
._b{width:9.813504pt;}
.fs0{font-size:16.640000pt;}
.fsb{font-size:34.560000pt;}
.fsc{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs8{font-size:62.187252pt;}
.fsa{font-size:64.000000pt;}
.fsd{font-size:69.120000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:94.117645pt;}
.fs2{font-size:96.000000pt;}
.y31{bottom:-5.813333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:4.106667pt;}
.y11{bottom:4.373333pt;}
.y41{bottom:4.800000pt;}
.y18{bottom:6.666667pt;}
.y13{bottom:6.773333pt;}
.ye{bottom:6.873728pt;}
.y16{bottom:7.413333pt;}
.y23{bottom:7.680000pt;}
.y35{bottom:8.373333pt;}
.y30{bottom:9.226667pt;}
.y32{bottom:14.666667pt;}
.y8{bottom:20.586667pt;}
.y34{bottom:20.853333pt;}
.y53{bottom:22.666667pt;}
.y40{bottom:23.360000pt;}
.y42{bottom:26.880000pt;}
.y22{bottom:29.120000pt;}
.y26{bottom:29.173333pt;}
.y33{bottom:33.013333pt;}
.y10{bottom:33.493333pt;}
.yd{bottom:35.033725pt;}
.y7{bottom:37.866667pt;}
.y52{bottom:41.546667pt;}
.y25{bottom:50.613333pt;}
.y21{bottom:50.880000pt;}
.y3a{bottom:51.840000pt;}
.y6{bottom:57.066667pt;}
.y51{bottom:60.106667pt;}
.yc{bottom:63.193725pt;}
.y39{bottom:66.240000pt;}
.y2e{bottom:69.760000pt;}
.y38{bottom:70.080000pt;}
.y20{bottom:72.320000pt;}
.y50{bottom:78.666667pt;}
.y2d{bottom:82.560000pt;}
.y5{bottom:85.226667pt;}
.y6e{bottom:89.280000pt;}
.y1f{bottom:93.760000pt;}
.y4f{bottom:97.546667pt;}
.y96{bottom:109.760000pt;}
.y6d{bottom:112.640000pt;}
.y4{bottom:113.386667pt;}
.y49{bottom:115.466667pt;}
.y1e{bottom:115.520000pt;}
.y4e{bottom:116.106667pt;}
.y3{bottom:118.826667pt;}
.y9{bottom:123.626667pt;}
.y48{bottom:131.146667pt;}
.y2{bottom:132.266667pt;}
.y95{bottom:133.120000pt;}
.y4d{bottom:134.666667pt;}
.y6c{bottom:136.000000pt;}
.y1d{bottom:136.960000pt;}
.y47{bottom:146.506667pt;}
.y4c{bottom:153.546667pt;}
.y94{bottom:156.480000pt;}
.y1c{bottom:158.720000pt;}
.y6b{bottom:159.360000pt;}
.y46{bottom:162.186667pt;}
.y4b{bottom:172.106667pt;}
.y45{bottom:177.866667pt;}
.y93{bottom:179.840000pt;}
.y1b{bottom:180.160000pt;}
.y6a{bottom:182.720000pt;}
.y4a{bottom:190.666667pt;}
.y44{bottom:193.546667pt;}
.y1a{bottom:201.600000pt;}
.y92{bottom:203.200000pt;}
.y69{bottom:206.080000pt;}
.y91{bottom:226.560000pt;}
.y68{bottom:229.440000pt;}
.y90{bottom:249.920000pt;}
.y67{bottom:252.800000pt;}
.y2c{bottom:256.640000pt;}
.y8f{bottom:273.280000pt;}
.y66{bottom:276.160000pt;}
.y2b{bottom:282.560000pt;}
.y8e{bottom:296.640000pt;}
.y65{bottom:299.520000pt;}
.y2a{bottom:300.480000pt;}
.y29{bottom:318.400000pt;}
.y8d{bottom:320.000000pt;}
.y64{bottom:322.880000pt;}
.y28{bottom:335.360000pt;}
.y8c{bottom:343.360000pt;}
.y63{bottom:346.240000pt;}
.y27{bottom:352.640000pt;}
.y24{bottom:366.666667pt;}
.y8b{bottom:366.720000pt;}
.y62{bottom:369.600000pt;}
.y8a{bottom:390.080000pt;}
.y61{bottom:392.960000pt;}
.y89{bottom:413.440000pt;}
.y60{bottom:416.320000pt;}
.y19{bottom:432.000000pt;}
.y88{bottom:436.800000pt;}
.y5f{bottom:440.000000pt;}
.y87{bottom:460.160000pt;}
.y5e{bottom:463.360000pt;}
.y86{bottom:483.840000pt;}
.y5d{bottom:486.720000pt;}
.y85{bottom:507.200000pt;}
.y5c{bottom:510.080000pt;}
.y84{bottom:530.560000pt;}
.y5b{bottom:533.440000pt;}
.y83{bottom:553.920000pt;}
.y5a{bottom:556.800000pt;}
.y82{bottom:577.280000pt;}
.y59{bottom:580.160000pt;}
.y81{bottom:600.640000pt;}
.y58{bottom:603.520000pt;}
.y80{bottom:624.000000pt;}
.y57{bottom:626.880000pt;}
.y7f{bottom:647.360000pt;}
.y17{bottom:649.333333pt;}
.y56{bottom:650.240000pt;}
.y15{bottom:670.666667pt;}
.y7e{bottom:670.720000pt;}
.y55{bottom:673.600000pt;}
.y43{bottom:689.333333pt;}
.y7d{bottom:694.080000pt;}
.y14{bottom:696.640000pt;}
.y12{bottom:710.666667pt;}
.y7c{bottom:717.440000pt;}
.yf{bottom:738.666667pt;}
.y7b{bottom:740.800000pt;}
.y7a{bottom:764.160000pt;}
.y79{bottom:787.520000pt;}
.yb{bottom:796.000000pt;}
.y78{bottom:810.880000pt;}
.y77{bottom:834.240000pt;}
.y76{bottom:857.600000pt;}
.y75{bottom:880.960000pt;}
.ya{bottom:884.480000pt;}
.y3f{bottom:896.000000pt;}
.y1{bottom:901.333333pt;}
.y74{bottom:904.320000pt;}
.y73{bottom:927.680000pt;}
.y3e{bottom:938.240000pt;}
.y72{bottom:951.040000pt;}
.y3d{bottom:958.400000pt;}
.y71{bottom:974.400000pt;}
.y3c{bottom:986.560000pt;}
.y70{bottom:997.760000pt;}
.y3b{bottom:1014.720000pt;}
.y6f{bottom:1021.120000pt;}
.y2f{bottom:1049.333333pt;}
.y37{bottom:1076.800000pt;}
.y36{bottom:1090.880000pt;}
.h3{height:11.090625pt;}
.h10{height:22.666667pt;}
.h16{height:24.895000pt;}
.h19{height:28.441875pt;}
.hd{height:29.333333pt;}
.h4{height:35.831250pt;}
.h17{height:36.198750pt;}
.h7{height:37.537500pt;}
.h1a{height:38.666667pt;}
.h15{height:39.646250pt;}
.hf{height:40.950000pt;}
.h6{height:41.285000pt;}
.he{height:43.603952pt;}
.h18{height:44.000000pt;}
.h12{height:44.750000pt;}
.h11{height:44.875000pt;}
.h1b{height:45.406250pt;}
.h1e{height:46.608750pt;}
.h1d{height:49.038750pt;}
.hc{height:51.873750pt;}
.hb{height:51.998750pt;}
.ha{height:58.666667pt;}
.h14{height:66.666667pt;}
.h9{height:66.773895pt;}
.h5{height:68.109375pt;}
.h8{height:86.666667pt;}
.h2{height:136.000000pt;}
.h1c{height:206.666667pt;}
.h13{height:217.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:124.000000pt;}
.w2{width:162.666667pt;}
.wb{width:180.000000pt;}
.w7{width:198.666667pt;}
.w3{width:377.333333pt;}
.w8{width:474.666667pt;}
.wc{width:488.000000pt;}
.w9{width:500.000000pt;}
.w6{width:672.000000pt;}
.w5{width:674.666667pt;}
.wa{width:700.000000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.426752pt;}
.xa{left:21.773547pt;}
.x16{left:24.958976pt;}
.x4{left:28.500331pt;}
.x1b{left:36.360021pt;}
.x5{left:46.154603pt;}
.x15{left:52.000000pt;}
.x8{left:65.329099pt;}
.xb{left:68.160160pt;}
.x1{left:76.000000pt;}
.xc{left:77.333333pt;}
.x19{left:82.893568pt;}
.x13{left:97.712000pt;}
.x7{left:115.351147pt;}
.x17{left:129.841792pt;}
.x6{left:137.250347pt;}
.xe{left:206.229333pt;}
.x3{left:237.333333pt;}
.x12{left:248.000000pt;}
.x14{left:249.320000pt;}
.x1a{left:254.666667pt;}
.x11{left:260.160160pt;}
.x10{left:268.817056pt;}
.xd{left:274.666667pt;}
.xf{left:335.955840pt;}
.x9{left:613.333333pt;}
.x18{left:733.918080pt;}
}




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