
    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_b08e59212122181579dcbccf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_5167458e24a27ba3b750b079.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_40f1dedac248cebdd0fe1439.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_a2ca0df3ba630858981fb5b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_2fa69a16e3d0ddbdb44a0e3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.857422;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_edabec415a175d46173fac3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_5582dd30c2ed49760fad4bce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_be2c2f3ba1340f485dc7584e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.800000px;}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls20{letter-spacing:-2.160000px;}
.ls4{letter-spacing:-2.070000px;}
.ls24{letter-spacing:-1.560000px;}
.ls1f{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.462000px;}
.ls1d{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.396000px;}
.ls18{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.330000px;}
.ls2{letter-spacing:-0.264000px;}
.ls23{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.198000px;}
.ls10{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.066000px;}
.lsa{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.300000px;}
.ls14{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.504600px;}
.ls12{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.960000px;}
.ls9{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.260000px;}
.ls26{letter-spacing:1.620000px;}
.ls22{letter-spacing:2.160000px;}
.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;}
}
.ws0{word-spacing:-11.676000px;}
.ws87{word-spacing:-9.840000px;}
.ws5b{word-spacing:-5.950800px;}
.ws93{word-spacing:-3.600000px;}
.ws5{word-spacing:-3.168000px;}
.ws74{word-spacing:-3.120000px;}
.ws23{word-spacing:-3.102000px;}
.ws50{word-spacing:-3.036000px;}
.ws4f{word-spacing:-2.970000px;}
.ws2f{word-spacing:-2.940000px;}
.ws44{word-spacing:-2.904000px;}
.ws2e{word-spacing:-2.880000px;}
.ws6c{word-spacing:-2.838000px;}
.ws77{word-spacing:-2.820000px;}
.ws4e{word-spacing:-2.772000px;}
.ws1f{word-spacing:-2.706000px;}
.ws94{word-spacing:-2.700000px;}
.ws4{word-spacing:-2.574000px;}
.ws32{word-spacing:-2.520000px;}
.ws3{word-spacing:-2.508000px;}
.ws43{word-spacing:-2.376000px;}
.ws85{word-spacing:-2.310000px;}
.ws1a{word-spacing:-2.244000px;}
.ws84{word-spacing:-2.178000px;}
.ws91{word-spacing:-2.100000px;}
.wsb{word-spacing:-2.046000px;}
.ws6a{word-spacing:-1.914000px;}
.ws64{word-spacing:-1.860000px;}
.ws4b{word-spacing:-1.848000px;}
.ws15{word-spacing:-1.782000px;}
.ws1c{word-spacing:-1.716000px;}
.ws54{word-spacing:-1.650000px;}
.ws27{word-spacing:-1.620000px;}
.ws49{word-spacing:-1.584000px;}
.ws6d{word-spacing:-1.518000px;}
.ws42{word-spacing:-1.452000px;}
.ws78{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.380000px;}
.ws3d{word-spacing:-1.320000px;}
.ws9a{word-spacing:-1.260000px;}
.ws53{word-spacing:-1.254000px;}
.ws29{word-spacing:-1.200000px;}
.ws46{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.122000px;}
.ws8b{word-spacing:-1.080000px;}
.ws4d{word-spacing:-1.056000px;}
.ws16{word-spacing:-1.050000px;}
.ws31{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.990000px;}
.ws9c{word-spacing:-0.960000px;}
.ws89{word-spacing:-0.924000px;}
.ws34{word-spacing:-0.900000px;}
.ws62{word-spacing:-0.858000px;}
.ws5d{word-spacing:-0.792000px;}
.ws59{word-spacing:-0.726000px;}
.ws92{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.660000px;}
.ws8f{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.594000px;}
.ws8c{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.528000px;}
.ws2{word-spacing:-0.504000px;}
.ws66{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.462000px;}
.ws90{word-spacing:-0.300000px;}
.ws8a{word-spacing:-0.270000px;}
.ws18{word-spacing:-0.264000px;}
.ws70{word-spacing:-0.240000px;}
.wse{word-spacing:-0.198000px;}
.ws4c{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws86{word-spacing:0.066000px;}
.ws36{word-spacing:0.132000px;}
.ws3a{word-spacing:0.198000px;}
.ws9b{word-spacing:0.240000px;}
.ws6{word-spacing:0.264000px;}
.ws33{word-spacing:0.300000px;}
.ws6b{word-spacing:0.330000px;}
.ws39{word-spacing:0.396000px;}
.ws1d{word-spacing:0.462000px;}
.ws75{word-spacing:0.480000px;}
.ws20{word-spacing:0.528000px;}
.ws1b{word-spacing:0.594000px;}
.ws51{word-spacing:0.660000px;}
.ws7c{word-spacing:0.726000px;}
.ws7f{word-spacing:0.792000px;}
.ws3e{word-spacing:0.858000px;}
.wsf{word-spacing:0.924000px;}
.ws99{word-spacing:0.960000px;}
.ws83{word-spacing:0.990000px;}
.wsd{word-spacing:1.056000px;}
.ws69{word-spacing:1.122000px;}
.ws2b{word-spacing:1.140000px;}
.ws61{word-spacing:1.188000px;}
.ws65{word-spacing:1.200000px;}
.ws21{word-spacing:1.254000px;}
.ws1e{word-spacing:1.320000px;}
.ws9{word-spacing:1.386000px;}
.ws95{word-spacing:1.440000px;}
.ws37{word-spacing:1.452000px;}
.ws96{word-spacing:1.500000px;}
.ws38{word-spacing:1.518000px;}
.ws25{word-spacing:1.650000px;}
.ws98{word-spacing:1.680000px;}
.ws47{word-spacing:1.716000px;}
.ws5e{word-spacing:1.782000px;}
.ws56{word-spacing:1.848000px;}
.ws6e{word-spacing:1.914000px;}
.ws7b{word-spacing:1.920000px;}
.ws14{word-spacing:1.980000px;}
.ws5f{word-spacing:2.046000px;}
.ws17{word-spacing:2.070000px;}
.ws41{word-spacing:2.112000px;}
.ws79{word-spacing:2.160000px;}
.ws57{word-spacing:2.178000px;}
.ws11{word-spacing:2.244000px;}
.ws4a{word-spacing:2.310000px;}
.ws63{word-spacing:2.376000px;}
.wsc{word-spacing:2.442000px;}
.ws60{word-spacing:2.508000px;}
.ws7a{word-spacing:2.520000px;}
.ws19{word-spacing:2.640000px;}
.ws48{word-spacing:2.706000px;}
.ws6f{word-spacing:2.760000px;}
.ws28{word-spacing:2.880000px;}
.ws68{word-spacing:2.904000px;}
.ws45{word-spacing:3.036000px;}
.ws97{word-spacing:3.060000px;}
.ws13{word-spacing:3.102000px;}
.ws88{word-spacing:3.168000px;}
.ws55{word-spacing:3.234000px;}
.ws30{word-spacing:3.240000px;}
.ws80{word-spacing:3.366000px;}
.ws71{word-spacing:3.480000px;}
.ws7e{word-spacing:3.564000px;}
.ws72{word-spacing:3.600000px;}
.ws22{word-spacing:3.630000px;}
.ws8{word-spacing:3.696000px;}
.ws76{word-spacing:3.780000px;}
.ws8d{word-spacing:4.020000px;}
.ws5a{word-spacing:4.026000px;}
.ws8e{word-spacing:4.080000px;}
.ws7d{word-spacing:4.092000px;}
.ws3f{word-spacing:4.158000px;}
.ws12{word-spacing:4.290000px;}
.ws35{word-spacing:4.686000px;}
.ws3c{word-spacing:4.752000px;}
.ws3b{word-spacing:5.082000px;}
.ws2d{word-spacing:5.100000px;}
.ws58{word-spacing:5.280000px;}
.ws73{word-spacing:5.640000px;}
.ws82{word-spacing:5.676000px;}
.ws2c{word-spacing:5.700000px;}
.ws40{word-spacing:5.940000px;}
.ws81{word-spacing:6.270000px;}
.ws2a{word-spacing:8.700000px;}
._a{margin-left:-7.464000px;}
._4{margin-left:-6.322800px;}
._6{margin-left:-5.089800px;}
._0{margin-left:-4.014360px;}
._5{margin-left:-2.369400px;}
._1{margin-left:-1.036800px;}
._2{width:1.425600px;}
._3{width:2.429400px;}
._8{width:3.714000px;}
._7{width:4.890600px;}
._9{width:5.925600px;}
._b{width:42.875880px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fs7{font-size:34.800000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y22{bottom:70.883850px;}
.y21{bottom:99.911250px;}
.y69{bottom:102.455550px;}
.y9b{bottom:103.458000px;}
.y79{bottom:103.818000px;}
.yaf{bottom:104.376450px;}
.y3b{bottom:104.395800px;}
.yb1{bottom:110.796000px;}
.y20{bottom:111.912750px;}
.yed{bottom:112.453050px;}
.y10d{bottom:113.976000px;}
.yc1{bottom:116.827800px;}
.y68{bottom:120.457050px;}
.y9a{bottom:121.459500px;}
.y78{bottom:121.819500px;}
.y3a{bottom:122.395800px;}
.y1f{bottom:123.914250px;}
.yec{bottom:130.454550px;}
.y10c{bottom:130.476000px;}
.yc0{bottom:134.827800px;}
.y1e{bottom:135.915750px;}
.y67{bottom:138.458550px;}
.y99{bottom:139.461000px;}
.y77{bottom:139.821000px;}
.y39{bottom:140.395800px;}
.y10b{bottom:146.976000px;}
.yeb{bottom:148.456050px;}
.y1d{bottom:152.169750px;}
.ybf{bottom:152.827800px;}
.yae{bottom:156.454050px;}
.y66{bottom:156.460050px;}
.y98{bottom:157.462500px;}
.y76{bottom:157.822500px;}
.y38{bottom:158.395800px;}
.y10a{bottom:163.476000px;}
.y1c{bottom:164.171250px;}
.yea{bottom:166.457550px;}
.ybe{bottom:170.827800px;}
.yad{bottom:174.455550px;}
.y65{bottom:174.461550px;}
.y97{bottom:175.464000px;}
.y75{bottom:175.824000px;}
.y37{bottom:176.395800px;}
.y109{bottom:179.976000px;}
.y1b{bottom:180.425250px;}
.ye9{bottom:184.459050px;}
.ybd{bottom:188.827800px;}
.yac{bottom:192.457050px;}
.y64{bottom:192.463050px;}
.y96{bottom:193.465500px;}
.y74{bottom:193.825500px;}
.y108{bottom:196.476000px;}
.ye8{bottom:202.460550px;}
.y36{bottom:203.368800px;}
.ybc{bottom:206.827800px;}
.yab{bottom:210.458550px;}
.y63{bottom:210.464550px;}
.y95{bottom:211.467000px;}
.y73{bottom:211.827000px;}
.y107{bottom:212.976000px;}
.ye7{bottom:220.462050px;}
.y35{bottom:221.370300px;}
.ybb{bottom:224.827800px;}
.yaa{bottom:228.460050px;}
.y62{bottom:228.466050px;}
.y94{bottom:229.468500px;}
.y106{bottom:229.476000px;}
.y72{bottom:229.828500px;}
.y1a{bottom:233.983950px;}
.ye6{bottom:238.463550px;}
.y34{bottom:239.371800px;}
.yba{bottom:242.827800px;}
.y105{bottom:245.976000px;}
.ya9{bottom:246.461550px;}
.y61{bottom:246.467550px;}
.y93{bottom:247.470000px;}
.y71{bottom:247.830000px;}
.y19{bottom:251.985450px;}
.ye5{bottom:256.465050px;}
.y33{bottom:257.373300px;}
.yb9{bottom:260.827800px;}
.y104{bottom:262.476000px;}
.ya8{bottom:264.463050px;}
.y60{bottom:264.469050px;}
.y92{bottom:265.471500px;}
.y70{bottom:265.831500px;}
.y18{bottom:269.986950px;}
.ye4{bottom:274.466550px;}
.y32{bottom:275.374800px;}
.yb8{bottom:278.827800px;}
.y103{bottom:278.976000px;}
.ya7{bottom:282.464550px;}
.y5f{bottom:282.470550px;}
.y91{bottom:283.473000px;}
.y6f{bottom:283.833000px;}
.y17{bottom:287.988450px;}
.ye3{bottom:292.468050px;}
.y31{bottom:293.376300px;}
.y102{bottom:295.476000px;}
.yb7{bottom:296.827800px;}
.ya6{bottom:300.466050px;}
.y5e{bottom:300.472050px;}
.y90{bottom:301.474500px;}
.y6e{bottom:301.834500px;}
.y16{bottom:305.989950px;}
.ye2{bottom:310.469550px;}
.y30{bottom:311.377800px;}
.y101{bottom:311.976000px;}
.ya5{bottom:318.467550px;}
.y5d{bottom:318.473550px;}
.y8f{bottom:319.476000px;}
.yb6{bottom:323.824800px;}
.y15{bottom:323.991450px;}
.ye1{bottom:328.471050px;}
.y100{bottom:328.476000px;}
.y6d{bottom:329.329200px;}
.y2f{bottom:329.379300px;}
.ya4{bottom:336.469050px;}
.y5c{bottom:336.475050px;}
.yb5{bottom:341.826300px;}
.y14{bottom:341.992950px;}
.yff{bottom:344.976000px;}
.ye0{bottom:346.472550px;}
.y8e{bottom:346.970550px;}
.y2e{bottom:347.380800px;}
.yb0{bottom:349.365300px;}
.ya3{bottom:354.470550px;}
.y5b{bottom:354.476550px;}
.yb4{bottom:359.827800px;}
.y13{bottom:359.994450px;}
.yfe{bottom:361.476000px;}
.ydf{bottom:364.474050px;}
.y2d{bottom:365.382300px;}
.ya2{bottom:372.472050px;}
.y5a{bottom:372.478050px;}
.y6c{bottom:372.841050px;}
.yfd{bottom:377.976000px;}
.y12{bottom:377.995950px;}
.yde{bottom:382.475550px;}
.y2c{bottom:383.383800px;}
.y8d{bottom:390.440400px;}
.ya1{bottom:390.473550px;}
.y59{bottom:390.479550px;}
.yfc{bottom:394.476000px;}
.y11{bottom:395.997450px;}
.yb3{bottom:397.327800px;}
.ydd{bottom:400.477050px;}
.y2b{bottom:401.385300px;}
.y8c{bottom:408.441900px;}
.ya0{bottom:408.475050px;}
.y58{bottom:408.481050px;}
.yfb{bottom:410.976000px;}
.y10{bottom:413.998950px;}
.ydc{bottom:418.478550px;}
.y2a{bottom:419.386800px;}
.y8b{bottom:426.443400px;}
.y9f{bottom:426.476550px;}
.yfa{bottom:427.476000px;}
.yf{bottom:432.000450px;}
.y57{bottom:435.482400px;}
.ydb{bottom:436.480050px;}
.y29{bottom:437.388300px;}
.yf9{bottom:443.976000px;}
.y8a{bottom:444.444900px;}
.y9e{bottom:444.478050px;}
.ye{bottom:450.001950px;}
.y56{bottom:453.482400px;}
.yda{bottom:454.481550px;}
.y28{bottom:455.389800px;}
.yf8{bottom:460.476000px;}
.y89{bottom:462.446400px;}
.y9d{bottom:462.479550px;}
.yd{bottom:468.003450px;}
.y55{bottom:471.482400px;}
.yd9{bottom:472.483050px;}
.y27{bottom:473.391300px;}
.yf7{bottom:476.976000px;}
.y88{bottom:480.447900px;}
.y9c{bottom:480.481050px;}
.yc{bottom:486.004950px;}
.y54{bottom:489.482400px;}
.yd8{bottom:490.484550px;}
.y26{bottom:491.392800px;}
.yf6{bottom:493.476000px;}
.y87{bottom:498.449400px;}
.yb{bottom:504.006450px;}
.y53{bottom:507.482400px;}
.yd7{bottom:508.486050px;}
.y25{bottom:509.394300px;}
.yf5{bottom:509.976000px;}
.y86{bottom:516.450900px;}
.ya{bottom:522.007950px;}
.y52{bottom:525.482400px;}
.yf4{bottom:526.476000px;}
.yd6{bottom:526.487550px;}
.y24{bottom:527.395800px;}
.y85{bottom:534.452400px;}
.y9{bottom:540.009450px;}
.yf3{bottom:542.976000px;}
.y51{bottom:543.482400px;}
.yd5{bottom:544.489050px;}
.y84{bottom:552.453900px;}
.y8{bottom:558.010950px;}
.yf2{bottom:559.476000px;}
.y50{bottom:561.482400px;}
.yd4{bottom:562.490550px;}
.y83{bottom:570.455400px;}
.yf1{bottom:575.976000px;}
.y7{bottom:576.012450px;}
.y4f{bottom:579.482400px;}
.yd3{bottom:580.492050px;}
.y3d{bottom:580.872000px;}
.y82{bottom:588.456900px;}
.yf0{bottom:592.476000px;}
.y6{bottom:594.013950px;}
.y4e{bottom:597.482400px;}
.yd2{bottom:598.493550px;}
.y3c{bottom:598.872000px;}
.y81{bottom:606.458400px;}
.yef{bottom:608.976000px;}
.y5{bottom:612.015450px;}
.y4d{bottom:615.482400px;}
.yd1{bottom:616.495050px;}
.y80{bottom:624.459900px;}
.y4c{bottom:633.482400px;}
.yd0{bottom:634.496550px;}
.yee{bottom:634.970550px;}
.y7f{bottom:642.461400px;}
.y4b{bottom:651.482400px;}
.ycf{bottom:652.498050px;}
.y7e{bottom:660.462900px;}
.yb2{bottom:662.323650px;}
.y4a{bottom:669.482400px;}
.y7d{bottom:678.464400px;}
.yce{bottom:679.499400px;}
.y49{bottom:687.482400px;}
.y7c{bottom:696.465900px;}
.ycd{bottom:697.499400px;}
.y48{bottom:705.482400px;}
.y7b{bottom:714.467400px;}
.ycc{bottom:715.499400px;}
.y47{bottom:723.482400px;}
.y7a{bottom:732.468900px;}
.ycb{bottom:733.499400px;}
.y46{bottom:741.482400px;}
.y6b{bottom:750.470400px;}
.yca{bottom:751.499400px;}
.y45{bottom:759.482400px;}
.y6a{bottom:768.471900px;}
.yc9{bottom:769.499400px;}
.y44{bottom:786.473400px;}
.yc8{bottom:787.499400px;}
.y43{bottom:804.474900px;}
.yc7{bottom:805.499400px;}
.y4{bottom:810.015450px;}
.y42{bottom:822.476400px;}
.yc6{bottom:823.499400px;}
.y3{bottom:839.519400px;}
.y41{bottom:840.477900px;}
.yc5{bottom:841.499400px;}
.y40{bottom:858.479400px;}
.yc4{bottom:859.499400px;}
.y2{bottom:864.725550px;}
.y3f{bottom:876.480900px;}
.yc3{bottom:877.499400px;}
.y1{bottom:889.919250px;}
.y3e{bottom:894.482400px;}
.yc2{bottom:895.499400px;}
.y23{bottom:934.435800px;}
.hc{height:25.164000px;}
.h6{height:30.064453px;}
.h5{height:30.618164px;}
.h8{height:33.156738px;}
.hb{height:39.287109px;}
.ha{height:39.788086px;}
.h7{height:44.208984px;}
.h9{height:47.760000px;}
.h4{height:52.536000px;}
.h2{height:55.703320px;}
.h3{height:57.312000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x5{left:440.632200px;}
.x6{left:570.248700px;}
.x4{left:571.354650px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls20{letter-spacing:-1.920000pt;}
.ls4{letter-spacing:-1.840000pt;}
.ls24{letter-spacing:-1.386667pt;}
.ls1f{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.410667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.352000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:-0.234667pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls10{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls14{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.448533pt;}
.ls12{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.853333pt;}
.ls9{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.120000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.920000pt;}
.ws0{word-spacing:-10.378667pt;}
.ws87{word-spacing:-8.746667pt;}
.ws5b{word-spacing:-5.289600pt;}
.ws93{word-spacing:-3.200000pt;}
.ws5{word-spacing:-2.816000pt;}
.ws74{word-spacing:-2.773333pt;}
.ws23{word-spacing:-2.757333pt;}
.ws50{word-spacing:-2.698667pt;}
.ws4f{word-spacing:-2.640000pt;}
.ws2f{word-spacing:-2.613333pt;}
.ws44{word-spacing:-2.581333pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws6c{word-spacing:-2.522667pt;}
.ws77{word-spacing:-2.506667pt;}
.ws4e{word-spacing:-2.464000pt;}
.ws1f{word-spacing:-2.405333pt;}
.ws94{word-spacing:-2.400000pt;}
.ws4{word-spacing:-2.288000pt;}
.ws32{word-spacing:-2.240000pt;}
.ws3{word-spacing:-2.229333pt;}
.ws43{word-spacing:-2.112000pt;}
.ws85{word-spacing:-2.053333pt;}
.ws1a{word-spacing:-1.994667pt;}
.ws84{word-spacing:-1.936000pt;}
.ws91{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.818667pt;}
.ws6a{word-spacing:-1.701333pt;}
.ws64{word-spacing:-1.653333pt;}
.ws4b{word-spacing:-1.642667pt;}
.ws15{word-spacing:-1.584000pt;}
.ws1c{word-spacing:-1.525333pt;}
.ws54{word-spacing:-1.466667pt;}
.ws27{word-spacing:-1.440000pt;}
.ws49{word-spacing:-1.408000pt;}
.ws6d{word-spacing:-1.349333pt;}
.ws42{word-spacing:-1.290667pt;}
.ws78{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.226667pt;}
.ws3d{word-spacing:-1.173333pt;}
.ws9a{word-spacing:-1.120000pt;}
.ws53{word-spacing:-1.114667pt;}
.ws29{word-spacing:-1.066667pt;}
.ws46{word-spacing:-1.056000pt;}
.wsa{word-spacing:-0.997333pt;}
.ws8b{word-spacing:-0.960000pt;}
.ws4d{word-spacing:-0.938667pt;}
.ws16{word-spacing:-0.933333pt;}
.ws31{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.880000pt;}
.ws9c{word-spacing:-0.853333pt;}
.ws89{word-spacing:-0.821333pt;}
.ws34{word-spacing:-0.800000pt;}
.ws62{word-spacing:-0.762667pt;}
.ws5d{word-spacing:-0.704000pt;}
.ws59{word-spacing:-0.645333pt;}
.ws92{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.586667pt;}
.ws8f{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.528000pt;}
.ws8c{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.469333pt;}
.ws2{word-spacing:-0.448000pt;}
.ws66{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.410667pt;}
.ws90{word-spacing:-0.266667pt;}
.ws8a{word-spacing:-0.240000pt;}
.ws18{word-spacing:-0.234667pt;}
.ws70{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.176000pt;}
.ws4c{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws86{word-spacing:0.058667pt;}
.ws36{word-spacing:0.117333pt;}
.ws3a{word-spacing:0.176000pt;}
.ws9b{word-spacing:0.213333pt;}
.ws6{word-spacing:0.234667pt;}
.ws33{word-spacing:0.266667pt;}
.ws6b{word-spacing:0.293333pt;}
.ws39{word-spacing:0.352000pt;}
.ws1d{word-spacing:0.410667pt;}
.ws75{word-spacing:0.426667pt;}
.ws20{word-spacing:0.469333pt;}
.ws1b{word-spacing:0.528000pt;}
.ws51{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.645333pt;}
.ws7f{word-spacing:0.704000pt;}
.ws3e{word-spacing:0.762667pt;}
.wsf{word-spacing:0.821333pt;}
.ws99{word-spacing:0.853333pt;}
.ws83{word-spacing:0.880000pt;}
.wsd{word-spacing:0.938667pt;}
.ws69{word-spacing:0.997333pt;}
.ws2b{word-spacing:1.013333pt;}
.ws61{word-spacing:1.056000pt;}
.ws65{word-spacing:1.066667pt;}
.ws21{word-spacing:1.114667pt;}
.ws1e{word-spacing:1.173333pt;}
.ws9{word-spacing:1.232000pt;}
.ws95{word-spacing:1.280000pt;}
.ws37{word-spacing:1.290667pt;}
.ws96{word-spacing:1.333333pt;}
.ws38{word-spacing:1.349333pt;}
.ws25{word-spacing:1.466667pt;}
.ws98{word-spacing:1.493333pt;}
.ws47{word-spacing:1.525333pt;}
.ws5e{word-spacing:1.584000pt;}
.ws56{word-spacing:1.642667pt;}
.ws6e{word-spacing:1.701333pt;}
.ws7b{word-spacing:1.706667pt;}
.ws14{word-spacing:1.760000pt;}
.ws5f{word-spacing:1.818667pt;}
.ws17{word-spacing:1.840000pt;}
.ws41{word-spacing:1.877333pt;}
.ws79{word-spacing:1.920000pt;}
.ws57{word-spacing:1.936000pt;}
.ws11{word-spacing:1.994667pt;}
.ws4a{word-spacing:2.053333pt;}
.ws63{word-spacing:2.112000pt;}
.wsc{word-spacing:2.170667pt;}
.ws60{word-spacing:2.229333pt;}
.ws7a{word-spacing:2.240000pt;}
.ws19{word-spacing:2.346667pt;}
.ws48{word-spacing:2.405333pt;}
.ws6f{word-spacing:2.453333pt;}
.ws28{word-spacing:2.560000pt;}
.ws68{word-spacing:2.581333pt;}
.ws45{word-spacing:2.698667pt;}
.ws97{word-spacing:2.720000pt;}
.ws13{word-spacing:2.757333pt;}
.ws88{word-spacing:2.816000pt;}
.ws55{word-spacing:2.874667pt;}
.ws30{word-spacing:2.880000pt;}
.ws80{word-spacing:2.992000pt;}
.ws71{word-spacing:3.093333pt;}
.ws7e{word-spacing:3.168000pt;}
.ws72{word-spacing:3.200000pt;}
.ws22{word-spacing:3.226667pt;}
.ws8{word-spacing:3.285333pt;}
.ws76{word-spacing:3.360000pt;}
.ws8d{word-spacing:3.573333pt;}
.ws5a{word-spacing:3.578667pt;}
.ws8e{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.637333pt;}
.ws3f{word-spacing:3.696000pt;}
.ws12{word-spacing:3.813333pt;}
.ws35{word-spacing:4.165333pt;}
.ws3c{word-spacing:4.224000pt;}
.ws3b{word-spacing:4.517333pt;}
.ws2d{word-spacing:4.533333pt;}
.ws58{word-spacing:4.693333pt;}
.ws73{word-spacing:5.013333pt;}
.ws82{word-spacing:5.045333pt;}
.ws2c{word-spacing:5.066667pt;}
.ws40{word-spacing:5.280000pt;}
.ws81{word-spacing:5.573333pt;}
.ws2a{word-spacing:7.733333pt;}
._a{margin-left:-6.634667pt;}
._4{margin-left:-5.620267pt;}
._6{margin-left:-4.524267pt;}
._0{margin-left:-3.568320pt;}
._5{margin-left:-2.106133pt;}
._1{margin-left:-0.921600pt;}
._2{width:1.267200pt;}
._3{width:2.159467pt;}
._8{width:3.301333pt;}
._7{width:4.347200pt;}
._9{width:5.267200pt;}
._b{width:38.111893pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:30.933333pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:63.007867pt;}
.y21{bottom:88.810000pt;}
.y69{bottom:91.071600pt;}
.y9b{bottom:91.962667pt;}
.y79{bottom:92.282667pt;}
.yaf{bottom:92.779067pt;}
.y3b{bottom:92.796267pt;}
.yb1{bottom:98.485333pt;}
.y20{bottom:99.478000pt;}
.yed{bottom:99.958267pt;}
.y10d{bottom:101.312000pt;}
.yc1{bottom:103.846933pt;}
.y68{bottom:107.072933pt;}
.y9a{bottom:107.964000pt;}
.y78{bottom:108.284000pt;}
.y3a{bottom:108.796267pt;}
.y1f{bottom:110.146000pt;}
.yec{bottom:115.959600pt;}
.y10c{bottom:115.978667pt;}
.yc0{bottom:119.846933pt;}
.y1e{bottom:120.814000pt;}
.y67{bottom:123.074267pt;}
.y99{bottom:123.965333pt;}
.y77{bottom:124.285333pt;}
.y39{bottom:124.796267pt;}
.y10b{bottom:130.645333pt;}
.yeb{bottom:131.960933pt;}
.y1d{bottom:135.262000pt;}
.ybf{bottom:135.846933pt;}
.yae{bottom:139.070267pt;}
.y66{bottom:139.075600pt;}
.y98{bottom:139.966667pt;}
.y76{bottom:140.286667pt;}
.y38{bottom:140.796267pt;}
.y10a{bottom:145.312000pt;}
.y1c{bottom:145.930000pt;}
.yea{bottom:147.962267pt;}
.ybe{bottom:151.846933pt;}
.yad{bottom:155.071600pt;}
.y65{bottom:155.076933pt;}
.y97{bottom:155.968000pt;}
.y75{bottom:156.288000pt;}
.y37{bottom:156.796267pt;}
.y109{bottom:159.978667pt;}
.y1b{bottom:160.378000pt;}
.ye9{bottom:163.963600pt;}
.ybd{bottom:167.846933pt;}
.yac{bottom:171.072933pt;}
.y64{bottom:171.078267pt;}
.y96{bottom:171.969333pt;}
.y74{bottom:172.289333pt;}
.y108{bottom:174.645333pt;}
.ye8{bottom:179.964933pt;}
.y36{bottom:180.772267pt;}
.ybc{bottom:183.846933pt;}
.yab{bottom:187.074267pt;}
.y63{bottom:187.079600pt;}
.y95{bottom:187.970667pt;}
.y73{bottom:188.290667pt;}
.y107{bottom:189.312000pt;}
.ye7{bottom:195.966267pt;}
.y35{bottom:196.773600pt;}
.ybb{bottom:199.846933pt;}
.yaa{bottom:203.075600pt;}
.y62{bottom:203.080933pt;}
.y94{bottom:203.972000pt;}
.y106{bottom:203.978667pt;}
.y72{bottom:204.292000pt;}
.y1a{bottom:207.985733pt;}
.ye6{bottom:211.967600pt;}
.y34{bottom:212.774933pt;}
.yba{bottom:215.846933pt;}
.y105{bottom:218.645333pt;}
.ya9{bottom:219.076933pt;}
.y61{bottom:219.082267pt;}
.y93{bottom:219.973333pt;}
.y71{bottom:220.293333pt;}
.y19{bottom:223.987067pt;}
.ye5{bottom:227.968933pt;}
.y33{bottom:228.776267pt;}
.yb9{bottom:231.846933pt;}
.y104{bottom:233.312000pt;}
.ya8{bottom:235.078267pt;}
.y60{bottom:235.083600pt;}
.y92{bottom:235.974667pt;}
.y70{bottom:236.294667pt;}
.y18{bottom:239.988400pt;}
.ye4{bottom:243.970267pt;}
.y32{bottom:244.777600pt;}
.yb8{bottom:247.846933pt;}
.y103{bottom:247.978667pt;}
.ya7{bottom:251.079600pt;}
.y5f{bottom:251.084933pt;}
.y91{bottom:251.976000pt;}
.y6f{bottom:252.296000pt;}
.y17{bottom:255.989733pt;}
.ye3{bottom:259.971600pt;}
.y31{bottom:260.778933pt;}
.y102{bottom:262.645333pt;}
.yb7{bottom:263.846933pt;}
.ya6{bottom:267.080933pt;}
.y5e{bottom:267.086267pt;}
.y90{bottom:267.977333pt;}
.y6e{bottom:268.297333pt;}
.y16{bottom:271.991067pt;}
.ye2{bottom:275.972933pt;}
.y30{bottom:276.780267pt;}
.y101{bottom:277.312000pt;}
.ya5{bottom:283.082267pt;}
.y5d{bottom:283.087600pt;}
.y8f{bottom:283.978667pt;}
.yb6{bottom:287.844267pt;}
.y15{bottom:287.992400pt;}
.ye1{bottom:291.974267pt;}
.y100{bottom:291.978667pt;}
.y6d{bottom:292.737067pt;}
.y2f{bottom:292.781600pt;}
.ya4{bottom:299.083600pt;}
.y5c{bottom:299.088933pt;}
.yb5{bottom:303.845600pt;}
.y14{bottom:303.993733pt;}
.yff{bottom:306.645333pt;}
.ye0{bottom:307.975600pt;}
.y8e{bottom:308.418267pt;}
.y2e{bottom:308.782933pt;}
.yb0{bottom:310.546933pt;}
.ya3{bottom:315.084933pt;}
.y5b{bottom:315.090267pt;}
.yb4{bottom:319.846933pt;}
.y13{bottom:319.995067pt;}
.yfe{bottom:321.312000pt;}
.ydf{bottom:323.976933pt;}
.y2d{bottom:324.784267pt;}
.ya2{bottom:331.086267pt;}
.y5a{bottom:331.091600pt;}
.y6c{bottom:331.414267pt;}
.yfd{bottom:335.978667pt;}
.y12{bottom:335.996400pt;}
.yde{bottom:339.978267pt;}
.y2c{bottom:340.785600pt;}
.y8d{bottom:347.058133pt;}
.ya1{bottom:347.087600pt;}
.y59{bottom:347.092933pt;}
.yfc{bottom:350.645333pt;}
.y11{bottom:351.997733pt;}
.yb3{bottom:353.180267pt;}
.ydd{bottom:355.979600pt;}
.y2b{bottom:356.786933pt;}
.y8c{bottom:363.059467pt;}
.ya0{bottom:363.088933pt;}
.y58{bottom:363.094267pt;}
.yfb{bottom:365.312000pt;}
.y10{bottom:367.999067pt;}
.ydc{bottom:371.980933pt;}
.y2a{bottom:372.788267pt;}
.y8b{bottom:379.060800pt;}
.y9f{bottom:379.090267pt;}
.yfa{bottom:379.978667pt;}
.yf{bottom:384.000400pt;}
.y57{bottom:387.095467pt;}
.ydb{bottom:387.982267pt;}
.y29{bottom:388.789600pt;}
.yf9{bottom:394.645333pt;}
.y8a{bottom:395.062133pt;}
.y9e{bottom:395.091600pt;}
.ye{bottom:400.001733pt;}
.y56{bottom:403.095467pt;}
.yda{bottom:403.983600pt;}
.y28{bottom:404.790933pt;}
.yf8{bottom:409.312000pt;}
.y89{bottom:411.063467pt;}
.y9d{bottom:411.092933pt;}
.yd{bottom:416.003067pt;}
.y55{bottom:419.095467pt;}
.yd9{bottom:419.984933pt;}
.y27{bottom:420.792267pt;}
.yf7{bottom:423.978667pt;}
.y88{bottom:427.064800pt;}
.y9c{bottom:427.094267pt;}
.yc{bottom:432.004400pt;}
.y54{bottom:435.095467pt;}
.yd8{bottom:435.986267pt;}
.y26{bottom:436.793600pt;}
.yf6{bottom:438.645333pt;}
.y87{bottom:443.066133pt;}
.yb{bottom:448.005733pt;}
.y53{bottom:451.095467pt;}
.yd7{bottom:451.987600pt;}
.y25{bottom:452.794933pt;}
.yf5{bottom:453.312000pt;}
.y86{bottom:459.067467pt;}
.ya{bottom:464.007067pt;}
.y52{bottom:467.095467pt;}
.yf4{bottom:467.978667pt;}
.yd6{bottom:467.988933pt;}
.y24{bottom:468.796267pt;}
.y85{bottom:475.068800pt;}
.y9{bottom:480.008400pt;}
.yf3{bottom:482.645333pt;}
.y51{bottom:483.095467pt;}
.yd5{bottom:483.990267pt;}
.y84{bottom:491.070133pt;}
.y8{bottom:496.009733pt;}
.yf2{bottom:497.312000pt;}
.y50{bottom:499.095467pt;}
.yd4{bottom:499.991600pt;}
.y83{bottom:507.071467pt;}
.yf1{bottom:511.978667pt;}
.y7{bottom:512.011067pt;}
.y4f{bottom:515.095467pt;}
.yd3{bottom:515.992933pt;}
.y3d{bottom:516.330667pt;}
.y82{bottom:523.072800pt;}
.yf0{bottom:526.645333pt;}
.y6{bottom:528.012400pt;}
.y4e{bottom:531.095467pt;}
.yd2{bottom:531.994267pt;}
.y3c{bottom:532.330667pt;}
.y81{bottom:539.074133pt;}
.yef{bottom:541.312000pt;}
.y5{bottom:544.013733pt;}
.y4d{bottom:547.095467pt;}
.yd1{bottom:547.995600pt;}
.y80{bottom:555.075467pt;}
.y4c{bottom:563.095467pt;}
.yd0{bottom:563.996933pt;}
.yee{bottom:564.418267pt;}
.y7f{bottom:571.076800pt;}
.y4b{bottom:579.095467pt;}
.ycf{bottom:579.998267pt;}
.y7e{bottom:587.078133pt;}
.yb2{bottom:588.732133pt;}
.y4a{bottom:595.095467pt;}
.y7d{bottom:603.079467pt;}
.yce{bottom:603.999467pt;}
.y49{bottom:611.095467pt;}
.y7c{bottom:619.080800pt;}
.ycd{bottom:619.999467pt;}
.y48{bottom:627.095467pt;}
.y7b{bottom:635.082133pt;}
.ycc{bottom:635.999467pt;}
.y47{bottom:643.095467pt;}
.y7a{bottom:651.083467pt;}
.ycb{bottom:651.999467pt;}
.y46{bottom:659.095467pt;}
.y6b{bottom:667.084800pt;}
.yca{bottom:667.999467pt;}
.y45{bottom:675.095467pt;}
.y6a{bottom:683.086133pt;}
.yc9{bottom:683.999467pt;}
.y44{bottom:699.087467pt;}
.yc8{bottom:699.999467pt;}
.y43{bottom:715.088800pt;}
.yc7{bottom:715.999467pt;}
.y4{bottom:720.013733pt;}
.y42{bottom:731.090133pt;}
.yc6{bottom:731.999467pt;}
.y3{bottom:746.239467pt;}
.y41{bottom:747.091467pt;}
.yc5{bottom:747.999467pt;}
.y40{bottom:763.092800pt;}
.yc4{bottom:763.999467pt;}
.y2{bottom:768.644933pt;}
.y3f{bottom:779.094133pt;}
.yc3{bottom:779.999467pt;}
.y1{bottom:791.039333pt;}
.y3e{bottom:795.095467pt;}
.yc2{bottom:795.999467pt;}
.y23{bottom:830.609600pt;}
.hc{height:22.368000pt;}
.h6{height:26.723958pt;}
.h5{height:27.216146pt;}
.h8{height:29.472656pt;}
.hb{height:34.921875pt;}
.ha{height:35.367188pt;}
.h7{height:39.296875pt;}
.h9{height:42.453333pt;}
.h4{height:46.698667pt;}
.h2{height:49.514062pt;}
.h3{height:50.944000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x5{left:391.673067pt;}
.x6{left:506.887733pt;}
.x4{left:507.870800pt;}
}




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