
    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_c7b30230eadcefb585f0b5c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_b6d88d3745fa015ebd1ad0bb.woff2')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_c7c3de50dc47f4d56fed9644.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_efd04c23e64ee15b60b31d29.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_347227704c2c0089cafcfa39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_c847fce6c957d3f25470a6f0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2b947b685add0918f236add6.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_65287ecc5de33be8c4b6a72b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.800000;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_ae04004e96b9ecb180b27ca7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.800000;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_cc88ecb9e4f74cc6c006af2d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.735500;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:ffb;src:url('chunks/assets/font_cc88ecb9e4f74cc6c006af2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.735500;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:ffc;src:url('chunks/assets/font_3babcdee3b223d6abc3d394f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.747000;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:ffd;src:url('chunks/assets/font_d6b8537402eb319faf16abb7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.698000;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:ffe;src:url('chunks/assets/font_06ba03bb07f8a68d99b83a85.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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:fff;src:url('chunks/assets/font_f84f9677328922e8a42fb83b.woff2')format("woff");}.fff{font-family:fff;line-height:0.727051;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:ff10;src:url('chunks/assets/font_1466ac6ba2142381e0273607.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_ec46ccdaed4e7242aab2cf0b.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_848091c40685bf966d4fde5b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_978b4ce919c60ece14515de8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;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:ff14;src:url('chunks/assets/font_45db6a7383a87c1ecd54a3d2.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-2.671200px;}
.ls20{letter-spacing:-1.603584px;}
.ls34{letter-spacing:-1.536192px;}
.ls36{letter-spacing:-1.518048px;}
.ls32{letter-spacing:-1.512000px;}
.ls16{letter-spacing:-1.500000px;}
.ls39{letter-spacing:-1.499904px;}
.ls33{letter-spacing:-1.497600px;}
.ls31{letter-spacing:-1.490400px;}
.ls3b{letter-spacing:-1.457568px;}
.ls35{letter-spacing:-1.439424px;}
.ls38{letter-spacing:-1.421280px;}
.ls3d{letter-spacing:-1.378944px;}
.ls37{letter-spacing:-1.360800px;}
.ls3a{letter-spacing:-1.318464px;}
.ls12{letter-spacing:-1.209600px;}
.ls11{letter-spacing:-1.202400px;}
.ls10{letter-spacing:-1.188000px;}
.ls13{letter-spacing:-0.960000px;}
.ls21{letter-spacing:-0.501120px;}
.ls1e{letter-spacing:-0.470592px;}
.ls9{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.251712px;}
.ls14{letter-spacing:-0.234000px;}
.lsf{letter-spacing:-0.198720px;}
.lsa{letter-spacing:-0.158976px;}
.ls23{letter-spacing:-0.152352px;}
.lsb{letter-spacing:-0.125856px;}
.lsd{letter-spacing:-0.119232px;}
.lse{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.059616px;}
.ls6{letter-spacing:-0.021600px;}
.ls1d{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.167040px;}
.ls1c{letter-spacing:0.192096px;}
.ls0{letter-spacing:0.238464px;}
.ls24{letter-spacing:0.242208px;}
.ls1a{letter-spacing:0.275616px;}
.ls22{letter-spacing:0.283968px;}
.ls8{letter-spacing:0.286848px;}
.ls27{letter-spacing:2.203200px;}
.ls3{letter-spacing:2.331648px;}
.ls2a{letter-spacing:2.520000px;}
.ls2f{letter-spacing:3.386880px;}
.ls1{letter-spacing:6.888960px;}
.ls2{letter-spacing:7.948800px;}
.ls4{letter-spacing:8.064000px;}
.ls2d{letter-spacing:11.232000px;}
.ls2c{letter-spacing:11.260800px;}
.ls2b{letter-spacing:11.304000px;}
.ls2e{letter-spacing:11.318400px;}
.ls17{letter-spacing:11.664000px;}
.ls18{letter-spacing:11.671200px;}
.ls15{letter-spacing:12.000000px;}
.ls19{letter-spacing:12.444480px;}
.ls3c{letter-spacing:12.761280px;}
.ls5{letter-spacing:13.272000px;}
.ls25{letter-spacing:13.608000px;}
.ls30{letter-spacing:15.845760px;}
.ls26{letter-spacing:19.728000px;}
.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;}
}
.wsf{word-spacing:-449.520000px;}
.ws11{word-spacing:-448.560000px;}
.wsc{word-spacing:-105.408000px;}
.ws9{word-spacing:-42.984000px;}
.ws16{word-spacing:-19.159488px;}
.ws15{word-spacing:-19.042560px;}
.ws17{word-spacing:-18.014400px;}
.ws8{word-spacing:-18.000000px;}
.ws14{word-spacing:-16.812000px;}
.ws1b{word-spacing:-16.790400px;}
.ws1a{word-spacing:-16.502400px;}
.ws19{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.480512px;}
.ws6{word-spacing:-16.440768px;}
.ws3{word-spacing:-16.434144px;}
.ws5{word-spacing:-16.361280px;}
.ws18{word-spacing:-15.328800px;}
.ws1e{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.817600px;}
.ws20{word-spacing:-13.759200px;}
.ws22{word-spacing:-13.741056px;}
.ws1c{word-spacing:-13.680576px;}
.ws21{word-spacing:-13.662432px;}
.ws1d{word-spacing:-13.620096px;}
.ws23{word-spacing:-13.601952px;}
.ws1f{word-spacing:-13.583808px;}
.wsa{word-spacing:-12.288000px;}
.wse{word-spacing:-12.282000px;}
.ws12{word-spacing:-1.272000px;}
.ws0{word-spacing:-0.050400px;}
.ws13{word-spacing:-0.006000px;}
.wsd{word-spacing:0.000000px;}
.ws2{word-spacing:0.092736px;}
.ws7{word-spacing:0.132480px;}
.ws10{word-spacing:0.960000px;}
.wsb{word-spacing:17.688000px;}
._10{margin-left:-391.488000px;}
._f{margin-left:-242.688000px;}
._12{margin-left:-193.248000px;}
._11{margin-left:-41.046000px;}
._13{margin-left:-11.999913px;}
._1b{margin-left:-2.210976px;}
._0{margin-left:-1.075680px;}
._1{width:1.028160px;}
._7{width:2.848320px;}
._8{width:3.908160px;}
._9{width:5.166720px;}
._b{width:6.179040px;}
._3{width:7.500960px;}
._2{width:8.677440px;}
._c{width:10.618560px;}
._4{width:12.453120px;}
._5{width:13.584384px;}
._d{width:15.359616px;}
._e{width:16.588800px;}
._1a{width:17.750880px;}
._17{width:18.792000px;}
._14{width:19.872000px;}
._a{width:21.329280px;}
._15{width:23.428800px;}
._18{width:25.243200px;}
._6{width:26.959680px;}
._16{width:29.520000px;}
._19{width:32.976000px;}
._1c{width:34.021440px;}
.fc2{color:rgb(124,166,184);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(125,166,185);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs1{font-size:119.520000px;}
.fs6{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.460000px;}
.y86{bottom:10.920000px;}
.y90{bottom:14.700000px;}
.y8c{bottom:14.880000px;}
.y8b{bottom:15.420000px;}
.y87{bottom:15.600000px;}
.y91{bottom:16.020000px;}
.y89{bottom:30.720000px;}
.y8e{bottom:31.860000px;}
.y1{bottom:52.500000px;}
.y2d{bottom:95.583000px;}
.y84{bottom:101.880000px;}
.y55{bottom:103.319700px;}
.yb8{bottom:105.818400px;}
.y2c{bottom:116.463000px;}
.y83{bottom:122.400000px;}
.yb7{bottom:123.100560px;}
.y54{bottom:124.199700px;}
.y2b{bottom:136.983000px;}
.yb6{bottom:140.382720px;}
.y82{bottom:154.800000px;}
.yb5{bottom:157.664880px;}
.y53{bottom:165.599700px;}
.yb4{bottom:174.947040px;}
.y2a{bottom:178.743000px;}
.yb3{bottom:192.229200px;}
.y81{bottom:194.040000px;}
.y52{bottom:206.999700px;}
.yb2{bottom:209.511360px;}
.y80{bottom:214.560000px;}
.y29{bottom:220.143000px;}
.yb1{bottom:226.793520px;}
.y51{bottom:227.519700px;}
.y7f{bottom:235.440000px;}
.y28{bottom:241.023000px;}
.yb0{bottom:244.075680px;}
.y50{bottom:248.399700px;}
.y7e{bottom:255.960000px;}
.yaf{bottom:261.357840px;}
.y27{bottom:261.543000px;}
.y4f{bottom:268.919700px;}
.y7d{bottom:276.840000px;}
.yae{bottom:278.640000px;}
.y26{bottom:282.423000px;}
.y4e{bottom:289.799700px;}
.y7c{bottom:297.360000px;}
.y25{bottom:302.943000px;}
.y4d{bottom:310.319700px;}
.y7b{bottom:318.240000px;}
.y24{bottom:323.823000px;}
.yad{bottom:325.440000px;}
.y4c{bottom:331.199700px;}
.y7a{bottom:338.760000px;}
.y23{bottom:344.343000px;}
.y4b{bottom:351.719700px;}
.y79{bottom:359.640000px;}
.yac{bottom:364.320000px;}
.y22{bottom:365.223000px;}
.y4a{bottom:372.599700px;}
.yab{bottom:385.200000px;}
.y21{bottom:385.743000px;}
.y78{bottom:391.680000px;}
.y49{bottom:393.119700px;}
.yaa{bottom:406.080000px;}
.y20{bottom:406.623000px;}
.ya9{bottom:426.600000px;}
.y1f{bottom:427.143000px;}
.y77{bottom:430.920000px;}
.y48{bottom:434.519700px;}
.ya8{bottom:447.480000px;}
.y1e{bottom:448.023000px;}
.y76{bottom:451.440000px;}
.y47{bottom:455.399700px;}
.ya7{bottom:468.000000px;}
.y1d{bottom:468.543000px;}
.y75{bottom:472.320000px;}
.y46{bottom:475.919700px;}
.ya6{bottom:488.880000px;}
.y1c{bottom:489.423000px;}
.y74{bottom:492.840000px;}
.y45{bottom:496.799700px;}
.ya5{bottom:509.400000px;}
.y1b{bottom:509.943000px;}
.y73{bottom:513.720000px;}
.y44{bottom:517.319700px;}
.ya4{bottom:530.280000px;}
.y1a{bottom:530.823000px;}
.y72{bottom:534.240000px;}
.y43{bottom:538.199700px;}
.ya3{bottom:550.800000px;}
.y19{bottom:551.343000px;}
.y71{bottom:555.120000px;}
.ya2{bottom:571.320000px;}
.y70{bottom:575.640000px;}
.y18{bottom:592.743000px;}
.y6f{bottom:596.520000px;}
.ya1{bottom:609.840000px;}
.y5f{bottom:621.359550px;}
.y6e{bottom:628.560000px;}
.y56{bottom:641.879550px;}
.y17{bottom:643.194840px;}
.y5a{bottom:644.039550px;}
.ya0{bottom:649.080000px;}
.y5e{bottom:653.759550px;}
.y6d{bottom:667.440000px;}
.y9f{bottom:669.600000px;}
.y16{bottom:670.916280px;}
.y5d{bottom:676.790190px;}
.y59{bottom:677.531070px;}
.y15{bottom:689.993400px;}
.y9e{bottom:690.480000px;}
.y61{bottom:696.233070px;}
.y58{bottom:700.561710px;}
.y5c{bottom:703.433070px;}
.y14{bottom:709.070520px;}
.y9d{bottom:711.000000px;}
.y8d{bottom:715.500000px;}
.y60{bottom:719.639550px;}
.y5b{bottom:726.839550px;}
.y57{bottom:727.559550px;}
.y13{bottom:728.147640px;}
.y9c{bottom:731.880000px;}
.yd0{bottom:740.116080px;}
.y12{bottom:746.860440px;}
.y8f{bottom:748.500000px;}
.y9b{bottom:752.400000px;}
.ycf{bottom:757.398240px;}
.y11{bottom:765.937560px;}
.y9a{bottom:773.280000px;}
.yce{bottom:774.680400px;}
.y88{bottom:780.000000px;}
.y10{bottom:785.014680px;}
.ycd{bottom:791.962560px;}
.y99{bottom:793.800000px;}
.yf{bottom:804.091800px;}
.ycc{bottom:809.244720px;}
.y8a{bottom:811.500000px;}
.y98{bottom:814.680000px;}
.ye{bottom:822.804600px;}
.ycb{bottom:826.526880px;}
.y97{bottom:835.200000px;}
.yd{bottom:841.881720px;}
.y85{bottom:843.000000px;}
.yca{bottom:843.446160px;}
.y42{bottom:844.199700px;}
.yc9{bottom:860.728320px;}
.yc{bottom:860.958840px;}
.y96{bottom:867.600000px;}
.yc8{bottom:878.010480px;}
.yb{bottom:879.671640px;}
.y41{bottom:885.959700px;}
.yc7{bottom:895.292640px;}
.ya{bottom:898.748760px;}
.y95{bottom:906.480000px;}
.y40{bottom:906.839700px;}
.yc6{bottom:912.574800px;}
.y9{bottom:917.825880px;}
.y6c{bottom:920.160000px;}
.y3f{bottom:927.359700px;}
.y94{bottom:927.360000px;}
.yc5{bottom:929.856960px;}
.y8{bottom:936.903000px;}
.y6b{bottom:945.720000px;}
.yc4{bottom:947.139120px;}
.y93{bottom:947.880000px;}
.y3e{bottom:948.239700px;}
.yc3{bottom:964.421280px;}
.y3d{bottom:968.759700px;}
.y92{bottom:968.760000px;}
.yc2{bottom:981.703440px;}
.y7{bottom:983.340840px;}
.y6a{bottom:989.280000px;}
.y3c{bottom:989.639700px;}
.yc1{bottom:998.985600px;}
.y6{bottom:1000.623000px;}
.y3b{bottom:1010.159700px;}
.y69{bottom:1010.160000px;}
.yc0{bottom:1016.267760px;}
.y5{bottom:1027.263000px;}
.y68{bottom:1030.680000px;}
.y3a{bottom:1031.039700px;}
.ybf{bottom:1033.549920px;}
.ybe{bottom:1050.469200px;}
.y39{bottom:1051.559700px;}
.y67{bottom:1051.560000px;}
.ybd{bottom:1067.751360px;}
.y4{bottom:1068.651840px;}
.y66{bottom:1072.080000px;}
.y38{bottom:1072.439700px;}
.ybc{bottom:1085.033520px;}
.y37{bottom:1092.959700px;}
.y65{bottom:1092.960000px;}
.ybb{bottom:1102.315680px;}
.y3{bottom:1103.223000px;}
.y64{bottom:1113.480000px;}
.y36{bottom:1113.839700px;}
.yba{bottom:1119.597840px;}
.y62{bottom:1134.359700px;}
.y63{bottom:1134.360000px;}
.yb9{bottom:1136.880000px;}
.y34{bottom:1179.270000px;}
.y32{bottom:1180.297500px;}
.y35{bottom:1189.440000px;}
.y2e{bottom:1191.157500px;}
.y31{bottom:1192.297500px;}
.y33{bottom:1195.089000px;}
.y30{bottom:1204.297500px;}
.y2f{bottom:1216.297500px;}
.h2{height:24.000000px;}
.h13{height:31.500000px;}
.h11{height:33.000000px;}
.ha{height:34.896000px;}
.he{height:37.994062px;}
.hc{height:38.556000px;}
.h9{height:40.824000px;}
.h6{height:41.993438px;}
.h14{height:42.022969px;}
.h7{height:46.025156px;}
.h3{height:48.550781px;}
.h10{height:48.761719px;}
.h5{height:48.796875px;}
.h8{height:50.027344px;}
.hd{height:55.296000px;}
.hf{height:56.808281px;}
.h12{height:64.500000px;}
.h4{height:81.002812px;}
.hb{height:122.808000px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w3{width:120.000000px;}
.w4{width:138.000000px;}
.w5{width:139.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:16.669950px;}
.x1c{left:22.777200px;}
.x20{left:38.260200px;}
.x1a{left:42.409050px;}
.x1f{left:46.823700px;}
.x1e{left:49.800000px;}
.x23{left:60.108900px;}
.x21{left:64.274700px;}
.x22{left:65.295150px;}
.xa{left:102.958500px;}
.x7{left:106.200000px;}
.x17{left:117.000000px;}
.xc{left:126.641400px;}
.x15{left:136.116000px;}
.xb{left:148.716000px;}
.xd{left:153.801300px;}
.x2{left:154.875450px;}
.xe{left:167.310660px;}
.x5{left:202.654950px;}
.x9{left:221.143500px;}
.x19{left:235.500000px;}
.x3{left:241.557330px;}
.x16{left:322.308000px;}
.xf{left:370.486500px;}
.x1b{left:373.500000px;}
.x6{left:383.626230px;}
.x10{left:397.356300px;}
.x4{left:407.382150px;}
.x11{left:410.865660px;}
.x1{left:430.500000px;}
.x1d{left:510.000000px;}
.x8{left:587.068500px;}
.x12{left:621.594750px;}
.x13{left:648.333300px;}
.x14{left:661.842660px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-2.374400pt;}
.ls20{letter-spacing:-1.425408pt;}
.ls34{letter-spacing:-1.365504pt;}
.ls36{letter-spacing:-1.349376pt;}
.ls32{letter-spacing:-1.344000pt;}
.ls16{letter-spacing:-1.333333pt;}
.ls39{letter-spacing:-1.333248pt;}
.ls33{letter-spacing:-1.331200pt;}
.ls31{letter-spacing:-1.324800pt;}
.ls3b{letter-spacing:-1.295616pt;}
.ls35{letter-spacing:-1.279488pt;}
.ls38{letter-spacing:-1.263360pt;}
.ls3d{letter-spacing:-1.225728pt;}
.ls37{letter-spacing:-1.209600pt;}
.ls3a{letter-spacing:-1.171968pt;}
.ls12{letter-spacing:-1.075200pt;}
.ls11{letter-spacing:-1.068800pt;}
.ls10{letter-spacing:-1.056000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls21{letter-spacing:-0.445440pt;}
.ls1e{letter-spacing:-0.418304pt;}
.ls9{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.223744pt;}
.ls14{letter-spacing:-0.208000pt;}
.lsf{letter-spacing:-0.176640pt;}
.lsa{letter-spacing:-0.141312pt;}
.ls23{letter-spacing:-0.135424pt;}
.lsb{letter-spacing:-0.111872pt;}
.lsd{letter-spacing:-0.105984pt;}
.lse{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.052992pt;}
.ls6{letter-spacing:-0.019200pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.148480pt;}
.ls1c{letter-spacing:0.170752pt;}
.ls0{letter-spacing:0.211968pt;}
.ls24{letter-spacing:0.215296pt;}
.ls1a{letter-spacing:0.244992pt;}
.ls22{letter-spacing:0.252416pt;}
.ls8{letter-spacing:0.254976pt;}
.ls27{letter-spacing:1.958400pt;}
.ls3{letter-spacing:2.072576pt;}
.ls2a{letter-spacing:2.240000pt;}
.ls2f{letter-spacing:3.010560pt;}
.ls1{letter-spacing:6.123520pt;}
.ls2{letter-spacing:7.065600pt;}
.ls4{letter-spacing:7.168000pt;}
.ls2d{letter-spacing:9.984000pt;}
.ls2c{letter-spacing:10.009600pt;}
.ls2b{letter-spacing:10.048000pt;}
.ls2e{letter-spacing:10.060800pt;}
.ls17{letter-spacing:10.368000pt;}
.ls18{letter-spacing:10.374400pt;}
.ls15{letter-spacing:10.666667pt;}
.ls19{letter-spacing:11.061760pt;}
.ls3c{letter-spacing:11.343360pt;}
.ls5{letter-spacing:11.797333pt;}
.ls25{letter-spacing:12.096000pt;}
.ls30{letter-spacing:14.085120pt;}
.ls26{letter-spacing:17.536000pt;}
.wsf{word-spacing:-399.573333pt;}
.ws11{word-spacing:-398.720000pt;}
.wsc{word-spacing:-93.696000pt;}
.ws9{word-spacing:-38.208000pt;}
.ws16{word-spacing:-17.030656pt;}
.ws15{word-spacing:-16.926720pt;}
.ws17{word-spacing:-16.012800pt;}
.ws8{word-spacing:-16.000000pt;}
.ws14{word-spacing:-14.944000pt;}
.ws1b{word-spacing:-14.924800pt;}
.ws1a{word-spacing:-14.668800pt;}
.ws19{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.649344pt;}
.ws6{word-spacing:-14.614016pt;}
.ws3{word-spacing:-14.608128pt;}
.ws5{word-spacing:-14.543360pt;}
.ws18{word-spacing:-13.625600pt;}
.ws1e{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.171200pt;}
.ws20{word-spacing:-12.230400pt;}
.ws22{word-spacing:-12.214272pt;}
.ws1c{word-spacing:-12.160512pt;}
.ws21{word-spacing:-12.144384pt;}
.ws1d{word-spacing:-12.106752pt;}
.ws23{word-spacing:-12.090624pt;}
.ws1f{word-spacing:-12.074496pt;}
.wsa{word-spacing:-10.922667pt;}
.wse{word-spacing:-10.917333pt;}
.ws12{word-spacing:-1.130667pt;}
.ws0{word-spacing:-0.044800pt;}
.ws13{word-spacing:-0.005333pt;}
.wsd{word-spacing:0.000000pt;}
.ws2{word-spacing:0.082432pt;}
.ws7{word-spacing:0.117760pt;}
.ws10{word-spacing:0.853333pt;}
.wsb{word-spacing:15.722667pt;}
._10{margin-left:-347.989333pt;}
._f{margin-left:-215.722667pt;}
._12{margin-left:-171.776000pt;}
._11{margin-left:-36.485333pt;}
._13{margin-left:-10.666589pt;}
._1b{margin-left:-1.965312pt;}
._0{margin-left:-0.956160pt;}
._1{width:0.913920pt;}
._7{width:2.531840pt;}
._8{width:3.473920pt;}
._9{width:4.592640pt;}
._b{width:5.492480pt;}
._3{width:6.667520pt;}
._2{width:7.713280pt;}
._c{width:9.438720pt;}
._4{width:11.069440pt;}
._5{width:12.075008pt;}
._d{width:13.652992pt;}
._e{width:14.745600pt;}
._1a{width:15.778560pt;}
._17{width:16.704000pt;}
._14{width:17.664000pt;}
._a{width:18.959360pt;}
._15{width:20.825600pt;}
._18{width:22.438400pt;}
._6{width:23.964160pt;}
._16{width:26.240000pt;}
._19{width:29.312000pt;}
._1c{width:30.241280pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs1{font-size:106.240000pt;}
.fs6{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.853333pt;}
.y86{bottom:9.706667pt;}
.y90{bottom:13.066667pt;}
.y8c{bottom:13.226667pt;}
.y8b{bottom:13.706667pt;}
.y87{bottom:13.866667pt;}
.y91{bottom:14.240000pt;}
.y89{bottom:27.306667pt;}
.y8e{bottom:28.320000pt;}
.y1{bottom:46.666667pt;}
.y2d{bottom:84.962667pt;}
.y84{bottom:90.560000pt;}
.y55{bottom:91.839733pt;}
.yb8{bottom:94.060800pt;}
.y2c{bottom:103.522667pt;}
.y83{bottom:108.800000pt;}
.yb7{bottom:109.422720pt;}
.y54{bottom:110.399733pt;}
.y2b{bottom:121.762667pt;}
.yb6{bottom:124.784640pt;}
.y82{bottom:137.600000pt;}
.yb5{bottom:140.146560pt;}
.y53{bottom:147.199733pt;}
.yb4{bottom:155.508480pt;}
.y2a{bottom:158.882667pt;}
.yb3{bottom:170.870400pt;}
.y81{bottom:172.480000pt;}
.y52{bottom:183.999733pt;}
.yb2{bottom:186.232320pt;}
.y80{bottom:190.720000pt;}
.y29{bottom:195.682667pt;}
.yb1{bottom:201.594240pt;}
.y51{bottom:202.239733pt;}
.y7f{bottom:209.280000pt;}
.y28{bottom:214.242667pt;}
.yb0{bottom:216.956160pt;}
.y50{bottom:220.799733pt;}
.y7e{bottom:227.520000pt;}
.yaf{bottom:232.318080pt;}
.y27{bottom:232.482667pt;}
.y4f{bottom:239.039733pt;}
.y7d{bottom:246.080000pt;}
.yae{bottom:247.680000pt;}
.y26{bottom:251.042667pt;}
.y4e{bottom:257.599733pt;}
.y7c{bottom:264.320000pt;}
.y25{bottom:269.282667pt;}
.y4d{bottom:275.839733pt;}
.y7b{bottom:282.880000pt;}
.y24{bottom:287.842667pt;}
.yad{bottom:289.280000pt;}
.y4c{bottom:294.399733pt;}
.y7a{bottom:301.120000pt;}
.y23{bottom:306.082667pt;}
.y4b{bottom:312.639733pt;}
.y79{bottom:319.680000pt;}
.yac{bottom:323.840000pt;}
.y22{bottom:324.642667pt;}
.y4a{bottom:331.199733pt;}
.yab{bottom:342.400000pt;}
.y21{bottom:342.882667pt;}
.y78{bottom:348.160000pt;}
.y49{bottom:349.439733pt;}
.yaa{bottom:360.960000pt;}
.y20{bottom:361.442667pt;}
.ya9{bottom:379.200000pt;}
.y1f{bottom:379.682667pt;}
.y77{bottom:383.040000pt;}
.y48{bottom:386.239733pt;}
.ya8{bottom:397.760000pt;}
.y1e{bottom:398.242667pt;}
.y76{bottom:401.280000pt;}
.y47{bottom:404.799733pt;}
.ya7{bottom:416.000000pt;}
.y1d{bottom:416.482667pt;}
.y75{bottom:419.840000pt;}
.y46{bottom:423.039733pt;}
.ya6{bottom:434.560000pt;}
.y1c{bottom:435.042667pt;}
.y74{bottom:438.080000pt;}
.y45{bottom:441.599733pt;}
.ya5{bottom:452.800000pt;}
.y1b{bottom:453.282667pt;}
.y73{bottom:456.640000pt;}
.y44{bottom:459.839733pt;}
.ya4{bottom:471.360000pt;}
.y1a{bottom:471.842667pt;}
.y72{bottom:474.880000pt;}
.y43{bottom:478.399733pt;}
.ya3{bottom:489.600000pt;}
.y19{bottom:490.082667pt;}
.y71{bottom:493.440000pt;}
.ya2{bottom:507.840000pt;}
.y70{bottom:511.680000pt;}
.y18{bottom:526.882667pt;}
.y6f{bottom:530.240000pt;}
.ya1{bottom:542.080000pt;}
.y5f{bottom:552.319600pt;}
.y6e{bottom:558.720000pt;}
.y56{bottom:570.559600pt;}
.y17{bottom:571.728747pt;}
.y5a{bottom:572.479600pt;}
.ya0{bottom:576.960000pt;}
.y5e{bottom:581.119600pt;}
.y6d{bottom:593.280000pt;}
.y9f{bottom:595.200000pt;}
.y16{bottom:596.370027pt;}
.y5d{bottom:601.591280pt;}
.y59{bottom:602.249840pt;}
.y15{bottom:613.327467pt;}
.y9e{bottom:613.760000pt;}
.y61{bottom:618.873840pt;}
.y58{bottom:622.721520pt;}
.y5c{bottom:625.273840pt;}
.y14{bottom:630.284907pt;}
.y9d{bottom:632.000000pt;}
.y8d{bottom:636.000000pt;}
.y60{bottom:639.679600pt;}
.y5b{bottom:646.079600pt;}
.y57{bottom:646.719600pt;}
.y13{bottom:647.242347pt;}
.y9c{bottom:650.560000pt;}
.yd0{bottom:657.880960pt;}
.y12{bottom:663.875947pt;}
.y8f{bottom:665.333333pt;}
.y9b{bottom:668.800000pt;}
.ycf{bottom:673.242880pt;}
.y11{bottom:680.833387pt;}
.y9a{bottom:687.360000pt;}
.yce{bottom:688.604800pt;}
.y88{bottom:693.333333pt;}
.y10{bottom:697.790827pt;}
.ycd{bottom:703.966720pt;}
.y99{bottom:705.600000pt;}
.yf{bottom:714.748267pt;}
.ycc{bottom:719.328640pt;}
.y8a{bottom:721.333333pt;}
.y98{bottom:724.160000pt;}
.ye{bottom:731.381867pt;}
.ycb{bottom:734.690560pt;}
.y97{bottom:742.400000pt;}
.yd{bottom:748.339307pt;}
.y85{bottom:749.333333pt;}
.yca{bottom:749.729920pt;}
.y42{bottom:750.399733pt;}
.yc9{bottom:765.091840pt;}
.yc{bottom:765.296747pt;}
.y96{bottom:771.200000pt;}
.yc8{bottom:780.453760pt;}
.yb{bottom:781.930347pt;}
.y41{bottom:787.519733pt;}
.yc7{bottom:795.815680pt;}
.ya{bottom:798.887787pt;}
.y95{bottom:805.760000pt;}
.y40{bottom:806.079733pt;}
.yc6{bottom:811.177600pt;}
.y9{bottom:815.845227pt;}
.y6c{bottom:817.920000pt;}
.y3f{bottom:824.319733pt;}
.y94{bottom:824.320000pt;}
.yc5{bottom:826.539520pt;}
.y8{bottom:832.802667pt;}
.y6b{bottom:840.640000pt;}
.yc4{bottom:841.901440pt;}
.y93{bottom:842.560000pt;}
.y3e{bottom:842.879733pt;}
.yc3{bottom:857.263360pt;}
.y3d{bottom:861.119733pt;}
.y92{bottom:861.120000pt;}
.yc2{bottom:872.625280pt;}
.y7{bottom:874.080747pt;}
.y6a{bottom:879.360000pt;}
.y3c{bottom:879.679733pt;}
.yc1{bottom:887.987200pt;}
.y6{bottom:889.442667pt;}
.y3b{bottom:897.919733pt;}
.y69{bottom:897.920000pt;}
.yc0{bottom:903.349120pt;}
.y5{bottom:913.122667pt;}
.y68{bottom:916.160000pt;}
.y3a{bottom:916.479733pt;}
.ybf{bottom:918.711040pt;}
.ybe{bottom:933.750400pt;}
.y39{bottom:934.719733pt;}
.y67{bottom:934.720000pt;}
.ybd{bottom:949.112320pt;}
.y4{bottom:949.912747pt;}
.y66{bottom:952.960000pt;}
.y38{bottom:953.279733pt;}
.ybc{bottom:964.474240pt;}
.y37{bottom:971.519733pt;}
.y65{bottom:971.520000pt;}
.ybb{bottom:979.836160pt;}
.y3{bottom:980.642667pt;}
.y64{bottom:989.760000pt;}
.y36{bottom:990.079733pt;}
.yba{bottom:995.198080pt;}
.y62{bottom:1008.319733pt;}
.y63{bottom:1008.320000pt;}
.yb9{bottom:1010.560000pt;}
.y34{bottom:1048.240000pt;}
.y32{bottom:1049.153333pt;}
.y35{bottom:1057.280000pt;}
.y2e{bottom:1058.806667pt;}
.y31{bottom:1059.820000pt;}
.y33{bottom:1062.301333pt;}
.y30{bottom:1070.486667pt;}
.y2f{bottom:1081.153333pt;}
.h2{height:21.333333pt;}
.h13{height:28.000000pt;}
.h11{height:29.333333pt;}
.ha{height:31.018667pt;}
.he{height:33.772500pt;}
.hc{height:34.272000pt;}
.h9{height:36.288000pt;}
.h6{height:37.327500pt;}
.h14{height:37.353750pt;}
.h7{height:40.911250pt;}
.h3{height:43.156250pt;}
.h10{height:43.343750pt;}
.h5{height:43.375000pt;}
.h8{height:44.468750pt;}
.hd{height:49.152000pt;}
.hf{height:50.496250pt;}
.h12{height:57.333333pt;}
.h4{height:72.002500pt;}
.hb{height:109.162667pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w3{width:106.666667pt;}
.w4{width:122.666667pt;}
.w5{width:124.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:14.817733pt;}
.x1c{left:20.246400pt;}
.x20{left:34.009067pt;}
.x1a{left:37.696933pt;}
.x1f{left:41.621067pt;}
.x1e{left:44.266667pt;}
.x23{left:53.430133pt;}
.x21{left:57.133067pt;}
.x22{left:58.040133pt;}
.xa{left:91.518667pt;}
.x7{left:94.400000pt;}
.x17{left:104.000000pt;}
.xc{left:112.570133pt;}
.x15{left:120.992000pt;}
.xb{left:132.192000pt;}
.xd{left:136.712267pt;}
.x2{left:137.667067pt;}
.xe{left:148.720587pt;}
.x5{left:180.137733pt;}
.x9{left:196.572000pt;}
.x19{left:209.333333pt;}
.x3{left:214.717627pt;}
.x16{left:286.496000pt;}
.xf{left:329.321333pt;}
.x1b{left:332.000000pt;}
.x6{left:341.001093pt;}
.x10{left:353.205600pt;}
.x4{left:362.117467pt;}
.x11{left:365.213920pt;}
.x1{left:382.666667pt;}
.x1d{left:453.333333pt;}
.x8{left:521.838667pt;}
.x12{left:552.528667pt;}
.x13{left:576.296267pt;}
.x14{left:588.304587pt;}
}




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