
    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_a6ddad1352d1feac05236537.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122000;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_17a6f1fe4d93661a4de0056d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_878650b8b777e09d3e8c1956.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_a11739805dabfceebc0e357e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_17a6f1fe4d93661a4de0056d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07a7bdc6c1cbef4f389b6423.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_cc17ea6664a89f8e6aeb6e70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087000;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_dd76cc8466e953ab659a9a78.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108000;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_fc984afdce55e0b0c88270f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116000;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_e87b6e8045acb28fabe61562.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116000;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_0075db218099f0261fc9b7cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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_5f3d8856f8a030c302fc44de.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.122000;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_712bab2f00bc0418765e483b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.108000;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_522b1ffa0c1979acb58d508c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.024000px;}
.ls12{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.300000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.210000px;}
.ls16{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.850500px;}
.lse{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.020000px;}
.ls5{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.140000px;}
.ls1f{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.380000px;}
.ls10{letter-spacing:1.500000px;}
.ls18{letter-spacing:1.590000px;}
.ls26{letter-spacing:1.620000px;}
.ls28{letter-spacing:1.650000px;}
.ls4{letter-spacing:1.680000px;}
.ls2{letter-spacing:1.728000px;}
.ls27{letter-spacing:1.740000px;}
.ls20{letter-spacing:1.860000px;}
.ls25{letter-spacing:2.400000px;}
.ls1{letter-spacing:12.510000px;}
.ls14{letter-spacing:1928.352000px;}
.ls7{letter-spacing:2033.050800px;}
.ls0{letter-spacing:2765.404800px;}
.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:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.wsf{word-spacing:-18.348000px;}
.ws11{word-spacing:-17.580000px;}
.ws27{word-spacing:-16.680000px;}
.ws26{word-spacing:-14.178000px;}
.ws10{word-spacing:-10.842000px;}
.ws13{word-spacing:-9.757800px;}
.ws5{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.680000px;}
.ws40{word-spacing:-0.895500px;}
.ws3c{word-spacing:-0.480000px;}
.ws60{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.045000px;}
.ws2{word-spacing:0.000000px;}
.ws49{word-spacing:0.240000px;}
.ws16{word-spacing:0.360000px;}
.ws21{word-spacing:0.420000px;}
.ws2c{word-spacing:0.648000px;}
.ws5f{word-spacing:0.660000px;}
.ws1a{word-spacing:0.720000px;}
.ws5a{word-spacing:0.840000px;}
.ws4c{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws17{word-spacing:1.080000px;}
.ws5e{word-spacing:1.140000px;}
.ws1c{word-spacing:1.200000px;}
.ws25{word-spacing:1.350000px;}
.ws4a{word-spacing:1.380000px;}
.wsa{word-spacing:1.440000px;}
.ws2a{word-spacing:1.620000px;}
.ws4d{word-spacing:1.740000px;}
.ws18{word-spacing:1.860000px;}
.ws50{word-spacing:1.980000px;}
.ws1d{word-spacing:2.040000px;}
.ws32{word-spacing:2.100000px;}
.ws52{word-spacing:2.280000px;}
.ws29{word-spacing:2.400000px;}
.ws47{word-spacing:2.460000px;}
.ws59{word-spacing:2.580000px;}
.wsc{word-spacing:2.640000px;}
.wse{word-spacing:2.880000px;}
.ws4{word-spacing:2.898000px;}
.wsd{word-spacing:2.976000px;}
.ws64{word-spacing:3.000000px;}
.ws58{word-spacing:3.060000px;}
.ws61{word-spacing:3.120000px;}
.ws5b{word-spacing:3.180000px;}
.ws2e{word-spacing:3.300000px;}
.ws2d{word-spacing:3.420000px;}
.ws30{word-spacing:3.540000px;}
.ws63{word-spacing:3.900000px;}
.ws53{word-spacing:3.960000px;}
.ws5d{word-spacing:4.380000px;}
.ws23{word-spacing:4.440000px;}
.ws8{word-spacing:4.464000px;}
.ws5c{word-spacing:4.500000px;}
.ws38{word-spacing:4.680000px;}
.ws45{word-spacing:4.740000px;}
.ws44{word-spacing:4.860000px;}
.ws4e{word-spacing:4.920000px;}
.ws3d{word-spacing:4.980000px;}
.ws65{word-spacing:5.040000px;}
.ws3f{word-spacing:5.100000px;}
.ws39{word-spacing:5.220000px;}
.ws1b{word-spacing:5.340000px;}
.ws19{word-spacing:5.400000px;}
.ws66{word-spacing:5.460000px;}
.ws41{word-spacing:5.520000px;}
.ws51{word-spacing:5.580000px;}
.ws62{word-spacing:5.640000px;}
.ws1f{word-spacing:5.760000px;}
.ws35{word-spacing:5.820000px;}
.ws1e{word-spacing:6.120000px;}
.ws3a{word-spacing:6.180000px;}
.ws9{word-spacing:6.192000px;}
.ws2f{word-spacing:6.300000px;}
.ws4f{word-spacing:6.360000px;}
.ws3b{word-spacing:6.420000px;}
.ws55{word-spacing:6.480000px;}
.ws36{word-spacing:6.600000px;}
.ws3e{word-spacing:6.660000px;}
.ws7{word-spacing:6.672000px;}
.ws46{word-spacing:6.720000px;}
.ws22{word-spacing:7.020000px;}
.ws54{word-spacing:7.080000px;}
.ws24{word-spacing:7.200000px;}
.ws33{word-spacing:7.440000px;}
.ws2b{word-spacing:7.506000px;}
.ws48{word-spacing:7.560000px;}
.ws57{word-spacing:7.680000px;}
.ws4b{word-spacing:7.800000px;}
.ws42{word-spacing:7.920000px;}
.ws20{word-spacing:7.980000px;}
.ws56{word-spacing:8.040000px;}
.ws43{word-spacing:8.100000px;}
.ws31{word-spacing:8.160000px;}
.ws37{word-spacing:8.280000px;}
.ws15{word-spacing:8.340000px;}
.ws34{word-spacing:9.480000px;}
.ws3{word-spacing:10.008000px;}
.ws6{word-spacing:10.656000px;}
.ws14{word-spacing:17.316000px;}
._3{margin-left:-30.046800px;}
._4{margin-left:-23.352000px;}
._11{margin-left:-21.684000px;}
._10{margin-left:-20.016000px;}
._2{margin-left:-9.324000px;}
._5{margin-left:-3.792000px;}
._6{margin-left:-1.728000px;}
._f{width:1.241700px;}
._d{width:2.370000px;}
._7{width:4.128000px;}
._a{width:7.140000px;}
._1{width:8.862000px;}
._0{width:11.676000px;}
._c{width:13.986000px;}
._9{width:15.984000px;}
._8{width:17.316000px;}
._b{width:49.140000px;}
._e{width:50.490000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.100000px;}
.fs2{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsf{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs10{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs6{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y53{bottom:138.195000px;}
.y60{bottom:138.207000px;}
.y72{bottom:138.882300px;}
.ybe{bottom:139.292250px;}
.yfa{bottom:139.532250px;}
.yda{bottom:140.121300px;}
.y9{bottom:140.313450px;}
.y63{bottom:140.899800px;}
.y98{bottom:142.239000px;}
.y8{bottom:152.314950px;}
.y5f{bottom:155.797500px;}
.y52{bottom:159.835500px;}
.ybd{bottom:160.082250px;}
.yf9{bottom:160.322250px;}
.yd9{bottom:160.911300px;}
.y7{bottom:170.695350px;}
.y5e{bottom:173.388000px;}
.ybc{bottom:180.872250px;}
.y6{bottom:188.251350px;}
.yf8{bottom:191.507250px;}
.yd8{bottom:192.096300px;}
.y5d{bottom:195.028500px;}
.ybb{bottom:201.662250px;}
.y5{bottom:205.807350px;}
.y97{bottom:210.375600px;}
.y51{bottom:211.347300px;}
.yf7{bottom:212.297250px;}
.yd7{bottom:212.886300px;}
.y4{bottom:216.989850px;}
.yba{bottom:222.452250px;}
.y96{bottom:231.165600px;}
.y50{bottom:232.137300px;}
.y3{bottom:232.424850px;}
.yf6{bottom:233.087250px;}
.yd6{bottom:233.676300px;}
.yb9{bottom:243.242250px;}
.y5c{bottom:245.210550px;}
.y95{bottom:251.955600px;}
.y4f{bottom:252.927300px;}
.yd5{bottom:254.466300px;}
.yb8{bottom:264.032250px;}
.yf5{bottom:264.272250px;}
.y94{bottom:272.745600px;}
.y4e{bottom:273.717300px;}
.yd4{bottom:275.256300px;}
.yf4{bottom:285.062250px;}
.y93{bottom:293.535600px;}
.y4d{bottom:294.507300px;}
.yb7{bottom:295.217250px;}
.yd3{bottom:306.441300px;}
.y92{bottom:314.325600px;}
.y4c{bottom:315.297300px;}
.yb6{bottom:316.007250px;}
.yf3{bottom:316.247250px;}
.yd2{bottom:327.231300px;}
.y91{bottom:335.115600px;}
.y4b{bottom:336.087300px;}
.yb5{bottom:336.797250px;}
.yf2{bottom:337.037250px;}
.yd1{bottom:348.021300px;}
.y90{bottom:355.905600px;}
.y4a{bottom:356.877300px;}
.ycc{bottom:356.948400px;}
.yb4{bottom:367.982250px;}
.yf1{bottom:368.222250px;}
.yd0{bottom:368.811300px;}
.y8f{bottom:376.695600px;}
.ycb{bottom:377.738400px;}
.yb3{bottom:388.772250px;}
.yf0{bottom:389.012250px;}
.y49{bottom:392.310150px;}
.y8e{bottom:397.485600px;}
.yca{bottom:398.528400px;}
.yb2{bottom:409.562250px;}
.yef{bottom:409.802250px;}
.ycf{bottom:414.877050px;}
.yc9{bottom:419.318400px;}
.y8d{bottom:428.652600px;}
.yb1{bottom:430.352250px;}
.yce{bottom:440.461050px;}
.yee{bottom:440.987250px;}
.y8c{bottom:449.442600px;}
.yc8{bottom:450.503400px;}
.yb0{bottom:451.142250px;}
.y48{bottom:455.610750px;}
.yed{bottom:461.777250px;}
.y8b{bottom:470.232600px;}
.yc7{bottom:471.293400px;}
.yaf{bottom:471.932250px;}
.y47{bottom:476.400750px;}
.y71{bottom:486.261600px;}
.y8a{bottom:491.022600px;}
.yc6{bottom:492.083400px;}
.y46{bottom:497.190750px;}
.y25{bottom:503.002200px;}
.yae{bottom:503.117250px;}
.yec{bottom:507.840000px;}
.y89{bottom:511.812600px;}
.ycd{bottom:512.819700px;}
.yc5{bottom:512.873400px;}
.y24{bottom:520.597200px;}
.yad{bottom:523.907250px;}
.y70{bottom:532.560450px;}
.y88{bottom:532.602600px;}
.yc4{bottom:533.663400px;}
.y23{bottom:538.192200px;}
.y45{bottom:543.253650px;}
.yac{bottom:544.697250px;}
.y2b{bottom:545.972100px;}
.y87{bottom:553.392600px;}
.yc3{bottom:554.453400px;}
.y22{bottom:555.787200px;}
.y6f{bottom:556.200900px;}
.y2a{bottom:560.360100px;}
.yab{bottom:565.487250px;}
.y5b{bottom:567.928350px;}
.y21{bottom:573.382200px;}
.y29{bottom:574.748100px;}
.yc2{bottom:575.243400px;}
.yeb{bottom:577.638600px;}
.y86{bottom:588.825450px;}
.y28{bottom:589.136100px;}
.y20{bottom:590.977200px;}
.y62{bottom:591.176850px;}
.yc1{bottom:596.033400px;}
.yea{bottom:598.428600px;}
.yaa{bottom:600.917250px;}
.y27{bottom:603.524100px;}
.y44{bottom:611.303100px;}
.y1f{bottom:615.770100px;}
.yc0{bottom:616.823400px;}
.y26{bottom:617.912100px;}
.y5a{bottom:618.473100px;}
.ye9{bottom:619.218600px;}
.ya9{bottom:621.707250px;}
.y43{bottom:632.093100px;}
.y59{bottom:639.263100px;}
.ye8{bottom:640.008600px;}
.y42{bottom:652.883100px;}
.y18{bottom:656.251200px;}
.y61{bottom:656.745600px;}
.y58{bottom:660.053100px;}
.y85{bottom:660.606900px;}
.y41{bottom:673.673100px;}
.y17{bottom:673.846200px;}
.ybf{bottom:677.768100px;}
.y84{bottom:681.396900px;}
.ye7{bottom:686.071350px;}
.y16{bottom:691.441200px;}
.ya8{bottom:691.769850px;}
.y40{bottom:694.463100px;}
.y1e{bottom:699.221100px;}
.y83{bottom:702.186900px;}
.y15{bottom:709.036200px;}
.y57{bottom:712.494000px;}
.ya7{bottom:712.559850px;}
.y1d{bottom:713.609100px;}
.y3f{bottom:725.648100px;}
.y14{bottom:726.631200px;}
.y1c{bottom:727.997100px;}
.ya6{bottom:733.349850px;}
.y82{bottom:733.371900px;}
.y56{bottom:736.134450px;}
.y1b{bottom:742.385100px;}
.y13{bottom:744.226200px;}
.y3e{bottom:746.438100px;}
.ye6{bottom:754.127850px;}
.ya5{bottom:754.139850px;}
.y81{bottom:754.161900px;}
.y1a{bottom:756.773100px;}
.y3d{bottom:767.228100px;}
.y12{bottom:769.019100px;}
.y19{bottom:771.161100px;}
.ye5{bottom:774.917850px;}
.ya4{bottom:774.929850px;}
.y80{bottom:774.951900px;}
.y3c{bottom:788.018100px;}
.ye4{bottom:795.707850px;}
.ya3{bottom:795.719850px;}
.y7f{bottom:795.741900px;}
.ya2{bottom:816.509850px;}
.y7e{bottom:816.531900px;}
.y3b{bottom:819.203100px;}
.ye3{bottom:826.892850px;}
.ya1{bottom:837.299850px;}
.y7d{bottom:837.321900px;}
.y3a{bottom:839.993100px;}
.ye2{bottom:847.682850px;}
.y6e{bottom:859.530150px;}
.y39{bottom:860.783100px;}
.ye1{bottom:868.472850px;}
.ya0{bottom:868.484850px;}
.y7c{bottom:868.504050px;}
.y11{bottom:878.643300px;}
.y38{bottom:881.573100px;}
.ye0{bottom:889.262850px;}
.y9f{bottom:889.274850px;}
.y7b{bottom:889.282050px;}
.y10{bottom:899.433300px;}
.y37{bottom:902.363100px;}
.ydf{bottom:910.052850px;}
.y6d{bottom:910.062000px;}
.y9e{bottom:910.064850px;}
.y7a{bottom:910.072050px;}
.yf{bottom:920.211150px;}
.y36{bottom:923.153100px;}
.yde{bottom:930.842850px;}
.y6c{bottom:930.852000px;}
.y9d{bottom:930.854850px;}
.y79{bottom:930.862050px;}
.y35{bottom:943.943100px;}
.y6b{bottom:951.642000px;}
.y9c{bottom:951.644850px;}
.y78{bottom:951.652050px;}
.ydd{bottom:962.027850px;}
.ye{bottom:964.605150px;}
.y77{bottom:972.422850px;}
.y6a{bottom:972.432000px;}
.y9b{bottom:972.434850px;}
.y34{bottom:975.128100px;}
.ydc{bottom:982.817850px;}
.yd{bottom:989.805150px;}
.y76{bottom:993.212850px;}
.y69{bottom:993.222000px;}
.y33{bottom:995.918100px;}
.ydb{bottom:1003.607850px;}
.y9a{bottom:1003.619850px;}
.y75{bottom:1014.002850px;}
.y68{bottom:1014.012000px;}
.y32{bottom:1016.702100px;}
.y99{bottom:1024.397850px;}
.yc{bottom:1034.190000px;}
.y74{bottom:1034.792850px;}
.y31{bottom:1037.492100px;}
.y67{bottom:1045.187850px;}
.y73{bottom:1055.582850px;}
.y30{bottom:1058.282100px;}
.y66{bottom:1065.977850px;}
.yb{bottom:1066.590150px;}
.y55{bottom:1086.232500px;}
.y65{bottom:1086.767850px;}
.ya{bottom:1098.990000px;}
.y2f{bottom:1104.345000px;}
.y54{bottom:1107.022500px;}
.y64{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y2e{bottom:1172.943900px;}
.y2d{bottom:1193.900100px;}
.y2c{bottom:1207.400100px;}
.h3{height:26.496000px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h14{height:32.832000px;}
.h5{height:33.435000px;}
.he{height:35.328000px;}
.hd{height:43.584000px;}
.hc{height:44.160000px;}
.hf{height:46.308000px;}
.h15{height:49.032000px;}
.ha{height:54.480000px;}
.h1b{height:54.491400px;}
.h11{height:54.504000px;}
.h18{height:54.516600px;}
.h1a{height:54.528000px;}
.h1c{height:54.552000px;}
.h19{height:54.556800px;}
.h13{height:54.564000px;}
.hb{height:55.200000px;}
.h17{height:57.204000px;}
.h16{height:57.960000px;}
.h2{height:59.928000px;}
.h12{height:66.240000px;}
.h10{height:71.760000px;}
.h8{height:75.432000px;}
.h9{height:76.272000px;}
.h7{height:99.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x15{left:86.980500px;}
.xe{left:93.543300px;}
.x11{left:106.293750px;}
.x18{left:108.234750px;}
.x3{left:110.554350px;}
.x23{left:112.993500px;}
.x20{left:126.004500px;}
.x6{left:133.604550px;}
.x24{left:136.069350px;}
.x25{left:138.010500px;}
.x4{left:145.195650px;}
.x12{left:147.583950px;}
.x5{left:150.820650px;}
.x1a{left:157.322850px;}
.xa{left:158.750850px;}
.x19{left:175.418250px;}
.x22{left:186.643200px;}
.x8{left:216.704850px;}
.x1c{left:224.875650px;}
.x17{left:227.295300px;}
.x21{left:235.802400px;}
.x1e{left:241.058400px;}
.x1f{left:242.522250px;}
.x1b{left:249.339450px;}
.x13{left:263.803200px;}
.xf{left:280.629900px;}
.x9{left:298.736850px;}
.x16{left:300.742500px;}
.x1d{left:401.670450px;}
.x7{left:480.558750px;}
.x14{left:540.390900px;}
.xd{left:543.323550px;}
.xc{left:561.983550px;}
.xb{left:621.632850px;}
.x10{left:699.271050px;}
.x2{left:752.406450px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.021333pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.186667pt;}
.ls16{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.756000pt;}
.lse{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls5{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls10{letter-spacing:1.333333pt;}
.ls18{letter-spacing:1.413333pt;}
.ls26{letter-spacing:1.440000pt;}
.ls28{letter-spacing:1.466667pt;}
.ls4{letter-spacing:1.493333pt;}
.ls2{letter-spacing:1.536000pt;}
.ls27{letter-spacing:1.546667pt;}
.ls20{letter-spacing:1.653333pt;}
.ls25{letter-spacing:2.133333pt;}
.ls1{letter-spacing:11.120000pt;}
.ls14{letter-spacing:1714.090667pt;}
.ls7{letter-spacing:1807.156267pt;}
.ls0{letter-spacing:2458.137600pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.wsf{word-spacing:-16.309333pt;}
.ws11{word-spacing:-15.626667pt;}
.ws27{word-spacing:-14.826667pt;}
.ws26{word-spacing:-12.602667pt;}
.ws10{word-spacing:-9.637333pt;}
.ws13{word-spacing:-8.673600pt;}
.ws5{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.493333pt;}
.ws40{word-spacing:-0.796000pt;}
.ws3c{word-spacing:-0.426667pt;}
.ws60{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.040000pt;}
.ws2{word-spacing:0.000000pt;}
.ws49{word-spacing:0.213333pt;}
.ws16{word-spacing:0.320000pt;}
.ws21{word-spacing:0.373333pt;}
.ws2c{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.746667pt;}
.ws4c{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws17{word-spacing:0.960000pt;}
.ws5e{word-spacing:1.013333pt;}
.ws1c{word-spacing:1.066667pt;}
.ws25{word-spacing:1.200000pt;}
.ws4a{word-spacing:1.226667pt;}
.wsa{word-spacing:1.280000pt;}
.ws2a{word-spacing:1.440000pt;}
.ws4d{word-spacing:1.546667pt;}
.ws18{word-spacing:1.653333pt;}
.ws50{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.813333pt;}
.ws32{word-spacing:1.866667pt;}
.ws52{word-spacing:2.026667pt;}
.ws29{word-spacing:2.133333pt;}
.ws47{word-spacing:2.186667pt;}
.ws59{word-spacing:2.293333pt;}
.wsc{word-spacing:2.346667pt;}
.wse{word-spacing:2.560000pt;}
.ws4{word-spacing:2.576000pt;}
.wsd{word-spacing:2.645333pt;}
.ws64{word-spacing:2.666667pt;}
.ws58{word-spacing:2.720000pt;}
.ws61{word-spacing:2.773333pt;}
.ws5b{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.933333pt;}
.ws2d{word-spacing:3.040000pt;}
.ws30{word-spacing:3.146667pt;}
.ws63{word-spacing:3.466667pt;}
.ws53{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.893333pt;}
.ws23{word-spacing:3.946667pt;}
.ws8{word-spacing:3.968000pt;}
.ws5c{word-spacing:4.000000pt;}
.ws38{word-spacing:4.160000pt;}
.ws45{word-spacing:4.213333pt;}
.ws44{word-spacing:4.320000pt;}
.ws4e{word-spacing:4.373333pt;}
.ws3d{word-spacing:4.426667pt;}
.ws65{word-spacing:4.480000pt;}
.ws3f{word-spacing:4.533333pt;}
.ws39{word-spacing:4.640000pt;}
.ws1b{word-spacing:4.746667pt;}
.ws19{word-spacing:4.800000pt;}
.ws66{word-spacing:4.853333pt;}
.ws41{word-spacing:4.906667pt;}
.ws51{word-spacing:4.960000pt;}
.ws62{word-spacing:5.013333pt;}
.ws1f{word-spacing:5.120000pt;}
.ws35{word-spacing:5.173333pt;}
.ws1e{word-spacing:5.440000pt;}
.ws3a{word-spacing:5.493333pt;}
.ws9{word-spacing:5.504000pt;}
.ws2f{word-spacing:5.600000pt;}
.ws4f{word-spacing:5.653333pt;}
.ws3b{word-spacing:5.706667pt;}
.ws55{word-spacing:5.760000pt;}
.ws36{word-spacing:5.866667pt;}
.ws3e{word-spacing:5.920000pt;}
.ws7{word-spacing:5.930667pt;}
.ws46{word-spacing:5.973333pt;}
.ws22{word-spacing:6.240000pt;}
.ws54{word-spacing:6.293333pt;}
.ws24{word-spacing:6.400000pt;}
.ws33{word-spacing:6.613333pt;}
.ws2b{word-spacing:6.672000pt;}
.ws48{word-spacing:6.720000pt;}
.ws57{word-spacing:6.826667pt;}
.ws4b{word-spacing:6.933333pt;}
.ws42{word-spacing:7.040000pt;}
.ws20{word-spacing:7.093333pt;}
.ws56{word-spacing:7.146667pt;}
.ws43{word-spacing:7.200000pt;}
.ws31{word-spacing:7.253333pt;}
.ws37{word-spacing:7.360000pt;}
.ws15{word-spacing:7.413333pt;}
.ws34{word-spacing:8.426667pt;}
.ws3{word-spacing:8.896000pt;}
.ws6{word-spacing:9.472000pt;}
.ws14{word-spacing:15.392000pt;}
._3{margin-left:-26.708267pt;}
._4{margin-left:-20.757333pt;}
._11{margin-left:-19.274667pt;}
._10{margin-left:-17.792000pt;}
._2{margin-left:-8.288000pt;}
._5{margin-left:-3.370667pt;}
._6{margin-left:-1.536000pt;}
._f{width:1.103733pt;}
._d{width:2.106667pt;}
._7{width:3.669333pt;}
._a{width:6.346667pt;}
._1{width:7.877333pt;}
._0{width:10.378667pt;}
._c{width:12.432000pt;}
._9{width:14.208000pt;}
._8{width:15.392000pt;}
._b{width:43.680000pt;}
._e{width:44.880000pt;}
.fse{font-size:31.200000pt;}
.fs2{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsf{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs10{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y53{bottom:122.840000pt;}
.y60{bottom:122.850667pt;}
.y72{bottom:123.450933pt;}
.ybe{bottom:123.815333pt;}
.yfa{bottom:124.028667pt;}
.yda{bottom:124.552267pt;}
.y9{bottom:124.723067pt;}
.y63{bottom:125.244267pt;}
.y98{bottom:126.434667pt;}
.y8{bottom:135.391067pt;}
.y5f{bottom:138.486667pt;}
.y52{bottom:142.076000pt;}
.ybd{bottom:142.295333pt;}
.yf9{bottom:142.508667pt;}
.yd9{bottom:143.032267pt;}
.y7{bottom:151.729200pt;}
.y5e{bottom:154.122667pt;}
.ybc{bottom:160.775333pt;}
.y6{bottom:167.334533pt;}
.yf8{bottom:170.228667pt;}
.yd8{bottom:170.752267pt;}
.y5d{bottom:173.358667pt;}
.ybb{bottom:179.255333pt;}
.y5{bottom:182.939867pt;}
.y97{bottom:187.000533pt;}
.y51{bottom:187.864267pt;}
.yf7{bottom:188.708667pt;}
.yd7{bottom:189.232267pt;}
.y4{bottom:192.879867pt;}
.yba{bottom:197.735333pt;}
.y96{bottom:205.480533pt;}
.y50{bottom:206.344267pt;}
.y3{bottom:206.599867pt;}
.yf6{bottom:207.188667pt;}
.yd6{bottom:207.712267pt;}
.yb9{bottom:216.215333pt;}
.y5c{bottom:217.964933pt;}
.y95{bottom:223.960533pt;}
.y4f{bottom:224.824267pt;}
.yd5{bottom:226.192267pt;}
.yb8{bottom:234.695333pt;}
.yf5{bottom:234.908667pt;}
.y94{bottom:242.440533pt;}
.y4e{bottom:243.304267pt;}
.yd4{bottom:244.672267pt;}
.yf4{bottom:253.388667pt;}
.y93{bottom:260.920533pt;}
.y4d{bottom:261.784267pt;}
.yb7{bottom:262.415333pt;}
.yd3{bottom:272.392267pt;}
.y92{bottom:279.400533pt;}
.y4c{bottom:280.264267pt;}
.yb6{bottom:280.895333pt;}
.yf3{bottom:281.108667pt;}
.yd2{bottom:290.872267pt;}
.y91{bottom:297.880533pt;}
.y4b{bottom:298.744267pt;}
.yb5{bottom:299.375333pt;}
.yf2{bottom:299.588667pt;}
.yd1{bottom:309.352267pt;}
.y90{bottom:316.360533pt;}
.y4a{bottom:317.224267pt;}
.ycc{bottom:317.287467pt;}
.yb4{bottom:327.095333pt;}
.yf1{bottom:327.308667pt;}
.yd0{bottom:327.832267pt;}
.y8f{bottom:334.840533pt;}
.ycb{bottom:335.767467pt;}
.yb3{bottom:345.575333pt;}
.yf0{bottom:345.788667pt;}
.y49{bottom:348.720133pt;}
.y8e{bottom:353.320533pt;}
.yca{bottom:354.247467pt;}
.yb2{bottom:364.055333pt;}
.yef{bottom:364.268667pt;}
.ycf{bottom:368.779600pt;}
.yc9{bottom:372.727467pt;}
.y8d{bottom:381.024533pt;}
.yb1{bottom:382.535333pt;}
.yce{bottom:391.520933pt;}
.yee{bottom:391.988667pt;}
.y8c{bottom:399.504533pt;}
.yc8{bottom:400.447467pt;}
.yb0{bottom:401.015333pt;}
.y48{bottom:404.987333pt;}
.yed{bottom:410.468667pt;}
.y8b{bottom:417.984533pt;}
.yc7{bottom:418.927467pt;}
.yaf{bottom:419.495333pt;}
.y47{bottom:423.467333pt;}
.y71{bottom:432.232533pt;}
.y8a{bottom:436.464533pt;}
.yc6{bottom:437.407467pt;}
.y46{bottom:441.947333pt;}
.y25{bottom:447.113067pt;}
.yae{bottom:447.215333pt;}
.yec{bottom:451.413333pt;}
.y89{bottom:454.944533pt;}
.ycd{bottom:455.839733pt;}
.yc5{bottom:455.887467pt;}
.y24{bottom:462.753067pt;}
.yad{bottom:465.695333pt;}
.y70{bottom:473.387067pt;}
.y88{bottom:473.424533pt;}
.yc4{bottom:474.367467pt;}
.y23{bottom:478.393067pt;}
.y45{bottom:482.892133pt;}
.yac{bottom:484.175333pt;}
.y2b{bottom:485.308533pt;}
.y87{bottom:491.904533pt;}
.yc3{bottom:492.847467pt;}
.y22{bottom:494.033067pt;}
.y6f{bottom:494.400800pt;}
.y2a{bottom:498.097867pt;}
.yab{bottom:502.655333pt;}
.y5b{bottom:504.825200pt;}
.y21{bottom:509.673067pt;}
.y29{bottom:510.887200pt;}
.yc2{bottom:511.327467pt;}
.yeb{bottom:513.456533pt;}
.y86{bottom:523.400400pt;}
.y28{bottom:523.676533pt;}
.y20{bottom:525.313067pt;}
.y62{bottom:525.490533pt;}
.yc1{bottom:529.807467pt;}
.yea{bottom:531.936533pt;}
.yaa{bottom:534.148667pt;}
.y27{bottom:536.465867pt;}
.y44{bottom:543.380533pt;}
.y1f{bottom:547.351200pt;}
.yc0{bottom:548.287467pt;}
.y26{bottom:549.255200pt;}
.y5a{bottom:549.753867pt;}
.ye9{bottom:550.416533pt;}
.ya9{bottom:552.628667pt;}
.y43{bottom:561.860533pt;}
.y59{bottom:568.233867pt;}
.ye8{bottom:568.896533pt;}
.y42{bottom:580.340533pt;}
.y18{bottom:583.334400pt;}
.y61{bottom:583.773867pt;}
.y58{bottom:586.713867pt;}
.y85{bottom:587.206133pt;}
.y41{bottom:598.820533pt;}
.y17{bottom:598.974400pt;}
.ybf{bottom:602.460533pt;}
.y84{bottom:605.686133pt;}
.ye7{bottom:609.841200pt;}
.y16{bottom:614.614400pt;}
.ya8{bottom:614.906533pt;}
.y40{bottom:617.300533pt;}
.y1e{bottom:621.529867pt;}
.y83{bottom:624.166133pt;}
.y15{bottom:630.254400pt;}
.y57{bottom:633.328000pt;}
.ya7{bottom:633.386533pt;}
.y1d{bottom:634.319200pt;}
.y3f{bottom:645.020533pt;}
.y14{bottom:645.894400pt;}
.y1c{bottom:647.108533pt;}
.ya6{bottom:651.866533pt;}
.y82{bottom:651.886133pt;}
.y56{bottom:654.341733pt;}
.y1b{bottom:659.897867pt;}
.y13{bottom:661.534400pt;}
.y3e{bottom:663.500533pt;}
.ye6{bottom:670.335867pt;}
.ya5{bottom:670.346533pt;}
.y81{bottom:670.366133pt;}
.y1a{bottom:672.687200pt;}
.y3d{bottom:681.980533pt;}
.y12{bottom:683.572533pt;}
.y19{bottom:685.476533pt;}
.ye5{bottom:688.815867pt;}
.ya4{bottom:688.826533pt;}
.y80{bottom:688.846133pt;}
.y3c{bottom:700.460533pt;}
.ye4{bottom:707.295867pt;}
.ya3{bottom:707.306533pt;}
.y7f{bottom:707.326133pt;}
.ya2{bottom:725.786533pt;}
.y7e{bottom:725.806133pt;}
.y3b{bottom:728.180533pt;}
.ye3{bottom:735.015867pt;}
.ya1{bottom:744.266533pt;}
.y7d{bottom:744.286133pt;}
.y3a{bottom:746.660533pt;}
.ye2{bottom:753.495867pt;}
.y6e{bottom:764.026800pt;}
.y39{bottom:765.140533pt;}
.ye1{bottom:771.975867pt;}
.ya0{bottom:771.986533pt;}
.y7c{bottom:772.003600pt;}
.y11{bottom:781.016267pt;}
.y38{bottom:783.620533pt;}
.ye0{bottom:790.455867pt;}
.y9f{bottom:790.466533pt;}
.y7b{bottom:790.472933pt;}
.y10{bottom:799.496267pt;}
.y37{bottom:802.100533pt;}
.ydf{bottom:808.935867pt;}
.y6d{bottom:808.944000pt;}
.y9e{bottom:808.946533pt;}
.y7a{bottom:808.952933pt;}
.yf{bottom:817.965467pt;}
.y36{bottom:820.580533pt;}
.yde{bottom:827.415867pt;}
.y6c{bottom:827.424000pt;}
.y9d{bottom:827.426533pt;}
.y79{bottom:827.432933pt;}
.y35{bottom:839.060533pt;}
.y6b{bottom:845.904000pt;}
.y9c{bottom:845.906533pt;}
.y78{bottom:845.912933pt;}
.ydd{bottom:855.135867pt;}
.ye{bottom:857.426800pt;}
.y77{bottom:864.375867pt;}
.y6a{bottom:864.384000pt;}
.y9b{bottom:864.386533pt;}
.y34{bottom:866.780533pt;}
.ydc{bottom:873.615867pt;}
.yd{bottom:879.826800pt;}
.y76{bottom:882.855867pt;}
.y69{bottom:882.864000pt;}
.y33{bottom:885.260533pt;}
.ydb{bottom:892.095867pt;}
.y9a{bottom:892.106533pt;}
.y75{bottom:901.335867pt;}
.y68{bottom:901.344000pt;}
.y32{bottom:903.735200pt;}
.y99{bottom:910.575867pt;}
.yc{bottom:919.280000pt;}
.y74{bottom:919.815867pt;}
.y31{bottom:922.215200pt;}
.y67{bottom:929.055867pt;}
.y73{bottom:938.295867pt;}
.y30{bottom:940.695200pt;}
.y66{bottom:947.535867pt;}
.yb{bottom:948.080133pt;}
.y55{bottom:965.540000pt;}
.y65{bottom:966.015867pt;}
.ya{bottom:976.880000pt;}
.y2f{bottom:981.640000pt;}
.y54{bottom:984.020000pt;}
.y64{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y2e{bottom:1042.616800pt;}
.y2d{bottom:1061.244533pt;}
.y2c{bottom:1073.244533pt;}
.h3{height:23.552000pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h14{height:29.184000pt;}
.h5{height:29.720000pt;}
.he{height:31.402667pt;}
.hd{height:38.741333pt;}
.hc{height:39.253333pt;}
.hf{height:41.162667pt;}
.h15{height:43.584000pt;}
.ha{height:48.426667pt;}
.h1b{height:48.436800pt;}
.h11{height:48.448000pt;}
.h18{height:48.459200pt;}
.h1a{height:48.469333pt;}
.h1c{height:48.490667pt;}
.h19{height:48.494933pt;}
.h13{height:48.501333pt;}
.hb{height:49.066667pt;}
.h17{height:50.848000pt;}
.h16{height:51.520000pt;}
.h2{height:53.269333pt;}
.h12{height:58.880000pt;}
.h10{height:63.786667pt;}
.h8{height:67.050667pt;}
.h9{height:67.797333pt;}
.h7{height:88.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x15{left:77.316000pt;}
.xe{left:83.149600pt;}
.x11{left:94.483333pt;}
.x18{left:96.208667pt;}
.x3{left:98.270533pt;}
.x23{left:100.438667pt;}
.x20{left:112.004000pt;}
.x6{left:118.759600pt;}
.x24{left:120.950533pt;}
.x25{left:122.676000pt;}
.x4{left:129.062800pt;}
.x12{left:131.185733pt;}
.x5{left:134.062800pt;}
.x1a{left:139.842533pt;}
.xa{left:141.111867pt;}
.x19{left:155.927333pt;}
.x22{left:165.905067pt;}
.x8{left:192.626533pt;}
.x1c{left:199.889467pt;}
.x17{left:202.040267pt;}
.x21{left:209.602133pt;}
.x1e{left:214.274133pt;}
.x1f{left:215.575333pt;}
.x1b{left:221.635067pt;}
.x13{left:234.491733pt;}
.xf{left:249.448800pt;}
.x9{left:265.543867pt;}
.x16{left:267.326667pt;}
.x1d{left:357.040400pt;}
.x7{left:427.163333pt;}
.x14{left:480.347467pt;}
.xd{left:482.954267pt;}
.xc{left:499.540933pt;}
.xb{left:552.562533pt;}
.x10{left:621.574267pt;}
.x2{left:668.805733pt;}
}




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