
    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_f5be41f6a9e1fa0e8927bf1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.724000;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_6334fc5e086a7c425b9a2c3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_4e14bb9a97105b400a152d6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9c3f16e3fbba1e076efa82b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_e16362613345edd4d52a8d15.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_80df3d4ed4fe6adfb865eff3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_9ab1da44b1eaccb8f03d55db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_14474764e966e4d5aa53342d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896973;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_5587605bdc36298cb18355ef.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e16362613345edd4d52a8d15.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_e16362613345edd4d52a8d15.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_e16362613345edd4d52a8d15.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_5c8a62c42c76ab261d865358.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_e16362613345edd4d52a8d15.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.002930;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_5c8a62c42c76ab261d865358.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_2a1326f932651f9e4db9b2ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900391;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_e4f4c687da4325c9ef5452a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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_5587605bdc36298cb18355ef.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.359400px;}
.ls12{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.126080px;}
.ls1b{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.728640px;}
.ls1a{letter-spacing:-0.390000px;}
.ls5{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.156000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls17{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls11{letter-spacing:5.040000px;}
.lse{letter-spacing:5.760000px;}
.ls8{letter-spacing:8.640000px;}
.ls15{letter-spacing:10.800000px;}
.ls2{letter-spacing:12.960000px;}
.ls10{letter-spacing:15.840000px;}
.ls7{letter-spacing:33.984000px;}
.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;}
}
.ws73{word-spacing:-18.720000px;}
.ws23{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws76{word-spacing:-17.856000px;}
.ws75{word-spacing:-17.784000px;}
.ws27{word-spacing:-17.712000px;}
.ws74{word-spacing:-17.208000px;}
.ws6f{word-spacing:-16.824960px;}
.ws6e{word-spacing:-16.560000px;}
.ws28{word-spacing:-15.831360px;}
.ws6d{word-spacing:-15.433920px;}
.ws2{word-spacing:-15.119280px;}
.ws1{word-spacing:-9.720000px;}
.ws51{word-spacing:-4.464000px;}
.ws4{word-spacing:-4.320000px;}
.ws6b{word-spacing:-4.032000px;}
.ws4d{word-spacing:-3.816000px;}
.ws43{word-spacing:-3.672000px;}
.ws3e{word-spacing:-3.600000px;}
.ws33{word-spacing:-3.528000px;}
.ws34{word-spacing:-3.456000px;}
.ws6a{word-spacing:-2.952000px;}
.ws5{word-spacing:-2.880000px;}
.ws24{word-spacing:-2.808000px;}
.ws2c{word-spacing:-2.232000px;}
.wsb{word-spacing:-2.160000px;}
.ws16{word-spacing:-1.972080px;}
.ws6c{word-spacing:-1.512000px;}
.ws19{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.296000px;}
.ws69{word-spacing:-0.936000px;}
.ws1a{word-spacing:-0.864000px;}
.ws58{word-spacing:-0.792000px;}
.ws25{word-spacing:-0.728640px;}
.wsd{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.596160px;}
.ws26{word-spacing:-0.264960px;}
.ws5e{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.132480px;}
.ws18{word-spacing:0.156000px;}
.ws17{word-spacing:0.179280px;}
.wsc{word-spacing:0.288000px;}
.ws77{word-spacing:0.390000px;}
.ws7{word-spacing:0.504000px;}
.ws1d{word-spacing:0.576000px;}
.ws8{word-spacing:0.648000px;}
.ws39{word-spacing:0.780000px;}
.ws14{word-spacing:0.792000px;}
.ws70{word-spacing:1.224000px;}
.ws4e{word-spacing:1.296000px;}
.ws9{word-spacing:1.368000px;}
.ws5f{word-spacing:1.440000px;}
.ws60{word-spacing:1.512000px;}
.ws42{word-spacing:2.016000px;}
.ws13{word-spacing:2.088000px;}
.ws3f{word-spacing:2.160000px;}
.ws1b{word-spacing:2.808000px;}
.ws48{word-spacing:2.880000px;}
.ws59{word-spacing:3.384000px;}
.wsa{word-spacing:3.528000px;}
.ws62{word-spacing:4.032000px;}
.ws10{word-spacing:4.104000px;}
.ws57{word-spacing:4.176000px;}
.wse{word-spacing:4.248000px;}
.ws49{word-spacing:4.752000px;}
.ws44{word-spacing:4.824000px;}
.ws4f{word-spacing:4.896000px;}
.ws20{word-spacing:4.968000px;}
.ws41{word-spacing:5.112000px;}
.ws71{word-spacing:5.256000px;}
.ws3d{word-spacing:5.472000px;}
.ws68{word-spacing:5.544000px;}
.ws36{word-spacing:5.688000px;}
.ws3b{word-spacing:5.760000px;}
.ws35{word-spacing:5.832000px;}
.ws3a{word-spacing:6.408000px;}
.ws52{word-spacing:6.480000px;}
.ws46{word-spacing:7.776000px;}
.ws32{word-spacing:7.848000px;}
.ws5a{word-spacing:8.352000px;}
.ws22{word-spacing:8.568000px;}
.ws21{word-spacing:8.784000px;}
.ws38{word-spacing:9.288000px;}
.ws2e{word-spacing:9.936000px;}
.ws2f{word-spacing:10.008000px;}
.ws64{word-spacing:10.656000px;}
.ws1f{word-spacing:10.728000px;}
.ws56{word-spacing:11.232000px;}
.ws4b{word-spacing:11.304000px;}
.ws61{word-spacing:11.376000px;}
.ws2d{word-spacing:11.448000px;}
.ws47{word-spacing:12.024000px;}
.ws3c{word-spacing:12.168000px;}
.ws11{word-spacing:12.672000px;}
.ws12{word-spacing:12.888000px;}
.wsf{word-spacing:13.536000px;}
.ws2b{word-spacing:13.608000px;}
.ws66{word-spacing:14.184000px;}
.ws1e{word-spacing:14.328000px;}
.ws53{word-spacing:14.400000px;}
.ws65{word-spacing:14.472000px;}
.ws29{word-spacing:14.976000px;}
.ws2a{word-spacing:15.048000px;}
.ws5b{word-spacing:17.208000px;}
.ws37{word-spacing:17.928000px;}
.ws30{word-spacing:18.648000px;}
.ws63{word-spacing:19.512000px;}
.ws55{word-spacing:19.872000px;}
.ws54{word-spacing:20.088000px;}
.ws5c{word-spacing:20.736000px;}
.ws5d{word-spacing:20.808000px;}
.ws31{word-spacing:21.528000px;}
.ws67{word-spacing:22.104000px;}
.ws4a{word-spacing:22.176000px;}
.ws50{word-spacing:22.248000px;}
.ws6{word-spacing:24.408000px;}
.ws45{word-spacing:31.608000px;}
.ws4c{word-spacing:33.048000px;}
.ws1c{word-spacing:33.768000px;}
._3{margin-left:-11.790720px;}
._a{margin-left:-4.394880px;}
._4{margin-left:-2.872800px;}
._0{margin-left:-1.179360px;}
._1{width:1.010880px;}
._2{width:2.551680px;}
._9{width:6.864480px;}
._8{width:8.589600px;}
._5{width:11.112480px;}
._7{width:15.624000px;}
._6{width:630.216000px;}
._b{width:843.073920px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:49.330650px;}
.y21{bottom:109.929720px;}
.y87{bottom:116.778150px;}
.yed{bottom:125.232150px;}
.y40{bottom:130.281300px;}
.y20{bottom:132.435300px;}
.y86{bottom:143.598150px;}
.y1f{bottom:145.395300px;}
.yf6{bottom:146.835300px;}
.ya4{bottom:149.352150px;}
.y52{bottom:153.129300px;}
.yec{bottom:156.192150px;}
.yba{bottom:161.421150px;}
.y3f{bottom:161.421300px;}
.yd5{bottom:166.641150px;}
.yaf{bottom:168.081150px;}
.yf5{bottom:176.377020px;}
.y79{bottom:179.232150px;}
.ya3{bottom:180.312150px;}
.y1e{bottom:182.121150px;}
.y51{bottom:184.269300px;}
.yeb{bottom:187.332150px;}
.yf7{bottom:189.489150px;}
.yb9{bottom:192.381150px;}
.y3e{bottom:192.381300px;}
.yd4{bottom:197.601150px;}
.yae{bottom:199.041150px;}
.yf4{bottom:204.810540px;}
.y78{bottom:210.372150px;}
.ya2{bottom:211.452150px;}
.y1d{bottom:213.081150px;}
.y50{bottom:214.509150px;}
.yea{bottom:218.292150px;}
.yb8{bottom:223.521150px;}
.y3d{bottom:223.521300px;}
.yd3{bottom:228.741150px;}
.yad{bottom:229.821150px;}
.y61{bottom:231.609150px;}
.yf3{bottom:233.608380px;}
.y4f{bottom:239.898150px;}
.y77{bottom:241.332150px;}
.ya1{bottom:242.412150px;}
.y1c{bottom:244.221150px;}
.ye9{bottom:249.432150px;}
.yb7{bottom:254.481150px;}
.y3c{bottom:254.481300px;}
.y60{bottom:256.800150px;}
.yd2{bottom:259.701150px;}
.yac{bottom:260.781150px;}
.yf2{bottom:262.041900px;}
.y76{bottom:272.292150px;}
.ya0{bottom:273.552150px;}
.y1b{bottom:275.181150px;}
.ye8{bottom:280.392150px;}
.yb6{bottom:285.621150px;}
.y3b{bottom:285.621300px;}
.yf1{bottom:290.475420px;}
.yd1{bottom:290.481150px;}
.yab{bottom:292.281150px;}
.y75{bottom:303.432150px;}
.y9f{bottom:304.512150px;}
.y1a{bottom:306.321150px;}
.ye7{bottom:311.532150px;}
.yb5{bottom:316.617150px;}
.y3a{bottom:316.617300px;}
.yf0{bottom:318.958620px;}
.yd0{bottom:321.477150px;}
.yaa{bottom:323.277150px;}
.y74{bottom:334.428150px;}
.y9e{bottom:335.328150px;}
.y19{bottom:337.317150px;}
.ye6{bottom:342.528150px;}
.yef{bottom:347.574300px;}
.yb4{bottom:347.757150px;}
.y39{bottom:347.757300px;}
.ya9{bottom:350.097150px;}
.ycf{bottom:352.977150px;}
.y85{bottom:363.054150px;}
.y73{bottom:365.568150px;}
.y9d{bottom:366.288150px;}
.y18{bottom:368.457150px;}
.yee{bottom:372.777150px;}
.ye5{bottom:373.668150px;}
.y4e{bottom:376.014150px;}
.yb3{bottom:378.717150px;}
.y38{bottom:378.717300px;}
.y5f{bottom:379.074150px;}
.yce{bottom:383.937150px;}
.y84{bottom:394.014150px;}
.y72{bottom:396.528150px;}
.y9c{bottom:397.788150px;}
.y17{bottom:399.417150px;}
.ye4{bottom:404.628150px;}
.y4d{bottom:405.894300px;}
.y5e{bottom:408.954150px;}
.yb2{bottom:409.857150px;}
.y37{bottom:409.857300px;}
.ycd{bottom:415.077150px;}
.y83{bottom:425.154150px;}
.y71{bottom:427.668150px;}
.y9b{bottom:428.748150px;}
.y16{bottom:430.557150px;}
.y4c{bottom:431.274150px;}
.y5d{bottom:434.337150px;}
.ye3{bottom:435.768150px;}
.yb1{bottom:440.817150px;}
.y36{bottom:440.817300px;}
.ycc{bottom:446.037150px;}
.y82{bottom:456.114150px;}
.y70{bottom:458.628150px;}
.y9a{bottom:459.888150px;}
.y15{bottom:461.517150px;}
.ye2{bottom:466.728150px;}
.y35{bottom:471.597300px;}
.yb0{bottom:471.957150px;}
.y8d{bottom:471.957300px;}
.ycb{bottom:477.177150px;}
.y81{bottom:487.254150px;}
.y6f{bottom:489.768150px;}
.y99{bottom:490.848150px;}
.y14{bottom:492.657150px;}
.ye1{bottom:497.868150px;}
.y34{bottom:502.557300px;}
.ya8{bottom:502.917150px;}
.y8c{bottom:502.917300px;}
.yca{bottom:508.137150px;}
.y80{bottom:518.214150px;}
.y6e{bottom:520.728150px;}
.y98{bottom:521.988150px;}
.y13{bottom:523.617150px;}
.ye0{bottom:528.468150px;}
.ya7{bottom:534.057150px;}
.y33{bottom:534.057300px;}
.yc9{bottom:539.097150px;}
.y7f{bottom:549.347070px;}
.y6d{bottom:551.868150px;}
.y97{bottom:552.948150px;}
.y12{bottom:554.757150px;}
.y4b{bottom:558.531030px;}
.ydf{bottom:559.428150px;}
.ya6{bottom:565.017150px;}
.y32{bottom:565.017300px;}
.yc8{bottom:570.273150px;}
.y7e{bottom:578.360190px;}
.y6c{bottom:582.864150px;}
.y96{bottom:584.124150px;}
.y11{bottom:585.753150px;}
.yde{bottom:590.964150px;}
.y4a{bottom:591.684150px;}
.ya5{bottom:596.193150px;}
.y31{bottom:596.193300px;}
.yc7{bottom:601.233150px;}
.y7d{bottom:603.564510px;}
.y6b{bottom:613.644150px;}
.y95{bottom:615.084150px;}
.y49{bottom:616.884300px;}
.y10{bottom:616.893150px;}
.ydd{bottom:621.924150px;}
.y5c{bottom:627.153150px;}
.y30{bottom:627.153300px;}
.yc6{bottom:632.373150px;}
.y6a{bottom:644.604150px;}
.y94{bottom:646.224150px;}
.yf{bottom:647.853150px;}
.ydc{bottom:653.064150px;}
.y5b{bottom:658.293150px;}
.y2f{bottom:658.293300px;}
.yc5{bottom:663.333150px;}
.y69{bottom:676.104150px;}
.y93{bottom:677.184150px;}
.ye{bottom:678.993150px;}
.ydb{bottom:684.024150px;}
.y5a{bottom:689.253150px;}
.y2e{bottom:689.253300px;}
.yc4{bottom:694.473150px;}
.y68{bottom:707.064150px;}
.yd{bottom:709.953150px;}
.y92{bottom:711.024150px;}
.yda{bottom:715.164150px;}
.y59{bottom:720.393150px;}
.y2d{bottom:720.393300px;}
.yc3{bottom:725.433150px;}
.y91{bottom:736.404300px;}
.y67{bottom:738.204150px;}
.yc{bottom:741.093150px;}
.yd9{bottom:746.124150px;}
.y48{bottom:747.746460px;}
.y58{bottom:751.353150px;}
.y2c{bottom:751.353300px;}
.yc2{bottom:756.573150px;}
.y66{bottom:769.164150px;}
.yb{bottom:772.053150px;}
.yd8{bottom:777.264150px;}
.y47{bottom:780.684300px;}
.y57{bottom:782.493150px;}
.y2b{bottom:782.493300px;}
.yc1{bottom:787.533150px;}
.y65{bottom:800.304150px;}
.ya{bottom:803.193150px;}
.y46{bottom:806.073150px;}
.yd7{bottom:809.120340px;}
.y7c{bottom:812.899470px;}
.y56{bottom:813.453150px;}
.y2a{bottom:813.453300px;}
.yc0{bottom:818.709150px;}
.y9{bottom:834.189150px;}
.y64{bottom:834.909300px;}
.yd6{bottom:842.829300px;}
.y29{bottom:844.269300px;}
.y55{bottom:844.629150px;}
.y8b{bottom:844.629300px;}
.y7b{bottom:846.069150px;}
.ybf{bottom:849.669150px;}
.y8{bottom:864.969150px;}
.y63{bottom:868.029300px;}
.y7a{bottom:871.269150px;}
.y28{bottom:875.229300px;}
.y54{bottom:875.589150px;}
.y8a{bottom:875.589300px;}
.ybe{bottom:880.809150px;}
.y90{bottom:882.971310px;}
.y62{bottom:893.229150px;}
.y7{bottom:895.929150px;}
.y27{bottom:906.369300px;}
.y53{bottom:906.729150px;}
.y89{bottom:906.729300px;}
.ybd{bottom:911.769150px;}
.y8f{bottom:915.909150px;}
.y6{bottom:927.429150px;}
.y45{bottom:937.689150px;}
.y26{bottom:937.689300px;}
.y8e{bottom:941.289150px;}
.ybc{bottom:941.293470px;}
.y5{bottom:958.389300px;}
.y44{bottom:968.829150px;}
.y25{bottom:968.829300px;}
.ybb{bottom:969.909150px;}
.y4{bottom:989.529300px;}
.y43{bottom:999.789150px;}
.y24{bottom:999.789300px;}
.y3{bottom:1022.648220px;}
.y23{bottom:1030.569300px;}
.y42{bottom:1030.929150px;}
.y88{bottom:1030.929300px;}
.y2{bottom:1058.829300px;}
.y22{bottom:1061.529300px;}
.y41{bottom:1061.889150px;}
.h8{height:34.114922px;}
.h9{height:52.435898px;}
.h7{height:54.628594px;}
.h2{height:55.536000px;}
.he{height:58.121719px;}
.ha{height:58.283437px;}
.hc{height:58.833281px;}
.h4{height:63.175781px;}
.hb{height:63.351562px;}
.h6{height:63.949219px;}
.hd{height:69.065156px;}
.h5{height:69.687173px;}
.h3{height:74.820586px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x4{left:108.036000px;}
.x2{left:113.616000px;}
.x9{left:135.012000px;}
.x7{left:161.124000px;}
.xe{left:229.548000px;}
.xf{left:231.870000px;}
.x14{left:247.512000px;}
.x10{left:254.194560px;}
.xd{left:261.036000px;}
.xc{left:263.190000px;}
.xb{left:265.530000px;}
.xa{left:267.696000px;}
.x3{left:282.264480px;}
.x11{left:378.975000px;}
.x12{left:381.135000px;}
.x13{left:507.342000px;}
.x5{left:608.508000px;}
.x8{left:802.536600px;}
.x1{left:804.857100px;}
.x6{left:810.150000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.319467pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.000960pt;}
.ls1b{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.647680pt;}
.ls1a{letter-spacing:-0.346667pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.138667pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls11{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.120000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls2{letter-spacing:11.520000pt;}
.ls10{letter-spacing:14.080000pt;}
.ls7{letter-spacing:30.208000pt;}
.ws73{word-spacing:-16.640000pt;}
.ws23{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws76{word-spacing:-15.872000pt;}
.ws75{word-spacing:-15.808000pt;}
.ws27{word-spacing:-15.744000pt;}
.ws74{word-spacing:-15.296000pt;}
.ws6f{word-spacing:-14.955520pt;}
.ws6e{word-spacing:-14.720000pt;}
.ws28{word-spacing:-14.072320pt;}
.ws6d{word-spacing:-13.719040pt;}
.ws2{word-spacing:-13.439360pt;}
.ws1{word-spacing:-8.640000pt;}
.ws51{word-spacing:-3.968000pt;}
.ws4{word-spacing:-3.840000pt;}
.ws6b{word-spacing:-3.584000pt;}
.ws4d{word-spacing:-3.392000pt;}
.ws43{word-spacing:-3.264000pt;}
.ws3e{word-spacing:-3.200000pt;}
.ws33{word-spacing:-3.136000pt;}
.ws34{word-spacing:-3.072000pt;}
.ws6a{word-spacing:-2.624000pt;}
.ws5{word-spacing:-2.560000pt;}
.ws24{word-spacing:-2.496000pt;}
.ws2c{word-spacing:-1.984000pt;}
.wsb{word-spacing:-1.920000pt;}
.ws16{word-spacing:-1.752960pt;}
.ws6c{word-spacing:-1.344000pt;}
.ws19{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.152000pt;}
.ws69{word-spacing:-0.832000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws58{word-spacing:-0.704000pt;}
.ws25{word-spacing:-0.647680pt;}
.wsd{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.529920pt;}
.ws26{word-spacing:-0.235520pt;}
.ws5e{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.117760pt;}
.ws18{word-spacing:0.138667pt;}
.ws17{word-spacing:0.159360pt;}
.wsc{word-spacing:0.256000pt;}
.ws77{word-spacing:0.346667pt;}
.ws7{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.512000pt;}
.ws8{word-spacing:0.576000pt;}
.ws39{word-spacing:0.693333pt;}
.ws14{word-spacing:0.704000pt;}
.ws70{word-spacing:1.088000pt;}
.ws4e{word-spacing:1.152000pt;}
.ws9{word-spacing:1.216000pt;}
.ws5f{word-spacing:1.280000pt;}
.ws60{word-spacing:1.344000pt;}
.ws42{word-spacing:1.792000pt;}
.ws13{word-spacing:1.856000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws1b{word-spacing:2.496000pt;}
.ws48{word-spacing:2.560000pt;}
.ws59{word-spacing:3.008000pt;}
.wsa{word-spacing:3.136000pt;}
.ws62{word-spacing:3.584000pt;}
.ws10{word-spacing:3.648000pt;}
.ws57{word-spacing:3.712000pt;}
.wse{word-spacing:3.776000pt;}
.ws49{word-spacing:4.224000pt;}
.ws44{word-spacing:4.288000pt;}
.ws4f{word-spacing:4.352000pt;}
.ws20{word-spacing:4.416000pt;}
.ws41{word-spacing:4.544000pt;}
.ws71{word-spacing:4.672000pt;}
.ws3d{word-spacing:4.864000pt;}
.ws68{word-spacing:4.928000pt;}
.ws36{word-spacing:5.056000pt;}
.ws3b{word-spacing:5.120000pt;}
.ws35{word-spacing:5.184000pt;}
.ws3a{word-spacing:5.696000pt;}
.ws52{word-spacing:5.760000pt;}
.ws46{word-spacing:6.912000pt;}
.ws32{word-spacing:6.976000pt;}
.ws5a{word-spacing:7.424000pt;}
.ws22{word-spacing:7.616000pt;}
.ws21{word-spacing:7.808000pt;}
.ws38{word-spacing:8.256000pt;}
.ws2e{word-spacing:8.832000pt;}
.ws2f{word-spacing:8.896000pt;}
.ws64{word-spacing:9.472000pt;}
.ws1f{word-spacing:9.536000pt;}
.ws56{word-spacing:9.984000pt;}
.ws4b{word-spacing:10.048000pt;}
.ws61{word-spacing:10.112000pt;}
.ws2d{word-spacing:10.176000pt;}
.ws47{word-spacing:10.688000pt;}
.ws3c{word-spacing:10.816000pt;}
.ws11{word-spacing:11.264000pt;}
.ws12{word-spacing:11.456000pt;}
.wsf{word-spacing:12.032000pt;}
.ws2b{word-spacing:12.096000pt;}
.ws66{word-spacing:12.608000pt;}
.ws1e{word-spacing:12.736000pt;}
.ws53{word-spacing:12.800000pt;}
.ws65{word-spacing:12.864000pt;}
.ws29{word-spacing:13.312000pt;}
.ws2a{word-spacing:13.376000pt;}
.ws5b{word-spacing:15.296000pt;}
.ws37{word-spacing:15.936000pt;}
.ws30{word-spacing:16.576000pt;}
.ws63{word-spacing:17.344000pt;}
.ws55{word-spacing:17.664000pt;}
.ws54{word-spacing:17.856000pt;}
.ws5c{word-spacing:18.432000pt;}
.ws5d{word-spacing:18.496000pt;}
.ws31{word-spacing:19.136000pt;}
.ws67{word-spacing:19.648000pt;}
.ws4a{word-spacing:19.712000pt;}
.ws50{word-spacing:19.776000pt;}
.ws6{word-spacing:21.696000pt;}
.ws45{word-spacing:28.096000pt;}
.ws4c{word-spacing:29.376000pt;}
.ws1c{word-spacing:30.016000pt;}
._3{margin-left:-10.480640pt;}
._a{margin-left:-3.906560pt;}
._4{margin-left:-2.553600pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.898560pt;}
._2{width:2.268160pt;}
._9{width:6.101760pt;}
._8{width:7.635200pt;}
._5{width:9.877760pt;}
._7{width:13.888000pt;}
._6{width:560.192000pt;}
._b{width:749.399040pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:43.849467pt;}
.y21{bottom:97.715307pt;}
.y87{bottom:103.802800pt;}
.yed{bottom:111.317467pt;}
.y40{bottom:115.805600pt;}
.y20{bottom:117.720267pt;}
.y86{bottom:127.642800pt;}
.y1f{bottom:129.240267pt;}
.yf6{bottom:130.520267pt;}
.ya4{bottom:132.757467pt;}
.y52{bottom:136.114933pt;}
.yec{bottom:138.837467pt;}
.yba{bottom:143.485467pt;}
.y3f{bottom:143.485600pt;}
.yd5{bottom:148.125467pt;}
.yaf{bottom:149.405467pt;}
.yf5{bottom:156.779573pt;}
.y79{bottom:159.317467pt;}
.ya3{bottom:160.277467pt;}
.y1e{bottom:161.885467pt;}
.y51{bottom:163.794933pt;}
.yeb{bottom:166.517467pt;}
.yf7{bottom:168.434800pt;}
.yb9{bottom:171.005467pt;}
.y3e{bottom:171.005600pt;}
.yd4{bottom:175.645467pt;}
.yae{bottom:176.925467pt;}
.yf4{bottom:182.053813pt;}
.y78{bottom:186.997467pt;}
.ya2{bottom:187.957467pt;}
.y1d{bottom:189.405467pt;}
.y50{bottom:190.674800pt;}
.yea{bottom:194.037467pt;}
.yb8{bottom:198.685467pt;}
.y3d{bottom:198.685600pt;}
.yd3{bottom:203.325467pt;}
.yad{bottom:204.285467pt;}
.y61{bottom:205.874800pt;}
.yf3{bottom:207.651893pt;}
.y4f{bottom:213.242800pt;}
.y77{bottom:214.517467pt;}
.ya1{bottom:215.477467pt;}
.y1c{bottom:217.085467pt;}
.ye9{bottom:221.717467pt;}
.yb7{bottom:226.205467pt;}
.y3c{bottom:226.205600pt;}
.y60{bottom:228.266800pt;}
.yd2{bottom:230.845467pt;}
.yac{bottom:231.805467pt;}
.yf2{bottom:232.926133pt;}
.y76{bottom:242.037467pt;}
.ya0{bottom:243.157467pt;}
.y1b{bottom:244.605467pt;}
.ye8{bottom:249.237467pt;}
.yb6{bottom:253.885467pt;}
.y3b{bottom:253.885600pt;}
.yf1{bottom:258.200373pt;}
.yd1{bottom:258.205467pt;}
.yab{bottom:259.805467pt;}
.y75{bottom:269.717467pt;}
.y9f{bottom:270.677467pt;}
.y1a{bottom:272.285467pt;}
.ye7{bottom:276.917467pt;}
.yb5{bottom:281.437467pt;}
.y3a{bottom:281.437600pt;}
.yf0{bottom:283.518773pt;}
.yd0{bottom:285.757467pt;}
.yaa{bottom:287.357467pt;}
.y74{bottom:297.269467pt;}
.y9e{bottom:298.069467pt;}
.y19{bottom:299.837467pt;}
.ye6{bottom:304.469467pt;}
.yef{bottom:308.954933pt;}
.yb4{bottom:309.117467pt;}
.y39{bottom:309.117600pt;}
.ya9{bottom:311.197467pt;}
.ycf{bottom:313.757467pt;}
.y85{bottom:322.714800pt;}
.y73{bottom:324.949467pt;}
.y9d{bottom:325.589467pt;}
.y18{bottom:327.517467pt;}
.yee{bottom:331.357467pt;}
.ye5{bottom:332.149467pt;}
.y4e{bottom:334.234800pt;}
.yb3{bottom:336.637467pt;}
.y38{bottom:336.637600pt;}
.y5f{bottom:336.954800pt;}
.yce{bottom:341.277467pt;}
.y84{bottom:350.234800pt;}
.y72{bottom:352.469467pt;}
.y9c{bottom:353.589467pt;}
.y17{bottom:355.037467pt;}
.ye4{bottom:359.669467pt;}
.y4d{bottom:360.794933pt;}
.y5e{bottom:363.514800pt;}
.yb2{bottom:364.317467pt;}
.y37{bottom:364.317600pt;}
.ycd{bottom:368.957467pt;}
.y83{bottom:377.914800pt;}
.y71{bottom:380.149467pt;}
.y9b{bottom:381.109467pt;}
.y16{bottom:382.717467pt;}
.y4c{bottom:383.354800pt;}
.y5d{bottom:386.077467pt;}
.ye3{bottom:387.349467pt;}
.yb1{bottom:391.837467pt;}
.y36{bottom:391.837600pt;}
.ycc{bottom:396.477467pt;}
.y82{bottom:405.434800pt;}
.y70{bottom:407.669467pt;}
.y9a{bottom:408.789467pt;}
.y15{bottom:410.237467pt;}
.ye2{bottom:414.869467pt;}
.y35{bottom:419.197600pt;}
.yb0{bottom:419.517467pt;}
.y8d{bottom:419.517600pt;}
.ycb{bottom:424.157467pt;}
.y81{bottom:433.114800pt;}
.y6f{bottom:435.349467pt;}
.y99{bottom:436.309467pt;}
.y14{bottom:437.917467pt;}
.ye1{bottom:442.549467pt;}
.y34{bottom:446.717600pt;}
.ya8{bottom:447.037467pt;}
.y8c{bottom:447.037600pt;}
.yca{bottom:451.677467pt;}
.y80{bottom:460.634800pt;}
.y6e{bottom:462.869467pt;}
.y98{bottom:463.989467pt;}
.y13{bottom:465.437467pt;}
.ye0{bottom:469.749467pt;}
.ya7{bottom:474.717467pt;}
.y33{bottom:474.717600pt;}
.yc9{bottom:479.197467pt;}
.y7f{bottom:488.308507pt;}
.y6d{bottom:490.549467pt;}
.y97{bottom:491.509467pt;}
.y12{bottom:493.117467pt;}
.y4b{bottom:496.472027pt;}
.ydf{bottom:497.269467pt;}
.ya6{bottom:502.237467pt;}
.y32{bottom:502.237600pt;}
.yc8{bottom:506.909467pt;}
.y7e{bottom:514.097947pt;}
.y6c{bottom:518.101467pt;}
.y96{bottom:519.221467pt;}
.y11{bottom:520.669467pt;}
.yde{bottom:525.301467pt;}
.y4a{bottom:525.941467pt;}
.ya5{bottom:529.949467pt;}
.y31{bottom:529.949600pt;}
.yc7{bottom:534.429467pt;}
.y7d{bottom:536.501787pt;}
.y6b{bottom:545.461467pt;}
.y95{bottom:546.741467pt;}
.y49{bottom:548.341600pt;}
.y10{bottom:548.349467pt;}
.ydd{bottom:552.821467pt;}
.y5c{bottom:557.469467pt;}
.y30{bottom:557.469600pt;}
.yc6{bottom:562.109467pt;}
.y6a{bottom:572.981467pt;}
.y94{bottom:574.421467pt;}
.yf{bottom:575.869467pt;}
.ydc{bottom:580.501467pt;}
.y5b{bottom:585.149467pt;}
.y2f{bottom:585.149600pt;}
.yc5{bottom:589.629467pt;}
.y69{bottom:600.981467pt;}
.y93{bottom:601.941467pt;}
.ye{bottom:603.549467pt;}
.ydb{bottom:608.021467pt;}
.y5a{bottom:612.669467pt;}
.y2e{bottom:612.669600pt;}
.yc4{bottom:617.309467pt;}
.y68{bottom:628.501467pt;}
.yd{bottom:631.069467pt;}
.y92{bottom:632.021467pt;}
.yda{bottom:635.701467pt;}
.y59{bottom:640.349467pt;}
.y2d{bottom:640.349600pt;}
.yc3{bottom:644.829467pt;}
.y91{bottom:654.581600pt;}
.y67{bottom:656.181467pt;}
.yc{bottom:658.749467pt;}
.yd9{bottom:663.221467pt;}
.y48{bottom:664.663520pt;}
.y58{bottom:667.869467pt;}
.y2c{bottom:667.869600pt;}
.yc2{bottom:672.509467pt;}
.y66{bottom:683.701467pt;}
.yb{bottom:686.269467pt;}
.yd8{bottom:690.901467pt;}
.y47{bottom:693.941600pt;}
.y57{bottom:695.549467pt;}
.y2b{bottom:695.549600pt;}
.yc1{bottom:700.029467pt;}
.y65{bottom:711.381467pt;}
.ya{bottom:713.949467pt;}
.y46{bottom:716.509467pt;}
.yd7{bottom:719.218080pt;}
.y7c{bottom:722.577307pt;}
.y56{bottom:723.069467pt;}
.y2a{bottom:723.069600pt;}
.yc0{bottom:727.741467pt;}
.y9{bottom:741.501467pt;}
.y64{bottom:742.141600pt;}
.yd6{bottom:749.181600pt;}
.y29{bottom:750.461600pt;}
.y55{bottom:750.781467pt;}
.y8b{bottom:750.781600pt;}
.y7b{bottom:752.061467pt;}
.ybf{bottom:755.261467pt;}
.y8{bottom:768.861467pt;}
.y63{bottom:771.581600pt;}
.y7a{bottom:774.461467pt;}
.y28{bottom:777.981600pt;}
.y54{bottom:778.301467pt;}
.y8a{bottom:778.301600pt;}
.ybe{bottom:782.941467pt;}
.y90{bottom:784.863387pt;}
.y62{bottom:793.981467pt;}
.y7{bottom:796.381467pt;}
.y27{bottom:805.661600pt;}
.y53{bottom:805.981467pt;}
.y89{bottom:805.981600pt;}
.ybd{bottom:810.461467pt;}
.y8f{bottom:814.141467pt;}
.y6{bottom:824.381467pt;}
.y45{bottom:833.501467pt;}
.y26{bottom:833.501600pt;}
.y8e{bottom:836.701467pt;}
.ybc{bottom:836.705307pt;}
.y5{bottom:851.901600pt;}
.y44{bottom:861.181467pt;}
.y25{bottom:861.181600pt;}
.ybb{bottom:862.141467pt;}
.y4{bottom:879.581600pt;}
.y43{bottom:888.701467pt;}
.y24{bottom:888.701600pt;}
.y3{bottom:909.020640pt;}
.y23{bottom:916.061600pt;}
.y42{bottom:916.381467pt;}
.y88{bottom:916.381600pt;}
.y2{bottom:941.181600pt;}
.y22{bottom:943.581600pt;}
.y41{bottom:943.901467pt;}
.h8{height:30.324375pt;}
.h9{height:46.609688pt;}
.h7{height:48.558750pt;}
.h2{height:49.365333pt;}
.he{height:51.663750pt;}
.ha{height:51.807500pt;}
.hc{height:52.296250pt;}
.h4{height:56.156250pt;}
.hb{height:56.312500pt;}
.h6{height:56.843750pt;}
.hd{height:61.391250pt;}
.h5{height:61.944154pt;}
.h3{height:66.507188pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x4{left:96.032000pt;}
.x2{left:100.992000pt;}
.x9{left:120.010667pt;}
.x7{left:143.221333pt;}
.xe{left:204.042667pt;}
.xf{left:206.106667pt;}
.x14{left:220.010667pt;}
.x10{left:225.950720pt;}
.xd{left:232.032000pt;}
.xc{left:233.946667pt;}
.xb{left:236.026667pt;}
.xa{left:237.952000pt;}
.x3{left:250.901760pt;}
.x11{left:336.866667pt;}
.x12{left:338.786667pt;}
.x13{left:450.970667pt;}
.x5{left:540.896000pt;}
.x8{left:713.365867pt;}
.x1{left:715.428533pt;}
.x6{left:720.133333pt;}
}




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