
    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_72a491b712427d766302aa4c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.234000;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_6d5bd15807758cbf5396baaf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_0e1b3dc521275bbca94dad04.woff')format("woff");}.ff3{font-family:ff3;line-height:0.963000;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_212a1255d88f78614806c0f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_34653bb74be45a53bf5a610c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_fa84409fb4de14a2501bc472.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_8506bf22b448e5bdedcaa131.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_3faebd5b8d9bd7af87eb3fad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.986000;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_1cd910bc2b687ce5e225ba94.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_398126bee011fa954b4a6721.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_f488ef5ec420952c3d26e59e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.164000;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_5ecd10eeae5876870e5e02aa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.155000;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_bd6ca4eb183f04dd85adfca9.woff')format("woff");}.ffd{font-family:ffd;line-height:1.252000;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_9bb5bc194dd4f07d1d9af2b7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_e40cafee63b0fe43166156c5.woff')format("woff");}.fff{font-family:fff;line-height:1.129000;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;}
.ls2{letter-spacing:-2.280000px;}
.ls5{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.648000px;}
.ls0{letter-spacing:5.460000px;}
.ls8{letter-spacing:6.264000px;}
.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:-15.498000px;}
.ws4a{word-spacing:-12.798000px;}
.ws6f{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.800000px;}
.ws34{word-spacing:-4.590000px;}
.ws32{word-spacing:-3.834000px;}
.ws21{word-spacing:-2.970000px;}
.ws50{word-spacing:-2.484000px;}
.ws5d{word-spacing:-2.376000px;}
.ws23{word-spacing:-2.322000px;}
.ws22{word-spacing:-2.268000px;}
.ws5a{word-spacing:-2.160000px;}
.ws10{word-spacing:-1.944000px;}
.wsd{word-spacing:-1.836000px;}
.ws1b{word-spacing:-1.728000px;}
.ws55{word-spacing:-1.458000px;}
.ws4{word-spacing:-1.242000px;}
.ws4f{word-spacing:-1.134000px;}
.ws59{word-spacing:-1.080000px;}
.ws49{word-spacing:-0.756000px;}
.ws3b{word-spacing:-0.702000px;}
.ws27{word-spacing:-0.648000px;}
.ws64{word-spacing:-0.324000px;}
.ws45{word-spacing:-0.270000px;}
.ws14{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.162000px;}
.ws4e{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws5b{word-spacing:0.162000px;}
.ws8{word-spacing:0.270000px;}
.ws37{word-spacing:0.324000px;}
.ws44{word-spacing:0.378000px;}
.ws5c{word-spacing:0.432000px;}
.ws2d{word-spacing:0.540000px;}
.ws70{word-spacing:0.624000px;}
.ws48{word-spacing:0.702000px;}
.ws3d{word-spacing:0.810000px;}
.ws18{word-spacing:0.864000px;}
.ws56{word-spacing:0.918000px;}
.ws41{word-spacing:0.972000px;}
.ws52{word-spacing:1.080000px;}
.ws42{word-spacing:1.134000px;}
.ws12{word-spacing:1.188000px;}
.ws58{word-spacing:1.242000px;}
.ws1d{word-spacing:1.404000px;}
.ws7{word-spacing:1.566000px;}
.ws3c{word-spacing:1.728000px;}
.wse{word-spacing:1.836000px;}
.ws61{word-spacing:1.890000px;}
.ws36{word-spacing:1.944000px;}
.ws2e{word-spacing:1.998000px;}
.ws3f{word-spacing:2.106000px;}
.ws39{word-spacing:2.160000px;}
.ws6c{word-spacing:2.214000px;}
.ws53{word-spacing:2.322000px;}
.ws68{word-spacing:2.430000px;}
.ws16{word-spacing:2.538000px;}
.ws54{word-spacing:2.592000px;}
.ws19{word-spacing:2.700000px;}
.ws33{word-spacing:2.970000px;}
.ws4d{word-spacing:3.078000px;}
.ws57{word-spacing:3.132000px;}
.ws5e{word-spacing:3.186000px;}
.ws29{word-spacing:3.294000px;}
.ws1e{word-spacing:3.348000px;}
.ws26{word-spacing:3.456000px;}
.ws2f{word-spacing:4.104000px;}
.ws1c{word-spacing:4.158000px;}
.ws15{word-spacing:4.212000px;}
.ws6{word-spacing:4.266000px;}
.ws63{word-spacing:4.320000px;}
.ws24{word-spacing:4.698000px;}
.ws3a{word-spacing:4.806000px;}
.ws40{word-spacing:4.914000px;}
.ws11{word-spacing:5.022000px;}
.ws31{word-spacing:5.076000px;}
.ws47{word-spacing:5.292000px;}
.ws62{word-spacing:5.346000px;}
.ws4c{word-spacing:5.562000px;}
.ws51{word-spacing:5.616000px;}
.ws67{word-spacing:5.778000px;}
.ws3{word-spacing:5.832000px;}
.ws13{word-spacing:5.886000px;}
.ws1f{word-spacing:5.940000px;}
.ws9{word-spacing:5.994000px;}
.ws6e{word-spacing:6.156000px;}
.ws6b{word-spacing:6.264000px;}
.ws5f{word-spacing:6.480000px;}
.ws3e{word-spacing:6.534000px;}
.ws35{word-spacing:6.750000px;}
.ws30{word-spacing:7.290000px;}
.ws2b{word-spacing:7.344000px;}
.ws69{word-spacing:7.452000px;}
.ws6a{word-spacing:7.506000px;}
.ws46{word-spacing:7.668000px;}
.ws43{word-spacing:7.938000px;}
.ws17{word-spacing:8.046000px;}
.ws66{word-spacing:8.100000px;}
.ws5{word-spacing:8.154000px;}
.ws2c{word-spacing:8.910000px;}
.wsf{word-spacing:8.964000px;}
.ws20{word-spacing:9.180000px;}
.ws38{word-spacing:9.612000px;}
.wsb{word-spacing:9.990000px;}
.ws4b{word-spacing:11.124000px;}
.ws60{word-spacing:11.880000px;}
.ws65{word-spacing:11.934000px;}
.ws1a{word-spacing:12.906000px;}
.ws25{word-spacing:13.554000px;}
.ws2a{word-spacing:14.580000px;}
.ws28{word-spacing:14.742000px;}
.ws6d{word-spacing:20.520000px;}
._4{margin-left:-15.493800px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-4.080000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._7{width:2.808000px;}
._a{width:4.768200px;}
._b{width:6.274800px;}
._8{width:7.711200px;}
._9{width:9.061200px;}
._d{width:10.837800px;}
._e{width:14.698800px;}
._13{width:16.119000px;}
._15{width:17.128800px;}
._14{width:19.218600px;}
._c{width:20.287800px;}
._f{width:23.538600px;}
._11{width:48.600000px;}
._12{width:50.652000px;}
._10{width:57.132000px;}
._16{width:72.792000px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.yea{bottom:106.719150px;}
.y121{bottom:108.307050px;}
.y110{bottom:109.370100px;}
.y109{bottom:110.433000px;}
.y53{bottom:112.932450px;}
.y138{bottom:112.963950px;}
.y8a{bottom:112.990950px;}
.y9a{bottom:112.995450px;}
.y71{bottom:112.999950px;}
.y140{bottom:113.004450px;}
.yd6{bottom:113.017950px;}
.y10d{bottom:116.593800px;}
.y153{bottom:131.007450px;}
.yc2{bottom:135.382950px;}
.y52{bottom:135.436950px;}
.y137{bottom:135.468450px;}
.y89{bottom:135.495450px;}
.y99{bottom:135.499950px;}
.y70{bottom:135.504450px;}
.y13f{bottom:135.508950px;}
.yd5{bottom:135.522450px;}
.y17b{bottom:146.114700px;}
.yf9{bottom:152.112750px;}
.y25{bottom:156.189900px;}
.yc1{bottom:157.887450px;}
.y136{bottom:157.972950px;}
.y88{bottom:157.999950px;}
.y98{bottom:158.004450px;}
.y13e{bottom:158.013450px;}
.yd4{bottom:158.026950px;}
.y152{bottom:163.263450px;}
.y17a{bottom:165.614700px;}
.y24{bottom:178.694400px;}
.yc0{bottom:180.391950px;}
.y51{bottom:180.432450px;}
.y135{bottom:180.477450px;}
.y6f{bottom:180.499950px;}
.y87{bottom:180.504450px;}
.y97{bottom:180.508950px;}
.y13d{bottom:180.517950px;}
.yd3{bottom:180.531450px;}
.y151{bottom:195.519450px;}
.y179{bottom:197.870700px;}
.y23{bottom:201.198900px;}
.ybf{bottom:202.896450px;}
.y50{bottom:202.936950px;}
.y134{bottom:202.981950px;}
.y6e{bottom:203.004450px;}
.y86{bottom:203.008950px;}
.y96{bottom:203.013450px;}
.y13c{bottom:203.022450px;}
.y22{bottom:223.703400px;}
.ybe{bottom:225.400950px;}
.y4f{bottom:225.441450px;}
.y133{bottom:225.486450px;}
.y6d{bottom:225.508950px;}
.y85{bottom:225.513450px;}
.y13b{bottom:225.526950px;}
.yd2{bottom:225.531450px;}
.y150{bottom:227.775450px;}
.y178{bottom:230.126700px;}
.ybd{bottom:247.905450px;}
.y4e{bottom:247.945950px;}
.y132{bottom:247.990950px;}
.y95{bottom:248.008950px;}
.y6c{bottom:248.013450px;}
.y84{bottom:248.017950px;}
.y13a{bottom:248.031450px;}
.y177{bottom:249.626700px;}
.y14f{bottom:260.031450px;}
.y21{bottom:268.698900px;}
.ybc{bottom:270.409950px;}
.y4d{bottom:270.450450px;}
.y131{bottom:270.495450px;}
.y94{bottom:270.513450px;}
.y6b{bottom:270.517950px;}
.y83{bottom:270.522450px;}
.y176{bottom:281.882700px;}
.ybb{bottom:292.914450px;}
.y4c{bottom:292.954950px;}
.yd1{bottom:292.990950px;}
.y130{bottom:292.999950px;}
.y93{bottom:293.017950px;}
.y6a{bottom:293.022450px;}
.y139{bottom:293.025450px;}
.y82{bottom:293.026950px;}
.y14e{bottom:293.031450px;}
.y175{bottom:301.382700px;}
.y20{bottom:313.694400px;}
.yba{bottom:315.418950px;}
.y4b{bottom:315.459450px;}
.yd0{bottom:315.495450px;}
.y12f{bottom:315.504450px;}
.y92{bottom:315.522450px;}
.y69{bottom:315.526950px;}
.y81{bottom:315.531450px;}
.y174{bottom:333.638700px;}
.y1f{bottom:336.198900px;}
.yb9{bottom:337.923450px;}
.y4a{bottom:337.963950px;}
.ycf{bottom:337.999950px;}
.y91{bottom:338.026950px;}
.y68{bottom:338.031450px;}
.y1e{bottom:358.703400px;}
.yb8{bottom:360.427950px;}
.y14d{bottom:360.432450px;}
.y49{bottom:360.468450px;}
.y12e{bottom:360.499950px;}
.yce{bottom:360.504450px;}
.y80{bottom:360.531450px;}
.y173{bottom:365.894700px;}
.y1d{bottom:381.207900px;}
.yb7{bottom:382.932450px;}
.y14c{bottom:382.936950px;}
.y48{bottom:382.972950px;}
.y12d{bottom:383.004450px;}
.ycd{bottom:383.008950px;}
.y67{bottom:383.031450px;}
.y172{bottom:385.394700px;}
.y1c{bottom:403.712400px;}
.y7f{bottom:405.427950px;}
.yb6{bottom:405.436950px;}
.y14b{bottom:405.441450px;}
.y12c{bottom:405.508950px;}
.ycc{bottom:405.513450px;}
.y90{bottom:405.531450px;}
.y171{bottom:417.650700px;}
.y1b{bottom:426.216900px;}
.y7e{bottom:427.932450px;}
.yb5{bottom:427.941450px;}
.y14a{bottom:427.945950px;}
.y47{bottom:427.968450px;}
.y12b{bottom:428.013450px;}
.ycb{bottom:428.017950px;}
.y170{bottom:437.150700px;}
.y1a{bottom:448.721400px;}
.y66{bottom:450.423450px;}
.y7d{bottom:450.436950px;}
.yb4{bottom:450.445950px;}
.y149{bottom:450.450450px;}
.y46{bottom:450.472950px;}
.y12a{bottom:450.517950px;}
.yca{bottom:450.522450px;}
.y16f{bottom:469.406700px;}
.y19{bottom:471.225900px;}
.y65{bottom:472.927950px;}
.y7c{bottom:472.941450px;}
.yb3{bottom:472.950450px;}
.y148{bottom:472.954950px;}
.y45{bottom:472.977450px;}
.y129{bottom:473.022450px;}
.yc9{bottom:473.026950px;}
.y16e{bottom:488.906700px;}
.y18{bottom:493.730400px;}
.y64{bottom:495.432450px;}
.y7b{bottom:495.445950px;}
.yb2{bottom:495.454950px;}
.y147{bottom:495.459450px;}
.y44{bottom:495.481950px;}
.y128{bottom:495.526950px;}
.yc8{bottom:495.531450px;}
.y108{bottom:509.233950px;}
.y17{bottom:516.234900px;}
.y63{bottom:517.936950px;}
.y7a{bottom:517.950450px;}
.yb1{bottom:517.959450px;}
.y146{bottom:517.963950px;}
.y43{bottom:517.986450px;}
.y127{bottom:518.031450px;}
.y16d{bottom:521.162700px;}
.y107{bottom:525.730950px;}
.y16{bottom:538.739400px;}
.y62{bottom:540.441450px;}
.y79{bottom:540.454950px;}
.yb0{bottom:540.463950px;}
.y145{bottom:540.468450px;}
.y42{bottom:540.490950px;}
.yc7{bottom:540.531450px;}
.y16c{bottom:540.662700px;}
.y106{bottom:546.480450px;}
.y15{bottom:561.243900px;}
.y61{bottom:562.945950px;}
.y78{bottom:562.959450px;}
.y144{bottom:562.972950px;}
.y41{bottom:562.995450px;}
.y126{bottom:563.031450px;}
.ye9{bottom:570.712950px;}
.y120{bottom:570.721950px;}
.y16b{bottom:572.918700px;}
.y14{bottom:583.748400px;}
.yc6{bottom:585.445950px;}
.y60{bottom:585.450450px;}
.yaf{bottom:585.459450px;}
.y77{bottom:585.463950px;}
.y143{bottom:585.477450px;}
.y40{bottom:585.499950px;}
.ye8{bottom:591.462450px;}
.y11f{bottom:591.471450px;}
.y10f{bottom:593.208450px;}
.y16a{bottom:605.174700px;}
.y13{bottom:606.252900px;}
.yc5{bottom:607.950450px;}
.y5f{bottom:607.954950px;}
.yae{bottom:607.963950px;}
.y142{bottom:607.981950px;}
.y105{bottom:607.986450px;}
.y3f{bottom:608.004450px;}
.y10e{bottom:613.957950px;}
.y125{bottom:619.399500px;}
.y169{bottom:624.674700px;}
.yf8{bottom:624.730950px;}
.y12{bottom:628.757400px;}
.y8f{bottom:630.445950px;}
.yc4{bottom:630.454950px;}
.y5e{bottom:630.459450px;}
.y141{bottom:630.486450px;}
.y104{bottom:630.490950px;}
.y3e{bottom:630.508950px;}
.y10c{bottom:638.217450px;}
.yf7{bottom:645.480450px;}
.y11{bottom:651.261900px;}
.y8e{bottom:652.950450px;}
.yad{bottom:652.959450px;}
.y5d{bottom:652.963950px;}
.ye7{bottom:652.968450px;}
.y11e{bottom:652.977450px;}
.y103{bottom:652.995450px;}
.y3d{bottom:653.013450px;}
.y168{bottom:656.930700px;}
.y10b{bottom:658.966950px;}
.y189{bottom:670.418700px;}
.y8d{bottom:675.454950px;}
.yac{bottom:675.463950px;}
.y5c{bottom:675.468450px;}
.ye6{bottom:675.472950px;}
.y11d{bottom:675.481950px;}
.y102{bottom:675.499950px;}
.y3c{bottom:675.517950px;}
.y167{bottom:676.430700px;}
.y188{bottom:689.918700px;}
.y166{bottom:695.930700px;}
.y8c{bottom:697.959450px;}
.yab{bottom:697.968450px;}
.y5b{bottom:697.972950px;}
.ye5{bottom:697.977450px;}
.y11c{bottom:697.986450px;}
.y101{bottom:698.004450px;}
.y3b{bottom:698.022450px;}
.y10{bottom:714.158400px;}
.y8b{bottom:720.463950px;}
.yaa{bottom:720.472950px;}
.y76{bottom:720.477450px;}
.ye4{bottom:720.481950px;}
.yf6{bottom:720.486450px;}
.y11b{bottom:720.490950px;}
.y100{bottom:720.508950px;}
.y3a{bottom:720.526950px;}
.y187{bottom:722.174700px;}
.y165{bottom:728.186700px;}
.y186{bottom:741.674700px;}
.y5a{bottom:742.968450px;}
.ya9{bottom:742.977450px;}
.y75{bottom:742.981950px;}
.ye3{bottom:742.986450px;}
.yf5{bottom:742.990950px;}
.y11a{bottom:742.995450px;}
.yff{bottom:743.013450px;}
.y39{bottom:743.031450px;}
.y164{bottom:760.442700px;}
.y59{bottom:765.472950px;}
.ya8{bottom:765.481950px;}
.ye2{bottom:765.490950px;}
.yf4{bottom:765.495450px;}
.y119{bottom:765.499950px;}
.yfe{bottom:765.517950px;}
.y185{bottom:773.930700px;}
.yf{bottom:774.926100px;}
.y163{bottom:779.942700px;}
.y58{bottom:787.977450px;}
.ya7{bottom:787.986450px;}
.yf3{bottom:787.999950px;}
.y118{bottom:788.004450px;}
.yfd{bottom:788.022450px;}
.y38{bottom:788.031450px;}
.ye{bottom:791.426100px;}
.y184{bottom:793.430700px;}
.y162{bottom:799.442700px;}
.y57{bottom:810.481950px;}
.ye1{bottom:810.486450px;}
.ya6{bottom:810.490950px;}
.yf2{bottom:810.504450px;}
.y117{bottom:810.508950px;}
.yfc{bottom:810.526950px;}
.y183{bottom:812.930700px;}
.yd{bottom:814.304100px;}
.y161{bottom:818.942700px;}
.y56{bottom:832.986450px;}
.ye0{bottom:832.990950px;}
.yc3{bottom:832.995450px;}
.yf1{bottom:833.008950px;}
.y116{bottom:833.013450px;}
.yfb{bottom:833.031450px;}
.y182{bottom:845.186700px;}
.yc{bottom:848.815950px;}
.y160{bottom:851.198700px;}
.ya5{bottom:855.486450px;}
.y37{bottom:855.490950px;}
.ydf{bottom:855.495450px;}
.y10a{bottom:855.499950px;}
.yf0{bottom:855.513450px;}
.y115{bottom:855.517950px;}
.yb{bottom:865.315950px;}
.y15f{bottom:870.698700px;}
.y181{bottom:877.442700px;}
.ya4{bottom:877.990950px;}
.y55{bottom:877.995450px;}
.yde{bottom:877.999950px;}
.yef{bottom:878.017950px;}
.y114{bottom:878.022450px;}
.yfa{bottom:878.031450px;}
.ya{bottom:888.193950px;}
.y15e{bottom:890.198700px;}
.y180{bottom:896.942700px;}
.y36{bottom:900.486450px;}
.ya3{bottom:900.495450px;}
.y54{bottom:900.499950px;}
.ydd{bottom:900.504450px;}
.yee{bottom:900.522450px;}
.y113{bottom:900.526950px;}
.y15d{bottom:922.454700px;}
.y35{bottom:922.990950px;}
.ya2{bottom:922.999950px;}
.y74{bottom:923.004450px;}
.ydc{bottom:923.008950px;}
.yed{bottom:923.026950px;}
.y112{bottom:923.031450px;}
.y17f{bottom:929.198700px;}
.y15c{bottom:941.954700px;}
.y34{bottom:945.495450px;}
.ya1{bottom:945.504450px;}
.y73{bottom:945.508950px;}
.ydb{bottom:945.513450px;}
.yec{bottom:945.531450px;}
.y9{bottom:948.214500px;}
.y17e{bottom:948.698700px;}
.y15b{bottom:961.454700px;}
.y33{bottom:967.999950px;}
.ya0{bottom:968.008950px;}
.y72{bottom:968.013450px;}
.yda{bottom:968.017950px;}
.y111{bottom:968.031450px;}
.y8{bottom:970.717500px;}
.y17d{bottom:980.954700px;}
.y32{bottom:990.504450px;}
.y9f{bottom:990.513450px;}
.yd9{bottom:990.522450px;}
.yeb{bottom:990.531450px;}
.y15a{bottom:993.710700px;}
.y17c{bottom:1000.454700px;}
.y7{bottom:1005.973500px;}
.y31{bottom:1013.008950px;}
.y9e{bottom:1013.017950px;}
.yd8{bottom:1013.026950px;}
.y159{bottom:1013.210700px;}
.y158{bottom:1032.710700px;}
.y30{bottom:1035.513450px;}
.y9d{bottom:1035.522450px;}
.yd7{bottom:1035.531450px;}
.y6{bottom:1038.973500px;}
.y2f{bottom:1058.017950px;}
.y9c{bottom:1058.026950px;}
.y157{bottom:1064.966700px;}
.y5{bottom:1071.973500px;}
.y2e{bottom:1080.522450px;}
.y9b{bottom:1080.531450px;}
.y156{bottom:1084.466700px;}
.y124{bottom:1097.284950px;}
.y2d{bottom:1103.026950px;}
.y123{bottom:1113.781950px;}
.y155{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y122{bottom:1134.531450px;}
.y154{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h7{height:36.624000px;}
.h8{height:38.340000px;}
.h9{height:39.420000px;}
.ha{height:41.202000px;}
.hb{height:42.444000px;}
.h14{height:42.480000px;}
.h6{height:43.800000px;}
.h13{height:47.136000px;}
.hc{height:47.184000px;}
.h11{height:47.358000px;}
.he{height:47.790000px;}
.hf{height:53.028000px;}
.h12{height:58.920000px;}
.hd{height:59.004000px;}
.h5{height:59.514000px;}
.h10{height:64.812000px;}
.h4{height:88.440000px;}
.h2{height:125.226926px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.x5{left:127.009050px;}
.xf{left:137.688600px;}
.xb{left:141.816600px;}
.xd{left:144.584100px;}
.x10{left:148.806600px;}
.xc{left:187.082100px;}
.x3{left:585.415800px;}
.x4{left:623.562300px;}
.x2{left:677.563800px;}
.x6{left:739.128600px;}
.x8{left:740.752650px;}
.x7{left:742.122600px;}
.xa{left:743.555250px;}
.xe{left:744.702150px;}
.x9{left:746.230500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-2.026667pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls0{letter-spacing:4.853333pt;}
.ls8{letter-spacing:5.568000pt;}
.ws0{word-spacing:-13.776000pt;}
.ws4a{word-spacing:-11.376000pt;}
.ws6f{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws34{word-spacing:-4.080000pt;}
.ws32{word-spacing:-3.408000pt;}
.ws21{word-spacing:-2.640000pt;}
.ws50{word-spacing:-2.208000pt;}
.ws5d{word-spacing:-2.112000pt;}
.ws23{word-spacing:-2.064000pt;}
.ws22{word-spacing:-2.016000pt;}
.ws5a{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.728000pt;}
.wsd{word-spacing:-1.632000pt;}
.ws1b{word-spacing:-1.536000pt;}
.ws55{word-spacing:-1.296000pt;}
.ws4{word-spacing:-1.104000pt;}
.ws4f{word-spacing:-1.008000pt;}
.ws59{word-spacing:-0.960000pt;}
.ws49{word-spacing:-0.672000pt;}
.ws3b{word-spacing:-0.624000pt;}
.ws27{word-spacing:-0.576000pt;}
.ws64{word-spacing:-0.288000pt;}
.ws45{word-spacing:-0.240000pt;}
.ws14{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.144000pt;}
.ws4e{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.144000pt;}
.ws8{word-spacing:0.240000pt;}
.ws37{word-spacing:0.288000pt;}
.ws44{word-spacing:0.336000pt;}
.ws5c{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.480000pt;}
.ws70{word-spacing:0.554667pt;}
.ws48{word-spacing:0.624000pt;}
.ws3d{word-spacing:0.720000pt;}
.ws18{word-spacing:0.768000pt;}
.ws56{word-spacing:0.816000pt;}
.ws41{word-spacing:0.864000pt;}
.ws52{word-spacing:0.960000pt;}
.ws42{word-spacing:1.008000pt;}
.ws12{word-spacing:1.056000pt;}
.ws58{word-spacing:1.104000pt;}
.ws1d{word-spacing:1.248000pt;}
.ws7{word-spacing:1.392000pt;}
.ws3c{word-spacing:1.536000pt;}
.wse{word-spacing:1.632000pt;}
.ws61{word-spacing:1.680000pt;}
.ws36{word-spacing:1.728000pt;}
.ws2e{word-spacing:1.776000pt;}
.ws3f{word-spacing:1.872000pt;}
.ws39{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.968000pt;}
.ws53{word-spacing:2.064000pt;}
.ws68{word-spacing:2.160000pt;}
.ws16{word-spacing:2.256000pt;}
.ws54{word-spacing:2.304000pt;}
.ws19{word-spacing:2.400000pt;}
.ws33{word-spacing:2.640000pt;}
.ws4d{word-spacing:2.736000pt;}
.ws57{word-spacing:2.784000pt;}
.ws5e{word-spacing:2.832000pt;}
.ws29{word-spacing:2.928000pt;}
.ws1e{word-spacing:2.976000pt;}
.ws26{word-spacing:3.072000pt;}
.ws2f{word-spacing:3.648000pt;}
.ws1c{word-spacing:3.696000pt;}
.ws15{word-spacing:3.744000pt;}
.ws6{word-spacing:3.792000pt;}
.ws63{word-spacing:3.840000pt;}
.ws24{word-spacing:4.176000pt;}
.ws3a{word-spacing:4.272000pt;}
.ws40{word-spacing:4.368000pt;}
.ws11{word-spacing:4.464000pt;}
.ws31{word-spacing:4.512000pt;}
.ws47{word-spacing:4.704000pt;}
.ws62{word-spacing:4.752000pt;}
.ws4c{word-spacing:4.944000pt;}
.ws51{word-spacing:4.992000pt;}
.ws67{word-spacing:5.136000pt;}
.ws3{word-spacing:5.184000pt;}
.ws13{word-spacing:5.232000pt;}
.ws1f{word-spacing:5.280000pt;}
.ws9{word-spacing:5.328000pt;}
.ws6e{word-spacing:5.472000pt;}
.ws6b{word-spacing:5.568000pt;}
.ws5f{word-spacing:5.760000pt;}
.ws3e{word-spacing:5.808000pt;}
.ws35{word-spacing:6.000000pt;}
.ws30{word-spacing:6.480000pt;}
.ws2b{word-spacing:6.528000pt;}
.ws69{word-spacing:6.624000pt;}
.ws6a{word-spacing:6.672000pt;}
.ws46{word-spacing:6.816000pt;}
.ws43{word-spacing:7.056000pt;}
.ws17{word-spacing:7.152000pt;}
.ws66{word-spacing:7.200000pt;}
.ws5{word-spacing:7.248000pt;}
.ws2c{word-spacing:7.920000pt;}
.wsf{word-spacing:7.968000pt;}
.ws20{word-spacing:8.160000pt;}
.ws38{word-spacing:8.544000pt;}
.wsb{word-spacing:8.880000pt;}
.ws4b{word-spacing:9.888000pt;}
.ws60{word-spacing:10.560000pt;}
.ws65{word-spacing:10.608000pt;}
.ws1a{word-spacing:11.472000pt;}
.ws25{word-spacing:12.048000pt;}
.ws2a{word-spacing:12.960000pt;}
.ws28{word-spacing:13.104000pt;}
.ws6d{word-spacing:18.240000pt;}
._4{margin-left:-13.772267pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.626667pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._7{width:2.496000pt;}
._a{width:4.238400pt;}
._b{width:5.577600pt;}
._8{width:6.854400pt;}
._9{width:8.054400pt;}
._d{width:9.633600pt;}
._e{width:13.065600pt;}
._13{width:14.328000pt;}
._15{width:15.225600pt;}
._14{width:17.083200pt;}
._c{width:18.033600pt;}
._f{width:20.923200pt;}
._11{width:43.200000pt;}
._12{width:45.024000pt;}
._10{width:50.784000pt;}
._16{width:64.704000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.yea{bottom:94.861467pt;}
.y121{bottom:96.272933pt;}
.y110{bottom:97.217867pt;}
.y109{bottom:98.162667pt;}
.y53{bottom:100.384400pt;}
.y138{bottom:100.412400pt;}
.y8a{bottom:100.436400pt;}
.y9a{bottom:100.440400pt;}
.y71{bottom:100.444400pt;}
.y140{bottom:100.448400pt;}
.yd6{bottom:100.460400pt;}
.y10d{bottom:103.638933pt;}
.y153{bottom:116.451067pt;}
.yc2{bottom:120.340400pt;}
.y52{bottom:120.388400pt;}
.y137{bottom:120.416400pt;}
.y89{bottom:120.440400pt;}
.y99{bottom:120.444400pt;}
.y70{bottom:120.448400pt;}
.y13f{bottom:120.452400pt;}
.yd5{bottom:120.464400pt;}
.y17b{bottom:129.879733pt;}
.yf9{bottom:135.211333pt;}
.y25{bottom:138.835467pt;}
.yc1{bottom:140.344400pt;}
.y136{bottom:140.420400pt;}
.y88{bottom:140.444400pt;}
.y98{bottom:140.448400pt;}
.y13e{bottom:140.456400pt;}
.yd4{bottom:140.468400pt;}
.y152{bottom:145.123067pt;}
.y17a{bottom:147.213067pt;}
.y24{bottom:158.839467pt;}
.yc0{bottom:160.348400pt;}
.y51{bottom:160.384400pt;}
.y135{bottom:160.424400pt;}
.y6f{bottom:160.444400pt;}
.y87{bottom:160.448400pt;}
.y97{bottom:160.452400pt;}
.y13d{bottom:160.460400pt;}
.yd3{bottom:160.472400pt;}
.y151{bottom:173.795067pt;}
.y179{bottom:175.885067pt;}
.y23{bottom:178.843467pt;}
.ybf{bottom:180.352400pt;}
.y50{bottom:180.388400pt;}
.y134{bottom:180.428400pt;}
.y6e{bottom:180.448400pt;}
.y86{bottom:180.452400pt;}
.y96{bottom:180.456400pt;}
.y13c{bottom:180.464400pt;}
.y22{bottom:198.847467pt;}
.ybe{bottom:200.356400pt;}
.y4f{bottom:200.392400pt;}
.y133{bottom:200.432400pt;}
.y6d{bottom:200.452400pt;}
.y85{bottom:200.456400pt;}
.y13b{bottom:200.468400pt;}
.yd2{bottom:200.472400pt;}
.y150{bottom:202.467067pt;}
.y178{bottom:204.557067pt;}
.ybd{bottom:220.360400pt;}
.y4e{bottom:220.396400pt;}
.y132{bottom:220.436400pt;}
.y95{bottom:220.452400pt;}
.y6c{bottom:220.456400pt;}
.y84{bottom:220.460400pt;}
.y13a{bottom:220.472400pt;}
.y177{bottom:221.890400pt;}
.y14f{bottom:231.139067pt;}
.y21{bottom:238.843467pt;}
.ybc{bottom:240.364400pt;}
.y4d{bottom:240.400400pt;}
.y131{bottom:240.440400pt;}
.y94{bottom:240.456400pt;}
.y6b{bottom:240.460400pt;}
.y83{bottom:240.464400pt;}
.y176{bottom:250.562400pt;}
.ybb{bottom:260.368400pt;}
.y4c{bottom:260.404400pt;}
.yd1{bottom:260.436400pt;}
.y130{bottom:260.444400pt;}
.y93{bottom:260.460400pt;}
.y6a{bottom:260.464400pt;}
.y139{bottom:260.467067pt;}
.y82{bottom:260.468400pt;}
.y14e{bottom:260.472400pt;}
.y175{bottom:267.895733pt;}
.y20{bottom:278.839467pt;}
.yba{bottom:280.372400pt;}
.y4b{bottom:280.408400pt;}
.yd0{bottom:280.440400pt;}
.y12f{bottom:280.448400pt;}
.y92{bottom:280.464400pt;}
.y69{bottom:280.468400pt;}
.y81{bottom:280.472400pt;}
.y174{bottom:296.567733pt;}
.y1f{bottom:298.843467pt;}
.yb9{bottom:300.376400pt;}
.y4a{bottom:300.412400pt;}
.ycf{bottom:300.444400pt;}
.y91{bottom:300.468400pt;}
.y68{bottom:300.472400pt;}
.y1e{bottom:318.847467pt;}
.yb8{bottom:320.380400pt;}
.y14d{bottom:320.384400pt;}
.y49{bottom:320.416400pt;}
.y12e{bottom:320.444400pt;}
.yce{bottom:320.448400pt;}
.y80{bottom:320.472400pt;}
.y173{bottom:325.239733pt;}
.y1d{bottom:338.851467pt;}
.yb7{bottom:340.384400pt;}
.y14c{bottom:340.388400pt;}
.y48{bottom:340.420400pt;}
.y12d{bottom:340.448400pt;}
.ycd{bottom:340.452400pt;}
.y67{bottom:340.472400pt;}
.y172{bottom:342.573067pt;}
.y1c{bottom:358.855467pt;}
.y7f{bottom:360.380400pt;}
.yb6{bottom:360.388400pt;}
.y14b{bottom:360.392400pt;}
.y12c{bottom:360.452400pt;}
.ycc{bottom:360.456400pt;}
.y90{bottom:360.472400pt;}
.y171{bottom:371.245067pt;}
.y1b{bottom:378.859467pt;}
.y7e{bottom:380.384400pt;}
.yb5{bottom:380.392400pt;}
.y14a{bottom:380.396400pt;}
.y47{bottom:380.416400pt;}
.y12b{bottom:380.456400pt;}
.ycb{bottom:380.460400pt;}
.y170{bottom:388.578400pt;}
.y1a{bottom:398.863467pt;}
.y66{bottom:400.376400pt;}
.y7d{bottom:400.388400pt;}
.yb4{bottom:400.396400pt;}
.y149{bottom:400.400400pt;}
.y46{bottom:400.420400pt;}
.y12a{bottom:400.460400pt;}
.yca{bottom:400.464400pt;}
.y16f{bottom:417.250400pt;}
.y19{bottom:418.867467pt;}
.y65{bottom:420.380400pt;}
.y7c{bottom:420.392400pt;}
.yb3{bottom:420.400400pt;}
.y148{bottom:420.404400pt;}
.y45{bottom:420.424400pt;}
.y129{bottom:420.464400pt;}
.yc9{bottom:420.468400pt;}
.y16e{bottom:434.583733pt;}
.y18{bottom:438.871467pt;}
.y64{bottom:440.384400pt;}
.y7b{bottom:440.396400pt;}
.yb2{bottom:440.404400pt;}
.y147{bottom:440.408400pt;}
.y44{bottom:440.428400pt;}
.y128{bottom:440.468400pt;}
.yc8{bottom:440.472400pt;}
.y108{bottom:452.652400pt;}
.y17{bottom:458.875467pt;}
.y63{bottom:460.388400pt;}
.y7a{bottom:460.400400pt;}
.yb1{bottom:460.408400pt;}
.y146{bottom:460.412400pt;}
.y43{bottom:460.432400pt;}
.y127{bottom:460.472400pt;}
.y16d{bottom:463.255733pt;}
.y107{bottom:467.316400pt;}
.y16{bottom:478.879467pt;}
.y62{bottom:480.392400pt;}
.y79{bottom:480.404400pt;}
.yb0{bottom:480.412400pt;}
.y145{bottom:480.416400pt;}
.y42{bottom:480.436400pt;}
.yc7{bottom:480.472400pt;}
.y16c{bottom:480.589067pt;}
.y106{bottom:485.760400pt;}
.y15{bottom:498.883467pt;}
.y61{bottom:500.396400pt;}
.y78{bottom:500.408400pt;}
.y144{bottom:500.420400pt;}
.y41{bottom:500.440400pt;}
.y126{bottom:500.472400pt;}
.ye9{bottom:507.300400pt;}
.y120{bottom:507.308400pt;}
.y16b{bottom:509.261067pt;}
.y14{bottom:518.887467pt;}
.yc6{bottom:520.396400pt;}
.y60{bottom:520.400400pt;}
.yaf{bottom:520.408400pt;}
.y77{bottom:520.412400pt;}
.y143{bottom:520.424400pt;}
.y40{bottom:520.444400pt;}
.ye8{bottom:525.744400pt;}
.y11f{bottom:525.752400pt;}
.y10f{bottom:527.296400pt;}
.y16a{bottom:537.933067pt;}
.y13{bottom:538.891467pt;}
.yc5{bottom:540.400400pt;}
.y5f{bottom:540.404400pt;}
.yae{bottom:540.412400pt;}
.y142{bottom:540.428400pt;}
.y105{bottom:540.432400pt;}
.y3f{bottom:540.448400pt;}
.y10e{bottom:545.740400pt;}
.y125{bottom:550.577333pt;}
.y169{bottom:555.266400pt;}
.yf8{bottom:555.316400pt;}
.y12{bottom:558.895467pt;}
.y8f{bottom:560.396400pt;}
.yc4{bottom:560.404400pt;}
.y5e{bottom:560.408400pt;}
.y141{bottom:560.432400pt;}
.y104{bottom:560.436400pt;}
.y3e{bottom:560.452400pt;}
.y10c{bottom:567.304400pt;}
.yf7{bottom:573.760400pt;}
.y11{bottom:578.899467pt;}
.y8e{bottom:580.400400pt;}
.yad{bottom:580.408400pt;}
.y5d{bottom:580.412400pt;}
.ye7{bottom:580.416400pt;}
.y11e{bottom:580.424400pt;}
.y103{bottom:580.440400pt;}
.y3d{bottom:580.456400pt;}
.y168{bottom:583.938400pt;}
.y10b{bottom:585.748400pt;}
.y189{bottom:595.927733pt;}
.y8d{bottom:600.404400pt;}
.yac{bottom:600.412400pt;}
.y5c{bottom:600.416400pt;}
.ye6{bottom:600.420400pt;}
.y11d{bottom:600.428400pt;}
.y102{bottom:600.444400pt;}
.y3c{bottom:600.460400pt;}
.y167{bottom:601.271733pt;}
.y188{bottom:613.261067pt;}
.y166{bottom:618.605067pt;}
.y8c{bottom:620.408400pt;}
.yab{bottom:620.416400pt;}
.y5b{bottom:620.420400pt;}
.ye5{bottom:620.424400pt;}
.y11c{bottom:620.432400pt;}
.y101{bottom:620.448400pt;}
.y3b{bottom:620.464400pt;}
.y10{bottom:634.807467pt;}
.y8b{bottom:640.412400pt;}
.yaa{bottom:640.420400pt;}
.y76{bottom:640.424400pt;}
.ye4{bottom:640.428400pt;}
.yf6{bottom:640.432400pt;}
.y11b{bottom:640.436400pt;}
.y100{bottom:640.452400pt;}
.y3a{bottom:640.468400pt;}
.y187{bottom:641.933067pt;}
.y165{bottom:647.277067pt;}
.y186{bottom:659.266400pt;}
.y5a{bottom:660.416400pt;}
.ya9{bottom:660.424400pt;}
.y75{bottom:660.428400pt;}
.ye3{bottom:660.432400pt;}
.yf5{bottom:660.436400pt;}
.y11a{bottom:660.440400pt;}
.yff{bottom:660.456400pt;}
.y39{bottom:660.472400pt;}
.y164{bottom:675.949067pt;}
.y59{bottom:680.420400pt;}
.ya8{bottom:680.428400pt;}
.ye2{bottom:680.436400pt;}
.yf4{bottom:680.440400pt;}
.y119{bottom:680.444400pt;}
.yfe{bottom:680.460400pt;}
.y185{bottom:687.938400pt;}
.yf{bottom:688.823200pt;}
.y163{bottom:693.282400pt;}
.y58{bottom:700.424400pt;}
.ya7{bottom:700.432400pt;}
.yf3{bottom:700.444400pt;}
.y118{bottom:700.448400pt;}
.yfd{bottom:700.464400pt;}
.y38{bottom:700.472400pt;}
.ye{bottom:703.489867pt;}
.y184{bottom:705.271733pt;}
.y162{bottom:710.615733pt;}
.y57{bottom:720.428400pt;}
.ye1{bottom:720.432400pt;}
.ya6{bottom:720.436400pt;}
.yf2{bottom:720.448400pt;}
.y117{bottom:720.452400pt;}
.yfc{bottom:720.468400pt;}
.y183{bottom:722.605067pt;}
.yd{bottom:723.825867pt;}
.y161{bottom:727.949067pt;}
.y56{bottom:740.432400pt;}
.ye0{bottom:740.436400pt;}
.yc3{bottom:740.440400pt;}
.yf1{bottom:740.452400pt;}
.y116{bottom:740.456400pt;}
.yfb{bottom:740.472400pt;}
.y182{bottom:751.277067pt;}
.yc{bottom:754.503067pt;}
.y160{bottom:756.621067pt;}
.ya5{bottom:760.432400pt;}
.y37{bottom:760.436400pt;}
.ydf{bottom:760.440400pt;}
.y10a{bottom:760.444400pt;}
.yf0{bottom:760.456400pt;}
.y115{bottom:760.460400pt;}
.yb{bottom:769.169733pt;}
.y15f{bottom:773.954400pt;}
.y181{bottom:779.949067pt;}
.ya4{bottom:780.436400pt;}
.y55{bottom:780.440400pt;}
.yde{bottom:780.444400pt;}
.yef{bottom:780.460400pt;}
.y114{bottom:780.464400pt;}
.yfa{bottom:780.472400pt;}
.ya{bottom:789.505733pt;}
.y15e{bottom:791.287733pt;}
.y180{bottom:797.282400pt;}
.y36{bottom:800.432400pt;}
.ya3{bottom:800.440400pt;}
.y54{bottom:800.444400pt;}
.ydd{bottom:800.448400pt;}
.yee{bottom:800.464400pt;}
.y113{bottom:800.468400pt;}
.y15d{bottom:819.959733pt;}
.y35{bottom:820.436400pt;}
.ya2{bottom:820.444400pt;}
.y74{bottom:820.448400pt;}
.ydc{bottom:820.452400pt;}
.yed{bottom:820.468400pt;}
.y112{bottom:820.472400pt;}
.y17f{bottom:825.954400pt;}
.y15c{bottom:837.293067pt;}
.y34{bottom:840.440400pt;}
.ya1{bottom:840.448400pt;}
.y73{bottom:840.452400pt;}
.ydb{bottom:840.456400pt;}
.yec{bottom:840.472400pt;}
.y9{bottom:842.857333pt;}
.y17e{bottom:843.287733pt;}
.y15b{bottom:854.626400pt;}
.y33{bottom:860.444400pt;}
.ya0{bottom:860.452400pt;}
.y72{bottom:860.456400pt;}
.yda{bottom:860.460400pt;}
.y111{bottom:860.472400pt;}
.y8{bottom:862.860000pt;}
.y17d{bottom:871.959733pt;}
.y32{bottom:880.448400pt;}
.y9f{bottom:880.456400pt;}
.yd9{bottom:880.464400pt;}
.yeb{bottom:880.472400pt;}
.y15a{bottom:883.298400pt;}
.y17c{bottom:889.293067pt;}
.y7{bottom:894.198667pt;}
.y31{bottom:900.452400pt;}
.y9e{bottom:900.460400pt;}
.yd8{bottom:900.468400pt;}
.y159{bottom:900.631733pt;}
.y158{bottom:917.965067pt;}
.y30{bottom:920.456400pt;}
.y9d{bottom:920.464400pt;}
.yd7{bottom:920.472400pt;}
.y6{bottom:923.532000pt;}
.y2f{bottom:940.460400pt;}
.y9c{bottom:940.468400pt;}
.y157{bottom:946.637067pt;}
.y5{bottom:952.865333pt;}
.y2e{bottom:960.464400pt;}
.y9b{bottom:960.472400pt;}
.y156{bottom:963.970400pt;}
.y124{bottom:975.364400pt;}
.y2d{bottom:980.468400pt;}
.y123{bottom:990.028400pt;}
.y155{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y122{bottom:1008.472400pt;}
.y154{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h7{height:32.554667pt;}
.h8{height:34.080000pt;}
.h9{height:35.040000pt;}
.ha{height:36.624000pt;}
.hb{height:37.728000pt;}
.h14{height:37.760000pt;}
.h6{height:38.933333pt;}
.h13{height:41.898667pt;}
.hc{height:41.941333pt;}
.h11{height:42.096000pt;}
.he{height:42.480000pt;}
.hf{height:47.136000pt;}
.h12{height:52.373333pt;}
.hd{height:52.448000pt;}
.h5{height:52.901333pt;}
.h10{height:57.610667pt;}
.h4{height:78.613333pt;}
.h2{height:111.312823pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.x5{left:112.896933pt;}
.xf{left:122.389867pt;}
.xb{left:126.059200pt;}
.xd{left:128.519200pt;}
.x10{left:132.272533pt;}
.xc{left:166.295200pt;}
.x3{left:520.369600pt;}
.x4{left:554.277600pt;}
.x2{left:602.278933pt;}
.x6{left:657.003200pt;}
.x8{left:658.446800pt;}
.x7{left:659.664533pt;}
.xa{left:660.938000pt;}
.xe{left:661.957467pt;}
.x9{left:663.316000pt;}
}




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