
    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_07bd23c8515ca01ccd751a70.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_132163d54031b4d0f17aa610.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_040237fb26ab91af37d531cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_18154d2f95c432b89a33759b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.482000;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_76c772c6057aa252500922fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_e7f09ff6bea04f02dedcda43.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_8cc722039c5a5906e128e997.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704000;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_803245449257c6795832ca5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0dbb69f65a703fb3ac5e1f4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.735000;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_d53e17de149bc6ac914a4236.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_990b5bdf4ab8554c03920531.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_dc30e261b96241655f7ab400.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.729055;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_7e0a3155b5c9e56edff2913d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m2{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m9{transform:matrix(0.021334,0.249088,-0.249088,0.021334,0,0);-ms-transform:matrix(0.021334,0.249088,-0.249088,0.021334,0,0);-webkit-transform:matrix(0.021334,0.249088,-0.249088,0.021334,0,0);}
.m4{transform:matrix(0.228228,-0.102040,0.102040,0.228228,0,0);-ms-transform:matrix(0.228228,-0.102040,0.102040,0.228228,0,0);-webkit-transform:matrix(0.228228,-0.102040,0.102040,0.228228,0,0);}
.ma{transform:matrix(0.236530,0.080954,-0.080954,0.236530,0,0);-ms-transform:matrix(0.236530,0.080954,-0.080954,0.236530,0,0);-webkit-transform:matrix(0.236530,0.080954,-0.080954,0.236530,0,0);}
.m8{transform:matrix(0.246743,-0.040226,0.040226,0.246743,0,0);-ms-transform:matrix(0.246743,-0.040226,0.040226,0.246743,0,0);-webkit-transform:matrix(0.246743,-0.040226,0.040226,0.246743,0,0);}
.m3{transform:matrix(0.247356,-0.036265,0.036265,0.247356,0,0);-ms-transform:matrix(0.247356,-0.036265,0.036265,0.247356,0,0);-webkit-transform:matrix(0.247356,-0.036265,0.036265,0.247356,0,0);}
.m6{transform:matrix(0.248964,-0.022736,0.022736,0.248964,0,0);-ms-transform:matrix(0.248964,-0.022736,0.022736,0.248964,0,0);-webkit-transform:matrix(0.248964,-0.022736,0.022736,0.248964,0,0);}
.m7{transform:matrix(0.249160,-0.020479,0.020479,0.249160,0,0);-ms-transform:matrix(0.249160,-0.020479,0.020479,0.249160,0,0);-webkit-transform:matrix(0.249160,-0.020479,0.020479,0.249160,0,0);}
.m5{transform:matrix(0.249951,-0.004974,0.004974,0.249951,0,0);-ms-transform:matrix(0.249951,-0.004974,0.004974,0.249951,0,0);-webkit-transform:matrix(0.249951,-0.004974,0.004974,0.249951,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.040000px;}
.v3{vertical-align:-21.696000px;}
.v6{vertical-align:-11.372544px;}
.v7{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.822000px;}
.v5{vertical-align:17.769600px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:26.034000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.002400px;}
.ls10{letter-spacing:0.002506px;}
.lse{letter-spacing:0.004306px;}
.ls13{letter-spacing:1.790506px;}
.ls0{letter-spacing:2.986800px;}
.ls4{letter-spacing:2.987100px;}
.ls1{letter-spacing:2.992800px;}
.ls23{letter-spacing:3.371347px;}
.lsf{letter-spacing:3.590144px;}
.ls1a{letter-spacing:4.036397px;}
.ls12{letter-spacing:5.950003px;}
.ls14{letter-spacing:5.956829px;}
.ls22{letter-spacing:6.096086px;}
.ls11{letter-spacing:7.453565px;}
.ls25{letter-spacing:9.379473px;}
.ls24{letter-spacing:9.437347px;}
.ls1f{letter-spacing:9.901473px;}
.ls21{letter-spacing:9.907473px;}
.ls20{letter-spacing:9.962237px;}
.ls1e{letter-spacing:9.965347px;}
.lsc{letter-spacing:10.960800px;}
.ls1d{letter-spacing:15.877473px;}
.ls7{letter-spacing:16.015473px;}
.ls6{letter-spacing:16.082400px;}
.ls26{letter-spacing:17.366237px;}
.ls18{letter-spacing:17.401473px;}
.ls16{letter-spacing:17.407473px;}
.ls17{letter-spacing:17.462563px;}
.ls9{letter-spacing:19.399473px;}
.ls8{letter-spacing:19.454400px;}
.lsb{letter-spacing:19.909473px;}
.ls3{letter-spacing:20.338800px;}
.ls2{letter-spacing:20.920800px;}
.ls1c{letter-spacing:21.176237px;}
.ls1b{letter-spacing:23.299565px;}
.ls19{letter-spacing:23.416003px;}
.ls15{letter-spacing:23.418086px;}
.lsa{letter-spacing:25.922477px;}
.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;}
}
.ws21{word-spacing:-17.932800px;}
.ws43{word-spacing:-15.807441px;}
.ws2{word-spacing:-13.449600px;}
.ws40{word-spacing:-11.855683px;}
.ws3c{word-spacing:-11.855581px;}
.ws3a{word-spacing:-9.879799px;}
.ws71{word-spacing:-3.658291px;}
.wsf{word-spacing:-3.443098px;}
.ws1b{word-spacing:-3.299635px;}
.ws4b{word-spacing:-2.797517px;}
.ws74{word-spacing:-2.725786px;}
.ws39{word-spacing:-2.510592px;}
.ws2f{word-spacing:-2.438861px;}
.ws6a{word-spacing:-2.367130px;}
.ws5f{word-spacing:-2.151936px;}
.ws13{word-spacing:-2.080205px;}
.ws50{word-spacing:-1.865011px;}
.ws65{word-spacing:-1.793280px;}
.ws44{word-spacing:-1.678819px;}
.ws53{word-spacing:-1.434624px;}
.ws4c{word-spacing:-1.075968px;}
.ws69{word-spacing:-0.860774px;}
.ws37{word-spacing:-0.789043px;}
.ws14{word-spacing:-0.645581px;}
.ws66{word-spacing:-0.573850px;}
.ws70{word-spacing:-0.430387px;}
.ws10{word-spacing:-0.358656px;}
.ws72{word-spacing:-0.143462px;}
.ws6{word-spacing:-0.071731px;}
.ws49{word-spacing:-0.065455px;}
.ws17{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws48{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.ws62{word-spacing:0.071731px;}
.ws1f{word-spacing:0.215194px;}
.ws12{word-spacing:0.502118px;}
.ws6d{word-spacing:0.573850px;}
.ws35{word-spacing:0.645581px;}
.ws1e{word-spacing:0.789043px;}
.ws61{word-spacing:0.860774px;}
.ws38{word-spacing:1.147699px;}
.wsc{word-spacing:1.219430px;}
.ws1a{word-spacing:1.291162px;}
.ws8{word-spacing:1.434624px;}
.ws4d{word-spacing:1.578086px;}
.ws36{word-spacing:2.295398px;}
.ws22{word-spacing:2.654054px;}
.ws59{word-spacing:2.725786px;}
.ws56{word-spacing:2.737142px;}
.ws57{word-spacing:2.740800px;}
.ws58{word-spacing:2.746800px;}
.ws5c{word-spacing:3.084442px;}
.ws68{word-spacing:3.371366px;}
.ws5a{word-spacing:3.443098px;}
.ws7{word-spacing:3.586560px;}
.ws23{word-spacing:3.730022px;}
.ws6e{word-spacing:3.801754px;}
.ws6b{word-spacing:3.873485px;}
.ws51{word-spacing:4.088678px;}
.ws52{word-spacing:4.160410px;}
.ws2b{word-spacing:4.303872px;}
.ws63{word-spacing:4.519066px;}
.wse{word-spacing:4.805990px;}
.wsd{word-spacing:5.236378px;}
.ws11{word-spacing:5.308109px;}
.ws73{word-spacing:5.666765px;}
.ws31{word-spacing:5.810227px;}
.ws20{word-spacing:6.312346px;}
.ws1d{word-spacing:6.455808px;}
.ws67{word-spacing:6.742733px;}
.ws2c{word-spacing:6.814464px;}
.wsa{word-spacing:6.957926px;}
.ws24{word-spacing:7.029658px;}
.ws55{word-spacing:7.101389px;}
.ws54{word-spacing:7.173120px;}
.ws9{word-spacing:7.244851px;}
.ws6c{word-spacing:7.460045px;}
.ws64{word-spacing:7.962163px;}
.ws2a{word-spacing:8.320819px;}
.ws5b{word-spacing:8.607744px;}
.ws6f{word-spacing:8.822938px;}
.ws1c{word-spacing:9.038131px;}
.ws32{word-spacing:9.181594px;}
.ws33{word-spacing:9.325056px;}
.ws34{word-spacing:9.396787px;}
.ws4e{word-spacing:9.468518px;}
.ws26{word-spacing:9.683712px;}
.wsb{word-spacing:10.759680px;}
.ws60{word-spacing:10.903142px;}
.ws2d{word-spacing:11.692186px;}
.ws4f{word-spacing:12.481229px;}
.ws47{word-spacing:13.090920px;}
.ws46{word-spacing:13.876375px;}
.ws45{word-spacing:14.792740px;}
.ws16{word-spacing:14.882624px;}
.ws15{word-spacing:14.884124px;}
.ws2e{word-spacing:15.709133px;}
.ws29{word-spacing:16.298195px;}
.ws28{word-spacing:16.625468px;}
.ws4a{word-spacing:17.195738px;}
.ws5{word-spacing:17.287219px;}
.ws4{word-spacing:17.861069px;}
.ws19{word-spacing:19.845499px;}
.ws0{word-spacing:21.433223px;}
.ws5d{word-spacing:22.101178px;}
.ws3f{word-spacing:22.118811px;}
.ws18{word-spacing:22.868724px;}
.ws30{word-spacing:23.169178px;}
.ws27{word-spacing:25.134566px;}
.ws5e{word-spacing:30.723178px;}
.ws42{word-spacing:37.974873px;}
.ws3e{word-spacing:37.983632px;}
.ws41{word-spacing:59.138432px;}
.ws25{word-spacing:75.544106px;}
.ws3b{word-spacing:669.127676px;}
.ws3d{word-spacing:699.371475px;}
._c{margin-left:-223.018403px;}
._12{margin-left:-207.336279px;}
._10{margin-left:-75.910236px;}
._e{margin-left:-72.327974px;}
._13{margin-left:-70.736067px;}
._4{margin-left:-9.267005px;}
._2{margin-left:-7.919102px;}
._1{margin-left:-6.369713px;}
._6{margin-left:-5.021184px;}
._5{margin-left:-3.670524px;}
._0{margin-left:-2.151930px;}
._3{margin-left:-1.075968px;}
._17{width:3.267182px;}
._14{width:4.775151px;}
._16{width:7.962163px;}
._19{width:14.202772px;}
._18{width:20.670812px;}
._8{width:22.164935px;}
._15{width:28.430021px;}
._7{width:29.696711px;}
._1a{width:35.148053px;}
._f{width:53.791073px;}
._a{width:88.589545px;}
._11{width:207.194715px;}
._b{width:241.340614px;}
._d{width:247.933823px;}
._9{width:1482.078635px;}
.fc3{color:rgb(107,255,54);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:17.769422px;}
.fsd{font-size:21.323520px;}
.fs10{font-size:28.430685px;}
.fsa{font-size:35.538845px;}
.fs15{font-size:35.539155px;}
.fs16{font-size:35.539192px;}
.fs17{font-size:35.539195px;}
.fs12{font-size:35.539542px;}
.fs13{font-size:35.539554px;}
.fs14{font-size:35.539562px;}
.fs11{font-size:35.539916px;}
.fs7{font-size:39.601234px;}
.fs5{font-size:41.842800px;}
.fsc{font-size:42.645974px;}
.fs18{font-size:42.646340px;}
.fs3{font-size:44.233800px;}
.fs8{font-size:45.258069px;}
.fs19{font-size:47.820600px;}
.fse{font-size:49.754169px;}
.fs6{font-size:50.915751px;}
.fs2{font-size:53.798400px;}
.fsf{font-size:56.861298px;}
.fs4{font-size:59.775600px;}
.fs9{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001500px;}
.y33{bottom:2.546961px;}
.yb4{bottom:2.705422px;}
.y32{bottom:13.212858px;}
.yb3{bottom:19.422350px;}
.y3c{bottom:22.248433px;}
.y3f{bottom:23.949896px;}
.ya5{bottom:27.033692px;}
.y41{bottom:33.551847px;}
.ya0{bottom:39.718965px;}
.y3b{bottom:47.452291px;}
.y9f{bottom:55.391575px;}
.ya4{bottom:66.375675px;}
.yaf{bottom:67.890267px;}
.yb0{bottom:69.756074px;}
.y9e{bottom:71.384215px;}
.y3a{bottom:72.655867px;}
.y40{bottom:85.158721px;}
.y9d{bottom:87.057180px;}
.y35{bottom:91.979424px;}
.ya6{bottom:94.591135px;}
.ya7{bottom:97.008426px;}
.y39{bottom:97.605071px;}
.y9c{bottom:102.730145px;}
.ya3{bottom:105.717659px;}
.y58{bottom:106.377000px;}
.yfa{bottom:110.515500px;}
.yda{bottom:114.445500px;}
.y21{bottom:116.521500px;}
.y3e{bottom:117.033219px;}
.y9b{bottom:118.722785px;}
.yae{bottom:121.812385px;}
.y38{bottom:122.554276px;}
.yb2{bottom:128.324098px;}
.yad{bottom:128.688332px;}
.y9a{bottom:134.395394px;}
.yf9{bottom:136.159500px;}
.y20{bottom:137.115000px;}
.yac{bottom:137.297703px;}
.y57{bottom:137.362500px;}
.yb1{bottom:141.757872px;}
.ya2{bottom:144.605273px;}
.yab{bottom:144.786701px;}
.yd9{bottom:145.432500px;}
.y37{bottom:147.757852px;}
.y99{bottom:150.068004px;}
.yf8{bottom:161.803500px;}
.y1f{bottom:164.265000px;}
.y98{bottom:165.740613px;}
.yaa{bottom:165.889878px;}
.ya9{bottom:167.791225px;}
.y56{bottom:168.348000px;}
.ya8{bottom:171.969746px;}
.y36{bottom:173.216152px;}
.yd8{bottom:176.418000px;}
.y97{bottom:181.733253px;}
.ya1{bottom:184.081506px;}
.yf7{bottom:187.447500px;}
.yb5{bottom:190.339070px;}
.y1e{bottom:195.250500px;}
.y31{bottom:195.466706px;}
.y34{bottom:198.165710px;}
.y55{bottom:199.335000px;}
.y93{bottom:204.186742px;}
.yd7{bottom:207.405000px;}
.y3d{bottom:210.453866px;}
.yf6{bottom:213.090000px;}
.y92{bottom:220.903671px;}
.y1d{bottom:226.237500px;}
.y72{bottom:228.514302px;}
.y54{bottom:230.320500px;}
.yd6{bottom:238.390500px;}
.yf5{bottom:238.734000px;}
.y6d{bottom:239.280902px;}
.y6c{bottom:254.953867px;}
.y1c{bottom:257.223000px;}
.y53{bottom:261.307500px;}
.yf4{bottom:264.378000px;}
.y71{bottom:267.856285px;}
.y8e{bottom:269.371143px;}
.yd5{bottom:269.376000px;}
.y6b{bottom:270.946507px;}
.y8f{bottom:271.236950px;}
.y6a{bottom:286.939147px;}
.y1b{bottom:288.210000px;}
.yf3{bottom:290.022000px;}
.y52{bottom:292.293000px;}
.y79{bottom:296.072633px;}
.y7b{bottom:298.490187px;}
.yd4{bottom:300.363000px;}
.y69{bottom:302.931787px;}
.y70{bottom:307.198268px;}
.yf2{bottom:315.666000px;}
.y68{bottom:318.924427px;}
.y1a{bottom:319.195500px;}
.y51{bottom:323.280000px;}
.y8d{bottom:323.293883px;}
.y91{bottom:329.805596px;}
.y8c{bottom:330.169830px;}
.yd3{bottom:331.348500px;}
.y67{bottom:334.917067px;}
.y8b{bottom:338.779201px;}
.yf1{bottom:341.308500px;}
.y90{bottom:343.239371px;}
.y6f{bottom:346.085883px;}
.y8a{bottom:346.267310px;}
.y19{bottom:350.182500px;}
.y66{bottom:350.909707px;}
.y50{bottom:354.265500px;}
.yd2{bottom:362.335500px;}
.yb9{bottom:362.799000px;}
.y65{bottom:366.902347px;}
.yf0{bottom:366.952500px;}
.y89{bottom:367.370487px;}
.y88{bottom:369.272723px;}
.y44{bottom:373.108500px;}
.y7c{bottom:373.451244px;}
.y18{bottom:381.168000px;}
.y64{bottom:382.574957px;}
.y4f{bottom:385.251000px;}
.y6e{bottom:385.562115px;}
.y96{bottom:391.820035px;}
.yb8{bottom:391.863000px;}
.yef{bottom:392.596500px;}
.yd1{bottom:393.321000px;}
.y43{bottom:402.172500px;}
.y95{bottom:405.643185px;}
.y17{bottom:412.153500px;}
.y4e{bottom:416.238000px;}
.yee{bottom:418.240500px;}
.yb7{bottom:420.925500px;}
.y94{bottom:422.360114px;}
.yd0{bottom:424.308000px;}
.y77{bottom:429.996688px;}
.y42{bottom:431.235000px;}
.y63{bottom:433.370336px;}
.y16{bottom:443.140500px;}
.yed{bottom:443.884500px;}
.y4d{bottom:447.223500px;}
.y62{bottom:449.362976px;}
.yb6{bottom:449.988000px;}
.ycf{bottom:455.293500px;}
.y61{bottom:465.355616px;}
.y76{bottom:469.338672px;}
.yec{bottom:469.527000px;}
.y84{bottom:470.853530px;}
.y85{bottom:472.719337px;}
.y15{bottom:474.126000px;}
.y30{bottom:475.243500px;}
.y4c{bottom:478.210500px;}
.y60{bottom:481.348256px;}
.yce{bottom:486.279000px;}
.y59{bottom:493.996500px;}
.yeb{bottom:495.171000px;}
.y5f{bottom:497.340896px;}
.y14{bottom:505.113000px;}
.y75{bottom:508.680655px;}
.y4b{bottom:509.196000px;}
.y5e{bottom:513.333536px;}
.ycd{bottom:517.266000px;}
.yea{bottom:522.429000px;}
.y83{bottom:524.775381px;}
.y5d{bottom:529.326176px;}
.y87{bottom:531.287094px;}
.y82{bottom:531.651328px;}
.y13{bottom:536.098500px;}
.y4a{bottom:540.183000px;}
.y81{bottom:540.260699px;}
.y86{bottom:544.720869px;}
.y5c{bottom:545.318816px;}
.y74{bottom:547.568269px;}
.y80{bottom:547.749697px;}
.ycc{bottom:548.251500px;}
.y5b{bottom:561.311456px;}
.ye9{bottom:561.484500px;}
.y12{bottom:567.085500px;}
.y7f{bottom:568.852874px;}
.y7e{bottom:570.754221px;}
.y49{bottom:571.168500px;}
.y7d{bottom:574.943404px;}
.y5a{bottom:577.304096px;}
.ycb{bottom:579.238500px;}
.y73{bottom:587.044502px;}
.y78{bottom:589.447751px;}
.ye8{bottom:592.471500px;}
.y7a{bottom:593.393580px;}
.y11{bottom:598.071000px;}
.y48{bottom:602.154000px;}
.yca{bottom:610.224000px;}
.ye7{bottom:623.457000px;}
.y10{bottom:629.056500px;}
.y47{bottom:633.141000px;}
.yc9{bottom:641.211000px;}
.ye6{bottom:654.442500px;}
.yf{bottom:661.657500px;}
.y46{bottom:665.740500px;}
.yc8{bottom:672.196500px;}
.ye5{bottom:685.429500px;}
.yc7{bottom:703.182000px;}
.y45{bottom:704.796000px;}
.ye4{bottom:716.415000px;}
.yc6{bottom:734.169000px;}
.y2f{bottom:735.783000px;}
.ye3{bottom:749.016000px;}
.ye{bottom:756.141000px;}
.yc5{bottom:765.154500px;}
.y2e{bottom:766.768500px;}
.yd{bottom:787.128000px;}
.ye2{bottom:788.071500px;}
.yc4{bottom:796.141500px;}
.y2d{bottom:797.755500px;}
.yc{bottom:818.113500px;}
.ye1{bottom:819.057000px;}
.yc3{bottom:827.127000px;}
.y2c{bottom:828.741000px;}
.yb{bottom:849.100500px;}
.ye0{bottom:850.044000px;}
.yc2{bottom:858.114000px;}
.y2b{bottom:859.728000px;}
.ya{bottom:880.086000px;}
.ydf{bottom:881.029500px;}
.yc1{bottom:889.099500px;}
.y2a{bottom:890.713500px;}
.y9{bottom:911.071500px;}
.yde{bottom:912.016500px;}
.yc0{bottom:920.086500px;}
.y29{bottom:921.699000px;}
.y8{bottom:942.058500px;}
.ydd{bottom:943.002000px;}
.ybf{bottom:951.072000px;}
.y28{bottom:952.686000px;}
.y7{bottom:967.225500px;}
.ydc{bottom:973.989000px;}
.ybe{bottom:982.057500px;}
.y27{bottom:983.671500px;}
.y6{bottom:998.212500px;}
.ydb{bottom:1006.588500px;}
.ybd{bottom:1013.044500px;}
.y26{bottom:1014.658500px;}
.y5{bottom:1029.198000px;}
.ybc{bottom:1044.030000px;}
.y25{bottom:1045.644000px;}
.y4{bottom:1060.185000px;}
.ybb{bottom:1075.017000px;}
.y24{bottom:1076.631000px;}
.y3{bottom:1100.137500px;}
.yba{bottom:1106.002500px;}
.y23{bottom:1107.616500px;}
.y2{bottom:1138.602000px;}
.y22{bottom:1194.451500px;}
.hb{height:21.718796px;}
.h15{height:25.872279px;}
.h1f{height:25.872505px;}
.h20{height:25.872532px;}
.h21{height:25.872534px;}
.h1c{height:25.872787px;}
.h1d{height:25.872795px;}
.h1e{height:25.872801px;}
.h1b{height:25.873059px;}
.h11{height:28.829699px;}
.hc{height:30.432854px;}
.h16{height:30.705739px;}
.h19{height:31.046269px;}
.h22{height:31.046535px;}
.h12{height:32.947874px;}
.h18{height:36.221035px;}
.h17{height:36.828503px;}
.h8{height:37.013299px;}
.h10{height:37.066667px;}
.h24{height:41.125613px;}
.h1a{height:41.395025px;}
.h13{height:44.901856px;}
.h23{height:49.090950px;}
.ha{height:49.351066px;}
.h9{height:49.637990px;}
.hd{height:50.728903px;}
.h6{height:52.455014px;}
.he{height:53.798400px;}
.h3{height:59.565422px;}
.h7{height:63.053299px;}
.h4{height:66.382800px;}
.h5{height:66.388800px;}
.hf{height:219.931425px;}
.h14{height:602.389440px;}
.h2{height:1262.833500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:297.640800px;}
.w3{width:340.151175px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:9.026735px;}
.x1f{left:10.236622px;}
.x15{left:14.990696px;}
.x1c{left:16.479882px;}
.x17{left:20.496994px;}
.x18{left:26.003291px;}
.x2b{left:28.345266px;}
.x20{left:39.991640px;}
.x12{left:44.307555px;}
.x13{left:46.911939px;}
.x2a{left:49.049292px;}
.x29{left:53.527455px;}
.x8{left:106.299000px;}
.x10{left:108.000000px;}
.x2c{left:113.770500px;}
.x1{left:114.870000px;}
.x7{left:121.746000px;}
.xe{left:123.855000px;}
.xf{left:126.922500px;}
.xc{left:134.881500px;}
.x9{left:138.459000px;}
.x21{left:143.932872px;}
.x14{left:149.475580px;}
.x3{left:151.591500px;}
.x28{left:156.935776px;}
.xa{left:164.595000px;}
.x1e{left:178.307274px;}
.x24{left:182.775440px;}
.x4{left:185.215500px;}
.x23{left:191.188457px;}
.x25{left:198.425127px;}
.x27{left:208.911856px;}
.x5{left:221.707500px;}
.x22{left:223.609981px;}
.x26{left:229.792913px;}
.xd{left:262.381500px;}
.x1b{left:264.384105px;}
.xb{left:273.787500px;}
.x2{left:292.617000px;}
.x1d{left:295.169049px;}
.x19{left:304.320739px;}
.x1a{left:332.044828px;}
.x6{left:418.159500px;}
.x11{left:488.977500px;}
@media print{
.v2{vertical-align:-23.146667pt;}
.v3{vertical-align:-19.285333pt;}
.v6{vertical-align:-10.108928pt;}
.v7{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.730667pt;}
.v5{vertical-align:15.795200pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:23.141333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.002133pt;}
.ls10{letter-spacing:0.002227pt;}
.lse{letter-spacing:0.003828pt;}
.ls13{letter-spacing:1.591561pt;}
.ls0{letter-spacing:2.654933pt;}
.ls4{letter-spacing:2.655200pt;}
.ls1{letter-spacing:2.660267pt;}
.ls23{letter-spacing:2.996753pt;}
.lsf{letter-spacing:3.191239pt;}
.ls1a{letter-spacing:3.587908pt;}
.ls12{letter-spacing:5.288892pt;}
.ls14{letter-spacing:5.294959pt;}
.ls22{letter-spacing:5.418743pt;}
.ls11{letter-spacing:6.625391pt;}
.ls25{letter-spacing:8.337309pt;}
.ls24{letter-spacing:8.388753pt;}
.ls1f{letter-spacing:8.801309pt;}
.ls21{letter-spacing:8.806642pt;}
.ls20{letter-spacing:8.855322pt;}
.ls1e{letter-spacing:8.858086pt;}
.lsc{letter-spacing:9.742933pt;}
.ls1d{letter-spacing:14.113309pt;}
.ls7{letter-spacing:14.235976pt;}
.ls6{letter-spacing:14.295467pt;}
.ls26{letter-spacing:15.436655pt;}
.ls18{letter-spacing:15.467976pt;}
.ls16{letter-spacing:15.473309pt;}
.ls17{letter-spacing:15.522278pt;}
.ls9{letter-spacing:17.243976pt;}
.ls8{letter-spacing:17.292800pt;}
.lsb{letter-spacing:17.697309pt;}
.ls3{letter-spacing:18.078933pt;}
.ls2{letter-spacing:18.596267pt;}
.ls1c{letter-spacing:18.823322pt;}
.ls1b{letter-spacing:20.710724pt;}
.ls19{letter-spacing:20.814225pt;}
.ls15{letter-spacing:20.816077pt;}
.lsa{letter-spacing:23.042202pt;}
.ws21{word-spacing:-15.940267pt;}
.ws43{word-spacing:-14.051059pt;}
.ws2{word-spacing:-11.955200pt;}
.ws40{word-spacing:-10.538384pt;}
.ws3c{word-spacing:-10.538294pt;}
.ws3a{word-spacing:-8.782043pt;}
.ws71{word-spacing:-3.251814pt;}
.wsf{word-spacing:-3.060531pt;}
.ws1b{word-spacing:-2.933009pt;}
.ws4b{word-spacing:-2.486682pt;}
.ws74{word-spacing:-2.422921pt;}
.ws39{word-spacing:-2.231637pt;}
.ws2f{word-spacing:-2.167876pt;}
.ws6a{word-spacing:-2.104115pt;}
.ws5f{word-spacing:-1.912832pt;}
.ws13{word-spacing:-1.849071pt;}
.ws50{word-spacing:-1.657788pt;}
.ws65{word-spacing:-1.594027pt;}
.ws44{word-spacing:-1.492284pt;}
.ws53{word-spacing:-1.275221pt;}
.ws4c{word-spacing:-0.956416pt;}
.ws69{word-spacing:-0.765133pt;}
.ws37{word-spacing:-0.701372pt;}
.ws14{word-spacing:-0.573850pt;}
.ws66{word-spacing:-0.510089pt;}
.ws70{word-spacing:-0.382566pt;}
.ws10{word-spacing:-0.318805pt;}
.ws72{word-spacing:-0.127522pt;}
.ws6{word-spacing:-0.063761pt;}
.ws49{word-spacing:-0.058182pt;}
.ws17{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws48{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.ws62{word-spacing:0.063761pt;}
.ws1f{word-spacing:0.191283pt;}
.ws12{word-spacing:0.446327pt;}
.ws6d{word-spacing:0.510089pt;}
.ws35{word-spacing:0.573850pt;}
.ws1e{word-spacing:0.701372pt;}
.ws61{word-spacing:0.765133pt;}
.ws38{word-spacing:1.020177pt;}
.wsc{word-spacing:1.083938pt;}
.ws1a{word-spacing:1.147699pt;}
.ws8{word-spacing:1.275221pt;}
.ws4d{word-spacing:1.402743pt;}
.ws36{word-spacing:2.040354pt;}
.ws22{word-spacing:2.359159pt;}
.ws59{word-spacing:2.422921pt;}
.ws56{word-spacing:2.433015pt;}
.ws57{word-spacing:2.436267pt;}
.ws58{word-spacing:2.441600pt;}
.ws5c{word-spacing:2.741726pt;}
.ws68{word-spacing:2.996770pt;}
.ws5a{word-spacing:3.060531pt;}
.ws7{word-spacing:3.188053pt;}
.ws23{word-spacing:3.315575pt;}
.ws6e{word-spacing:3.379337pt;}
.ws6b{word-spacing:3.443098pt;}
.ws51{word-spacing:3.634381pt;}
.ws52{word-spacing:3.698142pt;}
.ws2b{word-spacing:3.825664pt;}
.ws63{word-spacing:4.016947pt;}
.wse{word-spacing:4.271991pt;}
.wsd{word-spacing:4.654558pt;}
.ws11{word-spacing:4.718319pt;}
.ws73{word-spacing:5.037124pt;}
.ws31{word-spacing:5.164646pt;}
.ws20{word-spacing:5.610974pt;}
.ws1d{word-spacing:5.738496pt;}
.ws67{word-spacing:5.993540pt;}
.ws2c{word-spacing:6.057301pt;}
.wsa{word-spacing:6.184823pt;}
.ws24{word-spacing:6.248585pt;}
.ws55{word-spacing:6.312346pt;}
.ws54{word-spacing:6.376107pt;}
.ws9{word-spacing:6.439868pt;}
.ws6c{word-spacing:6.631151pt;}
.ws64{word-spacing:7.077478pt;}
.ws2a{word-spacing:7.396284pt;}
.ws5b{word-spacing:7.651328pt;}
.ws6f{word-spacing:7.842611pt;}
.ws1c{word-spacing:8.033894pt;}
.ws32{word-spacing:8.161417pt;}
.ws33{word-spacing:8.288939pt;}
.ws34{word-spacing:8.352700pt;}
.ws4e{word-spacing:8.416461pt;}
.ws26{word-spacing:8.607744pt;}
.wsb{word-spacing:9.564160pt;}
.ws60{word-spacing:9.691682pt;}
.ws2d{word-spacing:10.393054pt;}
.ws4f{word-spacing:11.094426pt;}
.ws47{word-spacing:11.636373pt;}
.ws46{word-spacing:12.334556pt;}
.ws45{word-spacing:13.149102pt;}
.ws16{word-spacing:13.228999pt;}
.ws15{word-spacing:13.230333pt;}
.ws2e{word-spacing:13.963674pt;}
.ws29{word-spacing:14.487285pt;}
.ws28{word-spacing:14.778194pt;}
.ws4a{word-spacing:15.285101pt;}
.ws5{word-spacing:15.366417pt;}
.ws4{word-spacing:15.876506pt;}
.ws19{word-spacing:17.640444pt;}
.ws0{word-spacing:19.051754pt;}
.ws5d{word-spacing:19.645491pt;}
.ws3f{word-spacing:19.661165pt;}
.ws18{word-spacing:20.327755pt;}
.ws30{word-spacing:20.594825pt;}
.ws27{word-spacing:22.341837pt;}
.ws5e{word-spacing:27.309491pt;}
.ws42{word-spacing:33.755442pt;}
.ws3e{word-spacing:33.763228pt;}
.ws41{word-spacing:52.567495pt;}
.ws25{word-spacing:67.150317pt;}
.ws3b{word-spacing:594.780156pt;}
.ws3d{word-spacing:621.663534pt;}
._c{margin-left:-198.238580pt;}
._12{margin-left:-184.298914pt;}
._10{margin-left:-67.475765pt;}
._e{margin-left:-64.291532pt;}
._13{margin-left:-62.876504pt;}
._4{margin-left:-8.237338pt;}
._2{margin-left:-7.039202pt;}
._1{margin-left:-5.661967pt;}
._6{margin-left:-4.463275pt;}
._5{margin-left:-3.262688pt;}
._0{margin-left:-1.912827pt;}
._3{margin-left:-0.956416pt;}
._17{width:2.904162pt;}
._14{width:4.244579pt;}
._16{width:7.077478pt;}
._19{width:12.624686pt;}
._18{width:18.374055pt;}
._8{width:19.702164pt;}
._15{width:25.271130pt;}
._7{width:26.397076pt;}
._1a{width:31.242714pt;}
._f{width:47.814287pt;}
._a{width:78.746262pt;}
._11{width:184.173080pt;}
._b{width:214.524990pt;}
._d{width:220.385621pt;}
._9{width:1317.403231pt;}
.fsb{font-size:15.795042pt;}
.fsd{font-size:18.954240pt;}
.fs10{font-size:25.271720pt;}
.fsa{font-size:31.590084pt;}
.fs15{font-size:31.590360pt;}
.fs16{font-size:31.590393pt;}
.fs17{font-size:31.590396pt;}
.fs12{font-size:31.590704pt;}
.fs13{font-size:31.590715pt;}
.fs14{font-size:31.590721pt;}
.fs11{font-size:31.591036pt;}
.fs7{font-size:35.201097pt;}
.fs5{font-size:37.193600pt;}
.fsc{font-size:37.907532pt;}
.fs18{font-size:37.907858pt;}
.fs3{font-size:39.318933pt;}
.fs8{font-size:40.229394pt;}
.fs19{font-size:42.507200pt;}
.fse{font-size:44.225928pt;}
.fs6{font-size:45.258446pt;}
.fs2{font-size:47.820800pt;}
.fsf{font-size:50.543376pt;}
.fs4{font-size:53.133867pt;}
.fs9{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001333pt;}
.y33{bottom:2.263966pt;}
.yb4{bottom:2.404819pt;}
.y32{bottom:11.744762pt;}
.yb3{bottom:17.264312pt;}
.y3c{bottom:19.776385pt;}
.y3f{bottom:21.288796pt;}
.ya5{bottom:24.029949pt;}
.y41{bottom:29.823864pt;}
.ya0{bottom:35.305747pt;}
.y3b{bottom:42.179814pt;}
.y9f{bottom:49.236955pt;}
.ya4{bottom:59.000600pt;}
.yaf{bottom:60.346904pt;}
.yb0{bottom:62.005399pt;}
.y9e{bottom:63.452635pt;}
.y3a{bottom:64.582993pt;}
.y40{bottom:75.696641pt;}
.y9d{bottom:77.384160pt;}
.y35{bottom:81.759488pt;}
.ya6{bottom:84.081009pt;}
.ya7{bottom:86.229712pt;}
.y39{bottom:86.760063pt;}
.y9c{bottom:91.315684pt;}
.ya3{bottom:93.971252pt;}
.y58{bottom:94.557333pt;}
.yfa{bottom:98.236000pt;}
.yda{bottom:101.729333pt;}
.y21{bottom:103.574667pt;}
.y3e{bottom:104.029528pt;}
.y9b{bottom:105.531364pt;}
.yae{bottom:108.277676pt;}
.y38{bottom:108.937134pt;}
.yb2{bottom:114.065865pt;}
.yad{bottom:114.389628pt;}
.y9a{bottom:119.462573pt;}
.yf9{bottom:121.030667pt;}
.y20{bottom:121.880000pt;}
.yac{bottom:122.042403pt;}
.y57{bottom:122.100000pt;}
.yb1{bottom:126.006998pt;}
.ya2{bottom:128.538021pt;}
.yab{bottom:128.699290pt;}
.yd9{bottom:129.273333pt;}
.y37{bottom:131.340313pt;}
.y99{bottom:133.393781pt;}
.yf8{bottom:143.825333pt;}
.y1f{bottom:146.013333pt;}
.y98{bottom:147.324989pt;}
.yaa{bottom:147.457669pt;}
.ya9{bottom:149.147756pt;}
.y56{bottom:149.642667pt;}
.ya8{bottom:152.861997pt;}
.y36{bottom:153.969913pt;}
.yd8{bottom:156.816000pt;}
.y97{bottom:161.540669pt;}
.ya1{bottom:163.628005pt;}
.yf7{bottom:166.620000pt;}
.yb5{bottom:169.190285pt;}
.y1e{bottom:173.556000pt;}
.y31{bottom:173.748183pt;}
.y34{bottom:176.147298pt;}
.y55{bottom:177.186667pt;}
.y93{bottom:181.499326pt;}
.yd7{bottom:184.360000pt;}
.y3d{bottom:187.070103pt;}
.yf6{bottom:189.413333pt;}
.y92{bottom:196.358819pt;}
.y1d{bottom:201.100000pt;}
.y72{bottom:203.123824pt;}
.y54{bottom:204.729333pt;}
.yd6{bottom:211.902667pt;}
.yf5{bottom:212.208000pt;}
.y6d{bottom:212.694135pt;}
.y6c{bottom:226.625660pt;}
.y1c{bottom:228.642667pt;}
.y53{bottom:232.273333pt;}
.yf4{bottom:235.002667pt;}
.y71{bottom:238.094476pt;}
.y8e{bottom:239.441016pt;}
.yd5{bottom:239.445333pt;}
.y6b{bottom:240.841340pt;}
.y8f{bottom:241.099511pt;}
.y6a{bottom:255.057020pt;}
.y1b{bottom:256.186667pt;}
.yf3{bottom:257.797333pt;}
.y52{bottom:259.816000pt;}
.y79{bottom:263.175674pt;}
.y7b{bottom:265.324611pt;}
.yd4{bottom:266.989333pt;}
.y69{bottom:269.272700pt;}
.y70{bottom:273.065127pt;}
.yf2{bottom:280.592000pt;}
.y68{bottom:283.488380pt;}
.y1a{bottom:283.729333pt;}
.y51{bottom:287.360000pt;}
.y8d{bottom:287.372340pt;}
.y91{bottom:293.160530pt;}
.y8c{bottom:293.484293pt;}
.yd3{bottom:294.532000pt;}
.y67{bottom:297.704060pt;}
.y8b{bottom:301.137068pt;}
.yf1{bottom:303.385333pt;}
.y90{bottom:305.101663pt;}
.y6f{bottom:307.631896pt;}
.y8a{bottom:307.793165pt;}
.y19{bottom:311.273333pt;}
.y66{bottom:311.919740pt;}
.y50{bottom:314.902667pt;}
.yd2{bottom:322.076000pt;}
.yb9{bottom:322.488000pt;}
.y65{bottom:326.135420pt;}
.yf0{bottom:326.180000pt;}
.y89{bottom:326.551544pt;}
.y88{bottom:328.242420pt;}
.y44{bottom:331.652000pt;}
.y7c{bottom:331.956662pt;}
.y18{bottom:338.816000pt;}
.y64{bottom:340.066628pt;}
.y4f{bottom:342.445333pt;}
.y6e{bottom:342.721880pt;}
.y96{bottom:348.284476pt;}
.yb8{bottom:348.322667pt;}
.yef{bottom:348.974667pt;}
.yd1{bottom:349.618667pt;}
.y43{bottom:357.486667pt;}
.y95{bottom:360.571720pt;}
.y17{bottom:366.358667pt;}
.y4e{bottom:369.989333pt;}
.yee{bottom:371.769333pt;}
.yb7{bottom:374.156000pt;}
.y94{bottom:375.431212pt;}
.yd0{bottom:377.162667pt;}
.y77{bottom:382.219278pt;}
.y42{bottom:383.320000pt;}
.y63{bottom:385.218076pt;}
.y16{bottom:393.902667pt;}
.yed{bottom:394.564000pt;}
.y4d{bottom:397.532000pt;}
.y62{bottom:399.433756pt;}
.yb6{bottom:399.989333pt;}
.ycf{bottom:404.705333pt;}
.y61{bottom:413.649436pt;}
.y76{bottom:417.189930pt;}
.yec{bottom:417.357333pt;}
.y84{bottom:418.536471pt;}
.y85{bottom:420.194966pt;}
.y15{bottom:421.445333pt;}
.y30{bottom:422.438667pt;}
.y4c{bottom:425.076000pt;}
.y60{bottom:427.865116pt;}
.yce{bottom:432.248000pt;}
.y59{bottom:439.108000pt;}
.yeb{bottom:440.152000pt;}
.y5f{bottom:442.080796pt;}
.y14{bottom:448.989333pt;}
.y75{bottom:452.160582pt;}
.y4b{bottom:452.618667pt;}
.y5e{bottom:456.296476pt;}
.ycd{bottom:459.792000pt;}
.yea{bottom:464.381333pt;}
.y83{bottom:466.467005pt;}
.y5d{bottom:470.512156pt;}
.y87{bottom:472.255195pt;}
.y82{bottom:472.578958pt;}
.y13{bottom:476.532000pt;}
.y4a{bottom:480.162667pt;}
.y81{bottom:480.231732pt;}
.y86{bottom:484.196328pt;}
.y5c{bottom:484.727836pt;}
.y74{bottom:486.727351pt;}
.y80{bottom:486.888620pt;}
.ycc{bottom:487.334667pt;}
.y5b{bottom:498.943516pt;}
.ye9{bottom:499.097333pt;}
.y12{bottom:504.076000pt;}
.y7f{bottom:505.646999pt;}
.y7e{bottom:507.337085pt;}
.y49{bottom:507.705333pt;}
.y7d{bottom:511.060804pt;}
.y5a{bottom:513.159196pt;}
.ycb{bottom:514.878667pt;}
.y73{bottom:521.817335pt;}
.y78{bottom:523.953557pt;}
.ye8{bottom:526.641333pt;}
.y7a{bottom:527.460960pt;}
.y11{bottom:531.618667pt;}
.y48{bottom:535.248000pt;}
.yca{bottom:542.421333pt;}
.ye7{bottom:554.184000pt;}
.y10{bottom:559.161333pt;}
.y47{bottom:562.792000pt;}
.yc9{bottom:569.965333pt;}
.ye6{bottom:581.726667pt;}
.yf{bottom:588.140000pt;}
.y46{bottom:591.769333pt;}
.yc8{bottom:597.508000pt;}
.ye5{bottom:609.270667pt;}
.yc7{bottom:625.050667pt;}
.y45{bottom:626.485333pt;}
.ye4{bottom:636.813333pt;}
.yc6{bottom:652.594667pt;}
.y2f{bottom:654.029333pt;}
.ye3{bottom:665.792000pt;}
.ye{bottom:672.125333pt;}
.yc5{bottom:680.137333pt;}
.y2e{bottom:681.572000pt;}
.yd{bottom:699.669333pt;}
.ye2{bottom:700.508000pt;}
.yc4{bottom:707.681333pt;}
.y2d{bottom:709.116000pt;}
.yc{bottom:727.212000pt;}
.ye1{bottom:728.050667pt;}
.yc3{bottom:735.224000pt;}
.y2c{bottom:736.658667pt;}
.yb{bottom:754.756000pt;}
.ye0{bottom:755.594667pt;}
.yc2{bottom:762.768000pt;}
.y2b{bottom:764.202667pt;}
.ya{bottom:782.298667pt;}
.ydf{bottom:783.137333pt;}
.yc1{bottom:790.310667pt;}
.y2a{bottom:791.745333pt;}
.y9{bottom:809.841333pt;}
.yde{bottom:810.681333pt;}
.yc0{bottom:817.854667pt;}
.y29{bottom:819.288000pt;}
.y8{bottom:837.385333pt;}
.ydd{bottom:838.224000pt;}
.ybf{bottom:845.397333pt;}
.y28{bottom:846.832000pt;}
.y7{bottom:859.756000pt;}
.ydc{bottom:865.768000pt;}
.ybe{bottom:872.940000pt;}
.y27{bottom:874.374667pt;}
.y6{bottom:887.300000pt;}
.ydb{bottom:894.745333pt;}
.ybd{bottom:900.484000pt;}
.y26{bottom:901.918667pt;}
.y5{bottom:914.842667pt;}
.ybc{bottom:928.026667pt;}
.y25{bottom:929.461333pt;}
.y4{bottom:942.386667pt;}
.ybb{bottom:955.570667pt;}
.y24{bottom:957.005333pt;}
.y3{bottom:977.900000pt;}
.yba{bottom:983.113333pt;}
.y23{bottom:984.548000pt;}
.y2{bottom:1012.090667pt;}
.y22{bottom:1061.734667pt;}
.hb{height:19.305596pt;}
.h15{height:22.997581pt;}
.h1f{height:22.997782pt;}
.h20{height:22.997806pt;}
.h21{height:22.997808pt;}
.h1c{height:22.998033pt;}
.h1d{height:22.998040pt;}
.h1e{height:22.998045pt;}
.h1b{height:22.998274pt;}
.h11{height:25.626399pt;}
.hc{height:27.051426pt;}
.h16{height:27.293991pt;}
.h19{height:27.596684pt;}
.h22{height:27.596920pt;}
.h12{height:29.286999pt;}
.h18{height:32.196476pt;}
.h17{height:32.736447pt;}
.h8{height:32.900710pt;}
.h10{height:32.948148pt;}
.h24{height:36.556100pt;}
.h1a{height:36.795578pt;}
.h13{height:39.912761pt;}
.h23{height:43.636400pt;}
.ha{height:43.867614pt;}
.h9{height:44.122658pt;}
.hd{height:45.092358pt;}
.h6{height:46.626679pt;}
.he{height:47.820800pt;}
.h3{height:52.947042pt;}
.h7{height:56.047377pt;}
.h4{height:59.006933pt;}
.h5{height:59.012267pt;}
.hf{height:195.494600pt;}
.h14{height:535.457280pt;}
.h2{height:1122.518667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:264.569600pt;}
.w3{width:302.356600pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:8.023765pt;}
.x1f{left:9.099220pt;}
.x15{left:13.325063pt;}
.x1c{left:14.648784pt;}
.x17{left:18.219550pt;}
.x18{left:23.114037pt;}
.x2b{left:25.195792pt;}
.x20{left:35.548124pt;}
.x12{left:39.384493pt;}
.x13{left:41.699501pt;}
.x2a{left:43.599370pt;}
.x29{left:47.579960pt;}
.x8{left:94.488000pt;}
.x10{left:96.000000pt;}
.x2c{left:101.129333pt;}
.x1{left:102.106667pt;}
.x7{left:108.218667pt;}
.xe{left:110.093333pt;}
.xf{left:112.820000pt;}
.xc{left:119.894667pt;}
.x9{left:123.074667pt;}
.x21{left:127.940330pt;}
.x14{left:132.867182pt;}
.x3{left:134.748000pt;}
.x28{left:139.498468pt;}
.xa{left:146.306667pt;}
.x1e{left:158.495355pt;}
.x24{left:162.467058pt;}
.x4{left:164.636000pt;}
.x23{left:169.945295pt;}
.x25{left:176.377891pt;}
.x27{left:185.699428pt;}
.x5{left:197.073333pt;}
.x22{left:198.764428pt;}
.x26{left:204.260367pt;}
.xd{left:233.228000pt;}
.x1b{left:235.008093pt;}
.xb{left:243.366667pt;}
.x2{left:260.104000pt;}
.x1d{left:262.372488pt;}
.x19{left:270.507324pt;}
.x1a{left:295.150958pt;}
.x6{left:371.697333pt;}
.x11{left:434.646667pt;}
}




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