
    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_2604c43ea2305ff0a847734e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_24a4ddb122edef670870e993.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_a1716c06496462a87bd3cdf9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995000;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_6fb2765206c2ec11c960bdb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_b7f7a49fa2a9f02de762c867.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995000;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_50aac9bf21a9e022f29798e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.749000;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_68a1c8ac03c92575bedfcd35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998000;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_e089040e0703e72b42141450.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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_f0a1f6cebbd197b3bbec14da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993000;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);}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v3{vertical-align:18.481200px;}
.ls16{letter-spacing:-4.050000px;}
.ls7{letter-spacing:-1.665000px;}
.lse{letter-spacing:-1.387500px;}
.lsf{letter-spacing:-1.305000px;}
.ls8{letter-spacing:-1.110000px;}
.lsa{letter-spacing:-0.832500px;}
.ls15{letter-spacing:-0.675000px;}
.ls9{letter-spacing:-0.555000px;}
.lsc{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.450000px;}
.lsb{letter-spacing:-0.277500px;}
.ls14{letter-spacing:-0.225000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.450000px;}
.ls3{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.555000px;}
.ls5{letter-spacing:0.714000px;}
.ls2{letter-spacing:1.320000px;}
.lsd{letter-spacing:3.330000px;}
.ls0{letter-spacing:4.284000px;}
.ls11{letter-spacing:32.556000px;}
.ls12{letter-spacing:57.693600px;}
.ls13{letter-spacing:60.693000px;}
.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;}
}
.ws1{word-spacing:-22.134000px;}
.ws82{word-spacing:-21.375000px;}
.ws7e{word-spacing:-18.564000px;}
.ws3d{word-spacing:-17.205000px;}
.ws80{word-spacing:-14.430000px;}
.ws5{word-spacing:-13.875000px;}
.ws40{word-spacing:-13.597500px;}
.ws2{word-spacing:-13.320000px;}
.ws3{word-spacing:-12.960000px;}
.ws4{word-spacing:-12.000000px;}
.ws81{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.250000px;}
.ws6{word-spacing:-9.000000px;}
.ws3e{word-spacing:-8.089050px;}
.ws83{word-spacing:-7.200000px;}
.ws59{word-spacing:-6.826500px;}
.ws1c{word-spacing:-6.105000px;}
.ws39{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.625000px;}
.ws5f{word-spacing:-5.161500px;}
.ws50{word-spacing:-4.329000px;}
.ws51{word-spacing:-3.885000px;}
.ws47{word-spacing:-3.774000px;}
.ws7f{word-spacing:-3.385500px;}
.ws92{word-spacing:-3.108000px;}
.ws75{word-spacing:-2.997000px;}
.ws52{word-spacing:-2.775000px;}
.ws43{word-spacing:-2.719500px;}
.ws57{word-spacing:-2.608500px;}
.ws42{word-spacing:-2.553000px;}
.ws2f{word-spacing:-2.497500px;}
.wsd{word-spacing:-2.442000px;}
.ws55{word-spacing:-2.386500px;}
.ws78{word-spacing:-2.331000px;}
.ws34{word-spacing:-2.275500px;}
.ws22{word-spacing:-2.220000px;}
.ws9c{word-spacing:-2.205000px;}
.ws5b{word-spacing:-2.164500px;}
.ws33{word-spacing:-2.109000px;}
.ws1b{word-spacing:-2.053500px;}
.ws12{word-spacing:-1.998000px;}
.ws2d{word-spacing:-1.942500px;}
.ws30{word-spacing:-1.887000px;}
.ws18{word-spacing:-1.831500px;}
.ws98{word-spacing:-1.800000px;}
.ws13{word-spacing:-1.720500px;}
.ws49{word-spacing:-1.665000px;}
.ws45{word-spacing:-1.609500px;}
.ws9b{word-spacing:-1.575000px;}
.ws21{word-spacing:-1.554000px;}
.ws2e{word-spacing:-1.443000px;}
.ws1a{word-spacing:-1.387500px;}
.ws3c{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.276500px;}
.ws16{word-spacing:-1.221000px;}
.ws2b{word-spacing:-1.165500px;}
.ws26{word-spacing:-1.110000px;}
.ws2c{word-spacing:-1.054500px;}
.ws4f{word-spacing:-0.999000px;}
.ws7d{word-spacing:-0.945000px;}
.ws54{word-spacing:-0.943500px;}
.ws3b{word-spacing:-0.900000px;}
.ws67{word-spacing:-0.888000px;}
.ws4c{word-spacing:-0.832500px;}
.ws27{word-spacing:-0.777000px;}
.ws96{word-spacing:-0.765000px;}
.ws89{word-spacing:-0.721500px;}
.ws8{word-spacing:-0.714000px;}
.ws1f{word-spacing:-0.666000px;}
.ws3f{word-spacing:-0.610500px;}
.wsb{word-spacing:-0.555000px;}
.ws86{word-spacing:-0.499500px;}
.ws7{word-spacing:-0.495000px;}
.ws3a{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.444000px;}
.ws8c{word-spacing:-0.388500px;}
.ws74{word-spacing:-0.333000px;}
.ws94{word-spacing:-0.315000px;}
.ws38{word-spacing:-0.277500px;}
.ws4b{word-spacing:-0.222000px;}
.ws65{word-spacing:-0.166500px;}
.ws8b{word-spacing:-0.111000px;}
.ws31{word-spacing:-0.055500px;}
.ws9{word-spacing:0.000000px;}
.ws9a{word-spacing:0.045000px;}
.ws6e{word-spacing:0.111000px;}
.ws37{word-spacing:0.166500px;}
.ws5c{word-spacing:0.277500px;}
.ws70{word-spacing:0.333000px;}
.ws6d{word-spacing:0.388500px;}
.ws95{word-spacing:0.450000px;}
.ws56{word-spacing:0.555000px;}
.ws97{word-spacing:0.675000px;}
.ws35{word-spacing:0.721500px;}
.ws25{word-spacing:0.777000px;}
.ws4e{word-spacing:0.832500px;}
.ws15{word-spacing:0.888000px;}
.ws4d{word-spacing:0.999000px;}
.ws1e{word-spacing:1.054500px;}
.ws90{word-spacing:1.165500px;}
.ws62{word-spacing:1.221000px;}
.ws20{word-spacing:1.387500px;}
.ws14{word-spacing:1.443000px;}
.ws19{word-spacing:1.498500px;}
.ws44{word-spacing:1.776000px;}
.ws1d{word-spacing:1.887000px;}
.ws69{word-spacing:2.442000px;}
.ws7a{word-spacing:2.497500px;}
.ws58{word-spacing:2.553000px;}
.ws24{word-spacing:2.608500px;}
.ws8a{word-spacing:2.664000px;}
.ws41{word-spacing:2.719500px;}
.ws36{word-spacing:2.775000px;}
.ws4a{word-spacing:2.941500px;}
.wsf{word-spacing:3.052500px;}
.ws48{word-spacing:3.219000px;}
.ws32{word-spacing:3.496500px;}
.ws46{word-spacing:3.552000px;}
.ws6c{word-spacing:3.607500px;}
.ws60{word-spacing:3.718500px;}
.ws11{word-spacing:3.774000px;}
.ws88{word-spacing:3.829500px;}
.ws61{word-spacing:3.940500px;}
.ws84{word-spacing:3.996000px;}
.ws10{word-spacing:4.107000px;}
.ws2a{word-spacing:4.440000px;}
.ws87{word-spacing:4.995000px;}
.ws71{word-spacing:5.272500px;}
.ws5d{word-spacing:5.328000px;}
.ws5a{word-spacing:5.383500px;}
.ws29{word-spacing:5.494500px;}
.ws28{word-spacing:5.661000px;}
.ws23{word-spacing:5.716500px;}
.ws72{word-spacing:5.994000px;}
.ws6f{word-spacing:6.271500px;}
.ws64{word-spacing:6.327000px;}
.ws53{word-spacing:6.771000px;}
.ws5e{word-spacing:7.104000px;}
.ws66{word-spacing:7.270500px;}
.ws93{word-spacing:7.381500px;}
.ws8f{word-spacing:7.492500px;}
.ws7c{word-spacing:7.548000px;}
.ws63{word-spacing:7.659000px;}
.ws8e{word-spacing:7.881000px;}
.ws79{word-spacing:8.103000px;}
.wsc{word-spacing:8.158500px;}
.ws17{word-spacing:8.602500px;}
.ws85{word-spacing:8.824500px;}
.ws73{word-spacing:9.435000px;}
.ws6b{word-spacing:9.490500px;}
.ws6a{word-spacing:11.488500px;}
.ws76{word-spacing:11.766000px;}
.ws7b{word-spacing:11.877000px;}
.ws8d{word-spacing:12.654000px;}
.ws68{word-spacing:15.984000px;}
.wse{word-spacing:21.756000px;}
.ws99{word-spacing:60.705000px;}
._b{margin-left:-3166.232400px;}
._7{margin-left:-19.203000px;}
._d{margin-left:-15.163200px;}
._e{margin-left:-11.250000px;}
._6{margin-left:-6.807600px;}
._1{margin-left:-5.550000px;}
._0{margin-left:-3.570000px;}
._5{margin-left:-2.497500px;}
._4{margin-left:-1.004550px;}
._3{width:1.110000px;}
._2{width:2.497500px;}
._f{width:4.308000px;}
._9{width:7.470000px;}
._a{width:26.190000px;}
._8{width:32.556600px;}
._c{width:60.705000px;}
.fc2{color:rgb(6,128,189);}
.fc1{color:rgb(47,41,18);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:24.000000px;}
.fs9{font-size:30.000000px;}
.fsa{font-size:32.356200px;}
.fs7{font-size:36.000000px;}
.fs1{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:55.500000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:71.400000px;}
.fsb{font-size:85.500000px;}
.fs4{font-size:87.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.701200px;}
.yc8{bottom:101.187600px;}
.y74{bottom:101.251050px;}
.y1b{bottom:101.251200px;}
.yc7{bottom:101.412600px;}
.y30{bottom:101.571300px;}
.y70{bottom:101.756400px;}
.y2f{bottom:112.071300px;}
.yc6{bottom:115.437600px;}
.y6f{bottom:116.006400px;}
.y1a{bottom:119.101200px;}
.y2e{bottom:122.571300px;}
.yc5{bottom:129.462600px;}
.y2d{bottom:133.821300px;}
.y73{bottom:136.951050px;}
.y19{bottom:136.951200px;}
.yc4{bottom:143.487600px;}
.y72{bottom:154.801050px;}
.y18{bottom:154.801200px;}
.yc3{bottom:157.512600px;}
.y39{bottom:158.745750px;}
.yc2{bottom:171.537600px;}
.y62{bottom:172.651050px;}
.y17{bottom:172.651200px;}
.y38{bottom:172.995750px;}
.yc1{bottom:185.562600px;}
.y37{bottom:187.245750px;}
.y61{bottom:190.501050px;}
.y16{bottom:190.501200px;}
.yc0{bottom:199.587600px;}
.y36{bottom:201.495750px;}
.y60{bottom:208.351050px;}
.y15{bottom:208.351200px;}
.ybf{bottom:213.612600px;}
.y35{bottom:215.745750px;}
.y5f{bottom:226.201050px;}
.y14{bottom:226.201200px;}
.ybe{bottom:227.637600px;}
.y34{bottom:237.120750px;}
.ybd{bottom:241.662600px;}
.y5e{bottom:244.051050px;}
.y13{bottom:244.051200px;}
.y33{bottom:251.370750px;}
.ybc{bottom:255.687600px;}
.y5d{bottom:261.901050px;}
.y12{bottom:261.901200px;}
.y32{bottom:265.620750px;}
.ybb{bottom:269.712600px;}
.y5c{bottom:279.751050px;}
.y11{bottom:279.751200px;}
.y31{bottom:279.870750px;}
.yba{bottom:283.737600px;}
.y5b{bottom:297.601050px;}
.y10{bottom:297.601200px;}
.yb9{bottom:297.762600px;}
.yb8{bottom:311.787600px;}
.y5a{bottom:315.451050px;}
.yf{bottom:315.451200px;}
.yb7{bottom:325.812600px;}
.y59{bottom:333.301050px;}
.ye{bottom:333.301200px;}
.yb6{bottom:339.837600px;}
.y58{bottom:351.151050px;}
.yd{bottom:351.151200px;}
.yb5{bottom:353.862600px;}
.yb4{bottom:367.887600px;}
.y57{bottom:369.001050px;}
.yc{bottom:369.001200px;}
.yb3{bottom:381.912600px;}
.y56{bottom:386.851050px;}
.yb{bottom:386.851200px;}
.yb2{bottom:395.937600px;}
.y55{bottom:404.701050px;}
.ya{bottom:404.701200px;}
.yb1{bottom:409.962600px;}
.y54{bottom:422.551050px;}
.y9{bottom:422.551200px;}
.yb0{bottom:423.987600px;}
.yaf{bottom:438.012600px;}
.y53{bottom:440.401050px;}
.y8{bottom:440.401200px;}
.yae{bottom:452.037600px;}
.y52{bottom:458.251050px;}
.y7{bottom:458.251200px;}
.yad{bottom:466.062600px;}
.y51{bottom:476.101050px;}
.y6{bottom:476.101200px;}
.yac{bottom:480.087600px;}
.y50{bottom:493.951050px;}
.y5{bottom:493.951200px;}
.yab{bottom:494.112600px;}
.y4{bottom:511.801200px;}
.y3{bottom:529.651200px;}
.y6e{bottom:544.389900px;}
.y6d{bottom:570.639900px;}
.y6c{bottom:596.889900px;}
.y2c{bottom:601.051200px;}
.y2b{bottom:618.901200px;}
.y2a{bottom:636.751200px;}
.y4f{bottom:654.601050px;}
.y29{bottom:654.601200px;}
.yaa{bottom:655.045050px;}
.y8e{bottom:655.201200px;}
.ya9{bottom:669.144900px;}
.y8d{bottom:669.451200px;}
.y4e{bottom:672.451050px;}
.y6b{bottom:672.451200px;}
.ya8{bottom:683.244900px;}
.y8c{bottom:683.701200px;}
.y4d{bottom:690.301050px;}
.y6a{bottom:690.301200px;}
.ya7{bottom:697.345050px;}
.y8b{bottom:697.951200px;}
.y4c{bottom:708.151050px;}
.y28{bottom:708.151200px;}
.ya6{bottom:711.445050px;}
.y8a{bottom:712.201200px;}
.ya5{bottom:725.545050px;}
.y4b{bottom:726.001050px;}
.y27{bottom:726.001200px;}
.y89{bottom:726.451200px;}
.ya4{bottom:739.645050px;}
.y88{bottom:740.701200px;}
.y4a{bottom:743.851050px;}
.y26{bottom:743.851200px;}
.ya3{bottom:753.744900px;}
.y87{bottom:754.951200px;}
.y49{bottom:761.701050px;}
.y25{bottom:761.701200px;}
.ya2{bottom:767.845050px;}
.y86{bottom:769.201200px;}
.y48{bottom:779.551050px;}
.y69{bottom:779.551200px;}
.ya1{bottom:781.944900px;}
.y85{bottom:783.451200px;}
.ya0{bottom:796.045050px;}
.y47{bottom:797.401050px;}
.y24{bottom:797.401200px;}
.y84{bottom:797.701200px;}
.y9f{bottom:810.145050px;}
.y83{bottom:811.951200px;}
.y46{bottom:815.251050px;}
.y23{bottom:815.251350px;}
.y9e{bottom:824.244900px;}
.y82{bottom:826.201200px;}
.y45{bottom:833.101050px;}
.y22{bottom:833.101200px;}
.y9d{bottom:838.345050px;}
.y81{bottom:840.451200px;}
.y44{bottom:850.951050px;}
.y21{bottom:850.951200px;}
.y9c{bottom:852.444900px;}
.y80{bottom:854.701200px;}
.y9b{bottom:866.545050px;}
.y43{bottom:868.801050px;}
.y68{bottom:868.801200px;}
.y7f{bottom:868.951200px;}
.y9a{bottom:880.645050px;}
.y7e{bottom:883.201200px;}
.y42{bottom:886.651050px;}
.y67{bottom:886.651200px;}
.y99{bottom:894.744900px;}
.y20{bottom:896.101200px;}
.y7d{bottom:897.451200px;}
.y41{bottom:904.501050px;}
.y71{bottom:904.501200px;}
.y66{bottom:904.501350px;}
.y98{bottom:908.845050px;}
.y7c{bottom:911.701200px;}
.y40{bottom:922.351050px;}
.y1f{bottom:922.351200px;}
.y97{bottom:922.944900px;}
.y7b{bottom:925.951200px;}
.y96{bottom:937.045050px;}
.y3f{bottom:940.201050px;}
.y65{bottom:940.201200px;}
.y95{bottom:951.145050px;}
.y3e{bottom:958.051050px;}
.y1e{bottom:958.051200px;}
.y94{bottom:965.244900px;}
.y3d{bottom:975.901050px;}
.y64{bottom:975.901200px;}
.y7a{bottom:978.595050px;}
.y93{bottom:979.345050px;}
.y79{bottom:992.845050px;}
.y92{bottom:993.444900px;}
.y3c{bottom:993.751050px;}
.y1d{bottom:993.751350px;}
.y78{bottom:1007.095050px;}
.y91{bottom:1007.545050px;}
.y3b{bottom:1011.601200px;}
.y77{bottom:1021.345050px;}
.y90{bottom:1021.645050px;}
.y1c{bottom:1029.451200px;}
.y76{bottom:1035.595050px;}
.y8f{bottom:1035.744900px;}
.y3a{bottom:1047.301050px;}
.y63{bottom:1047.301200px;}
.y75{bottom:1049.845050px;}
.y1{bottom:1118.701200px;}
.ha{height:26.748000px;}
.hc{height:33.255000px;}
.he{height:33.390000px;}
.hb{height:33.435000px;}
.h9{height:35.472000px;}
.h3{height:36.255000px;}
.h5{height:41.014500px;}
.h4{height:41.181000px;}
.h8{height:41.236500px;}
.hf{height:42.123000px;}
.hd{height:42.392432px;}
.h2{height:52.978800px;}
.h7{height:64.641000px;}
.h6{height:97.944000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:38.773500px;}
.x2{left:63.779550px;}
.x14{left:70.157550px;}
.x15{left:81.765300px;}
.xb{left:85.108500px;}
.xc{left:103.025100px;}
.x4{left:317.806350px;}
.x5{left:335.792100px;}
.xd{left:339.066150px;}
.xe{left:357.051900px;}
.x6{left:571.833000px;}
.x7{left:589.818900px;}
.xf{left:593.092950px;}
.x11{left:599.470800px;}
.x10{left:611.078700px;}
.x12{left:622.508850px;}
.x3{left:634.500900px;}
.x13{left:673.109100px;}
.xa{left:703.360350px;}
.x8{left:825.859800px;}
.x1{left:829.133850px;}
@media print{
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v3{vertical-align:16.427733pt;}
.ls16{letter-spacing:-3.600000pt;}
.ls7{letter-spacing:-1.480000pt;}
.lse{letter-spacing:-1.233333pt;}
.lsf{letter-spacing:-1.160000pt;}
.ls8{letter-spacing:-0.986667pt;}
.lsa{letter-spacing:-0.740000pt;}
.ls15{letter-spacing:-0.600000pt;}
.ls9{letter-spacing:-0.493333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.400000pt;}
.lsb{letter-spacing:-0.246667pt;}
.ls14{letter-spacing:-0.200000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.400000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.493333pt;}
.ls5{letter-spacing:0.634667pt;}
.ls2{letter-spacing:1.173333pt;}
.lsd{letter-spacing:2.960000pt;}
.ls0{letter-spacing:3.808000pt;}
.ls11{letter-spacing:28.938667pt;}
.ls12{letter-spacing:51.283200pt;}
.ls13{letter-spacing:53.949333pt;}
.ws1{word-spacing:-19.674667pt;}
.ws82{word-spacing:-19.000000pt;}
.ws7e{word-spacing:-16.501333pt;}
.ws3d{word-spacing:-15.293333pt;}
.ws80{word-spacing:-12.826667pt;}
.ws5{word-spacing:-12.333333pt;}
.ws40{word-spacing:-12.086667pt;}
.ws2{word-spacing:-11.840000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws81{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.000000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws3e{word-spacing:-7.190267pt;}
.ws83{word-spacing:-6.400000pt;}
.ws59{word-spacing:-6.068000pt;}
.ws1c{word-spacing:-5.426667pt;}
.ws39{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.000000pt;}
.ws5f{word-spacing:-4.588000pt;}
.ws50{word-spacing:-3.848000pt;}
.ws51{word-spacing:-3.453333pt;}
.ws47{word-spacing:-3.354667pt;}
.ws7f{word-spacing:-3.009333pt;}
.ws92{word-spacing:-2.762667pt;}
.ws75{word-spacing:-2.664000pt;}
.ws52{word-spacing:-2.466667pt;}
.ws43{word-spacing:-2.417333pt;}
.ws57{word-spacing:-2.318667pt;}
.ws42{word-spacing:-2.269333pt;}
.ws2f{word-spacing:-2.220000pt;}
.wsd{word-spacing:-2.170667pt;}
.ws55{word-spacing:-2.121333pt;}
.ws78{word-spacing:-2.072000pt;}
.ws34{word-spacing:-2.022667pt;}
.ws22{word-spacing:-1.973333pt;}
.ws9c{word-spacing:-1.960000pt;}
.ws5b{word-spacing:-1.924000pt;}
.ws33{word-spacing:-1.874667pt;}
.ws1b{word-spacing:-1.825333pt;}
.ws12{word-spacing:-1.776000pt;}
.ws2d{word-spacing:-1.726667pt;}
.ws30{word-spacing:-1.677333pt;}
.ws18{word-spacing:-1.628000pt;}
.ws98{word-spacing:-1.600000pt;}
.ws13{word-spacing:-1.529333pt;}
.ws49{word-spacing:-1.480000pt;}
.ws45{word-spacing:-1.430667pt;}
.ws9b{word-spacing:-1.400000pt;}
.ws21{word-spacing:-1.381333pt;}
.ws2e{word-spacing:-1.282667pt;}
.ws1a{word-spacing:-1.233333pt;}
.ws3c{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.134667pt;}
.ws16{word-spacing:-1.085333pt;}
.ws2b{word-spacing:-1.036000pt;}
.ws26{word-spacing:-0.986667pt;}
.ws2c{word-spacing:-0.937333pt;}
.ws4f{word-spacing:-0.888000pt;}
.ws7d{word-spacing:-0.840000pt;}
.ws54{word-spacing:-0.838667pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws67{word-spacing:-0.789333pt;}
.ws4c{word-spacing:-0.740000pt;}
.ws27{word-spacing:-0.690667pt;}
.ws96{word-spacing:-0.680000pt;}
.ws89{word-spacing:-0.641333pt;}
.ws8{word-spacing:-0.634667pt;}
.ws1f{word-spacing:-0.592000pt;}
.ws3f{word-spacing:-0.542667pt;}
.wsb{word-spacing:-0.493333pt;}
.ws86{word-spacing:-0.444000pt;}
.ws7{word-spacing:-0.440000pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.394667pt;}
.ws8c{word-spacing:-0.345333pt;}
.ws74{word-spacing:-0.296000pt;}
.ws94{word-spacing:-0.280000pt;}
.ws38{word-spacing:-0.246667pt;}
.ws4b{word-spacing:-0.197333pt;}
.ws65{word-spacing:-0.148000pt;}
.ws8b{word-spacing:-0.098667pt;}
.ws31{word-spacing:-0.049333pt;}
.ws9{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.040000pt;}
.ws6e{word-spacing:0.098667pt;}
.ws37{word-spacing:0.148000pt;}
.ws5c{word-spacing:0.246667pt;}
.ws70{word-spacing:0.296000pt;}
.ws6d{word-spacing:0.345333pt;}
.ws95{word-spacing:0.400000pt;}
.ws56{word-spacing:0.493333pt;}
.ws97{word-spacing:0.600000pt;}
.ws35{word-spacing:0.641333pt;}
.ws25{word-spacing:0.690667pt;}
.ws4e{word-spacing:0.740000pt;}
.ws15{word-spacing:0.789333pt;}
.ws4d{word-spacing:0.888000pt;}
.ws1e{word-spacing:0.937333pt;}
.ws90{word-spacing:1.036000pt;}
.ws62{word-spacing:1.085333pt;}
.ws20{word-spacing:1.233333pt;}
.ws14{word-spacing:1.282667pt;}
.ws19{word-spacing:1.332000pt;}
.ws44{word-spacing:1.578667pt;}
.ws1d{word-spacing:1.677333pt;}
.ws69{word-spacing:2.170667pt;}
.ws7a{word-spacing:2.220000pt;}
.ws58{word-spacing:2.269333pt;}
.ws24{word-spacing:2.318667pt;}
.ws8a{word-spacing:2.368000pt;}
.ws41{word-spacing:2.417333pt;}
.ws36{word-spacing:2.466667pt;}
.ws4a{word-spacing:2.614667pt;}
.wsf{word-spacing:2.713333pt;}
.ws48{word-spacing:2.861333pt;}
.ws32{word-spacing:3.108000pt;}
.ws46{word-spacing:3.157333pt;}
.ws6c{word-spacing:3.206667pt;}
.ws60{word-spacing:3.305333pt;}
.ws11{word-spacing:3.354667pt;}
.ws88{word-spacing:3.404000pt;}
.ws61{word-spacing:3.502667pt;}
.ws84{word-spacing:3.552000pt;}
.ws10{word-spacing:3.650667pt;}
.ws2a{word-spacing:3.946667pt;}
.ws87{word-spacing:4.440000pt;}
.ws71{word-spacing:4.686667pt;}
.ws5d{word-spacing:4.736000pt;}
.ws5a{word-spacing:4.785333pt;}
.ws29{word-spacing:4.884000pt;}
.ws28{word-spacing:5.032000pt;}
.ws23{word-spacing:5.081333pt;}
.ws72{word-spacing:5.328000pt;}
.ws6f{word-spacing:5.574667pt;}
.ws64{word-spacing:5.624000pt;}
.ws53{word-spacing:6.018667pt;}
.ws5e{word-spacing:6.314667pt;}
.ws66{word-spacing:6.462667pt;}
.ws93{word-spacing:6.561333pt;}
.ws8f{word-spacing:6.660000pt;}
.ws7c{word-spacing:6.709333pt;}
.ws63{word-spacing:6.808000pt;}
.ws8e{word-spacing:7.005333pt;}
.ws79{word-spacing:7.202667pt;}
.wsc{word-spacing:7.252000pt;}
.ws17{word-spacing:7.646667pt;}
.ws85{word-spacing:7.844000pt;}
.ws73{word-spacing:8.386667pt;}
.ws6b{word-spacing:8.436000pt;}
.ws6a{word-spacing:10.212000pt;}
.ws76{word-spacing:10.458667pt;}
.ws7b{word-spacing:10.557333pt;}
.ws8d{word-spacing:11.248000pt;}
.ws68{word-spacing:14.208000pt;}
.wse{word-spacing:19.338667pt;}
.ws99{word-spacing:53.960000pt;}
._b{margin-left:-2814.428800pt;}
._7{margin-left:-17.069333pt;}
._d{margin-left:-13.478400pt;}
._e{margin-left:-10.000000pt;}
._6{margin-left:-6.051200pt;}
._1{margin-left:-4.933333pt;}
._0{margin-left:-3.173333pt;}
._5{margin-left:-2.220000pt;}
._4{margin-left:-0.892933pt;}
._3{width:0.986667pt;}
._2{width:2.220000pt;}
._f{width:3.829333pt;}
._9{width:6.640000pt;}
._a{width:23.280000pt;}
._8{width:28.939200pt;}
._c{width:53.960000pt;}
.fs8{font-size:21.333333pt;}
.fs9{font-size:26.666667pt;}
.fsa{font-size:28.761067pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:49.333333pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:63.466667pt;}
.fsb{font-size:76.000000pt;}
.fs4{font-size:77.333333pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.401067pt;}
.yc8{bottom:89.944533pt;}
.y74{bottom:90.000933pt;}
.y1b{bottom:90.001067pt;}
.yc7{bottom:90.144533pt;}
.y30{bottom:90.285600pt;}
.y70{bottom:90.450133pt;}
.y2f{bottom:99.618933pt;}
.yc6{bottom:102.611200pt;}
.y6f{bottom:103.116800pt;}
.y1a{bottom:105.867733pt;}
.y2e{bottom:108.952267pt;}
.yc5{bottom:115.077867pt;}
.y2d{bottom:118.952267pt;}
.y73{bottom:121.734267pt;}
.y19{bottom:121.734400pt;}
.yc4{bottom:127.544533pt;}
.y72{bottom:137.600933pt;}
.y18{bottom:137.601067pt;}
.yc3{bottom:140.011200pt;}
.y39{bottom:141.107333pt;}
.yc2{bottom:152.477867pt;}
.y62{bottom:153.467600pt;}
.y17{bottom:153.467733pt;}
.y38{bottom:153.774000pt;}
.yc1{bottom:164.944533pt;}
.y37{bottom:166.440667pt;}
.y61{bottom:169.334267pt;}
.y16{bottom:169.334400pt;}
.yc0{bottom:177.411200pt;}
.y36{bottom:179.107333pt;}
.y60{bottom:185.200933pt;}
.y15{bottom:185.201067pt;}
.ybf{bottom:189.877867pt;}
.y35{bottom:191.774000pt;}
.y5f{bottom:201.067600pt;}
.y14{bottom:201.067733pt;}
.ybe{bottom:202.344533pt;}
.y34{bottom:210.774000pt;}
.ybd{bottom:214.811200pt;}
.y5e{bottom:216.934267pt;}
.y13{bottom:216.934400pt;}
.y33{bottom:223.440667pt;}
.ybc{bottom:227.277867pt;}
.y5d{bottom:232.800933pt;}
.y12{bottom:232.801067pt;}
.y32{bottom:236.107333pt;}
.ybb{bottom:239.744533pt;}
.y5c{bottom:248.667600pt;}
.y11{bottom:248.667733pt;}
.y31{bottom:248.774000pt;}
.yba{bottom:252.211200pt;}
.y5b{bottom:264.534267pt;}
.y10{bottom:264.534400pt;}
.yb9{bottom:264.677867pt;}
.yb8{bottom:277.144533pt;}
.y5a{bottom:280.400933pt;}
.yf{bottom:280.401067pt;}
.yb7{bottom:289.611200pt;}
.y59{bottom:296.267600pt;}
.ye{bottom:296.267733pt;}
.yb6{bottom:302.077867pt;}
.y58{bottom:312.134267pt;}
.yd{bottom:312.134400pt;}
.yb5{bottom:314.544533pt;}
.yb4{bottom:327.011200pt;}
.y57{bottom:328.000933pt;}
.yc{bottom:328.001067pt;}
.yb3{bottom:339.477867pt;}
.y56{bottom:343.867600pt;}
.yb{bottom:343.867733pt;}
.yb2{bottom:351.944533pt;}
.y55{bottom:359.734267pt;}
.ya{bottom:359.734400pt;}
.yb1{bottom:364.411200pt;}
.y54{bottom:375.600933pt;}
.y9{bottom:375.601067pt;}
.yb0{bottom:376.877867pt;}
.yaf{bottom:389.344533pt;}
.y53{bottom:391.467600pt;}
.y8{bottom:391.467733pt;}
.yae{bottom:401.811200pt;}
.y52{bottom:407.334267pt;}
.y7{bottom:407.334400pt;}
.yad{bottom:414.277867pt;}
.y51{bottom:423.200933pt;}
.y6{bottom:423.201067pt;}
.yac{bottom:426.744533pt;}
.y50{bottom:439.067600pt;}
.y5{bottom:439.067733pt;}
.yab{bottom:439.211200pt;}
.y4{bottom:454.934400pt;}
.y3{bottom:470.801067pt;}
.y6e{bottom:483.902133pt;}
.y6d{bottom:507.235467pt;}
.y6c{bottom:530.568800pt;}
.y2c{bottom:534.267733pt;}
.y2b{bottom:550.134400pt;}
.y2a{bottom:566.001067pt;}
.y4f{bottom:581.867600pt;}
.y29{bottom:581.867733pt;}
.yaa{bottom:582.262267pt;}
.y8e{bottom:582.401067pt;}
.ya9{bottom:594.795467pt;}
.y8d{bottom:595.067733pt;}
.y4e{bottom:597.734267pt;}
.y6b{bottom:597.734400pt;}
.ya8{bottom:607.328800pt;}
.y8c{bottom:607.734400pt;}
.y4d{bottom:613.600933pt;}
.y6a{bottom:613.601067pt;}
.ya7{bottom:619.862267pt;}
.y8b{bottom:620.401067pt;}
.y4c{bottom:629.467600pt;}
.y28{bottom:629.467733pt;}
.ya6{bottom:632.395600pt;}
.y8a{bottom:633.067733pt;}
.ya5{bottom:644.928933pt;}
.y4b{bottom:645.334267pt;}
.y27{bottom:645.334400pt;}
.y89{bottom:645.734400pt;}
.ya4{bottom:657.462267pt;}
.y88{bottom:658.401067pt;}
.y4a{bottom:661.200933pt;}
.y26{bottom:661.201067pt;}
.ya3{bottom:669.995467pt;}
.y87{bottom:671.067733pt;}
.y49{bottom:677.067600pt;}
.y25{bottom:677.067733pt;}
.ya2{bottom:682.528933pt;}
.y86{bottom:683.734400pt;}
.y48{bottom:692.934267pt;}
.y69{bottom:692.934400pt;}
.ya1{bottom:695.062133pt;}
.y85{bottom:696.401067pt;}
.ya0{bottom:707.595600pt;}
.y47{bottom:708.800933pt;}
.y24{bottom:708.801067pt;}
.y84{bottom:709.067733pt;}
.y9f{bottom:720.128933pt;}
.y83{bottom:721.734400pt;}
.y46{bottom:724.667600pt;}
.y23{bottom:724.667867pt;}
.y9e{bottom:732.662133pt;}
.y82{bottom:734.401067pt;}
.y45{bottom:740.534267pt;}
.y22{bottom:740.534400pt;}
.y9d{bottom:745.195600pt;}
.y81{bottom:747.067733pt;}
.y44{bottom:756.400933pt;}
.y21{bottom:756.401067pt;}
.y9c{bottom:757.728800pt;}
.y80{bottom:759.734400pt;}
.y9b{bottom:770.262267pt;}
.y43{bottom:772.267600pt;}
.y68{bottom:772.267733pt;}
.y7f{bottom:772.401067pt;}
.y9a{bottom:782.795600pt;}
.y7e{bottom:785.067733pt;}
.y42{bottom:788.134267pt;}
.y67{bottom:788.134400pt;}
.y99{bottom:795.328800pt;}
.y20{bottom:796.534400pt;}
.y7d{bottom:797.734400pt;}
.y41{bottom:804.000933pt;}
.y71{bottom:804.001067pt;}
.y66{bottom:804.001200pt;}
.y98{bottom:807.862267pt;}
.y7c{bottom:810.401067pt;}
.y40{bottom:819.867600pt;}
.y1f{bottom:819.867733pt;}
.y97{bottom:820.395467pt;}
.y7b{bottom:823.067733pt;}
.y96{bottom:832.928933pt;}
.y3f{bottom:835.734267pt;}
.y65{bottom:835.734400pt;}
.y95{bottom:845.462267pt;}
.y3e{bottom:851.600933pt;}
.y1e{bottom:851.601067pt;}
.y94{bottom:857.995467pt;}
.y3d{bottom:867.467600pt;}
.y64{bottom:867.467733pt;}
.y7a{bottom:869.862267pt;}
.y93{bottom:870.528933pt;}
.y79{bottom:882.528933pt;}
.y92{bottom:883.062133pt;}
.y3c{bottom:883.334267pt;}
.y1d{bottom:883.334533pt;}
.y78{bottom:895.195600pt;}
.y91{bottom:895.595600pt;}
.y3b{bottom:899.201067pt;}
.y77{bottom:907.862267pt;}
.y90{bottom:908.128933pt;}
.y1c{bottom:915.067733pt;}
.y76{bottom:920.528933pt;}
.y8f{bottom:920.662133pt;}
.y3a{bottom:930.934267pt;}
.y63{bottom:930.934400pt;}
.y75{bottom:933.195600pt;}
.y1{bottom:994.401067pt;}
.ha{height:23.776000pt;}
.hc{height:29.560000pt;}
.he{height:29.680000pt;}
.hb{height:29.720000pt;}
.h9{height:31.530667pt;}
.h3{height:32.226667pt;}
.h5{height:36.457333pt;}
.h4{height:36.605333pt;}
.h8{height:36.654667pt;}
.hf{height:37.442667pt;}
.hd{height:37.682162pt;}
.h2{height:47.092267pt;}
.h7{height:57.458667pt;}
.h6{height:87.061333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:34.465333pt;}
.x2{left:56.692933pt;}
.x14{left:62.362267pt;}
.x15{left:72.680267pt;}
.xb{left:75.652000pt;}
.xc{left:91.577867pt;}
.x4{left:282.494533pt;}
.x5{left:298.481867pt;}
.xd{left:301.392133pt;}
.xe{left:317.379467pt;}
.x6{left:508.296000pt;}
.x7{left:524.283467pt;}
.xf{left:527.193733pt;}
.x11{left:532.862933pt;}
.x10{left:543.181067pt;}
.x12{left:553.341200pt;}
.x3{left:564.000800pt;}
.x13{left:598.319200pt;}
.xa{left:625.209200pt;}
.x8{left:734.097600pt;}
.x1{left:737.007867pt;}
}




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