
    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_eaa7d117b4bc889ff9d21894.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915000;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_ef258eeaeef6b63369a9711c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_0e1b57733298c3468dd36fe5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_e13db29a0670ff4f4a290bcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915000;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_6df48abeb93cdac60a9d45cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904000;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_85cd982b38270fcc6f8cc518.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116000;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_a9cb440497c18a6edd7acdb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_6688be8812e24337533d1814.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_e13db29a0670ff4f4a290bcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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_e13db29a0670ff4f4a290bcf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_c8c35027a857f79982452a54.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;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_0be90e8b5e89ff57a70780e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.085000;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_7b2f7cc1638abb5ed02bc870.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.907000;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_185faa785a63618489b00ad5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_f4ad21fc3d299775a75ec28d.woff2')format("woff");}.fff{font-family:fff;line-height:1.097000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.110200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:51.777600px;}
.ls8{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:4.824000px;}
.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;}
}
.ws79{word-spacing:-120.600000px;}
.ws6c{word-spacing:-72.360000px;}
.ws0{word-spacing:-50.040000px;}
.ws5a{word-spacing:-20.376000px;}
.ws88{word-spacing:-20.016000px;}
.ws7b{word-spacing:-19.368000px;}
.ws81{word-spacing:-19.296000px;}
.ws7a{word-spacing:-19.080000px;}
.ws89{word-spacing:-14.011200px;}
.ws1{word-spacing:-6.840000px;}
.ws1e{word-spacing:-4.740000px;}
.ws8b{word-spacing:-4.608000px;}
.ws86{word-spacing:-3.600000px;}
.ws78{word-spacing:-3.528000px;}
.ws26{word-spacing:-3.312000px;}
.ws53{word-spacing:-3.240000px;}
.ws39{word-spacing:-3.096000px;}
.ws44{word-spacing:-3.024000px;}
.wsc{word-spacing:-3.000000px;}
.ws28{word-spacing:-2.952000px;}
.ws15{word-spacing:-2.460000px;}
.ws73{word-spacing:-2.304000px;}
.ws2f{word-spacing:-2.232000px;}
.ws5f{word-spacing:-2.160000px;}
.ws32{word-spacing:-2.088000px;}
.ws63{word-spacing:-1.944000px;}
.ws5d{word-spacing:-1.872000px;}
.ws87{word-spacing:-1.800000px;}
.ws55{word-spacing:-1.728000px;}
.ws83{word-spacing:-1.656000px;}
.wse{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.368000px;}
.ws4a{word-spacing:-1.296000px;}
.ws6e{word-spacing:-1.080000px;}
.ws54{word-spacing:-0.864000px;}
.ws61{word-spacing:-0.792000px;}
.ws3b{word-spacing:-0.720000px;}
.ws7f{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.600000px;}
.ws40{word-spacing:-0.576000px;}
.ws27{word-spacing:-0.504000px;}
.ws72{word-spacing:-0.432000px;}
.ws5{word-spacing:-0.420000px;}
.ws24{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.240000px;}
.ws4f{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws6b{word-spacing:0.144000px;}
.ws29{word-spacing:0.216000px;}
.ws43{word-spacing:0.432000px;}
.ws37{word-spacing:0.504000px;}
.ws3e{word-spacing:0.576000px;}
.ws18{word-spacing:0.600000px;}
.ws33{word-spacing:0.720000px;}
.ws64{word-spacing:0.936000px;}
.ws3a{word-spacing:1.080000px;}
.ws80{word-spacing:1.296000px;}
.ws62{word-spacing:1.368000px;}
.ws2e{word-spacing:1.512000px;}
.ws22{word-spacing:1.584000px;}
.ws2d{word-spacing:1.656000px;}
.ws84{word-spacing:1.728000px;}
.ws1f{word-spacing:1.800000px;}
.wsb{word-spacing:1.860000px;}
.ws46{word-spacing:1.872000px;}
.ws3c{word-spacing:1.944000px;}
.ws67{word-spacing:2.016000px;}
.wsd{word-spacing:2.100000px;}
.ws2b{word-spacing:2.160000px;}
.ws8a{word-spacing:2.232000px;}
.ws6{word-spacing:2.280000px;}
.ws4c{word-spacing:2.304000px;}
.ws36{word-spacing:2.448000px;}
.ws71{word-spacing:2.592000px;}
.ws35{word-spacing:2.736000px;}
.ws68{word-spacing:2.808000px;}
.ws21{word-spacing:2.940000px;}
.ws56{word-spacing:2.952000px;}
.ws69{word-spacing:3.024000px;}
.ws31{word-spacing:3.168000px;}
.ws58{word-spacing:3.240000px;}
.ws25{word-spacing:3.456000px;}
.ws6a{word-spacing:3.528000px;}
.ws51{word-spacing:3.600000px;}
.ws3d{word-spacing:3.672000px;}
.ws49{word-spacing:3.744000px;}
.ws2a{word-spacing:3.816000px;}
.ws4b{word-spacing:3.888000px;}
.ws45{word-spacing:3.960000px;}
.ws5c{word-spacing:4.032000px;}
.ws4d{word-spacing:4.104000px;}
.ws34{word-spacing:4.248000px;}
.ws1c{word-spacing:4.380000px;}
.ws7c{word-spacing:4.392000px;}
.ws65{word-spacing:4.464000px;}
.ws38{word-spacing:4.536000px;}
.ws5e{word-spacing:4.608000px;}
.ws41{word-spacing:4.680000px;}
.ws77{word-spacing:4.968000px;}
.ws5b{word-spacing:5.040000px;}
.ws74{word-spacing:5.400000px;}
.ws42{word-spacing:5.688000px;}
.ws1b{word-spacing:5.760000px;}
.ws6d{word-spacing:5.832000px;}
.ws1d{word-spacing:5.880000px;}
.ws57{word-spacing:5.976000px;}
.ws76{word-spacing:6.048000px;}
.ws7e{word-spacing:6.120000px;}
.ws4e{word-spacing:6.480000px;}
.ws3f{word-spacing:6.552000px;}
.ws50{word-spacing:6.696000px;}
.ws6f{word-spacing:6.768000px;}
.ws19{word-spacing:6.780000px;}
.ws48{word-spacing:7.056000px;}
.ws85{word-spacing:7.200000px;}
.ws60{word-spacing:7.488000px;}
.ws7d{word-spacing:8.208000px;}
.ws82{word-spacing:8.352000px;}
.ws14{word-spacing:8.640000px;}
.ws75{word-spacing:8.712000px;}
.ws30{word-spacing:8.784000px;}
.ws52{word-spacing:8.928000px;}
.ws8{word-spacing:10.140000px;}
.ws47{word-spacing:10.440000px;}
.wsf{word-spacing:10.800000px;}
.ws8c{word-spacing:12.672000px;}
.ws9{word-spacing:13.260000px;}
.ws70{word-spacing:13.752000px;}
.ws11{word-spacing:15.960000px;}
.ws13{word-spacing:16.080000px;}
.wsa{word-spacing:17.640000px;}
.ws12{word-spacing:17.700000px;}
.ws7{word-spacing:18.360000px;}
.ws10{word-spacing:18.960000px;}
.ws17{word-spacing:22.680000px;}
.ws16{word-spacing:29.820000px;}
.ws4{word-spacing:103.359000px;}
._13{margin-left:-19.425600px;}
._16{margin-left:-11.520000px;}
._11{margin-left:-9.583200px;}
._f{margin-left:-7.867200px;}
._1{margin-left:-6.840000px;}
._10{margin-left:-4.852800px;}
._d{margin-left:-3.546000px;}
._0{margin-left:-2.160000px;}
._3{margin-left:-1.008000px;}
._5{width:1.740000px;}
._4{width:3.432000px;}
._12{width:4.560000px;}
._8{width:5.676000px;}
._7{width:7.230000px;}
._9{width:8.484000px;}
._6{width:10.314000px;}
._15{width:11.497200px;}
._14{width:12.780000px;}
._b{width:18.408000px;}
._c{width:20.184000px;}
._a{width:24.168000px;}
._e{width:33.150000px;}
._2{width:182.894400px;}
.fc4{color:rgb(236,0,140);}
.fc3{color:rgb(48,79,170);}
.fc2{color:rgb(247,144,63);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:50.400000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:132.000000px;}
.fs7{font-size:144.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:68.417400px;}
.y10{bottom:68.479350px;}
.y2f{bottom:69.480300px;}
.ye{bottom:73.275600px;}
.y2d{bottom:73.472850px;}
.yf{bottom:73.534950px;}
.y2e{bottom:87.480300px;}
.yd{bottom:94.275600px;}
.yc{bottom:115.275600px;}
.yb{bottom:136.275600px;}
.y62{bottom:157.263600px;}
.y8a{bottom:157.269600px;}
.ya2{bottom:157.269750px;}
.ya{bottom:157.275600px;}
.y76{bottom:167.757600px;}
.y82{bottom:167.769600px;}
.ya9{bottom:178.269600px;}
.y9{bottom:178.275600px;}
.y61{bottom:188.763600px;}
.y89{bottom:188.769600px;}
.ya1{bottom:188.769750px;}
.y45{bottom:188.775600px;}
.y75{bottom:199.257600px;}
.y81{bottom:199.269600px;}
.ya8{bottom:209.769600px;}
.y73{bottom:209.775600px;}
.y60{bottom:220.263600px;}
.y88{bottom:220.269600px;}
.ya0{bottom:220.269750px;}
.y44{bottom:220.275600px;}
.y74{bottom:230.757600px;}
.y80{bottom:230.769600px;}
.ya7{bottom:241.269600px;}
.y72{bottom:241.275600px;}
.y5f{bottom:251.763600px;}
.y87{bottom:251.769600px;}
.y9f{bottom:251.769750px;}
.y43{bottom:251.775600px;}
.y7f{bottom:262.269600px;}
.ya6{bottom:272.769600px;}
.y71{bottom:272.775600px;}
.y5e{bottom:283.263600px;}
.y9e{bottom:283.269750px;}
.y42{bottom:283.275600px;}
.y7e{bottom:293.769600px;}
.yc2{bottom:293.775600px;}
.ya5{bottom:304.269600px;}
.y70{bottom:304.275600px;}
.y5d{bottom:314.763600px;}
.y9d{bottom:314.769750px;}
.y41{bottom:314.775600px;}
.y7d{bottom:325.269600px;}
.yc1{bottom:325.275600px;}
.ya4{bottom:335.769600px;}
.y86{bottom:335.775600px;}
.y5c{bottom:346.263600px;}
.y9c{bottom:346.269750px;}
.y40{bottom:346.275600px;}
.y7c{bottom:356.769600px;}
.ya3{bottom:367.269600px;}
.y85{bottom:367.275600px;}
.y5b{bottom:377.763600px;}
.y9b{bottom:377.769750px;}
.y3f{bottom:377.775600px;}
.y7b{bottom:388.269600px;}
.y90{bottom:398.769600px;}
.y5a{bottom:409.263600px;}
.y9a{bottom:409.269750px;}
.y3e{bottom:409.275600px;}
.y7a{bottom:419.769600px;}
.y8f{bottom:430.269600px;}
.yc9{bottom:430.275600px;}
.y59{bottom:440.763600px;}
.y3d{bottom:440.775600px;}
.y79{bottom:451.269600px;}
.y8e{bottom:461.769600px;}
.yc0{bottom:461.775600px;}
.y99{bottom:461.775750px;}
.y58{bottom:472.263600px;}
.y3c{bottom:472.275600px;}
.y78{bottom:482.769600px;}
.y8d{bottom:493.269600px;}
.yc8{bottom:493.275600px;}
.y98{bottom:493.275750px;}
.y57{bottom:503.763600px;}
.y29{bottom:503.775450px;}
.y3b{bottom:503.775600px;}
.y77{bottom:514.269600px;}
.y6e{bottom:514.275600px;}
.y8c{bottom:524.769600px;}
.y28{bottom:524.775450px;}
.y97{bottom:524.775750px;}
.y56{bottom:535.263600px;}
.y3a{bottom:535.275600px;}
.y27{bottom:545.775450px;}
.ybf{bottom:545.775600px;}
.yb4{bottom:556.263600px;}
.y8b{bottom:556.269600px;}
.y96{bottom:556.275750px;}
.y55{bottom:566.763600px;}
.y2b{bottom:566.775450px;}
.y39{bottom:566.775600px;}
.y26{bottom:577.275450px;}
.yc7{bottom:577.275600px;}
.y6d{bottom:587.769600px;}
.y95{bottom:587.775750px;}
.y54{bottom:598.263600px;}
.y8{bottom:598.275600px;}
.yb3{bottom:608.769600px;}
.y6c{bottom:619.269600px;}
.y2a{bottom:619.275450px;}
.y94{bottom:619.275750px;}
.y53{bottom:629.763600px;}
.y25{bottom:629.775450px;}
.y7{bottom:629.775600px;}
.yb2{bottom:640.269600px;}
.yb8{bottom:640.275600px;}
.y6b{bottom:650.769600px;}
.y24{bottom:650.775450px;}
.ybe{bottom:650.775600px;}
.y93{bottom:650.775750px;}
.y52{bottom:661.263600px;}
.y6{bottom:661.275600px;}
.yb1{bottom:671.769600px;}
.y23{bottom:671.775450px;}
.yb7{bottom:671.775600px;}
.y6a{bottom:682.269600px;}
.ybd{bottom:682.275600px;}
.y92{bottom:682.275750px;}
.y22{bottom:692.775450px;}
.y38{bottom:692.775600px;}
.yb0{bottom:703.269600px;}
.yb6{bottom:703.275600px;}
.y5{bottom:713.766600px;}
.y51{bottom:713.769600px;}
.y21{bottom:713.775450px;}
.yc6{bottom:713.775600px;}
.y37{bottom:724.275600px;}
.yaf{bottom:734.769600px;}
.y20{bottom:734.775450px;}
.yb5{bottom:734.775600px;}
.y50{bottom:745.269600px;}
.ybc{bottom:745.275600px;}
.y91{bottom:745.275750px;}
.y6f{bottom:755.763600px;}
.y1f{bottom:755.775450px;}
.y4{bottom:755.775600px;}
.yae{bottom:766.269600px;}
.y84{bottom:766.275600px;}
.y4f{bottom:776.769600px;}
.y1e{bottom:776.775450px;}
.ycc{bottom:776.775600px;}
.y36{bottom:787.275600px;}
.yad{bottom:797.769600px;}
.y1d{bottom:797.775450px;}
.y83{bottom:797.775600px;}
.y4e{bottom:808.269600px;}
.y1c{bottom:818.775450px;}
.y35{bottom:818.775600px;}
.ybb{bottom:829.257600px;}
.ycb{bottom:829.269600px;}
.y69{bottom:829.275600px;}
.y4d{bottom:839.769600px;}
.y1b{bottom:839.775450px;}
.y34{bottom:850.275600px;}
.yba{bottom:860.757600px;}
.yca{bottom:860.769600px;}
.y1a{bottom:860.775450px;}
.y68{bottom:860.775600px;}
.y4c{bottom:871.269600px;}
.y19{bottom:881.775450px;}
.y33{bottom:881.775600px;}
.y67{bottom:892.275600px;}
.y4b{bottom:902.769600px;}
.y18{bottom:902.775450px;}
.yb9{bottom:913.263600px;}
.yac{bottom:913.275600px;}
.y17{bottom:923.775450px;}
.y66{bottom:923.775600px;}
.y4a{bottom:934.269600px;}
.yc5{bottom:934.275600px;}
.y16{bottom:944.775450px;}
.y32{bottom:944.775600px;}
.y65{bottom:955.275600px;}
.y49{bottom:965.769600px;}
.y15{bottom:965.775450px;}
.yc4{bottom:965.775600px;}
.yab{bottom:976.275600px;}
.y14{bottom:986.775450px;}
.y64{bottom:986.775600px;}
.y48{bottom:997.269600px;}
.yc3{bottom:997.275600px;}
.y3{bottom:1000.165500px;}
.y13{bottom:1007.775450px;}
.y63{bottom:1018.275600px;}
.y12{bottom:1028.775450px;}
.y31{bottom:1028.787600px;}
.y2{bottom:1037.760750px;}
.yaa{bottom:1039.275600px;}
.y47{bottom:1049.775600px;}
.y11{bottom:1081.275450px;}
.y30{bottom:1081.275600px;}
.y1{bottom:1091.760750px;}
.y2c{bottom:1183.775250px;}
.h6{height:43.860000px;}
.ha{height:52.560000px;}
.hd{height:52.632000px;}
.h9{height:55.200000px;}
.h8{height:59.976000px;}
.h3{height:61.404000px;}
.h10{height:65.448000px;}
.h11{height:65.472000px;}
.he{height:66.240000px;}
.h5{height:70.176000px;}
.hc{height:87.720000px;}
.h7{height:95.637600px;}
.hf{height:95.638200px;}
.h4{height:96.492000px;}
.hb{height:105.264000px;}
.h2{height:131.580000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:126.809100px;}
.x1{left:127.996050px;}
.xb{left:133.396500px;}
.x6{left:136.308900px;}
.x10{left:148.818900px;}
.x8{left:150.026700px;}
.x12{left:169.641750px;}
.xf{left:170.704800px;}
.x7{left:191.338650px;}
.xe{left:198.748200px;}
.x11{left:212.154000px;}
.x2{left:382.114650px;}
.xd{left:399.733200px;}
.x9{left:468.361950px;}
.x3{left:485.125950px;}
.xa{left:489.621750px;}
.x4{left:502.055250px;}
.x5{left:541.808250px;}
.xc{left:731.584500px;}
@media print{
.v1{vertical-align:-4.542400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:46.024533pt;}
.ls8{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:4.288000pt;}
.ws79{word-spacing:-107.200000pt;}
.ws6c{word-spacing:-64.320000pt;}
.ws0{word-spacing:-44.480000pt;}
.ws5a{word-spacing:-18.112000pt;}
.ws88{word-spacing:-17.792000pt;}
.ws7b{word-spacing:-17.216000pt;}
.ws81{word-spacing:-17.152000pt;}
.ws7a{word-spacing:-16.960000pt;}
.ws89{word-spacing:-12.454400pt;}
.ws1{word-spacing:-6.080000pt;}
.ws1e{word-spacing:-4.213333pt;}
.ws8b{word-spacing:-4.096000pt;}
.ws86{word-spacing:-3.200000pt;}
.ws78{word-spacing:-3.136000pt;}
.ws26{word-spacing:-2.944000pt;}
.ws53{word-spacing:-2.880000pt;}
.ws39{word-spacing:-2.752000pt;}
.ws44{word-spacing:-2.688000pt;}
.wsc{word-spacing:-2.666667pt;}
.ws28{word-spacing:-2.624000pt;}
.ws15{word-spacing:-2.186667pt;}
.ws73{word-spacing:-2.048000pt;}
.ws2f{word-spacing:-1.984000pt;}
.ws5f{word-spacing:-1.920000pt;}
.ws32{word-spacing:-1.856000pt;}
.ws63{word-spacing:-1.728000pt;}
.ws5d{word-spacing:-1.664000pt;}
.ws87{word-spacing:-1.600000pt;}
.ws55{word-spacing:-1.536000pt;}
.ws83{word-spacing:-1.472000pt;}
.wse{word-spacing:-1.440000pt;}
.ws66{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.216000pt;}
.ws4a{word-spacing:-1.152000pt;}
.ws6e{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.768000pt;}
.ws61{word-spacing:-0.704000pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws7f{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.533333pt;}
.ws40{word-spacing:-0.512000pt;}
.ws27{word-spacing:-0.448000pt;}
.ws72{word-spacing:-0.384000pt;}
.ws5{word-spacing:-0.373333pt;}
.ws24{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.213333pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.128000pt;}
.ws29{word-spacing:0.192000pt;}
.ws43{word-spacing:0.384000pt;}
.ws37{word-spacing:0.448000pt;}
.ws3e{word-spacing:0.512000pt;}
.ws18{word-spacing:0.533333pt;}
.ws33{word-spacing:0.640000pt;}
.ws64{word-spacing:0.832000pt;}
.ws3a{word-spacing:0.960000pt;}
.ws80{word-spacing:1.152000pt;}
.ws62{word-spacing:1.216000pt;}
.ws2e{word-spacing:1.344000pt;}
.ws22{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.472000pt;}
.ws84{word-spacing:1.536000pt;}
.ws1f{word-spacing:1.600000pt;}
.wsb{word-spacing:1.653333pt;}
.ws46{word-spacing:1.664000pt;}
.ws3c{word-spacing:1.728000pt;}
.ws67{word-spacing:1.792000pt;}
.wsd{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.920000pt;}
.ws8a{word-spacing:1.984000pt;}
.ws6{word-spacing:2.026667pt;}
.ws4c{word-spacing:2.048000pt;}
.ws36{word-spacing:2.176000pt;}
.ws71{word-spacing:2.304000pt;}
.ws35{word-spacing:2.432000pt;}
.ws68{word-spacing:2.496000pt;}
.ws21{word-spacing:2.613333pt;}
.ws56{word-spacing:2.624000pt;}
.ws69{word-spacing:2.688000pt;}
.ws31{word-spacing:2.816000pt;}
.ws58{word-spacing:2.880000pt;}
.ws25{word-spacing:3.072000pt;}
.ws6a{word-spacing:3.136000pt;}
.ws51{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.264000pt;}
.ws49{word-spacing:3.328000pt;}
.ws2a{word-spacing:3.392000pt;}
.ws4b{word-spacing:3.456000pt;}
.ws45{word-spacing:3.520000pt;}
.ws5c{word-spacing:3.584000pt;}
.ws4d{word-spacing:3.648000pt;}
.ws34{word-spacing:3.776000pt;}
.ws1c{word-spacing:3.893333pt;}
.ws7c{word-spacing:3.904000pt;}
.ws65{word-spacing:3.968000pt;}
.ws38{word-spacing:4.032000pt;}
.ws5e{word-spacing:4.096000pt;}
.ws41{word-spacing:4.160000pt;}
.ws77{word-spacing:4.416000pt;}
.ws5b{word-spacing:4.480000pt;}
.ws74{word-spacing:4.800000pt;}
.ws42{word-spacing:5.056000pt;}
.ws1b{word-spacing:5.120000pt;}
.ws6d{word-spacing:5.184000pt;}
.ws1d{word-spacing:5.226667pt;}
.ws57{word-spacing:5.312000pt;}
.ws76{word-spacing:5.376000pt;}
.ws7e{word-spacing:5.440000pt;}
.ws4e{word-spacing:5.760000pt;}
.ws3f{word-spacing:5.824000pt;}
.ws50{word-spacing:5.952000pt;}
.ws6f{word-spacing:6.016000pt;}
.ws19{word-spacing:6.026667pt;}
.ws48{word-spacing:6.272000pt;}
.ws85{word-spacing:6.400000pt;}
.ws60{word-spacing:6.656000pt;}
.ws7d{word-spacing:7.296000pt;}
.ws82{word-spacing:7.424000pt;}
.ws14{word-spacing:7.680000pt;}
.ws75{word-spacing:7.744000pt;}
.ws30{word-spacing:7.808000pt;}
.ws52{word-spacing:7.936000pt;}
.ws8{word-spacing:9.013333pt;}
.ws47{word-spacing:9.280000pt;}
.wsf{word-spacing:9.600000pt;}
.ws8c{word-spacing:11.264000pt;}
.ws9{word-spacing:11.786667pt;}
.ws70{word-spacing:12.224000pt;}
.ws11{word-spacing:14.186667pt;}
.ws13{word-spacing:14.293333pt;}
.wsa{word-spacing:15.680000pt;}
.ws12{word-spacing:15.733333pt;}
.ws7{word-spacing:16.320000pt;}
.ws10{word-spacing:16.853333pt;}
.ws17{word-spacing:20.160000pt;}
.ws16{word-spacing:26.506667pt;}
.ws4{word-spacing:91.874667pt;}
._13{margin-left:-17.267200pt;}
._16{margin-left:-10.240000pt;}
._11{margin-left:-8.518400pt;}
._f{margin-left:-6.993067pt;}
._1{margin-left:-6.080000pt;}
._10{margin-left:-4.313600pt;}
._d{margin-left:-3.152000pt;}
._0{margin-left:-1.920000pt;}
._3{margin-left:-0.896000pt;}
._5{width:1.546667pt;}
._4{width:3.050667pt;}
._12{width:4.053333pt;}
._8{width:5.045333pt;}
._7{width:6.426667pt;}
._9{width:7.541333pt;}
._6{width:9.168000pt;}
._15{width:10.219733pt;}
._14{width:11.360000pt;}
._b{width:16.362667pt;}
._c{width:17.941333pt;}
._a{width:21.482667pt;}
._e{width:29.466667pt;}
._2{width:162.572800pt;}
.fs8{font-size:44.800000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:117.333333pt;}
.fs7{font-size:128.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:60.815467pt;}
.y10{bottom:60.870533pt;}
.y2f{bottom:61.760267pt;}
.ye{bottom:65.133867pt;}
.y2d{bottom:65.309200pt;}
.yf{bottom:65.364400pt;}
.y2e{bottom:77.760267pt;}
.yd{bottom:83.800533pt;}
.yc{bottom:102.467200pt;}
.yb{bottom:121.133867pt;}
.y62{bottom:139.789867pt;}
.y8a{bottom:139.795200pt;}
.ya2{bottom:139.795333pt;}
.ya{bottom:139.800533pt;}
.y76{bottom:149.117867pt;}
.y82{bottom:149.128533pt;}
.ya9{bottom:158.461867pt;}
.y9{bottom:158.467200pt;}
.y61{bottom:167.789867pt;}
.y89{bottom:167.795200pt;}
.ya1{bottom:167.795333pt;}
.y45{bottom:167.800533pt;}
.y75{bottom:177.117867pt;}
.y81{bottom:177.128533pt;}
.ya8{bottom:186.461867pt;}
.y73{bottom:186.467200pt;}
.y60{bottom:195.789867pt;}
.y88{bottom:195.795200pt;}
.ya0{bottom:195.795333pt;}
.y44{bottom:195.800533pt;}
.y74{bottom:205.117867pt;}
.y80{bottom:205.128533pt;}
.ya7{bottom:214.461867pt;}
.y72{bottom:214.467200pt;}
.y5f{bottom:223.789867pt;}
.y87{bottom:223.795200pt;}
.y9f{bottom:223.795333pt;}
.y43{bottom:223.800533pt;}
.y7f{bottom:233.128533pt;}
.ya6{bottom:242.461867pt;}
.y71{bottom:242.467200pt;}
.y5e{bottom:251.789867pt;}
.y9e{bottom:251.795333pt;}
.y42{bottom:251.800533pt;}
.y7e{bottom:261.128533pt;}
.yc2{bottom:261.133867pt;}
.ya5{bottom:270.461867pt;}
.y70{bottom:270.467200pt;}
.y5d{bottom:279.789867pt;}
.y9d{bottom:279.795333pt;}
.y41{bottom:279.800533pt;}
.y7d{bottom:289.128533pt;}
.yc1{bottom:289.133867pt;}
.ya4{bottom:298.461867pt;}
.y86{bottom:298.467200pt;}
.y5c{bottom:307.789867pt;}
.y9c{bottom:307.795333pt;}
.y40{bottom:307.800533pt;}
.y7c{bottom:317.128533pt;}
.ya3{bottom:326.461867pt;}
.y85{bottom:326.467200pt;}
.y5b{bottom:335.789867pt;}
.y9b{bottom:335.795333pt;}
.y3f{bottom:335.800533pt;}
.y7b{bottom:345.128533pt;}
.y90{bottom:354.461867pt;}
.y5a{bottom:363.789867pt;}
.y9a{bottom:363.795333pt;}
.y3e{bottom:363.800533pt;}
.y7a{bottom:373.128533pt;}
.y8f{bottom:382.461867pt;}
.yc9{bottom:382.467200pt;}
.y59{bottom:391.789867pt;}
.y3d{bottom:391.800533pt;}
.y79{bottom:401.128533pt;}
.y8e{bottom:410.461867pt;}
.yc0{bottom:410.467200pt;}
.y99{bottom:410.467333pt;}
.y58{bottom:419.789867pt;}
.y3c{bottom:419.800533pt;}
.y78{bottom:429.128533pt;}
.y8d{bottom:438.461867pt;}
.yc8{bottom:438.467200pt;}
.y98{bottom:438.467333pt;}
.y57{bottom:447.789867pt;}
.y29{bottom:447.800400pt;}
.y3b{bottom:447.800533pt;}
.y77{bottom:457.128533pt;}
.y6e{bottom:457.133867pt;}
.y8c{bottom:466.461867pt;}
.y28{bottom:466.467067pt;}
.y97{bottom:466.467333pt;}
.y56{bottom:475.789867pt;}
.y3a{bottom:475.800533pt;}
.y27{bottom:485.133733pt;}
.ybf{bottom:485.133867pt;}
.yb4{bottom:494.456533pt;}
.y8b{bottom:494.461867pt;}
.y96{bottom:494.467333pt;}
.y55{bottom:503.789867pt;}
.y2b{bottom:503.800400pt;}
.y39{bottom:503.800533pt;}
.y26{bottom:513.133733pt;}
.yc7{bottom:513.133867pt;}
.y6d{bottom:522.461867pt;}
.y95{bottom:522.467333pt;}
.y54{bottom:531.789867pt;}
.y8{bottom:531.800533pt;}
.yb3{bottom:541.128533pt;}
.y6c{bottom:550.461867pt;}
.y2a{bottom:550.467067pt;}
.y94{bottom:550.467333pt;}
.y53{bottom:559.789867pt;}
.y25{bottom:559.800400pt;}
.y7{bottom:559.800533pt;}
.yb2{bottom:569.128533pt;}
.yb8{bottom:569.133867pt;}
.y6b{bottom:578.461867pt;}
.y24{bottom:578.467067pt;}
.ybe{bottom:578.467200pt;}
.y93{bottom:578.467333pt;}
.y52{bottom:587.789867pt;}
.y6{bottom:587.800533pt;}
.yb1{bottom:597.128533pt;}
.y23{bottom:597.133733pt;}
.yb7{bottom:597.133867pt;}
.y6a{bottom:606.461867pt;}
.ybd{bottom:606.467200pt;}
.y92{bottom:606.467333pt;}
.y22{bottom:615.800400pt;}
.y38{bottom:615.800533pt;}
.yb0{bottom:625.128533pt;}
.yb6{bottom:625.133867pt;}
.y5{bottom:634.459200pt;}
.y51{bottom:634.461867pt;}
.y21{bottom:634.467067pt;}
.yc6{bottom:634.467200pt;}
.y37{bottom:643.800533pt;}
.yaf{bottom:653.128533pt;}
.y20{bottom:653.133733pt;}
.yb5{bottom:653.133867pt;}
.y50{bottom:662.461867pt;}
.ybc{bottom:662.467200pt;}
.y91{bottom:662.467333pt;}
.y6f{bottom:671.789867pt;}
.y1f{bottom:671.800400pt;}
.y4{bottom:671.800533pt;}
.yae{bottom:681.128533pt;}
.y84{bottom:681.133867pt;}
.y4f{bottom:690.461867pt;}
.y1e{bottom:690.467067pt;}
.ycc{bottom:690.467200pt;}
.y36{bottom:699.800533pt;}
.yad{bottom:709.128533pt;}
.y1d{bottom:709.133733pt;}
.y83{bottom:709.133867pt;}
.y4e{bottom:718.461867pt;}
.y1c{bottom:727.800400pt;}
.y35{bottom:727.800533pt;}
.ybb{bottom:737.117867pt;}
.ycb{bottom:737.128533pt;}
.y69{bottom:737.133867pt;}
.y4d{bottom:746.461867pt;}
.y1b{bottom:746.467067pt;}
.y34{bottom:755.800533pt;}
.yba{bottom:765.117867pt;}
.yca{bottom:765.128533pt;}
.y1a{bottom:765.133733pt;}
.y68{bottom:765.133867pt;}
.y4c{bottom:774.461867pt;}
.y19{bottom:783.800400pt;}
.y33{bottom:783.800533pt;}
.y67{bottom:793.133867pt;}
.y4b{bottom:802.461867pt;}
.y18{bottom:802.467067pt;}
.yb9{bottom:811.789867pt;}
.yac{bottom:811.800533pt;}
.y17{bottom:821.133733pt;}
.y66{bottom:821.133867pt;}
.y4a{bottom:830.461867pt;}
.yc5{bottom:830.467200pt;}
.y16{bottom:839.800400pt;}
.y32{bottom:839.800533pt;}
.y65{bottom:849.133867pt;}
.y49{bottom:858.461867pt;}
.y15{bottom:858.467067pt;}
.yc4{bottom:858.467200pt;}
.yab{bottom:867.800533pt;}
.y14{bottom:877.133733pt;}
.y64{bottom:877.133867pt;}
.y48{bottom:886.461867pt;}
.yc3{bottom:886.467200pt;}
.y3{bottom:889.036000pt;}
.y13{bottom:895.800400pt;}
.y63{bottom:905.133867pt;}
.y12{bottom:914.467067pt;}
.y31{bottom:914.477867pt;}
.y2{bottom:922.454000pt;}
.yaa{bottom:923.800533pt;}
.y47{bottom:933.133867pt;}
.y11{bottom:961.133733pt;}
.y30{bottom:961.133867pt;}
.y1{bottom:970.454000pt;}
.y2c{bottom:1052.244667pt;}
.h6{height:38.986667pt;}
.ha{height:46.720000pt;}
.hd{height:46.784000pt;}
.h9{height:49.066667pt;}
.h8{height:53.312000pt;}
.h3{height:54.581333pt;}
.h10{height:58.176000pt;}
.h11{height:58.197333pt;}
.he{height:58.880000pt;}
.h5{height:62.378667pt;}
.hc{height:77.973333pt;}
.h7{height:85.011200pt;}
.hf{height:85.011733pt;}
.h4{height:85.770667pt;}
.hb{height:93.568000pt;}
.h2{height:116.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:112.719200pt;}
.x1{left:113.774267pt;}
.xb{left:118.574667pt;}
.x6{left:121.163467pt;}
.x10{left:132.283467pt;}
.x8{left:133.357067pt;}
.x12{left:150.792667pt;}
.xf{left:151.737600pt;}
.x7{left:170.078800pt;}
.xe{left:176.665067pt;}
.x11{left:188.581333pt;}
.x2{left:339.657467pt;}
.xd{left:355.318400pt;}
.x9{left:416.321733pt;}
.x3{left:431.223067pt;}
.xa{left:435.219333pt;}
.x4{left:446.271333pt;}
.x5{left:481.607333pt;}
.xc{left:650.297333pt;}
}




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