
    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_ac170b45bb3d0b7cdd5c6a54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956543;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_480591e8a35acabc4d5b698b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_4a7ef1f60d0394636435034a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_0e709bbceddf122a15c36d5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.162000;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_56106220f3c362d862104c8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956543;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_f456e128664797849fd07f89.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929199;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:-27.000000px;}
.v3{vertical-align:-18.000000px;}
.v7{vertical-align:-8.400000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.000000px;}
.v1{vertical-align:27.000000px;}
.v6{vertical-align:49.320000px;}
.v4{vertical-align:64.920000px;}
.ls25{letter-spacing:-3.048000px;}
.lse{letter-spacing:-2.472000px;}
.ls26{letter-spacing:-1.980000px;}
.ls24{letter-spacing:-1.890000px;}
.lsf{letter-spacing:-1.884000px;}
.ls29{letter-spacing:-1.830000px;}
.ls2c{letter-spacing:-1.488000px;}
.lsa{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.154800px;}
.ls2e{letter-spacing:-0.102000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.020400px;}
.ls30{letter-spacing:0.034980px;}
.ls2a{letter-spacing:0.047280px;}
.ls8{letter-spacing:0.084600px;}
.ls31{letter-spacing:0.184800px;}
.ls9{letter-spacing:0.234600px;}
.ls1e{letter-spacing:0.237600px;}
.ls27{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.334800px;}
.ls1a{letter-spacing:0.361200px;}
.ls1b{letter-spacing:0.403350px;}
.ls19{letter-spacing:0.541200px;}
.ls17{letter-spacing:0.583350px;}
.ls2b{letter-spacing:0.594000px;}
.ls3{letter-spacing:1.302000px;}
.ls0{letter-spacing:1.392000px;}
.ls13{letter-spacing:1.398000px;}
.ls5{letter-spacing:1.452000px;}
.ls32{letter-spacing:1.476000px;}
.ls18{letter-spacing:1.514400px;}
.ls12{letter-spacing:1.584000px;}
.ls6{letter-spacing:1.602000px;}
.ls10{letter-spacing:1.650000px;}
.ls15{letter-spacing:1.734000px;}
.lsd{letter-spacing:1.800000px;}
.ls4{letter-spacing:1.956000px;}
.lsb{letter-spacing:1.998000px;}
.ls16{letter-spacing:2.010000px;}
.ls11{letter-spacing:2.070000px;}
.ls28{letter-spacing:2.118000px;}
.lsc{letter-spacing:2.196000px;}
.ls23{letter-spacing:2.610000px;}
.ls21{letter-spacing:3.318000px;}
.ls1c{letter-spacing:18.675000px;}
.ls1f{letter-spacing:18.795000px;}
.ls1d{letter-spacing:18.855000px;}
.ls22{letter-spacing:21.751800px;}
.ls2d{letter-spacing:22.425000px;}
.ls20{letter-spacing:23.167800px;}
.ls7{letter-spacing:34.652100px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(127,206,254),0 0.015em rgb(127,206,254),0.015em 0 rgb(127,206,254),0 -0.015em  rgb(127,206,254);}
.sc3{text-shadow:-0.015em 0 rgb(66,154,180),0 0.015em rgb(66,154,180),0.015em 0 rgb(66,154,180),0 -0.015em  rgb(66,154,180);}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc5{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc4{text-shadow:-0.015em 0 rgb(24,24,24),0 0.015em rgb(24,24,24),0.015em 0 rgb(24,24,24),0 -0.015em  rgb(24,24,24);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(49,116,135),0 0.015em rgb(49,116,135),0.015em 0 rgb(49,116,135),0 -0.015em  rgb(49,116,135);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc6{-webkit-text-stroke:0.015em rgb(127,206,254);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(66,154,180);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(24,24,24);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(49,116,135);text-shadow:none;}
}
.ws35{word-spacing:-50.500200px;}
.wsa7{word-spacing:-49.567050px;}
.ws33{word-spacing:-48.502200px;}
.ws0{word-spacing:-45.772200px;}
.ws9{word-spacing:-44.380200px;}
.ws8{word-spacing:-24.800700px;}
.wsb{word-spacing:-24.766350px;}
.ws45{word-spacing:-23.474850px;}
.ws60{word-spacing:-23.443200px;}
.ws79{word-spacing:-23.324850px;}
.ws65{word-spacing:-23.293200px;}
.ws68{word-spacing:-23.189250px;}
.ws8e{word-spacing:-22.354650px;}
.wse{word-spacing:-21.709200px;}
.wsd{word-spacing:-21.674850px;}
.ws2{word-spacing:-19.613850px;}
.ws49{word-spacing:-19.579500px;}
.wsa8{word-spacing:-18.583350px;}
.wsab{word-spacing:-14.461350px;}
.ws1{word-spacing:-12.400350px;}
.ws6{word-spacing:-9.308850px;}
.ws5{word-spacing:-9.274500px;}
.ws8b{word-spacing:-7.784250px;}
.ws3c{word-spacing:-6.318450px;}
.ws54{word-spacing:-6.258450px;}
.ws7c{word-spacing:-5.737050px;}
.ws59{word-spacing:-5.088750px;}
.ws4{word-spacing:-4.761600px;}
.ws90{word-spacing:-3.710100px;}
.ws11{word-spacing:-3.634200px;}
.ws8c{word-spacing:-3.475950px;}
.wsc{word-spacing:-3.364200px;}
.ws14{word-spacing:-3.184200px;}
.wsf{word-spacing:-3.134400px;}
.ws6a{word-spacing:-2.814600px;}
.wsae{word-spacing:-2.702100px;}
.ws8f{word-spacing:-2.651640px;}
.wsaf{word-spacing:-2.575800px;}
.ws2e{word-spacing:-2.186100px;}
.ws55{word-spacing:-1.879500px;}
.ws22{word-spacing:-1.770000px;}
.ws5b{word-spacing:-1.759050px;}
.ws69{word-spacing:-1.509000px;}
.ws9d{word-spacing:-1.226100px;}
.ws2d{word-spacing:-1.210800px;}
.ws9b{word-spacing:-1.164450px;}
.ws98{word-spacing:-1.150800px;}
.ws56{word-spacing:-1.094250px;}
.ws23{word-spacing:-1.058400px;}
.ws58{word-spacing:-1.049250px;}
.ws36{word-spacing:-1.021500px;}
.ws72{word-spacing:-0.996600px;}
.ws94{word-spacing:-0.926400px;}
.ws78{word-spacing:-0.881700px;}
.ws9f{word-spacing:-0.869100px;}
.ws4e{word-spacing:-0.668700px;}
.ws15{word-spacing:-0.645150px;}
.ws53{word-spacing:-0.601350px;}
.ws50{word-spacing:-0.536850px;}
.ws7b{word-spacing:-0.506400px;}
.ws26{word-spacing:-0.391650px;}
.wsac{word-spacing:-0.325950px;}
.wsad{word-spacing:-0.270240px;}
.ws8a{word-spacing:-0.255150px;}
.ws3b{word-spacing:-0.150000px;}
.ws28{word-spacing:-0.148650px;}
.ws44{word-spacing:-0.093450px;}
.ws46{word-spacing:-0.085650px;}
.ws7e{word-spacing:-0.047250px;}
.ws25{word-spacing:-0.033000px;}
.ws7{word-spacing:0.000000px;}
.wsaa{word-spacing:0.053460px;}
.ws9c{word-spacing:0.226500px;}
.wsa9{word-spacing:0.233460px;}
.ws34{word-spacing:0.256800px;}
.ws96{word-spacing:0.291300px;}
.ws3f{word-spacing:0.367200px;}
.ws91{word-spacing:0.398400px;}
.ws93{word-spacing:0.426450px;}
.ws85{word-spacing:0.468600px;}
.wsa6{word-spacing:0.505200px;}
.ws76{word-spacing:0.591750px;}
.ws7d{word-spacing:0.609300px;}
.wsa3{word-spacing:0.637950px;}
.ws51{word-spacing:0.717150px;}
.ws2f{word-spacing:0.795000px;}
.ws17{word-spacing:0.855000px;}
.ws29{word-spacing:0.871500px;}
.ws13{word-spacing:0.896400px;}
.ws3{word-spacing:0.902400px;}
.ws99{word-spacing:0.918600px;}
.wsa1{word-spacing:0.975750px;}
.ws24{word-spacing:0.987600px;}
.ws30{word-spacing:1.084650px;}
.ws57{word-spacing:1.097850px;}
.ws16{word-spacing:1.146750px;}
.ws19{word-spacing:1.188600px;}
.ws43{word-spacing:1.189200px;}
.ws97{word-spacing:1.249050px;}
.ws7a{word-spacing:1.315500px;}
.ws31{word-spacing:1.428600px;}
.ws5a{word-spacing:1.432950px;}
.ws92{word-spacing:1.447500px;}
.ws2b{word-spacing:1.455750px;}
.ws42{word-spacing:1.492500px;}
.ws1a{word-spacing:1.608900px;}
.ws9a{word-spacing:1.621500px;}
.wsa5{word-spacing:1.705200px;}
.ws10{word-spacing:1.708950px;}
.ws70{word-spacing:1.871250px;}
.wsa2{word-spacing:1.882950px;}
.ws41{word-spacing:1.988250px;}
.wsa0{word-spacing:1.994400px;}
.ws18{word-spacing:2.049600px;}
.ws52{word-spacing:2.061600px;}
.ws2a{word-spacing:2.121600px;}
.ws2c{word-spacing:2.139000px;}
.ws32{word-spacing:2.167650px;}
.ws4f{word-spacing:2.241600px;}
.ws27{word-spacing:2.271900px;}
.wsa4{word-spacing:2.274000px;}
.ws77{word-spacing:2.301600px;}
.ws12{word-spacing:2.392200px;}
.ws3d{word-spacing:2.460000px;}
.ws40{word-spacing:2.592000px;}
.ws9e{word-spacing:2.599200px;}
.ws67{word-spacing:3.060000px;}
.ws62{word-spacing:3.120000px;}
.ws8d{word-spacing:3.376200px;}
.ws6d{word-spacing:3.598500px;}
.ws6b{word-spacing:3.913500px;}
.ws95{word-spacing:3.998850px;}
.ws5d{word-spacing:4.755600px;}
.ws6e{word-spacing:5.219700px;}
.ws6f{word-spacing:5.238000px;}
.ws38{word-spacing:5.758500px;}
.ws3a{word-spacing:5.966250px;}
.ws39{word-spacing:6.462150px;}
.ws5c{word-spacing:6.850800px;}
.ws71{word-spacing:6.855150px;}
.ws6c{word-spacing:6.861600px;}
.ws73{word-spacing:6.964950px;}
.ws64{word-spacing:7.041600px;}
.ws5e{word-spacing:7.054800px;}
.ws87{word-spacing:7.124250px;}
.ws37{word-spacing:7.711350px;}
.ws75{word-spacing:8.360250px;}
.ws74{word-spacing:8.841600px;}
.ws63{word-spacing:9.332400px;}
.ws5f{word-spacing:9.351600px;}
.ws61{word-spacing:9.392400px;}
.ws66{word-spacing:9.452400px;}
.ws1f{word-spacing:10.777500px;}
.ws1e{word-spacing:11.473350px;}
.ws86{word-spacing:11.954100px;}
.ws88{word-spacing:12.042900px;}
.ws1b{word-spacing:12.519600px;}
.ws20{word-spacing:12.779700px;}
.ws89{word-spacing:13.162050px;}
.ws1d{word-spacing:13.548600px;}
.ws1c{word-spacing:13.788900px;}
.ws21{word-spacing:14.885250px;}
.ws82{word-spacing:22.972500px;}
.ws7f{word-spacing:24.775350px;}
.ws84{word-spacing:25.361850px;}
.ws80{word-spacing:29.335350px;}
.ws83{word-spacing:31.066200px;}
.ws81{word-spacing:32.609400px;}
.ws4c{word-spacing:279.679650px;}
.ws4d{word-spacing:324.363750px;}
.ws4b{word-spacing:383.895750px;}
.ws4a{word-spacing:409.995450px;}
.ws48{word-spacing:440.987550px;}
.ws3e{word-spacing:451.960350px;}
.ws47{word-spacing:457.612950px;}
.wsa{word-spacing:490.171500px;}
._15{margin-left:-9.247350px;}
._14{margin-left:-6.488700px;}
._9{margin-left:-5.253000px;}
._0{margin-left:-3.356400px;}
._1{margin-left:-2.082000px;}
._5{margin-left:-1.071150px;}
._3{width:1.806000px;}
._2{width:2.907000px;}
._8{width:4.537800px;}
._27{width:11.966850px;}
._26{width:13.325100px;}
._7{width:14.482500px;}
._6{width:16.456650px;}
._25{width:17.580600px;}
._24{width:20.137350px;}
._11{width:21.953250px;}
._10{width:23.086200px;}
._c{width:24.312450px;}
._1f{width:26.613900px;}
._20{width:28.078500px;}
._12{width:29.827650px;}
._1d{width:31.204350px;}
._1e{width:32.528100px;}
._f{width:34.354350px;}
._e{width:36.829200px;}
._23{width:38.781750px;}
._4{width:47.034600px;}
._21{width:49.506600px;}
._22{width:50.546850px;}
._1b{width:323.753700px;}
._13{width:383.356500px;}
._1a{width:407.683350px;}
._1c{width:411.024450px;}
._a{width:432.148650px;}
._17{width:453.930300px;}
._b{width:463.664250px;}
._19{width:470.623350px;}
._16{width:481.278600px;}
._18{width:494.980950px;}
._d{width:558.421800px;}
.fc7{color:rgb(127,206,254);}
.fc3{color:rgb(66,154,180);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(24,24,24);}
.fc2{color:rgb(245,245,245);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(49,116,135);}
.fs5{font-size:40.500000px;}
.fs3{font-size:40.650000px;}
.fs13{font-size:54.000000px;}
.fs2{font-size:54.150000px;}
.fs4{font-size:58.650000px;}
.fs11{font-size:63.150000px;}
.fs10{font-size:81.150000px;}
.fsc{font-size:85.500000px;}
.fs1{font-size:85.650000px;}
.fse{font-size:85.800000px;}
.fsd{font-size:94.500000px;}
.fs8{font-size:94.650000px;}
.fs9{font-size:94.800000px;}
.fsb{font-size:99.768863px;}
.fs7{font-size:108.150000px;}
.fs6{font-size:108.300000px;}
.fs0{font-size:193.800000px;}
.fsa{font-size:211.800000px;}
.fsf{font-size:216.450000px;}
.fs12{font-size:270.600000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:7.012500px;}
.ycc{bottom:8.475000px;}
.y6d{bottom:23.775000px;}
.y4e{bottom:24.337500px;}
.y14{bottom:32.625000px;}
.yb0{bottom:33.525000px;}
.y9f{bottom:42.750000px;}
.y44{bottom:42.975000px;}
.y9{bottom:43.612500px;}
.yb8{bottom:43.762500px;}
.y5d{bottom:48.375000px;}
.yc2{bottom:49.837500px;}
.y69{bottom:50.662500px;}
.y78{bottom:55.612500px;}
.y89{bottom:58.087500px;}
.y8f{bottom:58.800000px;}
.yf{bottom:63.450000px;}
.y24{bottom:64.087500px;}
.y22{bottom:66.375000px;}
.y4d{bottom:67.200000px;}
.y32{bottom:68.587500px;}
.y8{bottom:70.650000px;}
.y5e{bottom:75.712500px;}
.yaf{bottom:76.350000px;}
.y13{bottom:76.575000px;}
.y43{bottom:76.800000px;}
.ya2{bottom:78.787500px;}
.yb7{bottom:82.087500px;}
.yaa{bottom:84.375000px;}
.y2a{bottom:84.712500px;}
.y75{bottom:85.387500px;}
.ya0{bottom:93.075000px;}
.y7{bottom:93.187500px;}
.y87{bottom:93.225000px;}
.y85{bottom:93.495000px;}
.y82{bottom:93.720000px;}
.yab{bottom:93.825000px;}
.y9d{bottom:93.870000px;}
.y95{bottom:93.945000px;}
.y7f{bottom:93.975000px;}
.y98{bottom:94.275000px;}
.ye{bottom:96.112500px;}
.y8e{bottom:97.125000px;}
.y9c{bottom:99.000000px;}
.y77{bottom:99.600000px;}
.y84{bottom:100.125000px;}
.yc1{bottom:101.400000px;}
.ya4{bottom:105.750000px;}
.y5f{bottom:106.080000px;}
.y23{bottom:106.912500px;}
.y21{bottom:109.200000px;}
.y4c{bottom:111.150000px;}
.y31{bottom:111.412500px;}
.y1b{bottom:118.837500px;}
.y12{bottom:119.400000px;}
.y6{bottom:124.762500px;}
.y88{bottom:125.850000px;}
.y5c{bottom:127.875000px;}
.y74{bottom:129.337500px;}
.y16{bottom:133.725000px;}
.y1c{bottom:133.762500px;}
.y8d{bottom:134.325000px;}
.ya1{bottom:135.825000px;}
.y60{bottom:136.500000px;}
.yc9{bottom:139.575000px;}
.y58{bottom:140.212500px;}
.ya8{bottom:141.750000px;}
.y29{bottom:142.200000px;}
.y76{bottom:142.425000px;}
.y42{bottom:144.712500px;}
.yc0{bottom:145.387500px;}
.y1a{bottom:148.162500px;}
.y5b{bottom:152.670000px;}
.y4b{bottom:153.975000px;}
.y30{bottom:155.370000px;}
.y9a{bottom:156.375000px;}
.y5{bottom:156.750000px;}
.yc8{bottom:157.605000px;}
.y57{bottom:165.000000px;}
.yc{bottom:166.170000px;}
.y61{bottom:166.875000px;}
.y81{bottom:167.625000px;}
.y73{bottom:172.155000px;}
.y8c{bottom:172.605000px;}
.y6c{bottom:174.900000px;}
.y5a{bottom:177.450000px;}
.yac{bottom:178.200000px;}
.y7d{bottom:179.625000px;}
.y18{bottom:179.700000px;}
.ya7{bottom:179.850000px;}
.y93{bottom:180.300000px;}
.y6a{bottom:184.245000px;}
.yb6{bottom:186.930000px;}
.ybf{bottom:188.220000px;}
.y11{bottom:189.405000px;}
.y56{bottom:189.825000px;}
.y9e{bottom:192.870000px;}
.y86{bottom:193.620000px;}
.y4{bottom:195.075000px;}
.y15{bottom:196.875000px;}
.y62{bottom:197.250000px;}
.y2f{bottom:198.225000px;}
.y28{bottom:199.695000px;}
.y19{bottom:200.625000px;}
.y59{bottom:202.275000px;}
.yc7{bottom:202.695000px;}
.y10{bottom:205.845000px;}
.y7b{bottom:208.905000px;}
.ya5{bottom:209.175000px;}
.y91{bottom:209.625000px;}
.y17{bottom:212.400000px;}
.y97{bottom:212.625000px;}
.y7a{bottom:214.875000px;}
.y20{bottom:217.725000px;}
.yc4{bottom:219.195000px;}
.y6b{bottom:221.850000px;}
.yb5{bottom:224.145000px;}
.ybe{bottom:224.775000px;}
.yc6{bottom:227.475000px;}
.y63{bottom:227.655000px;}
.yd{bottom:228.150000px;}
.y90{bottom:234.000000px;}
.y6e{bottom:234.645000px;}
.y7e{bottom:235.125000px;}
.ya9{bottom:235.245000px;}
.y9b{bottom:249.870000px;}
.y27{bottom:257.175000px;}
.y64{bottom:258.030000px;}
.y1f{bottom:260.550000px;}
.y83{bottom:261.345000px;}
.yb4{bottom:262.470000px;}
.y35{bottom:267.975000px;}
.ybd{bottom:268.725000px;}
.y94{bottom:270.000000px;}
.y38{bottom:273.405000px;}
.y41{bottom:277.470000px;}
.y49{bottom:279.345000px;}
.yc5{bottom:281.775000px;}
.y65{bottom:288.450000px;}
.y46{bottom:291.675000px;}
.y72{bottom:293.325000px;}
.y3{bottom:296.595000px;}
.y34{bottom:300.675000px;}
.yb3{bottom:300.780000px;}
.y48{bottom:304.125000px;}
.y37{bottom:306.075000px;}
.y99{bottom:306.900000px;}
.y40{bottom:311.250000px;}
.ybc{bottom:311.550000px;}
.y55{bottom:313.950000px;}
.y26{bottom:314.625000px;}
.ya6{bottom:314.925000px;}
.y45{bottom:316.470000px;}
.y66{bottom:318.825000px;}
.y2e{bottom:324.975000px;}
.y47{bottom:328.920000px;}
.y80{bottom:329.100000px;}
.y51{bottom:330.495000px;}
.yca{bottom:330.600000px;}
.y79{bottom:331.320000px;}
.y33{bottom:334.455000px;}
.y71{bottom:337.200000px;}
.yb2{bottom:337.950000px;}
.y54{bottom:338.745000px;}
.y36{bottom:339.900000px;}
.y3f{bottom:343.950000px;}
.y67{bottom:349.200000px;}
.y2{bottom:354.075000px;}
.ybb{bottom:354.375000px;}
.y50{bottom:355.275000px;}
.y96{bottom:363.945000px;}
.y2d{bottom:368.955000px;}
.y53{bottom:372.570000px;}
.y25{bottom:373.245000px;}
.yb1{bottom:376.275000px;}
.yb{bottom:376.455000px;}
.y3e{bottom:377.775000px;}
.y68{bottom:379.620000px;}
.y4f{bottom:380.070000px;}
.y70{bottom:381.075000px;}
.y2b{bottom:381.630000px;}
.yae{bottom:384.420000px;}
.y1e{bottom:385.470000px;}
.y8b{bottom:390.300000px;}
.y4a{bottom:392.220000px;}
.y52{bottom:397.350000px;}
.yba{bottom:398.325000px;}
.ycb{bottom:401.925000px;}
.ya3{bottom:409.695000px;}
.y3d{bottom:410.445000px;}
.y1{bottom:411.570000px;}
.y2c{bottom:411.795000px;}
.y7c{bottom:423.780000px;}
.y6f{bottom:424.950000px;}
.yad{bottom:427.245000px;}
.y8a{bottom:428.625000px;}
.yb9{bottom:441.150000px;}
.y92{bottom:443.625000px;}
.y3c{bottom:444.255000px;}
.y3b{bottom:476.970000px;}
.y1d{bottom:495.195000px;}
.ya{bottom:499.695000px;}
.y3a{bottom:509.625000px;}
.y39{bottom:543.450000px;}
.h5{height:29.524658px;}
.h3{height:29.634009px;}
.h22{height:39.313477px;}
.h4{height:42.756079px;}
.h20{height:46.036597px;}
.h1f{height:59.158667px;}
.h13{height:62.329834px;}
.h11{height:62.355542px;}
.h12{height:62.439185px;}
.h18{height:62.548535px;}
.h2{height:66.475562px;}
.h14{height:68.890869px;}
.ha{height:69.000220px;}
.hc{height:69.109570px;}
.he{height:72.731891px;}
.h7{height:78.841772px;}
.h6{height:78.951123px;}
.h1d{height:80.082750px;}
.hb{height:93.951123px;}
.hf{height:118.320220px;}
.h1{height:141.280957px;}
.h8{height:143.761772px;}
.h9{height:144.601772px;}
.hd{height:154.403027px;}
.h1e{height:157.792896px;}
.h17{height:167.625000px;}
.h1b{height:187.875000px;}
.h21{height:197.268457px;}
.h16{height:202.500000px;}
.h1a{height:203.625000px;}
.h19{height:373.500000px;}
.h15{height:392.625000px;}
.h1c{height:405.000000px;}
.h10{height:406.125000px;}
.h0{height:607.500000px;}
.w6{width:156.375000px;}
.w5{width:157.500000px;}
.w3{width:178.875000px;}
.w4{width:180.000000px;}
.w2{width:659.250000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x70{left:11.430000px;}
.x87{left:12.495000px;}
.x8b{left:31.874984px;}
.x65{left:37.275000px;}
.x61{left:47.970000px;}
.x7f{left:57.375000px;}
.x60{left:59.625000px;}
.x5f{left:83.025000px;}
.x8d{left:85.274984px;}
.x8e{left:87.974984px;}
.x6b{left:93.637484px;}
.x2{left:96.074984px;}
.x8a{left:98.399984px;}
.x62{left:106.950000px;}
.x43{left:110.249984px;}
.x1b{left:111.974984px;}
.x6a{left:115.499984px;}
.x1d{left:117.074984px;}
.x1{left:124.762484px;}
.xb{left:128.399984px;}
.x18{left:131.099984px;}
.x1a{left:133.837484px;}
.x11{left:140.137484px;}
.x6f{left:141.750000px;}
.x25{left:148.837484px;}
.x4d{left:151.154984px;}
.xf{left:157.574984px;}
.x4e{left:161.324984px;}
.x36{left:169.469984px;}
.x35{left:171.704984px;}
.x4f{left:177.929984px;}
.x40{left:184.004984px;}
.x6d{left:186.104984px;}
.x24{left:197.444984px;}
.x26{left:202.874984px;}
.x19{left:207.494984px;}
.x7b{left:212.625000px;}
.x1e{left:217.319984px;}
.x75{left:219.269984px;}
.x67{left:227.894984px;}
.x74{left:230.324984px;}
.x3{left:234.194984px;}
.x5{left:239.024984px;}
.x4{left:240.029984px;}
.x4c{left:252.629984px;}
.x5d{left:262.125000px;}
.x7c{left:269.474984px;}
.x66{left:279.345000px;}
.x6c{left:282.719984px;}
.x2a{left:287.369984px;}
.x80{left:301.574984px;}
.x71{left:319.500000px;}
.x2c{left:331.574984px;}
.x79{left:337.619984px;}
.x10{left:341.444984px;}
.xe{left:342.944984px;}
.x42{left:357.029984px;}
.x2f{left:364.424984px;}
.x7d{left:369.000000px;}
.x28{left:372.299984px;}
.x12{left:374.324984px;}
.x1c{left:377.249984px;}
.x85{left:383.625000px;}
.xa{left:394.199984px;}
.xd{left:406.379984px;}
.x2e{left:412.874984px;}
.x41{left:426.404984px;}
.x58{left:437.024984px;}
.x69{left:440.774984px;}
.x29{left:443.819984px;}
.x50{left:445.124984px;}
.x27{left:446.129984px;}
.x72{left:448.049984px;}
.x57{left:449.069984px;}
.x59{left:450.269984px;}
.x56{left:454.724984px;}
.x89{left:472.379984px;}
.x7a{left:482.099984px;}
.x30{left:484.949984px;}
.x21{left:491.999984px;}
.x33{left:493.274984px;}
.x51{left:495.104984px;}
.x73{left:498.375000px;}
.x34{left:517.619984px;}
.x7e{left:524.250000px;}
.x31{left:530.174984px;}
.x8c{left:532.124984px;}
.x86{left:538.875000px;}
.x5e{left:553.950000px;}
.x2d{left:559.154984px;}
.x32{left:575.399984px;}
.x14{left:577.694984px;}
.x13{left:588.899984px;}
.x2b{left:592.754984px;}
.x8{left:599.654984px;}
.x68{left:602.594984px;}
.xc{left:606.944984px;}
.x63{left:611.550000px;}
.x4b{left:621.974984px;}
.x7{left:630.599984px;}
.x64{left:636.345000px;}
.x1f{left:639.944984px;}
.x6{left:665.444984px;}
.x45{left:679.769984px;}
.x44{left:685.499984px;}
.x46{left:687.074984px;}
.x4a{left:692.744984px;}
.x88{left:695.250000px;}
.x9{left:700.049984px;}
.x82{left:722.654984px;}
.x77{left:725.279984px;}
.x83{left:726.794984px;}
.x52{left:736.274984px;}
.x54{left:739.874984px;}
.x5a{left:741.074984px;}
.x49{left:742.379984px;}
.x53{left:743.594984px;}
.x5b{left:745.724984px;}
.x84{left:764.999984px;}
.x20{left:773.024984px;}
.x8f{left:774.329984px;}
.x5c{left:778.574984px;}
.x76{left:786.374984px;}
.x81{left:791.924984px;}
.x16{left:797.819984px;}
.x15{left:799.829984px;}
.x78{left:805.829984px;}
.x55{left:814.049984px;}
.x23{left:822.299984px;}
.x22{left:826.529984px;}
.x17{left:851.294984px;}
.x3d{left:852.569984px;}
.x3a{left:854.174984px;}
.x3b{left:862.124984px;}
.x3e{left:864.674984px;}
.x39{left:868.049984px;}
.x47{left:870.254984px;}
.x37{left:871.994984px;}
.x3c{left:873.779984px;}
.x48{left:886.724984px;}
.x38{left:901.724984px;}
.x3f{left:922.319984px;}
.x6e{left:950.399984px;}
.x90{left:1033.574984px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-16.000000pt;}
.v7{vertical-align:-7.466667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.333333pt;}
.v1{vertical-align:24.000000pt;}
.v6{vertical-align:43.840000pt;}
.v4{vertical-align:57.706667pt;}
.ls25{letter-spacing:-2.709333pt;}
.lse{letter-spacing:-2.197333pt;}
.ls26{letter-spacing:-1.760000pt;}
.ls24{letter-spacing:-1.680000pt;}
.lsf{letter-spacing:-1.674667pt;}
.ls29{letter-spacing:-1.626667pt;}
.ls2c{letter-spacing:-1.322667pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.137600pt;}
.ls2e{letter-spacing:-0.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.018133pt;}
.ls30{letter-spacing:0.031093pt;}
.ls2a{letter-spacing:0.042027pt;}
.ls8{letter-spacing:0.075200pt;}
.ls31{letter-spacing:0.164267pt;}
.ls9{letter-spacing:0.208533pt;}
.ls1e{letter-spacing:0.211200pt;}
.ls27{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.297600pt;}
.ls1a{letter-spacing:0.321067pt;}
.ls1b{letter-spacing:0.358533pt;}
.ls19{letter-spacing:0.481067pt;}
.ls17{letter-spacing:0.518533pt;}
.ls2b{letter-spacing:0.528000pt;}
.ls3{letter-spacing:1.157333pt;}
.ls0{letter-spacing:1.237333pt;}
.ls13{letter-spacing:1.242667pt;}
.ls5{letter-spacing:1.290667pt;}
.ls32{letter-spacing:1.312000pt;}
.ls18{letter-spacing:1.346133pt;}
.ls12{letter-spacing:1.408000pt;}
.ls6{letter-spacing:1.424000pt;}
.ls10{letter-spacing:1.466667pt;}
.ls15{letter-spacing:1.541333pt;}
.lsd{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.738667pt;}
.lsb{letter-spacing:1.776000pt;}
.ls16{letter-spacing:1.786667pt;}
.ls11{letter-spacing:1.840000pt;}
.ls28{letter-spacing:1.882667pt;}
.lsc{letter-spacing:1.952000pt;}
.ls23{letter-spacing:2.320000pt;}
.ls21{letter-spacing:2.949333pt;}
.ls1c{letter-spacing:16.600000pt;}
.ls1f{letter-spacing:16.706667pt;}
.ls1d{letter-spacing:16.760000pt;}
.ls22{letter-spacing:19.334933pt;}
.ls2d{letter-spacing:19.933333pt;}
.ls20{letter-spacing:20.593600pt;}
.ls7{letter-spacing:30.801867pt;}
.ws35{word-spacing:-44.889067pt;}
.wsa7{word-spacing:-44.059600pt;}
.ws33{word-spacing:-43.113067pt;}
.ws0{word-spacing:-40.686400pt;}
.ws9{word-spacing:-39.449067pt;}
.ws8{word-spacing:-22.045067pt;}
.wsb{word-spacing:-22.014533pt;}
.ws45{word-spacing:-20.866533pt;}
.ws60{word-spacing:-20.838400pt;}
.ws79{word-spacing:-20.733200pt;}
.ws65{word-spacing:-20.705067pt;}
.ws68{word-spacing:-20.612667pt;}
.ws8e{word-spacing:-19.870800pt;}
.wse{word-spacing:-19.297067pt;}
.wsd{word-spacing:-19.266533pt;}
.ws2{word-spacing:-17.434533pt;}
.ws49{word-spacing:-17.404000pt;}
.wsa8{word-spacing:-16.518533pt;}
.wsab{word-spacing:-12.854533pt;}
.ws1{word-spacing:-11.022533pt;}
.ws6{word-spacing:-8.274533pt;}
.ws5{word-spacing:-8.244000pt;}
.ws8b{word-spacing:-6.919333pt;}
.ws3c{word-spacing:-5.616400pt;}
.ws54{word-spacing:-5.563067pt;}
.ws7c{word-spacing:-5.099600pt;}
.ws59{word-spacing:-4.523333pt;}
.ws4{word-spacing:-4.232533pt;}
.ws90{word-spacing:-3.297867pt;}
.ws11{word-spacing:-3.230400pt;}
.ws8c{word-spacing:-3.089733pt;}
.wsc{word-spacing:-2.990400pt;}
.ws14{word-spacing:-2.830400pt;}
.wsf{word-spacing:-2.786133pt;}
.ws6a{word-spacing:-2.501867pt;}
.wsae{word-spacing:-2.401867pt;}
.ws8f{word-spacing:-2.357013pt;}
.wsaf{word-spacing:-2.289600pt;}
.ws2e{word-spacing:-1.943200pt;}
.ws55{word-spacing:-1.670667pt;}
.ws22{word-spacing:-1.573333pt;}
.ws5b{word-spacing:-1.563600pt;}
.ws69{word-spacing:-1.341333pt;}
.ws9d{word-spacing:-1.089867pt;}
.ws2d{word-spacing:-1.076267pt;}
.ws9b{word-spacing:-1.035067pt;}
.ws98{word-spacing:-1.022933pt;}
.ws56{word-spacing:-0.972667pt;}
.ws23{word-spacing:-0.940800pt;}
.ws58{word-spacing:-0.932667pt;}
.ws36{word-spacing:-0.908000pt;}
.ws72{word-spacing:-0.885867pt;}
.ws94{word-spacing:-0.823467pt;}
.ws78{word-spacing:-0.783733pt;}
.ws9f{word-spacing:-0.772533pt;}
.ws4e{word-spacing:-0.594400pt;}
.ws15{word-spacing:-0.573467pt;}
.ws53{word-spacing:-0.534533pt;}
.ws50{word-spacing:-0.477200pt;}
.ws7b{word-spacing:-0.450133pt;}
.ws26{word-spacing:-0.348133pt;}
.wsac{word-spacing:-0.289733pt;}
.wsad{word-spacing:-0.240213pt;}
.ws8a{word-spacing:-0.226800pt;}
.ws3b{word-spacing:-0.133333pt;}
.ws28{word-spacing:-0.132133pt;}
.ws44{word-spacing:-0.083067pt;}
.ws46{word-spacing:-0.076133pt;}
.ws7e{word-spacing:-0.042000pt;}
.ws25{word-spacing:-0.029333pt;}
.ws7{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.047520pt;}
.ws9c{word-spacing:0.201333pt;}
.wsa9{word-spacing:0.207520pt;}
.ws34{word-spacing:0.228267pt;}
.ws96{word-spacing:0.258933pt;}
.ws3f{word-spacing:0.326400pt;}
.ws91{word-spacing:0.354133pt;}
.ws93{word-spacing:0.379067pt;}
.ws85{word-spacing:0.416533pt;}
.wsa6{word-spacing:0.449067pt;}
.ws76{word-spacing:0.526000pt;}
.ws7d{word-spacing:0.541600pt;}
.wsa3{word-spacing:0.567067pt;}
.ws51{word-spacing:0.637467pt;}
.ws2f{word-spacing:0.706667pt;}
.ws17{word-spacing:0.760000pt;}
.ws29{word-spacing:0.774667pt;}
.ws13{word-spacing:0.796800pt;}
.ws3{word-spacing:0.802133pt;}
.ws99{word-spacing:0.816533pt;}
.wsa1{word-spacing:0.867333pt;}
.ws24{word-spacing:0.877867pt;}
.ws30{word-spacing:0.964133pt;}
.ws57{word-spacing:0.975867pt;}
.ws16{word-spacing:1.019333pt;}
.ws19{word-spacing:1.056533pt;}
.ws43{word-spacing:1.057067pt;}
.ws97{word-spacing:1.110267pt;}
.ws7a{word-spacing:1.169333pt;}
.ws31{word-spacing:1.269867pt;}
.ws5a{word-spacing:1.273733pt;}
.ws92{word-spacing:1.286667pt;}
.ws2b{word-spacing:1.294000pt;}
.ws42{word-spacing:1.326667pt;}
.ws1a{word-spacing:1.430133pt;}
.ws9a{word-spacing:1.441333pt;}
.wsa5{word-spacing:1.515733pt;}
.ws10{word-spacing:1.519067pt;}
.ws70{word-spacing:1.663333pt;}
.wsa2{word-spacing:1.673733pt;}
.ws41{word-spacing:1.767333pt;}
.wsa0{word-spacing:1.772800pt;}
.ws18{word-spacing:1.821867pt;}
.ws52{word-spacing:1.832533pt;}
.ws2a{word-spacing:1.885867pt;}
.ws2c{word-spacing:1.901333pt;}
.ws32{word-spacing:1.926800pt;}
.ws4f{word-spacing:1.992533pt;}
.ws27{word-spacing:2.019467pt;}
.wsa4{word-spacing:2.021333pt;}
.ws77{word-spacing:2.045867pt;}
.ws12{word-spacing:2.126400pt;}
.ws3d{word-spacing:2.186667pt;}
.ws40{word-spacing:2.304000pt;}
.ws9e{word-spacing:2.310400pt;}
.ws67{word-spacing:2.720000pt;}
.ws62{word-spacing:2.773333pt;}
.ws8d{word-spacing:3.001067pt;}
.ws6d{word-spacing:3.198667pt;}
.ws6b{word-spacing:3.478667pt;}
.ws95{word-spacing:3.554533pt;}
.ws5d{word-spacing:4.227200pt;}
.ws6e{word-spacing:4.639733pt;}
.ws6f{word-spacing:4.656000pt;}
.ws38{word-spacing:5.118667pt;}
.ws3a{word-spacing:5.303333pt;}
.ws39{word-spacing:5.744133pt;}
.ws5c{word-spacing:6.089600pt;}
.ws71{word-spacing:6.093467pt;}
.ws6c{word-spacing:6.099200pt;}
.ws73{word-spacing:6.191067pt;}
.ws64{word-spacing:6.259200pt;}
.ws5e{word-spacing:6.270933pt;}
.ws87{word-spacing:6.332667pt;}
.ws37{word-spacing:6.854533pt;}
.ws75{word-spacing:7.431333pt;}
.ws74{word-spacing:7.859200pt;}
.ws63{word-spacing:8.295467pt;}
.ws5f{word-spacing:8.312533pt;}
.ws61{word-spacing:8.348800pt;}
.ws66{word-spacing:8.402133pt;}
.ws1f{word-spacing:9.580000pt;}
.ws1e{word-spacing:10.198533pt;}
.ws86{word-spacing:10.625867pt;}
.ws88{word-spacing:10.704800pt;}
.ws1b{word-spacing:11.128533pt;}
.ws20{word-spacing:11.359733pt;}
.ws89{word-spacing:11.699600pt;}
.ws1d{word-spacing:12.043200pt;}
.ws1c{word-spacing:12.256800pt;}
.ws21{word-spacing:13.231333pt;}
.ws82{word-spacing:20.420000pt;}
.ws7f{word-spacing:22.022533pt;}
.ws84{word-spacing:22.543867pt;}
.ws80{word-spacing:26.075867pt;}
.ws83{word-spacing:27.614400pt;}
.ws81{word-spacing:28.986133pt;}
.ws4c{word-spacing:248.604133pt;}
.ws4d{word-spacing:288.323333pt;}
.ws4b{word-spacing:341.240667pt;}
.ws4a{word-spacing:364.440400pt;}
.ws48{word-spacing:391.988933pt;}
.ws3e{word-spacing:401.742533pt;}
.ws47{word-spacing:406.767067pt;}
.wsa{word-spacing:435.708000pt;}
._15{margin-left:-8.219867pt;}
._14{margin-left:-5.767733pt;}
._9{margin-left:-4.669333pt;}
._0{margin-left:-2.983467pt;}
._1{margin-left:-1.850667pt;}
._5{margin-left:-0.952133pt;}
._3{width:1.605333pt;}
._2{width:2.584000pt;}
._8{width:4.033600pt;}
._27{width:10.637200pt;}
._26{width:11.844533pt;}
._7{width:12.873333pt;}
._6{width:14.628133pt;}
._25{width:15.627200pt;}
._24{width:17.899867pt;}
._11{width:19.514000pt;}
._10{width:20.521067pt;}
._c{width:21.611067pt;}
._1f{width:23.656800pt;}
._20{width:24.958667pt;}
._12{width:26.513467pt;}
._1d{width:27.737200pt;}
._1e{width:28.913867pt;}
._f{width:30.537200pt;}
._e{width:32.737067pt;}
._23{width:34.472667pt;}
._4{width:41.808533pt;}
._21{width:44.005867pt;}
._22{width:44.930533pt;}
._1b{width:287.781067pt;}
._13{width:340.761333pt;}
._1a{width:362.385200pt;}
._1c{width:365.355067pt;}
._a{width:384.132133pt;}
._17{width:403.493600pt;}
._b{width:412.146000pt;}
._19{width:418.331867pt;}
._16{width:427.803200pt;}
._18{width:439.983067pt;}
._d{width:496.374933pt;}
.fs5{font-size:36.000000pt;}
.fs3{font-size:36.133333pt;}
.fs13{font-size:48.000000pt;}
.fs2{font-size:48.133333pt;}
.fs4{font-size:52.133333pt;}
.fs11{font-size:56.133333pt;}
.fs10{font-size:72.133333pt;}
.fsc{font-size:76.000000pt;}
.fs1{font-size:76.133333pt;}
.fse{font-size:76.266667pt;}
.fsd{font-size:84.000000pt;}
.fs8{font-size:84.133333pt;}
.fs9{font-size:84.266667pt;}
.fsb{font-size:88.683433pt;}
.fs7{font-size:96.133333pt;}
.fs6{font-size:96.266667pt;}
.fs0{font-size:172.266667pt;}
.fsa{font-size:188.266667pt;}
.fsf{font-size:192.400000pt;}
.fs12{font-size:240.533333pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:6.233333pt;}
.ycc{bottom:7.533333pt;}
.y6d{bottom:21.133333pt;}
.y4e{bottom:21.633333pt;}
.y14{bottom:29.000000pt;}
.yb0{bottom:29.800000pt;}
.y9f{bottom:38.000000pt;}
.y44{bottom:38.200000pt;}
.y9{bottom:38.766667pt;}
.yb8{bottom:38.900000pt;}
.y5d{bottom:43.000000pt;}
.yc2{bottom:44.300000pt;}
.y69{bottom:45.033333pt;}
.y78{bottom:49.433333pt;}
.y89{bottom:51.633333pt;}
.y8f{bottom:52.266667pt;}
.yf{bottom:56.400000pt;}
.y24{bottom:56.966667pt;}
.y22{bottom:59.000000pt;}
.y4d{bottom:59.733333pt;}
.y32{bottom:60.966667pt;}
.y8{bottom:62.800000pt;}
.y5e{bottom:67.300000pt;}
.yaf{bottom:67.866667pt;}
.y13{bottom:68.066667pt;}
.y43{bottom:68.266667pt;}
.ya2{bottom:70.033333pt;}
.yb7{bottom:72.966667pt;}
.yaa{bottom:75.000000pt;}
.y2a{bottom:75.300000pt;}
.y75{bottom:75.900000pt;}
.ya0{bottom:82.733333pt;}
.y7{bottom:82.833333pt;}
.y87{bottom:82.866667pt;}
.y85{bottom:83.106667pt;}
.y82{bottom:83.306667pt;}
.yab{bottom:83.400000pt;}
.y9d{bottom:83.440000pt;}
.y95{bottom:83.506667pt;}
.y7f{bottom:83.533333pt;}
.y98{bottom:83.800000pt;}
.ye{bottom:85.433333pt;}
.y8e{bottom:86.333333pt;}
.y9c{bottom:88.000000pt;}
.y77{bottom:88.533333pt;}
.y84{bottom:89.000000pt;}
.yc1{bottom:90.133333pt;}
.ya4{bottom:94.000000pt;}
.y5f{bottom:94.293333pt;}
.y23{bottom:95.033333pt;}
.y21{bottom:97.066667pt;}
.y4c{bottom:98.800000pt;}
.y31{bottom:99.033333pt;}
.y1b{bottom:105.633333pt;}
.y12{bottom:106.133333pt;}
.y6{bottom:110.900000pt;}
.y88{bottom:111.866667pt;}
.y5c{bottom:113.666667pt;}
.y74{bottom:114.966667pt;}
.y16{bottom:118.866667pt;}
.y1c{bottom:118.900000pt;}
.y8d{bottom:119.400000pt;}
.ya1{bottom:120.733333pt;}
.y60{bottom:121.333333pt;}
.yc9{bottom:124.066667pt;}
.y58{bottom:124.633333pt;}
.ya8{bottom:126.000000pt;}
.y29{bottom:126.400000pt;}
.y76{bottom:126.600000pt;}
.y42{bottom:128.633333pt;}
.yc0{bottom:129.233333pt;}
.y1a{bottom:131.700000pt;}
.y5b{bottom:135.706667pt;}
.y4b{bottom:136.866667pt;}
.y30{bottom:138.106667pt;}
.y9a{bottom:139.000000pt;}
.y5{bottom:139.333333pt;}
.yc8{bottom:140.093333pt;}
.y57{bottom:146.666667pt;}
.yc{bottom:147.706667pt;}
.y61{bottom:148.333333pt;}
.y81{bottom:149.000000pt;}
.y73{bottom:153.026667pt;}
.y8c{bottom:153.426667pt;}
.y6c{bottom:155.466667pt;}
.y5a{bottom:157.733333pt;}
.yac{bottom:158.400000pt;}
.y7d{bottom:159.666667pt;}
.y18{bottom:159.733333pt;}
.ya7{bottom:159.866667pt;}
.y93{bottom:160.266667pt;}
.y6a{bottom:163.773333pt;}
.yb6{bottom:166.160000pt;}
.ybf{bottom:167.306667pt;}
.y11{bottom:168.360000pt;}
.y56{bottom:168.733333pt;}
.y9e{bottom:171.440000pt;}
.y86{bottom:172.106667pt;}
.y4{bottom:173.400000pt;}
.y15{bottom:175.000000pt;}
.y62{bottom:175.333333pt;}
.y2f{bottom:176.200000pt;}
.y28{bottom:177.506667pt;}
.y19{bottom:178.333333pt;}
.y59{bottom:179.800000pt;}
.yc7{bottom:180.173333pt;}
.y10{bottom:182.973333pt;}
.y7b{bottom:185.693333pt;}
.ya5{bottom:185.933333pt;}
.y91{bottom:186.333333pt;}
.y17{bottom:188.800000pt;}
.y97{bottom:189.000000pt;}
.y7a{bottom:191.000000pt;}
.y20{bottom:193.533333pt;}
.yc4{bottom:194.840000pt;}
.y6b{bottom:197.200000pt;}
.yb5{bottom:199.240000pt;}
.ybe{bottom:199.800000pt;}
.yc6{bottom:202.200000pt;}
.y63{bottom:202.360000pt;}
.yd{bottom:202.800000pt;}
.y90{bottom:208.000000pt;}
.y6e{bottom:208.573333pt;}
.y7e{bottom:209.000000pt;}
.ya9{bottom:209.106667pt;}
.y9b{bottom:222.106667pt;}
.y27{bottom:228.600000pt;}
.y64{bottom:229.360000pt;}
.y1f{bottom:231.600000pt;}
.y83{bottom:232.306667pt;}
.yb4{bottom:233.306667pt;}
.y35{bottom:238.200000pt;}
.ybd{bottom:238.866667pt;}
.y94{bottom:240.000000pt;}
.y38{bottom:243.026667pt;}
.y41{bottom:246.640000pt;}
.y49{bottom:248.306667pt;}
.yc5{bottom:250.466667pt;}
.y65{bottom:256.400000pt;}
.y46{bottom:259.266667pt;}
.y72{bottom:260.733333pt;}
.y3{bottom:263.640000pt;}
.y34{bottom:267.266667pt;}
.yb3{bottom:267.360000pt;}
.y48{bottom:270.333333pt;}
.y37{bottom:272.066667pt;}
.y99{bottom:272.800000pt;}
.y40{bottom:276.666667pt;}
.ybc{bottom:276.933333pt;}
.y55{bottom:279.066667pt;}
.y26{bottom:279.666667pt;}
.ya6{bottom:279.933333pt;}
.y45{bottom:281.306667pt;}
.y66{bottom:283.400000pt;}
.y2e{bottom:288.866667pt;}
.y47{bottom:292.373333pt;}
.y80{bottom:292.533333pt;}
.y51{bottom:293.773333pt;}
.yca{bottom:293.866667pt;}
.y79{bottom:294.506667pt;}
.y33{bottom:297.293333pt;}
.y71{bottom:299.733333pt;}
.yb2{bottom:300.400000pt;}
.y54{bottom:301.106667pt;}
.y36{bottom:302.133333pt;}
.y3f{bottom:305.733333pt;}
.y67{bottom:310.400000pt;}
.y2{bottom:314.733333pt;}
.ybb{bottom:315.000000pt;}
.y50{bottom:315.800000pt;}
.y96{bottom:323.506667pt;}
.y2d{bottom:327.960000pt;}
.y53{bottom:331.173333pt;}
.y25{bottom:331.773333pt;}
.yb1{bottom:334.466667pt;}
.yb{bottom:334.626667pt;}
.y3e{bottom:335.800000pt;}
.y68{bottom:337.440000pt;}
.y4f{bottom:337.840000pt;}
.y70{bottom:338.733333pt;}
.y2b{bottom:339.226667pt;}
.yae{bottom:341.706667pt;}
.y1e{bottom:342.640000pt;}
.y8b{bottom:346.933333pt;}
.y4a{bottom:348.640000pt;}
.y52{bottom:353.200000pt;}
.yba{bottom:354.066667pt;}
.ycb{bottom:357.266667pt;}
.ya3{bottom:364.173333pt;}
.y3d{bottom:364.840000pt;}
.y1{bottom:365.840000pt;}
.y2c{bottom:366.040000pt;}
.y7c{bottom:376.693333pt;}
.y6f{bottom:377.733333pt;}
.yad{bottom:379.773333pt;}
.y8a{bottom:381.000000pt;}
.yb9{bottom:392.133333pt;}
.y92{bottom:394.333333pt;}
.y3c{bottom:394.893333pt;}
.y3b{bottom:423.973333pt;}
.y1d{bottom:440.173333pt;}
.ya{bottom:444.173333pt;}
.y3a{bottom:453.000000pt;}
.y39{bottom:483.066667pt;}
.h5{height:26.244141pt;}
.h3{height:26.341341pt;}
.h22{height:34.945312pt;}
.h4{height:38.005404pt;}
.h20{height:40.921419pt;}
.h1f{height:52.585482pt;}
.h13{height:55.404297pt;}
.h11{height:55.427148pt;}
.h12{height:55.501497pt;}
.h18{height:55.598698pt;}
.h2{height:59.089388pt;}
.h14{height:61.236328pt;}
.ha{height:61.333529pt;}
.hc{height:61.430729pt;}
.he{height:64.650569pt;}
.h7{height:70.081576pt;}
.h6{height:70.178776pt;}
.h1d{height:71.184667pt;}
.hb{height:83.512109pt;}
.hf{height:105.173529pt;}
.h1{height:125.583073pt;}
.h8{height:127.788242pt;}
.h9{height:128.534909pt;}
.hd{height:137.247135pt;}
.h1e{height:140.260352pt;}
.h17{height:149.000000pt;}
.h1b{height:167.000000pt;}
.h21{height:175.349740pt;}
.h16{height:180.000000pt;}
.h1a{height:181.000000pt;}
.h19{height:332.000000pt;}
.h15{height:349.000000pt;}
.h1c{height:360.000000pt;}
.h10{height:361.000000pt;}
.h0{height:540.000000pt;}
.w6{width:139.000000pt;}
.w5{width:140.000000pt;}
.w3{width:159.000000pt;}
.w4{width:160.000000pt;}
.w2{width:586.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x70{left:10.160000pt;}
.x87{left:11.106667pt;}
.x8b{left:28.333319pt;}
.x65{left:33.133333pt;}
.x61{left:42.640000pt;}
.x7f{left:51.000000pt;}
.x60{left:53.000000pt;}
.x5f{left:73.800000pt;}
.x8d{left:75.799986pt;}
.x8e{left:78.199986pt;}
.x6b{left:83.233319pt;}
.x2{left:85.399986pt;}
.x8a{left:87.466652pt;}
.x62{left:95.066667pt;}
.x43{left:97.999986pt;}
.x1b{left:99.533319pt;}
.x6a{left:102.666652pt;}
.x1d{left:104.066652pt;}
.x1{left:110.899986pt;}
.xb{left:114.133319pt;}
.x18{left:116.533319pt;}
.x1a{left:118.966652pt;}
.x11{left:124.566652pt;}
.x6f{left:126.000000pt;}
.x25{left:132.299986pt;}
.x4d{left:134.359986pt;}
.xf{left:140.066652pt;}
.x4e{left:143.399986pt;}
.x36{left:150.639986pt;}
.x35{left:152.626652pt;}
.x4f{left:158.159986pt;}
.x40{left:163.559986pt;}
.x6d{left:165.426652pt;}
.x24{left:175.506652pt;}
.x26{left:180.333319pt;}
.x19{left:184.439986pt;}
.x7b{left:189.000000pt;}
.x1e{left:193.173319pt;}
.x75{left:194.906652pt;}
.x67{left:202.573319pt;}
.x74{left:204.733319pt;}
.x3{left:208.173319pt;}
.x5{left:212.466652pt;}
.x4{left:213.359986pt;}
.x4c{left:224.559986pt;}
.x5d{left:233.000000pt;}
.x7c{left:239.533319pt;}
.x66{left:248.306667pt;}
.x6c{left:251.306652pt;}
.x2a{left:255.439986pt;}
.x80{left:268.066652pt;}
.x71{left:284.000000pt;}
.x2c{left:294.733319pt;}
.x79{left:300.106652pt;}
.x10{left:303.506652pt;}
.xe{left:304.839986pt;}
.x42{left:317.359986pt;}
.x2f{left:323.933319pt;}
.x7d{left:328.000000pt;}
.x28{left:330.933319pt;}
.x12{left:332.733319pt;}
.x1c{left:335.333319pt;}
.x85{left:341.000000pt;}
.xa{left:350.399986pt;}
.xd{left:361.226652pt;}
.x2e{left:366.999986pt;}
.x41{left:379.026652pt;}
.x58{left:388.466652pt;}
.x69{left:391.799986pt;}
.x29{left:394.506652pt;}
.x50{left:395.666652pt;}
.x27{left:396.559986pt;}
.x72{left:398.266652pt;}
.x57{left:399.173319pt;}
.x59{left:400.239986pt;}
.x56{left:404.199986pt;}
.x89{left:419.893319pt;}
.x7a{left:428.533319pt;}
.x30{left:431.066652pt;}
.x21{left:437.333319pt;}
.x33{left:438.466652pt;}
.x51{left:440.093319pt;}
.x73{left:443.000000pt;}
.x34{left:460.106652pt;}
.x7e{left:466.000000pt;}
.x31{left:471.266652pt;}
.x8c{left:472.999986pt;}
.x86{left:479.000000pt;}
.x5e{left:492.400000pt;}
.x2d{left:497.026652pt;}
.x32{left:511.466652pt;}
.x14{left:513.506652pt;}
.x13{left:523.466652pt;}
.x2b{left:526.893319pt;}
.x8{left:533.026652pt;}
.x68{left:535.639986pt;}
.xc{left:539.506652pt;}
.x63{left:543.600000pt;}
.x4b{left:552.866652pt;}
.x7{left:560.533319pt;}
.x64{left:565.640000pt;}
.x1f{left:568.839986pt;}
.x6{left:591.506652pt;}
.x45{left:604.239986pt;}
.x44{left:609.333319pt;}
.x46{left:610.733319pt;}
.x4a{left:615.773319pt;}
.x88{left:618.000000pt;}
.x9{left:622.266652pt;}
.x82{left:642.359986pt;}
.x77{left:644.693319pt;}
.x83{left:646.039986pt;}
.x52{left:654.466652pt;}
.x54{left:657.666652pt;}
.x5a{left:658.733319pt;}
.x49{left:659.893319pt;}
.x53{left:660.973319pt;}
.x5b{left:662.866652pt;}
.x84{left:679.999986pt;}
.x20{left:687.133319pt;}
.x8f{left:688.293319pt;}
.x5c{left:692.066652pt;}
.x76{left:698.999986pt;}
.x81{left:703.933319pt;}
.x16{left:709.173319pt;}
.x15{left:710.959986pt;}
.x78{left:716.293319pt;}
.x55{left:723.599986pt;}
.x23{left:730.933319pt;}
.x22{left:734.693319pt;}
.x17{left:756.706652pt;}
.x3d{left:757.839986pt;}
.x3a{left:759.266652pt;}
.x3b{left:766.333319pt;}
.x3e{left:768.599986pt;}
.x39{left:771.599986pt;}
.x47{left:773.559986pt;}
.x37{left:775.106652pt;}
.x3c{left:776.693319pt;}
.x48{left:788.199986pt;}
.x38{left:801.533319pt;}
.x3f{left:819.839986pt;}
.x6e{left:844.799986pt;}
.x90{left:918.733319pt;}
}




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