
    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_4ac7b2a45ea3e669018cc062.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f827d3d3a0be9cad592b27fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_bcb0275ab05bec8fbb312ace.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_619d74297bc0780c556ab53a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_24f807a454eaa5ef6e19051f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_94380b9198ff5c0a0481c293.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_1c016984c7ef487e21e2d5f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:ffa;src:url('chunks/assets/font_d2334335765ff1920072add6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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;}
.m3{transform:matrix(0.000000,-0.250665,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250665,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250665,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-118.800000px;}
.v2{vertical-align:-82.980000px;}
.v3{vertical-align:-81.660000px;}
.v5{vertical-align:-70.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.540000px;}
.ls23{letter-spacing:-2.400000px;}
.ls3a{letter-spacing:-2.131290px;}
.ls22{letter-spacing:-1.578000px;}
.ls39{letter-spacing:-1.416475px;}
.ls25{letter-spacing:-1.200000px;}
.ls2d{letter-spacing:-0.852000px;}
.ls21{letter-spacing:-0.816000px;}
.ls12{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.594000px;}
.ls3d{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.384000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.024000px;}
.ls33{letter-spacing:-0.018000px;}
.lsf{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls35{letter-spacing:0.030000px;}
.lsa{letter-spacing:0.036000px;}
.ls2e{letter-spacing:0.060000px;}
.ls37{letter-spacing:0.150000px;}
.ls32{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.264000px;}
.ls3b{letter-spacing:0.276717px;}
.ls7{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.348000px;}
.ls1d{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.372000px;}
.ls3e{letter-spacing:0.408000px;}
.ls31{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.492000px;}
.ls3f{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.552000px;}
.ls6{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.612000px;}
.ls40{letter-spacing:0.792000px;}
.ls1a{letter-spacing:1.200000px;}
.ls1e{letter-spacing:1.224000px;}
.ls38{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.380000px;}
.ls29{letter-spacing:1.500000px;}
.ls27{letter-spacing:1.572000px;}
.ls24{letter-spacing:1.632000px;}
.ls2b{letter-spacing:1.692000px;}
.ls3c{letter-spacing:1.812000px;}
.ls41{letter-spacing:2.832000px;}
.ls10{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.600000px;}
.ls1{letter-spacing:3.900000px;}
.ls0{letter-spacing:4.200000px;}
.ls5{letter-spacing:4.260000px;}
.ls3{letter-spacing:4.320000px;}
.ls2f{letter-spacing:4.860000px;}
.ls4{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.520000px;}
.ls2c{letter-spacing:6.000000px;}
.ls30{letter-spacing:7.200000px;}
.lse{letter-spacing:8.400000px;}
.ls9{letter-spacing:10.800000px;}
.ls28{letter-spacing:14.340000px;}
.ls1f{letter-spacing:14.400000px;}
.ls19{letter-spacing:194.400000px;}
.ls16{letter-spacing:290.550000px;}
.ls42{letter-spacing:302.550000px;}
.ls26{letter-spacing:512.550000px;}
.ls43{letter-spacing:937.470000px;}
.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;}
}
.ws1c{word-spacing:-72.000000px;}
.ws7{word-spacing:-27.036000px;}
.ws0{word-spacing:-26.700000px;}
.ws2{word-spacing:-20.100000px;}
.ws1{word-spacing:-19.500000px;}
.wse{word-spacing:-19.224000px;}
.ws1d{word-spacing:-18.792000px;}
.ws1b{word-spacing:-18.408000px;}
.wsd{word-spacing:-18.360000px;}
.wsf{word-spacing:-18.024000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.976000px;}
.wsa{word-spacing:-17.616000px;}
.ws11{word-spacing:-16.848000px;}
.ws3{word-spacing:-16.500000px;}
.wsc{word-spacing:-16.122000px;}
.ws4{word-spacing:-15.900000px;}
.ws12{word-spacing:-15.648000px;}
.ws14{word-spacing:-15.000000px;}
.ws10{word-spacing:-14.922000px;}
.ws15{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.482000px;}
.ws17{word-spacing:-12.906000px;}
.ws18{word-spacing:-12.179871px;}
.ws5{word-spacing:-0.168000px;}
.ws6{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws1a{word-spacing:67.368354px;}
.ws19{word-spacing:75.989000px;}
._1f{margin-left:-14.718000px;}
._21{margin-left:-5.644556px;}
._6{margin-left:-3.876000px;}
._4{margin-left:-1.950000px;}
._3{width:1.020000px;}
._1{width:2.790000px;}
._0{width:4.680000px;}
._19{width:6.666000px;}
._2{width:7.830000px;}
._e{width:9.006000px;}
._d{width:10.152000px;}
._c{width:11.160000px;}
._18{width:12.216000px;}
._17{width:13.266000px;}
._b{width:14.604000px;}
._a{width:15.900000px;}
._f{width:16.938000px;}
._10{width:19.074000px;}
._1d{width:21.000000px;}
._16{width:22.950000px;}
._14{width:24.408000px;}
._15{width:25.686000px;}
._1a{width:26.934000px;}
._1e{width:27.954000px;}
._13{width:29.370000px;}
._12{width:30.606000px;}
._11{width:32.232000px;}
._24{width:33.750000px;}
._23{width:36.288000px;}
._22{width:37.872000px;}
._1c{width:43.770000px;}
._1b{width:44.982000px;}
._9{width:62.448000px;}
._7{width:64.890000px;}
._8{width:98.976000px;}
._20{width:194.400000px;}
._5{width:621.360000px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fsc{font-size:39.337449px;}
.fsb{font-size:39.442024px;}
.fs9{font-size:43.812484px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:56.922112px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.570000px;}
.y87{bottom:3.585000px;}
.y6{bottom:3.882000px;}
.yc3{bottom:18.341605px;}
.y89{bottom:20.685000px;}
.y8a{bottom:20.985000px;}
.ybd{bottom:44.704261px;}
.y4{bottom:60.337500px;}
.yaf{bottom:73.749667px;}
.y5{bottom:83.155500px;}
.yb0{bottom:103.206202px;}
.yd9{bottom:114.037500px;}
.y2f{bottom:114.637500px;}
.y65{bottom:124.537500px;}
.y7f{bottom:124.837500px;}
.yad{bottom:125.437500px;}
.ye5{bottom:126.337500px;}
.yb1{bottom:132.629847px;}
.yd8{bottom:134.737500px;}
.y2e{bottom:135.337500px;}
.y5d{bottom:145.237500px;}
.y7e{bottom:145.537500px;}
.yac{bottom:146.137500px;}
.ye4{bottom:147.037500px;}
.yd7{bottom:155.430000px;}
.y2d{bottom:156.045000px;}
.yb2{bottom:162.088574px;}
.y5c{bottom:165.930000px;}
.y7d{bottom:166.245000px;}
.yab{bottom:166.830000px;}
.ye3{bottom:167.745000px;}
.yd6{bottom:176.175000px;}
.y2c{bottom:176.475000px;}
.yf8{bottom:186.075000px;}
.y5b{bottom:186.675000px;}
.y7c{bottom:186.975000px;}
.yaa{bottom:187.575000px;}
.ye2{bottom:188.475000px;}
.yb3{bottom:191.514412px;}
.yd5{bottom:196.575000px;}
.y2b{bottom:197.175000px;}
.yf7{bottom:206.175000px;}
.y5a{bottom:207.375000px;}
.y7b{bottom:207.675000px;}
.ya9{bottom:208.275000px;}
.ye1{bottom:209.175000px;}
.yd4{bottom:217.275000px;}
.y2a{bottom:217.875000px;}
.yb4{bottom:221.027956px;}
.yf6{bottom:226.875000px;}
.y59{bottom:228.075000px;}
.y7a{bottom:228.375000px;}
.ya8{bottom:228.975000px;}
.ye0{bottom:229.875000px;}
.yd3{bottom:237.975000px;}
.y29{bottom:238.575000px;}
.yc2{bottom:245.311947px;}
.y58{bottom:248.775000px;}
.y79{bottom:249.075000px;}
.ya7{bottom:249.675000px;}
.yb5{bottom:250.453794px;}
.ydf{bottom:250.575000px;}
.yd2{bottom:258.675000px;}
.y28{bottom:259.275000px;}
.yc1{bottom:261.570709px;}
.yc4{bottom:264.695285px;}
.yf5{bottom:268.275000px;}
.y57{bottom:269.475000px;}
.y78{bottom:269.775000px;}
.ya6{bottom:270.375000px;}
.yde{bottom:271.275000px;}
.yc0{bottom:277.862361px;}
.yd1{bottom:279.675000px;}
.yb6{bottom:279.912522px;}
.y27{bottom:279.975000px;}
.yf4{bottom:288.975000px;}
.y56{bottom:290.175000px;}
.y77{bottom:290.475000px;}
.ya5{bottom:291.075000px;}
.ydd{bottom:291.375000px;}
.ybf{bottom:294.154013px;}
.yd0{bottom:300.375000px;}
.y26{bottom:300.675000px;}
.yb7{bottom:309.338359px;}
.yf3{bottom:309.675000px;}
.y55{bottom:310.875000px;}
.y76{bottom:311.175000px;}
.ya4{bottom:311.475000px;}
.ycf{bottom:321.075000px;}
.y25{bottom:321.375000px;}
.yf2{bottom:330.375000px;}
.y54{bottom:331.575000px;}
.y75{bottom:331.875000px;}
.ya3{bottom:332.475000px;}
.yb8{bottom:338.851904px;}
.yce{bottom:341.820000px;}
.y24{bottom:342.120000px;}
.yf1{bottom:351.120000px;}
.y53{bottom:352.320000px;}
.y74{bottom:352.620000px;}
.ya2{bottom:353.205000px;}
.ycd{bottom:362.505000px;}
.y23{bottom:362.820000px;}
.yb9{bottom:368.277741px;}
.yf0{bottom:371.820000px;}
.y83{bottom:372.705000px;}
.y52{bottom:373.005000px;}
.ya1{bottom:373.920000px;}
.ycc{bottom:383.205000px;}
.y22{bottom:383.505000px;}
.yef{bottom:392.505000px;}
.y82{bottom:393.420000px;}
.y64{bottom:393.705000px;}
.y73{bottom:394.005000px;}
.ya0{bottom:394.620000px;}
.yba{bottom:397.736469px;}
.ycb{bottom:403.920000px;}
.y21{bottom:404.205000px;}
.y72{bottom:410.205000px;}
.yee{bottom:413.205000px;}
.y81{bottom:414.120000px;}
.y51{bottom:414.420000px;}
.y9f{bottom:415.320000px;}
.yca{bottom:424.620000px;}
.y20{bottom:424.920000px;}
.ybb{bottom:427.162306px;}
.yed{bottom:433.620000px;}
.y80{bottom:434.820000px;}
.y50{bottom:435.120000px;}
.y9e{bottom:436.005000px;}
.yc9{bottom:445.320000px;}
.y1f{bottom:445.620000px;}
.yec{bottom:452.505000px;}
.y4f{bottom:455.820000px;}
.ybc{bottom:456.653924px;}
.y9d{bottom:456.705000px;}
.yc8{bottom:466.005000px;}
.y1e{bottom:466.320000px;}
.yeb{bottom:471.420000px;}
.y4e{bottom:476.505000px;}
.y9c{bottom:477.420000px;}
.yc7{bottom:486.705000px;}
.y1d{bottom:487.005000px;}
.yea{bottom:490.320000px;}
.y4d{bottom:497.220000px;}
.y9b{bottom:497.820000px;}
.y1c{bottom:507.405000px;}
.ye9{bottom:509.550000px;}
.ybe{bottom:515.867392px;}
.y4c{bottom:517.950000px;}
.y9a{bottom:518.550000px;}
.yc6{bottom:528.150000px;}
.y1b{bottom:528.450000px;}
.y85{bottom:538.350000px;}
.y4b{bottom:538.650000px;}
.y99{bottom:539.250000px;}
.ye8{bottom:543.150000px;}
.yc5{bottom:544.350000px;}
.yae{bottom:545.419142px;}
.y1a{bottom:549.150000px;}
.y84{bottom:559.050000px;}
.y4a{bottom:559.350000px;}
.y98{bottom:560.250000px;}
.ye7{bottom:562.950000px;}
.y19{bottom:569.850000px;}
.y49{bottom:579.750000px;}
.y63{bottom:580.050000px;}
.y97{bottom:580.950000px;}
.ye6{bottom:583.650000px;}
.y18{bottom:590.250000px;}
.y48{bottom:600.450000px;}
.y62{bottom:600.750000px;}
.y96{bottom:601.650000px;}
.y17{bottom:619.050000px;}
.y47{bottom:621.150000px;}
.y61{bottom:621.450000px;}
.y95{bottom:622.350000px;}
.y16{bottom:639.450000px;}
.y6c{bottom:641.850000px;}
.y46{bottom:642.150000px;}
.y94{bottom:643.050000px;}
.ydc{bottom:662.550000px;}
.y60{bottom:662.850000px;}
.y93{bottom:663.450000px;}
.y15{bottom:668.250000px;}
.ydb{bottom:683.280000px;}
.y45{bottom:683.595000px;}
.y92{bottom:684.495000px;}
.y14{bottom:688.995000px;}
.yda{bottom:703.995000px;}
.y44{bottom:704.280000px;}
.y91{bottom:705.195000px;}
.y13{bottom:711.195000px;}
.y90{bottom:722.310000px;}
.y43{bottom:724.995000px;}
.y8f{bottom:740.310000px;}
.y42{bottom:745.695000px;}
.y8e{bottom:758.310000px;}
.y71{bottom:766.095000px;}
.y41{bottom:766.380000px;}
.y12{bottom:771.795000px;}
.y8d{bottom:776.310000px;}
.y70{bottom:786.795000px;}
.y40{bottom:787.080000px;}
.y8c{bottom:794.310000px;}
.y11{bottom:797.295000px;}
.y6f{bottom:807.495000px;}
.y3f{bottom:807.795000px;}
.y88{bottom:812.310000px;}
.y3e{bottom:828.495000px;}
.y10{bottom:845.625000px;}
.y86{bottom:847.440000px;}
.y6b{bottom:848.925000px;}
.y3d{bottom:849.225000px;}
.y6a{bottom:869.625000px;}
.y3c{bottom:869.925000px;}
.y69{bottom:890.325000px;}
.y3b{bottom:890.625000px;}
.yf{bottom:893.925000px;}
.y68{bottom:911.025000px;}
.y3a{bottom:911.325000px;}
.y39{bottom:932.025000px;}
.y38{bottom:952.425000px;}
.y5f{bottom:952.725000px;}
.ye{bottom:955.125000px;}
.y37{bottom:973.425000px;}
.yd{bottom:975.825000px;}
.y36{bottom:994.125000px;}
.yc{bottom:994.725000px;}
.yb{bottom:1013.670000px;}
.y6e{bottom:1014.570000px;}
.y35{bottom:1014.870000px;}
.ya{bottom:1032.570000px;}
.y34{bottom:1035.255000px;}
.y5e{bottom:1035.570000px;}
.y9{bottom:1051.755000px;}
.y33{bottom:1055.955000px;}
.y6d{bottom:1056.255000px;}
.y67{bottom:1076.670000px;}
.y32{bottom:1076.955000px;}
.y8{bottom:1085.370000px;}
.y66{bottom:1097.370000px;}
.y31{bottom:1097.670000px;}
.y30{bottom:1118.370000px;}
.y7{bottom:1119.255000px;}
.y3{bottom:1139.070000px;}
.y2{bottom:1166.070000px;}
.y1{bottom:1189.500000px;}
.h14{height:17.070000px;}
.h13{height:17.085000px;}
.he{height:17.385000px;}
.h4{height:20.982000px;}
.hf{height:34.522500px;}
.h1a{height:41.027730px;}
.h19{height:41.136799px;}
.h3{height:45.020508px;}
.h17{height:45.695052px;}
.h5{height:50.308594px;}
.h11{height:58.857422px;}
.h12{height:58.886719px;}
.h18{height:59.367984px;}
.h10{height:60.468750px;}
.hc{height:64.546875px;}
.h7{height:64.775391px;}
.h6{height:66.515625px;}
.hd{height:70.628906px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.h2{height:76.552734px;}
.h15{height:80.649375px;}
.h1{height:88.330078px;}
.hb{height:108.843750px;}
.h8{height:169.312500px;}
.h16{height:547.645093px;}
.h0{height:1263.000000px;}
.w1{width:10.485000px;}
.w6{width:133.507500px;}
.w3{width:133.519500px;}
.w5{width:133.522500px;}
.w4{width:133.560000px;}
.w7{width:583.610464px;}
.w2{width:671.307000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:7.500000px;}
.x22{left:39.037848px;}
.x17{left:43.777892px;}
.x1d{left:67.505451px;}
.x3{left:81.037500px;}
.x8{left:84.637500px;}
.x7{left:95.737500px;}
.x6{left:97.537500px;}
.x13{left:102.337500px;}
.xd{left:110.737500px;}
.x1{left:113.437500px;}
.x16{left:115.805794px;}
.x1e{left:128.850484px;}
.x18{left:131.310714px;}
.x5{left:134.137500px;}
.x2{left:141.637500px;}
.x14{left:153.450000px;}
.x20{left:156.044234px;}
.x1b{left:160.778811px;}
.x9{left:165.375000px;}
.x19{left:167.262886px;}
.x24{left:178.575000px;}
.xb{left:186.975000px;}
.x1a{left:201.673313px;}
.x15{left:204.122609px;}
.x1c{left:227.828299px;}
.xf{left:245.175000px;}
.x1f{left:258.903746px;}
.x10{left:379.650000px;}
.x4{left:441.150000px;}
.xc{left:446.250000px;}
.x11{left:514.095000px;}
.x21{left:551.375974px;}
.x25{left:562.380000px;}
.xa{left:629.025000px;}
.x12{left:648.525000px;}
.x23{left:739.470000px;}
@media print{
.v1{vertical-align:-105.600000pt;}
.v2{vertical-align:-73.760000pt;}
.v3{vertical-align:-72.586667pt;}
.v5{vertical-align:-62.933333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.813333pt;}
.ls23{letter-spacing:-2.133333pt;}
.ls3a{letter-spacing:-1.894480pt;}
.ls22{letter-spacing:-1.402667pt;}
.ls39{letter-spacing:-1.259089pt;}
.ls25{letter-spacing:-1.066667pt;}
.ls2d{letter-spacing:-0.757333pt;}
.ls21{letter-spacing:-0.725333pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.528000pt;}
.ls3d{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.341333pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.021333pt;}
.ls33{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls35{letter-spacing:0.026667pt;}
.lsa{letter-spacing:0.032000pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls37{letter-spacing:0.133333pt;}
.ls32{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.234667pt;}
.ls3b{letter-spacing:0.245971pt;}
.ls7{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.309333pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.330667pt;}
.ls3e{letter-spacing:0.362667pt;}
.ls31{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.437333pt;}
.ls3f{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.490667pt;}
.ls6{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.544000pt;}
.ls40{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:1.088000pt;}
.ls38{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.226667pt;}
.ls29{letter-spacing:1.333333pt;}
.ls27{letter-spacing:1.397333pt;}
.ls24{letter-spacing:1.450667pt;}
.ls2b{letter-spacing:1.504000pt;}
.ls3c{letter-spacing:1.610667pt;}
.ls41{letter-spacing:2.517333pt;}
.ls10{letter-spacing:2.880000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.466667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls5{letter-spacing:3.786667pt;}
.ls3{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.320000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls2{letter-spacing:4.906667pt;}
.ls2c{letter-spacing:5.333333pt;}
.ls30{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.466667pt;}
.ls9{letter-spacing:9.600000pt;}
.ls28{letter-spacing:12.746667pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls19{letter-spacing:172.800000pt;}
.ls16{letter-spacing:258.266667pt;}
.ls42{letter-spacing:268.933333pt;}
.ls26{letter-spacing:455.600000pt;}
.ls43{letter-spacing:833.306667pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws7{word-spacing:-24.032000pt;}
.ws0{word-spacing:-23.733333pt;}
.ws2{word-spacing:-17.866667pt;}
.ws1{word-spacing:-17.333333pt;}
.wse{word-spacing:-17.088000pt;}
.ws1d{word-spacing:-16.704000pt;}
.ws1b{word-spacing:-16.362667pt;}
.wsd{word-spacing:-16.320000pt;}
.wsf{word-spacing:-16.021333pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.978667pt;}
.wsa{word-spacing:-15.658667pt;}
.ws11{word-spacing:-14.976000pt;}
.ws3{word-spacing:-14.666667pt;}
.wsc{word-spacing:-14.330667pt;}
.ws4{word-spacing:-14.133333pt;}
.ws12{word-spacing:-13.909333pt;}
.ws14{word-spacing:-13.333333pt;}
.ws10{word-spacing:-13.264000pt;}
.ws15{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.984000pt;}
.ws17{word-spacing:-11.472000pt;}
.ws18{word-spacing:-10.826552pt;}
.ws5{word-spacing:-0.149333pt;}
.ws6{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws1a{word-spacing:59.882981pt;}
.ws19{word-spacing:67.545778pt;}
._1f{margin-left:-13.082667pt;}
._21{margin-left:-5.017383pt;}
._6{margin-left:-3.445333pt;}
._4{margin-left:-1.733333pt;}
._3{width:0.906667pt;}
._1{width:2.480000pt;}
._0{width:4.160000pt;}
._19{width:5.925333pt;}
._2{width:6.960000pt;}
._e{width:8.005333pt;}
._d{width:9.024000pt;}
._c{width:9.920000pt;}
._18{width:10.858667pt;}
._17{width:11.792000pt;}
._b{width:12.981333pt;}
._a{width:14.133333pt;}
._f{width:15.056000pt;}
._10{width:16.954667pt;}
._1d{width:18.666667pt;}
._16{width:20.400000pt;}
._14{width:21.696000pt;}
._15{width:22.832000pt;}
._1a{width:23.941333pt;}
._1e{width:24.848000pt;}
._13{width:26.106667pt;}
._12{width:27.205333pt;}
._11{width:28.650667pt;}
._24{width:30.000000pt;}
._23{width:32.256000pt;}
._22{width:33.664000pt;}
._1c{width:38.906667pt;}
._1b{width:39.984000pt;}
._9{width:55.509333pt;}
._7{width:57.680000pt;}
._8{width:87.978667pt;}
._20{width:172.800000pt;}
._5{width:552.320000pt;}
.fsc{font-size:34.966621pt;}
.fsb{font-size:35.059577pt;}
.fs9{font-size:38.944431pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.597433pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.173333pt;}
.y87{bottom:3.186667pt;}
.y6{bottom:3.450667pt;}
.yc3{bottom:16.303649pt;}
.y89{bottom:18.386667pt;}
.y8a{bottom:18.653333pt;}
.ybd{bottom:39.737121pt;}
.y4{bottom:53.633333pt;}
.yaf{bottom:65.555260pt;}
.y5{bottom:73.916000pt;}
.yb0{bottom:91.738846pt;}
.yd9{bottom:101.366667pt;}
.y2f{bottom:101.900000pt;}
.y65{bottom:110.700000pt;}
.y7f{bottom:110.966667pt;}
.yad{bottom:111.500000pt;}
.ye5{bottom:112.300000pt;}
.yb1{bottom:117.893197pt;}
.yd8{bottom:119.766667pt;}
.y2e{bottom:120.300000pt;}
.y5d{bottom:129.100000pt;}
.y7e{bottom:129.366667pt;}
.yac{bottom:129.900000pt;}
.ye4{bottom:130.700000pt;}
.yd7{bottom:138.160000pt;}
.y2d{bottom:138.706667pt;}
.yb2{bottom:144.078733pt;}
.y5c{bottom:147.493333pt;}
.y7d{bottom:147.773333pt;}
.yab{bottom:148.293333pt;}
.ye3{bottom:149.106667pt;}
.yd6{bottom:156.600000pt;}
.y2c{bottom:156.866667pt;}
.yf8{bottom:165.400000pt;}
.y5b{bottom:165.933333pt;}
.y7c{bottom:166.200000pt;}
.yaa{bottom:166.733333pt;}
.ye2{bottom:167.533333pt;}
.yb3{bottom:170.235033pt;}
.yd5{bottom:174.733333pt;}
.y2b{bottom:175.266667pt;}
.yf7{bottom:183.266667pt;}
.y5a{bottom:184.333333pt;}
.y7b{bottom:184.600000pt;}
.ya9{bottom:185.133333pt;}
.ye1{bottom:185.933333pt;}
.yd4{bottom:193.133333pt;}
.y2a{bottom:193.666667pt;}
.yb4{bottom:196.469295pt;}
.yf6{bottom:201.666667pt;}
.y59{bottom:202.733333pt;}
.y7a{bottom:203.000000pt;}
.ya8{bottom:203.533333pt;}
.ye0{bottom:204.333333pt;}
.yd3{bottom:211.533333pt;}
.y29{bottom:212.066667pt;}
.yc2{bottom:218.055064pt;}
.y58{bottom:221.133333pt;}
.y79{bottom:221.400000pt;}
.ya7{bottom:221.933333pt;}
.yb5{bottom:222.625595pt;}
.ydf{bottom:222.733333pt;}
.yd2{bottom:229.933333pt;}
.y28{bottom:230.466667pt;}
.yc1{bottom:232.507297pt;}
.yc4{bottom:235.284698pt;}
.yf5{bottom:238.466667pt;}
.y57{bottom:239.533333pt;}
.y78{bottom:239.800000pt;}
.ya6{bottom:240.333333pt;}
.yde{bottom:241.133333pt;}
.yc0{bottom:246.988765pt;}
.yd1{bottom:248.600000pt;}
.yb6{bottom:248.811130pt;}
.y27{bottom:248.866667pt;}
.yf4{bottom:256.866667pt;}
.y56{bottom:257.933333pt;}
.y77{bottom:258.200000pt;}
.ya5{bottom:258.733333pt;}
.ydd{bottom:259.000000pt;}
.ybf{bottom:261.470234pt;}
.yd0{bottom:267.000000pt;}
.y26{bottom:267.266667pt;}
.yb7{bottom:274.967430pt;}
.yf3{bottom:275.266667pt;}
.y55{bottom:276.333333pt;}
.y76{bottom:276.600000pt;}
.ya4{bottom:276.866667pt;}
.ycf{bottom:285.400000pt;}
.y25{bottom:285.666667pt;}
.yf2{bottom:293.666667pt;}
.y54{bottom:294.733333pt;}
.y75{bottom:295.000000pt;}
.ya3{bottom:295.533333pt;}
.yb8{bottom:301.201692pt;}
.yce{bottom:303.840000pt;}
.y24{bottom:304.106667pt;}
.yf1{bottom:312.106667pt;}
.y53{bottom:313.173333pt;}
.y74{bottom:313.440000pt;}
.ya2{bottom:313.960000pt;}
.ycd{bottom:322.226667pt;}
.y23{bottom:322.506667pt;}
.yb9{bottom:327.357992pt;}
.yf0{bottom:330.506667pt;}
.y83{bottom:331.293333pt;}
.y52{bottom:331.560000pt;}
.ya1{bottom:332.373333pt;}
.ycc{bottom:340.626667pt;}
.y22{bottom:340.893333pt;}
.yef{bottom:348.893333pt;}
.y82{bottom:349.706667pt;}
.y64{bottom:349.960000pt;}
.y73{bottom:350.226667pt;}
.ya0{bottom:350.773333pt;}
.yba{bottom:353.543528pt;}
.ycb{bottom:359.040000pt;}
.y21{bottom:359.293333pt;}
.y72{bottom:364.626667pt;}
.yee{bottom:367.293333pt;}
.y81{bottom:368.106667pt;}
.y51{bottom:368.373333pt;}
.y9f{bottom:369.173333pt;}
.yca{bottom:377.440000pt;}
.y20{bottom:377.706667pt;}
.ybb{bottom:379.699828pt;}
.yed{bottom:385.440000pt;}
.y80{bottom:386.506667pt;}
.y50{bottom:386.773333pt;}
.y9e{bottom:387.560000pt;}
.yc9{bottom:395.840000pt;}
.y1f{bottom:396.106667pt;}
.yec{bottom:402.226667pt;}
.y4f{bottom:405.173333pt;}
.ybc{bottom:405.914599pt;}
.y9d{bottom:405.960000pt;}
.yc8{bottom:414.226667pt;}
.y1e{bottom:414.506667pt;}
.yeb{bottom:419.040000pt;}
.y4e{bottom:423.560000pt;}
.y9c{bottom:424.373333pt;}
.yc7{bottom:432.626667pt;}
.y1d{bottom:432.893333pt;}
.yea{bottom:435.840000pt;}
.y4d{bottom:441.973333pt;}
.y9b{bottom:442.506667pt;}
.y1c{bottom:451.026667pt;}
.ye9{bottom:452.933333pt;}
.ybe{bottom:458.548793pt;}
.y4c{bottom:460.400000pt;}
.y9a{bottom:460.933333pt;}
.yc6{bottom:469.466667pt;}
.y1b{bottom:469.733333pt;}
.y85{bottom:478.533333pt;}
.y4b{bottom:478.800000pt;}
.y99{bottom:479.333333pt;}
.ye8{bottom:482.800000pt;}
.yc5{bottom:483.866667pt;}
.yae{bottom:484.817015pt;}
.y1a{bottom:488.133333pt;}
.y84{bottom:496.933333pt;}
.y4a{bottom:497.200000pt;}
.y98{bottom:498.000000pt;}
.ye7{bottom:500.400000pt;}
.y19{bottom:506.533333pt;}
.y49{bottom:515.333333pt;}
.y63{bottom:515.600000pt;}
.y97{bottom:516.400000pt;}
.ye6{bottom:518.800000pt;}
.y18{bottom:524.666667pt;}
.y48{bottom:533.733333pt;}
.y62{bottom:534.000000pt;}
.y96{bottom:534.800000pt;}
.y17{bottom:550.266667pt;}
.y47{bottom:552.133333pt;}
.y61{bottom:552.400000pt;}
.y95{bottom:553.200000pt;}
.y16{bottom:568.400000pt;}
.y6c{bottom:570.533333pt;}
.y46{bottom:570.800000pt;}
.y94{bottom:571.600000pt;}
.ydc{bottom:588.933333pt;}
.y60{bottom:589.200000pt;}
.y93{bottom:589.733333pt;}
.y15{bottom:594.000000pt;}
.ydb{bottom:607.360000pt;}
.y45{bottom:607.640000pt;}
.y92{bottom:608.440000pt;}
.y14{bottom:612.440000pt;}
.yda{bottom:625.773333pt;}
.y44{bottom:626.026667pt;}
.y91{bottom:626.840000pt;}
.y13{bottom:632.173333pt;}
.y90{bottom:642.053333pt;}
.y43{bottom:644.440000pt;}
.y8f{bottom:658.053333pt;}
.y42{bottom:662.840000pt;}
.y8e{bottom:674.053333pt;}
.y71{bottom:680.973333pt;}
.y41{bottom:681.226667pt;}
.y12{bottom:686.040000pt;}
.y8d{bottom:690.053333pt;}
.y70{bottom:699.373333pt;}
.y40{bottom:699.626667pt;}
.y8c{bottom:706.053333pt;}
.y11{bottom:708.706667pt;}
.y6f{bottom:717.773333pt;}
.y3f{bottom:718.040000pt;}
.y88{bottom:722.053333pt;}
.y3e{bottom:736.440000pt;}
.y10{bottom:751.666667pt;}
.y86{bottom:753.280000pt;}
.y6b{bottom:754.600000pt;}
.y3d{bottom:754.866667pt;}
.y6a{bottom:773.000000pt;}
.y3c{bottom:773.266667pt;}
.y69{bottom:791.400000pt;}
.y3b{bottom:791.666667pt;}
.yf{bottom:794.600000pt;}
.y68{bottom:809.800000pt;}
.y3a{bottom:810.066667pt;}
.y39{bottom:828.466667pt;}
.y38{bottom:846.600000pt;}
.y5f{bottom:846.866667pt;}
.ye{bottom:849.000000pt;}
.y37{bottom:865.266667pt;}
.yd{bottom:867.400000pt;}
.y36{bottom:883.666667pt;}
.yc{bottom:884.200000pt;}
.yb{bottom:901.040000pt;}
.y6e{bottom:901.840000pt;}
.y35{bottom:902.106667pt;}
.ya{bottom:917.840000pt;}
.y34{bottom:920.226667pt;}
.y5e{bottom:920.506667pt;}
.y9{bottom:934.893333pt;}
.y33{bottom:938.626667pt;}
.y6d{bottom:938.893333pt;}
.y67{bottom:957.040000pt;}
.y32{bottom:957.293333pt;}
.y8{bottom:964.773333pt;}
.y66{bottom:975.440000pt;}
.y31{bottom:975.706667pt;}
.y30{bottom:994.106667pt;}
.y7{bottom:994.893333pt;}
.y3{bottom:1012.506667pt;}
.y2{bottom:1036.506667pt;}
.y1{bottom:1057.333333pt;}
.h14{height:15.173333pt;}
.h13{height:15.186667pt;}
.he{height:15.453333pt;}
.h4{height:18.650667pt;}
.hf{height:30.686667pt;}
.h1a{height:36.469093pt;}
.h19{height:36.566043pt;}
.h3{height:40.018229pt;}
.h17{height:40.617824pt;}
.h5{height:44.718750pt;}
.h11{height:52.317708pt;}
.h12{height:52.343750pt;}
.h18{height:52.771541pt;}
.h10{height:53.750000pt;}
.hc{height:57.375000pt;}
.h7{height:57.578125pt;}
.h6{height:59.125000pt;}
.hd{height:62.781250pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.h2{height:68.046875pt;}
.h15{height:71.688333pt;}
.h1{height:78.515625pt;}
.hb{height:96.750000pt;}
.h8{height:150.500000pt;}
.h16{height:486.795638pt;}
.h0{height:1122.666667pt;}
.w1{width:9.320000pt;}
.w6{width:118.673333pt;}
.w3{width:118.684000pt;}
.w5{width:118.686667pt;}
.w4{width:118.720000pt;}
.w7{width:518.764857pt;}
.w2{width:596.717333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:6.666667pt;}
.x22{left:34.700309pt;}
.x17{left:38.913682pt;}
.x1d{left:60.004845pt;}
.x3{left:72.033333pt;}
.x8{left:75.233333pt;}
.x7{left:85.100000pt;}
.x6{left:86.700000pt;}
.x13{left:90.966667pt;}
.xd{left:98.433333pt;}
.x1{left:100.833333pt;}
.x16{left:102.938483pt;}
.x1e{left:114.533763pt;}
.x18{left:116.720635pt;}
.x5{left:119.233333pt;}
.x2{left:125.900000pt;}
.x14{left:136.400000pt;}
.x20{left:138.705986pt;}
.x1b{left:142.914499pt;}
.x9{left:147.000000pt;}
.x19{left:148.678121pt;}
.x24{left:158.733333pt;}
.xb{left:166.200000pt;}
.x1a{left:179.265167pt;}
.x15{left:181.442319pt;}
.x1c{left:202.514043pt;}
.xf{left:217.933333pt;}
.x1f{left:230.136664pt;}
.x10{left:337.466667pt;}
.x4{left:392.133333pt;}
.xc{left:396.666667pt;}
.x11{left:456.973333pt;}
.x21{left:490.111977pt;}
.x25{left:499.893333pt;}
.xa{left:559.133333pt;}
.x12{left:576.466667pt;}
.x23{left:657.306667pt;}
}




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