
    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_74b0c6b7c348ca9f219d6fac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_11b15d1ad30fbd1bfb30dab6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_004ca4acd23bc5918338af4e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_6c2411705483d20298eeb1bf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.096191;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_030825c3208de91c3408f73f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_4cbc7a78a08bd333ccbc4900.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_2bd6c3e1a4d39a4e47662e69.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_7f6fb78007032d5432583392.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_cf8f43e637de230d37422f6a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.351600px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.345600px;}
.lsb{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.535680px;}
.ls4{letter-spacing:0.708000px;}
.ls8{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.440000px;}
.lse{letter-spacing:2.160000px;}
.ls7{letter-spacing:33.264000px;}
.lsa{letter-spacing:33.276000px;}
.lsc{letter-spacing:63.504000px;}
.ls9{letter-spacing:87.984000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws1{word-spacing:-16.122000px;}
.ws2{word-spacing:-13.074720px;}
.ws6{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._6{width:2.894880px;}
._7{width:4.027680px;}
._b{width:5.506560px;}
._17{width:6.520320px;}
._e{width:7.560000px;}
._f{width:8.560320px;}
._19{width:10.296000px;}
._a{width:12.092640px;}
._9{width:13.429680px;}
._15{width:14.544000px;}
._d{width:16.344000px;}
._1a{width:19.656000px;}
._16{width:20.736000px;}
._c{width:22.104000px;}
._14{width:23.688000px;}
._18{width:25.416000px;}
._1c{width:27.096000px;}
._1b{width:28.812000px;}
._24{width:30.816000px;}
._1d{width:32.184000px;}
._26{width:33.192000px;}
._25{width:34.776000px;}
._27{width:36.216000px;}
._10{width:37.728000px;}
._11{width:38.736000px;}
._1f{width:39.744000px;}
._1e{width:42.408000px;}
._22{width:65.537760px;}
._5{width:107.133120px;}
._23{width:119.295360px;}
._20{width:314.904000px;}
._21{width:324.732000px;}
._13{width:395.333280px;}
._3{width:588.569760px;}
._4{width:1101.485760px;}
._8{width:1647.336000px;}
._12{width:2208.989280px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-4.680000px;}
.y2d{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.880000px;}
.yd{bottom:30.600000px;}
.yb{bottom:57.240000px;}
.y9{bottom:83.556000px;}
.ye0{bottom:110.196000px;}
.y99{bottom:114.516000px;}
.y110{bottom:117.036000px;}
.yff{bottom:117.756000px;}
.yb2{bottom:119.916000px;}
.y155{bottom:122.436000px;}
.yf6{bottom:129.636000px;}
.y140{bottom:131.076000px;}
.y4d{bottom:131.436000px;}
.y120{bottom:134.676000px;}
.y4c{bottom:135.036000px;}
.yca{bottom:138.636000px;}
.y7c{bottom:139.356000px;}
.y6b{bottom:139.716000px;}
.y16f{bottom:140.436000px;}
.y154{bottom:144.036000px;}
.y10f{bottom:147.996000px;}
.y2a{bottom:150.510000px;}
.y185{bottom:153.750000px;}
.y4b{bottom:158.790000px;}
.y98{bottom:160.590000px;}
.yf5{bottom:160.950000px;}
.y13f{bottom:162.390000px;}
.y11f{bottom:165.270000px;}
.ydf{bottom:165.630000px;}
.yfe{bottom:165.990000px;}
.y7b{bottom:166.710000px;}
.yc9{bottom:169.590000px;}
.y6a{bottom:171.030000px;}
.yb1{bottom:173.910000px;}
.y29{bottom:178.950000px;}
.y16e{bottom:182.190000px;}
.y153{bottom:187.230000px;}
.y97{bottom:191.550000px;}
.yf4{bottom:191.910000px;}
.y13e{bottom:193.350000px;}
.y11e{bottom:196.230000px;}
.y69{bottom:202.035000px;}
.y28{bottom:204.195000px;}
.yb0{bottom:204.915000px;}
.y184{bottom:205.995000px;}
.y152{bottom:208.875000px;}
.y4a{bottom:209.955000px;}
.yc8{bottom:215.715000px;}
.yde{bottom:217.875000px;}
.y96{bottom:222.915000px;}
.y16d{bottom:223.995000px;}
.y13d{bottom:224.355000px;}
.y11d{bottom:227.235000px;}
.y151{bottom:230.475000px;}
.y68{bottom:232.995000px;}
.y27{bottom:235.155000px;}
.y49{bottom:241.275000px;}
.ydd{bottom:248.835000px;}
.yaf{bottom:250.995000px;}
.y150{bottom:252.075000px;}
.y95{bottom:253.875000px;}
.y13c{bottom:255.315000px;}
.y11c{bottom:257.835000px;}
.y183{bottom:258.195000px;}
.y10e{bottom:262.155000px;}
.y67{bottom:263.955000px;}
.y16c{bottom:265.395000px;}
.y26{bottom:266.115000px;}
.yc7{bottom:267.195000px;}
.y48{bottom:272.235000px;}
.y14f{bottom:273.675000px;}
.yae{bottom:281.955000px;}
.y94{bottom:284.835000px;}
.yf3{bottom:285.195000px;}
.y13b{bottom:286.635000px;}
.y11b{bottom:288.795000px;}
.y10d{bottom:293.115000px;}
.y66{bottom:295.275000px;}
.y25{bottom:297.435000px;}
.yc6{bottom:298.515000px;}
.ydc{bottom:301.035000px;}
.y182{bottom:301.755000px;}
.y16b{bottom:307.155000px;}
.yad{bottom:313.275000px;}
.y93{bottom:315.795000px;}
.yf2{bottom:316.155000px;}
.y14e{bottom:316.875000px;}
.y13a{bottom:317.595000px;}
.y11a{bottom:319.755000px;}
.y47{bottom:324.105000px;}
.y65{bottom:326.265000px;}
.y24{bottom:328.425000px;}
.y14d{bottom:338.505000px;}
.y181{bottom:343.905000px;}
.yac{bottom:344.265000px;}
.y92{bottom:347.145000px;}
.y139{bottom:348.585000px;}
.y16a{bottom:348.945000px;}
.y119{bottom:350.385000px;}
.y46{bottom:355.425000px;}
.y64{bottom:357.225000px;}
.y23{bottom:359.385000px;}
.y14c{bottom:360.105000px;}
.yc5{bottom:361.545000px;}
.yf1{bottom:368.025000px;}
.ydb{bottom:371.985000px;}
.yab{bottom:375.225000px;}
.y91{bottom:378.105000px;}
.y138{bottom:379.545000px;}
.y118{bottom:381.345000px;}
.y14b{bottom:381.705000px;}
.y180{bottom:385.665000px;}
.y10c{bottom:386.385000px;}
.y63{bottom:388.185000px;}
.y22{bottom:390.345000px;}
.y169{bottom:390.705000px;}
.yda{bottom:403.305000px;}
.y45{bottom:407.265000px;}
.y137{bottom:410.865000px;}
.y117{bottom:411.945000px;}
.yc4{bottom:413.025000px;}
.y10b{bottom:417.345000px;}
.y62{bottom:419.505000px;}
.yf0{bottom:420.225000px;}
.y21{bottom:421.305000px;}
.y90{bottom:424.185000px;}
.y14a{bottom:424.905000px;}
.y17f{bottom:427.425000px;}
.y168{bottom:432.465000px;}
.y44{bottom:438.585000px;}
.y136{bottom:441.825000px;}
.y116{bottom:442.905000px;}
.yc3{bottom:444.345000px;}
.y149{bottom:446.505000px;}
.y10a{bottom:448.665000px;}
.y61{bottom:450.510000px;}
.yef{bottom:451.230000px;}
.yaa{bottom:452.310000px;}
.y20{bottom:452.670000px;}
.y8f{bottom:455.190000px;}
.yd9{bottom:455.550000px;}
.y148{bottom:468.150000px;}
.y17e{bottom:468.870000px;}
.y43{bottom:469.590000px;}
.y135{bottom:472.830000px;}
.y115{bottom:473.910000px;}
.y167{bottom:474.270000px;}
.yc2{bottom:475.350000px;}
.y60{bottom:481.470000px;}
.y1f{bottom:483.630000px;}
.y8e{bottom:486.150000px;}
.y147{bottom:489.750000px;}
.y109{bottom:493.350000px;}
.y42{bottom:500.550000px;}
.yee{bottom:503.430000px;}
.y134{bottom:503.790000px;}
.y17d{bottom:510.630000px;}
.y146{bottom:511.350000px;}
.y5f{bottom:512.430000px;}
.y1e{bottom:514.590000px;}
.y166{bottom:515.670000px;}
.y8d{bottom:517.470000px;}
.yc1{bottom:521.430000px;}
.y114{bottom:524.310000px;}
.yd8{bottom:528.630000px;}
.y41{bottom:531.510000px;}
.y145{bottom:532.950000px;}
.yed{bottom:534.390000px;}
.y133{bottom:535.110000px;}
.y5e{bottom:543.750000px;}
.y108{bottom:545.190000px;}
.y1d{bottom:545.550000px;}
.y8c{bottom:548.430000px;}
.y17c{bottom:552.390000px;}
.y144{bottom:554.550000px;}
.y165{bottom:557.430000px;}
.yc0{bottom:563.550000px;}
.yec{bottom:565.350000px;}
.y132{bottom:566.070000px;}
.y5d{bottom:574.710000px;}
.y143{bottom:576.180000px;}
.ya9{bottom:576.540000px;}
.y1c{bottom:576.900000px;}
.y8b{bottom:579.420000px;}
.yd7{bottom:580.860000px;}
.y40{bottom:583.740000px;}
.yfd{bottom:586.620000px;}
.y17b{bottom:594.180000px;}
.yeb{bottom:596.700000px;}
.y131{bottom:597.060000px;}
.y142{bottom:597.780000px;}
.y164{bottom:599.220000px;}
.y5c{bottom:605.700000px;}
.y107{bottom:607.500000px;}
.y1b{bottom:607.860000px;}
.y8a{bottom:610.380000px;}
.y3f{bottom:614.700000px;}
.yfc{bottom:617.580000px;}
.y7a{bottom:618.660000px;}
.y130{bottom:628.020000px;}
.y1a{bottom:629.820000px;}
.ybf{bottom:633.420000px;}
.y17a{bottom:635.940000px;}
.y5b{bottom:636.660000px;}
.y106{bottom:638.460000px;}
.ya8{bottom:638.820000px;}
.y141{bottom:639.540000px;}
.y163{bottom:640.980000px;}
.y3e{bottom:645.660000px;}
.yea{bottom:648.540000px;}
.y19{bottom:648.900000px;}
.yd6{bottom:649.620000px;}
.y89{bottom:656.460000px;}
.y12f{bottom:659.340000px;}
.ybe{bottom:664.380000px;}
.y5a{bottom:667.980000px;}
.y113{bottom:669.420000px;}
.y79{bottom:670.500000px;}
.y18{bottom:670.860000px;}
.y3d{bottom:676.980000px;}
.y179{bottom:677.340000px;}
.ye9{bottom:679.500000px;}
.yd5{bottom:680.580000px;}
.y162{bottom:682.740000px;}
.ya7{bottom:684.900000px;}
.y88{bottom:687.420000px;}
.y12e{bottom:690.300000px;}
.y105{bottom:690.660000px;}
.y17{bottom:692.460000px;}
.y59{bottom:698.940000px;}
.y112{bottom:700.770000px;}
.y78{bottom:701.490000px;}
.ybd{bottom:706.530000px;}
.y3c{bottom:707.970000px;}
.ye8{bottom:710.850000px;}
.y16{bottom:714.450000px;}
.ya6{bottom:715.890000px;}
.y87{bottom:718.770000px;}
.y178{bottom:719.130000px;}
.y12d{bottom:721.290000px;}
.y104{bottom:721.650000px;}
.y161{bottom:724.530000px;}
.y58{bottom:731.730000px;}
.y77{bottom:732.450000px;}
.yd4{bottom:732.810000px;}
.y15{bottom:736.410000px;}
.y3b{bottom:738.930000px;}
.ye7{bottom:741.810000px;}
.ya5{bottom:746.850000px;}
.y86{bottom:749.730000px;}
.y12c{bottom:752.250000px;}
.y103{bottom:752.610000px;}
.ybc{bottom:756.570000px;}
.y14{bottom:758.010000px;}
.y177{bottom:760.890000px;}
.yfb{bottom:762.690000px;}
.y76{bottom:763.770000px;}
.y160{bottom:765.930000px;}
.y3a{bottom:769.890000px;}
.ye6{bottom:772.770000px;}
.ya4{bottom:777.810000px;}
.yd3{bottom:779.250000px;}
.y13{bottom:779.970000px;}
.y85{bottom:780.690000px;}
.y12b{bottom:783.210000px;}
.y57{bottom:783.930000px;}
.yfa{bottom:793.650000px;}
.y75{bottom:794.730000px;}
.y39{bottom:801.210000px;}
.ybb{bottom:802.650000px;}
.ye5{bottom:803.730000px;}
.y15f{bottom:807.690000px;}
.ya3{bottom:809.130000px;}
.y12{bottom:810.930000px;}
.y12a{bottom:814.530000px;}
.y56{bottom:814.890000px;}
.yf9{bottom:824.970000px;}
.y74{bottom:825.690000px;}
.y84{bottom:826.815000px;}
.yd2{bottom:828.615000px;}
.ye4{bottom:835.095000px;}
.y102{bottom:835.815000px;}
.ya2{bottom:840.135000px;}
.y176{bottom:844.455000px;}
.y11{bottom:845.535000px;}
.y55{bottom:845.895000px;}
.y15e{bottom:849.495000px;}
.yba{bottom:852.375000px;}
.y38{bottom:853.095000px;}
.yf8{bottom:855.975000px;}
.y73{bottom:856.695000px;}
.y83{bottom:857.775000px;}
.yd1{bottom:859.575000px;}
.y101{bottom:866.775000px;}
.ya1{bottom:871.095000px;}
.y129{bottom:876.495000px;}
.y111{bottom:876.855000px;}
.y37{bottom:884.055000px;}
.y175{bottom:886.215000px;}
.ye3{bottom:886.935000px;}
.y72{bottom:888.015000px;}
.y10{bottom:888.735000px;}
.y82{bottom:889.095000px;}
.y15d{bottom:891.255000px;}
.y54{bottom:898.095000px;}
.yb9{bottom:901.695000px;}
.y128{bottom:907.455000px;}
.yd0{bottom:911.055000px;}
.y36{bottom:915.375000px;}
.ya0{bottom:917.175000px;}
.y71{bottom:918.975000px;}
.y81{bottom:920.055000px;}
.y174{bottom:927.615000px;}
.y53{bottom:929.055000px;}
.yf{bottom:932.295000px;}
.yb8{bottom:932.655000px;}
.y15c{bottom:933.015000px;}
.y127{bottom:938.775000px;}
.ye2{bottom:939.135000px;}
.y9f{bottom:948.135000px;}
.y70{bottom:949.935000px;}
.y52{bottom:960.045000px;}
.ycf{bottom:962.925000px;}
.yb7{bottom:963.645000px;}
.y80{bottom:966.165000px;}
.ye{bottom:966.885000px;}
.y34{bottom:967.245000px;}
.y173{bottom:969.405000px;}
.y126{bottom:969.765000px;}
.yf7{bottom:970.125000px;}
.y35{bottom:974.085000px;}
.y15b{bottom:974.805000px;}
.y9e{bottom:979.485000px;}
.y6f{bottom:980.925000px;}
.y51{bottom:991.005000px;}
.yce{bottom:994.245000px;}
.yb6{bottom:994.605000px;}
.y7f{bottom:997.125000px;}
.y33{bottom:998.205000px;}
.y8{bottom:999.285000px;}
.y125{bottom:1000.725000px;}
.y9d{bottom:1010.445000px;}
.y172{bottom:1011.165000px;}
.y6e{bottom:1012.245000px;}
.y7{bottom:1019.445000px;}
.y50{bottom:1022.325000px;}
.y15a{bottom:1026.645000px;}
.y7e{bottom:1028.085000px;}
.y32{bottom:1029.525000px;}
.y124{bottom:1032.045000px;}
.ycd{bottom:1040.325000px;}
.yb5{bottom:1040.685000px;}
.y9c{bottom:1041.405000px;}
.y6d{bottom:1043.205000px;}
.y6{bottom:1049.685000px;}
.y171{bottom:1052.925000px;}
.y4f{bottom:1053.285000px;}
.y7d{bottom:1059.045000px;}
.y31{bottom:1060.485000px;}
.y159{bottom:1071.645000px;}
.y9b{bottom:1072.365000px;}
.y6c{bottom:1074.165000px;}
.y5{bottom:1075.245000px;}
.y123{bottom:1075.965000px;}
.yb4{bottom:1082.850000px;}
.ye1{bottom:1084.290000px;}
.ycc{bottom:1086.090000px;}
.y30{bottom:1091.490000px;}
.y170{bottom:1094.730000px;}
.y158{bottom:1097.610000px;}
.y9a{bottom:1103.370000px;}
.y4e{bottom:1105.170000px;}
.y122{bottom:1106.970000px;}
.y157{bottom:1119.210000px;}
.ycb{bottom:1128.570000px;}
.y4{bottom:1129.290000px;}
.yb3{bottom:1133.250000px;}
.y100{bottom:1136.130000px;}
.y2f{bottom:1136.490000px;}
.y121{bottom:1137.930000px;}
.y156{bottom:1140.810000px;}
.y3{bottom:1146.930000px;}
.y2e{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y2c{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y2b{bottom:1193.730000px;}
.h6{height:7.920000px;}
.h10{height:8.640000px;}
.h8{height:15.516000px;}
.h13{height:35.806641px;}
.h4{height:41.547656px;}
.h12{height:41.696016px;}
.h7{height:48.013594px;}
.hc{height:48.601406px;}
.h3{height:52.686563px;}
.h11{height:54.426094px;}
.hb{height:58.121719px;}
.ha{height:58.833281px;}
.h2{height:59.871094px;}
.he{height:63.175781px;}
.hd{height:63.949219px;}
.h5{height:65.884219px;}
.hf{height:67.824844px;}
.h14{height:71.613281px;}
.h9{height:106.155703px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:119.196000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w5{width:637.095000px;}
.w1{width:892.500000px;}
.w7{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.xc{left:68.436000px;}
.x24{left:79.235987px;}
.x4{left:97.596000px;}
.xe{left:100.475987px;}
.x1{left:106.235987px;}
.x12{left:110.915987px;}
.x13{left:122.795987px;}
.x16{left:133.271987px;}
.x7{left:144.071987px;}
.x8{left:184.394987px;}
.xb{left:194.834987px;}
.x21{left:207.434987px;}
.x22{left:213.554987px;}
.x20{left:218.594987px;}
.x2{left:228.344987px;}
.x1b{left:232.304987px;}
.x15{left:234.464987px;}
.x1e{left:243.464987px;}
.x17{left:272.624987px;}
.xa{left:286.664987px;}
.x1f{left:304.304987px;}
.x6{left:312.990000px;}
.x11{left:322.349987px;}
.x1a{left:324.509987px;}
.x1c{left:340.349987px;}
.xf{left:346.829973px;}
.x10{left:352.949987px;}
.x9{left:354.749987px;}
.x18{left:371.669987px;}
.x1d{left:412.379987px;}
.x19{left:414.539987px;}
.x3{left:446.579987px;}
.xd{left:705.525000px;}
.x14{left:750.929987px;}
.x23{left:808.529987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.312533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.307200pt;}
.lsb{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.476160pt;}
.ls4{letter-spacing:0.629333pt;}
.ls8{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.920000pt;}
.ls7{letter-spacing:29.568000pt;}
.lsa{letter-spacing:29.578667pt;}
.lsc{letter-spacing:56.448000pt;}
.ls9{letter-spacing:78.208000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws1{word-spacing:-14.330667pt;}
.ws2{word-spacing:-11.621973pt;}
.ws6{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._6{width:2.573227pt;}
._7{width:3.580160pt;}
._b{width:4.894720pt;}
._17{width:5.795840pt;}
._e{width:6.720000pt;}
._f{width:7.609173pt;}
._19{width:9.152000pt;}
._a{width:10.749013pt;}
._9{width:11.937493pt;}
._15{width:12.928000pt;}
._d{width:14.528000pt;}
._1a{width:17.472000pt;}
._16{width:18.432000pt;}
._c{width:19.648000pt;}
._14{width:21.056000pt;}
._18{width:22.592000pt;}
._1c{width:24.085333pt;}
._1b{width:25.610667pt;}
._24{width:27.392000pt;}
._1d{width:28.608000pt;}
._26{width:29.504000pt;}
._25{width:30.912000pt;}
._27{width:32.192000pt;}
._10{width:33.536000pt;}
._11{width:34.432000pt;}
._1f{width:35.328000pt;}
._1e{width:37.696000pt;}
._22{width:58.255787pt;}
._5{width:95.229440pt;}
._23{width:106.040320pt;}
._20{width:279.914667pt;}
._21{width:288.650667pt;}
._13{width:351.407360pt;}
._3{width:523.173120pt;}
._4{width:979.098453pt;}
._8{width:1464.298667pt;}
._12{width:1963.546027pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-4.160000pt;}
.y2d{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.560000pt;}
.yd{bottom:27.200000pt;}
.yb{bottom:50.880000pt;}
.y9{bottom:74.272000pt;}
.ye0{bottom:97.952000pt;}
.y99{bottom:101.792000pt;}
.y110{bottom:104.032000pt;}
.yff{bottom:104.672000pt;}
.yb2{bottom:106.592000pt;}
.y155{bottom:108.832000pt;}
.yf6{bottom:115.232000pt;}
.y140{bottom:116.512000pt;}
.y4d{bottom:116.832000pt;}
.y120{bottom:119.712000pt;}
.y4c{bottom:120.032000pt;}
.yca{bottom:123.232000pt;}
.y7c{bottom:123.872000pt;}
.y6b{bottom:124.192000pt;}
.y16f{bottom:124.832000pt;}
.y154{bottom:128.032000pt;}
.y10f{bottom:131.552000pt;}
.y2a{bottom:133.786667pt;}
.y185{bottom:136.666667pt;}
.y4b{bottom:141.146667pt;}
.y98{bottom:142.746667pt;}
.yf5{bottom:143.066667pt;}
.y13f{bottom:144.346667pt;}
.y11f{bottom:146.906667pt;}
.ydf{bottom:147.226667pt;}
.yfe{bottom:147.546667pt;}
.y7b{bottom:148.186667pt;}
.yc9{bottom:150.746667pt;}
.y6a{bottom:152.026667pt;}
.yb1{bottom:154.586667pt;}
.y29{bottom:159.066667pt;}
.y16e{bottom:161.946667pt;}
.y153{bottom:166.426667pt;}
.y97{bottom:170.266667pt;}
.yf4{bottom:170.586667pt;}
.y13e{bottom:171.866667pt;}
.y11e{bottom:174.426667pt;}
.y69{bottom:179.586667pt;}
.y28{bottom:181.506667pt;}
.yb0{bottom:182.146667pt;}
.y184{bottom:183.106667pt;}
.y152{bottom:185.666667pt;}
.y4a{bottom:186.626667pt;}
.yc8{bottom:191.746667pt;}
.yde{bottom:193.666667pt;}
.y96{bottom:198.146667pt;}
.y16d{bottom:199.106667pt;}
.y13d{bottom:199.426667pt;}
.y11d{bottom:201.986667pt;}
.y151{bottom:204.866667pt;}
.y68{bottom:207.106667pt;}
.y27{bottom:209.026667pt;}
.y49{bottom:214.466667pt;}
.ydd{bottom:221.186667pt;}
.yaf{bottom:223.106667pt;}
.y150{bottom:224.066667pt;}
.y95{bottom:225.666667pt;}
.y13c{bottom:226.946667pt;}
.y11c{bottom:229.186667pt;}
.y183{bottom:229.506667pt;}
.y10e{bottom:233.026667pt;}
.y67{bottom:234.626667pt;}
.y16c{bottom:235.906667pt;}
.y26{bottom:236.546667pt;}
.yc7{bottom:237.506667pt;}
.y48{bottom:241.986667pt;}
.y14f{bottom:243.266667pt;}
.yae{bottom:250.626667pt;}
.y94{bottom:253.186667pt;}
.yf3{bottom:253.506667pt;}
.y13b{bottom:254.786667pt;}
.y11b{bottom:256.706667pt;}
.y10d{bottom:260.546667pt;}
.y66{bottom:262.466667pt;}
.y25{bottom:264.386667pt;}
.yc6{bottom:265.346667pt;}
.ydc{bottom:267.586667pt;}
.y182{bottom:268.226667pt;}
.y16b{bottom:273.026667pt;}
.yad{bottom:278.466667pt;}
.y93{bottom:280.706667pt;}
.yf2{bottom:281.026667pt;}
.y14e{bottom:281.666667pt;}
.y13a{bottom:282.306667pt;}
.y11a{bottom:284.226667pt;}
.y47{bottom:288.093333pt;}
.y65{bottom:290.013333pt;}
.y24{bottom:291.933333pt;}
.y14d{bottom:300.893333pt;}
.y181{bottom:305.693333pt;}
.yac{bottom:306.013333pt;}
.y92{bottom:308.573333pt;}
.y139{bottom:309.853333pt;}
.y16a{bottom:310.173333pt;}
.y119{bottom:311.453333pt;}
.y46{bottom:315.933333pt;}
.y64{bottom:317.533333pt;}
.y23{bottom:319.453333pt;}
.y14c{bottom:320.093333pt;}
.yc5{bottom:321.373333pt;}
.yf1{bottom:327.133333pt;}
.ydb{bottom:330.653333pt;}
.yab{bottom:333.533333pt;}
.y91{bottom:336.093333pt;}
.y138{bottom:337.373333pt;}
.y118{bottom:338.973333pt;}
.y14b{bottom:339.293333pt;}
.y180{bottom:342.813333pt;}
.y10c{bottom:343.453333pt;}
.y63{bottom:345.053333pt;}
.y22{bottom:346.973333pt;}
.y169{bottom:347.293333pt;}
.yda{bottom:358.493333pt;}
.y45{bottom:362.013333pt;}
.y137{bottom:365.213333pt;}
.y117{bottom:366.173333pt;}
.yc4{bottom:367.133333pt;}
.y10b{bottom:370.973333pt;}
.y62{bottom:372.893333pt;}
.yf0{bottom:373.533333pt;}
.y21{bottom:374.493333pt;}
.y90{bottom:377.053333pt;}
.y14a{bottom:377.693333pt;}
.y17f{bottom:379.933333pt;}
.y168{bottom:384.413333pt;}
.y44{bottom:389.853333pt;}
.y136{bottom:392.733333pt;}
.y116{bottom:393.693333pt;}
.yc3{bottom:394.973333pt;}
.y149{bottom:396.893333pt;}
.y10a{bottom:398.813333pt;}
.y61{bottom:400.453333pt;}
.yef{bottom:401.093333pt;}
.yaa{bottom:402.053333pt;}
.y20{bottom:402.373333pt;}
.y8f{bottom:404.613333pt;}
.yd9{bottom:404.933333pt;}
.y148{bottom:416.133333pt;}
.y17e{bottom:416.773333pt;}
.y43{bottom:417.413333pt;}
.y135{bottom:420.293333pt;}
.y115{bottom:421.253333pt;}
.y167{bottom:421.573333pt;}
.yc2{bottom:422.533333pt;}
.y60{bottom:427.973333pt;}
.y1f{bottom:429.893333pt;}
.y8e{bottom:432.133333pt;}
.y147{bottom:435.333333pt;}
.y109{bottom:438.533333pt;}
.y42{bottom:444.933333pt;}
.yee{bottom:447.493333pt;}
.y134{bottom:447.813333pt;}
.y17d{bottom:453.893333pt;}
.y146{bottom:454.533333pt;}
.y5f{bottom:455.493333pt;}
.y1e{bottom:457.413333pt;}
.y166{bottom:458.373333pt;}
.y8d{bottom:459.973333pt;}
.yc1{bottom:463.493333pt;}
.y114{bottom:466.053333pt;}
.yd8{bottom:469.893333pt;}
.y41{bottom:472.453333pt;}
.y145{bottom:473.733333pt;}
.yed{bottom:475.013333pt;}
.y133{bottom:475.653333pt;}
.y5e{bottom:483.333333pt;}
.y108{bottom:484.613333pt;}
.y1d{bottom:484.933333pt;}
.y8c{bottom:487.493333pt;}
.y17c{bottom:491.013333pt;}
.y144{bottom:492.933333pt;}
.y165{bottom:495.493333pt;}
.yc0{bottom:500.933333pt;}
.yec{bottom:502.533333pt;}
.y132{bottom:503.173333pt;}
.y5d{bottom:510.853333pt;}
.y143{bottom:512.160000pt;}
.ya9{bottom:512.480000pt;}
.y1c{bottom:512.800000pt;}
.y8b{bottom:515.040000pt;}
.yd7{bottom:516.320000pt;}
.y40{bottom:518.880000pt;}
.yfd{bottom:521.440000pt;}
.y17b{bottom:528.160000pt;}
.yeb{bottom:530.400000pt;}
.y131{bottom:530.720000pt;}
.y142{bottom:531.360000pt;}
.y164{bottom:532.640000pt;}
.y5c{bottom:538.400000pt;}
.y107{bottom:540.000000pt;}
.y1b{bottom:540.320000pt;}
.y8a{bottom:542.560000pt;}
.y3f{bottom:546.400000pt;}
.yfc{bottom:548.960000pt;}
.y7a{bottom:549.920000pt;}
.y130{bottom:558.240000pt;}
.y1a{bottom:559.840000pt;}
.ybf{bottom:563.040000pt;}
.y17a{bottom:565.280000pt;}
.y5b{bottom:565.920000pt;}
.y106{bottom:567.520000pt;}
.ya8{bottom:567.840000pt;}
.y141{bottom:568.480000pt;}
.y163{bottom:569.760000pt;}
.y3e{bottom:573.920000pt;}
.yea{bottom:576.480000pt;}
.y19{bottom:576.800000pt;}
.yd6{bottom:577.440000pt;}
.y89{bottom:583.520000pt;}
.y12f{bottom:586.080000pt;}
.ybe{bottom:590.560000pt;}
.y5a{bottom:593.760000pt;}
.y113{bottom:595.040000pt;}
.y79{bottom:596.000000pt;}
.y18{bottom:596.320000pt;}
.y3d{bottom:601.760000pt;}
.y179{bottom:602.080000pt;}
.ye9{bottom:604.000000pt;}
.yd5{bottom:604.960000pt;}
.y162{bottom:606.880000pt;}
.ya7{bottom:608.800000pt;}
.y88{bottom:611.040000pt;}
.y12e{bottom:613.600000pt;}
.y105{bottom:613.920000pt;}
.y17{bottom:615.520000pt;}
.y59{bottom:621.280000pt;}
.y112{bottom:622.906667pt;}
.y78{bottom:623.546667pt;}
.ybd{bottom:628.026667pt;}
.y3c{bottom:629.306667pt;}
.ye8{bottom:631.866667pt;}
.y16{bottom:635.066667pt;}
.ya6{bottom:636.346667pt;}
.y87{bottom:638.906667pt;}
.y178{bottom:639.226667pt;}
.y12d{bottom:641.146667pt;}
.y104{bottom:641.466667pt;}
.y161{bottom:644.026667pt;}
.y58{bottom:650.426667pt;}
.y77{bottom:651.066667pt;}
.yd4{bottom:651.386667pt;}
.y15{bottom:654.586667pt;}
.y3b{bottom:656.826667pt;}
.ye7{bottom:659.386667pt;}
.ya5{bottom:663.866667pt;}
.y86{bottom:666.426667pt;}
.y12c{bottom:668.666667pt;}
.y103{bottom:668.986667pt;}
.ybc{bottom:672.506667pt;}
.y14{bottom:673.786667pt;}
.y177{bottom:676.346667pt;}
.yfb{bottom:677.946667pt;}
.y76{bottom:678.906667pt;}
.y160{bottom:680.826667pt;}
.y3a{bottom:684.346667pt;}
.ye6{bottom:686.906667pt;}
.ya4{bottom:691.386667pt;}
.yd3{bottom:692.666667pt;}
.y13{bottom:693.306667pt;}
.y85{bottom:693.946667pt;}
.y12b{bottom:696.186667pt;}
.y57{bottom:696.826667pt;}
.yfa{bottom:705.466667pt;}
.y75{bottom:706.426667pt;}
.y39{bottom:712.186667pt;}
.ybb{bottom:713.466667pt;}
.ye5{bottom:714.426667pt;}
.y15f{bottom:717.946667pt;}
.ya3{bottom:719.226667pt;}
.y12{bottom:720.826667pt;}
.y12a{bottom:724.026667pt;}
.y56{bottom:724.346667pt;}
.yf9{bottom:733.306667pt;}
.y74{bottom:733.946667pt;}
.y84{bottom:734.946667pt;}
.yd2{bottom:736.546667pt;}
.ye4{bottom:742.306667pt;}
.y102{bottom:742.946667pt;}
.ya2{bottom:746.786667pt;}
.y176{bottom:750.626667pt;}
.y11{bottom:751.586667pt;}
.y55{bottom:751.906667pt;}
.y15e{bottom:755.106667pt;}
.yba{bottom:757.666667pt;}
.y38{bottom:758.306667pt;}
.yf8{bottom:760.866667pt;}
.y73{bottom:761.506667pt;}
.y83{bottom:762.466667pt;}
.yd1{bottom:764.066667pt;}
.y101{bottom:770.466667pt;}
.ya1{bottom:774.306667pt;}
.y129{bottom:779.106667pt;}
.y111{bottom:779.426667pt;}
.y37{bottom:785.826667pt;}
.y175{bottom:787.746667pt;}
.ye3{bottom:788.386667pt;}
.y72{bottom:789.346667pt;}
.y10{bottom:789.986667pt;}
.y82{bottom:790.306667pt;}
.y15d{bottom:792.226667pt;}
.y54{bottom:798.306667pt;}
.yb9{bottom:801.506667pt;}
.y128{bottom:806.626667pt;}
.yd0{bottom:809.826667pt;}
.y36{bottom:813.666667pt;}
.ya0{bottom:815.266667pt;}
.y71{bottom:816.866667pt;}
.y81{bottom:817.826667pt;}
.y174{bottom:824.546667pt;}
.y53{bottom:825.826667pt;}
.yf{bottom:828.706667pt;}
.yb8{bottom:829.026667pt;}
.y15c{bottom:829.346667pt;}
.y127{bottom:834.466667pt;}
.ye2{bottom:834.786667pt;}
.y9f{bottom:842.786667pt;}
.y70{bottom:844.386667pt;}
.y52{bottom:853.373333pt;}
.ycf{bottom:855.933333pt;}
.yb7{bottom:856.573333pt;}
.y80{bottom:858.813333pt;}
.ye{bottom:859.453333pt;}
.y34{bottom:859.773333pt;}
.y173{bottom:861.693333pt;}
.y126{bottom:862.013333pt;}
.yf7{bottom:862.333333pt;}
.y35{bottom:865.853333pt;}
.y15b{bottom:866.493333pt;}
.y9e{bottom:870.653333pt;}
.y6f{bottom:871.933333pt;}
.y51{bottom:880.893333pt;}
.yce{bottom:883.773333pt;}
.yb6{bottom:884.093333pt;}
.y7f{bottom:886.333333pt;}
.y33{bottom:887.293333pt;}
.y8{bottom:888.253333pt;}
.y125{bottom:889.533333pt;}
.y9d{bottom:898.173333pt;}
.y172{bottom:898.813333pt;}
.y6e{bottom:899.773333pt;}
.y7{bottom:906.173333pt;}
.y50{bottom:908.733333pt;}
.y15a{bottom:912.573333pt;}
.y7e{bottom:913.853333pt;}
.y32{bottom:915.133333pt;}
.y124{bottom:917.373333pt;}
.ycd{bottom:924.733333pt;}
.yb5{bottom:925.053333pt;}
.y9c{bottom:925.693333pt;}
.y6d{bottom:927.293333pt;}
.y6{bottom:933.053333pt;}
.y171{bottom:935.933333pt;}
.y4f{bottom:936.253333pt;}
.y7d{bottom:941.373333pt;}
.y31{bottom:942.653333pt;}
.y159{bottom:952.573333pt;}
.y9b{bottom:953.213333pt;}
.y6c{bottom:954.813333pt;}
.y5{bottom:955.773333pt;}
.y123{bottom:956.413333pt;}
.yb4{bottom:962.533333pt;}
.ye1{bottom:963.813333pt;}
.ycc{bottom:965.413333pt;}
.y30{bottom:970.213333pt;}
.y170{bottom:973.093333pt;}
.y158{bottom:975.653333pt;}
.y9a{bottom:980.773333pt;}
.y4e{bottom:982.373333pt;}
.y122{bottom:983.973333pt;}
.y157{bottom:994.853333pt;}
.ycb{bottom:1003.173333pt;}
.y4{bottom:1003.813333pt;}
.yb3{bottom:1007.333333pt;}
.y100{bottom:1009.893333pt;}
.y2f{bottom:1010.213333pt;}
.y121{bottom:1011.493333pt;}
.y156{bottom:1014.053333pt;}
.y3{bottom:1019.493333pt;}
.y2e{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y2c{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y2b{bottom:1061.093333pt;}
.h6{height:7.040000pt;}
.h10{height:7.680000pt;}
.h8{height:13.792000pt;}
.h13{height:31.828125pt;}
.h4{height:36.931250pt;}
.h12{height:37.063125pt;}
.h7{height:42.678750pt;}
.hc{height:43.201250pt;}
.h3{height:46.832500pt;}
.h11{height:48.378750pt;}
.hb{height:51.663750pt;}
.ha{height:52.296250pt;}
.h2{height:53.218750pt;}
.he{height:56.156250pt;}
.hd{height:56.843750pt;}
.h5{height:58.563750pt;}
.hf{height:60.288750pt;}
.h14{height:63.656250pt;}
.h9{height:94.360625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:105.952000pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w5{width:566.306667pt;}
.w1{width:793.333333pt;}
.w7{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.xc{left:60.832000pt;}
.x24{left:70.431988pt;}
.x4{left:86.752000pt;}
.xe{left:89.311988pt;}
.x1{left:94.431988pt;}
.x12{left:98.591988pt;}
.x13{left:109.151988pt;}
.x16{left:118.463988pt;}
.x7{left:128.063988pt;}
.x8{left:163.906655pt;}
.xb{left:173.186655pt;}
.x21{left:184.386655pt;}
.x22{left:189.826655pt;}
.x20{left:194.306655pt;}
.x2{left:202.973322pt;}
.x1b{left:206.493322pt;}
.x15{left:208.413322pt;}
.x1e{left:216.413322pt;}
.x17{left:242.333322pt;}
.xa{left:254.813322pt;}
.x1f{left:270.493322pt;}
.x6{left:278.213333pt;}
.x11{left:286.533322pt;}
.x1a{left:288.453322pt;}
.x1c{left:302.533322pt;}
.xf{left:308.293310pt;}
.x10{left:313.733322pt;}
.x9{left:315.333322pt;}
.x18{left:330.373322pt;}
.x1d{left:366.559988pt;}
.x19{left:368.479988pt;}
.x3{left:396.959988pt;}
.xd{left:627.133333pt;}
.x14{left:667.493322pt;}
.x23{left:718.693322pt;}
}




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