
    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_28855cf299ce8d0deb54a413.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_5a2fcc32848fc0c11458550e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_a51be9802e4469ec409c3390.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_bcf798e937f1f4929816865d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_a9f2e6a8fb22fc37063f0d72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_71b4ddb179e906dc3a3e1b1c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_d3789748a2346f9d16610e51.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_86ad9a910df4f7c7fbf88f69.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_cd5fd37c6351dc16515379ca.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6a2fae8535e3a7f0d56303f2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946000;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_269c02a9d391c2ad2a2f9709.woff')format("woff");}.ffb{font-family:ffb;line-height:0.830000;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_c138394f2c349be6095bcebe.woff')format("woff");}.ffc{font-family:ffc;line-height:0.842000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1c{letter-spacing:-3.744000px;}
.ls32{letter-spacing:-3.564000px;}
.ls2e{letter-spacing:-2.208000px;}
.ls2b{letter-spacing:-1.632000px;}
.lsa{letter-spacing:-0.756000px;}
.ls2d{letter-spacing:-0.624000px;}
.lse{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.192000px;}
.ls10{letter-spacing:-0.174900px;}
.ls1d{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.054000px;}
.ls2a{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.270000px;}
.ls30{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.336000px;}
.ls2f{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.484800px;}
.ls16{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.550200px;}
.ls29{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.594000px;}
.ls2c{letter-spacing:0.624000px;}
.lsb{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.672000px;}
.ls26{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.768000px;}
.ls27{letter-spacing:0.816000px;}
.ls17{letter-spacing:0.918000px;}
.ls3{letter-spacing:1.170000px;}
.lsc{letter-spacing:1.404000px;}
.ls18{letter-spacing:1.458000px;}
.ls0{letter-spacing:4.320000px;}
.ls2{letter-spacing:4.806000px;}
.ls14{letter-spacing:13.824000px;}
.ls13{letter-spacing:14.928000px;}
.ls23{letter-spacing:226.992000px;}
.ls22{letter-spacing:229.248000px;}
.ls21{letter-spacing:229.968000px;}
.ls24{letter-spacing:231.696000px;}
.ls20{letter-spacing:235.392000px;}
.ls1{letter-spacing:2848.224000px;}
.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;}
}
.ws7{word-spacing:-16.380000px;}
.ws5{word-spacing:-16.146000px;}
.ws6e{word-spacing:-11.556000px;}
.ws37{word-spacing:-11.340000px;}
.ws34{word-spacing:-11.232000px;}
.ws4{word-spacing:-11.070000px;}
.ws2{word-spacing:-10.854000px;}
.ws70{word-spacing:-10.800000px;}
.ws6d{word-spacing:-10.746000px;}
.ws6c{word-spacing:-10.692000px;}
.ws36{word-spacing:-10.638000px;}
.ws43{word-spacing:-9.360000px;}
.ws3{word-spacing:-9.288000px;}
.ws6{word-spacing:-9.126000px;}
.ws0{word-spacing:-9.024000px;}
.ws71{word-spacing:-9.000000px;}
.ws1{word-spacing:-8.820000px;}
.ws9{word-spacing:-8.688000px;}
.ws72{word-spacing:-7.695000px;}
.ws6f{word-spacing:-7.236000px;}
.ws8{word-spacing:-6.996000px;}
.ws8f{word-spacing:-2.880000px;}
.ws31{word-spacing:-2.623500px;}
.ws92{word-spacing:-2.385000px;}
.wse{word-spacing:-2.052000px;}
.ws63{word-spacing:-1.998000px;}
.ws2e{word-spacing:-1.836000px;}
.ws8c{word-spacing:-1.710000px;}
.ws8a{word-spacing:-1.665000px;}
.ws5c{word-spacing:-1.566000px;}
.ws50{word-spacing:-1.512000px;}
.ws8b{word-spacing:-1.485000px;}
.ws52{word-spacing:-1.458000px;}
.ws26{word-spacing:-1.404000px;}
.ws51{word-spacing:-1.350000px;}
.ws17{word-spacing:-1.296000px;}
.ws27{word-spacing:-1.242000px;}
.ws83{word-spacing:-1.215000px;}
.ws53{word-spacing:-1.188000px;}
.ws19{word-spacing:-1.134000px;}
.ws90{word-spacing:-1.125000px;}
.ws7d{word-spacing:-1.035000px;}
.ws29{word-spacing:-1.026000px;}
.ws7c{word-spacing:-0.990000px;}
.ws42{word-spacing:-0.972000px;}
.ws86{word-spacing:-0.945000px;}
.ws68{word-spacing:-0.768000px;}
.ws3d{word-spacing:-0.756000px;}
.ws69{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.702000px;}
.ws3c{word-spacing:-0.648000px;}
.ws6b{word-spacing:-0.624000px;}
.ws91{word-spacing:-0.585000px;}
.ws6a{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.540000px;}
.ws33{word-spacing:-0.528000px;}
.ws39{word-spacing:-0.480000px;}
.ws1d{word-spacing:-0.432000px;}
.ws73{word-spacing:-0.378000px;}
.ws74{word-spacing:-0.324000px;}
.ws20{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.216000px;}
.ws3e{word-spacing:-0.162000px;}
.ws3b{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.096000px;}
.ws1c{word-spacing:-0.054000px;}
.ws89{word-spacing:-0.045000px;}
.ws35{word-spacing:-0.043200px;}
.wsa{word-spacing:0.000000px;}
.ws87{word-spacing:0.045000px;}
.ws95{word-spacing:0.090000px;}
.ws5d{word-spacing:0.108000px;}
.ws3f{word-spacing:0.216000px;}
.ws4e{word-spacing:0.270000px;}
.ws75{word-spacing:0.324000px;}
.ws41{word-spacing:0.432000px;}
.ws1e{word-spacing:0.486000px;}
.ws30{word-spacing:0.540000px;}
.ws7b{word-spacing:0.855000px;}
.ws40{word-spacing:0.864000px;}
.ws93{word-spacing:0.900000px;}
.ws15{word-spacing:0.918000px;}
.ws97{word-spacing:0.945000px;}
.ws2b{word-spacing:1.026000px;}
.ws85{word-spacing:1.035000px;}
.ws5a{word-spacing:1.080000px;}
.ws18{word-spacing:1.134000px;}
.ws65{word-spacing:1.188000px;}
.ws84{word-spacing:1.215000px;}
.ws14{word-spacing:1.350000px;}
.ws96{word-spacing:1.395000px;}
.ws56{word-spacing:1.404000px;}
.ws5e{word-spacing:1.458000px;}
.ws16{word-spacing:1.512000px;}
.ws8d{word-spacing:1.530000px;}
.ws8e{word-spacing:1.575000px;}
.ws66{word-spacing:1.728000px;}
.ws62{word-spacing:1.782000px;}
.ws58{word-spacing:1.890000px;}
.ws59{word-spacing:1.944000px;}
.ws57{word-spacing:2.052000px;}
.ws64{word-spacing:2.160000px;}
.ws5f{word-spacing:2.268000px;}
.ws23{word-spacing:2.322000px;}
.ws82{word-spacing:2.340000px;}
.ws11{word-spacing:2.376000px;}
.ws12{word-spacing:2.430000px;}
.ws24{word-spacing:2.484000px;}
.ws67{word-spacing:2.592000px;}
.ws79{word-spacing:2.745000px;}
.ws7a{word-spacing:2.790000px;}
.ws25{word-spacing:2.808000px;}
.ws7e{word-spacing:2.835000px;}
.ws1b{word-spacing:2.916000px;}
.ws22{word-spacing:2.970000px;}
.ws5b{word-spacing:3.132000px;}
.ws88{word-spacing:3.195000px;}
.ws78{word-spacing:3.285000px;}
.ws94{word-spacing:3.330000px;}
.ws2d{word-spacing:3.348000px;}
.ws81{word-spacing:3.375000px;}
.ws2c{word-spacing:3.564000px;}
.ws10{word-spacing:3.672000px;}
.ws28{word-spacing:3.726000px;}
.ws76{word-spacing:3.780000px;}
.ws77{word-spacing:3.870000px;}
.ws61{word-spacing:3.942000px;}
.wsc{word-spacing:4.050000px;}
.wsf{word-spacing:4.374000px;}
.ws21{word-spacing:4.482000px;}
.ws4f{word-spacing:4.536000px;}
.ws60{word-spacing:4.698000px;}
.wsd{word-spacing:4.806000px;}
.ws7f{word-spacing:4.995000px;}
.ws80{word-spacing:5.085000px;}
.ws55{word-spacing:5.346000px;}
.ws13{word-spacing:6.048000px;}
.ws54{word-spacing:6.318000px;}
.ws38{word-spacing:14.400000px;}
.ws2f{word-spacing:25.200000px;}
.ws44{word-spacing:75.220800px;}
.ws47{word-spacing:150.230400px;}
.ws46{word-spacing:151.080000px;}
.ws4c{word-spacing:152.112000px;}
.ws49{word-spacing:162.681600px;}
.ws4b{word-spacing:164.472000px;}
.ws4d{word-spacing:165.446400px;}
.ws4a{word-spacing:201.456000px;}
.ws45{word-spacing:212.265600px;}
.ws48{word-spacing:279.508800px;}
._6{margin-left:-25.200000px;}
._5{margin-left:-16.218000px;}
._9{margin-left:-14.400000px;}
._7{margin-left:-6.014400px;}
._4{margin-left:-4.277400px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.646000px;}
._d{width:4.071600px;}
._c{width:5.343000px;}
._8{width:8.160000px;}
._a{width:14.436000px;}
._19{width:39.040800px;}
._16{width:130.056000px;}
._18{width:132.786000px;}
._10{width:138.045600px;}
._15{width:140.053200px;}
._13{width:141.462000px;}
._17{width:150.310800px;}
._14{width:153.980400px;}
._f{width:157.389600px;}
._12{width:161.748000px;}
._11{width:230.112000px;}
._b{width:1891.776000px;}
._e{width:1895.280000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.y7b{bottom:88.507350px;}
.y7a{bottom:105.760350px;}
.y31{bottom:116.824350px;}
.yc{bottom:116.842350px;}
.ybd{bottom:118.833450px;}
.y79{bottom:123.013350px;}
.yb{bottom:129.442350px;}
.ybc{bottom:133.829700px;}
.y30{bottom:134.077350px;}
.y78{bottom:140.266350px;}
.ya{bottom:142.042350px;}
.ybb{bottom:148.825950px;}
.y2f{bottom:151.330350px;}
.y9{bottom:154.642350px;}
.y77{bottom:162.016350px;}
.yba{bottom:163.822200px;}
.y2e{bottom:168.583350px;}
.yb9{bottom:178.818450px;}
.y2d{bottom:185.836350px;}
.yb8{bottom:193.814700px;}
.y2c{bottom:203.089350px;}
.y8{bottom:203.242350px;}
.yb7{bottom:208.810950px;}
.y7{bottom:216.742350px;}
.y76{bottom:218.182350px;}
.y2b{bottom:220.342350px;}
.yb6{bottom:223.807200px;}
.y6{bottom:230.242350px;}
.y75{bottom:235.435350px;}
.yb5{bottom:238.803450px;}
.y2a{bottom:242.092350px;}
.y5{bottom:243.742350px;}
.y74{bottom:252.688350px;}
.yb4{bottom:253.799700px;}
.yb3{bottom:268.795950px;}
.y73{bottom:269.941350px;}
.yb2{bottom:283.792200px;}
.y72{bottom:287.194350px;}
.y29{bottom:298.285350px;}
.yb1{bottom:298.788450px;}
.y71{bottom:304.447350px;}
.yb0{bottom:313.784700px;}
.y28{bottom:315.538350px;}
.y70{bottom:321.700350px;}
.yaf{bottom:328.780950px;}
.y27{bottom:332.791350px;}
.y6f{bottom:338.953350px;}
.yae{bottom:343.777200px;}
.y26{bottom:350.044350px;}
.y6e{bottom:356.206350px;}
.yad{bottom:358.773450px;}
.y25{bottom:367.297350px;}
.y6d{bottom:373.459350px;}
.yac{bottom:373.769700px;}
.y24{bottom:384.550350px;}
.yab{bottom:388.765950px;}
.y6c{bottom:390.712350px;}
.y23{bottom:401.803350px;}
.yaa{bottom:403.762200px;}
.y6b{bottom:407.965350px;}
.y50{bottom:410.941350px;}
.ya9{bottom:418.758450px;}
.y22{bottom:419.056350px;}
.y6a{bottom:425.218350px;}
.y4f{bottom:425.941350px;}
.ya8{bottom:433.754700px;}
.y21{bottom:436.309350px;}
.y4e{bottom:440.941350px;}
.y69{bottom:442.471350px;}
.ya7{bottom:448.750950px;}
.y20{bottom:453.562350px;}
.y4d{bottom:455.941350px;}
.y68{bottom:459.724350px;}
.ya6{bottom:463.747200px;}
.y1f{bottom:470.815350px;}
.y4c{bottom:470.941350px;}
.y67{bottom:476.977350px;}
.ya5{bottom:478.743450px;}
.y1e{bottom:488.068350px;}
.ya4{bottom:493.739700px;}
.y66{bottom:494.230350px;}
.y1d{bottom:505.321350px;}
.ya3{bottom:508.735950px;}
.y65{bottom:511.483350px;}
.y4b{bottom:516.937350px;}
.y1c{bottom:522.574350px;}
.ya2{bottom:523.732200px;}
.y64{bottom:528.736350px;}
.y4a{bottom:531.937350px;}
.ya1{bottom:538.728450px;}
.y1b{bottom:539.827350px;}
.y63{bottom:545.989350px;}
.ya0{bottom:553.724700px;}
.y1a{bottom:557.080350px;}
.y62{bottom:563.242350px;}
.y9f{bottom:568.720950px;}
.y19{bottom:574.333350px;}
.y61{bottom:580.495350px;}
.y9e{bottom:583.717200px;}
.y18{bottom:591.586350px;}
.y60{bottom:597.748350px;}
.y9d{bottom:598.713450px;}
.y17{bottom:608.839350px;}
.y9c{bottom:613.709700px;}
.y5f{bottom:615.001350px;}
.y16{bottom:626.092350px;}
.y5e{bottom:632.254350px;}
.y9b{bottom:637.709700px;}
.y15{bottom:647.842350px;}
.y5d{bottom:649.507350px;}
.y5c{bottom:666.760350px;}
.y5b{bottom:684.013350px;}
.y9a{bottom:693.956700px;}
.y5a{bottom:701.266350px;}
.y14{bottom:704.078850px;}
.y99{bottom:711.209700px;}
.y13{bottom:721.331850px;}
.y59{bottom:723.016350px;}
.y98{bottom:728.462700px;}
.y33{bottom:732.380250px;}
.y12{bottom:738.584850px;}
.y97{bottom:750.211200px;}
.y32{bottom:751.730250px;}
.y11{bottom:767.839350px;}
.y96{bottom:771.956700px;}
.y58{bottom:779.245350px;}
.y95{bottom:789.206700px;}
.y10{bottom:794.083350px;}
.y57{bottom:796.498350px;}
.y94{bottom:806.456700px;}
.yf{bottom:811.336350px;}
.y56{bottom:813.751350px;}
.y93{bottom:823.706700px;}
.ye{bottom:828.589350px;}
.y55{bottom:831.004350px;}
.y92{bottom:840.956700px;}
.yd{bottom:845.842350px;}
.y49{bottom:846.952200px;}
.y54{bottom:848.257350px;}
.y91{bottom:858.197700px;}
.y53{bottom:865.510350px;}
.y48{bottom:868.700700px;}
.y90{bottom:875.450700px;}
.y52{bottom:882.763350px;}
.y47{bottom:885.953700px;}
.y3a{bottom:891.967350px;}
.y8f{bottom:897.199200px;}
.y51{bottom:900.016350px;}
.y46{bottom:903.206700px;}
.y8e{bottom:914.452200px;}
.y39{bottom:915.967350px;}
.y45{bottom:920.464200px;}
.y38{bottom:930.967350px;}
.y8d{bottom:931.705200px;}
.y44{bottom:942.212700px;}
.y84{bottom:952.328850px;}
.y8c{bottom:953.453700px;}
.y43{bottom:958.709700px;}
.y37{bottom:960.967350px;}
.y8b{bottom:970.706700px;}
.y83{bottom:973.328850px;}
.y36{bottom:978.967350px;}
.y8a{bottom:992.455200px;}
.y82{bottom:994.328850px;}
.y42{bottom:996.209700px;}
.yc6{bottom:1008.427200px;}
.y89{bottom:1009.708200px;}
.y35{bottom:1013.467350px;}
.y81{bottom:1015.328850px;}
.yc5{bottom:1023.423450px;}
.y88{bottom:1031.456700px;}
.y80{bottom:1036.328850px;}
.yc4{bottom:1038.419700px;}
.y34{bottom:1045.867350px;}
.y87{bottom:1048.709700px;}
.y41{bottom:1052.452200px;}
.yc3{bottom:1053.415950px;}
.y7f{bottom:1057.328850px;}
.yc2{bottom:1068.412200px;}
.y40{bottom:1069.705200px;}
.y86{bottom:1070.459700px;}
.y7e{bottom:1078.328850px;}
.yc1{bottom:1083.408450px;}
.y3f{bottom:1091.453700px;}
.yc0{bottom:1098.404700px;}
.y7d{bottom:1099.328850px;}
.y3{bottom:1103.439450px;}
.y3e{bottom:1108.706700px;}
.ybf{bottom:1113.400950px;}
.y3d{bottom:1125.959700px;}
.y85{bottom:1126.709700px;}
.y7c{bottom:1127.834700px;}
.ybe{bottom:1128.397200px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3c{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h5{height:32.175000px;}
.h4{height:34.320000px;}
.hc{height:37.800000px;}
.h3{height:38.610000px;}
.hf{height:38.622000px;}
.he{height:38.658000px;}
.hb{height:38.934000px;}
.h2{height:42.471000px;}
.hd{height:44.262000px;}
.ha{height:44.990700px;}
.h7{height:55.770000px;}
.h8{height:60.060000px;}
.h9{height:77.220000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-85.039350px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x2{left:93.134850px;}
.x4{left:288.000000px;}
.x5{left:305.982000px;}
.x1{left:715.606200px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1c{letter-spacing:-3.328000pt;}
.ls32{letter-spacing:-3.168000pt;}
.ls2e{letter-spacing:-1.962667pt;}
.ls2b{letter-spacing:-1.450667pt;}
.lsa{letter-spacing:-0.672000pt;}
.ls2d{letter-spacing:-0.554667pt;}
.lse{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.170667pt;}
.ls10{letter-spacing:-0.155467pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.048000pt;}
.ls2a{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.240000pt;}
.ls30{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.298667pt;}
.ls2f{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.430933pt;}
.ls16{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.489067pt;}
.ls29{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls2c{letter-spacing:0.554667pt;}
.lsb{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.597333pt;}
.ls26{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.682667pt;}
.ls27{letter-spacing:0.725333pt;}
.ls17{letter-spacing:0.816000pt;}
.ls3{letter-spacing:1.040000pt;}
.lsc{letter-spacing:1.248000pt;}
.ls18{letter-spacing:1.296000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls2{letter-spacing:4.272000pt;}
.ls14{letter-spacing:12.288000pt;}
.ls13{letter-spacing:13.269333pt;}
.ls23{letter-spacing:201.770667pt;}
.ls22{letter-spacing:203.776000pt;}
.ls21{letter-spacing:204.416000pt;}
.ls24{letter-spacing:205.952000pt;}
.ls20{letter-spacing:209.237333pt;}
.ls1{letter-spacing:2531.754667pt;}
.ws7{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws6e{word-spacing:-10.272000pt;}
.ws37{word-spacing:-10.080000pt;}
.ws34{word-spacing:-9.984000pt;}
.ws4{word-spacing:-9.840000pt;}
.ws2{word-spacing:-9.648000pt;}
.ws70{word-spacing:-9.600000pt;}
.ws6d{word-spacing:-9.552000pt;}
.ws6c{word-spacing:-9.504000pt;}
.ws36{word-spacing:-9.456000pt;}
.ws43{word-spacing:-8.320000pt;}
.ws3{word-spacing:-8.256000pt;}
.ws6{word-spacing:-8.112000pt;}
.ws0{word-spacing:-8.021333pt;}
.ws71{word-spacing:-8.000000pt;}
.ws1{word-spacing:-7.840000pt;}
.ws9{word-spacing:-7.722667pt;}
.ws72{word-spacing:-6.840000pt;}
.ws6f{word-spacing:-6.432000pt;}
.ws8{word-spacing:-6.218667pt;}
.ws8f{word-spacing:-2.560000pt;}
.ws31{word-spacing:-2.332000pt;}
.ws92{word-spacing:-2.120000pt;}
.wse{word-spacing:-1.824000pt;}
.ws63{word-spacing:-1.776000pt;}
.ws2e{word-spacing:-1.632000pt;}
.ws8c{word-spacing:-1.520000pt;}
.ws8a{word-spacing:-1.480000pt;}
.ws5c{word-spacing:-1.392000pt;}
.ws50{word-spacing:-1.344000pt;}
.ws8b{word-spacing:-1.320000pt;}
.ws52{word-spacing:-1.296000pt;}
.ws26{word-spacing:-1.248000pt;}
.ws51{word-spacing:-1.200000pt;}
.ws17{word-spacing:-1.152000pt;}
.ws27{word-spacing:-1.104000pt;}
.ws83{word-spacing:-1.080000pt;}
.ws53{word-spacing:-1.056000pt;}
.ws19{word-spacing:-1.008000pt;}
.ws90{word-spacing:-1.000000pt;}
.ws7d{word-spacing:-0.920000pt;}
.ws29{word-spacing:-0.912000pt;}
.ws7c{word-spacing:-0.880000pt;}
.ws42{word-spacing:-0.864000pt;}
.ws86{word-spacing:-0.840000pt;}
.ws68{word-spacing:-0.682667pt;}
.ws3d{word-spacing:-0.672000pt;}
.ws69{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.624000pt;}
.ws3c{word-spacing:-0.576000pt;}
.ws6b{word-spacing:-0.554667pt;}
.ws91{word-spacing:-0.520000pt;}
.ws6a{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws33{word-spacing:-0.469333pt;}
.ws39{word-spacing:-0.426667pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws73{word-spacing:-0.336000pt;}
.ws74{word-spacing:-0.288000pt;}
.ws20{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws3e{word-spacing:-0.144000pt;}
.ws3b{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.085333pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws89{word-spacing:-0.040000pt;}
.ws35{word-spacing:-0.038400pt;}
.wsa{word-spacing:0.000000pt;}
.ws87{word-spacing:0.040000pt;}
.ws95{word-spacing:0.080000pt;}
.ws5d{word-spacing:0.096000pt;}
.ws3f{word-spacing:0.192000pt;}
.ws4e{word-spacing:0.240000pt;}
.ws75{word-spacing:0.288000pt;}
.ws41{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.432000pt;}
.ws30{word-spacing:0.480000pt;}
.ws7b{word-spacing:0.760000pt;}
.ws40{word-spacing:0.768000pt;}
.ws93{word-spacing:0.800000pt;}
.ws15{word-spacing:0.816000pt;}
.ws97{word-spacing:0.840000pt;}
.ws2b{word-spacing:0.912000pt;}
.ws85{word-spacing:0.920000pt;}
.ws5a{word-spacing:0.960000pt;}
.ws18{word-spacing:1.008000pt;}
.ws65{word-spacing:1.056000pt;}
.ws84{word-spacing:1.080000pt;}
.ws14{word-spacing:1.200000pt;}
.ws96{word-spacing:1.240000pt;}
.ws56{word-spacing:1.248000pt;}
.ws5e{word-spacing:1.296000pt;}
.ws16{word-spacing:1.344000pt;}
.ws8d{word-spacing:1.360000pt;}
.ws8e{word-spacing:1.400000pt;}
.ws66{word-spacing:1.536000pt;}
.ws62{word-spacing:1.584000pt;}
.ws58{word-spacing:1.680000pt;}
.ws59{word-spacing:1.728000pt;}
.ws57{word-spacing:1.824000pt;}
.ws64{word-spacing:1.920000pt;}
.ws5f{word-spacing:2.016000pt;}
.ws23{word-spacing:2.064000pt;}
.ws82{word-spacing:2.080000pt;}
.ws11{word-spacing:2.112000pt;}
.ws12{word-spacing:2.160000pt;}
.ws24{word-spacing:2.208000pt;}
.ws67{word-spacing:2.304000pt;}
.ws79{word-spacing:2.440000pt;}
.ws7a{word-spacing:2.480000pt;}
.ws25{word-spacing:2.496000pt;}
.ws7e{word-spacing:2.520000pt;}
.ws1b{word-spacing:2.592000pt;}
.ws22{word-spacing:2.640000pt;}
.ws5b{word-spacing:2.784000pt;}
.ws88{word-spacing:2.840000pt;}
.ws78{word-spacing:2.920000pt;}
.ws94{word-spacing:2.960000pt;}
.ws2d{word-spacing:2.976000pt;}
.ws81{word-spacing:3.000000pt;}
.ws2c{word-spacing:3.168000pt;}
.ws10{word-spacing:3.264000pt;}
.ws28{word-spacing:3.312000pt;}
.ws76{word-spacing:3.360000pt;}
.ws77{word-spacing:3.440000pt;}
.ws61{word-spacing:3.504000pt;}
.wsc{word-spacing:3.600000pt;}
.wsf{word-spacing:3.888000pt;}
.ws21{word-spacing:3.984000pt;}
.ws4f{word-spacing:4.032000pt;}
.ws60{word-spacing:4.176000pt;}
.wsd{word-spacing:4.272000pt;}
.ws7f{word-spacing:4.440000pt;}
.ws80{word-spacing:4.520000pt;}
.ws55{word-spacing:4.752000pt;}
.ws13{word-spacing:5.376000pt;}
.ws54{word-spacing:5.616000pt;}
.ws38{word-spacing:12.800000pt;}
.ws2f{word-spacing:22.400000pt;}
.ws44{word-spacing:66.862933pt;}
.ws47{word-spacing:133.538133pt;}
.ws46{word-spacing:134.293333pt;}
.ws4c{word-spacing:135.210667pt;}
.ws49{word-spacing:144.605867pt;}
.ws4b{word-spacing:146.197333pt;}
.ws4d{word-spacing:147.063467pt;}
.ws4a{word-spacing:179.072000pt;}
.ws45{word-spacing:188.680533pt;}
.ws48{word-spacing:248.452267pt;}
._6{margin-left:-22.400000pt;}
._5{margin-left:-14.416000pt;}
._9{margin-left:-12.800000pt;}
._7{margin-left:-5.346133pt;}
._4{margin-left:-3.802133pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:2.352000pt;}
._d{width:3.619200pt;}
._c{width:4.749333pt;}
._8{width:7.253333pt;}
._a{width:12.832000pt;}
._19{width:34.702933pt;}
._16{width:115.605333pt;}
._18{width:118.032000pt;}
._10{width:122.707200pt;}
._15{width:124.491733pt;}
._13{width:125.744000pt;}
._17{width:133.609600pt;}
._14{width:136.871467pt;}
._f{width:139.901867pt;}
._12{width:143.776000pt;}
._11{width:204.544000pt;}
._b{width:1681.578667pt;}
._e{width:1684.693333pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.y7b{bottom:78.673200pt;}
.y7a{bottom:94.009200pt;}
.y31{bottom:103.843867pt;}
.yc{bottom:103.859867pt;}
.ybd{bottom:105.629733pt;}
.y79{bottom:109.345200pt;}
.yb{bottom:115.059867pt;}
.ybc{bottom:118.959733pt;}
.y30{bottom:119.179867pt;}
.y78{bottom:124.681200pt;}
.ya{bottom:126.259867pt;}
.ybb{bottom:132.289733pt;}
.y2f{bottom:134.515867pt;}
.y9{bottom:137.459867pt;}
.y77{bottom:144.014533pt;}
.yba{bottom:145.619733pt;}
.y2e{bottom:149.851867pt;}
.yb9{bottom:158.949733pt;}
.y2d{bottom:165.187867pt;}
.yb8{bottom:172.279733pt;}
.y2c{bottom:180.523867pt;}
.y8{bottom:180.659867pt;}
.yb7{bottom:185.609733pt;}
.y7{bottom:192.659867pt;}
.y76{bottom:193.939867pt;}
.y2b{bottom:195.859867pt;}
.yb6{bottom:198.939733pt;}
.y6{bottom:204.659867pt;}
.y75{bottom:209.275867pt;}
.yb5{bottom:212.269733pt;}
.y2a{bottom:215.193200pt;}
.y5{bottom:216.659867pt;}
.y74{bottom:224.611867pt;}
.yb4{bottom:225.599733pt;}
.yb3{bottom:238.929733pt;}
.y73{bottom:239.947867pt;}
.yb2{bottom:252.259733pt;}
.y72{bottom:255.283867pt;}
.y29{bottom:265.142533pt;}
.yb1{bottom:265.589733pt;}
.y71{bottom:270.619867pt;}
.yb0{bottom:278.919733pt;}
.y28{bottom:280.478533pt;}
.y70{bottom:285.955867pt;}
.yaf{bottom:292.249733pt;}
.y27{bottom:295.814533pt;}
.y6f{bottom:301.291867pt;}
.yae{bottom:305.579733pt;}
.y26{bottom:311.150533pt;}
.y6e{bottom:316.627867pt;}
.yad{bottom:318.909733pt;}
.y25{bottom:326.486533pt;}
.y6d{bottom:331.963867pt;}
.yac{bottom:332.239733pt;}
.y24{bottom:341.822533pt;}
.yab{bottom:345.569733pt;}
.y6c{bottom:347.299867pt;}
.y23{bottom:357.158533pt;}
.yaa{bottom:358.899733pt;}
.y6b{bottom:362.635867pt;}
.y50{bottom:365.281200pt;}
.ya9{bottom:372.229733pt;}
.y22{bottom:372.494533pt;}
.y6a{bottom:377.971867pt;}
.y4f{bottom:378.614533pt;}
.ya8{bottom:385.559733pt;}
.y21{bottom:387.830533pt;}
.y4e{bottom:391.947867pt;}
.y69{bottom:393.307867pt;}
.ya7{bottom:398.889733pt;}
.y20{bottom:403.166533pt;}
.y4d{bottom:405.281200pt;}
.y68{bottom:408.643867pt;}
.ya6{bottom:412.219733pt;}
.y1f{bottom:418.502533pt;}
.y4c{bottom:418.614533pt;}
.y67{bottom:423.979867pt;}
.ya5{bottom:425.549733pt;}
.y1e{bottom:433.838533pt;}
.ya4{bottom:438.879733pt;}
.y66{bottom:439.315867pt;}
.y1d{bottom:449.174533pt;}
.ya3{bottom:452.209733pt;}
.y65{bottom:454.651867pt;}
.y4b{bottom:459.499867pt;}
.y1c{bottom:464.510533pt;}
.ya2{bottom:465.539733pt;}
.y64{bottom:469.987867pt;}
.y4a{bottom:472.833200pt;}
.ya1{bottom:478.869733pt;}
.y1b{bottom:479.846533pt;}
.y63{bottom:485.323867pt;}
.ya0{bottom:492.199733pt;}
.y1a{bottom:495.182533pt;}
.y62{bottom:500.659867pt;}
.y9f{bottom:505.529733pt;}
.y19{bottom:510.518533pt;}
.y61{bottom:515.995867pt;}
.y9e{bottom:518.859733pt;}
.y18{bottom:525.854533pt;}
.y60{bottom:531.331867pt;}
.y9d{bottom:532.189733pt;}
.y17{bottom:541.190533pt;}
.y9c{bottom:545.519733pt;}
.y5f{bottom:546.667867pt;}
.y16{bottom:556.526533pt;}
.y5e{bottom:562.003867pt;}
.y9b{bottom:566.853067pt;}
.y15{bottom:575.859867pt;}
.y5d{bottom:577.339867pt;}
.y5c{bottom:592.675867pt;}
.y5b{bottom:608.011867pt;}
.y9a{bottom:616.850400pt;}
.y5a{bottom:623.347867pt;}
.y14{bottom:625.847867pt;}
.y99{bottom:632.186400pt;}
.y13{bottom:641.183867pt;}
.y59{bottom:642.681200pt;}
.y98{bottom:647.522400pt;}
.y33{bottom:651.004667pt;}
.y12{bottom:656.519867pt;}
.y97{bottom:666.854400pt;}
.y32{bottom:668.204667pt;}
.y11{bottom:682.523867pt;}
.y96{bottom:686.183733pt;}
.y58{bottom:692.662533pt;}
.y95{bottom:701.517067pt;}
.y10{bottom:705.851867pt;}
.y57{bottom:707.998533pt;}
.y94{bottom:716.850400pt;}
.yf{bottom:721.187867pt;}
.y56{bottom:723.334533pt;}
.y93{bottom:732.183733pt;}
.ye{bottom:736.523867pt;}
.y55{bottom:738.670533pt;}
.y92{bottom:747.517067pt;}
.yd{bottom:751.859867pt;}
.y49{bottom:752.846400pt;}
.y54{bottom:754.006533pt;}
.y91{bottom:762.842400pt;}
.y53{bottom:769.342533pt;}
.y48{bottom:772.178400pt;}
.y90{bottom:778.178400pt;}
.y52{bottom:784.678533pt;}
.y47{bottom:787.514400pt;}
.y3a{bottom:792.859867pt;}
.y8f{bottom:797.510400pt;}
.y51{bottom:800.014533pt;}
.y46{bottom:802.850400pt;}
.y8e{bottom:812.846400pt;}
.y39{bottom:814.193200pt;}
.y45{bottom:818.190400pt;}
.y38{bottom:827.526533pt;}
.y8d{bottom:828.182400pt;}
.y44{bottom:837.522400pt;}
.y84{bottom:846.514533pt;}
.y8c{bottom:847.514400pt;}
.y43{bottom:852.186400pt;}
.y37{bottom:854.193200pt;}
.y8b{bottom:862.850400pt;}
.y83{bottom:865.181200pt;}
.y36{bottom:870.193200pt;}
.y8a{bottom:882.182400pt;}
.y82{bottom:883.847867pt;}
.y42{bottom:885.519733pt;}
.yc6{bottom:896.379733pt;}
.y89{bottom:897.518400pt;}
.y35{bottom:900.859867pt;}
.y81{bottom:902.514533pt;}
.yc5{bottom:909.709733pt;}
.y88{bottom:916.850400pt;}
.y80{bottom:921.181200pt;}
.yc4{bottom:923.039733pt;}
.y34{bottom:929.659867pt;}
.y87{bottom:932.186400pt;}
.y41{bottom:935.513067pt;}
.yc3{bottom:936.369733pt;}
.y7f{bottom:939.847867pt;}
.yc2{bottom:949.699733pt;}
.y40{bottom:950.849067pt;}
.y86{bottom:951.519733pt;}
.y7e{bottom:958.514533pt;}
.yc1{bottom:963.029733pt;}
.y3f{bottom:970.181067pt;}
.yc0{bottom:976.359733pt;}
.y7d{bottom:977.181200pt;}
.y3{bottom:980.835067pt;}
.y3e{bottom:985.517067pt;}
.ybf{bottom:989.689733pt;}
.y3d{bottom:1000.853067pt;}
.y85{bottom:1001.519733pt;}
.y7c{bottom:1002.519733pt;}
.ybe{bottom:1003.019733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3c{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h5{height:28.600000pt;}
.h4{height:30.506667pt;}
.hc{height:33.600000pt;}
.h3{height:34.320000pt;}
.hf{height:34.330667pt;}
.he{height:34.362667pt;}
.hb{height:34.608000pt;}
.h2{height:37.752000pt;}
.hd{height:39.344000pt;}
.ha{height:39.991733pt;}
.h7{height:49.573333pt;}
.h8{height:53.386667pt;}
.h9{height:68.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-75.590533pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x2{left:82.786533pt;}
.x4{left:256.000000pt;}
.x5{left:271.984000pt;}
.x1{left:636.094400pt;}
}




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