
    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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_010a600687695b4456dba53f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.271494;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_000ccf6ff0613ddb17b058f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.271494;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_3ce5f3b6c17628ef9fd6f074.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.271494;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_2ee8c46584adeefdf8091ba5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.271494;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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ed2ccfd3804688e3d66d8a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-79.200000px;}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:23.760000px;}
.ls2a{letter-spacing:-0.918000px;}
.ls3e{letter-spacing:-0.684000px;}
.ls14{letter-spacing:-0.519000px;}
.ls15{letter-spacing:-0.517200px;}
.ls24{letter-spacing:-0.475200px;}
.ls3b{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.328200px;}
.ls1b{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.282000px;}
.ls2b{letter-spacing:-0.265200px;}
.ls12{letter-spacing:-0.237600px;}
.ls1d{letter-spacing:-0.234000px;}
.ls26{letter-spacing:-0.201600px;}
.ls29{letter-spacing:-0.198600px;}
.ls19{letter-spacing:-0.190200px;}
.ls1a{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.070800px;}
.lsf{letter-spacing:-0.018000px;}
.lse{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.034560px;}
.ls16{letter-spacing:0.037440px;}
.ls2d{letter-spacing:0.057600px;}
.ls23{letter-spacing:0.111600px;}
.ls1f{letter-spacing:0.177600px;}
.lsd{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.198720px;}
.ls13{letter-spacing:0.201000px;}
.ls3c{letter-spacing:0.224400px;}
.ls11{letter-spacing:0.246000px;}
.ls1{letter-spacing:0.262200px;}
.ls28{letter-spacing:0.310800px;}
.ls3d{letter-spacing:0.371400px;}
.ls0{letter-spacing:0.396000px;}
.ls2f{letter-spacing:0.397200px;}
.ls21{letter-spacing:0.400320px;}
.ls4{letter-spacing:0.515520px;}
.ls17{letter-spacing:0.573000px;}
.ls25{letter-spacing:0.580320px;}
.ls6{letter-spacing:0.587520px;}
.ls22{letter-spacing:0.702000px;}
.ls1e{letter-spacing:0.828000px;}
.ls8{letter-spacing:0.831600px;}
.lsc{letter-spacing:0.966000px;}
.ls3{letter-spacing:5.065920px;}
.ls7{letter-spacing:6.289920px;}
.lsb{letter-spacing:7.912080px;}
.ls5{letter-spacing:9.385920px;}
.ls9{letter-spacing:14.392080px;}
.lsa{letter-spacing:14.512080px;}
.ls35{letter-spacing:16.145280px;}
.ls38{letter-spacing:19.025280px;}
.ls39{letter-spacing:19.745280px;}
.ls37{letter-spacing:20.465280px;}
.ls3a{letter-spacing:23.345280px;}
.ls36{letter-spacing:30.545280px;}
.ls33{letter-spacing:42.065280px;}
.ls32{letter-spacing:43.505280px;}
.ls34{letter-spacing:46.385280px;}
.ls30{letter-spacing:53.585280px;}
.ls20{letter-spacing:194.952000px;}
.ls2{letter-spacing:1712.953920px;}
.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;}
}
.ws13{word-spacing:-16.030080px;}
.ws1e{word-spacing:-14.771280px;}
.ws22{word-spacing:-14.745480px;}
.ws18{word-spacing:-14.684880px;}
.ws10{word-spacing:-14.639520px;}
.ws21{word-spacing:-14.598480px;}
.wsf{word-spacing:-14.461920px;}
.ws20{word-spacing:-14.431680px;}
.ws16{word-spacing:-14.374080px;}
.ws17{word-spacing:-14.267280px;}
.ws19{word-spacing:-14.175480px;}
.ws15{word-spacing:-14.172480px;}
.ws1b{word-spacing:-14.108880px;}
.ws1c{word-spacing:-14.092080px;}
.ws14{word-spacing:-13.898880px;}
.ws12{word-spacing:-13.770000px;}
.ws1a{word-spacing:-13.456080px;}
.ws1{word-spacing:-13.213920px;}
.ws0{word-spacing:-13.050000px;}
.ws2{word-spacing:-12.967920px;}
.ws3{word-spacing:-12.730320px;}
.ws1f{word-spacing:-12.726000px;}
.wsd{word-spacing:-11.718000px;}
.ws5{word-spacing:-11.674080px;}
.wse{word-spacing:-11.556000px;}
.ws6{word-spacing:-10.669080px;}
.ws4{word-spacing:-10.468080px;}
.ws8{word-spacing:-9.950880px;}
.ws7{word-spacing:-9.949080px;}
.wsa{word-spacing:-9.634920px;}
.ws9{word-spacing:-9.324120px;}
.wsb{word-spacing:-9.061920px;}
.ws1d{word-spacing:-8.436960px;}
.wsc{word-spacing:-7.187040px;}
.ws11{word-spacing:0.000000px;}
._4{margin-left:-5.136480px;}
._1{margin-left:-3.807360px;}
._2{margin-left:-2.782080px;}
._0{margin-left:-1.722240px;}
._3{width:1.033680px;}
._5{width:2.200680px;}
._6{width:3.746400px;}
._c{width:4.922640px;}
._9{width:6.812640px;}
._7{width:8.250960px;}
._8{width:9.278880px;}
._13{width:10.849680px;}
._14{width:12.277440px;}
._b{width:14.222880px;}
._a{width:15.238800px;}
._d{width:16.785120px;}
._12{width:18.716400px;}
._10{width:20.050800px;}
._11{width:21.141600px;}
._16{width:22.256640px;}
._e{width:25.506720px;}
._f{width:27.239760px;}
._15{width:39.015360px;}
._17{width:40.075200px;}
.fc5{color:transparent;}
.fc3{color:rgb(56,86,35);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.120000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y17{bottom:1.800000px;}
.y13{bottom:9.000000px;}
.y16{bottom:15.336000px;}
.y94{bottom:18.360000px;}
.y9f{bottom:18.405000px;}
.y98{bottom:18.540000px;}
.yb8{bottom:21.594000px;}
.yb3{bottom:21.600000px;}
.y12{bottom:24.660000px;}
.y15{bottom:29.016000px;}
.y95{bottom:35.100000px;}
.ya0{bottom:35.145000px;}
.y99{bottom:35.280000px;}
.ya9{bottom:35.310000px;}
.yb9{bottom:38.334000px;}
.yb4{bottom:38.340000px;}
.y11{bottom:40.320000px;}
.y10{bottom:55.800000px;}
.y4{bottom:57.420000px;}
.y14{bottom:62.280000px;}
.yf{bottom:71.460000px;}
.y5{bottom:75.636000px;}
.y3{bottom:76.356000px;}
.ye{bottom:87.114000px;}
.yba{bottom:92.016000px;}
.yd{bottom:102.594000px;}
.y47{bottom:102.636000px;}
.y89{bottom:109.836000px;}
.y6a{bottom:115.236000px;}
.yc{bottom:118.254000px;}
.yd9{bottom:121.896000px;}
.yb7{bottom:130.356000px;}
.y46{bottom:131.796000px;}
.yb{bottom:133.734000px;}
.y88{bottom:142.056000px;}
.y69{bottom:147.276000px;}
.yd8{bottom:148.356000px;}
.ya{bottom:149.394000px;}
.y45{bottom:151.410000px;}
.y92{bottom:154.110000px;}
.y9{bottom:164.874000px;}
.yb6{bottom:168.690000px;}
.y44{bottom:171.210000px;}
.y87{bottom:174.270000px;}
.y68{bottom:179.490000px;}
.yd7{bottom:180.390000px;}
.y8{bottom:180.534000px;}
.y91{bottom:186.150000px;}
.y43{bottom:192.630000px;}
.y7{bottom:196.194000px;}
.y86{bottom:206.310000px;}
.yb5{bottom:207.030000px;}
.y67{bottom:211.530000px;}
.y6{bottom:211.674000px;}
.yd6{bottom:212.610000px;}
.y42{bottom:213.690000px;}
.y90{bottom:218.370000px;}
.y41{bottom:233.130000px;}
.y85{bottom:238.530000px;}
.y66{bottom:243.750000px;}
.yd5{bottom:244.830000px;}
.yb2{bottom:246.090000px;}
.y8f{bottom:250.410000px;}
.y40{bottom:252.570000px;}
.yf4{bottom:261.570000px;}
.y84{bottom:270.570000px;}
.y3f{bottom:272.190000px;}
.y65{bottom:275.970000px;}
.yd4{bottom:276.870000px;}
.y8e{bottom:282.630000px;}
.y3e{bottom:291.630000px;}
.y83{bottom:302.790000px;}
.yf3{bottom:304.050000px;}
.y64{bottom:308.010000px;}
.yd3{bottom:309.090000px;}
.y3d{bottom:311.070000px;}
.yb1{bottom:312.690000px;}
.y8d{bottom:314.850000px;}
.yf2{bottom:325.470000px;}
.y3c{bottom:330.510000px;}
.y82{bottom:334.830000px;}
.y63{bottom:340.275000px;}
.yd2{bottom:341.175000px;}
.yb0{bottom:344.775000px;}
.y8c{bottom:346.935000px;}
.y3b{bottom:350.175000px;}
.y81{bottom:367.095000px;}
.yf1{bottom:368.355000px;}
.y3a{bottom:369.615000px;}
.y62{bottom:372.315000px;}
.yd1{bottom:373.395000px;}
.yaf{bottom:376.995000px;}
.y8b{bottom:379.155000px;}
.y39{bottom:389.055000px;}
.yf0{bottom:389.775000px;}
.y80{bottom:399.315000px;}
.y61{bottom:404.535000px;}
.yd0{bottom:405.615000px;}
.y38{bottom:408.495000px;}
.yae{bottom:409.035000px;}
.y8a{bottom:411.195000px;}
.y37{bottom:427.935000px;}
.yef{bottom:432.615000px;}
.y60{bottom:436.755000px;}
.ycf{bottom:437.655000px;}
.yad{bottom:441.255000px;}
.y7f{bottom:443.415000px;}
.y36{bottom:447.555000px;}
.yee{bottom:454.035000px;}
.y35{bottom:466.995000px;}
.y5f{bottom:468.795000px;}
.yce{bottom:469.875000px;}
.yac{bottom:473.475000px;}
.y7e{bottom:475.455000px;}
.y34{bottom:486.435000px;}
.yed{bottom:497.055000px;}
.y5e{bottom:501.015000px;}
.ycd{bottom:501.915000px;}
.y33{bottom:505.875000px;}
.y7d{bottom:507.675000px;}
.yab{bottom:517.395000px;}
.yec{bottom:518.475000px;}
.y32{bottom:525.495000px;}
.y5d{bottom:531.795000px;}
.ycc{bottom:534.135000px;}
.yaa{bottom:536.475000px;}
.y7c{bottom:539.895000px;}
.y31{bottom:544.935000px;}
.yeb{bottom:561.315000px;}
.y30{bottom:564.375000px;}
.y5c{bottom:564.915000px;}
.ycb{bottom:566.355000px;}
.ya8{bottom:571.575000px;}
.y7b{bottom:571.935000px;}
.yea{bottom:582.735000px;}
.y2f{bottom:583.815000px;}
.y5b{bottom:594.075000px;}
.yca{bottom:598.395000px;}
.y2e{bottom:603.435000px;}
.y7a{bottom:604.185000px;}
.ya7{bottom:606.885000px;}
.y2d{bottom:622.905000px;}
.y5a{bottom:623.265000px;}
.ye9{bottom:625.605000px;}
.yc9{bottom:630.645000px;}
.y79{bottom:636.225000px;}
.ya6{bottom:641.985000px;}
.y2c{bottom:642.345000px;}
.ye8{bottom:647.025000px;}
.y59{bottom:652.605000px;}
.y2b{bottom:661.785000px;}
.yc8{bottom:662.685000px;}
.y78{bottom:668.445000px;}
.ya5{bottom:677.085000px;}
.y2a{bottom:681.405000px;}
.y58{bottom:681.765000px;}
.ye7{bottom:689.865000px;}
.yc7{bottom:694.905000px;}
.y77{bottom:700.665000px;}
.y29{bottom:700.845000px;}
.y57{bottom:710.925000px;}
.ye6{bottom:711.285000px;}
.ya4{bottom:712.185000px;}
.y28{bottom:720.645000px;}
.yc6{bottom:726.945000px;}
.y76{bottom:732.705000px;}
.y56{bottom:740.265000px;}
.ya3{bottom:747.285000px;}
.y27{bottom:749.985000px;}
.ye5{bottom:754.125000px;}
.yc5{bottom:759.165000px;}
.y75{bottom:764.925000px;}
.y55{bottom:769.425000px;}
.y26{bottom:771.945000px;}
.ye4{bottom:775.545000px;}
.ya2{bottom:782.385000px;}
.y25{bottom:789.585000px;}
.yc4{bottom:791.385000px;}
.y74{bottom:796.965000px;}
.y54{bottom:798.585000px;}
.y24{bottom:807.045000px;}
.ya1{bottom:817.665000px;}
.ye3{bottom:818.385000px;}
.y23{bottom:820.185000px;}
.yc3{bottom:823.425000px;}
.y53{bottom:827.925000px;}
.y73{bottom:829.185000px;}
.ye2{bottom:839.805000px;}
.y22{bottom:850.965000px;}
.y9e{bottom:852.765000px;}
.yc2{bottom:855.645000px;}
.y52{bottom:857.085000px;}
.y72{bottom:861.405000px;}
.y21{bottom:870.045000px;}
.ye1{bottom:882.870000px;}
.y51{bottom:886.290000px;}
.yc1{bottom:887.730000px;}
.y9d{bottom:887.910000px;}
.y20{bottom:888.990000px;}
.y71{bottom:893.490000px;}
.ye0{bottom:904.290000px;}
.y1f{bottom:907.890000px;}
.y50{bottom:915.630000px;}
.y9c{bottom:923.010000px;}
.y70{bottom:925.710000px;}
.y1e{bottom:926.790000px;}
.yc0{bottom:932.010000px;}
.y4f{bottom:944.790000px;}
.ydf{bottom:947.130000px;}
.y6f{bottom:957.750000px;}
.y9b{bottom:958.110000px;}
.ybf{bottom:964.050000px;}
.yde{bottom:968.550000px;}
.y1d{bottom:972.870000px;}
.y4e{bottom:973.950000px;}
.y6e{bottom:989.970000px;}
.y9a{bottom:993.210000px;}
.ybe{bottom:996.270000px;}
.y1c{bottom:1000.230000px;}
.y4d{bottom:1003.290000px;}
.ydd{bottom:1011.390000px;}
.y6d{bottom:1022.010000px;}
.y1b{bottom:1027.410000px;}
.y97{bottom:1028.310000px;}
.y4c{bottom:1032.450000px;}
.ydc{bottom:1032.810000px;}
.ybd{bottom:1040.370000px;}
.y6c{bottom:1054.230000px;}
.y1a{bottom:1054.770000px;}
.ybc{bottom:1057.830000px;}
.y4b{bottom:1061.790000px;}
.y96{bottom:1063.590000px;}
.ydb{bottom:1075.650000px;}
.y19{bottom:1081.950000px;}
.y6b{bottom:1086.450000px;}
.y4a{bottom:1090.950000px;}
.ybb{bottom:1096.170000px;}
.yda{bottom:1097.070000px;}
.y93{bottom:1099.410000px;}
.y18{bottom:1118.490000px;}
.y49{bottom:1120.110000px;}
.y2{bottom:1173.960000px;}
.y48{bottom:1175.220000px;}
.y1{bottom:1194.480000px;}
.hf{height:35.100000px;}
.h11{height:35.136000px;}
.h10{height:35.280000px;}
.h12{height:35.316000px;}
.h13{height:38.340000px;}
.hc{height:38.373047px;}
.h8{height:39.636000px;}
.h9{height:43.595156px;}
.h2{height:44.860781px;}
.h7{height:50.359922px;}
.h4{height:56.373047px;}
.h5{height:62.386172px;}
.hd{height:65.760142px;}
.ha{height:65.884219px;}
.h3{height:69.150937px;}
.he{height:75.164062px;}
.hb{height:87.941953px;}
.h6{height:229.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:16.560000px;}
.w9{width:16.740000px;}
.wc{width:123.120000px;}
.wd{width:123.336000px;}
.w5{width:132.120000px;}
.w7{width:132.156000px;}
.w6{width:132.336000px;}
.w3{width:241.635000px;}
.we{width:246.450000px;}
.wa{width:264.450000px;}
.wb{width:396.795000px;}
.w4{width:514.335000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x6{left:10.800000px;}
.x1c{left:33.834000px;}
.x23{left:39.420000px;}
.x17{left:41.040000px;}
.x1b{left:42.480000px;}
.x1a{left:44.100000px;}
.x18{left:53.100000px;}
.x22{left:55.080000px;}
.x19{left:57.240000px;}
.x15{left:59.400000px;}
.x10{left:61.920000px;}
.x16{left:66.060000px;}
.x7{left:128.556000px;}
.x24{left:154.649987px;}
.xa{left:180.749987px;}
.xb{left:191.549987px;}
.x1d{left:250.770000px;}
.xd{left:259.770000px;}
.x4{left:346.934987px;}
.x2{left:361.874987px;}
.x1e{left:374.115000px;}
.xe{left:392.115000px;}
.x1{left:467.924987px;}
.x1f{left:497.445000px;}
.xf{left:524.445000px;}
.x20{left:620.565000px;}
.x5{left:634.425000px;}
.x11{left:656.610000px;}
.x12{left:673.170000px;}
.x9{left:676.049987px;}
.x13{left:689.910000px;}
.x14{left:706.470000px;}
.x21{left:743.910000px;}
.x3{left:793.769987px;}
.x8{left:808.169987px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls2a{letter-spacing:-0.816000pt;}
.ls3e{letter-spacing:-0.608000pt;}
.ls14{letter-spacing:-0.461333pt;}
.ls15{letter-spacing:-0.459733pt;}
.ls24{letter-spacing:-0.422400pt;}
.ls3b{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.291733pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.250667pt;}
.ls2b{letter-spacing:-0.235733pt;}
.ls12{letter-spacing:-0.211200pt;}
.ls1d{letter-spacing:-0.208000pt;}
.ls26{letter-spacing:-0.179200pt;}
.ls29{letter-spacing:-0.176533pt;}
.ls19{letter-spacing:-0.169067pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.062933pt;}
.lsf{letter-spacing:-0.016000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.030720pt;}
.ls16{letter-spacing:0.033280pt;}
.ls2d{letter-spacing:0.051200pt;}
.ls23{letter-spacing:0.099200pt;}
.ls1f{letter-spacing:0.157867pt;}
.lsd{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.176640pt;}
.ls13{letter-spacing:0.178667pt;}
.ls3c{letter-spacing:0.199467pt;}
.ls11{letter-spacing:0.218667pt;}
.ls1{letter-spacing:0.233067pt;}
.ls28{letter-spacing:0.276267pt;}
.ls3d{letter-spacing:0.330133pt;}
.ls0{letter-spacing:0.352000pt;}
.ls2f{letter-spacing:0.353067pt;}
.ls21{letter-spacing:0.355840pt;}
.ls4{letter-spacing:0.458240pt;}
.ls17{letter-spacing:0.509333pt;}
.ls25{letter-spacing:0.515840pt;}
.ls6{letter-spacing:0.522240pt;}
.ls22{letter-spacing:0.624000pt;}
.ls1e{letter-spacing:0.736000pt;}
.ls8{letter-spacing:0.739200pt;}
.lsc{letter-spacing:0.858667pt;}
.ls3{letter-spacing:4.503040pt;}
.ls7{letter-spacing:5.591040pt;}
.lsb{letter-spacing:7.032960pt;}
.ls5{letter-spacing:8.343040pt;}
.ls9{letter-spacing:12.792960pt;}
.lsa{letter-spacing:12.899627pt;}
.ls35{letter-spacing:14.351360pt;}
.ls38{letter-spacing:16.911360pt;}
.ls39{letter-spacing:17.551360pt;}
.ls37{letter-spacing:18.191360pt;}
.ls3a{letter-spacing:20.751360pt;}
.ls36{letter-spacing:27.151360pt;}
.ls33{letter-spacing:37.391360pt;}
.ls32{letter-spacing:38.671360pt;}
.ls34{letter-spacing:41.231360pt;}
.ls30{letter-spacing:47.631360pt;}
.ls20{letter-spacing:173.290667pt;}
.ls2{letter-spacing:1522.625707pt;}
.ws13{word-spacing:-14.248960pt;}
.ws1e{word-spacing:-13.130027pt;}
.ws22{word-spacing:-13.107093pt;}
.ws18{word-spacing:-13.053227pt;}
.ws10{word-spacing:-13.012907pt;}
.ws21{word-spacing:-12.976427pt;}
.wsf{word-spacing:-12.855040pt;}
.ws20{word-spacing:-12.828160pt;}
.ws16{word-spacing:-12.776960pt;}
.ws17{word-spacing:-12.682027pt;}
.ws19{word-spacing:-12.600427pt;}
.ws15{word-spacing:-12.597760pt;}
.ws1b{word-spacing:-12.541227pt;}
.ws1c{word-spacing:-12.526293pt;}
.ws14{word-spacing:-12.354560pt;}
.ws12{word-spacing:-12.240000pt;}
.ws1a{word-spacing:-11.960960pt;}
.ws1{word-spacing:-11.745707pt;}
.ws0{word-spacing:-11.600000pt;}
.ws2{word-spacing:-11.527040pt;}
.ws3{word-spacing:-11.315840pt;}
.ws1f{word-spacing:-11.312000pt;}
.wsd{word-spacing:-10.416000pt;}
.ws5{word-spacing:-10.376960pt;}
.wse{word-spacing:-10.272000pt;}
.ws6{word-spacing:-9.483627pt;}
.ws4{word-spacing:-9.304960pt;}
.ws8{word-spacing:-8.845227pt;}
.ws7{word-spacing:-8.843627pt;}
.wsa{word-spacing:-8.564373pt;}
.ws9{word-spacing:-8.288107pt;}
.wsb{word-spacing:-8.055040pt;}
.ws1d{word-spacing:-7.499520pt;}
.wsc{word-spacing:-6.388480pt;}
.ws11{word-spacing:0.000000pt;}
._4{margin-left:-4.565760pt;}
._1{margin-left:-3.384320pt;}
._2{margin-left:-2.472960pt;}
._0{margin-left:-1.530880pt;}
._3{width:0.918827pt;}
._5{width:1.956160pt;}
._6{width:3.330133pt;}
._c{width:4.375680pt;}
._9{width:6.055680pt;}
._7{width:7.334187pt;}
._8{width:8.247893pt;}
._13{width:9.644160pt;}
._14{width:10.913280pt;}
._b{width:12.642560pt;}
._a{width:13.545600pt;}
._d{width:14.920107pt;}
._12{width:16.636800pt;}
._10{width:17.822933pt;}
._11{width:18.792533pt;}
._16{width:19.783680pt;}
._e{width:22.672640pt;}
._f{width:24.213120pt;}
._15{width:34.680320pt;}
._17{width:35.622400pt;}
.fs6{font-size:29.440000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:1.600000pt;}
.y13{bottom:8.000000pt;}
.y16{bottom:13.632000pt;}
.y94{bottom:16.320000pt;}
.y9f{bottom:16.360000pt;}
.y98{bottom:16.480000pt;}
.yb8{bottom:19.194667pt;}
.yb3{bottom:19.200000pt;}
.y12{bottom:21.920000pt;}
.y15{bottom:25.792000pt;}
.y95{bottom:31.200000pt;}
.ya0{bottom:31.240000pt;}
.y99{bottom:31.360000pt;}
.ya9{bottom:31.386667pt;}
.yb9{bottom:34.074667pt;}
.yb4{bottom:34.080000pt;}
.y11{bottom:35.840000pt;}
.y10{bottom:49.600000pt;}
.y4{bottom:51.040000pt;}
.y14{bottom:55.360000pt;}
.yf{bottom:63.520000pt;}
.y5{bottom:67.232000pt;}
.y3{bottom:67.872000pt;}
.ye{bottom:77.434667pt;}
.yba{bottom:81.792000pt;}
.yd{bottom:91.194667pt;}
.y47{bottom:91.232000pt;}
.y89{bottom:97.632000pt;}
.y6a{bottom:102.432000pt;}
.yc{bottom:105.114667pt;}
.yd9{bottom:108.352000pt;}
.yb7{bottom:115.872000pt;}
.y46{bottom:117.152000pt;}
.yb{bottom:118.874667pt;}
.y88{bottom:126.272000pt;}
.y69{bottom:130.912000pt;}
.yd8{bottom:131.872000pt;}
.ya{bottom:132.794667pt;}
.y45{bottom:134.586667pt;}
.y92{bottom:136.986667pt;}
.y9{bottom:146.554667pt;}
.yb6{bottom:149.946667pt;}
.y44{bottom:152.186667pt;}
.y87{bottom:154.906667pt;}
.y68{bottom:159.546667pt;}
.yd7{bottom:160.346667pt;}
.y8{bottom:160.474667pt;}
.y91{bottom:165.466667pt;}
.y43{bottom:171.226667pt;}
.y7{bottom:174.394667pt;}
.y86{bottom:183.386667pt;}
.yb5{bottom:184.026667pt;}
.y67{bottom:188.026667pt;}
.y6{bottom:188.154667pt;}
.yd6{bottom:188.986667pt;}
.y42{bottom:189.946667pt;}
.y90{bottom:194.106667pt;}
.y41{bottom:207.226667pt;}
.y85{bottom:212.026667pt;}
.y66{bottom:216.666667pt;}
.yd5{bottom:217.626667pt;}
.yb2{bottom:218.746667pt;}
.y8f{bottom:222.586667pt;}
.y40{bottom:224.506667pt;}
.yf4{bottom:232.506667pt;}
.y84{bottom:240.506667pt;}
.y3f{bottom:241.946667pt;}
.y65{bottom:245.306667pt;}
.yd4{bottom:246.106667pt;}
.y8e{bottom:251.226667pt;}
.y3e{bottom:259.226667pt;}
.y83{bottom:269.146667pt;}
.yf3{bottom:270.266667pt;}
.y64{bottom:273.786667pt;}
.yd3{bottom:274.746667pt;}
.y3d{bottom:276.506667pt;}
.yb1{bottom:277.946667pt;}
.y8d{bottom:279.866667pt;}
.yf2{bottom:289.306667pt;}
.y3c{bottom:293.786667pt;}
.y82{bottom:297.626667pt;}
.y63{bottom:302.466667pt;}
.yd2{bottom:303.266667pt;}
.yb0{bottom:306.466667pt;}
.y8c{bottom:308.386667pt;}
.y3b{bottom:311.266667pt;}
.y81{bottom:326.306667pt;}
.yf1{bottom:327.426667pt;}
.y3a{bottom:328.546667pt;}
.y62{bottom:330.946667pt;}
.yd1{bottom:331.906667pt;}
.yaf{bottom:335.106667pt;}
.y8b{bottom:337.026667pt;}
.y39{bottom:345.826667pt;}
.yf0{bottom:346.466667pt;}
.y80{bottom:354.946667pt;}
.y61{bottom:359.586667pt;}
.yd0{bottom:360.546667pt;}
.y38{bottom:363.106667pt;}
.yae{bottom:363.586667pt;}
.y8a{bottom:365.506667pt;}
.y37{bottom:380.386667pt;}
.yef{bottom:384.546667pt;}
.y60{bottom:388.226667pt;}
.ycf{bottom:389.026667pt;}
.yad{bottom:392.226667pt;}
.y7f{bottom:394.146667pt;}
.y36{bottom:397.826667pt;}
.yee{bottom:403.586667pt;}
.y35{bottom:415.106667pt;}
.y5f{bottom:416.706667pt;}
.yce{bottom:417.666667pt;}
.yac{bottom:420.866667pt;}
.y7e{bottom:422.626667pt;}
.y34{bottom:432.386667pt;}
.yed{bottom:441.826667pt;}
.y5e{bottom:445.346667pt;}
.ycd{bottom:446.146667pt;}
.y33{bottom:449.666667pt;}
.y7d{bottom:451.266667pt;}
.yab{bottom:459.906667pt;}
.yec{bottom:460.866667pt;}
.y32{bottom:467.106667pt;}
.y5d{bottom:472.706667pt;}
.ycc{bottom:474.786667pt;}
.yaa{bottom:476.866667pt;}
.y7c{bottom:479.906667pt;}
.y31{bottom:484.386667pt;}
.yeb{bottom:498.946667pt;}
.y30{bottom:501.666667pt;}
.y5c{bottom:502.146667pt;}
.ycb{bottom:503.426667pt;}
.ya8{bottom:508.066667pt;}
.y7b{bottom:508.386667pt;}
.yea{bottom:517.986667pt;}
.y2f{bottom:518.946667pt;}
.y5b{bottom:528.066667pt;}
.yca{bottom:531.906667pt;}
.y2e{bottom:536.386667pt;}
.y7a{bottom:537.053333pt;}
.ya7{bottom:539.453333pt;}
.y2d{bottom:553.693333pt;}
.y5a{bottom:554.013333pt;}
.ye9{bottom:556.093333pt;}
.yc9{bottom:560.573333pt;}
.y79{bottom:565.533333pt;}
.ya6{bottom:570.653333pt;}
.y2c{bottom:570.973333pt;}
.ye8{bottom:575.133333pt;}
.y59{bottom:580.093333pt;}
.y2b{bottom:588.253333pt;}
.yc8{bottom:589.053333pt;}
.y78{bottom:594.173333pt;}
.ya5{bottom:601.853333pt;}
.y2a{bottom:605.693333pt;}
.y58{bottom:606.013333pt;}
.ye7{bottom:613.213333pt;}
.yc7{bottom:617.693333pt;}
.y77{bottom:622.813333pt;}
.y29{bottom:622.973333pt;}
.y57{bottom:631.933333pt;}
.ye6{bottom:632.253333pt;}
.ya4{bottom:633.053333pt;}
.y28{bottom:640.573333pt;}
.yc6{bottom:646.173333pt;}
.y76{bottom:651.293333pt;}
.y56{bottom:658.013333pt;}
.ya3{bottom:664.253333pt;}
.y27{bottom:666.653333pt;}
.ye5{bottom:670.333333pt;}
.yc5{bottom:674.813333pt;}
.y75{bottom:679.933333pt;}
.y55{bottom:683.933333pt;}
.y26{bottom:686.173333pt;}
.ye4{bottom:689.373333pt;}
.ya2{bottom:695.453333pt;}
.y25{bottom:701.853333pt;}
.yc4{bottom:703.453333pt;}
.y74{bottom:708.413333pt;}
.y54{bottom:709.853333pt;}
.y24{bottom:717.373333pt;}
.ya1{bottom:726.813333pt;}
.ye3{bottom:727.453333pt;}
.y23{bottom:729.053333pt;}
.yc3{bottom:731.933333pt;}
.y53{bottom:735.933333pt;}
.y73{bottom:737.053333pt;}
.ye2{bottom:746.493333pt;}
.y22{bottom:756.413333pt;}
.y9e{bottom:758.013333pt;}
.yc2{bottom:760.573333pt;}
.y52{bottom:761.853333pt;}
.y72{bottom:765.693333pt;}
.y21{bottom:773.373333pt;}
.ye1{bottom:784.773333pt;}
.y51{bottom:787.813333pt;}
.yc1{bottom:789.093333pt;}
.y9d{bottom:789.253333pt;}
.y20{bottom:790.213333pt;}
.y71{bottom:794.213333pt;}
.ye0{bottom:803.813333pt;}
.y1f{bottom:807.013333pt;}
.y50{bottom:813.893333pt;}
.y9c{bottom:820.453333pt;}
.y70{bottom:822.853333pt;}
.y1e{bottom:823.813333pt;}
.yc0{bottom:828.453333pt;}
.y4f{bottom:839.813333pt;}
.ydf{bottom:841.893333pt;}
.y6f{bottom:851.333333pt;}
.y9b{bottom:851.653333pt;}
.ybf{bottom:856.933333pt;}
.yde{bottom:860.933333pt;}
.y1d{bottom:864.773333pt;}
.y4e{bottom:865.733333pt;}
.y6e{bottom:879.973333pt;}
.y9a{bottom:882.853333pt;}
.ybe{bottom:885.573333pt;}
.y1c{bottom:889.093333pt;}
.y4d{bottom:891.813333pt;}
.ydd{bottom:899.013333pt;}
.y6d{bottom:908.453333pt;}
.y1b{bottom:913.253333pt;}
.y97{bottom:914.053333pt;}
.y4c{bottom:917.733333pt;}
.ydc{bottom:918.053333pt;}
.ybd{bottom:924.773333pt;}
.y6c{bottom:937.093333pt;}
.y1a{bottom:937.573333pt;}
.ybc{bottom:940.293333pt;}
.y4b{bottom:943.813333pt;}
.y96{bottom:945.413333pt;}
.ydb{bottom:956.133333pt;}
.y19{bottom:961.733333pt;}
.y6b{bottom:965.733333pt;}
.y4a{bottom:969.733333pt;}
.ybb{bottom:974.373333pt;}
.yda{bottom:975.173333pt;}
.y93{bottom:977.253333pt;}
.y18{bottom:994.213333pt;}
.y49{bottom:995.653333pt;}
.y2{bottom:1043.520000pt;}
.y48{bottom:1044.640000pt;}
.y1{bottom:1061.760000pt;}
.hf{height:31.200000pt;}
.h11{height:31.232000pt;}
.h10{height:31.360000pt;}
.h12{height:31.392000pt;}
.h13{height:34.080000pt;}
.hc{height:34.109375pt;}
.h8{height:35.232000pt;}
.h9{height:38.751250pt;}
.h2{height:39.876250pt;}
.h7{height:44.764375pt;}
.h4{height:50.109375pt;}
.h5{height:55.454375pt;}
.hd{height:58.453459pt;}
.ha{height:58.563750pt;}
.h3{height:61.467500pt;}
.he{height:66.812500pt;}
.hb{height:78.170625pt;}
.h6{height:204.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:14.720000pt;}
.w9{width:14.880000pt;}
.wc{width:109.440000pt;}
.wd{width:109.632000pt;}
.w5{width:117.440000pt;}
.w7{width:117.472000pt;}
.w6{width:117.632000pt;}
.w3{width:214.786667pt;}
.we{width:219.066667pt;}
.wa{width:235.066667pt;}
.wb{width:352.706667pt;}
.w4{width:457.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1c{left:30.074667pt;}
.x23{left:35.040000pt;}
.x17{left:36.480000pt;}
.x1b{left:37.760000pt;}
.x1a{left:39.200000pt;}
.x18{left:47.200000pt;}
.x22{left:48.960000pt;}
.x19{left:50.880000pt;}
.x15{left:52.800000pt;}
.x10{left:55.040000pt;}
.x16{left:58.720000pt;}
.x7{left:114.272000pt;}
.x24{left:137.466655pt;}
.xa{left:160.666655pt;}
.xb{left:170.266655pt;}
.x1d{left:222.906667pt;}
.xd{left:230.906667pt;}
.x4{left:308.386655pt;}
.x2{left:321.666655pt;}
.x1e{left:332.546667pt;}
.xe{left:348.546667pt;}
.x1{left:415.933322pt;}
.x1f{left:442.173333pt;}
.xf{left:466.173333pt;}
.x20{left:551.613333pt;}
.x5{left:563.933333pt;}
.x11{left:583.653333pt;}
.x12{left:598.373333pt;}
.x9{left:600.933322pt;}
.x13{left:613.253333pt;}
.x14{left:627.973333pt;}
.x21{left:661.253333pt;}
.x3{left:705.573322pt;}
.x8{left:718.373322pt;}
}




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