
    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_b8c7130793271bfd3626237f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_447b17f0e836b5012be33dd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_271746479ecbec9556227c6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_91ebc103966eb56a52652621.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_4d0084a6d0e920ce6b0e2b4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_f64d0e45b0981fe626291142.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_869fb3e00a94a59732f36569.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_27ad8102faf26d6c10565719.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_f9520e1881b940250ee491a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.981934;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_6c2cb2ded3b4d163a8f8669f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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_1b2327a81ccb099b14f38aa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_c049e9e128fce670450109f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_364d6179c7aab00d73d62ab3.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_ec31ea1c4e9f4a5ebf3e3b45.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa41de280cb29466ecfd1abc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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:ff15;src:url('chunks/assets/font_0a7ea510aa39fff42292a9b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,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);}
.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:-33.120000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls16{letter-spacing:-0.996000px;}
.ls15{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.022320px;}
.ls5{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.576000px;}
.ls29{letter-spacing:3.168000px;}
.ls11{letter-spacing:4.608000px;}
.ls1c{letter-spacing:6.768000px;}
.ls23{letter-spacing:9.648000px;}
.ls17{letter-spacing:10.368000px;}
.ls27{letter-spacing:11.694240px;}
.ls1a{letter-spacing:12.528000px;}
.ls1e{letter-spacing:13.968000px;}
.ls24{letter-spacing:19.728000px;}
.ls25{letter-spacing:24.768000px;}
.ls0{letter-spacing:29.597040px;}
.ls26{letter-spacing:32.688000px;}
.ls19{letter-spacing:155.640000px;}
.ls18{letter-spacing:208.200000px;}
.lsd{letter-spacing:264.360000px;}
.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;}
}
.ws12{word-spacing:-16.848000px;}
.wsc{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.ws15{word-spacing:-16.200000px;}
.ws10{word-spacing:-16.128000px;}
.ws6{word-spacing:-16.056000px;}
.ws14{word-spacing:-15.984000px;}
.wsb{word-spacing:-15.912000px;}
.wsa{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.624000px;}
.wsd{word-spacing:-15.480000px;}
.wse{word-spacing:-15.336000px;}
.ws11{word-spacing:-15.226440px;}
.ws0{word-spacing:-10.902240px;}
.ws13{word-spacing:-10.776240px;}
.wsf{word-spacing:-9.906240px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.196545px;}
._1{width:1.023853px;}
._7{width:2.613005px;}
._f{width:3.821660px;}
._3{width:4.953170px;}
._2{width:6.048000px;}
._d{width:7.128000px;}
._6{width:8.352000px;}
._8{width:9.696024px;}
._10{width:11.324545px;}
._5{width:12.672000px;}
._4{width:13.800024px;}
._e{width:14.984099px;}
._11{width:17.724441px;}
._c{width:19.545758px;}
._b{width:20.808000px;}
._13{width:22.568545px;}
._12{width:23.688000px;}
._14{width:24.804441px;}
._15{width:25.988147px;}
._16{width:27.190677px;}
._17{width:28.290941px;}
._22{width:30.184384px;}
._21{width:31.494796px;}
._1e{width:32.785237px;}
._a{width:33.900000px;}
._9{width:34.920000px;}
._19{width:36.216000px;}
._1f{width:37.512000px;}
._1c{width:45.392545px;}
._1b{width:47.232000px;}
._26{width:54.288000px;}
._25{width:64.264692px;}
._24{width:65.448000px;}
._28{width:122.184000px;}
._27{width:123.264000px;}
._1a{width:159.744000px;}
._1d{width:195.960000px;}
._20{width:265.440000px;}
._23{width:302.160000px;}
._18{width:401.616000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(31,78,121);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y21{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.yd9{bottom:111.600000px;}
.y129{bottom:112.860000px;}
.y40{bottom:114.480000px;}
.yfb{bottom:120.600000px;}
.yc9{bottom:123.480000px;}
.y4e{bottom:126.540000px;}
.y99{bottom:126.720000px;}
.y150{bottom:128.520000px;}
.yab{bottom:132.480000px;}
.yb9{bottom:132.660000px;}
.y128{bottom:134.820000px;}
.y63{bottom:135.540000px;}
.y8f{bottom:135.720000px;}
.y7d{bottom:141.480000px;}
.yd8{bottom:144.540000px;}
.y3f{bottom:147.600000px;}
.y14f{bottom:150.480000px;}
.yfa{bottom:153.360000px;}
.yc8{bottom:156.420000px;}
.y127{bottom:156.780000px;}
.y4d{bottom:159.480000px;}
.yaa{bottom:165.420000px;}
.y102{bottom:165.960000px;}
.y62{bottom:168.480000px;}
.y14e{bottom:172.440000px;}
.y7c{bottom:174.420000px;}
.yd7{bottom:177.480000px;}
.yb8{bottom:177.660000px;}
.y126{bottom:178.740000px;}
.y3e{bottom:180.540000px;}
.y8e{bottom:180.720000px;}
.y1e{bottom:181.260000px;}
.yf9{bottom:186.480000px;}
.yc7{bottom:189.360000px;}
.y4c{bottom:192.420000px;}
.y14d{bottom:194.580000px;}
.ya9{bottom:198.360000px;}
.y125{bottom:200.700000px;}
.y61{bottom:201.420000px;}
.y101{bottom:201.600000px;}
.y7b{bottom:207.390000px;}
.yb7{bottom:210.450000px;}
.y3d{bottom:213.510000px;}
.y1d{bottom:214.050000px;}
.y14c{bottom:216.570000px;}
.yf8{bottom:219.450000px;}
.yc6{bottom:222.510000px;}
.y124{bottom:222.690000px;}
.y4b{bottom:225.390000px;}
.ya8{bottom:231.330000px;}
.y60{bottom:234.390000px;}
.y14b{bottom:238.530000px;}
.y7a{bottom:240.330000px;}
.yb6{bottom:243.390000px;}
.y123{bottom:244.650000px;}
.y3c{bottom:246.450000px;}
.y100{bottom:246.630000px;}
.y1c{bottom:246.990000px;}
.yf7{bottom:252.390000px;}
.yc5{bottom:255.450000px;}
.y4a{bottom:258.510000px;}
.y14a{bottom:260.490000px;}
.ya7{bottom:264.270000px;}
.y122{bottom:266.610000px;}
.y5f{bottom:267.330000px;}
.y79{bottom:273.270000px;}
.yb5{bottom:276.330000px;}
.ybd{bottom:276.510000px;}
.y3b{bottom:279.390000px;}
.y1b{bottom:279.930000px;}
.y149{bottom:282.450000px;}
.yf6{bottom:285.330000px;}
.yc4{bottom:288.390000px;}
.yd6{bottom:288.570000px;}
.y49{bottom:291.450000px;}
.ya6{bottom:297.210000px;}
.y5e{bottom:300.270000px;}
.y148{bottom:304.410000px;}
.y78{bottom:306.210000px;}
.yb4{bottom:309.270000px;}
.y121{bottom:310.530000px;}
.y8b{bottom:312.330000px;}
.y1a{bottom:313.050000px;}
.yf5{bottom:318.270000px;}
.yd5{bottom:321.330000px;}
.ybc{bottom:321.510000px;}
.y48{bottom:324.390000px;}
.y3a{bottom:324.570000px;}
.y147{bottom:326.370000px;}
.yeb{bottom:330.330000px;}
.y120{bottom:332.490000px;}
.y5d{bottom:333.210000px;}
.yc3{bottom:333.390000px;}
.y77{bottom:339.150000px;}
.yb3{bottom:342.210000px;}
.ya5{bottom:342.390000px;}
.y8a{bottom:345.270000px;}
.y19{bottom:345.990000px;}
.y146{bottom:348.330000px;}
.yd4{bottom:354.270000px;}
.y11f{bottom:354.630000px;}
.y39{bottom:357.330000px;}
.yea{bottom:363.270000px;}
.yf4{bottom:363.450000px;}
.y5c{bottom:366.330000px;}
.ybb{bottom:366.510000px;}
.y145{bottom:370.290000px;}
.y76{bottom:372.090000px;}
.ya4{bottom:375.150000px;}
.y11e{bottom:376.590000px;}
.y89{bottom:378.210000px;}
.yc2{bottom:378.390000px;}
.y18{bottom:378.930000px;}
.yd3{bottom:387.210000px;}
.y38{bottom:390.270000px;}
.y8d{bottom:390.450000px;}
.y144{bottom:392.250000px;}
.ye9{bottom:396.210000px;}
.y11d{bottom:398.550000px;}
.y5b{bottom:399.270000px;}
.y75{bottom:405.210000px;}
.yb2{bottom:408.090000px;}
.y88{bottom:411.150000px;}
.y17{bottom:411.870000px;}
.y143{bottom:414.210000px;}
.yd2{bottom:420.150000px;}
.ya3{bottom:420.330000px;}
.y11c{bottom:420.510000px;}
.y37{bottom:423.210000px;}
.ye8{bottom:429.150000px;}
.y5a{bottom:432.210000px;}
.y142{bottom:436.170000px;}
.y11b{bottom:442.515000px;}
.y87{bottom:444.135000px;}
.y16{bottom:444.855000px;}
.y74{bottom:450.255000px;}
.yd1{bottom:453.135000px;}
.yb1{bottom:453.315000px;}
.y36{bottom:456.195000px;}
.y141{bottom:458.175000px;}
.ye7{bottom:462.135000px;}
.y11a{bottom:464.475000px;}
.y59{bottom:465.195000px;}
.ya2{bottom:465.375000px;}
.yc1{bottom:477.255000px;}
.y15{bottom:477.795000px;}
.y140{bottom:480.135000px;}
.y73{bottom:483.015000px;}
.yd0{bottom:486.075000px;}
.y119{bottom:486.435000px;}
.y35{bottom:489.135000px;}
.y86{bottom:489.315000px;}
.yf3{bottom:495.075000px;}
.y58{bottom:498.135000px;}
.yb0{bottom:498.315000px;}
.y13f{bottom:502.275000px;}
.ye6{bottom:507.315000px;}
.y118{bottom:508.395000px;}
.yc0{bottom:510.195000px;}
.y14{bottom:510.735000px;}
.y34{bottom:522.075000px;}
.y13e{bottom:524.235000px;}
.yf2{bottom:528.015000px;}
.y72{bottom:528.195000px;}
.y117{bottom:530.355000px;}
.y57{bottom:531.075000px;}
.ycf{bottom:531.255000px;}
.y85{bottom:534.315000px;}
.y152{bottom:537.735000px;}
.ye5{bottom:540.075000px;}
.yff{bottom:543.135000px;}
.y13{bottom:543.675000px;}
.y13d{bottom:546.195000px;}
.y116{bottom:552.315000px;}
.y33{bottom:555.015000px;}
.ybf{bottom:555.195000px;}
.y56{bottom:564.015000px;}
.y84{bottom:567.075000px;}
.y13c{bottom:568.155000px;}
.y151{bottom:571.035000px;}
.ye4{bottom:573.015000px;}
.y71{bottom:573.195000px;}
.y115{bottom:574.275000px;}
.yfe{bottom:576.075000px;}
.y12{bottom:576.615000px;}
.y32{bottom:588.135000px;}
.y13b{bottom:590.115000px;}
.y114{bottom:596.235000px;}
.ya1{bottom:596.955000px;}
.y83{bottom:600.015000px;}
.ybe{bottom:600.195000px;}
.y70{bottom:605.955000px;}
.y55{bottom:609.195000px;}
.y11{bottom:609.735000px;}
.y13a{bottom:612.075000px;}
.yf1{bottom:618.195000px;}
.y31{bottom:621.075000px;}
.yfd{bottom:621.255000px;}
.ya0{bottom:629.895000px;}
.y82{bottom:632.955000px;}
.y139{bottom:634.035000px;}
.y6f{bottom:638.895000px;}
.y113{bottom:640.155000px;}
.y10{bottom:642.675000px;}
.y98{bottom:645.195000px;}
.yf0{bottom:650.955000px;}
.y30{bottom:654.015000px;}
.y54{bottom:654.195000px;}
.y138{bottom:655.995000px;}
.y112{bottom:662.295000px;}
.y9f{bottom:663.015000px;}
.y81{bottom:665.895000px;}
.y8c{bottom:666.075000px;}
.y6e{bottom:671.835000px;}
.yaf{bottom:675.075000px;}
.yf{bottom:675.615000px;}
.y97{bottom:677.985000px;}
.yef{bottom:683.925000px;}
.ye3{bottom:684.105000px;}
.y111{bottom:684.285000px;}
.y2f{bottom:686.985000px;}
.y9e{bottom:695.985000px;}
.y80{bottom:699.045000px;}
.y47{bottom:699.225000px;}
.y137{bottom:699.945000px;}
.y110{bottom:706.245000px;}
.ye{bottom:708.585000px;}
.y96{bottom:710.925000px;}
.yfc{bottom:711.105000px;}
.ye2{bottom:716.865000px;}
.y6d{bottom:717.045000px;}
.y2e{bottom:719.925000px;}
.yae{bottom:720.105000px;}
.y136{bottom:721.905000px;}
.y10f{bottom:728.205000px;}
.y9d{bottom:728.925000px;}
.y46{bottom:731.985000px;}
.yd{bottom:741.525000px;}
.y95{bottom:743.865000px;}
.ye1{bottom:749.805000px;}
.y10e{bottom:750.165000px;}
.y2d{bottom:752.865000px;}
.yce{bottom:761.865000px;}
.y6c{bottom:762.045000px;}
.y45{bottom:764.925000px;}
.yad{bottom:765.105000px;}
.y135{bottom:765.825000px;}
.y10d{bottom:772.125000px;}
.y9c{bottom:774.105000px;}
.yc{bottom:774.465000px;}
.y94{bottom:776.805000px;}
.ye0{bottom:782.745000px;}
.y134{bottom:787.785000px;}
.y10c{bottom:794.085000px;}
.y6b{bottom:794.805000px;}
.y44{bottom:797.865000px;}
.y2c{bottom:798.045000px;}
.ycd{bottom:807.045000px;}
.y93{bottom:809.925000px;}
.yac{bottom:810.105000px;}
.ydf{bottom:815.685000px;}
.y10b{bottom:816.045000px;}
.y9b{bottom:818.925000px;}
.yb{bottom:819.645000px;}
.y6a{bottom:827.745000px;}
.y2b{bottom:830.805000px;}
.y133{bottom:831.885000px;}
.y10a{bottom:838.005000px;}
.y92{bottom:842.865000px;}
.yba{bottom:843.045000px;}
.yee{bottom:848.805000px;}
.ycc{bottom:851.865000px;}
.y132{bottom:853.845000px;}
.y109{bottom:859.965000px;}
.y69{bottom:860.685000px;}
.yde{bottom:860.865000px;}
.y2a{bottom:863.745000px;}
.y9a{bottom:863.925000px;}
.ya{bottom:864.645000px;}
.y91{bottom:875.805000px;}
.yed{bottom:881.745000px;}
.y108{bottom:881.925000px;}
.y154{bottom:882.000000px;}
.y68{bottom:893.625000px;}
.y29{bottom:896.685000px;}
.ycb{bottom:896.865000px;}
.y9{bottom:897.405000px;}
.y131{bottom:897.765000px;}
.y153{bottom:900.000000px;}
.y107{bottom:903.885000px;}
.ydd{bottom:905.865000px;}
.y90{bottom:908.745000px;}
.y53{bottom:908.925000px;}
.y130{bottom:919.770000px;}
.y106{bottom:925.890000px;}
.y67{bottom:926.610000px;}
.yec{bottom:926.790000px;}
.y28{bottom:929.670000px;}
.y52{bottom:941.730000px;}
.y8{bottom:943.530000px;}
.y105{bottom:947.850000px;}
.ydc{bottom:950.910000px;}
.y27{bottom:962.610000px;}
.y12f{bottom:963.690000px;}
.y7{bottom:968.910000px;}
.y66{bottom:971.790000px;}
.y51{bottom:974.670000px;}
.ydb{bottom:983.670000px;}
.y12e{bottom:985.650000px;}
.y6{bottom:985.830000px;}
.y104{bottom:993.030000px;}
.y26{bottom:995.550000px;}
.y50{bottom:1007.610000px;}
.yda{bottom:1016.610000px;}
.y65{bottom:1016.790000px;}
.y5{bottom:1019.310000px;}
.y43{bottom:1028.670000px;}
.y103{bottom:1028.850000px;}
.y12d{bottom:1029.570000px;}
.y4f{bottom:1040.550000px;}
.y25{bottom:1040.730000px;}
.y12c{bottom:1051.530000px;}
.y4{bottom:1056.210000px;}
.y42{bottom:1061.610000px;}
.y64{bottom:1061.790000px;}
.y24{bottom:1073.490000px;}
.yca{bottom:1073.670000px;}
.y3{bottom:1088.970000px;}
.y7f{bottom:1094.550000px;}
.y12b{bottom:1095.450000px;}
.y23{bottom:1106.430000px;}
.y41{bottom:1106.610000px;}
.y12a{bottom:1117.590000px;}
.y2{bottom:1136.670000px;}
.y22{bottom:1139.550000px;}
.y7e{bottom:1139.730000px;}
.y156{bottom:1152.000000px;}
.y155{bottom:1170.000000px;}
.y20{bottom:1203.841500px;}
.y1f{bottom:1225.441500px;}
.h5{height:38.818125px;}
.hb{height:48.088125px;}
.h8{height:51.264000px;}
.h2{height:53.302500px;}
.h7{height:57.867188px;}
.h6{height:57.937500px;}
.hd{height:62.578125px;}
.h3{height:67.704609px;}
.h4{height:71.938125px;}
.ha{height:74.004654px;}
.h9{height:74.953125px;}
.hc{height:918.000000px;}
.he{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x5{left:7.500000px;}
.x2{left:84.960000px;}
.x3{left:87.382500px;}
.x4{left:791.250000px;}
.x1{left:799.740000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls16{letter-spacing:-0.885333pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.019840pt;}
.ls5{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls29{letter-spacing:2.816000pt;}
.ls11{letter-spacing:4.096000pt;}
.ls1c{letter-spacing:6.016000pt;}
.ls23{letter-spacing:8.576000pt;}
.ls17{letter-spacing:9.216000pt;}
.ls27{letter-spacing:10.394880pt;}
.ls1a{letter-spacing:11.136000pt;}
.ls1e{letter-spacing:12.416000pt;}
.ls24{letter-spacing:17.536000pt;}
.ls25{letter-spacing:22.016000pt;}
.ls0{letter-spacing:26.308480pt;}
.ls26{letter-spacing:29.056000pt;}
.ls19{letter-spacing:138.346667pt;}
.ls18{letter-spacing:185.066667pt;}
.lsd{letter-spacing:234.986667pt;}
.ws12{word-spacing:-14.976000pt;}
.wsc{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws15{word-spacing:-14.400000pt;}
.ws10{word-spacing:-14.336000pt;}
.ws6{word-spacing:-14.272000pt;}
.ws14{word-spacing:-14.208000pt;}
.wsb{word-spacing:-14.144000pt;}
.wsa{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.888000pt;}
.wsd{word-spacing:-13.760000pt;}
.wse{word-spacing:-13.632000pt;}
.ws11{word-spacing:-13.534613pt;}
.ws0{word-spacing:-9.690880pt;}
.ws13{word-spacing:-9.578880pt;}
.wsf{word-spacing:-8.805547pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.063596pt;}
._1{width:0.910092pt;}
._7{width:2.322671pt;}
._f{width:3.397031pt;}
._3{width:4.402818pt;}
._2{width:5.376000pt;}
._d{width:6.336000pt;}
._6{width:7.424000pt;}
._8{width:8.618688pt;}
._10{width:10.066262pt;}
._5{width:11.264000pt;}
._4{width:12.266688pt;}
._e{width:13.319199pt;}
._11{width:15.755059pt;}
._c{width:17.374007pt;}
._b{width:18.496000pt;}
._13{width:20.060929pt;}
._12{width:21.056000pt;}
._14{width:22.048392pt;}
._15{width:23.100575pt;}
._16{width:24.169490pt;}
._17{width:25.147503pt;}
._22{width:26.830563pt;}
._21{width:27.995375pt;}
._1e{width:29.142433pt;}
._a{width:30.133333pt;}
._9{width:31.040000pt;}
._19{width:32.192000pt;}
._1f{width:33.344000pt;}
._1c{width:40.348929pt;}
._1b{width:41.984000pt;}
._26{width:48.256000pt;}
._25{width:57.124171pt;}
._24{width:58.176000pt;}
._28{width:108.608000pt;}
._27{width:109.568000pt;}
._1a{width:141.994667pt;}
._1d{width:174.186667pt;}
._20{width:235.946667pt;}
._23{width:268.586667pt;}
._18{width:356.992000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.yd9{bottom:99.200000pt;}
.y129{bottom:100.320000pt;}
.y40{bottom:101.760000pt;}
.yfb{bottom:107.200000pt;}
.yc9{bottom:109.760000pt;}
.y4e{bottom:112.480000pt;}
.y99{bottom:112.640000pt;}
.y150{bottom:114.240000pt;}
.yab{bottom:117.760000pt;}
.yb9{bottom:117.920000pt;}
.y128{bottom:119.840000pt;}
.y63{bottom:120.480000pt;}
.y8f{bottom:120.640000pt;}
.y7d{bottom:125.760000pt;}
.yd8{bottom:128.480000pt;}
.y3f{bottom:131.200000pt;}
.y14f{bottom:133.760000pt;}
.yfa{bottom:136.320000pt;}
.yc8{bottom:139.040000pt;}
.y127{bottom:139.360000pt;}
.y4d{bottom:141.760000pt;}
.yaa{bottom:147.040000pt;}
.y102{bottom:147.520000pt;}
.y62{bottom:149.760000pt;}
.y14e{bottom:153.280000pt;}
.y7c{bottom:155.040000pt;}
.yd7{bottom:157.760000pt;}
.yb8{bottom:157.920000pt;}
.y126{bottom:158.880000pt;}
.y3e{bottom:160.480000pt;}
.y8e{bottom:160.640000pt;}
.y1e{bottom:161.120000pt;}
.yf9{bottom:165.760000pt;}
.yc7{bottom:168.320000pt;}
.y4c{bottom:171.040000pt;}
.y14d{bottom:172.960000pt;}
.ya9{bottom:176.320000pt;}
.y125{bottom:178.400000pt;}
.y61{bottom:179.040000pt;}
.y101{bottom:179.200000pt;}
.y7b{bottom:184.346667pt;}
.yb7{bottom:187.066667pt;}
.y3d{bottom:189.786667pt;}
.y1d{bottom:190.266667pt;}
.y14c{bottom:192.506667pt;}
.yf8{bottom:195.066667pt;}
.yc6{bottom:197.786667pt;}
.y124{bottom:197.946667pt;}
.y4b{bottom:200.346667pt;}
.ya8{bottom:205.626667pt;}
.y60{bottom:208.346667pt;}
.y14b{bottom:212.026667pt;}
.y7a{bottom:213.626667pt;}
.yb6{bottom:216.346667pt;}
.y123{bottom:217.466667pt;}
.y3c{bottom:219.066667pt;}
.y100{bottom:219.226667pt;}
.y1c{bottom:219.546667pt;}
.yf7{bottom:224.346667pt;}
.yc5{bottom:227.066667pt;}
.y4a{bottom:229.786667pt;}
.y14a{bottom:231.546667pt;}
.ya7{bottom:234.906667pt;}
.y122{bottom:236.986667pt;}
.y5f{bottom:237.626667pt;}
.y79{bottom:242.906667pt;}
.yb5{bottom:245.626667pt;}
.ybd{bottom:245.786667pt;}
.y3b{bottom:248.346667pt;}
.y1b{bottom:248.826667pt;}
.y149{bottom:251.066667pt;}
.yf6{bottom:253.626667pt;}
.yc4{bottom:256.346667pt;}
.yd6{bottom:256.506667pt;}
.y49{bottom:259.066667pt;}
.ya6{bottom:264.186667pt;}
.y5e{bottom:266.906667pt;}
.y148{bottom:270.586667pt;}
.y78{bottom:272.186667pt;}
.yb4{bottom:274.906667pt;}
.y121{bottom:276.026667pt;}
.y8b{bottom:277.626667pt;}
.y1a{bottom:278.266667pt;}
.yf5{bottom:282.906667pt;}
.yd5{bottom:285.626667pt;}
.ybc{bottom:285.786667pt;}
.y48{bottom:288.346667pt;}
.y3a{bottom:288.506667pt;}
.y147{bottom:290.106667pt;}
.yeb{bottom:293.626667pt;}
.y120{bottom:295.546667pt;}
.y5d{bottom:296.186667pt;}
.yc3{bottom:296.346667pt;}
.y77{bottom:301.466667pt;}
.yb3{bottom:304.186667pt;}
.ya5{bottom:304.346667pt;}
.y8a{bottom:306.906667pt;}
.y19{bottom:307.546667pt;}
.y146{bottom:309.626667pt;}
.yd4{bottom:314.906667pt;}
.y11f{bottom:315.226667pt;}
.y39{bottom:317.626667pt;}
.yea{bottom:322.906667pt;}
.yf4{bottom:323.066667pt;}
.y5c{bottom:325.626667pt;}
.ybb{bottom:325.786667pt;}
.y145{bottom:329.146667pt;}
.y76{bottom:330.746667pt;}
.ya4{bottom:333.466667pt;}
.y11e{bottom:334.746667pt;}
.y89{bottom:336.186667pt;}
.yc2{bottom:336.346667pt;}
.y18{bottom:336.826667pt;}
.yd3{bottom:344.186667pt;}
.y38{bottom:346.906667pt;}
.y8d{bottom:347.066667pt;}
.y144{bottom:348.666667pt;}
.ye9{bottom:352.186667pt;}
.y11d{bottom:354.266667pt;}
.y5b{bottom:354.906667pt;}
.y75{bottom:360.186667pt;}
.yb2{bottom:362.746667pt;}
.y88{bottom:365.466667pt;}
.y17{bottom:366.106667pt;}
.y143{bottom:368.186667pt;}
.yd2{bottom:373.466667pt;}
.ya3{bottom:373.626667pt;}
.y11c{bottom:373.786667pt;}
.y37{bottom:376.186667pt;}
.ye8{bottom:381.466667pt;}
.y5a{bottom:384.186667pt;}
.y142{bottom:387.706667pt;}
.y11b{bottom:393.346667pt;}
.y87{bottom:394.786667pt;}
.y16{bottom:395.426667pt;}
.y74{bottom:400.226667pt;}
.yd1{bottom:402.786667pt;}
.yb1{bottom:402.946667pt;}
.y36{bottom:405.506667pt;}
.y141{bottom:407.266667pt;}
.ye7{bottom:410.786667pt;}
.y11a{bottom:412.866667pt;}
.y59{bottom:413.506667pt;}
.ya2{bottom:413.666667pt;}
.yc1{bottom:424.226667pt;}
.y15{bottom:424.706667pt;}
.y140{bottom:426.786667pt;}
.y73{bottom:429.346667pt;}
.yd0{bottom:432.066667pt;}
.y119{bottom:432.386667pt;}
.y35{bottom:434.786667pt;}
.y86{bottom:434.946667pt;}
.yf3{bottom:440.066667pt;}
.y58{bottom:442.786667pt;}
.yb0{bottom:442.946667pt;}
.y13f{bottom:446.466667pt;}
.ye6{bottom:450.946667pt;}
.y118{bottom:451.906667pt;}
.yc0{bottom:453.506667pt;}
.y14{bottom:453.986667pt;}
.y34{bottom:464.066667pt;}
.y13e{bottom:465.986667pt;}
.yf2{bottom:469.346667pt;}
.y72{bottom:469.506667pt;}
.y117{bottom:471.426667pt;}
.y57{bottom:472.066667pt;}
.ycf{bottom:472.226667pt;}
.y85{bottom:474.946667pt;}
.y152{bottom:477.986667pt;}
.ye5{bottom:480.066667pt;}
.yff{bottom:482.786667pt;}
.y13{bottom:483.266667pt;}
.y13d{bottom:485.506667pt;}
.y116{bottom:490.946667pt;}
.y33{bottom:493.346667pt;}
.ybf{bottom:493.506667pt;}
.y56{bottom:501.346667pt;}
.y84{bottom:504.066667pt;}
.y13c{bottom:505.026667pt;}
.y151{bottom:507.586667pt;}
.ye4{bottom:509.346667pt;}
.y71{bottom:509.506667pt;}
.y115{bottom:510.466667pt;}
.yfe{bottom:512.066667pt;}
.y12{bottom:512.546667pt;}
.y32{bottom:522.786667pt;}
.y13b{bottom:524.546667pt;}
.y114{bottom:529.986667pt;}
.ya1{bottom:530.626667pt;}
.y83{bottom:533.346667pt;}
.ybe{bottom:533.506667pt;}
.y70{bottom:538.626667pt;}
.y55{bottom:541.506667pt;}
.y11{bottom:541.986667pt;}
.y13a{bottom:544.066667pt;}
.yf1{bottom:549.506667pt;}
.y31{bottom:552.066667pt;}
.yfd{bottom:552.226667pt;}
.ya0{bottom:559.906667pt;}
.y82{bottom:562.626667pt;}
.y139{bottom:563.586667pt;}
.y6f{bottom:567.906667pt;}
.y113{bottom:569.026667pt;}
.y10{bottom:571.266667pt;}
.y98{bottom:573.506667pt;}
.yf0{bottom:578.626667pt;}
.y30{bottom:581.346667pt;}
.y54{bottom:581.506667pt;}
.y138{bottom:583.106667pt;}
.y112{bottom:588.706667pt;}
.y9f{bottom:589.346667pt;}
.y81{bottom:591.906667pt;}
.y8c{bottom:592.066667pt;}
.y6e{bottom:597.186667pt;}
.yaf{bottom:600.066667pt;}
.yf{bottom:600.546667pt;}
.y97{bottom:602.653333pt;}
.yef{bottom:607.933333pt;}
.ye3{bottom:608.093333pt;}
.y111{bottom:608.253333pt;}
.y2f{bottom:610.653333pt;}
.y9e{bottom:618.653333pt;}
.y80{bottom:621.373333pt;}
.y47{bottom:621.533333pt;}
.y137{bottom:622.173333pt;}
.y110{bottom:627.773333pt;}
.ye{bottom:629.853333pt;}
.y96{bottom:631.933333pt;}
.yfc{bottom:632.093333pt;}
.ye2{bottom:637.213333pt;}
.y6d{bottom:637.373333pt;}
.y2e{bottom:639.933333pt;}
.yae{bottom:640.093333pt;}
.y136{bottom:641.693333pt;}
.y10f{bottom:647.293333pt;}
.y9d{bottom:647.933333pt;}
.y46{bottom:650.653333pt;}
.yd{bottom:659.133333pt;}
.y95{bottom:661.213333pt;}
.ye1{bottom:666.493333pt;}
.y10e{bottom:666.813333pt;}
.y2d{bottom:669.213333pt;}
.yce{bottom:677.213333pt;}
.y6c{bottom:677.373333pt;}
.y45{bottom:679.933333pt;}
.yad{bottom:680.093333pt;}
.y135{bottom:680.733333pt;}
.y10d{bottom:686.333333pt;}
.y9c{bottom:688.093333pt;}
.yc{bottom:688.413333pt;}
.y94{bottom:690.493333pt;}
.ye0{bottom:695.773333pt;}
.y134{bottom:700.253333pt;}
.y10c{bottom:705.853333pt;}
.y6b{bottom:706.493333pt;}
.y44{bottom:709.213333pt;}
.y2c{bottom:709.373333pt;}
.ycd{bottom:717.373333pt;}
.y93{bottom:719.933333pt;}
.yac{bottom:720.093333pt;}
.ydf{bottom:725.053333pt;}
.y10b{bottom:725.373333pt;}
.y9b{bottom:727.933333pt;}
.yb{bottom:728.573333pt;}
.y6a{bottom:735.773333pt;}
.y2b{bottom:738.493333pt;}
.y133{bottom:739.453333pt;}
.y10a{bottom:744.893333pt;}
.y92{bottom:749.213333pt;}
.yba{bottom:749.373333pt;}
.yee{bottom:754.493333pt;}
.ycc{bottom:757.213333pt;}
.y132{bottom:758.973333pt;}
.y109{bottom:764.413333pt;}
.y69{bottom:765.053333pt;}
.yde{bottom:765.213333pt;}
.y2a{bottom:767.773333pt;}
.y9a{bottom:767.933333pt;}
.ya{bottom:768.573333pt;}
.y91{bottom:778.493333pt;}
.yed{bottom:783.773333pt;}
.y108{bottom:783.933333pt;}
.y154{bottom:784.000000pt;}
.y68{bottom:794.333333pt;}
.y29{bottom:797.053333pt;}
.ycb{bottom:797.213333pt;}
.y9{bottom:797.693333pt;}
.y131{bottom:798.013333pt;}
.y153{bottom:800.000000pt;}
.y107{bottom:803.453333pt;}
.ydd{bottom:805.213333pt;}
.y90{bottom:807.773333pt;}
.y53{bottom:807.933333pt;}
.y130{bottom:817.573333pt;}
.y106{bottom:823.013333pt;}
.y67{bottom:823.653333pt;}
.yec{bottom:823.813333pt;}
.y28{bottom:826.373333pt;}
.y52{bottom:837.093333pt;}
.y8{bottom:838.693333pt;}
.y105{bottom:842.533333pt;}
.ydc{bottom:845.253333pt;}
.y27{bottom:855.653333pt;}
.y12f{bottom:856.613333pt;}
.y7{bottom:861.253333pt;}
.y66{bottom:863.813333pt;}
.y51{bottom:866.373333pt;}
.ydb{bottom:874.373333pt;}
.y12e{bottom:876.133333pt;}
.y6{bottom:876.293333pt;}
.y104{bottom:882.693333pt;}
.y26{bottom:884.933333pt;}
.y50{bottom:895.653333pt;}
.yda{bottom:903.653333pt;}
.y65{bottom:903.813333pt;}
.y5{bottom:906.053333pt;}
.y43{bottom:914.373333pt;}
.y103{bottom:914.533333pt;}
.y12d{bottom:915.173333pt;}
.y4f{bottom:924.933333pt;}
.y25{bottom:925.093333pt;}
.y12c{bottom:934.693333pt;}
.y4{bottom:938.853333pt;}
.y42{bottom:943.653333pt;}
.y64{bottom:943.813333pt;}
.y24{bottom:954.213333pt;}
.yca{bottom:954.373333pt;}
.y3{bottom:967.973333pt;}
.y7f{bottom:972.933333pt;}
.y12b{bottom:973.733333pt;}
.y23{bottom:983.493333pt;}
.y41{bottom:983.653333pt;}
.y12a{bottom:993.413333pt;}
.y2{bottom:1010.373333pt;}
.y22{bottom:1012.933333pt;}
.y7e{bottom:1013.093333pt;}
.y156{bottom:1024.000000pt;}
.y155{bottom:1040.000000pt;}
.y20{bottom:1070.081333pt;}
.y1f{bottom:1089.281333pt;}
.h5{height:34.505000pt;}
.hb{height:42.745000pt;}
.h8{height:45.568000pt;}
.h2{height:47.380000pt;}
.h7{height:51.437500pt;}
.h6{height:51.500000pt;}
.hd{height:55.625000pt;}
.h3{height:60.181875pt;}
.h4{height:63.945000pt;}
.ha{height:65.781915pt;}
.h9{height:66.625000pt;}
.hc{height:816.000000pt;}
.he{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.666667pt;}
.x2{left:75.520000pt;}
.x3{left:77.673333pt;}
.x4{left:703.333333pt;}
.x1{left:710.880000pt;}
}




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