
    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_512e26e80ec02b3a4ac1aad9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e211ca5594febd1af7bfd056.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_aefd631dde7a9a4475b96549.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_96fc89b8bdf0e61314a2fde6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_d6373471102c9dcc855dcca2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4bb4b5010d12029cbf6cdc21.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ebdba9a8982100321f6bf71e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_63629de12acfd286a88a6f0b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3a1d36646d2e21ce917a7e6c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.706543;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;}
.lsd{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.lse{letter-spacing:0.034560px;}
.lsc{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:77.904000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws9{word-spacing:-19.474560px;}
.ws1{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.wsa{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-4.973520px;}
._e{margin-left:-3.600000px;}
._6{margin-left:-2.520000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._7{width:4.226400px;}
._5{width:5.529120px;}
._10{width:7.056000px;}
._11{width:8.056080px;}
._1a{width:9.282480px;}
._18{width:10.656000px;}
._19{width:11.840160px;}
._14{width:12.888000px;}
._8{width:14.106480px;}
._9{width:15.425280px;}
._17{width:16.662720px;}
._c{width:17.868240px;}
._d{width:19.265040px;}
._15{width:20.550960px;}
._1b{width:22.176000px;}
._1c{width:23.188080px;}
._12{width:24.696000px;}
._13{width:25.912080px;}
._1d{width:26.969040px;}
._b{width:28.257360px;}
._a{width:30.065040px;}
._f{width:31.422960px;}
._1e{width:32.743200px;}
._2{width:532.260000px;}
._3{width:1513.257360px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yac{bottom:2.310000px;}
.yb0{bottom:3.930000px;}
.y119{bottom:4.320000px;}
.y10a{bottom:4.485000px;}
.y10e{bottom:4.500000px;}
.y11e{bottom:5.940000px;}
.yb3{bottom:6.810000px;}
.ya9{bottom:7.890000px;}
.yb6{bottom:8.715000px;}
.y92{bottom:10.050000px;}
.y8e{bottom:12.570000px;}
.y11a{bottom:14.760000px;}
.y108{bottom:14.925000px;}
.y10c{bottom:14.940000px;}
.y114{bottom:14.970000px;}
.y106{bottom:16.380000px;}
.yab{bottom:23.010000px;}
.y118{bottom:25.020000px;}
.y109{bottom:25.185000px;}
.y10d{bottom:25.200000px;}
.y113{bottom:25.230000px;}
.y94{bottom:27.690000px;}
.yb5{bottom:32.475000px;}
.yb8{bottom:32.655000px;}
.y7{bottom:39.276000px;}
.yae{bottom:45.330000px;}
.y6{bottom:58.536000px;}
.y2b{bottom:131.076000px;}
.y123{bottom:132.876000px;}
.y2a{bottom:136.296000px;}
.y146{bottom:138.996000px;}
.ya6{bottom:139.536000px;}
.ydc{bottom:148.896000px;}
.y78{bottom:149.076000px;}
.y29{bottom:149.256000px;}
.y122{bottom:149.985000px;}
.y103{bottom:158.430000px;}
.y145{bottom:159.690000px;}
.ya5{bottom:160.230000px;}
.y182{bottom:168.510000px;}
.y28{bottom:169.230000px;}
.ydb{bottom:169.590000px;}
.y77{bottom:169.770000px;}
.y167{bottom:170.490000px;}
.yf1{bottom:174.090000px;}
.y102{bottom:179.130000px;}
.y55{bottom:183.990000px;}
.y181{bottom:189.210000px;}
.y27{bottom:189.930000px;}
.yda{bottom:190.290000px;}
.y166{bottom:191.190000px;}
.y121{bottom:191.385000px;}
.yf0{bottom:194.790000px;}
.y144{bottom:198.390000px;}
.ya4{bottom:198.930000px;}
.y101{bottom:199.830000px;}
.y54{bottom:204.690000px;}
.y76{bottom:208.650000px;}
.y26{bottom:210.630000px;}
.yd9{bottom:210.990000px;}
.y143{bottom:219.090000px;}
.ya3{bottom:219.630000px;}
.y100{bottom:220.530000px;}
.y53{bottom:225.390000px;}
.y180{bottom:227.910000px;}
.y165{bottom:229.890000px;}
.yd8{bottom:231.690000px;}
.y120{bottom:232.785000px;}
.yef{bottom:233.490000px;}
.y142{bottom:239.790000px;}
.yff{bottom:241.230000px;}
.y52{bottom:246.090000px;}
.y17f{bottom:248.610000px;}
.y75{bottom:248.790000px;}
.y25{bottom:249.150000px;}
.y164{bottom:250.590000px;}
.yd7{bottom:252.390000px;}
.ya2{bottom:253.830000px;}
.yee{bottom:254.190000px;}
.yfe{bottom:261.930000px;}
.y51{bottom:266.790000px;}
.y74{bottom:269.490000px;}
.y163{bottom:271.290000px;}
.yd6{bottom:273.135000px;}
.y11f{bottom:274.215000px;}
.yb7{bottom:276.480000px;}
.y141{bottom:278.535000px;}
.yfd{bottom:282.675000px;}
.y17e{bottom:287.355000px;}
.y50{bottom:287.535000px;}
.y24{bottom:289.155000px;}
.y73{bottom:290.235000px;}
.yed{bottom:292.935000px;}
.yd5{bottom:293.835000px;}
.y140{bottom:299.235000px;}
.yfc{bottom:303.375000px;}
.y23{bottom:306.435000px;}
.y17d{bottom:308.055000px;}
.y162{bottom:310.035000px;}
.y72{bottom:310.935000px;}
.yec{bottom:313.635000px;}
.y11d{bottom:315.615000px;}
.y13f{bottom:319.935000px;}
.y8b{bottom:321.555000px;}
.y22{bottom:323.535000px;}
.yfb{bottom:324.075000px;}
.y4f{bottom:325.875000px;}
.y17c{bottom:328.755000px;}
.y161{bottom:330.735000px;}
.y71{bottom:331.635000px;}
.yd4{bottom:332.535000px;}
.y11c{bottom:339.375000px;}
.y8a{bottom:342.255000px;}
.y70{bottom:352.335000px;}
.yd3{bottom:353.235000px;}
.y13e{bottom:358.635000px;}
.y21{bottom:359.535000px;}
.yfa{bottom:362.775000px;}
.y89{bottom:362.955000px;}
.y4e{bottom:366.555000px;}
.y17b{bottom:367.455000px;}
.y160{bottom:369.435000px;}
.y6f{bottom:373.035000px;}
.yd2{bottom:373.935000px;}
.y13d{bottom:379.335000px;}
.y20{bottom:380.235000px;}
.y11b{bottom:380.775000px;}
.yb9{bottom:380.880000px;}
.y88{bottom:383.655000px;}
.y4d{bottom:387.255000px;}
.y17a{bottom:388.155000px;}
.y15f{bottom:390.135000px;}
.yeb{bottom:391.035000px;}
.yd1{bottom:394.635000px;}
.y4c{bottom:407.955000px;}
.y179{bottom:408.855000px;}
.y15e{bottom:410.835000px;}
.y197{bottom:411.555000px;}
.yea{bottom:411.735000px;}
.y6e{bottom:412.095000px;}
.yd0{bottom:415.335000px;}
.y13c{bottom:418.035000px;}
.y1f{bottom:420.735000px;}
.y117{bottom:422.175000px;}
.y87{bottom:422.715000px;}
.y4b{bottom:428.655000px;}
.ye9{bottom:432.435000px;}
.ycf{bottom:436.035000px;}
.y13b{bottom:438.735000px;}
.y1e{bottom:441.435000px;}
.yb4{bottom:445.860000px;}
.y178{bottom:447.555000px;}
.y4a{bottom:449.355000px;}
.y15d{bottom:449.535000px;}
.y196{bottom:450.255000px;}
.y6d{bottom:452.235000px;}
.ye8{bottom:453.135000px;}
.yce{bottom:456.735000px;}
.y1d{bottom:462.135000px;}
.y86{bottom:462.855000px;}
.y116{bottom:463.395000px;}
.y177{bottom:468.255000px;}
.y49{bottom:470.055000px;}
.y15c{bottom:470.235000px;}
.y195{bottom:470.955000px;}
.y6c{bottom:472.935000px;}
.ye7{bottom:473.835000px;}
.ycd{bottom:477.435000px;}
.y1c{bottom:482.835000px;}
.y85{bottom:483.555000px;}
.y176{bottom:488.955000px;}
.y48{bottom:490.755000px;}
.y6b{bottom:493.635000px;}
.yf9{bottom:494.535000px;}
.y1b{bottom:503.535000px;}
.y84{bottom:504.255000px;}
.y115{bottom:504.795000px;}
.y15b{bottom:508.935000px;}
.y194{bottom:509.655000px;}
.y47{bottom:511.455000px;}
.ye6{bottom:512.535000px;}
.y6a{bottom:514.335000px;}
.yf8{bottom:515.235000px;}
.ycc{bottom:516.135000px;}
.y1a{bottom:524.235000px;}
.y83{bottom:524.955000px;}
.y175{bottom:527.655000px;}
.y15a{bottom:529.455000px;}
.y193{bottom:530.355000px;}
.y46{bottom:532.155000px;}
.ye5{bottom:533.235000px;}
.y69{bottom:535.035000px;}
.yf7{bottom:535.935000px;}
.ycb{bottom:536.835000px;}
.ya1{bottom:541.695000px;}
.y19{bottom:544.935000px;}
.y82{bottom:545.655000px;}
.y112{bottom:546.195000px;}
.y174{bottom:548.355000px;}
.y45{bottom:552.855000px;}
.ye4{bottom:553.935000px;}
.y68{bottom:555.765000px;}
.yf6{bottom:556.665000px;}
.y13a{bottom:557.565000px;}
.ya0{bottom:562.605000px;}
.y18{bottom:565.665000px;}
.y159{bottom:568.725000px;}
.y192{bottom:569.085000px;}
.y44{bottom:573.585000px;}
.ye3{bottom:574.665000px;}
.yca{bottom:575.925000px;}
.y67{bottom:576.465000px;}
.y9f{bottom:583.305000px;}
.y81{bottom:584.385000px;}
.y17{bottom:586.365000px;}
.y173{bottom:587.085000px;}
.y111{bottom:587.625000px;}
.y158{bottom:589.425000px;}
.y191{bottom:589.785000px;}
.y43{bottom:594.285000px;}
.ye2{bottom:595.365000px;}
.y139{bottom:596.265000px;}
.y66{bottom:597.165000px;}
.y9e{bottom:604.005000px;}
.y80{bottom:605.085000px;}
.y16{bottom:607.065000px;}
.y172{bottom:607.785000px;}
.y42{bottom:614.985000px;}
.yc9{bottom:615.885000px;}
.y138{bottom:616.965000px;}
.y65{bottom:617.865000px;}
.y9d{bottom:624.705000px;}
.y7f{bottom:625.785000px;}
.y157{bottom:628.125000px;}
.y190{bottom:628.485000px;}
.y110{bottom:629.025000px;}
.y41{bottom:635.685000px;}
.yc8{bottom:636.585000px;}
.y137{bottom:637.665000px;}
.y64{bottom:638.565000px;}
.y15{bottom:645.405000px;}
.y7e{bottom:646.485000px;}
.y156{bottom:648.825000px;}
.y18f{bottom:649.185000px;}
.ye1{bottom:654.585000px;}
.y40{bottom:656.385000px;}
.yc7{bottom:657.285000px;}
.y63{bottom:659.265000px;}
.y7d{bottom:667.185000px;}
.y10f{bottom:670.425000px;}
.ye0{bottom:675.285000px;}
.y136{bottom:676.365000px;}
.y3f{bottom:677.085000px;}
.yc6{bottom:677.985000px;}
.y9c{bottom:684.645000px;}
.y14{bottom:685.905000px;}
.y155{bottom:687.525000px;}
.y7c{bottom:687.885000px;}
.ydf{bottom:695.985000px;}
.y135{bottom:697.065000px;}
.y3e{bottom:697.785000px;}
.y62{bottom:697.965000px;}
.yf5{bottom:698.685000px;}
.y171{bottom:705.885000px;}
.y18e{bottom:708.585000px;}
.y10b{bottom:711.825000px;}
.yc5{bottom:716.685000px;}
.y134{bottom:717.765000px;}
.y61{bottom:718.485000px;}
.yf4{bottom:719.385000px;}
.y9b{bottom:721.545000px;}
.y154{bottom:726.225000px;}
.y7b{bottom:726.585000px;}
.y13{bottom:726.945000px;}
.y18d{bottom:729.285000px;}
.y3d{bottom:736.485000px;}
.yc4{bottom:737.385000px;}
.yf3{bottom:740.085000px;}
.y9a{bottom:742.425000px;}
.y153{bottom:746.925000px;}
.y12{bottom:749.265000px;}
.y107{bottom:753.240000px;}
.y133{bottom:756.105000px;}
.y3c{bottom:757.185000px;}
.yc3{bottom:758.085000px;}
.y60{bottom:758.625000px;}
.y99{bottom:763.125000px;}
.y7a{bottom:765.285000px;}
.y18c{bottom:767.985000px;}
.y11{bottom:771.945000px;}
.y3b{bottom:777.885000px;}
.yc2{bottom:778.785000px;}
.y5f{bottom:779.325000px;}
.y98{bottom:784.005000px;}
.y152{bottom:785.625000px;}
.y170{bottom:785.985000px;}
.y18b{bottom:788.685000px;}
.y105{bottom:795.345000px;}
.y132{bottom:796.785000px;}
.y3a{bottom:798.585000px;}
.y79{bottom:799.485000px;}
.y5e{bottom:799.845000px;}
.y97{bottom:803.985000px;}
.y151{bottom:806.325000px;}
.y16f{bottom:806.685000px;}
.y10{bottom:813.885000px;}
.yde{bottom:817.305000px;}
.y131{bottom:817.485000px;}
.y39{bottom:819.285000px;}
.yc1{bottom:820.185000px;}
.y96{bottom:824.685000px;}
.y150{bottom:827.025000px;}
.y18a{bottom:827.385000px;}
.yf{bottom:836.205000px;}
.y130{bottom:838.185000px;}
.y38{bottom:840.030000px;}
.yc0{bottom:840.930000px;}
.y16e{bottom:845.430000px;}
.y189{bottom:848.130000px;}
.y8f{bottom:853.350000px;}
.y95{bottom:856.050000px;}
.ydd{bottom:858.030000px;}
.y12f{bottom:858.930000px;}
.yd{bottom:859.110000px;}
.y104{bottom:860.550000px;}
.y37{bottom:860.730000px;}
.ybf{bottom:861.630000px;}
.y14f{bottom:865.770000px;}
.y16d{bottom:866.130000px;}
.ye{bottom:866.670000px;}
.y188{bottom:868.830000px;}
.y5d{bottom:878.730000px;}
.y12e{bottom:879.630000px;}
.y36{bottom:881.430000px;}
.ybe{bottom:882.330000px;}
.y93{bottom:885.240000px;}
.y14e{bottom:886.470000px;}
.y91{bottom:886.500000px;}
.y16c{bottom:886.830000px;}
.yad{bottom:888.660000px;}
.y5c{bottom:899.430000px;}
.yf2{bottom:900.150000px;}
.y12d{bottom:900.330000px;}
.y35{bottom:902.130000px;}
.yc{bottom:902.670000px;}
.ybd{bottom:903.030000px;}
.y187{bottom:907.530000px;}
.yaf{bottom:913.290000px;}
.y90{bottom:917.970000px;}
.y5b{bottom:920.130000px;}
.y12c{bottom:921.030000px;}
.y34{bottom:922.830000px;}
.ybc{bottom:923.730000px;}
.y14d{bottom:925.170000px;}
.y16b{bottom:925.530000px;}
.y5a{bottom:940.830000px;}
.y12b{bottom:941.730000px;}
.y33{bottom:943.530000px;}
.ybb{bottom:944.430000px;}
.y14c{bottom:945.870000px;}
.y16a{bottom:946.230000px;}
.y8d{bottom:955.080000px;}
.yb{bottom:955.230000px;}
.y59{bottom:961.530000px;}
.y12a{bottom:962.430000px;}
.y32{bottom:964.230000px;}
.y14b{bottom:966.570000px;}
.y186{bottom:966.930000px;}
.yb2{bottom:973.260000px;}
.yaa{bottom:980.640000px;}
.y58{bottom:982.230000px;}
.y129{bottom:983.130000px;}
.yba{bottom:983.490000px;}
.y31{bottom:984.930000px;}
.y185{bottom:987.630000px;}
.ya8{bottom:988.020000px;}
.y8c{bottom:988.890000px;}
.ya{bottom:989.790000px;}
.yb1{bottom:1001.490000px;}
.y57{bottom:1002.930000px;}
.y128{bottom:1003.830000px;}
.y14a{bottom:1005.270000px;}
.y30{bottom:1005.630000px;}
.y184{bottom:1008.330000px;}
.y56{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.y127{bottom:1024.530000px;}
.y149{bottom:1025.970000px;}
.y169{bottom:1026.330000px;}
.y2f{bottom:1044.330000px;}
.y126{bottom:1045.230000px;}
.y168{bottom:1047.030000px;}
.y148{bottom:1064.670000px;}
.y2e{bottom:1065.030000px;}
.y125{bottom:1065.930000px;}
.y183{bottom:1067.730000px;}
.ya7{bottom:1069.170000px;}
.y8{bottom:1076.730000px;}
.y147{bottom:1085.190000px;}
.y2d{bottom:1085.730000px;}
.y124{bottom:1104.450000px;}
.y2c{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h23{height:23.745000px;}
.h18{height:24.660000px;}
.h10{height:27.014766px;}
.ha{height:37.520508px;}
.h19{height:39.240000px;}
.h22{height:41.205000px;}
.h1f{height:41.385000px;}
.h25{height:41.391000px;}
.h20{height:41.400000px;}
.h24{height:41.421000px;}
.h21{height:41.430000px;}
.h6{height:41.756133px;}
.h1e{height:45.022500px;}
.h4{height:45.184219px;}
.h1c{height:48.960000px;}
.h1d{height:49.140000px;}
.he{height:50.027344px;}
.h1b{height:53.460000px;}
.h5{height:53.640000px;}
.h16{height:56.700000px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h14{height:59.040000px;}
.h3{height:60.226875px;}
.h1a{height:61.560000px;}
.h17{height:62.460000px;}
.hd{height:70.664062px;}
.h15{height:70.805391px;}
.hf{height:72.562500px;}
.h12{height:74.004654px;}
.h13{height:76.279219px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:53.301000px;}
.w10{width:56.685000px;}
.w11{width:56.721000px;}
.w12{width:79.365000px;}
.w5{width:97.200000px;}
.w6{width:100.800000px;}
.wf{width:119.196000px;}
.w2{width:125.460000px;}
.w15{width:127.080000px;}
.w8{width:130.500000px;}
.w7{width:132.300000px;}
.wb{width:135.360000px;}
.wa{width:135.540000px;}
.wd{width:135.720000px;}
.wc{width:135.900000px;}
.w13{width:145.611000px;}
.w9{width:153.720000px;}
.w4{width:165.960000px;}
.we{width:326.001000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:8.100000px;}
.x36{left:10.785000px;}
.x1b{left:15.585000px;}
.x23{left:17.385000px;}
.x38{left:22.845000px;}
.x3d{left:25.560000px;}
.x25{left:28.110000px;}
.x27{left:29.910000px;}
.x2c{left:32.430000px;}
.x28{left:37.830000px;}
.x3c{left:39.270000px;}
.x26{left:41.610000px;}
.x2b{left:44.355000px;}
.x2{left:50.399998px;}
.x16{left:51.510000px;}
.x32{left:90.705000px;}
.x1{left:127.656000px;}
.x11{left:132.516000px;}
.x5{left:141.156000px;}
.x2d{left:144.540000px;}
.x4{left:146.556000px;}
.xf{left:148.896000px;}
.x24{left:153.900000px;}
.xe{left:159.510000px;}
.xa{left:168.510000px;}
.xd{left:180.750000px;}
.x17{left:187.410000px;}
.x15{left:190.650000px;}
.x6{left:241.590000px;}
.x31{left:258.510000px;}
.x3a{left:273.285000px;}
.x1d{left:311.835000px;}
.x20{left:313.095000px;}
.x13{left:324.975000px;}
.x3b{left:326.595000px;}
.x10{left:343.695000px;}
.x30{left:345.315000px;}
.x7{left:346.575000px;}
.x2e{left:356.940000px;}
.x21{left:362.775000px;}
.x1e{left:366.915000px;}
.x14{left:367.995000px;}
.xc{left:375.375000px;}
.x2a{left:379.440000px;}
.x19{left:390.240000px;}
.xb{left:410.835000px;}
.x29{left:416.955000px;}
.x18{left:433.875000px;}
.x33{left:453.675000px;}
.x3{left:457.275000px;}
.x8{left:561.142500px;}
.x9{left:568.005000px;}
.x35{left:572.880000px;}
.x2f{left:601.920000px;}
.x1a{left:624.600000px;}
.x37{left:629.580000px;}
.x22{left:630.900000px;}
.x39{left:686.310000px;}
.x12{left:740.670000px;}
.x1c{left:762.270000px;}
.x1f{left:771.630000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.030720pt;}
.lsc{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:69.248000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws9{word-spacing:-17.310720pt;}
.ws1{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.wsa{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.420907pt;}
._e{margin-left:-3.200000pt;}
._6{margin-left:-2.240000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._7{width:3.756800pt;}
._5{width:4.914773pt;}
._10{width:6.272000pt;}
._11{width:7.160960pt;}
._1a{width:8.251093pt;}
._18{width:9.472000pt;}
._19{width:10.524587pt;}
._14{width:11.456000pt;}
._8{width:12.539093pt;}
._9{width:13.711360pt;}
._17{width:14.811307pt;}
._c{width:15.882880pt;}
._d{width:17.124480pt;}
._15{width:18.267520pt;}
._1b{width:19.712000pt;}
._1c{width:20.611627pt;}
._12{width:21.952000pt;}
._13{width:23.032960pt;}
._1d{width:23.972480pt;}
._b{width:25.117653pt;}
._a{width:26.724480pt;}
._f{width:27.931520pt;}
._1e{width:29.105067pt;}
._2{width:473.120000pt;}
._3{width:1345.117653pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:2.053333pt;}
.yb0{bottom:3.493333pt;}
.y119{bottom:3.840000pt;}
.y10a{bottom:3.986667pt;}
.y10e{bottom:4.000000pt;}
.y11e{bottom:5.280000pt;}
.yb3{bottom:6.053333pt;}
.ya9{bottom:7.013333pt;}
.yb6{bottom:7.746667pt;}
.y92{bottom:8.933333pt;}
.y8e{bottom:11.173333pt;}
.y11a{bottom:13.120000pt;}
.y108{bottom:13.266667pt;}
.y10c{bottom:13.280000pt;}
.y114{bottom:13.306667pt;}
.y106{bottom:14.560000pt;}
.yab{bottom:20.453333pt;}
.y118{bottom:22.240000pt;}
.y109{bottom:22.386667pt;}
.y10d{bottom:22.400000pt;}
.y113{bottom:22.426667pt;}
.y94{bottom:24.613333pt;}
.yb5{bottom:28.866667pt;}
.yb8{bottom:29.026667pt;}
.y7{bottom:34.912000pt;}
.yae{bottom:40.293333pt;}
.y6{bottom:52.032000pt;}
.y2b{bottom:116.512000pt;}
.y123{bottom:118.112000pt;}
.y2a{bottom:121.152000pt;}
.y146{bottom:123.552000pt;}
.ya6{bottom:124.032000pt;}
.ydc{bottom:132.352000pt;}
.y78{bottom:132.512000pt;}
.y29{bottom:132.672000pt;}
.y122{bottom:133.320000pt;}
.y103{bottom:140.826667pt;}
.y145{bottom:141.946667pt;}
.ya5{bottom:142.426667pt;}
.y182{bottom:149.786667pt;}
.y28{bottom:150.426667pt;}
.ydb{bottom:150.746667pt;}
.y77{bottom:150.906667pt;}
.y167{bottom:151.546667pt;}
.yf1{bottom:154.746667pt;}
.y102{bottom:159.226667pt;}
.y55{bottom:163.546667pt;}
.y181{bottom:168.186667pt;}
.y27{bottom:168.826667pt;}
.yda{bottom:169.146667pt;}
.y166{bottom:169.946667pt;}
.y121{bottom:170.120000pt;}
.yf0{bottom:173.146667pt;}
.y144{bottom:176.346667pt;}
.ya4{bottom:176.826667pt;}
.y101{bottom:177.626667pt;}
.y54{bottom:181.946667pt;}
.y76{bottom:185.466667pt;}
.y26{bottom:187.226667pt;}
.yd9{bottom:187.546667pt;}
.y143{bottom:194.746667pt;}
.ya3{bottom:195.226667pt;}
.y100{bottom:196.026667pt;}
.y53{bottom:200.346667pt;}
.y180{bottom:202.586667pt;}
.y165{bottom:204.346667pt;}
.yd8{bottom:205.946667pt;}
.y120{bottom:206.920000pt;}
.yef{bottom:207.546667pt;}
.y142{bottom:213.146667pt;}
.yff{bottom:214.426667pt;}
.y52{bottom:218.746667pt;}
.y17f{bottom:220.986667pt;}
.y75{bottom:221.146667pt;}
.y25{bottom:221.466667pt;}
.y164{bottom:222.746667pt;}
.yd7{bottom:224.346667pt;}
.ya2{bottom:225.626667pt;}
.yee{bottom:225.946667pt;}
.yfe{bottom:232.826667pt;}
.y51{bottom:237.146667pt;}
.y74{bottom:239.546667pt;}
.y163{bottom:241.146667pt;}
.yd6{bottom:242.786667pt;}
.y11f{bottom:243.746667pt;}
.yb7{bottom:245.760000pt;}
.y141{bottom:247.586667pt;}
.yfd{bottom:251.266667pt;}
.y17e{bottom:255.426667pt;}
.y50{bottom:255.586667pt;}
.y24{bottom:257.026667pt;}
.y73{bottom:257.986667pt;}
.yed{bottom:260.386667pt;}
.yd5{bottom:261.186667pt;}
.y140{bottom:265.986667pt;}
.yfc{bottom:269.666667pt;}
.y23{bottom:272.386667pt;}
.y17d{bottom:273.826667pt;}
.y162{bottom:275.586667pt;}
.y72{bottom:276.386667pt;}
.yec{bottom:278.786667pt;}
.y11d{bottom:280.546667pt;}
.y13f{bottom:284.386667pt;}
.y8b{bottom:285.826667pt;}
.y22{bottom:287.586667pt;}
.yfb{bottom:288.066667pt;}
.y4f{bottom:289.666667pt;}
.y17c{bottom:292.226667pt;}
.y161{bottom:293.986667pt;}
.y71{bottom:294.786667pt;}
.yd4{bottom:295.586667pt;}
.y11c{bottom:301.666667pt;}
.y8a{bottom:304.226667pt;}
.y70{bottom:313.186667pt;}
.yd3{bottom:313.986667pt;}
.y13e{bottom:318.786667pt;}
.y21{bottom:319.586667pt;}
.yfa{bottom:322.466667pt;}
.y89{bottom:322.626667pt;}
.y4e{bottom:325.826667pt;}
.y17b{bottom:326.626667pt;}
.y160{bottom:328.386667pt;}
.y6f{bottom:331.586667pt;}
.yd2{bottom:332.386667pt;}
.y13d{bottom:337.186667pt;}
.y20{bottom:337.986667pt;}
.y11b{bottom:338.466667pt;}
.yb9{bottom:338.560000pt;}
.y88{bottom:341.026667pt;}
.y4d{bottom:344.226667pt;}
.y17a{bottom:345.026667pt;}
.y15f{bottom:346.786667pt;}
.yeb{bottom:347.586667pt;}
.yd1{bottom:350.786667pt;}
.y4c{bottom:362.626667pt;}
.y179{bottom:363.426667pt;}
.y15e{bottom:365.186667pt;}
.y197{bottom:365.826667pt;}
.yea{bottom:365.986667pt;}
.y6e{bottom:366.306667pt;}
.yd0{bottom:369.186667pt;}
.y13c{bottom:371.586667pt;}
.y1f{bottom:373.986667pt;}
.y117{bottom:375.266667pt;}
.y87{bottom:375.746667pt;}
.y4b{bottom:381.026667pt;}
.ye9{bottom:384.386667pt;}
.ycf{bottom:387.586667pt;}
.y13b{bottom:389.986667pt;}
.y1e{bottom:392.386667pt;}
.yb4{bottom:396.320000pt;}
.y178{bottom:397.826667pt;}
.y4a{bottom:399.426667pt;}
.y15d{bottom:399.586667pt;}
.y196{bottom:400.226667pt;}
.y6d{bottom:401.986667pt;}
.ye8{bottom:402.786667pt;}
.yce{bottom:405.986667pt;}
.y1d{bottom:410.786667pt;}
.y86{bottom:411.426667pt;}
.y116{bottom:411.906667pt;}
.y177{bottom:416.226667pt;}
.y49{bottom:417.826667pt;}
.y15c{bottom:417.986667pt;}
.y195{bottom:418.626667pt;}
.y6c{bottom:420.386667pt;}
.ye7{bottom:421.186667pt;}
.ycd{bottom:424.386667pt;}
.y1c{bottom:429.186667pt;}
.y85{bottom:429.826667pt;}
.y176{bottom:434.626667pt;}
.y48{bottom:436.226667pt;}
.y6b{bottom:438.786667pt;}
.yf9{bottom:439.586667pt;}
.y1b{bottom:447.586667pt;}
.y84{bottom:448.226667pt;}
.y115{bottom:448.706667pt;}
.y15b{bottom:452.386667pt;}
.y194{bottom:453.026667pt;}
.y47{bottom:454.626667pt;}
.ye6{bottom:455.586667pt;}
.y6a{bottom:457.186667pt;}
.yf8{bottom:457.986667pt;}
.ycc{bottom:458.786667pt;}
.y1a{bottom:465.986667pt;}
.y83{bottom:466.626667pt;}
.y175{bottom:469.026667pt;}
.y15a{bottom:470.626667pt;}
.y193{bottom:471.426667pt;}
.y46{bottom:473.026667pt;}
.ye5{bottom:473.986667pt;}
.y69{bottom:475.586667pt;}
.yf7{bottom:476.386667pt;}
.ycb{bottom:477.186667pt;}
.ya1{bottom:481.506667pt;}
.y19{bottom:484.386667pt;}
.y82{bottom:485.026667pt;}
.y112{bottom:485.506667pt;}
.y174{bottom:487.426667pt;}
.y45{bottom:491.426667pt;}
.ye4{bottom:492.386667pt;}
.y68{bottom:494.013333pt;}
.yf6{bottom:494.813333pt;}
.y13a{bottom:495.613333pt;}
.ya0{bottom:500.093333pt;}
.y18{bottom:502.813333pt;}
.y159{bottom:505.533333pt;}
.y192{bottom:505.853333pt;}
.y44{bottom:509.853333pt;}
.ye3{bottom:510.813333pt;}
.yca{bottom:511.933333pt;}
.y67{bottom:512.413333pt;}
.y9f{bottom:518.493333pt;}
.y81{bottom:519.453333pt;}
.y17{bottom:521.213333pt;}
.y173{bottom:521.853333pt;}
.y111{bottom:522.333333pt;}
.y158{bottom:523.933333pt;}
.y191{bottom:524.253333pt;}
.y43{bottom:528.253333pt;}
.ye2{bottom:529.213333pt;}
.y139{bottom:530.013333pt;}
.y66{bottom:530.813333pt;}
.y9e{bottom:536.893333pt;}
.y80{bottom:537.853333pt;}
.y16{bottom:539.613333pt;}
.y172{bottom:540.253333pt;}
.y42{bottom:546.653333pt;}
.yc9{bottom:547.453333pt;}
.y138{bottom:548.413333pt;}
.y65{bottom:549.213333pt;}
.y9d{bottom:555.293333pt;}
.y7f{bottom:556.253333pt;}
.y157{bottom:558.333333pt;}
.y190{bottom:558.653333pt;}
.y110{bottom:559.133333pt;}
.y41{bottom:565.053333pt;}
.yc8{bottom:565.853333pt;}
.y137{bottom:566.813333pt;}
.y64{bottom:567.613333pt;}
.y15{bottom:573.693333pt;}
.y7e{bottom:574.653333pt;}
.y156{bottom:576.733333pt;}
.y18f{bottom:577.053333pt;}
.ye1{bottom:581.853333pt;}
.y40{bottom:583.453333pt;}
.yc7{bottom:584.253333pt;}
.y63{bottom:586.013333pt;}
.y7d{bottom:593.053333pt;}
.y10f{bottom:595.933333pt;}
.ye0{bottom:600.253333pt;}
.y136{bottom:601.213333pt;}
.y3f{bottom:601.853333pt;}
.yc6{bottom:602.653333pt;}
.y9c{bottom:608.573333pt;}
.y14{bottom:609.693333pt;}
.y155{bottom:611.133333pt;}
.y7c{bottom:611.453333pt;}
.ydf{bottom:618.653333pt;}
.y135{bottom:619.613333pt;}
.y3e{bottom:620.253333pt;}
.y62{bottom:620.413333pt;}
.yf5{bottom:621.053333pt;}
.y171{bottom:627.453333pt;}
.y18e{bottom:629.853333pt;}
.y10b{bottom:632.733333pt;}
.yc5{bottom:637.053333pt;}
.y134{bottom:638.013333pt;}
.y61{bottom:638.653333pt;}
.yf4{bottom:639.453333pt;}
.y9b{bottom:641.373333pt;}
.y154{bottom:645.533333pt;}
.y7b{bottom:645.853333pt;}
.y13{bottom:646.173333pt;}
.y18d{bottom:648.253333pt;}
.y3d{bottom:654.653333pt;}
.yc4{bottom:655.453333pt;}
.yf3{bottom:657.853333pt;}
.y9a{bottom:659.933333pt;}
.y153{bottom:663.933333pt;}
.y12{bottom:666.013333pt;}
.y107{bottom:669.546667pt;}
.y133{bottom:672.093333pt;}
.y3c{bottom:673.053333pt;}
.yc3{bottom:673.853333pt;}
.y60{bottom:674.333333pt;}
.y99{bottom:678.333333pt;}
.y7a{bottom:680.253333pt;}
.y18c{bottom:682.653333pt;}
.y11{bottom:686.173333pt;}
.y3b{bottom:691.453333pt;}
.yc2{bottom:692.253333pt;}
.y5f{bottom:692.733333pt;}
.y98{bottom:696.893333pt;}
.y152{bottom:698.333333pt;}
.y170{bottom:698.653333pt;}
.y18b{bottom:701.053333pt;}
.y105{bottom:706.973333pt;}
.y132{bottom:708.253333pt;}
.y3a{bottom:709.853333pt;}
.y79{bottom:710.653333pt;}
.y5e{bottom:710.973333pt;}
.y97{bottom:714.653333pt;}
.y151{bottom:716.733333pt;}
.y16f{bottom:717.053333pt;}
.y10{bottom:723.453333pt;}
.yde{bottom:726.493333pt;}
.y131{bottom:726.653333pt;}
.y39{bottom:728.253333pt;}
.yc1{bottom:729.053333pt;}
.y96{bottom:733.053333pt;}
.y150{bottom:735.133333pt;}
.y18a{bottom:735.453333pt;}
.yf{bottom:743.293333pt;}
.y130{bottom:745.053333pt;}
.y38{bottom:746.693333pt;}
.yc0{bottom:747.493333pt;}
.y16e{bottom:751.493333pt;}
.y189{bottom:753.893333pt;}
.y8f{bottom:758.533333pt;}
.y95{bottom:760.933333pt;}
.ydd{bottom:762.693333pt;}
.y12f{bottom:763.493333pt;}
.yd{bottom:763.653333pt;}
.y104{bottom:764.933333pt;}
.y37{bottom:765.093333pt;}
.ybf{bottom:765.893333pt;}
.y14f{bottom:769.573333pt;}
.y16d{bottom:769.893333pt;}
.ye{bottom:770.373333pt;}
.y188{bottom:772.293333pt;}
.y5d{bottom:781.093333pt;}
.y12e{bottom:781.893333pt;}
.y36{bottom:783.493333pt;}
.ybe{bottom:784.293333pt;}
.y93{bottom:786.880000pt;}
.y14e{bottom:787.973333pt;}
.y91{bottom:788.000000pt;}
.y16c{bottom:788.293333pt;}
.yad{bottom:789.920000pt;}
.y5c{bottom:799.493333pt;}
.yf2{bottom:800.133333pt;}
.y12d{bottom:800.293333pt;}
.y35{bottom:801.893333pt;}
.yc{bottom:802.373333pt;}
.ybd{bottom:802.693333pt;}
.y187{bottom:806.693333pt;}
.yaf{bottom:811.813333pt;}
.y90{bottom:815.973333pt;}
.y5b{bottom:817.893333pt;}
.y12c{bottom:818.693333pt;}
.y34{bottom:820.293333pt;}
.ybc{bottom:821.093333pt;}
.y14d{bottom:822.373333pt;}
.y16b{bottom:822.693333pt;}
.y5a{bottom:836.293333pt;}
.y12b{bottom:837.093333pt;}
.y33{bottom:838.693333pt;}
.ybb{bottom:839.493333pt;}
.y14c{bottom:840.773333pt;}
.y16a{bottom:841.093333pt;}
.y8d{bottom:848.960000pt;}
.yb{bottom:849.093333pt;}
.y59{bottom:854.693333pt;}
.y12a{bottom:855.493333pt;}
.y32{bottom:857.093333pt;}
.y14b{bottom:859.173333pt;}
.y186{bottom:859.493333pt;}
.yb2{bottom:865.120000pt;}
.yaa{bottom:871.680000pt;}
.y58{bottom:873.093333pt;}
.y129{bottom:873.893333pt;}
.yba{bottom:874.213333pt;}
.y31{bottom:875.493333pt;}
.y185{bottom:877.893333pt;}
.ya8{bottom:878.240000pt;}
.y8c{bottom:879.013333pt;}
.ya{bottom:879.813333pt;}
.yb1{bottom:890.213333pt;}
.y57{bottom:891.493333pt;}
.y128{bottom:892.293333pt;}
.y14a{bottom:893.573333pt;}
.y30{bottom:893.893333pt;}
.y184{bottom:896.293333pt;}
.y56{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.y127{bottom:910.693333pt;}
.y149{bottom:911.973333pt;}
.y169{bottom:912.293333pt;}
.y2f{bottom:928.293333pt;}
.y126{bottom:929.093333pt;}
.y168{bottom:930.693333pt;}
.y148{bottom:946.373333pt;}
.y2e{bottom:946.693333pt;}
.y125{bottom:947.493333pt;}
.y183{bottom:949.093333pt;}
.ya7{bottom:950.373333pt;}
.y8{bottom:957.093333pt;}
.y147{bottom:964.613333pt;}
.y2d{bottom:965.093333pt;}
.y124{bottom:981.733333pt;}
.y2c{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h23{height:21.106667pt;}
.h18{height:21.920000pt;}
.h10{height:24.013125pt;}
.ha{height:33.351562pt;}
.h19{height:34.880000pt;}
.h22{height:36.626667pt;}
.h1f{height:36.786667pt;}
.h25{height:36.792000pt;}
.h20{height:36.800000pt;}
.h24{height:36.818667pt;}
.h21{height:36.826667pt;}
.h6{height:37.116563pt;}
.h1e{height:40.020000pt;}
.h4{height:40.163750pt;}
.h1c{height:43.520000pt;}
.h1d{height:43.680000pt;}
.he{height:44.468750pt;}
.h1b{height:47.520000pt;}
.h5{height:47.680000pt;}
.h16{height:50.400000pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h14{height:52.480000pt;}
.h3{height:53.535000pt;}
.h1a{height:54.720000pt;}
.h17{height:55.520000pt;}
.hd{height:62.812500pt;}
.h15{height:62.938125pt;}
.hf{height:64.500000pt;}
.h12{height:65.781915pt;}
.h13{height:67.803750pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:47.378667pt;}
.w10{width:50.386667pt;}
.w11{width:50.418667pt;}
.w12{width:70.546667pt;}
.w5{width:86.400000pt;}
.w6{width:89.600000pt;}
.wf{width:105.952000pt;}
.w2{width:111.520000pt;}
.w15{width:112.960000pt;}
.w8{width:116.000000pt;}
.w7{width:117.600000pt;}
.wb{width:120.320000pt;}
.wa{width:120.480000pt;}
.wd{width:120.640000pt;}
.wc{width:120.800000pt;}
.w13{width:129.432000pt;}
.w9{width:136.640000pt;}
.w4{width:147.520000pt;}
.we{width:289.778667pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:7.200000pt;}
.x36{left:9.586667pt;}
.x1b{left:13.853333pt;}
.x23{left:15.453333pt;}
.x38{left:20.306667pt;}
.x3d{left:22.720000pt;}
.x25{left:24.986667pt;}
.x27{left:26.586667pt;}
.x2c{left:28.826667pt;}
.x28{left:33.626667pt;}
.x3c{left:34.906667pt;}
.x26{left:36.986667pt;}
.x2b{left:39.426667pt;}
.x2{left:44.799998pt;}
.x16{left:45.786667pt;}
.x32{left:80.626667pt;}
.x1{left:113.472000pt;}
.x11{left:117.792000pt;}
.x5{left:125.472000pt;}
.x2d{left:128.480000pt;}
.x4{left:130.272000pt;}
.xf{left:132.352000pt;}
.x24{left:136.800000pt;}
.xe{left:141.786667pt;}
.xa{left:149.786667pt;}
.xd{left:160.666667pt;}
.x17{left:166.586667pt;}
.x15{left:169.466667pt;}
.x6{left:214.746667pt;}
.x31{left:229.786667pt;}
.x3a{left:242.920000pt;}
.x1d{left:277.186667pt;}
.x20{left:278.306667pt;}
.x13{left:288.866667pt;}
.x3b{left:290.306667pt;}
.x10{left:305.506667pt;}
.x30{left:306.946667pt;}
.x7{left:308.066667pt;}
.x2e{left:317.280000pt;}
.x21{left:322.466667pt;}
.x1e{left:326.146667pt;}
.x14{left:327.106667pt;}
.xc{left:333.666667pt;}
.x2a{left:337.280000pt;}
.x19{left:346.880000pt;}
.xb{left:365.186667pt;}
.x29{left:370.626667pt;}
.x18{left:385.666667pt;}
.x33{left:403.266667pt;}
.x3{left:406.466667pt;}
.x8{left:498.793333pt;}
.x9{left:504.893333pt;}
.x35{left:509.226667pt;}
.x2f{left:535.040000pt;}
.x1a{left:555.200000pt;}
.x37{left:559.626667pt;}
.x22{left:560.800000pt;}
.x39{left:610.053333pt;}
.x12{left:658.373333pt;}
.x1c{left:677.573333pt;}
.x1f{left:685.893333pt;}
}




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