
    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_b545072f54489a76173ca081.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895000;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_9356c1ce8a16662f0abeed78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3fc831852c2313bd19687557.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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_6227d47edc01c83db9585d68.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_080acd9689de4a8f47baf598.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.414243;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_ab4c943bff2ece5dcde28b1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.438643;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_bab6da723c3f5553dbb1f0ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb8a3b9c1395b75730985bd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.097000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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(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);}
.v1{vertical-align:-55.326000px;}
.v3{vertical-align:-26.028000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.034000px;}
.v5{vertical-align:48.372000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001864px;}
.lsd{letter-spacing:0.002400px;}
.ls1a{letter-spacing:0.002669px;}
.ls17{letter-spacing:0.002726px;}
.ls12{letter-spacing:1.286726px;}
.lsf{letter-spacing:1.292726px;}
.ls1b{letter-spacing:2.987700px;}
.ls5{letter-spacing:2.988479px;}
.ls2b{letter-spacing:2.993700px;}
.ls20{letter-spacing:2.994479px;}
.ls2d{letter-spacing:17.335200px;}
.ls2f{letter-spacing:17.701200px;}
.ls25{letter-spacing:17.929200px;}
.ls0{letter-spacing:17.935200px;}
.ls2{letter-spacing:17.936400px;}
.ls30{letter-spacing:19.231200px;}
.ls8{letter-spacing:19.483440px;}
.ls9{letter-spacing:19.483638px;}
.lsc{letter-spacing:19.483864px;}
.lsb{letter-spacing:19.484400px;}
.ls6{letter-spacing:19.621864px;}
.ls28{letter-spacing:19.687200px;}
.ls13{letter-spacing:20.131638px;}
.ls10{letter-spacing:20.132400px;}
.ls11{letter-spacing:20.137864px;}
.ls26{letter-spacing:20.665200px;}
.ls1{letter-spacing:20.921700px;}
.ls1d{letter-spacing:20.923864px;}
.ls1e{letter-spacing:20.924400px;}
.ls1f{letter-spacing:20.929864px;}
.ls1c{letter-spacing:20.930400px;}
.ls23{letter-spacing:21.344400px;}
.lsa{letter-spacing:22.471873px;}
.lse{letter-spacing:22.477654px;}
.ls14{letter-spacing:23.119873px;}
.ls2a{letter-spacing:23.383200px;}
.ls29{letter-spacing:24.013200px;}
.ls24{letter-spacing:24.542400px;}
.ls31{letter-spacing:24.643200px;}
.ls2c{letter-spacing:25.381200px;}
.ls19{letter-spacing:26.207347px;}
.ls15{letter-spacing:26.216726px;}
.ls21{letter-spacing:26.785864px;}
.ls27{letter-spacing:27.337200px;}
.ls18{letter-spacing:29.203654px;}
.ls16{letter-spacing:29.203873px;}
.ls2e{letter-spacing:36.349200px;}
.ls22{letter-spacing:711.360593px;}
.ls4{letter-spacing:2400.524400px;}
.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;}
}
.wsaf{word-spacing:-727.724243px;}
.ws1{word-spacing:-17.932800px;}
.ws4{word-spacing:-11.955150px;}
.wsab{word-spacing:-4.232141px;}
.ws28{word-spacing:-4.160410px;}
.wsa2{word-spacing:-4.088678px;}
.wsc6{word-spacing:-4.016947px;}
.ws27{word-spacing:-3.945216px;}
.ws58{word-spacing:-3.873485px;}
.ws57{word-spacing:-3.801754px;}
.wsd7{word-spacing:-3.730022px;}
.wsc7{word-spacing:-3.514829px;}
.ws25{word-spacing:-3.227904px;}
.wse3{word-spacing:-3.012710px;}
.ws19{word-spacing:-2.940979px;}
.ws93{word-spacing:-2.869248px;}
.wsed{word-spacing:-2.582323px;}
.ws94{word-spacing:-2.438861px;}
.ws26{word-spacing:-2.295398px;}
.ws33{word-spacing:-2.223667px;}
.ws56{word-spacing:-2.151936px;}
.ws90{word-spacing:-1.936742px;}
.ws1e{word-spacing:-1.865011px;}
.wsd2{word-spacing:-1.793280px;}
.ws37{word-spacing:-1.721549px;}
.ws38{word-spacing:-1.649818px;}
.wse{word-spacing:-1.578086px;}
.ws11{word-spacing:-1.506355px;}
.ws8a{word-spacing:-1.434624px;}
.ws59{word-spacing:-1.291162px;}
.ws15{word-spacing:-1.075968px;}
.wsdd{word-spacing:-1.004237px;}
.wsc5{word-spacing:-0.932506px;}
.ws4f{word-spacing:-0.789043px;}
.wsc{word-spacing:-0.717312px;}
.wsa{word-spacing:-0.502118px;}
.ws7b{word-spacing:-0.430387px;}
.wsef{word-spacing:-0.320794px;}
.wsd8{word-spacing:-0.286925px;}
.ws79{word-spacing:-0.215194px;}
.ws51{word-spacing:-0.071731px;}
.wsb6{word-spacing:-0.007200px;}
.ws3{word-spacing:-0.005731px;}
.wse2{word-spacing:-0.005261px;}
.wsee{word-spacing:-0.004704px;}
.wsf1{word-spacing:-0.003024px;}
.ws2{word-spacing:0.000000px;}
.wscf{word-spacing:0.000029px;}
.ws0{word-spacing:0.000326px;}
.wsb5{word-spacing:0.002938px;}
.ws7c{word-spacing:0.143462px;}
.ws8b{word-spacing:0.215194px;}
.ws68{word-spacing:0.286925px;}
.wsc8{word-spacing:0.430387px;}
.ws1b{word-spacing:0.502118px;}
.wsb{word-spacing:0.573850px;}
.ws7{word-spacing:0.645581px;}
.ws36{word-spacing:0.717312px;}
.ws66{word-spacing:0.860774px;}
.ws8c{word-spacing:0.932506px;}
.ws96{word-spacing:1.004237px;}
.ws44{word-spacing:1.075968px;}
.ws23{word-spacing:1.147699px;}
.ws5d{word-spacing:1.219430px;}
.ws99{word-spacing:1.291162px;}
.ws9{word-spacing:1.362893px;}
.ws17{word-spacing:1.434624px;}
.ws52{word-spacing:1.501200px;}
.ws18{word-spacing:1.506355px;}
.ws69{word-spacing:1.578086px;}
.wscc{word-spacing:1.649818px;}
.ws43{word-spacing:1.721549px;}
.ws29{word-spacing:1.793280px;}
.ws2a{word-spacing:1.865011px;}
.wsa6{word-spacing:1.936742px;}
.ws3f{word-spacing:2.008474px;}
.ws55{word-spacing:2.151936px;}
.ws6e{word-spacing:2.223667px;}
.ws6f{word-spacing:2.224493px;}
.wsb1{word-spacing:2.295398px;}
.wsc9{word-spacing:2.367130px;}
.ws1a{word-spacing:2.510592px;}
.wsb4{word-spacing:2.582323px;}
.ws34{word-spacing:2.654054px;}
.ws80{word-spacing:2.659104px;}
.ws7f{word-spacing:2.691600px;}
.ws81{word-spacing:2.695200px;}
.ws50{word-spacing:2.725786px;}
.ws8d{word-spacing:2.797517px;}
.ws35{word-spacing:2.940979px;}
.ws5f{word-spacing:3.012710px;}
.wse7{word-spacing:3.084442px;}
.wsce{word-spacing:3.223296px;}
.ws6{word-spacing:3.227904px;}
.wsec{word-spacing:3.275837px;}
.ws91{word-spacing:3.299635px;}
.ws3d{word-spacing:3.371366px;}
.wsb2{word-spacing:3.380966px;}
.ws8e{word-spacing:3.443098px;}
.wsd{word-spacing:3.496915px;}
.ws14{word-spacing:3.514829px;}
.ws92{word-spacing:3.586560px;}
.ws77{word-spacing:3.730022px;}
.wsbe{word-spacing:3.801754px;}
.ws98{word-spacing:3.873485px;}
.wsb7{word-spacing:3.889584px;}
.ws82{word-spacing:3.945216px;}
.ws84{word-spacing:4.016947px;}
.ws67{word-spacing:4.088678px;}
.ws39{word-spacing:4.232141px;}
.wse5{word-spacing:4.297690px;}
.wsdb{word-spacing:4.299658px;}
.ws1f{word-spacing:4.300013px;}
.ws20{word-spacing:4.303872px;}
.ws88{word-spacing:4.375603px;}
.wsad{word-spacing:4.447334px;}
.ws4e{word-spacing:4.519066px;}
.ws10{word-spacing:4.590797px;}
.wsf{word-spacing:4.662528px;}
.wsa1{word-spacing:4.674384px;}
.ws7d{word-spacing:4.684310px;}
.ws2b{word-spacing:4.734259px;}
.ws9f{word-spacing:4.877722px;}
.ws1c{word-spacing:4.949453px;}
.ws16{word-spacing:5.021184px;}
.wsac{word-spacing:5.164646px;}
.wsde{word-spacing:5.308109px;}
.wsf3{word-spacing:5.373110px;}
.ws32{word-spacing:5.379840px;}
.ws5e{word-spacing:5.451571px;}
.ws5c{word-spacing:5.523302px;}
.wsbb{word-spacing:5.533670px;}
.ws42{word-spacing:5.666765px;}
.wsbd{word-spacing:5.738496px;}
.wsc3{word-spacing:5.810227px;}
.wsc2{word-spacing:5.881958px;}
.ws95{word-spacing:5.953690px;}
.wsb9{word-spacing:6.097152px;}
.wsa8{word-spacing:6.168883px;}
.ws41{word-spacing:6.240614px;}
.ws61{word-spacing:6.312346px;}
.ws30{word-spacing:6.384077px;}
.ws65{word-spacing:6.455808px;}
.ws12{word-spacing:6.527539px;}
.ws13{word-spacing:6.599270px;}
.wsa0{word-spacing:6.671002px;}
.ws4a{word-spacing:6.742733px;}
.ws22{word-spacing:6.814464px;}
.wscd{word-spacing:6.957926px;}
.ws75{word-spacing:7.029658px;}
.ws2e{word-spacing:7.101389px;}
.ws8{word-spacing:7.173120px;}
.ws5{word-spacing:7.244851px;}
.ws4d{word-spacing:7.316582px;}
.ws53{word-spacing:7.388314px;}
.ws54{word-spacing:7.399200px;}
.wsd3{word-spacing:7.499635px;}
.ws3a{word-spacing:7.531776px;}
.ws3b{word-spacing:7.675238px;}
.wsbf{word-spacing:7.746970px;}
.ws3e{word-spacing:7.818701px;}
.ws60{word-spacing:7.962163px;}
.wsca{word-spacing:8.033894px;}
.ws2f{word-spacing:8.249088px;}
.ws21{word-spacing:8.536013px;}
.wsaa{word-spacing:8.607744px;}
.wse1{word-spacing:8.751206px;}
.ws2c{word-spacing:8.822938px;}
.ws1d{word-spacing:8.894669px;}
.ws97{word-spacing:8.966250px;}
.ws87{word-spacing:8.966400px;}
.ws48{word-spacing:9.038131px;}
.ws4b{word-spacing:9.253325px;}
.wseb{word-spacing:9.468518px;}
.wse4{word-spacing:9.540250px;}
.ws5b{word-spacing:9.611981px;}
.ws31{word-spacing:9.683712px;}
.ws8f{word-spacing:9.755443px;}
.ws3c{word-spacing:9.970637px;}
.wsbc{word-spacing:10.042368px;}
.wsf2{word-spacing:10.114099px;}
.wscb{word-spacing:10.329293px;}
.ws73{word-spacing:10.354310px;}
.ws9d{word-spacing:10.448045px;}
.ws9c{word-spacing:10.461379px;}
.ws9e{word-spacing:10.472755px;}
.ws6c{word-spacing:10.518377px;}
.ws6b{word-spacing:10.518596px;}
.ws6a{word-spacing:10.520250px;}
.wsb3{word-spacing:10.687949px;}
.ws2d{word-spacing:10.759680px;}
.wsa5{word-spacing:10.791389px;}
.wsa4{word-spacing:10.801872px;}
.ws40{word-spacing:10.831411px;}
.ws62{word-spacing:10.903142px;}
.ws64{word-spacing:10.974874px;}
.ws86{word-spacing:10.990310px;}
.ws85{word-spacing:10.996310px;}
.ws6d{word-spacing:11.166377px;}
.ws70{word-spacing:11.168250px;}
.ws71{word-spacing:11.170423px;}
.wse8{word-spacing:11.190067px;}
.ws49{word-spacing:11.333530px;}
.ws45{word-spacing:11.692186px;}
.ws72{word-spacing:11.835648px;}
.ws78{word-spacing:11.964377px;}
.wsa7{word-spacing:12.122573px;}
.ws7e{word-spacing:12.388310px;}
.ws46{word-spacing:12.481229px;}
.wsf4{word-spacing:12.624691px;}
.wsd0{word-spacing:12.696422px;}
.wsb8{word-spacing:13.198541px;}
.wsdf{word-spacing:13.270272px;}
.wsd4{word-spacing:13.413734px;}
.ws24{word-spacing:13.628928px;}
.ws4c{word-spacing:13.772390px;}
.wsa9{word-spacing:13.844122px;}
.wse9{word-spacing:14.704896px;}
.wse0{word-spacing:15.135283px;}
.wsd6{word-spacing:15.637402px;}
.ws47{word-spacing:15.996058px;}
.ws76{word-spacing:16.022250px;}
.wsd1{word-spacing:16.067789px;}
.ws83{word-spacing:16.246310px;}
.wsdc{word-spacing:16.785101px;}
.ws9a{word-spacing:16.856832px;}
.ws89{word-spacing:17.215488px;}
.ws74{word-spacing:17.248423px;}
.ws5a{word-spacing:18.291456px;}
.wsea{word-spacing:18.434918px;}
.wsd5{word-spacing:18.865306px;}
.wsa3{word-spacing:19.080499px;}
.wsba{word-spacing:19.439155px;}
.ws63{word-spacing:19.941274px;}
.wsf0{word-spacing:21.591091px;}
.wse6{word-spacing:22.157981px;}
.ws9b{word-spacing:22.380134px;}
.wsc0{word-spacing:22.810522px;}
.wsc4{word-spacing:23.312640px;}
.wsae{word-spacing:23.886490px;}
.wsda{word-spacing:27.903437px;}
.ws7a{word-spacing:29.122867px;}
.wsd9{word-spacing:31.346534px;}
.wsc1{word-spacing:32.097821px;}
.wsf5{word-spacing:41.962752px;}
.wsb0{word-spacing:694.996943px;}
._34{margin-left:-711.360593px;}
._41{margin-left:-9.898906px;}
._3{margin-left:-8.069760px;}
._1a{margin-left:-5.738496px;}
._2{margin-left:-4.662528px;}
._1{margin-left:-3.287658px;}
._7{margin-left:-2.151936px;}
._4{margin-left:-1.075968px;}
._6{width:2.970608px;}
._15{width:15.709133px;}
._2c{width:17.072026px;}
._e{width:18.434918px;}
._3d{width:19.869542px;}
._18{width:21.017242px;}
._8{width:22.236672px;}
._c{width:24.101683px;}
._16{width:25.751501px;}
._a{width:26.899200px;}
._10{width:28.262093px;}
._11{width:29.768448px;}
._1f{width:30.776485px;}
._b{width:31.920384px;}
._5{width:33.355008px;}
._14{width:34.789632px;}
._9{width:36.652349px;}
._13{width:37.862096px;}
._19{width:39.165235px;}
._29{width:40.241203px;}
._f{width:41.532365px;}
._2d{width:43.253914px;}
._d{width:44.688538px;}
._3f{width:45.758515px;}
._17{width:46.840474px;}
._12{width:49.422797px;}
._2b{width:50.642227px;}
._2a{width:51.825792px;}
._1e{width:55.161293px;}
._1c{width:56.560051px;}
._2e{width:58.676122px;}
._1b{width:59.823821px;}
._3e{width:60.828058px;}
._2f{width:64.345181px;}
._42{width:66.616349px;}
._1d{width:82.060493px;}
._30{width:94.900378px;}
._40{width:106.664294px;}
._38{width:408.698522px;}
._35{width:427.745811px;}
._31{width:454.975835px;}
._20{width:479.695255px;}
._33{width:549.556822px;}
._3a{width:553.222279px;}
._32{width:565.920472px;}
._39{width:569.585929px;}
._28{width:679.418748px;}
._3b{width:694.996943px;}
._36{width:711.360593px;}
._24{width:761.236998px;}
._22{width:826.691598px;}
._0{width:1056.190090px;}
._25{width:1247.106494px;}
._23{width:1276.168336px;}
._27{width:1321.593829px;}
._21{width:1436.139379px;}
._26{width:1518.023083px;}
._37{width:1910.014973px;}
._3c{width:1926.376973px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(13,66,112);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs3{font-size:107.596800px;}
.fs2{font-size:191.282400px;}
.y0{bottom:0.000000px;}
.y23{bottom:74.623500px;}
.y60{bottom:78.169500px;}
.yb3{bottom:80.823000px;}
.ydc{bottom:81.805500px;}
.y8e{bottom:86.022000px;}
.y79{bottom:88.248000px;}
.yf6{bottom:88.249500px;}
.y22{bottom:100.410000px;}
.y5f{bottom:103.954500px;}
.yb2{bottom:106.608000px;}
.ydb{bottom:107.590500px;}
.y8d{bottom:111.808500px;}
.y78{bottom:114.034500px;}
.y21{bottom:126.195000px;}
.y5e{bottom:129.741000px;}
.yb1{bottom:132.394500px;}
.yda{bottom:133.377000px;}
.y8c{bottom:137.593500px;}
.y77{bottom:139.821000px;}
.y20{bottom:151.981500px;}
.y5d{bottom:155.526000px;}
.yb0{bottom:158.181000px;}
.yd9{bottom:159.162000px;}
.y8b{bottom:163.380000px;}
.y76{bottom:165.606000px;}
.y1f{bottom:177.766500px;}
.y5c{bottom:181.312500px;}
.yaf{bottom:183.966000px;}
.yd8{bottom:184.948500px;}
.y8a{bottom:189.165000px;}
.y75{bottom:191.392500px;}
.y1e{bottom:203.553000px;}
.y5b{bottom:207.099000px;}
.yae{bottom:209.752500px;}
.yd7{bottom:210.735000px;}
.y89{bottom:214.951500px;}
.y74{bottom:217.177500px;}
.y1d{bottom:229.339500px;}
.y5a{bottom:232.884000px;}
.yad{bottom:235.537500px;}
.yd6{bottom:236.520000px;}
.y88{bottom:240.738000px;}
.y73{bottom:242.964000px;}
.y1c{bottom:255.124500px;}
.y59{bottom:258.670500px;}
.yac{bottom:261.324000px;}
.yd5{bottom:262.306500px;}
.y87{bottom:266.523000px;}
.y72{bottom:268.749000px;}
.yf5{bottom:268.750500px;}
.y1b{bottom:280.911000px;}
.y58{bottom:284.455500px;}
.yab{bottom:287.109000px;}
.yd4{bottom:288.091500px;}
.y86{bottom:292.309500px;}
.y71{bottom:294.535500px;}
.y1a{bottom:306.696000px;}
.y57{bottom:310.242000px;}
.yaa{bottom:312.895500px;}
.yd3{bottom:313.878000px;}
.y85{bottom:318.094500px;}
.y70{bottom:320.322000px;}
.y19{bottom:332.482500px;}
.y56{bottom:336.027000px;}
.ya9{bottom:338.682000px;}
.yd2{bottom:339.663000px;}
.y84{bottom:343.881000px;}
.y6f{bottom:346.107000px;}
.y3f{bottom:358.267500px;}
.y55{bottom:361.813500px;}
.ya8{bottom:364.467000px;}
.yd1{bottom:365.449500px;}
.y83{bottom:369.666000px;}
.y6e{bottom:371.893500px;}
.y18{bottom:376.201500px;}
.y3e{bottom:384.054000px;}
.y54{bottom:387.600000px;}
.ya7{bottom:390.253500px;}
.yd0{bottom:391.236000px;}
.y82{bottom:395.452500px;}
.y6d{bottom:397.678500px;}
.y17{bottom:401.986500px;}
.y3d{bottom:409.840500px;}
.y53{bottom:413.385000px;}
.ya6{bottom:416.038500px;}
.ycf{bottom:417.021000px;}
.y81{bottom:421.239000px;}
.y6c{bottom:423.465000px;}
.y16{bottom:427.773000px;}
.y3c{bottom:435.625500px;}
.y52{bottom:439.171500px;}
.ya5{bottom:441.825000px;}
.yce{bottom:442.807500px;}
.y80{bottom:447.024000px;}
.y6b{bottom:449.250000px;}
.yf4{bottom:449.251500px;}
.y15{bottom:453.558000px;}
.y3b{bottom:461.412000px;}
.y51{bottom:464.956500px;}
.ya4{bottom:467.610000px;}
.ycd{bottom:468.592500px;}
.y7f{bottom:472.810500px;}
.y6a{bottom:475.036500px;}
.y14{bottom:479.344500px;}
.y3a{bottom:487.197000px;}
.y50{bottom:490.743000px;}
.ya3{bottom:493.396500px;}
.ycc{bottom:494.379000px;}
.yf3{bottom:497.277000px;}
.y7e{bottom:498.595500px;}
.y69{bottom:500.823000px;}
.y13{bottom:505.129500px;}
.y39{bottom:512.983500px;}
.y4f{bottom:516.528000px;}
.ya2{bottom:519.183000px;}
.ycb{bottom:520.164000px;}
.yf2{bottom:523.063500px;}
.y7d{bottom:524.382000px;}
.y68{bottom:526.608000px;}
.y12{bottom:530.916000px;}
.yf9{bottom:534.462000px;}
.y38{bottom:538.768500px;}
.y4e{bottom:542.314500px;}
.ya1{bottom:544.968000px;}
.yf1{bottom:548.848500px;}
.y7c{bottom:550.167000px;}
.y67{bottom:552.394500px;}
.y11{bottom:556.702500px;}
.yf8{bottom:560.247000px;}
.y37{bottom:564.555000px;}
.y4d{bottom:568.101000px;}
.ya0{bottom:570.754500px;}
.yca{bottom:575.631000px;}
.y7b{bottom:575.953500px;}
.y66{bottom:578.179500px;}
.y10{bottom:582.487500px;}
.yf7{bottom:586.033500px;}
.y36{bottom:590.340000px;}
.yf0{bottom:592.416000px;}
.y4c{bottom:593.886000px;}
.y9f{bottom:596.539500px;}
.yc9{bottom:599.817000px;}
.y7a{bottom:601.740000px;}
.y65{bottom:603.966000px;}
.ye2{bottom:606.640500px;}
.yb4{bottom:611.818500px;}
.y35{bottom:616.126500px;}
.y4b{bottom:619.672500px;}
.y9e{bottom:622.326000px;}
.yc8{bottom:624.001500px;}
.y64{bottom:629.751000px;}
.yef{bottom:635.983500px;}
.y34{bottom:641.913000px;}
.y4a{bottom:645.457500px;}
.y9d{bottom:648.111000px;}
.ye1{bottom:648.724500px;}
.yc7{bottom:648.933000px;}
.yf{bottom:653.682000px;}
.y63{bottom:655.537500px;}
.yee{bottom:661.770000px;}
.y33{bottom:667.698000px;}
.yc6{bottom:673.864500px;}
.ye0{bottom:674.511000px;}
.y62{bottom:681.324000px;}
.yed{bottom:687.555000px;}
.y49{bottom:689.176500px;}
.y32{bottom:693.484500px;}
.ye{bottom:697.399500px;}
.yc5{bottom:698.796000px;}
.ydf{bottom:700.296000px;}
.y9c{bottom:703.578000px;}
.y61{bottom:707.109000px;}
.y31{bottom:719.269500px;}
.yc4{bottom:723.727500px;}
.yde{bottom:726.082500px;}
.y9b{bottom:728.509500px;}
.yec{bottom:731.122500px;}
.y48{bottom:732.895500px;}
.yd{bottom:741.118500px;}
.y30{bottom:745.056000px;}
.yc3{bottom:748.659000px;}
.y9a{bottom:753.441000px;}
.y47{bottom:758.680500px;}
.yc{bottom:766.905000px;}
.ydd{bottom:768.168000px;}
.y2f{bottom:770.841000px;}
.yc2{bottom:773.590500px;}
.yeb{bottom:774.690000px;}
.y99{bottom:778.372500px;}
.y46{bottom:784.467000px;}
.y2e{bottom:796.627500px;}
.yc1{bottom:798.522000px;}
.yea{bottom:800.475000px;}
.y98{bottom:803.304000px;}
.y45{bottom:810.252000px;}
.yb{bottom:817.131000px;}
.yc0{bottom:823.453500px;}
.ye9{bottom:826.261500px;}
.y97{bottom:828.235500px;}
.y44{bottom:836.038500px;}
.ya{bottom:836.409000px;}
.y2d{bottom:838.497000px;}
.ybf{bottom:847.638000px;}
.ye8{bottom:852.048000px;}
.y96{bottom:853.167000px;}
.y43{bottom:861.825000px;}
.y9{bottom:868.702500px;}
.ybe{bottom:871.824000px;}
.ye7{bottom:877.833000px;}
.y95{bottom:878.098500px;}
.y42{bottom:887.610000px;}
.ybd{bottom:896.755500px;}
.y94{bottom:903.030000px;}
.ye6{bottom:903.619500px;}
.y8{bottom:905.913000px;}
.y41{bottom:913.396500px;}
.ybc{bottom:921.687000px;}
.y2c{bottom:921.943500px;}
.y93{bottom:927.961500px;}
.ye5{bottom:929.404500px;}
.y40{bottom:939.181500px;}
.ybb{bottom:946.618500px;}
.y7{bottom:949.632000px;}
.y92{bottom:952.893000px;}
.ye4{bottom:955.191000px;}
.y2b{bottom:964.968000px;}
.yba{bottom:971.550000px;}
.y91{bottom:977.823000px;}
.y6{bottom:981.642000px;}
.y2a{bottom:990.753000px;}
.yb9{bottom:996.481500px;}
.ye3{bottom:998.758500px;}
.y90{bottom:1011.738000px;}
.y29{bottom:1016.539500px;}
.yb8{bottom:1021.413000px;}
.y5{bottom:1022.619000px;}
.y28{bottom:1042.326000px;}
.y8f{bottom:1052.538000px;}
.y4{bottom:1055.220000px;}
.yb7{bottom:1055.326500px;}
.y27{bottom:1068.111000px;}
.y3{bottom:1078.017000px;}
.yb6{bottom:1079.512500px;}
.y26{bottom:1093.897500px;}
.y2{bottom:1103.802000px;}
.yb5{bottom:1119.565500px;}
.y25{bottom:1119.682500px;}
.y1{bottom:1161.126000px;}
.y24{bottom:1175.722500px;}
.h8{height:34.478653px;}
.hb{height:45.294583px;}
.hc{height:47.192767px;}
.h5{height:49.207603px;}
.h4{height:49.637990px;}
.h2{height:51.718195px;}
.h9{height:58.832932px;}
.h7{height:59.125855px;}
.ha{height:60.506653px;}
.h6{height:74.456986px;}
.hd{height:93.666583px;}
.he{height:95.564767px;}
.h3{height:133.706398px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409000px;}
.x17{left:76.306500px;}
.xb{left:83.376000px;}
.x15{left:85.273500px;}
.x5{left:86.962500px;}
.x10{left:92.419500px;}
.x7{left:95.670000px;}
.x12{left:103.342500px;}
.x11{left:106.483500px;}
.x16{left:112.351500px;}
.xe{left:115.369500px;}
.x6{left:116.929500px;}
.x13{left:159.240000px;}
.xf{left:163.330500px;}
.x14{left:196.912500px;}
.xd{left:217.591500px;}
.x8{left:286.113000px;}
.x9{left:364.974000px;}
.xc{left:422.598000px;}
.xa{left:426.690000px;}
.x4{left:586.488000px;}
.x2{left:660.640500px;}
.x3{left:695.392500px;}
@media print{
.v1{vertical-align:-49.178667pt;}
.v3{vertical-align:-23.136000pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.141333pt;}
.v5{vertical-align:42.997333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001657pt;}
.lsd{letter-spacing:0.002133pt;}
.ls1a{letter-spacing:0.002372pt;}
.ls17{letter-spacing:0.002423pt;}
.ls12{letter-spacing:1.143757pt;}
.lsf{letter-spacing:1.149090pt;}
.ls1b{letter-spacing:2.655733pt;}
.ls5{letter-spacing:2.656426pt;}
.ls2b{letter-spacing:2.661067pt;}
.ls20{letter-spacing:2.661759pt;}
.ls2d{letter-spacing:15.409067pt;}
.ls2f{letter-spacing:15.734400pt;}
.ls25{letter-spacing:15.937067pt;}
.ls0{letter-spacing:15.942400pt;}
.ls2{letter-spacing:15.943467pt;}
.ls30{letter-spacing:17.094400pt;}
.ls8{letter-spacing:17.318613pt;}
.ls9{letter-spacing:17.318789pt;}
.lsc{letter-spacing:17.318991pt;}
.lsb{letter-spacing:17.319467pt;}
.ls6{letter-spacing:17.441657pt;}
.ls28{letter-spacing:17.499733pt;}
.ls13{letter-spacing:17.894789pt;}
.ls10{letter-spacing:17.895467pt;}
.ls11{letter-spacing:17.900324pt;}
.ls26{letter-spacing:18.369067pt;}
.ls1{letter-spacing:18.597067pt;}
.ls1d{letter-spacing:18.598991pt;}
.ls1e{letter-spacing:18.599467pt;}
.ls1f{letter-spacing:18.604324pt;}
.ls1c{letter-spacing:18.604800pt;}
.ls23{letter-spacing:18.972800pt;}
.lsa{letter-spacing:19.974998pt;}
.lse{letter-spacing:19.980137pt;}
.ls14{letter-spacing:20.550998pt;}
.ls2a{letter-spacing:20.785067pt;}
.ls29{letter-spacing:21.345067pt;}
.ls24{letter-spacing:21.815467pt;}
.ls31{letter-spacing:21.905067pt;}
.ls2c{letter-spacing:22.561067pt;}
.ls19{letter-spacing:23.295420pt;}
.ls15{letter-spacing:23.303757pt;}
.ls21{letter-spacing:23.809657pt;}
.ls27{letter-spacing:24.299733pt;}
.ls18{letter-spacing:25.958803pt;}
.ls16{letter-spacing:25.958998pt;}
.ls2e{letter-spacing:32.310400pt;}
.ls22{letter-spacing:632.320527pt;}
.ls4{letter-spacing:2133.799467pt;}
.wsaf{word-spacing:-646.865994pt;}
.ws1{word-spacing:-15.940267pt;}
.ws4{word-spacing:-10.626800pt;}
.wsab{word-spacing:-3.761903pt;}
.ws28{word-spacing:-3.698142pt;}
.wsa2{word-spacing:-3.634381pt;}
.wsc6{word-spacing:-3.570620pt;}
.ws27{word-spacing:-3.506859pt;}
.ws58{word-spacing:-3.443098pt;}
.ws57{word-spacing:-3.379337pt;}
.wsd7{word-spacing:-3.315575pt;}
.wsc7{word-spacing:-3.124292pt;}
.ws25{word-spacing:-2.869248pt;}
.wse3{word-spacing:-2.677965pt;}
.ws19{word-spacing:-2.614204pt;}
.ws93{word-spacing:-2.550443pt;}
.wsed{word-spacing:-2.295398pt;}
.ws94{word-spacing:-2.167876pt;}
.ws26{word-spacing:-2.040354pt;}
.ws33{word-spacing:-1.976593pt;}
.ws56{word-spacing:-1.912832pt;}
.ws90{word-spacing:-1.721549pt;}
.ws1e{word-spacing:-1.657788pt;}
.wsd2{word-spacing:-1.594027pt;}
.ws37{word-spacing:-1.530266pt;}
.ws38{word-spacing:-1.466505pt;}
.wse{word-spacing:-1.402743pt;}
.ws11{word-spacing:-1.338982pt;}
.ws8a{word-spacing:-1.275221pt;}
.ws59{word-spacing:-1.147699pt;}
.ws15{word-spacing:-0.956416pt;}
.wsdd{word-spacing:-0.892655pt;}
.wsc5{word-spacing:-0.828894pt;}
.ws4f{word-spacing:-0.701372pt;}
.wsc{word-spacing:-0.637611pt;}
.wsa{word-spacing:-0.446327pt;}
.ws7b{word-spacing:-0.382566pt;}
.wsef{word-spacing:-0.285150pt;}
.wsd8{word-spacing:-0.255044pt;}
.ws79{word-spacing:-0.191283pt;}
.ws51{word-spacing:-0.063761pt;}
.wsb6{word-spacing:-0.006400pt;}
.ws3{word-spacing:-0.005094pt;}
.wse2{word-spacing:-0.004676pt;}
.wsee{word-spacing:-0.004181pt;}
.wsf1{word-spacing:-0.002688pt;}
.ws2{word-spacing:0.000000pt;}
.wscf{word-spacing:0.000026pt;}
.ws0{word-spacing:0.000290pt;}
.wsb5{word-spacing:0.002611pt;}
.ws7c{word-spacing:0.127522pt;}
.ws8b{word-spacing:0.191283pt;}
.ws68{word-spacing:0.255044pt;}
.wsc8{word-spacing:0.382566pt;}
.ws1b{word-spacing:0.446327pt;}
.wsb{word-spacing:0.510089pt;}
.ws7{word-spacing:0.573850pt;}
.ws36{word-spacing:0.637611pt;}
.ws66{word-spacing:0.765133pt;}
.ws8c{word-spacing:0.828894pt;}
.ws96{word-spacing:0.892655pt;}
.ws44{word-spacing:0.956416pt;}
.ws23{word-spacing:1.020177pt;}
.ws5d{word-spacing:1.083938pt;}
.ws99{word-spacing:1.147699pt;}
.ws9{word-spacing:1.211460pt;}
.ws17{word-spacing:1.275221pt;}
.ws52{word-spacing:1.334400pt;}
.ws18{word-spacing:1.338982pt;}
.ws69{word-spacing:1.402743pt;}
.wscc{word-spacing:1.466505pt;}
.ws43{word-spacing:1.530266pt;}
.ws29{word-spacing:1.594027pt;}
.ws2a{word-spacing:1.657788pt;}
.wsa6{word-spacing:1.721549pt;}
.ws3f{word-spacing:1.785310pt;}
.ws55{word-spacing:1.912832pt;}
.ws6e{word-spacing:1.976593pt;}
.ws6f{word-spacing:1.977327pt;}
.wsb1{word-spacing:2.040354pt;}
.wsc9{word-spacing:2.104115pt;}
.ws1a{word-spacing:2.231637pt;}
.wsb4{word-spacing:2.295398pt;}
.ws34{word-spacing:2.359159pt;}
.ws80{word-spacing:2.363648pt;}
.ws7f{word-spacing:2.392533pt;}
.ws81{word-spacing:2.395733pt;}
.ws50{word-spacing:2.422921pt;}
.ws8d{word-spacing:2.486682pt;}
.ws35{word-spacing:2.614204pt;}
.ws5f{word-spacing:2.677965pt;}
.wse7{word-spacing:2.741726pt;}
.wsce{word-spacing:2.865152pt;}
.ws6{word-spacing:2.869248pt;}
.wsec{word-spacing:2.911855pt;}
.ws91{word-spacing:2.933009pt;}
.ws3d{word-spacing:2.996770pt;}
.wsb2{word-spacing:3.005303pt;}
.ws8e{word-spacing:3.060531pt;}
.wsd{word-spacing:3.108369pt;}
.ws14{word-spacing:3.124292pt;}
.ws92{word-spacing:3.188053pt;}
.ws77{word-spacing:3.315575pt;}
.wsbe{word-spacing:3.379337pt;}
.ws98{word-spacing:3.443098pt;}
.wsb7{word-spacing:3.457408pt;}
.ws82{word-spacing:3.506859pt;}
.ws84{word-spacing:3.570620pt;}
.ws67{word-spacing:3.634381pt;}
.ws39{word-spacing:3.761903pt;}
.wse5{word-spacing:3.820169pt;}
.wsdb{word-spacing:3.821918pt;}
.ws1f{word-spacing:3.822234pt;}
.ws20{word-spacing:3.825664pt;}
.ws88{word-spacing:3.889425pt;}
.wsad{word-spacing:3.953186pt;}
.ws4e{word-spacing:4.016947pt;}
.ws10{word-spacing:4.080708pt;}
.wsf{word-spacing:4.144469pt;}
.wsa1{word-spacing:4.155008pt;}
.ws7d{word-spacing:4.163831pt;}
.ws2b{word-spacing:4.208230pt;}
.ws9f{word-spacing:4.335753pt;}
.ws1c{word-spacing:4.399514pt;}
.ws16{word-spacing:4.463275pt;}
.wsac{word-spacing:4.590797pt;}
.wsde{word-spacing:4.718319pt;}
.wsf3{word-spacing:4.776098pt;}
.ws32{word-spacing:4.782080pt;}
.ws5e{word-spacing:4.845841pt;}
.ws5c{word-spacing:4.909602pt;}
.wsbb{word-spacing:4.918818pt;}
.ws42{word-spacing:5.037124pt;}
.wsbd{word-spacing:5.100885pt;}
.wsc3{word-spacing:5.164646pt;}
.wsc2{word-spacing:5.228407pt;}
.ws95{word-spacing:5.292169pt;}
.wsb9{word-spacing:5.419691pt;}
.wsa8{word-spacing:5.483452pt;}
.ws41{word-spacing:5.547213pt;}
.ws61{word-spacing:5.610974pt;}
.ws30{word-spacing:5.674735pt;}
.ws65{word-spacing:5.738496pt;}
.ws12{word-spacing:5.802257pt;}
.ws13{word-spacing:5.866018pt;}
.wsa0{word-spacing:5.929779pt;}
.ws4a{word-spacing:5.993540pt;}
.ws22{word-spacing:6.057301pt;}
.wscd{word-spacing:6.184823pt;}
.ws75{word-spacing:6.248585pt;}
.ws2e{word-spacing:6.312346pt;}
.ws8{word-spacing:6.376107pt;}
.ws5{word-spacing:6.439868pt;}
.ws4d{word-spacing:6.503629pt;}
.ws53{word-spacing:6.567390pt;}
.ws54{word-spacing:6.577067pt;}
.wsd3{word-spacing:6.666342pt;}
.ws3a{word-spacing:6.694912pt;}
.ws3b{word-spacing:6.822434pt;}
.wsbf{word-spacing:6.886195pt;}
.ws3e{word-spacing:6.949956pt;}
.ws60{word-spacing:7.077478pt;}
.wsca{word-spacing:7.141239pt;}
.ws2f{word-spacing:7.332523pt;}
.ws21{word-spacing:7.587567pt;}
.wsaa{word-spacing:7.651328pt;}
.wse1{word-spacing:7.778850pt;}
.ws2c{word-spacing:7.842611pt;}
.ws1d{word-spacing:7.906372pt;}
.ws97{word-spacing:7.970000pt;}
.ws87{word-spacing:7.970133pt;}
.ws48{word-spacing:8.033894pt;}
.ws4b{word-spacing:8.225178pt;}
.wseb{word-spacing:8.416461pt;}
.wse4{word-spacing:8.480222pt;}
.ws5b{word-spacing:8.543983pt;}
.ws31{word-spacing:8.607744pt;}
.ws8f{word-spacing:8.671505pt;}
.ws3c{word-spacing:8.862788pt;}
.wsbc{word-spacing:8.926549pt;}
.wsf2{word-spacing:8.990310pt;}
.wscb{word-spacing:9.181594pt;}
.ws73{word-spacing:9.203831pt;}
.ws9d{word-spacing:9.287151pt;}
.ws9c{word-spacing:9.299004pt;}
.ws9e{word-spacing:9.309116pt;}
.ws6c{word-spacing:9.349668pt;}
.ws6b{word-spacing:9.349863pt;}
.ws6a{word-spacing:9.351333pt;}
.wsb3{word-spacing:9.500399pt;}
.ws2d{word-spacing:9.564160pt;}
.wsa5{word-spacing:9.592346pt;}
.wsa4{word-spacing:9.601664pt;}
.ws40{word-spacing:9.627921pt;}
.ws62{word-spacing:9.691682pt;}
.ws64{word-spacing:9.755443pt;}
.ws86{word-spacing:9.769165pt;}
.ws85{word-spacing:9.774498pt;}
.ws6d{word-spacing:9.925668pt;}
.ws70{word-spacing:9.927333pt;}
.ws71{word-spacing:9.929265pt;}
.wse8{word-spacing:9.946726pt;}
.ws49{word-spacing:10.074249pt;}
.ws45{word-spacing:10.393054pt;}
.ws72{word-spacing:10.520576pt;}
.ws78{word-spacing:10.635002pt;}
.wsa7{word-spacing:10.775620pt;}
.ws7e{word-spacing:11.011831pt;}
.ws46{word-spacing:11.094426pt;}
.wsf4{word-spacing:11.221948pt;}
.wsd0{word-spacing:11.285709pt;}
.wsb8{word-spacing:11.732036pt;}
.wsdf{word-spacing:11.795797pt;}
.wsd4{word-spacing:11.923319pt;}
.ws24{word-spacing:12.114603pt;}
.ws4c{word-spacing:12.242125pt;}
.wsa9{word-spacing:12.305886pt;}
.wse9{word-spacing:13.071019pt;}
.wse0{word-spacing:13.453585pt;}
.wsd6{word-spacing:13.899913pt;}
.ws47{word-spacing:14.218718pt;}
.ws76{word-spacing:14.242000pt;}
.wsd1{word-spacing:14.282479pt;}
.ws83{word-spacing:14.441165pt;}
.wsdc{word-spacing:14.920090pt;}
.ws9a{word-spacing:14.983851pt;}
.ws89{word-spacing:15.302656pt;}
.ws74{word-spacing:15.331932pt;}
.ws5a{word-spacing:16.259072pt;}
.wsea{word-spacing:16.386594pt;}
.wsd5{word-spacing:16.769161pt;}
.wsa3{word-spacing:16.960444pt;}
.wsba{word-spacing:17.279249pt;}
.ws63{word-spacing:17.725577pt;}
.wsf0{word-spacing:19.192081pt;}
.wse6{word-spacing:19.695983pt;}
.ws9b{word-spacing:19.893453pt;}
.wsc0{word-spacing:20.276019pt;}
.wsc4{word-spacing:20.722347pt;}
.wsae{word-spacing:21.232435pt;}
.wsda{word-spacing:24.803055pt;}
.ws7a{word-spacing:25.886993pt;}
.wsd9{word-spacing:27.863586pt;}
.wsc1{word-spacing:28.531396pt;}
.wsf5{word-spacing:37.300224pt;}
.wsb0{word-spacing:617.775060pt;}
._34{margin-left:-632.320527pt;}
._41{margin-left:-8.799027pt;}
._3{margin-left:-7.173120pt;}
._1a{margin-left:-5.100885pt;}
._2{margin-left:-4.144469pt;}
._1{margin-left:-2.922363pt;}
._7{margin-left:-1.912832pt;}
._4{margin-left:-0.956416pt;}
._6{width:2.640541pt;}
._15{width:13.963674pt;}
._2c{width:15.175134pt;}
._e{width:16.386594pt;}
._3d{width:17.661815pt;}
._18{width:18.681993pt;}
._8{width:19.765931pt;}
._c{width:21.423718pt;}
._16{width:22.890223pt;}
._a{width:23.910400pt;}
._10{width:25.121860pt;}
._11{width:26.460843pt;}
._1f{width:27.356876pt;}
._b{width:28.373675pt;}
._5{width:29.648896pt;}
._14{width:30.924117pt;}
._9{width:32.579866pt;}
._13{width:33.655197pt;}
._19{width:34.813542pt;}
._29{width:35.769958pt;}
._f{width:36.917658pt;}
._2d{width:38.447923pt;}
._d{width:39.723145pt;}
._3f{width:40.674236pt;}
._17{width:41.635977pt;}
._12{width:43.931375pt;}
._2b{width:45.015313pt;}
._2a{width:46.067371pt;}
._1e{width:49.032260pt;}
._1c{width:50.275601pt;}
._2e{width:52.156553pt;}
._1b{width:53.176730pt;}
._3e{width:54.069385pt;}
._2f{width:57.195716pt;}
._42{width:59.214532pt;}
._1d{width:72.942660pt;}
._30{width:84.355891pt;}
._40{width:94.812706pt;}
._38{width:363.287575pt;}
._35{width:380.218499pt;}
._31{width:404.422964pt;}
._20{width:426.395782pt;}
._33{width:488.494953pt;}
._3a{width:491.753137pt;}
._32{width:503.040419pt;}
._39{width:506.298604pt;}
._28{width:603.927776pt;}
._3b{width:617.775060pt;}
._36{width:632.320527pt;}
._24{width:676.655109pt;}
._22{width:734.836976pt;}
._0{width:938.835635pt;}
._25{width:1108.539106pt;}
._23{width:1134.371854pt;}
._27{width:1174.750070pt;}
._21{width:1276.568337pt;}
._26{width:1349.353852pt;}
._37{width:1697.791087pt;}
._3c{width:1712.335087pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs3{font-size:95.641600pt;}
.fs2{font-size:170.028800pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:66.332000pt;}
.y60{bottom:69.484000pt;}
.yb3{bottom:71.842667pt;}
.ydc{bottom:72.716000pt;}
.y8e{bottom:76.464000pt;}
.y79{bottom:78.442667pt;}
.yf6{bottom:78.444000pt;}
.y22{bottom:89.253333pt;}
.y5f{bottom:92.404000pt;}
.yb2{bottom:94.762667pt;}
.ydb{bottom:95.636000pt;}
.y8d{bottom:99.385333pt;}
.y78{bottom:101.364000pt;}
.y21{bottom:112.173333pt;}
.y5e{bottom:115.325333pt;}
.yb1{bottom:117.684000pt;}
.yda{bottom:118.557333pt;}
.y8c{bottom:122.305333pt;}
.y77{bottom:124.285333pt;}
.y20{bottom:135.094667pt;}
.y5d{bottom:138.245333pt;}
.yb0{bottom:140.605333pt;}
.yd9{bottom:141.477333pt;}
.y8b{bottom:145.226667pt;}
.y76{bottom:147.205333pt;}
.y1f{bottom:158.014667pt;}
.y5c{bottom:161.166667pt;}
.yaf{bottom:163.525333pt;}
.yd8{bottom:164.398667pt;}
.y8a{bottom:168.146667pt;}
.y75{bottom:170.126667pt;}
.y1e{bottom:180.936000pt;}
.y5b{bottom:184.088000pt;}
.yae{bottom:186.446667pt;}
.yd7{bottom:187.320000pt;}
.y89{bottom:191.068000pt;}
.y74{bottom:193.046667pt;}
.y1d{bottom:203.857333pt;}
.y5a{bottom:207.008000pt;}
.yad{bottom:209.366667pt;}
.yd6{bottom:210.240000pt;}
.y88{bottom:213.989333pt;}
.y73{bottom:215.968000pt;}
.y1c{bottom:226.777333pt;}
.y59{bottom:229.929333pt;}
.yac{bottom:232.288000pt;}
.yd5{bottom:233.161333pt;}
.y87{bottom:236.909333pt;}
.y72{bottom:238.888000pt;}
.yf5{bottom:238.889333pt;}
.y1b{bottom:249.698667pt;}
.y58{bottom:252.849333pt;}
.yab{bottom:255.208000pt;}
.yd4{bottom:256.081333pt;}
.y86{bottom:259.830667pt;}
.y71{bottom:261.809333pt;}
.y1a{bottom:272.618667pt;}
.y57{bottom:275.770667pt;}
.yaa{bottom:278.129333pt;}
.yd3{bottom:279.002667pt;}
.y85{bottom:282.750667pt;}
.y70{bottom:284.730667pt;}
.y19{bottom:295.540000pt;}
.y56{bottom:298.690667pt;}
.ya9{bottom:301.050667pt;}
.yd2{bottom:301.922667pt;}
.y84{bottom:305.672000pt;}
.y6f{bottom:307.650667pt;}
.y3f{bottom:318.460000pt;}
.y55{bottom:321.612000pt;}
.ya8{bottom:323.970667pt;}
.yd1{bottom:324.844000pt;}
.y83{bottom:328.592000pt;}
.y6e{bottom:330.572000pt;}
.y18{bottom:334.401333pt;}
.y3e{bottom:341.381333pt;}
.y54{bottom:344.533333pt;}
.ya7{bottom:346.892000pt;}
.yd0{bottom:347.765333pt;}
.y82{bottom:351.513333pt;}
.y6d{bottom:353.492000pt;}
.y17{bottom:357.321333pt;}
.y3d{bottom:364.302667pt;}
.y53{bottom:367.453333pt;}
.ya6{bottom:369.812000pt;}
.ycf{bottom:370.685333pt;}
.y81{bottom:374.434667pt;}
.y6c{bottom:376.413333pt;}
.y16{bottom:380.242667pt;}
.y3c{bottom:387.222667pt;}
.y52{bottom:390.374667pt;}
.ya5{bottom:392.733333pt;}
.yce{bottom:393.606667pt;}
.y80{bottom:397.354667pt;}
.y6b{bottom:399.333333pt;}
.yf4{bottom:399.334667pt;}
.y15{bottom:403.162667pt;}
.y3b{bottom:410.144000pt;}
.y51{bottom:413.294667pt;}
.ya4{bottom:415.653333pt;}
.ycd{bottom:416.526667pt;}
.y7f{bottom:420.276000pt;}
.y6a{bottom:422.254667pt;}
.y14{bottom:426.084000pt;}
.y3a{bottom:433.064000pt;}
.y50{bottom:436.216000pt;}
.ya3{bottom:438.574667pt;}
.ycc{bottom:439.448000pt;}
.yf3{bottom:442.024000pt;}
.y7e{bottom:443.196000pt;}
.y69{bottom:445.176000pt;}
.y13{bottom:449.004000pt;}
.y39{bottom:455.985333pt;}
.y4f{bottom:459.136000pt;}
.ya2{bottom:461.496000pt;}
.ycb{bottom:462.368000pt;}
.yf2{bottom:464.945333pt;}
.y7d{bottom:466.117333pt;}
.y68{bottom:468.096000pt;}
.y12{bottom:471.925333pt;}
.yf9{bottom:475.077333pt;}
.y38{bottom:478.905333pt;}
.y4e{bottom:482.057333pt;}
.ya1{bottom:484.416000pt;}
.yf1{bottom:487.865333pt;}
.y7c{bottom:489.037333pt;}
.y67{bottom:491.017333pt;}
.y11{bottom:494.846667pt;}
.yf8{bottom:497.997333pt;}
.y37{bottom:501.826667pt;}
.y4d{bottom:504.978667pt;}
.ya0{bottom:507.337333pt;}
.yca{bottom:511.672000pt;}
.y7b{bottom:511.958667pt;}
.y66{bottom:513.937333pt;}
.y10{bottom:517.766667pt;}
.yf7{bottom:520.918667pt;}
.y36{bottom:524.746667pt;}
.yf0{bottom:526.592000pt;}
.y4c{bottom:527.898667pt;}
.y9f{bottom:530.257333pt;}
.yc9{bottom:533.170667pt;}
.y7a{bottom:534.880000pt;}
.y65{bottom:536.858667pt;}
.ye2{bottom:539.236000pt;}
.yb4{bottom:543.838667pt;}
.y35{bottom:547.668000pt;}
.y4b{bottom:550.820000pt;}
.y9e{bottom:553.178667pt;}
.yc8{bottom:554.668000pt;}
.y64{bottom:559.778667pt;}
.yef{bottom:565.318667pt;}
.y34{bottom:570.589333pt;}
.y4a{bottom:573.740000pt;}
.y9d{bottom:576.098667pt;}
.ye1{bottom:576.644000pt;}
.yc7{bottom:576.829333pt;}
.yf{bottom:581.050667pt;}
.y63{bottom:582.700000pt;}
.yee{bottom:588.240000pt;}
.y33{bottom:593.509333pt;}
.yc6{bottom:598.990667pt;}
.ye0{bottom:599.565333pt;}
.y62{bottom:605.621333pt;}
.yed{bottom:611.160000pt;}
.y49{bottom:612.601333pt;}
.y32{bottom:616.430667pt;}
.ye{bottom:619.910667pt;}
.yc5{bottom:621.152000pt;}
.ydf{bottom:622.485333pt;}
.y9c{bottom:625.402667pt;}
.y61{bottom:628.541333pt;}
.y31{bottom:639.350667pt;}
.yc4{bottom:643.313333pt;}
.yde{bottom:645.406667pt;}
.y9b{bottom:647.564000pt;}
.yec{bottom:649.886667pt;}
.y48{bottom:651.462667pt;}
.yd{bottom:658.772000pt;}
.y30{bottom:662.272000pt;}
.yc3{bottom:665.474667pt;}
.y9a{bottom:669.725333pt;}
.y47{bottom:674.382667pt;}
.yc{bottom:681.693333pt;}
.ydd{bottom:682.816000pt;}
.y2f{bottom:685.192000pt;}
.yc2{bottom:687.636000pt;}
.yeb{bottom:688.613333pt;}
.y99{bottom:691.886667pt;}
.y46{bottom:697.304000pt;}
.y2e{bottom:708.113333pt;}
.yc1{bottom:709.797333pt;}
.yea{bottom:711.533333pt;}
.y98{bottom:714.048000pt;}
.y45{bottom:720.224000pt;}
.yb{bottom:726.338667pt;}
.yc0{bottom:731.958667pt;}
.ye9{bottom:734.454667pt;}
.y97{bottom:736.209333pt;}
.y44{bottom:743.145333pt;}
.ya{bottom:743.474667pt;}
.y2d{bottom:745.330667pt;}
.ybf{bottom:753.456000pt;}
.ye8{bottom:757.376000pt;}
.y96{bottom:758.370667pt;}
.y43{bottom:766.066667pt;}
.y9{bottom:772.180000pt;}
.ybe{bottom:774.954667pt;}
.ye7{bottom:780.296000pt;}
.y95{bottom:780.532000pt;}
.y42{bottom:788.986667pt;}
.ybd{bottom:797.116000pt;}
.y94{bottom:802.693333pt;}
.ye6{bottom:803.217333pt;}
.y8{bottom:805.256000pt;}
.y41{bottom:811.908000pt;}
.ybc{bottom:819.277333pt;}
.y2c{bottom:819.505333pt;}
.y93{bottom:824.854667pt;}
.ye5{bottom:826.137333pt;}
.y40{bottom:834.828000pt;}
.ybb{bottom:841.438667pt;}
.y7{bottom:844.117333pt;}
.y92{bottom:847.016000pt;}
.ye4{bottom:849.058667pt;}
.y2b{bottom:857.749333pt;}
.yba{bottom:863.600000pt;}
.y91{bottom:869.176000pt;}
.y6{bottom:872.570667pt;}
.y2a{bottom:880.669333pt;}
.yb9{bottom:885.761333pt;}
.ye3{bottom:887.785333pt;}
.y90{bottom:899.322667pt;}
.y29{bottom:903.590667pt;}
.yb8{bottom:907.922667pt;}
.y5{bottom:908.994667pt;}
.y28{bottom:926.512000pt;}
.y8f{bottom:935.589333pt;}
.y4{bottom:937.973333pt;}
.yb7{bottom:938.068000pt;}
.y27{bottom:949.432000pt;}
.y3{bottom:958.237333pt;}
.yb6{bottom:959.566667pt;}
.y26{bottom:972.353333pt;}
.y2{bottom:981.157333pt;}
.yb5{bottom:995.169333pt;}
.y25{bottom:995.273333pt;}
.y1{bottom:1032.112000pt;}
.y24{bottom:1045.086667pt;}
.h8{height:30.647691pt;}
.hb{height:40.261852pt;}
.hc{height:41.949126pt;}
.h5{height:43.740092pt;}
.h4{height:44.122658pt;}
.h2{height:45.971729pt;}
.h9{height:52.295939pt;}
.h7{height:52.556316pt;}
.ha{height:53.783691pt;}
.h6{height:66.183987pt;}
.hd{height:83.259185pt;}
.he{height:84.946459pt;}
.h3{height:118.850131pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141333pt;}
.x17{left:67.828000pt;}
.xb{left:74.112000pt;}
.x15{left:75.798667pt;}
.x5{left:77.300000pt;}
.x10{left:82.150667pt;}
.x7{left:85.040000pt;}
.x12{left:91.860000pt;}
.x11{left:94.652000pt;}
.x16{left:99.868000pt;}
.xe{left:102.550667pt;}
.x6{left:103.937333pt;}
.x13{left:141.546667pt;}
.xf{left:145.182667pt;}
.x14{left:175.033333pt;}
.xd{left:193.414667pt;}
.x8{left:254.322667pt;}
.x9{left:324.421333pt;}
.xc{left:375.642667pt;}
.xa{left:379.280000pt;}
.x4{left:521.322667pt;}
.x2{left:587.236000pt;}
.x3{left:618.126667pt;}
}




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