
    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_8df01fd9a4e10b3eb0a650cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_aa8409a5e663a0863df62202.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_7b41e5fef1f64204e9ff5960.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_dec996ba1f01f62c28b178bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_977574fd48276a64324956a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.348000px;}
.ws7c{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.669328px;}
.ws1e{word-spacing:-8.448000px;}
.ws28{word-spacing:-5.874000px;}
.ws69{word-spacing:-4.488000px;}
.ws22{word-spacing:-3.960000px;}
.ws92{word-spacing:-3.894000px;}
.ws8e{word-spacing:-3.564000px;}
.ws9d{word-spacing:-3.498000px;}
.ws74{word-spacing:-3.432000px;}
.ws6d{word-spacing:-3.300000px;}
.ws2a{word-spacing:-3.168000px;}
.ws5c{word-spacing:-3.036000px;}
.ws85{word-spacing:-2.970000px;}
.ws94{word-spacing:-2.838000px;}
.ws1f{word-spacing:-2.772000px;}
.ws6a{word-spacing:-2.706000px;}
.ws3{word-spacing:-2.664000px;}
.ws59{word-spacing:-2.574000px;}
.ws76{word-spacing:-2.508000px;}
.ws16{word-spacing:-2.376000px;}
.wsc{word-spacing:-2.310000px;}
.ws58{word-spacing:-2.244000px;}
.ws1b{word-spacing:-2.112000px;}
.ws8c{word-spacing:-1.914000px;}
.ws15{word-spacing:-1.848000px;}
.ws5f{word-spacing:-1.650000px;}
.wsa{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.452000px;}
.ws1d{word-spacing:-1.386000px;}
.ws80{word-spacing:-1.320000px;}
.ws86{word-spacing:-1.254000px;}
.ws4e{word-spacing:-1.188000px;}
.ws7b{word-spacing:-1.056000px;}
.ws27{word-spacing:-0.990000px;}
.ws82{word-spacing:-0.924000px;}
.wsa3{word-spacing:-0.858000px;}
.ws5{word-spacing:-0.792000px;}
.ws6f{word-spacing:-0.726000px;}
.ws3b{word-spacing:-0.660000px;}
.ws43{word-spacing:-0.462000px;}
.ws6b{word-spacing:-0.396000px;}
.ws29{word-spacing:-0.330000px;}
.ws6e{word-spacing:-0.264000px;}
.ws7a{word-spacing:-0.198000px;}
.wsac{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws5e{word-spacing:0.132000px;}
.ws13{word-spacing:0.198000px;}
.ws4c{word-spacing:0.264000px;}
.ws24{word-spacing:0.330000px;}
.wse{word-spacing:0.396000px;}
.wsb4{word-spacing:0.528000px;}
.ws55{word-spacing:0.660000px;}
.wsb{word-spacing:0.726000px;}
.ws36{word-spacing:0.858000px;}
.ws5d{word-spacing:0.924000px;}
.ws8a{word-spacing:0.990000px;}
.ws57{word-spacing:1.056000px;}
.ws35{word-spacing:1.122000px;}
.ws6c{word-spacing:1.254000px;}
.ws63{word-spacing:1.320000px;}
.ws83{word-spacing:1.386000px;}
.ws11{word-spacing:1.452000px;}
.wsd{word-spacing:1.518000px;}
.ws8{word-spacing:1.584000px;}
.wsa8{word-spacing:1.650000px;}
.ws7d{word-spacing:1.716000px;}
.ws38{word-spacing:1.782000px;}
.ws72{word-spacing:1.914000px;}
.ws75{word-spacing:2.046000px;}
.ws9b{word-spacing:2.112000px;}
.ws73{word-spacing:2.244000px;}
.ws46{word-spacing:2.310000px;}
.wsa9{word-spacing:2.376000px;}
.wsa2{word-spacing:2.442000px;}
.ws23{word-spacing:2.508000px;}
.ws2b{word-spacing:2.574000px;}
.ws21{word-spacing:2.706000px;}
.ws64{word-spacing:2.838000px;}
.ws8d{word-spacing:2.904000px;}
.wsa7{word-spacing:3.102000px;}
.ws60{word-spacing:3.300000px;}
.ws17{word-spacing:3.366000px;}
.ws77{word-spacing:3.432000px;}
.wsab{word-spacing:3.498000px;}
.ws5b{word-spacing:3.828000px;}
.ws3e{word-spacing:3.894000px;}
.ws2e{word-spacing:3.960000px;}
.wsbe{word-spacing:4.026000px;}
.wsa5{word-spacing:4.356000px;}
.ws14{word-spacing:4.422000px;}
.ws25{word-spacing:4.554000px;}
.ws5a{word-spacing:4.620000px;}
.ws50{word-spacing:4.686000px;}
.ws87{word-spacing:4.752000px;}
.ws31{word-spacing:4.818000px;}
.ws40{word-spacing:4.950000px;}
.ws3a{word-spacing:5.148000px;}
.ws18{word-spacing:5.280000px;}
.ws65{word-spacing:5.346000px;}
.ws1a{word-spacing:5.412000px;}
.ws20{word-spacing:5.478000px;}
.ws84{word-spacing:5.676000px;}
.ws2d{word-spacing:5.742000px;}
.ws2f{word-spacing:5.808000px;}
.ws3c{word-spacing:5.940000px;}
.ws19{word-spacing:6.006000px;}
.ws32{word-spacing:6.138000px;}
.ws81{word-spacing:6.204000px;}
.ws67{word-spacing:6.336000px;}
.ws30{word-spacing:6.402000px;}
.ws47{word-spacing:6.468000px;}
.ws62{word-spacing:6.534000px;}
.ws95{word-spacing:6.600000px;}
.ws9c{word-spacing:6.666000px;}
.ws4{word-spacing:6.798000px;}
.ws7{word-spacing:6.996000px;}
.ws6{word-spacing:7.062000px;}
.ws78{word-spacing:7.128000px;}
.wsaf{word-spacing:7.194000px;}
.wsad{word-spacing:7.260000px;}
.ws42{word-spacing:7.524000px;}
.wsf{word-spacing:7.590000px;}
.ws51{word-spacing:7.656000px;}
.ws70{word-spacing:7.986000px;}
.ws8f{word-spacing:8.052000px;}
.ws61{word-spacing:8.184000px;}
.ws12{word-spacing:8.250000px;}
.ws41{word-spacing:8.382000px;}
.ws4b{word-spacing:8.580000px;}
.ws93{word-spacing:8.646000px;}
.ws4f{word-spacing:8.712000px;}
.wsc2{word-spacing:8.778000px;}
.ws45{word-spacing:8.844000px;}
.wsa1{word-spacing:8.910000px;}
.wsb3{word-spacing:8.976000px;}
.ws34{word-spacing:9.108000px;}
.ws96{word-spacing:9.306000px;}
.wsb6{word-spacing:9.372000px;}
.ws26{word-spacing:9.438000px;}
.wsbb{word-spacing:9.570000px;}
.wsa6{word-spacing:9.636000px;}
.ws7e{word-spacing:9.834000px;}
.wsb2{word-spacing:9.900000px;}
.ws52{word-spacing:9.966000px;}
.ws54{word-spacing:10.032000px;}
.ws3d{word-spacing:10.098000px;}
.ws79{word-spacing:10.164000px;}
.ws7f{word-spacing:10.296000px;}
.wsae{word-spacing:10.362000px;}
.ws48{word-spacing:10.560000px;}
.ws10{word-spacing:10.692000px;}
.wsba{word-spacing:10.824000px;}
.wsb1{word-spacing:10.890000px;}
.ws89{word-spacing:11.088000px;}
.ws33{word-spacing:11.220000px;}
.ws90{word-spacing:11.286000px;}
.ws9e{word-spacing:11.352000px;}
.ws68{word-spacing:11.418000px;}
.wsaa{word-spacing:11.616000px;}
.ws4d{word-spacing:11.748000px;}
.wsc3{word-spacing:11.814000px;}
.ws44{word-spacing:12.276000px;}
.ws39{word-spacing:12.474000px;}
.ws91{word-spacing:12.804000px;}
.ws9{word-spacing:13.068000px;}
.ws9f{word-spacing:13.332000px;}
.ws97{word-spacing:13.464000px;}
.ws4a{word-spacing:13.530000px;}
.ws88{word-spacing:13.728000px;}
.wsbd{word-spacing:14.520000px;}
.ws8b{word-spacing:14.916000px;}
.ws99{word-spacing:15.510000px;}
.ws71{word-spacing:15.576000px;}
.wsbc{word-spacing:16.368000px;}
.wsbf{word-spacing:16.632000px;}
.ws53{word-spacing:17.160000px;}
.ws2c{word-spacing:17.226000px;}
.wsb7{word-spacing:17.688000px;}
.ws56{word-spacing:18.018000px;}
.wsa4{word-spacing:18.678000px;}
.ws66{word-spacing:19.074000px;}
.wsa0{word-spacing:19.206000px;}
.wsb9{word-spacing:19.602000px;}
.wsb5{word-spacing:19.998000px;}
.wsb0{word-spacing:20.658000px;}
.ws49{word-spacing:20.856000px;}
.ws98{word-spacing:22.770000px;}
.wsc0{word-spacing:23.100000px;}
.ws3f{word-spacing:23.826000px;}
.ws9a{word-spacing:24.222000px;}
.ws1c{word-spacing:26.796000px;}
.wsc1{word-spacing:31.812000px;}
.wsb8{word-spacing:38.676000px;}
._0{margin-left:-7.409775px;}
._4{margin-left:-6.199200px;}
._1{margin-left:-4.302000px;}
._3{margin-left:-3.192000px;}
._2{margin-left:-1.520400px;}
._e{width:1.117800px;}
._5{width:2.599200px;}
._c{width:4.026000px;}
._12{width:6.565800px;}
._b{width:7.768200px;}
._8{width:9.022200px;}
._6{width:10.091400px;}
._7{width:11.404800px;}
._9{width:14.236200px;}
._a{width:16.183200px;}
._d{width:19.423800px;}
._10{width:20.605200px;}
._f{width:22.347600px;}
._14{width:23.754000px;}
._13{width:27.350400px;}
._15{width:31.800600px;}
._11{width:34.608000px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.y31{bottom:62.562450px;}
.y50{bottom:64.812450px;}
.y30{bottom:81.312450px;}
.y4f{bottom:83.562450px;}
.y2{bottom:85.039350px;}
.y12e{bottom:86.225700px;}
.y13f{bottom:87.956100px;}
.yd1{bottom:90.694500px;}
.yc3{bottom:93.425250px;}
.ye8{bottom:95.684700px;}
.y113{bottom:96.465900px;}
.y2f{bottom:100.062450px;}
.y84{bottom:100.723800px;}
.y4e{bottom:102.312450px;}
.ya4{bottom:102.454050px;}
.y12d{bottom:104.975700px;}
.yd0{bottom:105.694500px;}
.y13e{bottom:106.706100px;}
.y15d{bottom:110.969850px;}
.y112{bottom:115.215900px;}
.y83{bottom:119.473800px;}
.y4d{bottom:121.062450px;}
.ya3{bottom:121.204050px;}
.y12c{bottom:123.725700px;}
.y13d{bottom:125.456100px;}
.y15c{bottom:129.719850px;}
.y2e{bottom:131.568300px;}
.y111{bottom:133.965900px;}
.y82{bottom:138.223800px;}
.y4c{bottom:139.812450px;}
.ya2{bottom:139.954050px;}
.y12b{bottom:142.475700px;}
.y13c{bottom:144.206100px;}
.y15b{bottom:148.469850px;}
.y110{bottom:156.967950px;}
.y81{bottom:156.973800px;}
.y4b{bottom:158.562450px;}
.ya1{bottom:158.704050px;}
.y12a{bottom:161.225700px;}
.y2d{bottom:162.820200px;}
.y13b{bottom:162.956100px;}
.y15a{bottom:167.219850px;}
.y10f{bottom:175.717950px;}
.y80{bottom:175.723800px;}
.ya0{bottom:177.454050px;}
.y2c{bottom:181.570200px;}
.y13a{bottom:181.706100px;}
.y129{bottom:184.227750px;}
.y159{bottom:185.969850px;}
.y4a{bottom:190.068300px;}
.y10e{bottom:194.467950px;}
.y7f{bottom:194.473800px;}
.y9f{bottom:196.204050px;}
.y139{bottom:200.456100px;}
.y128{bottom:202.977750px;}
.y2b{bottom:204.572250px;}
.y158{bottom:204.719850px;}
.y10d{bottom:213.217950px;}
.y7e{bottom:213.223800px;}
.y9e{bottom:214.954050px;}
.y138{bottom:219.206100px;}
.y127{bottom:221.727750px;}
.y2a{bottom:223.322250px;}
.y157{bottom:227.721900px;}
.y10c{bottom:231.967950px;}
.y7d{bottom:231.973800px;}
.y9d{bottom:233.704050px;}
.y137{bottom:237.956100px;}
.y126{bottom:240.477750px;}
.y29{bottom:242.072250px;}
.y156{bottom:246.471900px;}
.y10b{bottom:250.717950px;}
.y9c{bottom:252.454050px;}
.y7c{bottom:254.975700px;}
.y136{bottom:256.706100px;}
.y125{bottom:259.227750px;}
.y28{bottom:260.822250px;}
.y155{bottom:265.221900px;}
.y49{bottom:269.326200px;}
.y10a{bottom:269.467950px;}
.y7b{bottom:273.725700px;}
.y9b{bottom:275.456100px;}
.y124{bottom:277.977750px;}
.y27{bottom:279.572250px;}
.y154{bottom:283.971900px;}
.y48{bottom:288.076200px;}
.y135{bottom:288.212100px;}
.y109{bottom:288.217950px;}
.y7a{bottom:292.475700px;}
.y9a{bottom:294.206100px;}
.y123{bottom:296.727750px;}
.y26{bottom:298.322250px;}
.y153{bottom:302.721900px;}
.y108{bottom:306.967950px;}
.y47{bottom:311.078100px;}
.y79{bottom:311.225850px;}
.y99{bottom:312.956100px;}
.y122{bottom:315.477750px;}
.y25{bottom:317.072250px;}
.y152{bottom:321.471900px;}
.y107{bottom:325.717950px;}
.y46{bottom:329.828100px;}
.y78{bottom:329.975850px;}
.y98{bottom:331.706100px;}
.y121{bottom:334.227750px;}
.y24{bottom:335.822250px;}
.y151{bottom:340.221900px;}
.y106{bottom:344.467950px;}
.y45{bottom:348.578100px;}
.y77{bottom:348.725850px;}
.y97{bottom:350.456100px;}
.y120{bottom:352.977750px;}
.y23{bottom:354.572250px;}
.y150{bottom:358.971900px;}
.y105{bottom:363.217950px;}
.y44{bottom:367.328100px;}
.y76{bottom:367.475850px;}
.y96{bottom:369.206100px;}
.y11f{bottom:371.727750px;}
.y22{bottom:373.322250px;}
.y104{bottom:381.967950px;}
.y14f{bottom:381.973800px;}
.ye7{bottom:385.646550px;}
.y43{bottom:386.078100px;}
.y75{bottom:386.225850px;}
.y95{bottom:387.956100px;}
.y11e{bottom:390.477750px;}
.y21{bottom:392.072250px;}
.y103{bottom:400.717950px;}
.y14e{bottom:400.723800px;}
.ye6{bottom:403.646550px;}
.y42{bottom:404.828100px;}
.y74{bottom:404.975850px;}
.y94{bottom:406.706100px;}
.y11d{bottom:409.227750px;}
.y20{bottom:410.822250px;}
.y102{bottom:419.467950px;}
.y14d{bottom:419.473800px;}
.y41{bottom:423.578100px;}
.y73{bottom:423.725850px;}
.y93{bottom:425.456100px;}
.y11c{bottom:427.977750px;}
.y1f{bottom:429.572250px;}
.y101{bottom:438.217950px;}
.y14c{bottom:438.223800px;}
.ye5{bottom:440.408850px;}
.y40{bottom:442.328100px;}
.y72{bottom:442.475850px;}
.y92{bottom:444.206100px;}
.ydf{bottom:444.660750px;}
.y11b{bottom:446.727750px;}
.y1e{bottom:448.322250px;}
.yc2{bottom:451.552050px;}
.y100{bottom:456.967950px;}
.y14b{bottom:456.973800px;}
.ye4{bottom:459.158850px;}
.y3f{bottom:461.078100px;}
.y71{bottom:461.225850px;}
.y91{bottom:462.956100px;}
.yde{bottom:463.410750px;}
.y11a{bottom:465.477750px;}
.y1d{bottom:467.072250px;}
.yc1{bottom:469.552050px;}
.yff{bottom:475.717950px;}
.y14a{bottom:475.723800px;}
.ye3{bottom:477.908850px;}
.y3e{bottom:479.828100px;}
.y70{bottom:479.975850px;}
.y90{bottom:481.706100px;}
.ydd{bottom:482.160750px;}
.y119{bottom:484.227750px;}
.y1c{bottom:485.822250px;}
.yfe{bottom:494.467950px;}
.y149{bottom:494.473800px;}
.ye2{bottom:496.658850px;}
.y3d{bottom:498.578100px;}
.yaf{bottom:498.725850px;}
.ydc{bottom:500.910750px;}
.y6f{bottom:502.977750px;}
.y1b{bottom:504.572250px;}
.ycf{bottom:507.819750px;}
.y8f{bottom:513.211950px;}
.yc0{bottom:513.217950px;}
.y148{bottom:513.223800px;}
.ye1{bottom:515.408850px;}
.y3c{bottom:517.328100px;}
.yfd{bottom:517.469850px;}
.yae{bottom:517.475850px;}
.ydb{bottom:519.660750px;}
.y6e{bottom:521.727750px;}
.y1a{bottom:523.322250px;}
.ybf{bottom:531.967950px;}
.y147{bottom:531.973800px;}
.ye0{bottom:534.158850px;}
.y3b{bottom:536.078100px;}
.yfc{bottom:536.219850px;}
.yad{bottom:536.225850px;}
.yda{bottom:538.410750px;}
.y6d{bottom:540.477750px;}
.y19{bottom:542.072250px;}
.yce{bottom:543.814350px;}
.y8e{bottom:550.717950px;}
.y3a{bottom:554.828100px;}
.yfb{bottom:554.969850px;}
.yac{bottom:554.975850px;}
.yd9{bottom:557.160750px;}
.y6c{bottom:559.227750px;}
.y18{bottom:560.822250px;}
.ycd{bottom:562.564350px;}
.y8d{bottom:569.467950px;}
.y39{bottom:573.578100px;}
.yfa{bottom:573.719850px;}
.yab{bottom:573.725850px;}
.yd8{bottom:575.910750px;}
.y6b{bottom:577.977750px;}
.y17{bottom:579.572250px;}
.y175{bottom:579.719850px;}
.ycc{bottom:581.314350px;}
.y8c{bottom:588.217950px;}
.y38{bottom:592.328100px;}
.yf9{bottom:592.469850px;}
.y146{bottom:592.475850px;}
.yd7{bottom:594.660750px;}
.y6a{bottom:596.727750px;}
.y16{bottom:598.322250px;}
.y174{bottom:598.469850px;}
.ycb{bottom:600.064350px;}
.y118{bottom:600.979650px;}
.y8b{bottom:606.967950px;}
.y37{bottom:611.078100px;}
.yf8{bottom:611.219850px;}
.y145{bottom:611.225850px;}
.yd6{bottom:613.410750px;}
.y69{bottom:615.477750px;}
.y15{bottom:617.072250px;}
.y173{bottom:617.219850px;}
.yca{bottom:618.814350px;}
.y117{bottom:619.729650px;}
.y8a{bottom:625.717950px;}
.y36{bottom:629.828100px;}
.yf7{bottom:629.969850px;}
.y144{bottom:629.975850px;}
.yd5{bottom:632.160750px;}
.y68{bottom:634.227750px;}
.y14{bottom:635.822250px;}
.y172{bottom:635.969850px;}
.yc9{bottom:637.564350px;}
.y116{bottom:638.479650px;}
.ybe{bottom:644.467950px;}
.y35{bottom:648.578100px;}
.yf6{bottom:648.719850px;}
.y143{bottom:648.725850px;}
.y67{bottom:652.977750px;}
.y13{bottom:654.572250px;}
.y171{bottom:654.719850px;}
.yc8{bottom:656.314350px;}
.y89{bottom:657.223800px;}
.y115{bottom:657.229650px;}
.yd4{bottom:662.378850px;}
.ybd{bottom:663.217950px;}
.y34{bottom:667.328100px;}
.yf5{bottom:667.469850px;}
.y142{bottom:667.475850px;}
.y66{bottom:671.727750px;}
.y12{bottom:673.322250px;}
.y170{bottom:673.469850px;}
.yc7{bottom:675.064350px;}
.y114{bottom:675.979650px;}
.ybc{bottom:681.967950px;}
.y33{bottom:686.078100px;}
.y134{bottom:686.219850px;}
.y141{bottom:686.225850px;}
.y65{bottom:690.477750px;}
.y11{bottom:692.072250px;}
.yc6{bottom:693.814350px;}
.y88{bottom:694.729650px;}
.y16f{bottom:696.471900px;}
.yf4{bottom:698.975850px;}
.ybb{bottom:700.717950px;}
.y32{bottom:704.828100px;}
.y133{bottom:704.969850px;}
.y64{bottom:709.227750px;}
.y87{bottom:713.479650px;}
.y16e{bottom:715.221900px;}
.yba{bottom:719.467950px;}
.y10{bottom:723.578100px;}
.y132{bottom:723.719850px;}
.yc5{bottom:727.842450px;}
.y63{bottom:727.977750px;}
.y86{bottom:732.229650px;}
.y16d{bottom:733.971900px;}
.yf3{bottom:736.481700px;}
.yb9{bottom:738.217950px;}
.y131{bottom:742.469850px;}
.yaa{bottom:746.727750px;}
.y62{bottom:750.979650px;}
.y16c{bottom:752.721900px;}
.yf2{bottom:755.231700px;}
.yb8{bottom:756.967950px;}
.yf{bottom:757.176000px;}
.y130{bottom:761.219850px;}
.ya9{bottom:765.477750px;}
.y61{bottom:769.729650px;}
.y16b{bottom:771.471900px;}
.yf1{bottom:773.981700px;}
.ye{bottom:775.176000px;}
.yb7{bottom:775.717950px;}
.y12f{bottom:779.969850px;}
.ya8{bottom:784.227750px;}
.y60{bottom:788.479650px;}
.y16a{bottom:790.221900px;}
.yf0{bottom:792.731700px;}
.yd{bottom:793.176000px;}
.yb6{bottom:798.719850px;}
.y140{bottom:802.977750px;}
.y5f{bottom:807.229650px;}
.y169{bottom:808.971900px;}
.yc{bottom:811.176000px;}
.yef{bottom:811.481700px;}
.yb5{bottom:817.469850px;}
.y5e{bottom:825.979650px;}
.yb{bottom:829.176000px;}
.yee{bottom:830.231700px;}
.y168{bottom:831.973800px;}
.yb4{bottom:836.219850px;}
.y5d{bottom:844.729650px;}
.ya{bottom:847.176000px;}
.yed{bottom:848.981700px;}
.y167{bottom:850.723800px;}
.yb3{bottom:854.969850px;}
.y5c{bottom:863.479650px;}
.yec{bottom:867.731700px;}
.y166{bottom:869.473800px;}
.yb2{bottom:873.719850px;}
.y5b{bottom:882.229650px;}
.y9{bottom:883.176000px;}
.yeb{bottom:886.481700px;}
.y165{bottom:888.223800px;}
.yb1{bottom:892.469850px;}
.y5a{bottom:900.979650px;}
.yea{bottom:905.231700px;}
.yd3{bottom:905.378850px;}
.y164{bottom:906.973800px;}
.y59{bottom:919.729650px;}
.y8{bottom:923.428050px;}
.yb0{bottom:923.975850px;}
.ye9{bottom:923.981700px;}
.y163{bottom:929.975850px;}
.y58{bottom:938.479650px;}
.yd2{bottom:942.731700px;}
.y162{bottom:948.725850px;}
.y57{bottom:957.229650px;}
.yc4{bottom:958.528350px;}
.y7{bottom:959.428050px;}
.y85{bottom:961.481700px;}
.y161{bottom:967.475850px;}
.ya7{bottom:975.979650px;}
.y56{bottom:980.231700px;}
.y160{bottom:986.225850px;}
.y6{bottom:992.428050px;}
.ya6{bottom:994.729650px;}
.y55{bottom:998.981700px;}
.y15f{bottom:1004.975850px;}
.ya5{bottom:1013.479650px;}
.y54{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y15e{bottom:1023.725850px;}
.y53{bottom:1036.481700px;}
.y4{bottom:1039.823700px;}
.y52{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y1{bottom:1108.294050px;}
.y51{bottom:1109.357100px;}
.hd{height:43.031250px;}
.hc{height:43.335938px;}
.hb{height:48.049805px;}
.h5{height:53.789062px;}
.h4{height:54.169922px;}
.ha{height:59.167969px;}
.h9{height:59.586914px;}
.h7{height:64.546875px;}
.h8{height:65.003906px;}
.h2{height:75.304688px;}
.h6{height:75.837891px;}
.h3{height:180.317586px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x12{left:85.039350px;}
.xc{left:90.438750px;}
.x16{left:95.660850px;}
.x23{left:98.539350px;}
.x11{left:106.299150px;}
.x6{left:120.985800px;}
.x8{left:149.530500px;}
.xb{left:163.801650px;}
.x19{left:179.563500px;}
.xa{left:218.196750px;}
.x9{left:221.634450px;}
.x13{left:226.506900px;}
.x10{left:230.623950px;}
.x20{left:252.055650px;}
.x1e{left:276.268800px;}
.x7{left:283.945950px;}
.x21{left:293.213400px;}
.x1c{left:347.086650px;}
.x1b{left:359.490300px;}
.xe{left:364.320450px;}
.x1d{left:370.679400px;}
.xd{left:377.251350px;}
.xf{left:385.487550px;}
.x17{left:390.607200px;}
.x14{left:476.716500px;}
.x15{left:497.976300px;}
.x4{left:508.762800px;}
.x22{left:524.976300px;}
.x5{left:553.162200px;}
.x18{left:652.985550px;}
.x1f{left:656.319450px;}
.x1a{left:658.956150px;}
.x3{left:775.393650px;}
.x1{left:827.035350px;}
.x2{left:908.545500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009067pt;}
.ws1{word-spacing:-16.309333pt;}
.ws7c{word-spacing:-11.861333pt;}
.ws0{word-spacing:-10.372736pt;}
.ws1e{word-spacing:-7.509333pt;}
.ws28{word-spacing:-5.221333pt;}
.ws69{word-spacing:-3.989333pt;}
.ws22{word-spacing:-3.520000pt;}
.ws92{word-spacing:-3.461333pt;}
.ws8e{word-spacing:-3.168000pt;}
.ws9d{word-spacing:-3.109333pt;}
.ws74{word-spacing:-3.050667pt;}
.ws6d{word-spacing:-2.933333pt;}
.ws2a{word-spacing:-2.816000pt;}
.ws5c{word-spacing:-2.698667pt;}
.ws85{word-spacing:-2.640000pt;}
.ws94{word-spacing:-2.522667pt;}
.ws1f{word-spacing:-2.464000pt;}
.ws6a{word-spacing:-2.405333pt;}
.ws3{word-spacing:-2.368000pt;}
.ws59{word-spacing:-2.288000pt;}
.ws76{word-spacing:-2.229333pt;}
.ws16{word-spacing:-2.112000pt;}
.wsc{word-spacing:-2.053333pt;}
.ws58{word-spacing:-1.994667pt;}
.ws1b{word-spacing:-1.877333pt;}
.ws8c{word-spacing:-1.701333pt;}
.ws15{word-spacing:-1.642667pt;}
.ws5f{word-spacing:-1.466667pt;}
.wsa{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.290667pt;}
.ws1d{word-spacing:-1.232000pt;}
.ws80{word-spacing:-1.173333pt;}
.ws86{word-spacing:-1.114667pt;}
.ws4e{word-spacing:-1.056000pt;}
.ws7b{word-spacing:-0.938667pt;}
.ws27{word-spacing:-0.880000pt;}
.ws82{word-spacing:-0.821333pt;}
.wsa3{word-spacing:-0.762667pt;}
.ws5{word-spacing:-0.704000pt;}
.ws6f{word-spacing:-0.645333pt;}
.ws3b{word-spacing:-0.586667pt;}
.ws43{word-spacing:-0.410667pt;}
.ws6b{word-spacing:-0.352000pt;}
.ws29{word-spacing:-0.293333pt;}
.ws6e{word-spacing:-0.234667pt;}
.ws7a{word-spacing:-0.176000pt;}
.wsac{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.117333pt;}
.ws13{word-spacing:0.176000pt;}
.ws4c{word-spacing:0.234667pt;}
.ws24{word-spacing:0.293333pt;}
.wse{word-spacing:0.352000pt;}
.wsb4{word-spacing:0.469333pt;}
.ws55{word-spacing:0.586667pt;}
.wsb{word-spacing:0.645333pt;}
.ws36{word-spacing:0.762667pt;}
.ws5d{word-spacing:0.821333pt;}
.ws8a{word-spacing:0.880000pt;}
.ws57{word-spacing:0.938667pt;}
.ws35{word-spacing:0.997333pt;}
.ws6c{word-spacing:1.114667pt;}
.ws63{word-spacing:1.173333pt;}
.ws83{word-spacing:1.232000pt;}
.ws11{word-spacing:1.290667pt;}
.wsd{word-spacing:1.349333pt;}
.ws8{word-spacing:1.408000pt;}
.wsa8{word-spacing:1.466667pt;}
.ws7d{word-spacing:1.525333pt;}
.ws38{word-spacing:1.584000pt;}
.ws72{word-spacing:1.701333pt;}
.ws75{word-spacing:1.818667pt;}
.ws9b{word-spacing:1.877333pt;}
.ws73{word-spacing:1.994667pt;}
.ws46{word-spacing:2.053333pt;}
.wsa9{word-spacing:2.112000pt;}
.wsa2{word-spacing:2.170667pt;}
.ws23{word-spacing:2.229333pt;}
.ws2b{word-spacing:2.288000pt;}
.ws21{word-spacing:2.405333pt;}
.ws64{word-spacing:2.522667pt;}
.ws8d{word-spacing:2.581333pt;}
.wsa7{word-spacing:2.757333pt;}
.ws60{word-spacing:2.933333pt;}
.ws17{word-spacing:2.992000pt;}
.ws77{word-spacing:3.050667pt;}
.wsab{word-spacing:3.109333pt;}
.ws5b{word-spacing:3.402667pt;}
.ws3e{word-spacing:3.461333pt;}
.ws2e{word-spacing:3.520000pt;}
.wsbe{word-spacing:3.578667pt;}
.wsa5{word-spacing:3.872000pt;}
.ws14{word-spacing:3.930667pt;}
.ws25{word-spacing:4.048000pt;}
.ws5a{word-spacing:4.106667pt;}
.ws50{word-spacing:4.165333pt;}
.ws87{word-spacing:4.224000pt;}
.ws31{word-spacing:4.282667pt;}
.ws40{word-spacing:4.400000pt;}
.ws3a{word-spacing:4.576000pt;}
.ws18{word-spacing:4.693333pt;}
.ws65{word-spacing:4.752000pt;}
.ws1a{word-spacing:4.810667pt;}
.ws20{word-spacing:4.869333pt;}
.ws84{word-spacing:5.045333pt;}
.ws2d{word-spacing:5.104000pt;}
.ws2f{word-spacing:5.162667pt;}
.ws3c{word-spacing:5.280000pt;}
.ws19{word-spacing:5.338667pt;}
.ws32{word-spacing:5.456000pt;}
.ws81{word-spacing:5.514667pt;}
.ws67{word-spacing:5.632000pt;}
.ws30{word-spacing:5.690667pt;}
.ws47{word-spacing:5.749333pt;}
.ws62{word-spacing:5.808000pt;}
.ws95{word-spacing:5.866667pt;}
.ws9c{word-spacing:5.925333pt;}
.ws4{word-spacing:6.042667pt;}
.ws7{word-spacing:6.218667pt;}
.ws6{word-spacing:6.277333pt;}
.ws78{word-spacing:6.336000pt;}
.wsaf{word-spacing:6.394667pt;}
.wsad{word-spacing:6.453333pt;}
.ws42{word-spacing:6.688000pt;}
.wsf{word-spacing:6.746667pt;}
.ws51{word-spacing:6.805333pt;}
.ws70{word-spacing:7.098667pt;}
.ws8f{word-spacing:7.157333pt;}
.ws61{word-spacing:7.274667pt;}
.ws12{word-spacing:7.333333pt;}
.ws41{word-spacing:7.450667pt;}
.ws4b{word-spacing:7.626667pt;}
.ws93{word-spacing:7.685333pt;}
.ws4f{word-spacing:7.744000pt;}
.wsc2{word-spacing:7.802667pt;}
.ws45{word-spacing:7.861333pt;}
.wsa1{word-spacing:7.920000pt;}
.wsb3{word-spacing:7.978667pt;}
.ws34{word-spacing:8.096000pt;}
.ws96{word-spacing:8.272000pt;}
.wsb6{word-spacing:8.330667pt;}
.ws26{word-spacing:8.389333pt;}
.wsbb{word-spacing:8.506667pt;}
.wsa6{word-spacing:8.565333pt;}
.ws7e{word-spacing:8.741333pt;}
.wsb2{word-spacing:8.800000pt;}
.ws52{word-spacing:8.858667pt;}
.ws54{word-spacing:8.917333pt;}
.ws3d{word-spacing:8.976000pt;}
.ws79{word-spacing:9.034667pt;}
.ws7f{word-spacing:9.152000pt;}
.wsae{word-spacing:9.210667pt;}
.ws48{word-spacing:9.386667pt;}
.ws10{word-spacing:9.504000pt;}
.wsba{word-spacing:9.621333pt;}
.wsb1{word-spacing:9.680000pt;}
.ws89{word-spacing:9.856000pt;}
.ws33{word-spacing:9.973333pt;}
.ws90{word-spacing:10.032000pt;}
.ws9e{word-spacing:10.090667pt;}
.ws68{word-spacing:10.149333pt;}
.wsaa{word-spacing:10.325333pt;}
.ws4d{word-spacing:10.442667pt;}
.wsc3{word-spacing:10.501333pt;}
.ws44{word-spacing:10.912000pt;}
.ws39{word-spacing:11.088000pt;}
.ws91{word-spacing:11.381333pt;}
.ws9{word-spacing:11.616000pt;}
.ws9f{word-spacing:11.850667pt;}
.ws97{word-spacing:11.968000pt;}
.ws4a{word-spacing:12.026667pt;}
.ws88{word-spacing:12.202667pt;}
.wsbd{word-spacing:12.906667pt;}
.ws8b{word-spacing:13.258667pt;}
.ws99{word-spacing:13.786667pt;}
.ws71{word-spacing:13.845333pt;}
.wsbc{word-spacing:14.549333pt;}
.wsbf{word-spacing:14.784000pt;}
.ws53{word-spacing:15.253333pt;}
.ws2c{word-spacing:15.312000pt;}
.wsb7{word-spacing:15.722667pt;}
.ws56{word-spacing:16.016000pt;}
.wsa4{word-spacing:16.602667pt;}
.ws66{word-spacing:16.954667pt;}
.wsa0{word-spacing:17.072000pt;}
.wsb9{word-spacing:17.424000pt;}
.wsb5{word-spacing:17.776000pt;}
.wsb0{word-spacing:18.362667pt;}
.ws49{word-spacing:18.538667pt;}
.ws98{word-spacing:20.240000pt;}
.wsc0{word-spacing:20.533333pt;}
.ws3f{word-spacing:21.178667pt;}
.ws9a{word-spacing:21.530667pt;}
.ws1c{word-spacing:23.818667pt;}
.wsc1{word-spacing:28.277333pt;}
.wsb8{word-spacing:34.378667pt;}
._0{margin-left:-6.586467pt;}
._4{margin-left:-5.510400pt;}
._1{margin-left:-3.824000pt;}
._3{margin-left:-2.837333pt;}
._2{margin-left:-1.351467pt;}
._e{width:0.993600pt;}
._5{width:2.310400pt;}
._c{width:3.578667pt;}
._12{width:5.836267pt;}
._b{width:6.905067pt;}
._8{width:8.019733pt;}
._6{width:8.970133pt;}
._7{width:10.137600pt;}
._9{width:12.654400pt;}
._a{width:14.385067pt;}
._d{width:17.265600pt;}
._10{width:18.315733pt;}
._f{width:19.864533pt;}
._14{width:21.114667pt;}
._13{width:24.311467pt;}
._15{width:28.267200pt;}
._11{width:30.762667pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:55.611067pt;}
.y50{bottom:57.611067pt;}
.y30{bottom:72.277733pt;}
.y4f{bottom:74.277733pt;}
.y2{bottom:75.590533pt;}
.y12e{bottom:76.645067pt;}
.y13f{bottom:78.183200pt;}
.yd1{bottom:80.617333pt;}
.yc3{bottom:83.044667pt;}
.ye8{bottom:85.053067pt;}
.y113{bottom:85.747467pt;}
.y2f{bottom:88.944400pt;}
.y84{bottom:89.532267pt;}
.y4e{bottom:90.944400pt;}
.ya4{bottom:91.070267pt;}
.y12d{bottom:93.311733pt;}
.yd0{bottom:93.950667pt;}
.y13e{bottom:94.849867pt;}
.y15d{bottom:98.639867pt;}
.y112{bottom:102.414133pt;}
.y83{bottom:106.198933pt;}
.y4d{bottom:107.611067pt;}
.ya3{bottom:107.736933pt;}
.y12c{bottom:109.978400pt;}
.y13d{bottom:111.516533pt;}
.y15c{bottom:115.306533pt;}
.y2e{bottom:116.949600pt;}
.y111{bottom:119.080800pt;}
.y82{bottom:122.865600pt;}
.y4c{bottom:124.277733pt;}
.ya2{bottom:124.403600pt;}
.y12b{bottom:126.645067pt;}
.y13c{bottom:128.183200pt;}
.y15b{bottom:131.973200pt;}
.y110{bottom:139.527067pt;}
.y81{bottom:139.532267pt;}
.y4b{bottom:140.944400pt;}
.ya1{bottom:141.070267pt;}
.y12a{bottom:143.311733pt;}
.y2d{bottom:144.729067pt;}
.y13b{bottom:144.849867pt;}
.y15a{bottom:148.639867pt;}
.y10f{bottom:156.193733pt;}
.y80{bottom:156.198933pt;}
.ya0{bottom:157.736933pt;}
.y2c{bottom:161.395733pt;}
.y13a{bottom:161.516533pt;}
.y129{bottom:163.758000pt;}
.y159{bottom:165.306533pt;}
.y4a{bottom:168.949600pt;}
.y10e{bottom:172.860400pt;}
.y7f{bottom:172.865600pt;}
.y9f{bottom:174.403600pt;}
.y139{bottom:178.183200pt;}
.y128{bottom:180.424667pt;}
.y2b{bottom:181.842000pt;}
.y158{bottom:181.973200pt;}
.y10d{bottom:189.527067pt;}
.y7e{bottom:189.532267pt;}
.y9e{bottom:191.070267pt;}
.y138{bottom:194.849867pt;}
.y127{bottom:197.091333pt;}
.y2a{bottom:198.508667pt;}
.y157{bottom:202.419467pt;}
.y10c{bottom:206.193733pt;}
.y7d{bottom:206.198933pt;}
.y9d{bottom:207.736933pt;}
.y137{bottom:211.516533pt;}
.y126{bottom:213.758000pt;}
.y29{bottom:215.175333pt;}
.y156{bottom:219.086133pt;}
.y10b{bottom:222.860400pt;}
.y9c{bottom:224.403600pt;}
.y7c{bottom:226.645067pt;}
.y136{bottom:228.183200pt;}
.y125{bottom:230.424667pt;}
.y28{bottom:231.842000pt;}
.y155{bottom:235.752800pt;}
.y49{bottom:239.401067pt;}
.y10a{bottom:239.527067pt;}
.y7b{bottom:243.311733pt;}
.y9b{bottom:244.849867pt;}
.y124{bottom:247.091333pt;}
.y27{bottom:248.508667pt;}
.y154{bottom:252.419467pt;}
.y48{bottom:256.067733pt;}
.y135{bottom:256.188533pt;}
.y109{bottom:256.193733pt;}
.y7a{bottom:259.978400pt;}
.y9a{bottom:261.516533pt;}
.y123{bottom:263.758000pt;}
.y26{bottom:265.175333pt;}
.y153{bottom:269.086133pt;}
.y108{bottom:272.860400pt;}
.y47{bottom:276.513867pt;}
.y79{bottom:276.645200pt;}
.y99{bottom:278.183200pt;}
.y122{bottom:280.424667pt;}
.y25{bottom:281.842000pt;}
.y152{bottom:285.752800pt;}
.y107{bottom:289.527067pt;}
.y46{bottom:293.180533pt;}
.y78{bottom:293.311867pt;}
.y98{bottom:294.849867pt;}
.y121{bottom:297.091333pt;}
.y24{bottom:298.508667pt;}
.y151{bottom:302.419467pt;}
.y106{bottom:306.193733pt;}
.y45{bottom:309.847200pt;}
.y77{bottom:309.978533pt;}
.y97{bottom:311.516533pt;}
.y120{bottom:313.758000pt;}
.y23{bottom:315.175333pt;}
.y150{bottom:319.086133pt;}
.y105{bottom:322.860400pt;}
.y44{bottom:326.513867pt;}
.y76{bottom:326.645200pt;}
.y96{bottom:328.183200pt;}
.y11f{bottom:330.424667pt;}
.y22{bottom:331.842000pt;}
.y104{bottom:339.527067pt;}
.y14f{bottom:339.532267pt;}
.ye7{bottom:342.796933pt;}
.y43{bottom:343.180533pt;}
.y75{bottom:343.311867pt;}
.y95{bottom:344.849867pt;}
.y11e{bottom:347.091333pt;}
.y21{bottom:348.508667pt;}
.y103{bottom:356.193733pt;}
.y14e{bottom:356.198933pt;}
.ye6{bottom:358.796933pt;}
.y42{bottom:359.847200pt;}
.y74{bottom:359.978533pt;}
.y94{bottom:361.516533pt;}
.y11d{bottom:363.758000pt;}
.y20{bottom:365.175333pt;}
.y102{bottom:372.860400pt;}
.y14d{bottom:372.865600pt;}
.y41{bottom:376.513867pt;}
.y73{bottom:376.645200pt;}
.y93{bottom:378.183200pt;}
.y11c{bottom:380.424667pt;}
.y1f{bottom:381.842000pt;}
.y101{bottom:389.527067pt;}
.y14c{bottom:389.532267pt;}
.ye5{bottom:391.474533pt;}
.y40{bottom:393.180533pt;}
.y72{bottom:393.311867pt;}
.y92{bottom:394.849867pt;}
.ydf{bottom:395.254000pt;}
.y11b{bottom:397.091333pt;}
.y1e{bottom:398.508667pt;}
.yc2{bottom:401.379600pt;}
.y100{bottom:406.193733pt;}
.y14b{bottom:406.198933pt;}
.ye4{bottom:408.141200pt;}
.y3f{bottom:409.847200pt;}
.y71{bottom:409.978533pt;}
.y91{bottom:411.516533pt;}
.yde{bottom:411.920667pt;}
.y11a{bottom:413.758000pt;}
.y1d{bottom:415.175333pt;}
.yc1{bottom:417.379600pt;}
.yff{bottom:422.860400pt;}
.y14a{bottom:422.865600pt;}
.ye3{bottom:424.807867pt;}
.y3e{bottom:426.513867pt;}
.y70{bottom:426.645200pt;}
.y90{bottom:428.183200pt;}
.ydd{bottom:428.587333pt;}
.y119{bottom:430.424667pt;}
.y1c{bottom:431.842000pt;}
.yfe{bottom:439.527067pt;}
.y149{bottom:439.532267pt;}
.ye2{bottom:441.474533pt;}
.y3d{bottom:443.180533pt;}
.yaf{bottom:443.311867pt;}
.ydc{bottom:445.254000pt;}
.y6f{bottom:447.091333pt;}
.y1b{bottom:448.508667pt;}
.ycf{bottom:451.395333pt;}
.y8f{bottom:456.188400pt;}
.yc0{bottom:456.193733pt;}
.y148{bottom:456.198933pt;}
.ye1{bottom:458.141200pt;}
.y3c{bottom:459.847200pt;}
.yfd{bottom:459.973200pt;}
.yae{bottom:459.978533pt;}
.ydb{bottom:461.920667pt;}
.y6e{bottom:463.758000pt;}
.y1a{bottom:465.175333pt;}
.ybf{bottom:472.860400pt;}
.y147{bottom:472.865600pt;}
.ye0{bottom:474.807867pt;}
.y3b{bottom:476.513867pt;}
.yfc{bottom:476.639867pt;}
.yad{bottom:476.645200pt;}
.yda{bottom:478.587333pt;}
.y6d{bottom:480.424667pt;}
.y19{bottom:481.842000pt;}
.yce{bottom:483.390533pt;}
.y8e{bottom:489.527067pt;}
.y3a{bottom:493.180533pt;}
.yfb{bottom:493.306533pt;}
.yac{bottom:493.311867pt;}
.yd9{bottom:495.254000pt;}
.y6c{bottom:497.091333pt;}
.y18{bottom:498.508667pt;}
.ycd{bottom:500.057200pt;}
.y8d{bottom:506.193733pt;}
.y39{bottom:509.847200pt;}
.yfa{bottom:509.973200pt;}
.yab{bottom:509.978533pt;}
.yd8{bottom:511.920667pt;}
.y6b{bottom:513.758000pt;}
.y17{bottom:515.175333pt;}
.y175{bottom:515.306533pt;}
.ycc{bottom:516.723867pt;}
.y8c{bottom:522.860400pt;}
.y38{bottom:526.513867pt;}
.yf9{bottom:526.639867pt;}
.y146{bottom:526.645200pt;}
.yd7{bottom:528.587333pt;}
.y6a{bottom:530.424667pt;}
.y16{bottom:531.842000pt;}
.y174{bottom:531.973200pt;}
.ycb{bottom:533.390533pt;}
.y118{bottom:534.204133pt;}
.y8b{bottom:539.527067pt;}
.y37{bottom:543.180533pt;}
.yf8{bottom:543.306533pt;}
.y145{bottom:543.311867pt;}
.yd6{bottom:545.254000pt;}
.y69{bottom:547.091333pt;}
.y15{bottom:548.508667pt;}
.y173{bottom:548.639867pt;}
.yca{bottom:550.057200pt;}
.y117{bottom:550.870800pt;}
.y8a{bottom:556.193733pt;}
.y36{bottom:559.847200pt;}
.yf7{bottom:559.973200pt;}
.y144{bottom:559.978533pt;}
.yd5{bottom:561.920667pt;}
.y68{bottom:563.758000pt;}
.y14{bottom:565.175333pt;}
.y172{bottom:565.306533pt;}
.yc9{bottom:566.723867pt;}
.y116{bottom:567.537467pt;}
.ybe{bottom:572.860400pt;}
.y35{bottom:576.513867pt;}
.yf6{bottom:576.639867pt;}
.y143{bottom:576.645200pt;}
.y67{bottom:580.424667pt;}
.y13{bottom:581.842000pt;}
.y171{bottom:581.973200pt;}
.yc8{bottom:583.390533pt;}
.y89{bottom:584.198933pt;}
.y115{bottom:584.204133pt;}
.yd4{bottom:588.781200pt;}
.ybd{bottom:589.527067pt;}
.y34{bottom:593.180533pt;}
.yf5{bottom:593.306533pt;}
.y142{bottom:593.311867pt;}
.y66{bottom:597.091333pt;}
.y12{bottom:598.508667pt;}
.y170{bottom:598.639867pt;}
.yc7{bottom:600.057200pt;}
.y114{bottom:600.870800pt;}
.ybc{bottom:606.193733pt;}
.y33{bottom:609.847200pt;}
.y134{bottom:609.973200pt;}
.y141{bottom:609.978533pt;}
.y65{bottom:613.758000pt;}
.y11{bottom:615.175333pt;}
.yc6{bottom:616.723867pt;}
.y88{bottom:617.537467pt;}
.y16f{bottom:619.086133pt;}
.yf4{bottom:621.311867pt;}
.ybb{bottom:622.860400pt;}
.y32{bottom:626.513867pt;}
.y133{bottom:626.639867pt;}
.y64{bottom:630.424667pt;}
.y87{bottom:634.204133pt;}
.y16e{bottom:635.752800pt;}
.yba{bottom:639.527067pt;}
.y10{bottom:643.180533pt;}
.y132{bottom:643.306533pt;}
.yc5{bottom:646.971067pt;}
.y63{bottom:647.091333pt;}
.y86{bottom:650.870800pt;}
.y16d{bottom:652.419467pt;}
.yf3{bottom:654.650400pt;}
.yb9{bottom:656.193733pt;}
.y131{bottom:659.973200pt;}
.yaa{bottom:663.758000pt;}
.y62{bottom:667.537467pt;}
.y16c{bottom:669.086133pt;}
.yf2{bottom:671.317067pt;}
.yb8{bottom:672.860400pt;}
.yf{bottom:673.045333pt;}
.y130{bottom:676.639867pt;}
.ya9{bottom:680.424667pt;}
.y61{bottom:684.204133pt;}
.y16b{bottom:685.752800pt;}
.yf1{bottom:687.983733pt;}
.ye{bottom:689.045333pt;}
.yb7{bottom:689.527067pt;}
.y12f{bottom:693.306533pt;}
.ya8{bottom:697.091333pt;}
.y60{bottom:700.870800pt;}
.y16a{bottom:702.419467pt;}
.yf0{bottom:704.650400pt;}
.yd{bottom:705.045333pt;}
.yb6{bottom:709.973200pt;}
.y140{bottom:713.758000pt;}
.y5f{bottom:717.537467pt;}
.y169{bottom:719.086133pt;}
.yc{bottom:721.045333pt;}
.yef{bottom:721.317067pt;}
.yb5{bottom:726.639867pt;}
.y5e{bottom:734.204133pt;}
.yb{bottom:737.045333pt;}
.yee{bottom:737.983733pt;}
.y168{bottom:739.532267pt;}
.yb4{bottom:743.306533pt;}
.y5d{bottom:750.870800pt;}
.ya{bottom:753.045333pt;}
.yed{bottom:754.650400pt;}
.y167{bottom:756.198933pt;}
.yb3{bottom:759.973200pt;}
.y5c{bottom:767.537467pt;}
.yec{bottom:771.317067pt;}
.y166{bottom:772.865600pt;}
.yb2{bottom:776.639867pt;}
.y5b{bottom:784.204133pt;}
.y9{bottom:785.045333pt;}
.yeb{bottom:787.983733pt;}
.y165{bottom:789.532267pt;}
.yb1{bottom:793.306533pt;}
.y5a{bottom:800.870800pt;}
.yea{bottom:804.650400pt;}
.yd3{bottom:804.781200pt;}
.y164{bottom:806.198933pt;}
.y59{bottom:817.537467pt;}
.y8{bottom:820.824933pt;}
.yb0{bottom:821.311867pt;}
.ye9{bottom:821.317067pt;}
.y163{bottom:826.645200pt;}
.y58{bottom:834.204133pt;}
.yd2{bottom:837.983733pt;}
.y162{bottom:843.311867pt;}
.y57{bottom:850.870800pt;}
.yc4{bottom:852.025200pt;}
.y7{bottom:852.824933pt;}
.y85{bottom:854.650400pt;}
.y161{bottom:859.978533pt;}
.ya7{bottom:867.537467pt;}
.y56{bottom:871.317067pt;}
.y160{bottom:876.645200pt;}
.y6{bottom:882.158267pt;}
.ya6{bottom:884.204133pt;}
.y55{bottom:887.983733pt;}
.y15f{bottom:893.311867pt;}
.ya5{bottom:900.870800pt;}
.y54{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y15e{bottom:909.978533pt;}
.y53{bottom:921.317067pt;}
.y4{bottom:924.287733pt;}
.y52{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y1{bottom:985.150267pt;}
.y51{bottom:986.095200pt;}
.hd{height:38.250000pt;}
.hc{height:38.520833pt;}
.hb{height:42.710938pt;}
.h5{height:47.812500pt;}
.h4{height:48.151042pt;}
.ha{height:52.593750pt;}
.h9{height:52.966146pt;}
.h7{height:57.375000pt;}
.h8{height:57.781250pt;}
.h2{height:66.937500pt;}
.h6{height:67.411458pt;}
.h3{height:160.282298pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x12{left:75.590533pt;}
.xc{left:80.390000pt;}
.x16{left:85.031867pt;}
.x23{left:87.590533pt;}
.x11{left:94.488133pt;}
.x6{left:107.542933pt;}
.x8{left:132.916000pt;}
.xb{left:145.601467pt;}
.x19{left:159.612000pt;}
.xa{left:193.952667pt;}
.x9{left:197.008400pt;}
.x13{left:201.339467pt;}
.x10{left:204.999067pt;}
.x20{left:224.049467pt;}
.x1e{left:245.572267pt;}
.x7{left:252.396400pt;}
.x21{left:260.634133pt;}
.x1c{left:308.521467pt;}
.x1b{left:319.546933pt;}
.xe{left:323.840400pt;}
.x1d{left:329.492800pt;}
.xd{left:335.334533pt;}
.xf{left:342.655600pt;}
.x17{left:347.206400pt;}
.x14{left:423.748000pt;}
.x15{left:442.645600pt;}
.x4{left:452.233600pt;}
.x22{left:466.645600pt;}
.x5{left:491.699733pt;}
.x18{left:580.431600pt;}
.x1f{left:583.395067pt;}
.x1a{left:585.738800pt;}
.x3{left:689.238800pt;}
.x1{left:735.142533pt;}
.x2{left:807.596000pt;}
}




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