
    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_305520be7936b5bac9514210.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_f9a19ef1e3e751010b93b6ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_9d72b1853166555a491339cb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_9f8e703fe8d16868826e6977.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsc{word-spacing:-40.536000px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws16{word-spacing:-38.439000px;}
.ws15{word-spacing:-38.375100px;}
.ws3{word-spacing:-38.374200px;}
.wsb{word-spacing:-38.358900px;}
.ws13{word-spacing:-38.151900px;}
.ws8a{word-spacing:-38.145600px;}
.ws9{word-spacing:-38.076300px;}
.ws0{word-spacing:-37.944000px;}
.ws17{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.wsa{word-spacing:-37.861200px;}
.ws1a{word-spacing:-37.440000px;}
.ws8{word-spacing:-33.547800px;}
.ws64{word-spacing:-23.464800px;}
.ws68{word-spacing:-23.253300px;}
.ws52{word-spacing:-23.253000px;}
.ws2a{word-spacing:-23.252400px;}
.ws60{word-spacing:-23.251200px;}
.ws19{word-spacing:-23.249400px;}
.ws4a{word-spacing:-23.248800px;}
.wsaf{word-spacing:-23.169300px;}
.ws3b{word-spacing:-23.035200px;}
.wsd{word-spacing:-23.032800px;}
.ws4f{word-spacing:-23.031600px;}
.ws18{word-spacing:-23.024700px;}
.ws89{word-spacing:-23.020200px;}
.wsa9{word-spacing:-22.997700px;}
.ws1b{word-spacing:-22.968000px;}
.wsa5{word-spacing:-22.890300px;}
.ws1e{word-spacing:-22.878300px;}
.ws78{word-spacing:-22.758000px;}
.ws23{word-spacing:-22.752000px;}
.ws69{word-spacing:-22.749300px;}
.ws11{word-spacing:-22.746600px;}
.ws72{word-spacing:-22.746000px;}
.ws6e{word-spacing:-22.735800px;}
.ws70{word-spacing:-22.732200px;}
.wsac{word-spacing:-22.673700px;}
.ws54{word-spacing:-22.538400px;}
.ws21{word-spacing:-22.536000px;}
.ws6c{word-spacing:-22.533900px;}
.ws22{word-spacing:-22.532400px;}
.ws47{word-spacing:-22.530600px;}
.ws67{word-spacing:-22.529700px;}
.ws7f{word-spacing:-22.526700px;}
.ws24{word-spacing:-22.526100px;}
.ws40{word-spacing:-22.525200px;}
.ws14{word-spacing:-22.518000px;}
.ws57{word-spacing:-22.515600px;}
.ws66{word-spacing:-22.509900px;}
.ws28{word-spacing:-22.449600px;}
.wsa4{word-spacing:-22.445700px;}
.ws7b{word-spacing:-22.311000px;}
.ws1c{word-spacing:-22.168200px;}
.wsaa{word-spacing:-22.032000px;}
.ws6a{word-spacing:-22.021200px;}
.ws48{word-spacing:-21.813900px;}
.ws7c{word-spacing:-21.812400px;}
.ws2b{word-spacing:-21.792000px;}
.ws42{word-spacing:-21.583800px;}
.ws26{word-spacing:-21.576600px;}
.ws93{word-spacing:-21.306600px;}
.ws43{word-spacing:-21.304800px;}
.ws50{word-spacing:-21.303000px;}
.ws3e{word-spacing:-21.297600px;}
.ws29{word-spacing:-20.588400px;}
.ws33{word-spacing:-20.374200px;}
.ws75{word-spacing:-20.151600px;}
.ws4b{word-spacing:-19.858800px;}
.ws27{word-spacing:-19.648500px;}
.ws8e{word-spacing:-19.647900px;}
.ws86{word-spacing:-19.644300px;}
.ws39{word-spacing:-19.152000px;}
.ws6d{word-spacing:-18.927000px;}
.ws44{word-spacing:-18.925800px;}
.ws46{word-spacing:-18.718200px;}
.ws7{word-spacing:-18.472500px;}
.ws2d{word-spacing:-18.216000px;}
.ws55{word-spacing:-18.205200px;}
.ws74{word-spacing:-17.485800px;}
.ws5c{word-spacing:-17.482500px;}
.ws4e{word-spacing:-17.479800px;}
.ws3c{word-spacing:-17.276400px;}
.ws6f{word-spacing:-16.992000px;}
.ws8d{word-spacing:-16.776000px;}
.ws10{word-spacing:-16.774200px;}
.wsb5{word-spacing:-16.766700px;}
.ws71{word-spacing:-16.266600px;}
.ws7e{word-spacing:-15.829200px;}
.ws94{word-spacing:-15.552000px;}
.ws80{word-spacing:-15.546000px;}
.ws5e{word-spacing:-15.327000px;}
.ws7a{word-spacing:-15.118200px;}
.ws5a{word-spacing:-15.113700px;}
.ws76{word-spacing:-14.616000px;}
.wsb6{word-spacing:-14.112000px;}
.ws9d{word-spacing:-14.076000px;}
.ws37{word-spacing:-13.172400px;}
.ws4c{word-spacing:-13.170600px;}
.ws9e{word-spacing:-13.166100px;}
.wsb3{word-spacing:-12.447900px;}
.ws51{word-spacing:-12.374100px;}
.ws56{word-spacing:-12.236400px;}
.ws87{word-spacing:-12.232800px;}
.ws32{word-spacing:-11.729700px;}
.ws8c{word-spacing:-11.010000px;}
.ws35{word-spacing:-11.007000px;}
.wse{word-spacing:-10.800000px;}
.wsa7{word-spacing:-10.082400px;}
.ws49{word-spacing:-9.792000px;}
.ws8b{word-spacing:-9.078000px;}
.ws90{word-spacing:-9.072000px;}
.wsae{word-spacing:-8.131500px;}
.ws73{word-spacing:-7.621200px;}
.ws9b{word-spacing:-7.620300px;}
.wsb0{word-spacing:-6.695100px;}
.ws2c{word-spacing:-6.185700px;}
.ws7d{word-spacing:-5.972400px;}
.ws79{word-spacing:-5.970300px;}
.ws53{word-spacing:-5.253300px;}
.ws98{word-spacing:-4.758000px;}
.ws34{word-spacing:-3.809100px;}
.ws5f{word-spacing:-3.734100px;}
.wsb2{word-spacing:-3.576000px;}
.ws88{word-spacing:-3.094200px;}
.ws31{word-spacing:-3.085200px;}
.wsa0{word-spacing:-2.556000px;}
.ws41{word-spacing:-2.343600px;}
.ws61{word-spacing:-2.146500px;}
.wsa2{word-spacing:-1.652400px;}
.wsa6{word-spacing:-1.648800px;}
.ws63{word-spacing:-0.933900px;}
.ws12{word-spacing:-0.897600px;}
.ws1f{word-spacing:-0.720000px;}
.ws38{word-spacing:0.000000px;}
.ws30{word-spacing:0.288000px;}
.ws2e{word-spacing:0.507600px;}
.ws36{word-spacing:0.512100px;}
.ws85{word-spacing:0.722700px;}
.ws5b{word-spacing:0.730800px;}
.ws3f{word-spacing:1.011600px;}
.ws2f{word-spacing:1.243500px;}
.ws9c{word-spacing:2.448000px;}
.ws58{word-spacing:3.888000px;}
.wsf{word-spacing:4.106700px;}
.ws91{word-spacing:4.824900px;}
.ws8f{word-spacing:5.328000px;}
.ws84{word-spacing:5.546700px;}
.ws9f{word-spacing:6.048000px;}
.ws59{word-spacing:6.278100px;}
.ws25{word-spacing:7.215300px;}
.wsad{word-spacing:7.494300px;}
.ws5d{word-spacing:7.704000px;}
.ws4d{word-spacing:9.148800px;}
.ws77{word-spacing:10.090800px;}
.ws6b{word-spacing:11.099400px;}
.ws81{word-spacing:12.024000px;}
.ws82{word-spacing:12.027600px;}
.ws97{word-spacing:12.750000px;}
.ws83{word-spacing:12.761100px;}
.ws65{word-spacing:13.253400px;}
.ws45{word-spacing:14.181600px;}
.ws20{word-spacing:14.910000px;}
.ws3a{word-spacing:14.914800px;}
.ws62{word-spacing:16.358400px;}
.ws92{word-spacing:17.065800px;}
.wsb1{word-spacing:17.078400px;}
.ws3d{word-spacing:21.393000px;}
.wsa1{word-spacing:21.613800px;}
.ws1d{word-spacing:27.163500px;}
.ws96{word-spacing:34.933500px;}
.ws95{word-spacing:38.679300px;}
.wsa8{word-spacing:46.093200px;}
.ws99{word-spacing:57.607200px;}
.ws9a{word-spacing:99.144000px;}
.wsa3{word-spacing:171.872100px;}
.wsb4{word-spacing:268.857000px;}
.wsb7{word-spacing:311.543400px;}
.ws1{word-spacing:455.092800px;}
.wsab{word-spacing:613.307700px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._9{width:20.093400px;}
._c{width:21.304800px;}
._b{width:22.384500px;}
._19{width:23.623200px;}
._6{width:24.817200px;}
._7{width:25.960200px;}
._1f{width:27.158400px;}
._13{width:28.497600px;}
._11{width:30.305700px;}
._2a{width:31.610400px;}
._17{width:32.616000px;}
._28{width:34.237500px;}
._1{width:36.000000px;}
._d{width:37.015800px;}
._12{width:38.156100px;}
._10{width:39.373200px;}
._1d{width:40.959900px;}
._e{width:42.406800px;}
._f{width:44.033100px;}
._5{width:46.143900px;}
._1a{width:47.946000px;}
._1b{width:49.552800px;}
._18{width:51.824400px;}
._1e{width:53.035200px;}
._20{width:54.535800px;}
._16{width:55.740000px;}
._14{width:56.869200px;}
._1c{width:58.305600px;}
._15{width:63.849000px;}
._27{width:66.504600px;}
._a{width:69.532500px;}
._25{width:74.238000px;}
._24{width:77.363700px;}
._8{width:79.754400px;}
._2b{width:88.118400px;}
._23{width:126.561600px;}
._29{width:207.360000px;}
._26{width:225.360000px;}
._21{width:243.360000px;}
._22{width:261.360000px;}
._2d{width:311.527800px;}
._2e{width:353.713200px;}
._0{width:612.144000px;}
._2c{width:654.888600px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y89{bottom:7.050000px;}
.y86{bottom:7.111500px;}
.y7b{bottom:7.200000px;}
.y83{bottom:27.690000px;}
.y7a{bottom:27.720000px;}
.y88{bottom:27.750000px;}
.y78{bottom:27.780000px;}
.y85{bottom:27.811500px;}
.y81{bottom:50.790000px;}
.y8f{bottom:50.820000px;}
.y95{bottom:50.850000px;}
.y7e{bottom:50.865000px;}
.y8c{bottom:50.895000px;}
.y92{bottom:50.925000px;}
.y76{bottom:50.940000px;}
.y98{bottom:52.500000px;}
.y8b{bottom:71.415000px;}
.y91{bottom:71.446500px;}
.y80{bottom:71.490000px;}
.y8e{bottom:71.521500px;}
.y94{bottom:71.550000px;}
.y7d{bottom:71.565000px;}
.y75{bottom:71.640000px;}
.y6{bottom:72.825000px;}
.y97{bottom:73.200000px;}
.y5f{bottom:74.730000px;}
.y5{bottom:77.655000px;}
.y6d{bottom:80.640000px;}
.y5b{bottom:95.655000px;}
.y59{bottom:95.700000px;}
.y4e{bottom:95.715000px;}
.y56{bottom:95.746500px;}
.y53{bottom:95.790000px;}
.y9e{bottom:100.515000px;}
.y6c{bottom:101.340000px;}
.y32{bottom:103.755000px;}
.y74{bottom:112.575000px;}
.y49{bottom:116.250000px;}
.y55{bottom:116.265000px;}
.y52{bottom:116.311500px;}
.y5e{bottom:116.340000px;}
.y50{bottom:116.355000px;}
.y4b{bottom:116.386500px;}
.y58{bottom:116.400000px;}
.y4d{bottom:116.415000px;}
.y4c{bottom:120.900000px;}
.y9d{bottom:121.215000px;}
.y6b{bottom:122.040000px;}
.yc2{bottom:122.475000px;}
.y31{bottom:124.455000px;}
.y6a{bottom:142.740000px;}
.y73{bottom:143.100000px;}
.yc1{bottom:143.175000px;}
.y30{bottom:145.155000px;}
.y9c{bottom:162.796500px;}
.y66{bottom:163.261500px;}
.y69{bottom:163.440000px;}
.y72{bottom:163.800000px;}
.yc0{bottom:163.875000px;}
.y2f{bottom:165.855000px;}
.y5d{bottom:176.775000px;}
.y9b{bottom:183.496500px;}
.y68{bottom:184.140000px;}
.y71{bottom:184.500000px;}
.ybf{bottom:184.575000px;}
.y2e{bottom:186.555000px;}
.y62{bottom:196.696500px;}
.y65{bottom:201.675000px;}
.y9a{bottom:204.196500px;}
.y67{bottom:204.840000px;}
.y70{bottom:205.200000px;}
.ybe{bottom:205.275000px;}
.y2d{bottom:207.255000px;}
.y61{bottom:217.215000px;}
.y99{bottom:224.896500px;}
.y6f{bottom:225.900000px;}
.ybd{bottom:225.975000px;}
.y2c{bottom:227.775000px;}
.y6e{bottom:246.600000px;}
.ybc{bottom:246.675000px;}
.y2b{bottom:248.475000px;}
.y4a{bottom:254.850000px;}
.y96{bottom:262.575000px;}
.ybb{bottom:267.375000px;}
.y2a{bottom:269.175000px;}
.yba{bottom:288.075000px;}
.y29{bottom:289.875000px;}
.yb9{bottom:308.775000px;}
.y28{bottom:310.575000px;}
.y5c{bottom:310.725000px;}
.yb8{bottom:329.475000px;}
.y27{bottom:331.275000px;}
.y47{bottom:345.615000px;}
.yb7{bottom:350.175000px;}
.y38{bottom:351.975000px;}
.y93{bottom:353.325000px;}
.y46{bottom:366.315000px;}
.yb6{bottom:370.875000px;}
.y26{bottom:372.675000px;}
.y3f{bottom:387.015000px;}
.y48{bottom:388.725000px;}
.yb5{bottom:391.575000px;}
.y25{bottom:393.375000px;}
.y3e{bottom:407.715000px;}
.y45{bottom:408.075000px;}
.yb4{bottom:412.275000px;}
.y24{bottom:414.075000px;}
.y3a{bottom:428.236500px;}
.y3d{bottom:428.415000px;}
.y44{bottom:428.775000px;}
.y23{bottom:434.775000px;}
.y90{bottom:442.350000px;}
.y5a{bottom:444.600000px;}
.y3c{bottom:449.115000px;}
.y43{bottom:449.475000px;}
.yb3{bottom:454.036500px;}
.y22{bottom:455.475000px;}
.y3b{bottom:469.815000px;}
.y42{bottom:470.175000px;}
.y21{bottom:476.175000px;}
.y64{bottom:490.575000px;}
.y41{bottom:490.875000px;}
.yb2{bottom:495.796500px;}
.y20{bottom:496.875000px;}
.y63{bottom:511.275000px;}
.y40{bottom:511.575000px;}
.yb1{bottom:516.496500px;}
.y1f{bottom:517.575000px;}
.y39{bottom:522.600000px;}
.y8d{bottom:531.375000px;}
.yb0{bottom:537.195000px;}
.y1e{bottom:538.275000px;}
.yaf{bottom:557.896500px;}
.y1d{bottom:558.975000px;}
.y57{bottom:578.475000px;}
.y1c{bottom:579.675000px;}
.yae{bottom:599.475000px;}
.y1b{bottom:600.375000px;}
.y60{bottom:611.400000px;}
.yad{bottom:620.175000px;}
.y8a{bottom:620.400000px;}
.y1a{bottom:621.075000px;}
.y19{bottom:641.775000px;}
.yac{bottom:661.936500px;}
.y18{bottom:662.475000px;}
.yab{bottom:682.636500px;}
.y17{bottom:683.175000px;}
.yaa{bottom:703.336500px;}
.y37{bottom:703.875000px;}
.y87{bottom:709.425000px;}
.y54{bottom:712.350000px;}
.ya9{bottom:724.036500px;}
.y16{bottom:724.575000px;}
.ya8{bottom:744.736500px;}
.y15{bottom:745.275000px;}
.y84{bottom:754.725000px;}
.ya7{bottom:765.436500px;}
.y14{bottom:765.975000px;}
.ya6{bottom:786.136500px;}
.y36{bottom:786.675000px;}
.y82{bottom:800.025000px;}
.y13{bottom:807.375000px;}
.ya5{bottom:827.895000px;}
.y12{bottom:828.075000px;}
.y7f{bottom:845.325000px;}
.y51{bottom:846.225000px;}
.ya4{bottom:848.596500px;}
.y35{bottom:848.775000px;}
.ya3{bottom:869.295000px;}
.y11{bottom:869.475000px;}
.ya2{bottom:889.995000px;}
.y10{bottom:890.175000px;}
.ya1{bottom:910.695000px;}
.yf{bottom:910.875000px;}
.ya0{bottom:931.395000px;}
.ye{bottom:931.575000px;}
.y7c{bottom:934.350000px;}
.y9f{bottom:952.095000px;}
.yd{bottom:952.275000px;}
.yc{bottom:972.975000px;}
.y4f{bottom:980.100000px;}
.y34{bottom:993.675000px;}
.yb{bottom:1014.375000px;}
.y79{bottom:1023.375000px;}
.ya{bottom:1035.075000px;}
.y33{bottom:1055.775000px;}
.y77{bottom:1068.675000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.hd{height:45.300000px;}
.h3{height:48.796875px;}
.h6{height:50.027344px;}
.h2{height:62.261719px;}
.he{height:89.025000px;}
.hc{height:89.100000px;}
.hf{height:90.750000px;}
.h8{height:133.875000px;}
.h9{height:133.950000px;}
.ha{height:234.825000px;}
.hb{height:264.075000px;}
.h7{height:529.050000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.wc{width:35.475000px;}
.w3{width:44.325000px;}
.wf{width:59.475000px;}
.we{width:60.375000px;}
.w5{width:65.850000px;}
.w6{width:66.000000px;}
.w10{width:73.350000px;}
.w11{width:76.200000px;}
.w8{width:79.575000px;}
.w7{width:79.650000px;}
.wa{width:81.300000px;}
.w13{width:82.200000px;}
.w9{width:89.475000px;}
.w12{width:106.275000px;}
.wd{width:131.175000px;}
.w4{width:136.200000px;}
.w14{width:166.575000px;}
.wb{width:180.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:124.575000px;}
.x1{left:127.620000px;}
.x16{left:129.750000px;}
.x9{left:132.660000px;}
.x4{left:136.260000px;}
.x17{left:165.150000px;}
.xe{left:168.825000px;}
.x5{left:180.538500px;}
.x8{left:182.160000px;}
.x7{left:276.300000px;}
.x18{left:296.250000px;}
.xf{left:304.950000px;}
.x19{left:356.550000px;}
.x10{left:370.725000px;}
.xb{left:397.800000px;}
.x1a{left:415.950000px;}
.xc{left:420.120000px;}
.x11{left:436.650000px;}
.x3{left:465.825000px;}
.xa{left:486.180000px;}
.x1b{left:489.225000px;}
.x12{left:502.425000px;}
.x6{left:510.120000px;}
.x1c{left:562.500000px;}
.x13{left:582.000000px;}
.x1d{left:638.625000px;}
.x14{left:661.500000px;}
.x2{left:731.160000px;}
.x1e{left:744.825000px;}
.x15{left:750.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-36.032000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws16{word-spacing:-34.168000pt;}
.ws15{word-spacing:-34.111200pt;}
.ws3{word-spacing:-34.110400pt;}
.wsb{word-spacing:-34.096800pt;}
.ws13{word-spacing:-33.912800pt;}
.ws8a{word-spacing:-33.907200pt;}
.ws9{word-spacing:-33.845600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws17{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsa{word-spacing:-33.654400pt;}
.ws1a{word-spacing:-33.280000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws64{word-spacing:-20.857600pt;}
.ws68{word-spacing:-20.669600pt;}
.ws52{word-spacing:-20.669333pt;}
.ws2a{word-spacing:-20.668800pt;}
.ws60{word-spacing:-20.667733pt;}
.ws19{word-spacing:-20.666133pt;}
.ws4a{word-spacing:-20.665600pt;}
.wsaf{word-spacing:-20.594933pt;}
.ws3b{word-spacing:-20.475733pt;}
.wsd{word-spacing:-20.473600pt;}
.ws4f{word-spacing:-20.472533pt;}
.ws18{word-spacing:-20.466400pt;}
.ws89{word-spacing:-20.462400pt;}
.wsa9{word-spacing:-20.442400pt;}
.ws1b{word-spacing:-20.416000pt;}
.wsa5{word-spacing:-20.346933pt;}
.ws1e{word-spacing:-20.336267pt;}
.ws78{word-spacing:-20.229333pt;}
.ws23{word-spacing:-20.224000pt;}
.ws69{word-spacing:-20.221600pt;}
.ws11{word-spacing:-20.219200pt;}
.ws72{word-spacing:-20.218667pt;}
.ws6e{word-spacing:-20.209600pt;}
.ws70{word-spacing:-20.206400pt;}
.wsac{word-spacing:-20.154400pt;}
.ws54{word-spacing:-20.034133pt;}
.ws21{word-spacing:-20.032000pt;}
.ws6c{word-spacing:-20.030133pt;}
.ws22{word-spacing:-20.028800pt;}
.ws47{word-spacing:-20.027200pt;}
.ws67{word-spacing:-20.026400pt;}
.ws7f{word-spacing:-20.023733pt;}
.ws24{word-spacing:-20.023200pt;}
.ws40{word-spacing:-20.022400pt;}
.ws14{word-spacing:-20.016000pt;}
.ws57{word-spacing:-20.013867pt;}
.ws66{word-spacing:-20.008800pt;}
.ws28{word-spacing:-19.955200pt;}
.wsa4{word-spacing:-19.951733pt;}
.ws7b{word-spacing:-19.832000pt;}
.ws1c{word-spacing:-19.705067pt;}
.wsaa{word-spacing:-19.584000pt;}
.ws6a{word-spacing:-19.574400pt;}
.ws48{word-spacing:-19.390133pt;}
.ws7c{word-spacing:-19.388800pt;}
.ws2b{word-spacing:-19.370667pt;}
.ws42{word-spacing:-19.185600pt;}
.ws26{word-spacing:-19.179200pt;}
.ws93{word-spacing:-18.939200pt;}
.ws43{word-spacing:-18.937600pt;}
.ws50{word-spacing:-18.936000pt;}
.ws3e{word-spacing:-18.931200pt;}
.ws29{word-spacing:-18.300800pt;}
.ws33{word-spacing:-18.110400pt;}
.ws75{word-spacing:-17.912533pt;}
.ws4b{word-spacing:-17.652267pt;}
.ws27{word-spacing:-17.465333pt;}
.ws8e{word-spacing:-17.464800pt;}
.ws86{word-spacing:-17.461600pt;}
.ws39{word-spacing:-17.024000pt;}
.ws6d{word-spacing:-16.824000pt;}
.ws44{word-spacing:-16.822933pt;}
.ws46{word-spacing:-16.638400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2d{word-spacing:-16.192000pt;}
.ws55{word-spacing:-16.182400pt;}
.ws74{word-spacing:-15.542933pt;}
.ws5c{word-spacing:-15.540000pt;}
.ws4e{word-spacing:-15.537600pt;}
.ws3c{word-spacing:-15.356800pt;}
.ws6f{word-spacing:-15.104000pt;}
.ws8d{word-spacing:-14.912000pt;}
.ws10{word-spacing:-14.910400pt;}
.wsb5{word-spacing:-14.903733pt;}
.ws71{word-spacing:-14.459200pt;}
.ws7e{word-spacing:-14.070400pt;}
.ws94{word-spacing:-13.824000pt;}
.ws80{word-spacing:-13.818667pt;}
.ws5e{word-spacing:-13.624000pt;}
.ws7a{word-spacing:-13.438400pt;}
.ws5a{word-spacing:-13.434400pt;}
.ws76{word-spacing:-12.992000pt;}
.wsb6{word-spacing:-12.544000pt;}
.ws9d{word-spacing:-12.512000pt;}
.ws37{word-spacing:-11.708800pt;}
.ws4c{word-spacing:-11.707200pt;}
.ws9e{word-spacing:-11.703200pt;}
.wsb3{word-spacing:-11.064800pt;}
.ws51{word-spacing:-10.999200pt;}
.ws56{word-spacing:-10.876800pt;}
.ws87{word-spacing:-10.873600pt;}
.ws32{word-spacing:-10.426400pt;}
.ws8c{word-spacing:-9.786667pt;}
.ws35{word-spacing:-9.784000pt;}
.wse{word-spacing:-9.600000pt;}
.wsa7{word-spacing:-8.962133pt;}
.ws49{word-spacing:-8.704000pt;}
.ws8b{word-spacing:-8.069333pt;}
.ws90{word-spacing:-8.064000pt;}
.wsae{word-spacing:-7.228000pt;}
.ws73{word-spacing:-6.774400pt;}
.ws9b{word-spacing:-6.773600pt;}
.wsb0{word-spacing:-5.951200pt;}
.ws2c{word-spacing:-5.498400pt;}
.ws7d{word-spacing:-5.308800pt;}
.ws79{word-spacing:-5.306933pt;}
.ws53{word-spacing:-4.669600pt;}
.ws98{word-spacing:-4.229333pt;}
.ws34{word-spacing:-3.385867pt;}
.ws5f{word-spacing:-3.319200pt;}
.wsb2{word-spacing:-3.178667pt;}
.ws88{word-spacing:-2.750400pt;}
.ws31{word-spacing:-2.742400pt;}
.wsa0{word-spacing:-2.272000pt;}
.ws41{word-spacing:-2.083200pt;}
.ws61{word-spacing:-1.908000pt;}
.wsa2{word-spacing:-1.468800pt;}
.wsa6{word-spacing:-1.465600pt;}
.ws63{word-spacing:-0.830133pt;}
.ws12{word-spacing:-0.797867pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws38{word-spacing:0.000000pt;}
.ws30{word-spacing:0.256000pt;}
.ws2e{word-spacing:0.451200pt;}
.ws36{word-spacing:0.455200pt;}
.ws85{word-spacing:0.642400pt;}
.ws5b{word-spacing:0.649600pt;}
.ws3f{word-spacing:0.899200pt;}
.ws2f{word-spacing:1.105333pt;}
.ws9c{word-spacing:2.176000pt;}
.ws58{word-spacing:3.456000pt;}
.wsf{word-spacing:3.650400pt;}
.ws91{word-spacing:4.288800pt;}
.ws8f{word-spacing:4.736000pt;}
.ws84{word-spacing:4.930400pt;}
.ws9f{word-spacing:5.376000pt;}
.ws59{word-spacing:5.580533pt;}
.ws25{word-spacing:6.413600pt;}
.wsad{word-spacing:6.661600pt;}
.ws5d{word-spacing:6.848000pt;}
.ws4d{word-spacing:8.132267pt;}
.ws77{word-spacing:8.969600pt;}
.ws6b{word-spacing:9.866133pt;}
.ws81{word-spacing:10.688000pt;}
.ws82{word-spacing:10.691200pt;}
.ws97{word-spacing:11.333333pt;}
.ws83{word-spacing:11.343200pt;}
.ws65{word-spacing:11.780800pt;}
.ws45{word-spacing:12.605867pt;}
.ws20{word-spacing:13.253333pt;}
.ws3a{word-spacing:13.257600pt;}
.ws62{word-spacing:14.540800pt;}
.ws92{word-spacing:15.169600pt;}
.wsb1{word-spacing:15.180800pt;}
.ws3d{word-spacing:19.016000pt;}
.wsa1{word-spacing:19.212267pt;}
.ws1d{word-spacing:24.145333pt;}
.ws96{word-spacing:31.052000pt;}
.ws95{word-spacing:34.381600pt;}
.wsa8{word-spacing:40.971733pt;}
.ws99{word-spacing:51.206400pt;}
.ws9a{word-spacing:88.128000pt;}
.wsa3{word-spacing:152.775200pt;}
.wsb4{word-spacing:238.984000pt;}
.wsb7{word-spacing:276.927467pt;}
.ws1{word-spacing:404.526933pt;}
.wsab{word-spacing:545.162400pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._9{width:17.860800pt;}
._c{width:18.937600pt;}
._b{width:19.897333pt;}
._19{width:20.998400pt;}
._6{width:22.059733pt;}
._7{width:23.075733pt;}
._1f{width:24.140800pt;}
._13{width:25.331200pt;}
._11{width:26.938400pt;}
._2a{width:28.098133pt;}
._17{width:28.992000pt;}
._28{width:30.433333pt;}
._1{width:32.000000pt;}
._d{width:32.902933pt;}
._12{width:33.916533pt;}
._10{width:34.998400pt;}
._1d{width:36.408800pt;}
._e{width:37.694933pt;}
._f{width:39.140533pt;}
._5{width:41.016800pt;}
._1a{width:42.618667pt;}
._1b{width:44.046933pt;}
._18{width:46.066133pt;}
._1e{width:47.142400pt;}
._20{width:48.476267pt;}
._16{width:49.546667pt;}
._14{width:50.550400pt;}
._1c{width:51.827200pt;}
._15{width:56.754667pt;}
._27{width:59.115200pt;}
._a{width:61.806667pt;}
._25{width:65.989333pt;}
._24{width:68.767733pt;}
._8{width:70.892800pt;}
._2b{width:78.327467pt;}
._23{width:112.499200pt;}
._29{width:184.320000pt;}
._26{width:200.320000pt;}
._21{width:216.320000pt;}
._22{width:232.320000pt;}
._2d{width:276.913600pt;}
._2e{width:314.411733pt;}
._0{width:544.128000pt;}
._2c{width:582.123200pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y89{bottom:6.266667pt;}
.y86{bottom:6.321333pt;}
.y7b{bottom:6.400000pt;}
.y83{bottom:24.613333pt;}
.y7a{bottom:24.640000pt;}
.y88{bottom:24.666667pt;}
.y78{bottom:24.693333pt;}
.y85{bottom:24.721333pt;}
.y81{bottom:45.146667pt;}
.y8f{bottom:45.173333pt;}
.y95{bottom:45.200000pt;}
.y7e{bottom:45.213333pt;}
.y8c{bottom:45.240000pt;}
.y92{bottom:45.266667pt;}
.y76{bottom:45.280000pt;}
.y98{bottom:46.666667pt;}
.y8b{bottom:63.480000pt;}
.y91{bottom:63.508000pt;}
.y80{bottom:63.546667pt;}
.y8e{bottom:63.574667pt;}
.y94{bottom:63.600000pt;}
.y7d{bottom:63.613333pt;}
.y75{bottom:63.680000pt;}
.y6{bottom:64.733333pt;}
.y97{bottom:65.066667pt;}
.y5f{bottom:66.426667pt;}
.y5{bottom:69.026667pt;}
.y6d{bottom:71.680000pt;}
.y5b{bottom:85.026667pt;}
.y59{bottom:85.066667pt;}
.y4e{bottom:85.080000pt;}
.y56{bottom:85.108000pt;}
.y53{bottom:85.146667pt;}
.y9e{bottom:89.346667pt;}
.y6c{bottom:90.080000pt;}
.y32{bottom:92.226667pt;}
.y74{bottom:100.066667pt;}
.y49{bottom:103.333333pt;}
.y55{bottom:103.346667pt;}
.y52{bottom:103.388000pt;}
.y5e{bottom:103.413333pt;}
.y50{bottom:103.426667pt;}
.y4b{bottom:103.454667pt;}
.y58{bottom:103.466667pt;}
.y4d{bottom:103.480000pt;}
.y4c{bottom:107.466667pt;}
.y9d{bottom:107.746667pt;}
.y6b{bottom:108.480000pt;}
.yc2{bottom:108.866667pt;}
.y31{bottom:110.626667pt;}
.y6a{bottom:126.880000pt;}
.y73{bottom:127.200000pt;}
.yc1{bottom:127.266667pt;}
.y30{bottom:129.026667pt;}
.y9c{bottom:144.708000pt;}
.y66{bottom:145.121333pt;}
.y69{bottom:145.280000pt;}
.y72{bottom:145.600000pt;}
.yc0{bottom:145.666667pt;}
.y2f{bottom:147.426667pt;}
.y5d{bottom:157.133333pt;}
.y9b{bottom:163.108000pt;}
.y68{bottom:163.680000pt;}
.y71{bottom:164.000000pt;}
.ybf{bottom:164.066667pt;}
.y2e{bottom:165.826667pt;}
.y62{bottom:174.841333pt;}
.y65{bottom:179.266667pt;}
.y9a{bottom:181.508000pt;}
.y67{bottom:182.080000pt;}
.y70{bottom:182.400000pt;}
.ybe{bottom:182.466667pt;}
.y2d{bottom:184.226667pt;}
.y61{bottom:193.080000pt;}
.y99{bottom:199.908000pt;}
.y6f{bottom:200.800000pt;}
.ybd{bottom:200.866667pt;}
.y2c{bottom:202.466667pt;}
.y6e{bottom:219.200000pt;}
.ybc{bottom:219.266667pt;}
.y2b{bottom:220.866667pt;}
.y4a{bottom:226.533333pt;}
.y96{bottom:233.400000pt;}
.ybb{bottom:237.666667pt;}
.y2a{bottom:239.266667pt;}
.yba{bottom:256.066667pt;}
.y29{bottom:257.666667pt;}
.yb9{bottom:274.466667pt;}
.y28{bottom:276.066667pt;}
.y5c{bottom:276.200000pt;}
.yb8{bottom:292.866667pt;}
.y27{bottom:294.466667pt;}
.y47{bottom:307.213333pt;}
.yb7{bottom:311.266667pt;}
.y38{bottom:312.866667pt;}
.y93{bottom:314.066667pt;}
.y46{bottom:325.613333pt;}
.yb6{bottom:329.666667pt;}
.y26{bottom:331.266667pt;}
.y3f{bottom:344.013333pt;}
.y48{bottom:345.533333pt;}
.yb5{bottom:348.066667pt;}
.y25{bottom:349.666667pt;}
.y3e{bottom:362.413333pt;}
.y45{bottom:362.733333pt;}
.yb4{bottom:366.466667pt;}
.y24{bottom:368.066667pt;}
.y3a{bottom:380.654667pt;}
.y3d{bottom:380.813333pt;}
.y44{bottom:381.133333pt;}
.y23{bottom:386.466667pt;}
.y90{bottom:393.200000pt;}
.y5a{bottom:395.200000pt;}
.y3c{bottom:399.213333pt;}
.y43{bottom:399.533333pt;}
.yb3{bottom:403.588000pt;}
.y22{bottom:404.866667pt;}
.y3b{bottom:417.613333pt;}
.y42{bottom:417.933333pt;}
.y21{bottom:423.266667pt;}
.y64{bottom:436.066667pt;}
.y41{bottom:436.333333pt;}
.yb2{bottom:440.708000pt;}
.y20{bottom:441.666667pt;}
.y63{bottom:454.466667pt;}
.y40{bottom:454.733333pt;}
.yb1{bottom:459.108000pt;}
.y1f{bottom:460.066667pt;}
.y39{bottom:464.533333pt;}
.y8d{bottom:472.333333pt;}
.yb0{bottom:477.506667pt;}
.y1e{bottom:478.466667pt;}
.yaf{bottom:495.908000pt;}
.y1d{bottom:496.866667pt;}
.y57{bottom:514.200000pt;}
.y1c{bottom:515.266667pt;}
.yae{bottom:532.866667pt;}
.y1b{bottom:533.666667pt;}
.y60{bottom:543.466667pt;}
.yad{bottom:551.266667pt;}
.y8a{bottom:551.466667pt;}
.y1a{bottom:552.066667pt;}
.y19{bottom:570.466667pt;}
.yac{bottom:588.388000pt;}
.y18{bottom:588.866667pt;}
.yab{bottom:606.788000pt;}
.y17{bottom:607.266667pt;}
.yaa{bottom:625.188000pt;}
.y37{bottom:625.666667pt;}
.y87{bottom:630.600000pt;}
.y54{bottom:633.200000pt;}
.ya9{bottom:643.588000pt;}
.y16{bottom:644.066667pt;}
.ya8{bottom:661.988000pt;}
.y15{bottom:662.466667pt;}
.y84{bottom:670.866667pt;}
.ya7{bottom:680.388000pt;}
.y14{bottom:680.866667pt;}
.ya6{bottom:698.788000pt;}
.y36{bottom:699.266667pt;}
.y82{bottom:711.133333pt;}
.y13{bottom:717.666667pt;}
.ya5{bottom:735.906667pt;}
.y12{bottom:736.066667pt;}
.y7f{bottom:751.400000pt;}
.y51{bottom:752.200000pt;}
.ya4{bottom:754.308000pt;}
.y35{bottom:754.466667pt;}
.ya3{bottom:772.706667pt;}
.y11{bottom:772.866667pt;}
.ya2{bottom:791.106667pt;}
.y10{bottom:791.266667pt;}
.ya1{bottom:809.506667pt;}
.yf{bottom:809.666667pt;}
.ya0{bottom:827.906667pt;}
.ye{bottom:828.066667pt;}
.y7c{bottom:830.533333pt;}
.y9f{bottom:846.306667pt;}
.yd{bottom:846.466667pt;}
.yc{bottom:864.866667pt;}
.y4f{bottom:871.200000pt;}
.y34{bottom:883.266667pt;}
.yb{bottom:901.666667pt;}
.y79{bottom:909.666667pt;}
.ya{bottom:920.066667pt;}
.y33{bottom:938.466667pt;}
.y77{bottom:949.933333pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.hd{height:40.266667pt;}
.h3{height:43.375000pt;}
.h6{height:44.468750pt;}
.h2{height:55.343750pt;}
.he{height:79.133333pt;}
.hc{height:79.200000pt;}
.hf{height:80.666667pt;}
.h8{height:119.000000pt;}
.h9{height:119.066667pt;}
.ha{height:208.733333pt;}
.hb{height:234.733333pt;}
.h7{height:470.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.wc{width:31.533333pt;}
.w3{width:39.400000pt;}
.wf{width:52.866667pt;}
.we{width:53.666667pt;}
.w5{width:58.533333pt;}
.w6{width:58.666667pt;}
.w10{width:65.200000pt;}
.w11{width:67.733333pt;}
.w8{width:70.733333pt;}
.w7{width:70.800000pt;}
.wa{width:72.266667pt;}
.w13{width:73.066667pt;}
.w9{width:79.533333pt;}
.w12{width:94.466667pt;}
.wd{width:116.600000pt;}
.w4{width:121.066667pt;}
.w14{width:148.066667pt;}
.wb{width:160.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:110.733333pt;}
.x1{left:113.440000pt;}
.x16{left:115.333333pt;}
.x9{left:117.920000pt;}
.x4{left:121.120000pt;}
.x17{left:146.800000pt;}
.xe{left:150.066667pt;}
.x5{left:160.478667pt;}
.x8{left:161.920000pt;}
.x7{left:245.600000pt;}
.x18{left:263.333333pt;}
.xf{left:271.066667pt;}
.x19{left:316.933333pt;}
.x10{left:329.533333pt;}
.xb{left:353.600000pt;}
.x1a{left:369.733333pt;}
.xc{left:373.440000pt;}
.x11{left:388.133333pt;}
.x3{left:414.066667pt;}
.xa{left:432.160000pt;}
.x1b{left:434.866667pt;}
.x12{left:446.600000pt;}
.x6{left:453.440000pt;}
.x1c{left:500.000000pt;}
.x13{left:517.333333pt;}
.x1d{left:567.666667pt;}
.x14{left:588.000000pt;}
.x2{left:649.920000pt;}
.x1e{left:662.066667pt;}
.x15{left:667.466667pt;}
}




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