
    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_07de2d4594d0d5d31239d46c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_3d55d4774cf73b93c64419ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_22c8fa4cb548eac944e1cd10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_ab294f5814f73a9377186ce9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_fcd3692a98d34ddfeb182d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_e8fd63704ef7e049d4a03148.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_6d072c3305713934c23a9114.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_572b99f18a543f9d1a3964f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_bf4197497222cc7f4b10be89.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_b49e724929c540dd0cae283c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_f4de9f0565bcf6d736c655b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_50a048ae878062f2ab8fe0b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688477;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_fc92e3e5faa5b5c3f4649ad9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_18b8b5a376bc4102fcf33a11.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.254000px;}
.ls4{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.536400px;}
.lsb{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.140400px;}
.ls9{letter-spacing:-0.085200px;}
.ls3{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.183600px;}
.ls6{letter-spacing:0.511800px;}
.lsf{letter-spacing:0.864000px;}
.lsa{letter-spacing:1.440000px;}
.lsd{letter-spacing:33.960000px;}
.lse{letter-spacing:54.864000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.935680px;}
.ws1{word-spacing:-13.505760px;}
.ws9{word-spacing:-10.527600px;}
.ws8{word-spacing:-10.472400px;}
.ws5{word-spacing:-10.449240px;}
.ws4{word-spacing:-10.121040px;}
.ws3{word-spacing:-9.937440px;}
.wsb{word-spacing:-9.729240px;}
.wse{word-spacing:-9.401040px;}
.ws6{word-spacing:-8.683440px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-2.626800px;}
._0{margin-left:-1.134000px;}
._4{width:1.340640px;}
._5{width:2.399520px;}
._e{width:4.313520px;}
._12{width:5.365440px;}
._8{width:7.021440px;}
._9{width:8.280000px;}
._b{width:9.671040px;}
._14{width:11.467440px;}
._13{width:13.181760px;}
._18{width:15.012000px;}
._17{width:16.128000px;}
._a{width:18.547200px;}
._1e{width:20.448000px;}
._10{width:21.461760px;}
._11{width:22.587840px;}
._19{width:23.846400px;}
._1a{width:25.381920px;}
._1b{width:26.443680px;}
._c{width:27.754560px;}
._d{width:28.942320px;}
._2{width:30.870000px;}
._1f{width:32.490000px;}
._26{width:33.606000px;}
._6{width:34.709760px;}
._7{width:36.653280px;}
._21{width:38.061360px;}
._20{width:39.096000px;}
._27{width:40.248000px;}
._1c{width:41.256000px;}
._1d{width:42.516720px;}
._f{width:43.850880px;}
._25{width:45.040320px;}
._23{width:46.080000px;}
._24{width:48.024000px;}
._28{width:60.830160px;}
._22{width:82.278000px;}
._3{width:1091.557200px;}
._15{width:1340.970240px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.080000px;}
.y33{bottom:1.410000px;}
.y32{bottom:2.670000px;}
.y3e{bottom:3.240000px;}
.y3{bottom:4.500000px;}
.y3c{bottom:5.580000px;}
.y67{bottom:5.940000px;}
.ye4{bottom:6.120000px;}
.y35{bottom:9.330000px;}
.ye3{bottom:15.660000px;}
.ya5{bottom:15.840000px;}
.y66{bottom:16.020000px;}
.y41{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y3a{bottom:28.440000px;}
.y3d{bottom:37.620000px;}
.y39{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y36{bottom:67.140000px;}
.y30{bottom:111.780000px;}
.y88{bottom:112.860000px;}
.yc3{bottom:116.460000px;}
.y2f{bottom:119.340000px;}
.ye2{bottom:122.580000px;}
.y146{bottom:126.720000px;}
.y110{bottom:129.780000px;}
.yf4{bottom:131.400000px;}
.y2e{bottom:134.460000px;}
.y12d{bottom:138.960000px;}
.y65{bottom:140.220000px;}
.ya4{bottom:145.440000px;}
.ye1{bottom:146.340000px;}
.y145{bottom:150.480000px;}
.y87{bottom:151.560000px;}
.y10f{bottom:152.100000px;}
.y2d{bottom:156.420000px;}
.y12c{bottom:162.900000px;}
.yc2{bottom:163.980000px;}
.ye0{bottom:170.280000px;}
.y64{bottom:179.100000px;}
.y2c{bottom:180.000000px;}
.ya3{bottom:184.320000px;}
.y10e{bottom:186.660000px;}
.yc1{bottom:187.740000px;}
.y144{bottom:189.360000px;}
.y86{bottom:190.440000px;}
.ydf{bottom:194.040000px;}
.y12b{bottom:201.240000px;}
.y2b{bottom:201.960000px;}
.y63{bottom:202.860000px;}
.ya2{bottom:208.110000px;}
.y10d{bottom:208.830000px;}
.yc0{bottom:211.710000px;}
.y143{bottom:213.150000px;}
.y85{bottom:214.230000px;}
.yde{bottom:217.830000px;}
.y152{bottom:223.050000px;}
.y2a{bottom:224.310000px;}
.y62{bottom:226.650000px;}
.y10c{bottom:231.150000px;}
.ya1{bottom:231.870000px;}
.ybf{bottom:235.470000px;}
.y142{bottom:236.910000px;}
.y84{bottom:237.990000px;}
.y12a{bottom:240.510000px;}
.yf3{bottom:241.590000px;}
.y151{bottom:246.810000px;}
.y29{bottom:248.070000px;}
.y61{bottom:250.410000px;}
.y10b{bottom:253.470000px;}
.ydd{bottom:256.350000px;}
.y141{bottom:260.670000px;}
.y83{bottom:261.930000px;}
.yf2{bottom:265.530000px;}
.ya0{bottom:270.390000px;}
.ybe{bottom:273.990000px;}
.y10a{bottom:275.790000px;}
.y129{bottom:278.850000px;}
.y28{bottom:279.210000px;}
.y140{bottom:284.610000px;}
.y150{bottom:285.690000px;}
.y60{bottom:288.930000px;}
.yf1{bottom:289.290000px;}
.ydc{bottom:295.410000px;}
.y82{bottom:300.270000px;}
.y27{bottom:302.970000px;}
.y9f{bottom:309.450000px;}
.y109{bottom:310.350000px;}
.ybd{bottom:313.050000px;}
.y128{bottom:317.730000px;}
.ydb{bottom:319.350000px;}
.y13f{bottom:322.950000px;}
.y26{bottom:324.750000px;}
.y5f{bottom:327.990000px;}
.y108{bottom:332.490000px;}
.y9e{bottom:333.210000px;}
.ybc{bottom:336.810000px;}
.y81{bottom:339.510000px;}
.yda{bottom:343.110000px;}
.y25{bottom:346.710000px;}
.y14f{bottom:348.330000px;}
.yf0{bottom:351.570000px;}
.y5e{bottom:351.930000px;}
.y107{bottom:354.810000px;}
.y127{bottom:356.790000px;}
.y9d{bottom:357.150000px;}
.y13e{bottom:357.870000px;}
.ybb{bottom:360.750000px;}
.y80{bottom:363.270000px;}
.yd9{bottom:366.870000px;}
.y24{bottom:368.490000px;}
.y14e{bottom:372.090000px;}
.y5d{bottom:375.690000px;}
.y106{bottom:377.130000px;}
.y13d{bottom:381.270000px;}
.yba{bottom:384.510000px;}
.y7f{bottom:387.030000px;}
.y23{bottom:390.270000px;}
.yd8{bottom:390.630000px;}
.y126{bottom:395.310000px;}
.y9c{bottom:395.490000px;}
.y5c{bottom:399.450000px;}
.y13c{bottom:403.590000px;}
.yb9{bottom:408.270000px;}
.y7e{bottom:410.970000px;}
.y105{bottom:411.690000px;}
.y22{bottom:412.050000px;}
.yd7{bottom:414.390000px;}
.y13b{bottom:427.350000px;}
.yb8{bottom:432.030000px;}
.y104{bottom:433.830000px;}
.y21{bottom:434.010000px;}
.y125{bottom:434.550000px;}
.y9b{bottom:434.730000px;}
.y5b{bottom:437.970000px;}
.yd6{bottom:438.330000px;}
.y7d{bottom:449.355000px;}
.y13a{bottom:450.975000px;}
.y20{bottom:455.835000px;}
.yb7{bottom:456.015000px;}
.y103{bottom:456.195000px;}
.y124{bottom:458.355000px;}
.y9a{bottom:458.535000px;}
.yd5{bottom:462.135000px;}
.y14d{bottom:473.475000px;}
.y139{bottom:474.555000px;}
.y5a{bottom:477.075000px;}
.y1f{bottom:477.615000px;}
.y102{bottom:478.515000px;}
.yb6{bottom:479.775000px;}
.yef{bottom:485.895000px;}
.y7c{bottom:488.595000px;}
.y123{bottom:496.695000px;}
.y99{bottom:497.055000px;}
.y14c{bottom:497.415000px;}
.y138{bottom:498.135000px;}
.y1e{bottom:499.395000px;}
.yd4{bottom:500.655000px;}
.y59{bottom:501.015000px;}
.yb5{bottom:503.535000px;}
.yee{bottom:509.655000px;}
.y137{bottom:520.635000px;}
.y1d{bottom:521.175000px;}
.y58{bottom:524.775000px;}
.y7b{bottom:526.935000px;}
.yb4{bottom:527.295000px;}
.yed{bottom:533.595000px;}
.y98{bottom:535.755000px;}
.y122{bottom:535.935000px;}
.y14b{bottom:536.115000px;}
.y101{bottom:539.355000px;}
.yd3{bottom:539.715000px;}
.y1c{bottom:543.135000px;}
.y136{bottom:544.215000px;}
.y57{bottom:548.535000px;}
.yb3{bottom:551.055000px;}
.yec{bottom:557.355000px;}
.y121{bottom:559.695000px;}
.y14a{bottom:559.875000px;}
.yd2{bottom:563.475000px;}
.y1b{bottom:564.915000px;}
.y7a{bottom:566.175000px;}
.y135{bottom:567.795000px;}
.y97{bottom:574.995000px;}
.y100{bottom:578.595000px;}
.y1a{bottom:586.695000px;}
.y56{bottom:587.055000px;}
.yd1{bottom:587.415000px;}
.yb2{bottom:589.575000px;}
.y79{bottom:589.935000px;}
.y134{bottom:591.375000px;}
.yeb{bottom:595.695000px;}
.y120{bottom:598.215000px;}
.y96{bottom:598.755000px;}
.yff{bottom:602.355000px;}
.y19{bottom:608.475000px;}
.yd0{bottom:611.175000px;}
.y78{bottom:613.695000px;}
.y133{bottom:615.135000px;}
.y95{bottom:622.515000px;}
.y55{bottom:625.755000px;}
.yfe{bottom:626.115000px;}
.yb1{bottom:628.815000px;}
.y18{bottom:630.435000px;}
.ycf{bottom:634.935000px;}
.y11f{bottom:637.275000px;}
.y149{bottom:637.635000px;}
.yfd{bottom:649.875000px;}
.y17{bottom:652.215000px;}
.yb0{bottom:652.575000px;}
.y132{bottom:654.735000px;}
.yce{bottom:658.695000px;}
.y94{bottom:661.035000px;}
.y11e{bottom:661.215000px;}
.y148{bottom:661.395000px;}
.y54{bottom:664.995000px;}
.yfc{bottom:673.815000px;}
.y16{bottom:673.995000px;}
.yaf{bottom:676.365000px;}
.ycd{bottom:682.665000px;}
.y53{bottom:688.785000px;}
.y77{bottom:691.305000px;}
.y131{bottom:694.005000px;}
.y11d{bottom:699.585000px;}
.y93{bottom:700.125000px;}
.y15{bottom:703.725000px;}
.ycc{bottom:706.425000px;}
.y52{bottom:712.545000px;}
.y76{bottom:715.245000px;}
.y130{bottom:717.765000px;}
.y92{bottom:724.065000px;}
.y14{bottom:728.385000px;}
.yea{bottom:730.185000px;}
.y51{bottom:736.305000px;}
.y11c{bottom:738.825000px;}
.y75{bottom:739.005000px;}
.ycb{bottom:744.765000px;}
.y13{bottom:746.925000px;}
.yae{bottom:747.825000px;}
.ye9{bottom:753.945000px;}
.y12f{bottom:756.285000px;}
.yfb{bottom:760.245000px;}
.y91{bottom:762.405000px;}
.y11b{bottom:762.585000px;}
.y74{bottom:762.765000px;}
.yad{bottom:771.585000px;}
.y12{bottom:773.745000px;}
.y50{bottom:775.185000px;}
.ye8{bottom:777.705000px;}
.yca{bottom:783.645000px;}
.yfa{bottom:784.005000px;}
.y147{bottom:786.525000px;}
.y10{bottom:794.805000px;}
.yac{bottom:795.345000px;}
.y4f{bottom:798.945000px;}
.y11a{bottom:801.105000px;}
.y73{bottom:801.285000px;}
.y90{bottom:801.645000px;}
.y11{bottom:802.365000px;}
.yf9{bottom:807.765000px;}
.yf{bottom:812.265000px;}
.ye7{bottom:816.225000px;}
.yab{bottom:819.285000px;}
.y4e{bottom:822.705000px;}
.y8f{bottom:825.405000px;}
.yf8{bottom:831.525000px;}
.ye{bottom:839.985000px;}
.y119{bottom:840.165000px;}
.y72{bottom:840.345000px;}
.y4d{bottom:846.645000px;}
.y8e{bottom:849.165000px;}
.ye6{bottom:855.105000px;}
.yf7{bottom:855.465000px;}
.yaa{bottom:857.625000px;}
.yd{bottom:860.685000px;}
.y118{bottom:863.925000px;}
.y71{bottom:864.285000px;}
.y4c{bottom:870.405000px;}
.yc{bottom:883.005000px;}
.y8d{bottom:887.685000px;}
.y70{bottom:888.045000px;}
.yf6{bottom:893.805000px;}
.y4b{bottom:894.165000px;}
.ya9{bottom:896.505000px;}
.y12e{bottom:896.865000px;}
.y117{bottom:902.445000px;}
.y6f{bottom:911.850000px;}
.yb{bottom:915.270000px;}
.y4a{bottom:917.970000px;}
.y8c{bottom:926.790000px;}
.yf5{bottom:933.090000px;}
.ya8{bottom:935.250000px;}
.y116{bottom:941.730000px;}
.yc9{bottom:941.910000px;}
.ya{bottom:947.670000px;}
.y6e{bottom:950.370000px;}
.y8b{bottom:950.730000px;}
.y49{bottom:956.850000px;}
.yc8{bottom:965.670000px;}
.y9{bottom:973.590000px;}
.y8a{bottom:974.490000px;}
.y115{bottom:980.070000px;}
.y48{bottom:980.610000px;}
.y34{bottom:983.880000px;}
.y6d{bottom:989.430000px;}
.y31{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.ya7{bottom:998.250000px;}
.y47{bottom:1004.370000px;}
.y89{bottom:1012.830000px;}
.y6c{bottom:1013.190000px;}
.y114{bottom:1014.990000px;}
.y7{bottom:1027.590000px;}
.y46{bottom:1028.310000px;}
.ya6{bottom:1036.770000px;}
.y6b{bottom:1037.130000px;}
.yc7{bottom:1051.710000px;}
.y45{bottom:1052.070000px;}
.y113{bottom:1059.450000px;}
.y6a{bottom:1060.890000px;}
.y6{bottom:1062.870000px;}
.yc6{bottom:1075.470000px;}
.y44{bottom:1075.830000px;}
.y112{bottom:1081.770000px;}
.ye5{bottom:1090.950000px;}
.y69{bottom:1099.230000px;}
.y43{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.yc5{bottom:1114.710000px;}
.y111{bottom:1116.330000px;}
.y42{bottom:1138.110000px;}
.yc4{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y40{bottom:1183.500000px;}
.y3f{bottom:1197.540000px;}
.y68{bottom:1198.260000px;}
.y38{bottom:1207.800000px;}
.y3b{bottom:1220.400000px;}
.h18{height:13.320000px;}
.h16{height:14.580000px;}
.h22{height:18.000000px;}
.h23{height:18.180000px;}
.h1a{height:21.240000px;}
.h1d{height:24.380859px;}
.h1b{height:24.660000px;}
.h1e{height:36.168398px;}
.h2{height:38.405391px;}
.h17{height:38.464805px;}
.h5{height:38.469727px;}
.h15{height:38.671172px;}
.he{height:39.810234px;}
.h20{height:40.843828px;}
.h6{height:42.573164px;}
.h11{height:46.251562px;}
.h1f{height:47.650430px;}
.h1c{height:49.680000px;}
.h21{height:50.273438px;}
.h19{height:52.817344px;}
.h4{height:53.709961px;}
.h9{height:54.421875px;}
.hf{height:59.439023px;}
.h10{height:60.679688px;}
.hc{height:61.189805px;}
.h12{height:65.010937px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h13{height:70.628906px;}
.ha{height:70.664062px;}
.h14{height:72.562500px;}
.h24{height:74.004654px;}
.h7{height:80.703984px;}
.h8{height:81.078047px;}
.hd{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.w8{width:82.080000px;}
.w7{width:96.300000px;}
.w3{width:104.940000px;}
.w4{width:132.480000px;}
.w5{width:189.540000px;}
.w6{width:626.400000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:10.836000px;}
.x18{left:15.270000px;}
.x14{left:17.355000px;}
.x10{left:23.010000px;}
.x19{left:41.220000px;}
.x15{left:93.420000px;}
.x1{left:108.036000px;}
.xe{left:112.896000px;}
.x1a{left:114.336000px;}
.x11{left:117.540000px;}
.x3{left:128.196000px;}
.x20{left:135.036000px;}
.x21{left:141.876000px;}
.xc{left:162.030000px;}
.x1b{left:183.630000px;}
.x4{left:216.390000px;}
.x1d{left:252.030000px;}
.xb{left:258.870000px;}
.x2{left:273.630000px;}
.x8{left:305.715000px;}
.xd{left:324.075000px;}
.x13{left:366.300000px;}
.x6{left:402.555000px;}
.x16{left:454.965000px;}
.x5{left:473.505000px;}
.x9{left:541.183125px;}
.xa{left:546.045000px;}
.xf{left:694.260000px;}
.x1f{left:723.960000px;}
.x1c{left:729.000000px;}
.x22{left:730.800000px;}
.x1e{left:732.600000px;}
.x7{left:785.130000px;}
.x17{left:810.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.114667pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.476800pt;}
.lsb{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.124800pt;}
.ls9{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.163200pt;}
.ls6{letter-spacing:0.454933pt;}
.lsf{letter-spacing:0.768000pt;}
.lsa{letter-spacing:1.280000pt;}
.lsd{letter-spacing:30.186667pt;}
.lse{letter-spacing:48.768000pt;}
.wsd{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.276160pt;}
.ws1{word-spacing:-12.005120pt;}
.ws9{word-spacing:-9.357867pt;}
.ws8{word-spacing:-9.308800pt;}
.ws5{word-spacing:-9.288213pt;}
.ws4{word-spacing:-8.996480pt;}
.ws3{word-spacing:-8.833280pt;}
.wsb{word-spacing:-8.648213pt;}
.wse{word-spacing:-8.356480pt;}
.ws6{word-spacing:-7.718613pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-2.334933pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.191680pt;}
._5{width:2.132907pt;}
._e{width:3.834240pt;}
._12{width:4.769280pt;}
._8{width:6.241280pt;}
._9{width:7.360000pt;}
._b{width:8.596480pt;}
._14{width:10.193280pt;}
._13{width:11.717120pt;}
._18{width:13.344000pt;}
._17{width:14.336000pt;}
._a{width:16.486400pt;}
._1e{width:18.176000pt;}
._10{width:19.077120pt;}
._11{width:20.078080pt;}
._19{width:21.196800pt;}
._1a{width:22.561707pt;}
._1b{width:23.505493pt;}
._c{width:24.670720pt;}
._d{width:25.726507pt;}
._2{width:27.440000pt;}
._1f{width:28.880000pt;}
._26{width:29.872000pt;}
._6{width:30.853120pt;}
._7{width:32.580693pt;}
._21{width:33.832320pt;}
._20{width:34.752000pt;}
._27{width:35.776000pt;}
._1c{width:36.672000pt;}
._1d{width:37.792640pt;}
._f{width:38.978560pt;}
._25{width:40.035840pt;}
._23{width:40.960000pt;}
._24{width:42.688000pt;}
._28{width:54.071253pt;}
._22{width:73.136000pt;}
._3{width:970.273067pt;}
._15{width:1191.973547pt;}
._1{width:1865.125333pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.960000pt;}
.y33{bottom:1.253333pt;}
.y32{bottom:2.373333pt;}
.y3e{bottom:2.880000pt;}
.y3{bottom:4.000000pt;}
.y3c{bottom:4.960000pt;}
.y67{bottom:5.280000pt;}
.ye4{bottom:5.440000pt;}
.y35{bottom:8.293333pt;}
.ye3{bottom:13.920000pt;}
.ya5{bottom:14.080000pt;}
.y66{bottom:14.240000pt;}
.y41{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y3a{bottom:25.280000pt;}
.y3d{bottom:33.440000pt;}
.y39{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y36{bottom:59.680000pt;}
.y30{bottom:99.360000pt;}
.y88{bottom:100.320000pt;}
.yc3{bottom:103.520000pt;}
.y2f{bottom:106.080000pt;}
.ye2{bottom:108.960000pt;}
.y146{bottom:112.640000pt;}
.y110{bottom:115.360000pt;}
.yf4{bottom:116.800000pt;}
.y2e{bottom:119.520000pt;}
.y12d{bottom:123.520000pt;}
.y65{bottom:124.640000pt;}
.ya4{bottom:129.280000pt;}
.ye1{bottom:130.080000pt;}
.y145{bottom:133.760000pt;}
.y87{bottom:134.720000pt;}
.y10f{bottom:135.200000pt;}
.y2d{bottom:139.040000pt;}
.y12c{bottom:144.800000pt;}
.yc2{bottom:145.760000pt;}
.ye0{bottom:151.360000pt;}
.y64{bottom:159.200000pt;}
.y2c{bottom:160.000000pt;}
.ya3{bottom:163.840000pt;}
.y10e{bottom:165.920000pt;}
.yc1{bottom:166.880000pt;}
.y144{bottom:168.320000pt;}
.y86{bottom:169.280000pt;}
.ydf{bottom:172.480000pt;}
.y12b{bottom:178.880000pt;}
.y2b{bottom:179.520000pt;}
.y63{bottom:180.320000pt;}
.ya2{bottom:184.986667pt;}
.y10d{bottom:185.626667pt;}
.yc0{bottom:188.186667pt;}
.y143{bottom:189.466667pt;}
.y85{bottom:190.426667pt;}
.yde{bottom:193.626667pt;}
.y152{bottom:198.266667pt;}
.y2a{bottom:199.386667pt;}
.y62{bottom:201.466667pt;}
.y10c{bottom:205.466667pt;}
.ya1{bottom:206.106667pt;}
.ybf{bottom:209.306667pt;}
.y142{bottom:210.586667pt;}
.y84{bottom:211.546667pt;}
.y12a{bottom:213.786667pt;}
.yf3{bottom:214.746667pt;}
.y151{bottom:219.386667pt;}
.y29{bottom:220.506667pt;}
.y61{bottom:222.586667pt;}
.y10b{bottom:225.306667pt;}
.ydd{bottom:227.866667pt;}
.y141{bottom:231.706667pt;}
.y83{bottom:232.826667pt;}
.yf2{bottom:236.026667pt;}
.ya0{bottom:240.346667pt;}
.ybe{bottom:243.546667pt;}
.y10a{bottom:245.146667pt;}
.y129{bottom:247.866667pt;}
.y28{bottom:248.186667pt;}
.y140{bottom:252.986667pt;}
.y150{bottom:253.946667pt;}
.y60{bottom:256.826667pt;}
.yf1{bottom:257.146667pt;}
.ydc{bottom:262.586667pt;}
.y82{bottom:266.906667pt;}
.y27{bottom:269.306667pt;}
.y9f{bottom:275.066667pt;}
.y109{bottom:275.866667pt;}
.ybd{bottom:278.266667pt;}
.y128{bottom:282.426667pt;}
.ydb{bottom:283.866667pt;}
.y13f{bottom:287.066667pt;}
.y26{bottom:288.666667pt;}
.y5f{bottom:291.546667pt;}
.y108{bottom:295.546667pt;}
.y9e{bottom:296.186667pt;}
.ybc{bottom:299.386667pt;}
.y81{bottom:301.786667pt;}
.yda{bottom:304.986667pt;}
.y25{bottom:308.186667pt;}
.y14f{bottom:309.626667pt;}
.yf0{bottom:312.506667pt;}
.y5e{bottom:312.826667pt;}
.y107{bottom:315.386667pt;}
.y127{bottom:317.146667pt;}
.y9d{bottom:317.466667pt;}
.y13e{bottom:318.106667pt;}
.ybb{bottom:320.666667pt;}
.y80{bottom:322.906667pt;}
.yd9{bottom:326.106667pt;}
.y24{bottom:327.546667pt;}
.y14e{bottom:330.746667pt;}
.y5d{bottom:333.946667pt;}
.y106{bottom:335.226667pt;}
.y13d{bottom:338.906667pt;}
.yba{bottom:341.786667pt;}
.y7f{bottom:344.026667pt;}
.y23{bottom:346.906667pt;}
.yd8{bottom:347.226667pt;}
.y126{bottom:351.386667pt;}
.y9c{bottom:351.546667pt;}
.y5c{bottom:355.066667pt;}
.y13c{bottom:358.746667pt;}
.yb9{bottom:362.906667pt;}
.y7e{bottom:365.306667pt;}
.y105{bottom:365.946667pt;}
.y22{bottom:366.266667pt;}
.yd7{bottom:368.346667pt;}
.y13b{bottom:379.866667pt;}
.yb8{bottom:384.026667pt;}
.y104{bottom:385.626667pt;}
.y21{bottom:385.786667pt;}
.y125{bottom:386.266667pt;}
.y9b{bottom:386.426667pt;}
.y5b{bottom:389.306667pt;}
.yd6{bottom:389.626667pt;}
.y7d{bottom:399.426667pt;}
.y13a{bottom:400.866667pt;}
.y20{bottom:405.186667pt;}
.yb7{bottom:405.346667pt;}
.y103{bottom:405.506667pt;}
.y124{bottom:407.426667pt;}
.y9a{bottom:407.586667pt;}
.yd5{bottom:410.786667pt;}
.y14d{bottom:420.866667pt;}
.y139{bottom:421.826667pt;}
.y5a{bottom:424.066667pt;}
.y1f{bottom:424.546667pt;}
.y102{bottom:425.346667pt;}
.yb6{bottom:426.466667pt;}
.yef{bottom:431.906667pt;}
.y7c{bottom:434.306667pt;}
.y123{bottom:441.506667pt;}
.y99{bottom:441.826667pt;}
.y14c{bottom:442.146667pt;}
.y138{bottom:442.786667pt;}
.y1e{bottom:443.906667pt;}
.yd4{bottom:445.026667pt;}
.y59{bottom:445.346667pt;}
.yb5{bottom:447.586667pt;}
.yee{bottom:453.026667pt;}
.y137{bottom:462.786667pt;}
.y1d{bottom:463.266667pt;}
.y58{bottom:466.466667pt;}
.y7b{bottom:468.386667pt;}
.yb4{bottom:468.706667pt;}
.yed{bottom:474.306667pt;}
.y98{bottom:476.226667pt;}
.y122{bottom:476.386667pt;}
.y14b{bottom:476.546667pt;}
.y101{bottom:479.426667pt;}
.yd3{bottom:479.746667pt;}
.y1c{bottom:482.786667pt;}
.y136{bottom:483.746667pt;}
.y57{bottom:487.586667pt;}
.yb3{bottom:489.826667pt;}
.yec{bottom:495.426667pt;}
.y121{bottom:497.506667pt;}
.y14a{bottom:497.666667pt;}
.yd2{bottom:500.866667pt;}
.y1b{bottom:502.146667pt;}
.y7a{bottom:503.266667pt;}
.y135{bottom:504.706667pt;}
.y97{bottom:511.106667pt;}
.y100{bottom:514.306667pt;}
.y1a{bottom:521.506667pt;}
.y56{bottom:521.826667pt;}
.yd1{bottom:522.146667pt;}
.yb2{bottom:524.066667pt;}
.y79{bottom:524.386667pt;}
.y134{bottom:525.666667pt;}
.yeb{bottom:529.506667pt;}
.y120{bottom:531.746667pt;}
.y96{bottom:532.226667pt;}
.yff{bottom:535.426667pt;}
.y19{bottom:540.866667pt;}
.yd0{bottom:543.266667pt;}
.y78{bottom:545.506667pt;}
.y133{bottom:546.786667pt;}
.y95{bottom:553.346667pt;}
.y55{bottom:556.226667pt;}
.yfe{bottom:556.546667pt;}
.yb1{bottom:558.946667pt;}
.y18{bottom:560.386667pt;}
.ycf{bottom:564.386667pt;}
.y11f{bottom:566.466667pt;}
.y149{bottom:566.786667pt;}
.yfd{bottom:577.666667pt;}
.y17{bottom:579.746667pt;}
.yb0{bottom:580.066667pt;}
.y132{bottom:581.986667pt;}
.yce{bottom:585.506667pt;}
.y94{bottom:587.586667pt;}
.y11e{bottom:587.746667pt;}
.y148{bottom:587.906667pt;}
.y54{bottom:591.106667pt;}
.yfc{bottom:598.946667pt;}
.y16{bottom:599.106667pt;}
.yaf{bottom:601.213333pt;}
.ycd{bottom:606.813333pt;}
.y53{bottom:612.253333pt;}
.y77{bottom:614.493333pt;}
.y131{bottom:616.893333pt;}
.y11d{bottom:621.853333pt;}
.y93{bottom:622.333333pt;}
.y15{bottom:625.533333pt;}
.ycc{bottom:627.933333pt;}
.y52{bottom:633.373333pt;}
.y76{bottom:635.773333pt;}
.y130{bottom:638.013333pt;}
.y92{bottom:643.613333pt;}
.y14{bottom:647.453333pt;}
.yea{bottom:649.053333pt;}
.y51{bottom:654.493333pt;}
.y11c{bottom:656.733333pt;}
.y75{bottom:656.893333pt;}
.ycb{bottom:662.013333pt;}
.y13{bottom:663.933333pt;}
.yae{bottom:664.733333pt;}
.ye9{bottom:670.173333pt;}
.y12f{bottom:672.253333pt;}
.yfb{bottom:675.773333pt;}
.y91{bottom:677.693333pt;}
.y11b{bottom:677.853333pt;}
.y74{bottom:678.013333pt;}
.yad{bottom:685.853333pt;}
.y12{bottom:687.773333pt;}
.y50{bottom:689.053333pt;}
.ye8{bottom:691.293333pt;}
.yca{bottom:696.573333pt;}
.yfa{bottom:696.893333pt;}
.y147{bottom:699.133333pt;}
.y10{bottom:706.493333pt;}
.yac{bottom:706.973333pt;}
.y4f{bottom:710.173333pt;}
.y11a{bottom:712.093333pt;}
.y73{bottom:712.253333pt;}
.y90{bottom:712.573333pt;}
.y11{bottom:713.213333pt;}
.yf9{bottom:718.013333pt;}
.yf{bottom:722.013333pt;}
.ye7{bottom:725.533333pt;}
.yab{bottom:728.253333pt;}
.y4e{bottom:731.293333pt;}
.y8f{bottom:733.693333pt;}
.yf8{bottom:739.133333pt;}
.ye{bottom:746.653333pt;}
.y119{bottom:746.813333pt;}
.y72{bottom:746.973333pt;}
.y4d{bottom:752.573333pt;}
.y8e{bottom:754.813333pt;}
.ye6{bottom:760.093333pt;}
.yf7{bottom:760.413333pt;}
.yaa{bottom:762.333333pt;}
.yd{bottom:765.053333pt;}
.y118{bottom:767.933333pt;}
.y71{bottom:768.253333pt;}
.y4c{bottom:773.693333pt;}
.yc{bottom:784.893333pt;}
.y8d{bottom:789.053333pt;}
.y70{bottom:789.373333pt;}
.yf6{bottom:794.493333pt;}
.y4b{bottom:794.813333pt;}
.ya9{bottom:796.893333pt;}
.y12e{bottom:797.213333pt;}
.y117{bottom:802.173333pt;}
.y6f{bottom:810.533333pt;}
.yb{bottom:813.573333pt;}
.y4a{bottom:815.973333pt;}
.y8c{bottom:823.813333pt;}
.yf5{bottom:829.413333pt;}
.ya8{bottom:831.333333pt;}
.y116{bottom:837.093333pt;}
.yc9{bottom:837.253333pt;}
.ya{bottom:842.373333pt;}
.y6e{bottom:844.773333pt;}
.y8b{bottom:845.093333pt;}
.y49{bottom:850.533333pt;}
.yc8{bottom:858.373333pt;}
.y9{bottom:865.413333pt;}
.y8a{bottom:866.213333pt;}
.y115{bottom:871.173333pt;}
.y48{bottom:871.653333pt;}
.y34{bottom:874.560000pt;}
.y6d{bottom:879.493333pt;}
.y31{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.ya7{bottom:887.333333pt;}
.y47{bottom:892.773333pt;}
.y89{bottom:900.293333pt;}
.y6c{bottom:900.613333pt;}
.y114{bottom:902.213333pt;}
.y7{bottom:913.413333pt;}
.y46{bottom:914.053333pt;}
.ya6{bottom:921.573333pt;}
.y6b{bottom:921.893333pt;}
.yc7{bottom:934.853333pt;}
.y45{bottom:935.173333pt;}
.y113{bottom:941.733333pt;}
.y6a{bottom:943.013333pt;}
.y6{bottom:944.773333pt;}
.yc6{bottom:955.973333pt;}
.y44{bottom:956.293333pt;}
.y112{bottom:961.573333pt;}
.ye5{bottom:969.733333pt;}
.y69{bottom:977.093333pt;}
.y43{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.yc5{bottom:990.853333pt;}
.y111{bottom:992.293333pt;}
.y42{bottom:1011.653333pt;}
.yc4{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y40{bottom:1052.000000pt;}
.y3f{bottom:1064.480000pt;}
.y68{bottom:1065.120000pt;}
.y38{bottom:1073.600000pt;}
.y3b{bottom:1084.800000pt;}
.h18{height:11.840000pt;}
.h16{height:12.960000pt;}
.h22{height:16.000000pt;}
.h23{height:16.160000pt;}
.h1a{height:18.880000pt;}
.h1d{height:21.671875pt;}
.h1b{height:21.920000pt;}
.h1e{height:32.149687pt;}
.h2{height:34.138125pt;}
.h17{height:34.190937pt;}
.h5{height:34.195312pt;}
.h15{height:34.374375pt;}
.he{height:35.386875pt;}
.h20{height:36.305625pt;}
.h6{height:37.842813pt;}
.h11{height:41.112500pt;}
.h1f{height:42.355937pt;}
.h1c{height:44.160000pt;}
.h21{height:44.687500pt;}
.h19{height:46.948750pt;}
.h4{height:47.742188pt;}
.h9{height:48.375000pt;}
.hf{height:52.834688pt;}
.h10{height:53.937500pt;}
.hc{height:54.390938pt;}
.h12{height:57.787500pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h13{height:62.781250pt;}
.ha{height:62.812500pt;}
.h14{height:64.500000pt;}
.h24{height:65.781915pt;}
.h7{height:71.736875pt;}
.h8{height:72.069375pt;}
.hd{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.w8{width:72.960000pt;}
.w7{width:85.600000pt;}
.w3{width:93.280000pt;}
.w4{width:117.760000pt;}
.w5{width:168.480000pt;}
.w6{width:556.800000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.632000pt;}
.x18{left:13.573333pt;}
.x14{left:15.426667pt;}
.x10{left:20.453333pt;}
.x19{left:36.640000pt;}
.x15{left:83.040000pt;}
.x1{left:96.032000pt;}
.xe{left:100.352000pt;}
.x1a{left:101.632000pt;}
.x11{left:104.480000pt;}
.x3{left:113.952000pt;}
.x20{left:120.032000pt;}
.x21{left:126.112000pt;}
.xc{left:144.026667pt;}
.x1b{left:163.226667pt;}
.x4{left:192.346667pt;}
.x1d{left:224.026667pt;}
.xb{left:230.106667pt;}
.x2{left:243.226667pt;}
.x8{left:271.746667pt;}
.xd{left:288.066667pt;}
.x13{left:325.600000pt;}
.x6{left:357.826667pt;}
.x16{left:404.413333pt;}
.x5{left:420.893333pt;}
.x9{left:481.051667pt;}
.xa{left:485.373333pt;}
.xf{left:617.120000pt;}
.x1f{left:643.520000pt;}
.x1c{left:648.000000pt;}
.x22{left:649.600000pt;}
.x1e{left:651.200000pt;}
.x7{left:697.893333pt;}
.x17{left:720.640000pt;}
}




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