
    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_3f5447430d43a4d591764fb3.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_f73d2ad6ebe16d3cfbbd0fc9.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_12c45d6ff9c499751a63338f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_2feeaa809186dc0fbdd45942.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee077129e039716e46c24fe9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736328;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_534908bb3006057d3c0f521d.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_eed9955f034816f2a01fe230.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ba8ee06088ec54a00330243c.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_71ad4f26a3be08e478d17dff.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dbece46f5c0754dba798168f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_5178511fb0781352fa36bfb8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_cb4e0b00b4bc9f4c0cada5c2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.034560px;}
.ls7{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:26.784000px;}
.lsc{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;}
}
.wsa{word-spacing:-72.288000px;}
.ws9{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws8{word-spacing:-19.405440px;}
.ws7{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.wsb{word-spacing:-17.064000px;}
.ws0{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._a{width:3.640800px;}
._10{width:4.855200px;}
._12{width:6.624000px;}
._13{width:8.064000px;}
._17{width:9.218400px;}
._8{width:10.512000px;}
._9{width:11.522400px;}
._11{width:13.320000px;}
._1a{width:14.472000px;}
._7{width:15.547200px;}
._6{width:16.634400px;}
._e{width:19.368000px;}
._f{width:20.808000px;}
._b{width:22.032000px;}
._1c{width:23.328000px;}
._1f{width:24.698400px;}
._1e{width:25.704000px;}
._18{width:27.000000px;}
._19{width:28.296000px;}
._1d{width:30.135600px;}
._15{width:31.354560px;}
._16{width:33.138720px;}
._1b{width:35.064000px;}
._c{width:36.504000px;}
._d{width:37.944000px;}
._14{width:40.168080px;}
._5{width:219.369120px;}
._2{width:1208.520000px;}
._3{width:2047.692480px;}
.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;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y100{bottom:4.485000px;}
.ya7{bottom:4.500000px;}
.ydf{bottom:4.515000px;}
.yea{bottom:14.760000px;}
.yed{bottom:14.940000px;}
.ya5{bottom:15.300000px;}
.ydd{bottom:25.200000px;}
.ydc{bottom:25.560000px;}
.y7{bottom:44.676000px;}
.y6{bottom:58.536000px;}
.y2e{bottom:131.076000px;}
.y2d{bottom:136.296000px;}
.yd8{bottom:137.196000px;}
.y9a{bottom:138.096000px;}
.y2c{bottom:149.256000px;}
.y56{bottom:150.150000px;}
.y76{bottom:151.050000px;}
.ybc{bottom:151.950000px;}
.y138{bottom:153.210000px;}
.y99{bottom:158.790000px;}
.ybb{bottom:172.650000px;}
.y137{bottom:173.910000px;}
.yd7{bottom:175.890000px;}
.y11d{bottom:178.590000px;}
.y98{bottom:179.490000px;}
.y55{bottom:190.110000px;}
.y75{bottom:191.190000px;}
.y103{bottom:191.205000px;}
.yba{bottom:193.350000px;}
.yd6{bottom:196.590000px;}
.y11c{bottom:199.290000px;}
.y97{bottom:200.190000px;}
.y2b{bottom:207.750000px;}
.y74{bottom:211.890000px;}
.y136{bottom:212.610000px;}
.y102{bottom:212.625000px;}
.yb9{bottom:213.870000px;}
.yd5{bottom:217.290000px;}
.y96{bottom:220.890000px;}
.y2a{bottom:225.030000px;}
.y54{bottom:230.790000px;}
.y73{bottom:232.590000px;}
.y135{bottom:233.310000px;}
.y101{bottom:234.045000px;}
.y11b{bottom:237.810000px;}
.y95{bottom:241.590000px;}
.y29{bottom:242.310000px;}
.y53{bottom:251.490000px;}
.y72{bottom:253.290000px;}
.yb8{bottom:254.010000px;}
.yff{bottom:255.645000px;}
.yd4{bottom:255.990000px;}
.y94{bottom:262.290000px;}
.y134{bottom:272.010000px;}
.y52{bottom:272.190000px;}
.yb7{bottom:274.755000px;}
.yd3{bottom:276.735000px;}
.yfe{bottom:277.095000px;}
.y28{bottom:278.175000px;}
.y11a{bottom:278.535000px;}
.y71{bottom:292.395000px;}
.y133{bottom:292.755000px;}
.y51{bottom:292.935000px;}
.yb6{bottom:295.455000px;}
.yd2{bottom:297.435000px;}
.yfd{bottom:298.515000px;}
.y119{bottom:299.235000px;}
.y93{bottom:301.035000px;}
.y50{bottom:313.635000px;}
.yb5{bottom:316.155000px;}
.yd1{bottom:318.135000px;}
.y27{bottom:318.675000px;}
.yfc{bottom:319.935000px;}
.y92{bottom:321.735000px;}
.y132{bottom:331.455000px;}
.y70{bottom:332.535000px;}
.y4f{bottom:334.335000px;}
.yb4{bottom:336.855000px;}
.yd0{bottom:338.835000px;}
.y26{bottom:339.375000px;}
.y118{bottom:340.635000px;}
.yfb{bottom:341.355000px;}
.y91{bottom:342.435000px;}
.y131{bottom:352.155000px;}
.y6f{bottom:353.235000px;}
.y4e{bottom:355.035000px;}
.yb3{bottom:357.555000px;}
.y25{bottom:360.075000px;}
.y117{bottom:361.335000px;}
.yfa{bottom:362.775000px;}
.y90{bottom:363.135000px;}
.y6e{bottom:373.935000px;}
.y4d{bottom:375.735000px;}
.ycf{bottom:377.535000px;}
.yb2{bottom:378.255000px;}
.y24{bottom:380.775000px;}
.y116{bottom:382.035000px;}
.yf9{bottom:384.375000px;}
.y130{bottom:390.855000px;}
.y6d{bottom:394.635000px;}
.y4c{bottom:396.435000px;}
.yce{bottom:398.235000px;}
.yb1{bottom:398.955000px;}
.y23{bottom:401.475000px;}
.y8f{bottom:401.835000px;}
.yf8{bottom:405.795000px;}
.y12f{bottom:411.555000px;}
.y6c{bottom:415.335000px;}
.y4b{bottom:417.135000px;}
.ycd{bottom:418.935000px;}
.yb0{bottom:419.655000px;}
.y115{bottom:420.555000px;}
.y22{bottom:422.175000px;}
.yf7{bottom:427.215000px;}
.y4a{bottom:437.835000px;}
.ycc{bottom:439.635000px;}
.yaf{bottom:440.355000px;}
.y8e{bottom:440.535000px;}
.y21{bottom:442.875000px;}
.yf6{bottom:448.635000px;}
.y12e{bottom:450.255000px;}
.y6b{bottom:454.395000px;}
.ycb{bottom:460.335000px;}
.yae{bottom:461.055000px;}
.y8d{bottom:461.235000px;}
.y20{bottom:463.575000px;}
.yf5{bottom:470.055000px;}
.y12d{bottom:470.955000px;}
.y49{bottom:476.535000px;}
.yca{bottom:481.035000px;}
.yad{bottom:481.755000px;}
.y8c{bottom:481.935000px;}
.y1f{bottom:484.275000px;}
.yf4{bottom:491.475000px;}
.y6a{bottom:494.535000px;}
.y48{bottom:497.235000px;}
.yac{bottom:502.455000px;}
.y114{bottom:502.635000px;}
.y1e{bottom:504.975000px;}
.y12c{bottom:509.655000px;}
.yf3{bottom:512.895000px;}
.y69{bottom:515.235000px;}
.y47{bottom:517.935000px;}
.yc9{bottom:519.735000px;}
.y8b{bottom:520.275000px;}
.yab{bottom:522.975000px;}
.y113{bottom:523.335000px;}
.y1d{bottom:525.675000px;}
.y12b{bottom:530.355000px;}
.yf2{bottom:534.495000px;}
.y68{bottom:535.935000px;}
.y46{bottom:538.635000px;}
.yc8{bottom:540.435000px;}
.y1c{bottom:546.375000px;}
.yf1{bottom:555.945000px;}
.y67{bottom:556.665000px;}
.y8a{bottom:560.985000px;}
.y112{bottom:561.885000px;}
.yaa{bottom:563.505000px;}
.y1b{bottom:567.105000px;}
.y12a{bottom:569.085000px;}
.y45{bottom:577.365000px;}
.yc7{bottom:579.525000px;}
.y89{bottom:581.685000px;}
.y111{bottom:582.585000px;}
.y1a{bottom:587.805000px;}
.y129{bottom:589.785000px;}
.y44{bottom:597.885000px;}
.yf0{bottom:598.065000px;}
.ya9{bottom:599.865000px;}
.y88{bottom:602.385000px;}
.y110{bottom:603.285000px;}
.y19{bottom:608.505000px;}
.y128{bottom:610.485000px;}
.yc6{bottom:615.885000px;}
.y43{bottom:618.585000px;}
.ya8{bottom:621.285000px;}
.y18{bottom:629.205000px;}
.yc5{bottom:637.305000px;}
.y42{bottom:639.285000px;}
.yef{bottom:640.185000px;}
.y87{bottom:641.085000px;}
.y10f{bottom:641.985000px;}
.ya4{bottom:642.705000px;}
.y127{bottom:649.185000px;}
.y17{bottom:649.905000px;}
.yc4{bottom:658.725000px;}
.y41{bottom:659.985000px;}
.y86{bottom:661.785000px;}
.y10e{bottom:662.685000px;}
.ya6{bottom:664.125000px;}
.y126{bottom:669.885000px;}
.y16{bottom:670.605000px;}
.y66{bottom:677.985000px;}
.yc3{bottom:680.325000px;}
.y40{bottom:680.685000px;}
.yee{bottom:682.305000px;}
.y85{bottom:682.485000px;}
.y10d{bottom:683.385000px;}
.y15{bottom:691.305000px;}
.y65{bottom:698.685000px;}
.y84{bottom:703.185000px;}
.yec{bottom:703.725000px;}
.y10c{bottom:704.085000px;}
.ya3{bottom:704.985000px;}
.y125{bottom:708.585000px;}
.y14{bottom:712.005000px;}
.y3f{bottom:719.385000px;}
.yc2{bottom:721.005000px;}
.y83{bottom:723.885000px;}
.y124{bottom:729.285000px;}
.y3e{bottom:740.085000px;}
.y10b{bottom:742.785000px;}
.ya2{bottom:743.865000px;}
.yeb{bottom:746.025000px;}
.y13{bottom:750.525000px;}
.yc1{bottom:759.885000px;}
.y3d{bottom:760.785000px;}
.y82{bottom:762.585000px;}
.y10a{bottom:763.485000px;}
.ya1{bottom:764.565000px;}
.y123{bottom:767.985000px;}
.yc0{bottom:780.585000px;}
.y3c{bottom:781.485000px;}
.y81{bottom:783.285000px;}
.y109{bottom:784.185000px;}
.ya0{bottom:785.265000px;}
.ye9{bottom:788.145000px;}
.y122{bottom:788.685000px;}
.y12{bottom:790.845000px;}
.y64{bottom:799.845000px;}
.ybf{bottom:801.285000px;}
.y3b{bottom:802.185000px;}
.y80{bottom:803.985000px;}
.y108{bottom:804.885000px;}
.y9f{bottom:805.965000px;}
.ybe{bottom:821.985000px;}
.y3a{bottom:822.885000px;}
.y7f{bottom:824.685000px;}
.y121{bottom:827.385000px;}
.ye8{bottom:830.265000px;}
.y11{bottom:831.885000px;}
.y63{bottom:840.030000px;}
.y39{bottom:843.630000px;}
.y9e{bottom:844.890000px;}
.y120{bottom:848.130000px;}
.ye7{bottom:851.730000px;}
.y10{bottom:854.250000px;}
.y62{bottom:860.730000px;}
.y7e{bottom:863.430000px;}
.y38{bottom:864.330000px;}
.y13b{bottom:868.830000px;}
.ye6{bottom:873.150000px;}
.yf{bottom:877.110000px;}
.y61{bottom:881.430000px;}
.y7d{bottom:884.130000px;}
.y9d{bottom:884.850000px;}
.y107{bottom:885.030000px;}
.y11f{bottom:886.830000px;}
.ye5{bottom:894.570000px;}
.y60{bottom:902.130000px;}
.y37{bottom:903.030000px;}
.y7c{bottom:904.830000px;}
.y11e{bottom:907.530000px;}
.ye4{bottom:915.990000px;}
.ye{bottom:918.870000px;}
.y5f{bottom:922.830000px;}
.y36{bottom:923.730000px;}
.y7b{bottom:925.530000px;}
.y13a{bottom:928.230000px;}
.ye3{bottom:937.590000px;}
.yd{bottom:941.370000px;}
.ybd{bottom:943.530000px;}
.y35{bottom:944.430000px;}
.y9c{bottom:946.230000px;}
.ye2{bottom:959.010000px;}
.y5e{bottom:961.530000px;}
.yb{bottom:964.050000px;}
.y7a{bottom:964.230000px;}
.y106{bottom:965.130000px;}
.y9b{bottom:966.930000px;}
.yc{bottom:971.610000px;}
.ye1{bottom:980.430000px;}
.y5d{bottom:982.230000px;}
.y34{bottom:983.130000px;}
.y79{bottom:984.930000px;}
.y105{bottom:985.830000px;}
.y139{bottom:987.630000px;}
.ya{bottom:989.790000px;}
.ye0{bottom:1001.850000px;}
.y5c{bottom:1002.930000px;}
.y33{bottom:1003.830000px;}
.y78{bottom:1005.630000px;}
.yde{bottom:1023.255000px;}
.ydb{bottom:1023.270000px;}
.y5b{bottom:1023.630000px;}
.y104{bottom:1024.350000px;}
.y32{bottom:1024.530000px;}
.y77{bottom:1026.330000px;}
.y9{bottom:1042.170000px;}
.y5a{bottom:1044.330000px;}
.y31{bottom:1045.230000px;}
.y59{bottom:1065.030000px;}
.yda{bottom:1065.390000px;}
.y30{bottom:1065.930000px;}
.y8{bottom:1076.730000px;}
.y58{bottom:1085.730000px;}
.y2f{bottom:1104.450000px;}
.yd9{bottom:1106.250000px;}
.y57{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h17{height:20.685000px;}
.h16{height:20.700000px;}
.h1c{height:20.721000px;}
.h1b{height:20.722500px;}
.he{height:28.096875px;}
.ha{height:36.571289px;}
.h19{height:41.391000px;}
.h1a{height:41.400000px;}
.h6{height:41.756133px;}
.h15{height:42.120000px;}
.h4{height:45.184219px;}
.h12{height:50.027344px;}
.hf{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.h18{height:62.805000px;}
.hd{height:70.664062px;}
.h13{height:72.562500px;}
.h11{height:74.004654px;}
.h14{height:74.953125px;}
.h10{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;}
.w7{width:52.380000px;}
.w20{width:55.785000px;}
.w16{width:55.795500px;}
.w17{width:55.800000px;}
.w1e{width:56.001000px;}
.w13{width:56.002500px;}
.w1f{width:56.325000px;}
.w14{width:56.335500px;}
.w15{width:56.340000px;}
.w1d{width:56.505000px;}
.w11{width:56.511000px;}
.w12{width:56.520000px;}
.w1b{width:56.685000px;}
.w19{width:56.721000px;}
.w18{width:56.865000px;}
.w1a{width:57.225000px;}
.w9{width:61.545000px;}
.w8{width:68.436000px;}
.wa{width:73.425000px;}
.wc{width:81.900000px;}
.wd{width:104.976000px;}
.wf{width:113.025000px;}
.we{width:113.241000px;}
.w5{width:121.716000px;}
.w6{width:135.705000px;}
.w2{width:136.282500px;}
.wb{width:140.061000px;}
.w4{width:167.595000px;}
.w10{width:471.885000px;}
.w1c{width:472.245000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x1a{left:10.440000px;}
.x30{left:12.420000px;}
.x25{left:13.500000px;}
.x1c{left:14.925000px;}
.x1e{left:16.185000px;}
.x1b{left:18.540000px;}
.x1d{left:20.865000px;}
.x2a{left:22.305000px;}
.x21{left:30.765000px;}
.x2f{left:38.880000px;}
.x16{left:41.385000px;}
.x26{left:43.410000px;}
.x14{left:47.340000px;}
.x2{left:55.777500px;}
.x12{left:94.350000px;}
.x2b{left:96.660000px;}
.x1{left:127.656000px;}
.xf{left:132.516000px;}
.x10{left:148.896000px;}
.x9{left:155.010000px;}
.xd{left:159.510000px;}
.x4{left:180.390000px;}
.x3{left:189.390000px;}
.x2c{left:193.890000px;}
.x11{left:233.325000px;}
.x20{left:251.145000px;}
.xc{left:265.710000px;}
.x1f{left:340.635000px;}
.x27{left:342.255000px;}
.xe{left:343.695000px;}
.xa{left:352.335000px;}
.xb{left:368.355000px;}
.x6{left:378.795000px;}
.x22{left:391.935000px;}
.x13{left:401.655000px;}
.x18{left:454.935000px;}
.x5{left:457.275000px;}
.x23{left:474.735000px;}
.x15{left:524.100000px;}
.x7{left:528.742500px;}
.x8{left:535.605000px;}
.x29{left:569.460000px;}
.x24{left:580.440000px;}
.x19{left:586.380000px;}
.x2e{left:626.160000px;}
.x28{left:683.220000px;}
.x2d{left:739.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:23.808000pt;}
.lsc{letter-spacing:69.248000pt;}
.wsa{word-spacing:-64.256000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws8{word-spacing:-17.249280pt;}
.ws7{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws0{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._a{width:3.236267pt;}
._10{width:4.315733pt;}
._12{width:5.888000pt;}
._13{width:7.168000pt;}
._17{width:8.194133pt;}
._8{width:9.344000pt;}
._9{width:10.242133pt;}
._11{width:11.840000pt;}
._1a{width:12.864000pt;}
._7{width:13.819733pt;}
._6{width:14.786133pt;}
._e{width:17.216000pt;}
._f{width:18.496000pt;}
._b{width:19.584000pt;}
._1c{width:20.736000pt;}
._1f{width:21.954133pt;}
._1e{width:22.848000pt;}
._18{width:24.000000pt;}
._19{width:25.152000pt;}
._1d{width:26.787200pt;}
._15{width:27.870720pt;}
._16{width:29.456640pt;}
._1b{width:31.168000pt;}
._c{width:32.448000pt;}
._d{width:33.728000pt;}
._14{width:35.704960pt;}
._5{width:194.994773pt;}
._2{width:1074.240000pt;}
._3{width:1820.171093pt;}
.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;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:3.986667pt;}
.ya7{bottom:4.000000pt;}
.ydf{bottom:4.013333pt;}
.yea{bottom:13.120000pt;}
.yed{bottom:13.280000pt;}
.ya5{bottom:13.600000pt;}
.ydd{bottom:22.400000pt;}
.ydc{bottom:22.720000pt;}
.y7{bottom:39.712000pt;}
.y6{bottom:52.032000pt;}
.y2e{bottom:116.512000pt;}
.y2d{bottom:121.152000pt;}
.yd8{bottom:121.952000pt;}
.y9a{bottom:122.752000pt;}
.y2c{bottom:132.672000pt;}
.y56{bottom:133.466667pt;}
.y76{bottom:134.266667pt;}
.ybc{bottom:135.066667pt;}
.y138{bottom:136.186667pt;}
.y99{bottom:141.146667pt;}
.ybb{bottom:153.466667pt;}
.y137{bottom:154.586667pt;}
.yd7{bottom:156.346667pt;}
.y11d{bottom:158.746667pt;}
.y98{bottom:159.546667pt;}
.y55{bottom:168.986667pt;}
.y75{bottom:169.946667pt;}
.y103{bottom:169.960000pt;}
.yba{bottom:171.866667pt;}
.yd6{bottom:174.746667pt;}
.y11c{bottom:177.146667pt;}
.y97{bottom:177.946667pt;}
.y2b{bottom:184.666667pt;}
.y74{bottom:188.346667pt;}
.y136{bottom:188.986667pt;}
.y102{bottom:189.000000pt;}
.yb9{bottom:190.106667pt;}
.yd5{bottom:193.146667pt;}
.y96{bottom:196.346667pt;}
.y2a{bottom:200.026667pt;}
.y54{bottom:205.146667pt;}
.y73{bottom:206.746667pt;}
.y135{bottom:207.386667pt;}
.y101{bottom:208.040000pt;}
.y11b{bottom:211.386667pt;}
.y95{bottom:214.746667pt;}
.y29{bottom:215.386667pt;}
.y53{bottom:223.546667pt;}
.y72{bottom:225.146667pt;}
.yb8{bottom:225.786667pt;}
.yff{bottom:227.240000pt;}
.yd4{bottom:227.546667pt;}
.y94{bottom:233.146667pt;}
.y134{bottom:241.786667pt;}
.y52{bottom:241.946667pt;}
.yb7{bottom:244.226667pt;}
.yd3{bottom:245.986667pt;}
.yfe{bottom:246.306667pt;}
.y28{bottom:247.266667pt;}
.y11a{bottom:247.586667pt;}
.y71{bottom:259.906667pt;}
.y133{bottom:260.226667pt;}
.y51{bottom:260.386667pt;}
.yb6{bottom:262.626667pt;}
.yd2{bottom:264.386667pt;}
.yfd{bottom:265.346667pt;}
.y119{bottom:265.986667pt;}
.y93{bottom:267.586667pt;}
.y50{bottom:278.786667pt;}
.yb5{bottom:281.026667pt;}
.yd1{bottom:282.786667pt;}
.y27{bottom:283.266667pt;}
.yfc{bottom:284.386667pt;}
.y92{bottom:285.986667pt;}
.y132{bottom:294.626667pt;}
.y70{bottom:295.586667pt;}
.y4f{bottom:297.186667pt;}
.yb4{bottom:299.426667pt;}
.yd0{bottom:301.186667pt;}
.y26{bottom:301.666667pt;}
.y118{bottom:302.786667pt;}
.yfb{bottom:303.426667pt;}
.y91{bottom:304.386667pt;}
.y131{bottom:313.026667pt;}
.y6f{bottom:313.986667pt;}
.y4e{bottom:315.586667pt;}
.yb3{bottom:317.826667pt;}
.y25{bottom:320.066667pt;}
.y117{bottom:321.186667pt;}
.yfa{bottom:322.466667pt;}
.y90{bottom:322.786667pt;}
.y6e{bottom:332.386667pt;}
.y4d{bottom:333.986667pt;}
.ycf{bottom:335.586667pt;}
.yb2{bottom:336.226667pt;}
.y24{bottom:338.466667pt;}
.y116{bottom:339.586667pt;}
.yf9{bottom:341.666667pt;}
.y130{bottom:347.426667pt;}
.y6d{bottom:350.786667pt;}
.y4c{bottom:352.386667pt;}
.yce{bottom:353.986667pt;}
.yb1{bottom:354.626667pt;}
.y23{bottom:356.866667pt;}
.y8f{bottom:357.186667pt;}
.yf8{bottom:360.706667pt;}
.y12f{bottom:365.826667pt;}
.y6c{bottom:369.186667pt;}
.y4b{bottom:370.786667pt;}
.ycd{bottom:372.386667pt;}
.yb0{bottom:373.026667pt;}
.y115{bottom:373.826667pt;}
.y22{bottom:375.266667pt;}
.yf7{bottom:379.746667pt;}
.y4a{bottom:389.186667pt;}
.ycc{bottom:390.786667pt;}
.yaf{bottom:391.426667pt;}
.y8e{bottom:391.586667pt;}
.y21{bottom:393.666667pt;}
.yf6{bottom:398.786667pt;}
.y12e{bottom:400.226667pt;}
.y6b{bottom:403.906667pt;}
.ycb{bottom:409.186667pt;}
.yae{bottom:409.826667pt;}
.y8d{bottom:409.986667pt;}
.y20{bottom:412.066667pt;}
.yf5{bottom:417.826667pt;}
.y12d{bottom:418.626667pt;}
.y49{bottom:423.586667pt;}
.yca{bottom:427.586667pt;}
.yad{bottom:428.226667pt;}
.y8c{bottom:428.386667pt;}
.y1f{bottom:430.466667pt;}
.yf4{bottom:436.866667pt;}
.y6a{bottom:439.586667pt;}
.y48{bottom:441.986667pt;}
.yac{bottom:446.626667pt;}
.y114{bottom:446.786667pt;}
.y1e{bottom:448.866667pt;}
.y12c{bottom:453.026667pt;}
.yf3{bottom:455.906667pt;}
.y69{bottom:457.986667pt;}
.y47{bottom:460.386667pt;}
.yc9{bottom:461.986667pt;}
.y8b{bottom:462.466667pt;}
.yab{bottom:464.866667pt;}
.y113{bottom:465.186667pt;}
.y1d{bottom:467.266667pt;}
.y12b{bottom:471.426667pt;}
.yf2{bottom:475.106667pt;}
.y68{bottom:476.386667pt;}
.y46{bottom:478.786667pt;}
.yc8{bottom:480.386667pt;}
.y1c{bottom:485.666667pt;}
.yf1{bottom:494.173333pt;}
.y67{bottom:494.813333pt;}
.y8a{bottom:498.653333pt;}
.y112{bottom:499.453333pt;}
.yaa{bottom:500.893333pt;}
.y1b{bottom:504.093333pt;}
.y12a{bottom:505.853333pt;}
.y45{bottom:513.213333pt;}
.yc7{bottom:515.133333pt;}
.y89{bottom:517.053333pt;}
.y111{bottom:517.853333pt;}
.y1a{bottom:522.493333pt;}
.y129{bottom:524.253333pt;}
.y44{bottom:531.453333pt;}
.yf0{bottom:531.613333pt;}
.ya9{bottom:533.213333pt;}
.y88{bottom:535.453333pt;}
.y110{bottom:536.253333pt;}
.y19{bottom:540.893333pt;}
.y128{bottom:542.653333pt;}
.yc6{bottom:547.453333pt;}
.y43{bottom:549.853333pt;}
.ya8{bottom:552.253333pt;}
.y18{bottom:559.293333pt;}
.yc5{bottom:566.493333pt;}
.y42{bottom:568.253333pt;}
.yef{bottom:569.053333pt;}
.y87{bottom:569.853333pt;}
.y10f{bottom:570.653333pt;}
.ya4{bottom:571.293333pt;}
.y127{bottom:577.053333pt;}
.y17{bottom:577.693333pt;}
.yc4{bottom:585.533333pt;}
.y41{bottom:586.653333pt;}
.y86{bottom:588.253333pt;}
.y10e{bottom:589.053333pt;}
.ya6{bottom:590.333333pt;}
.y126{bottom:595.453333pt;}
.y16{bottom:596.093333pt;}
.y66{bottom:602.653333pt;}
.yc3{bottom:604.733333pt;}
.y40{bottom:605.053333pt;}
.yee{bottom:606.493333pt;}
.y85{bottom:606.653333pt;}
.y10d{bottom:607.453333pt;}
.y15{bottom:614.493333pt;}
.y65{bottom:621.053333pt;}
.y84{bottom:625.053333pt;}
.yec{bottom:625.533333pt;}
.y10c{bottom:625.853333pt;}
.ya3{bottom:626.653333pt;}
.y125{bottom:629.853333pt;}
.y14{bottom:632.893333pt;}
.y3f{bottom:639.453333pt;}
.yc2{bottom:640.893333pt;}
.y83{bottom:643.453333pt;}
.y124{bottom:648.253333pt;}
.y3e{bottom:657.853333pt;}
.y10b{bottom:660.253333pt;}
.ya2{bottom:661.213333pt;}
.yeb{bottom:663.133333pt;}
.y13{bottom:667.133333pt;}
.yc1{bottom:675.453333pt;}
.y3d{bottom:676.253333pt;}
.y82{bottom:677.853333pt;}
.y10a{bottom:678.653333pt;}
.ya1{bottom:679.613333pt;}
.y123{bottom:682.653333pt;}
.yc0{bottom:693.853333pt;}
.y3c{bottom:694.653333pt;}
.y81{bottom:696.253333pt;}
.y109{bottom:697.053333pt;}
.ya0{bottom:698.013333pt;}
.ye9{bottom:700.573333pt;}
.y122{bottom:701.053333pt;}
.y12{bottom:702.973333pt;}
.y64{bottom:710.973333pt;}
.ybf{bottom:712.253333pt;}
.y3b{bottom:713.053333pt;}
.y80{bottom:714.653333pt;}
.y108{bottom:715.453333pt;}
.y9f{bottom:716.413333pt;}
.ybe{bottom:730.653333pt;}
.y3a{bottom:731.453333pt;}
.y7f{bottom:733.053333pt;}
.y121{bottom:735.453333pt;}
.ye8{bottom:738.013333pt;}
.y11{bottom:739.453333pt;}
.y63{bottom:746.693333pt;}
.y39{bottom:749.893333pt;}
.y9e{bottom:751.013333pt;}
.y120{bottom:753.893333pt;}
.ye7{bottom:757.093333pt;}
.y10{bottom:759.333333pt;}
.y62{bottom:765.093333pt;}
.y7e{bottom:767.493333pt;}
.y38{bottom:768.293333pt;}
.y13b{bottom:772.293333pt;}
.ye6{bottom:776.133333pt;}
.yf{bottom:779.653333pt;}
.y61{bottom:783.493333pt;}
.y7d{bottom:785.893333pt;}
.y9d{bottom:786.533333pt;}
.y107{bottom:786.693333pt;}
.y11f{bottom:788.293333pt;}
.ye5{bottom:795.173333pt;}
.y60{bottom:801.893333pt;}
.y37{bottom:802.693333pt;}
.y7c{bottom:804.293333pt;}
.y11e{bottom:806.693333pt;}
.ye4{bottom:814.213333pt;}
.ye{bottom:816.773333pt;}
.y5f{bottom:820.293333pt;}
.y36{bottom:821.093333pt;}
.y7b{bottom:822.693333pt;}
.y13a{bottom:825.093333pt;}
.ye3{bottom:833.413333pt;}
.yd{bottom:836.773333pt;}
.ybd{bottom:838.693333pt;}
.y35{bottom:839.493333pt;}
.y9c{bottom:841.093333pt;}
.ye2{bottom:852.453333pt;}
.y5e{bottom:854.693333pt;}
.yb{bottom:856.933333pt;}
.y7a{bottom:857.093333pt;}
.y106{bottom:857.893333pt;}
.y9b{bottom:859.493333pt;}
.yc{bottom:863.653333pt;}
.ye1{bottom:871.493333pt;}
.y5d{bottom:873.093333pt;}
.y34{bottom:873.893333pt;}
.y79{bottom:875.493333pt;}
.y105{bottom:876.293333pt;}
.y139{bottom:877.893333pt;}
.ya{bottom:879.813333pt;}
.ye0{bottom:890.533333pt;}
.y5c{bottom:891.493333pt;}
.y33{bottom:892.293333pt;}
.y78{bottom:893.893333pt;}
.yde{bottom:909.560000pt;}
.ydb{bottom:909.573333pt;}
.y5b{bottom:909.893333pt;}
.y104{bottom:910.533333pt;}
.y32{bottom:910.693333pt;}
.y77{bottom:912.293333pt;}
.y9{bottom:926.373333pt;}
.y5a{bottom:928.293333pt;}
.y31{bottom:929.093333pt;}
.y59{bottom:946.693333pt;}
.yda{bottom:947.013333pt;}
.y30{bottom:947.493333pt;}
.y8{bottom:957.093333pt;}
.y58{bottom:965.093333pt;}
.y2f{bottom:981.733333pt;}
.yd9{bottom:983.333333pt;}
.y57{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h17{height:18.386667pt;}
.h16{height:18.400000pt;}
.h1c{height:18.418667pt;}
.h1b{height:18.420000pt;}
.he{height:24.975000pt;}
.ha{height:32.507812pt;}
.h19{height:36.792000pt;}
.h1a{height:36.800000pt;}
.h6{height:37.116563pt;}
.h15{height:37.440000pt;}
.h4{height:40.163750pt;}
.h12{height:44.468750pt;}
.hf{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.h18{height:55.826667pt;}
.hd{height:62.812500pt;}
.h13{height:64.500000pt;}
.h11{height:65.781915pt;}
.h14{height:66.625000pt;}
.h10{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;}
.w7{width:46.560000pt;}
.w20{width:49.586667pt;}
.w16{width:49.596000pt;}
.w17{width:49.600000pt;}
.w1e{width:49.778667pt;}
.w13{width:49.780000pt;}
.w1f{width:50.066667pt;}
.w14{width:50.076000pt;}
.w15{width:50.080000pt;}
.w1d{width:50.226667pt;}
.w11{width:50.232000pt;}
.w12{width:50.240000pt;}
.w1b{width:50.386667pt;}
.w19{width:50.418667pt;}
.w18{width:50.546667pt;}
.w1a{width:50.866667pt;}
.w9{width:54.706667pt;}
.w8{width:60.832000pt;}
.wa{width:65.266667pt;}
.wc{width:72.800000pt;}
.wd{width:93.312000pt;}
.wf{width:100.466667pt;}
.we{width:100.658667pt;}
.w5{width:108.192000pt;}
.w6{width:120.626667pt;}
.w2{width:121.140000pt;}
.wb{width:124.498667pt;}
.w4{width:148.973333pt;}
.w10{width:419.453333pt;}
.w1c{width:419.773333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x1a{left:9.280000pt;}
.x30{left:11.040000pt;}
.x25{left:12.000000pt;}
.x1c{left:13.266667pt;}
.x1e{left:14.386667pt;}
.x1b{left:16.480000pt;}
.x1d{left:18.546667pt;}
.x2a{left:19.826667pt;}
.x21{left:27.346667pt;}
.x2f{left:34.560000pt;}
.x16{left:36.786667pt;}
.x26{left:38.586667pt;}
.x14{left:42.080000pt;}
.x2{left:49.580000pt;}
.x12{left:83.866667pt;}
.x2b{left:85.920000pt;}
.x1{left:113.472000pt;}
.xf{left:117.792000pt;}
.x10{left:132.352000pt;}
.x9{left:137.786667pt;}
.xd{left:141.786667pt;}
.x4{left:160.346667pt;}
.x3{left:168.346667pt;}
.x2c{left:172.346667pt;}
.x11{left:207.400000pt;}
.x20{left:223.240000pt;}
.xc{left:236.186667pt;}
.x1f{left:302.786667pt;}
.x27{left:304.226667pt;}
.xe{left:305.506667pt;}
.xa{left:313.186667pt;}
.xb{left:327.426667pt;}
.x6{left:336.706667pt;}
.x22{left:348.386667pt;}
.x13{left:357.026667pt;}
.x18{left:404.386667pt;}
.x5{left:406.466667pt;}
.x23{left:421.986667pt;}
.x15{left:465.866667pt;}
.x7{left:469.993333pt;}
.x8{left:476.093333pt;}
.x29{left:506.186667pt;}
.x24{left:515.946667pt;}
.x19{left:521.226667pt;}
.x2e{left:556.586667pt;}
.x28{left:607.306667pt;}
.x2d{left:657.733333pt;}
}




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