
    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_45be7183d39ef9dd2e56f0a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_97e7e366e941b291cf60d7df.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_207c9bc3681c2296b877bc5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_ff5bf3254e504b3abfc29e47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_5d0dba49681aae935508891d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_e3b362be2a094eb3e5f0c22a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c2c7b284ac2c5c24c8921994.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_b8f7db6d91cc5a952546f10c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_51ce67e12675ee71a5b12170.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_91c4b9b0c83c1c054166f1d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c705e57a212347fc19fec11e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bf67e59180b81c3186e31035.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_93e7fa301a39207263b1a892.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4300764d3125009f2aecd133.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls13{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.127200px;}
.lsd{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls14{letter-spacing:0.235920px;}
.ls11{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls12{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-4.356000px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._4{width:2.155440px;}
._11{width:3.170880px;}
._12{width:4.422240px;}
._15{width:5.521920px;}
._10{width:6.622800px;}
._f{width:7.948080px;}
._13{width:9.002640px;}
._9{width:10.398240px;}
._8{width:11.491920px;}
._6{width:12.770640px;}
._5{width:13.830480px;}
._19{width:16.908240px;}
._7{width:18.096720px;}
._14{width:19.214640px;}
._a{width:20.653200px;}
._e{width:21.882240px;}
._d{width:23.056800px;}
._18{width:24.182160px;}
._28{width:26.463120px;}
._17{width:30.666960px;}
._16{width:31.852080px;}
._29{width:33.043680px;}
._25{width:35.318160px;}
._24{width:36.334080px;}
._21{width:38.126880px;}
._b{width:42.956880px;}
._c{width:44.194320px;}
._26{width:46.433520px;}
._20{width:58.146480px;}
._23{width:71.054640px;}
._1a{width:74.341440px;}
._1b{width:75.775680px;}
._1f{width:88.385040px;}
._1c{width:99.141840px;}
._22{width:148.313760px;}
._1e{width:167.268240px;}
._1d{width:168.582960px;}
._27{width:189.080640px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.yd2{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.yf{bottom:9.540000px;}
.y1b{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y4a{bottom:14.940000px;}
.yad{bottom:17.100000px;}
.y9f{bottom:17.274000px;}
.y5{bottom:17.280000px;}
.y49{bottom:18.000000px;}
.y3{bottom:20.160000px;}
.y46{bottom:20.340000px;}
.y117{bottom:20.385000px;}
.y109{bottom:20.514000px;}
.ycb{bottom:20.520000px;}
.y19{bottom:23.985000px;}
.yc{bottom:30.240000px;}
.y10f{bottom:34.380000px;}
.y10a{bottom:34.554000px;}
.y115{bottom:34.560000px;}
.y45{bottom:37.620000px;}
.y18{bottom:40.365000px;}
.yb{bottom:46.440000px;}
.y44{bottom:54.900000px;}
.y17{bottom:56.925000px;}
.y6{bottom:58.680000px;}
.y16{bottom:69.345000px;}
.y43{bottom:72.180000px;}
.ya{bottom:73.290000px;}
.y2{bottom:81.216000px;}
.y15{bottom:83.925000px;}
.y42{bottom:89.460000px;}
.y9{bottom:92.910000px;}
.y14{bottom:99.225000px;}
.y41{bottom:106.560000px;}
.y8{bottom:111.270000px;}
.y13{bottom:118.305000px;}
.y40{bottom:123.840000px;}
.ydd{bottom:125.136000px;}
.ya0{bottom:126.396000px;}
.y57{bottom:128.196000px;}
.y108{bottom:131.616000px;}
.y94{bottom:137.916000px;}
.y3f{bottom:141.120000px;}
.ydc{bottom:142.416000px;}
.y12{bottom:144.045000px;}
.y9e{bottom:144.396000px;}
.y140{bottom:144.576000px;}
.y56{bottom:145.476000px;}
.y2d{bottom:149.940000px;}
.y93{bottom:155.010000px;}
.y3e{bottom:158.400000px;}
.ydb{bottom:159.510000px;}
.y13f{bottom:161.850000px;}
.y9d{bottom:162.390000px;}
.y55{bottom:162.750000px;}
.y2c{bottom:165.240000px;}
.y107{bottom:166.890000px;}
.y11{bottom:168.345000px;}
.y92{bottom:172.290000px;}
.yda{bottom:174.270000px;}
.y3d{bottom:175.680000px;}
.y13e{bottom:179.130000px;}
.y54{bottom:180.030000px;}
.y9c{bottom:180.390000px;}
.y2b{bottom:182.880000px;}
.y91{bottom:189.570000px;}
.y3c{bottom:192.960000px;}
.y13d{bottom:196.410000px;}
.y53{bottom:197.130000px;}
.y9b{bottom:198.390000px;}
.y2a{bottom:200.160000px;}
.y106{bottom:205.410000px;}
.y90{bottom:206.850000px;}
.yd9{bottom:209.550000px;}
.y3b{bottom:210.060000px;}
.y13c{bottom:213.510000px;}
.y52{bottom:214.410000px;}
.y9a{bottom:216.390000px;}
.y29{bottom:217.440000px;}
.y105{bottom:222.510000px;}
.y8f{bottom:224.130000px;}
.y3a{bottom:227.370000px;}
.yd8{bottom:227.550000px;}
.y13b{bottom:230.790000px;}
.y51{bottom:231.690000px;}
.y99{bottom:234.390000px;}
.y28{bottom:235.290000px;}
.y104{bottom:239.790000px;}
.y8e{bottom:241.410000px;}
.y39{bottom:244.650000px;}
.yd7{bottom:245.550000px;}
.y13a{bottom:248.070000px;}
.y50{bottom:248.970000px;}
.y98{bottom:252.390000px;}
.y27{bottom:252.570000px;}
.y103{bottom:254.550000px;}
.y8d{bottom:258.510000px;}
.y38{bottom:261.930000px;}
.yd6{bottom:263.550000px;}
.y139{bottom:265.350000px;}
.y4f{bottom:266.250000px;}
.y26{bottom:270.030000px;}
.y97{bottom:270.390000px;}
.y102{bottom:272.550000px;}
.y8c{bottom:275.790000px;}
.y37{bottom:279.210000px;}
.yd5{bottom:281.550000px;}
.y138{bottom:282.630000px;}
.y4e{bottom:283.350000px;}
.y25{bottom:287.310000px;}
.y96{bottom:288.390000px;}
.y101{bottom:290.550000px;}
.y8b{bottom:293.070000px;}
.y36{bottom:296.490000px;}
.yd4{bottom:299.550000px;}
.y137{bottom:299.910000px;}
.y4d{bottom:300.630000px;}
.y24{bottom:304.770000px;}
.y95{bottom:306.390000px;}
.y100{bottom:308.550000px;}
.y8a{bottom:310.350000px;}
.y35{bottom:313.590000px;}
.y136{bottom:317.010000px;}
.yd3{bottom:317.550000px;}
.y4c{bottom:317.910000px;}
.y23{bottom:322.230000px;}
.yff{bottom:326.550000px;}
.y89{bottom:327.630000px;}
.y34{bottom:330.870000px;}
.y135{bottom:334.290000px;}
.y4b{bottom:335.190000px;}
.yd1{bottom:335.550000px;}
.y22{bottom:339.510000px;}
.yfe{bottom:344.595000px;}
.y88{bottom:344.775000px;}
.y33{bottom:348.150000px;}
.y48{bottom:349.275000px;}
.y134{bottom:351.615000px;}
.yd0{bottom:353.595000px;}
.y21{bottom:356.970000px;}
.y87{bottom:362.055000px;}
.yfd{bottom:362.595000px;}
.y32{bottom:365.430000px;}
.y133{bottom:368.895000px;}
.ycf{bottom:371.595000px;}
.y20{bottom:374.430000px;}
.y1c{bottom:378.615000px;}
.y86{bottom:379.335000px;}
.yfc{bottom:380.595000px;}
.y31{bottom:382.710000px;}
.y132{bottom:386.175000px;}
.yce{bottom:389.595000px;}
.y1f{bottom:391.890000px;}
.y85{bottom:396.615000px;}
.yfb{bottom:398.595000px;}
.y30{bottom:399.990000px;}
.y131{bottom:403.275000px;}
.ycd{bottom:407.595000px;}
.y84{bottom:413.895000px;}
.yfa{bottom:416.595000px;}
.y2f{bottom:417.090000px;}
.y1e{bottom:419.430000px;}
.y130{bottom:420.555000px;}
.ycc{bottom:425.595000px;}
.y83{bottom:431.175000px;}
.y2e{bottom:434.370000px;}
.yf9{bottom:434.595000px;}
.y1d{bottom:437.070000px;}
.y12f{bottom:437.835000px;}
.yca{bottom:443.595000px;}
.y82{bottom:448.275000px;}
.y12e{bottom:455.115000px;}
.y81{bottom:465.555000px;}
.y12d{bottom:472.395000px;}
.yf8{bottom:473.115000px;}
.yc9{bottom:482.115000px;}
.y80{bottom:482.835000px;}
.y12c{bottom:489.675000px;}
.yf7{bottom:490.395000px;}
.yc8{bottom:499.395000px;}
.y7f{bottom:500.115000px;}
.y12b{bottom:506.775000px;}
.yf6{bottom:507.675000px;}
.yc7{bottom:516.675000px;}
.y7e{bottom:517.395000px;}
.y12a{bottom:524.055000px;}
.yf5{bottom:524.775000px;}
.yc6{bottom:533.775000px;}
.y7d{bottom:534.675000px;}
.y129{bottom:541.335000px;}
.yf4{bottom:542.055000px;}
.yc5{bottom:551.055000px;}
.y7c{bottom:551.775000px;}
.y128{bottom:558.615000px;}
.yf3{bottom:559.335000px;}
.yc4{bottom:568.335000px;}
.y7b{bottom:569.055000px;}
.y127{bottom:575.895000px;}
.yf2{bottom:576.615000px;}
.yc3{bottom:585.615000px;}
.y7a{bottom:586.335000px;}
.y126{bottom:593.175000px;}
.yf1{bottom:593.895000px;}
.yc2{bottom:602.895000px;}
.y79{bottom:603.645000px;}
.y125{bottom:610.305000px;}
.yf0{bottom:611.205000px;}
.yc1{bottom:620.205000px;}
.y78{bottom:620.925000px;}
.y124{bottom:627.585000px;}
.yef{bottom:628.305000px;}
.yc0{bottom:637.305000px;}
.y77{bottom:638.205000px;}
.y123{bottom:644.865000px;}
.yee{bottom:645.585000px;}
.ybf{bottom:654.585000px;}
.y76{bottom:655.305000px;}
.y122{bottom:662.145000px;}
.yed{bottom:662.865000px;}
.ybe{bottom:671.865000px;}
.y75{bottom:672.585000px;}
.y121{bottom:679.425000px;}
.yec{bottom:680.145000px;}
.ybd{bottom:689.145000px;}
.y74{bottom:689.865000px;}
.y120{bottom:696.525000px;}
.yeb{bottom:697.425000px;}
.ybc{bottom:706.425000px;}
.y73{bottom:707.145000px;}
.y11f{bottom:713.805000px;}
.yea{bottom:714.525000px;}
.ybb{bottom:721.185000px;}
.y72{bottom:724.425000px;}
.ye9{bottom:729.285000px;}
.y11e{bottom:731.085000px;}
.yba{bottom:739.185000px;}
.y71{bottom:741.525000px;}
.ye8{bottom:747.285000px;}
.y11d{bottom:748.365000px;}
.yb9{bottom:757.185000px;}
.y70{bottom:758.805000px;}
.ye7{bottom:765.285000px;}
.y11c{bottom:765.645000px;}
.yb8{bottom:775.185000px;}
.y6f{bottom:776.085000px;}
.y11b{bottom:782.925000px;}
.ye6{bottom:783.285000px;}
.yb7{bottom:793.185000px;}
.y6e{bottom:793.365000px;}
.y11a{bottom:797.685000px;}
.ye5{bottom:801.285000px;}
.y6d{bottom:810.645000px;}
.yb6{bottom:811.185000px;}
.y119{bottom:815.685000px;}
.ye4{bottom:819.285000px;}
.y1a{bottom:827.025000px;}
.y6c{bottom:827.925000px;}
.yb5{bottom:829.185000px;}
.y118{bottom:833.685000px;}
.ye3{bottom:837.285000px;}
.y6b{bottom:845.025000px;}
.yb4{bottom:847.185000px;}
.y116{bottom:851.685000px;}
.ye2{bottom:855.285000px;}
.y10{bottom:856.545000px;}
.y6a{bottom:862.305000px;}
.yb3{bottom:865.185000px;}
.ye1{bottom:873.330000px;}
.y69{bottom:879.630000px;}
.yb2{bottom:883.230000px;}
.y114{bottom:886.830000px;}
.ye0{bottom:891.330000px;}
.y68{bottom:896.910000px;}
.yb1{bottom:901.230000px;}
.ydf{bottom:909.330000px;}
.y67{bottom:914.190000px;}
.yb0{bottom:919.230000px;}
.y113{bottom:922.110000px;}
.yde{bottom:927.330000px;}
.y66{bottom:931.470000px;}
.yaf{bottom:937.230000px;}
.y65{bottom:948.570000px;}
.yae{bottom:955.230000px;}
.y112{bottom:957.390000px;}
.y64{bottom:965.850000px;}
.yac{bottom:973.230000px;}
.y111{bottom:975.390000px;}
.y63{bottom:983.130000px;}
.yab{bottom:991.230000px;}
.y62{bottom:1000.410000px;}
.y110{bottom:1010.670000px;}
.yaa{bottom:1012.470000px;}
.y61{bottom:1017.690000px;}
.ya9{bottom:1029.570000px;}
.y60{bottom:1034.970000px;}
.ye{bottom:1040.010000px;}
.y10e{bottom:1045.950000px;}
.ya8{bottom:1046.850000px;}
.y5f{bottom:1052.070000px;}
.ya7{bottom:1064.130000px;}
.y7{bottom:1065.390000px;}
.y5e{bottom:1069.350000px;}
.ya6{bottom:1078.890000px;}
.y10d{bottom:1081.050000px;}
.y5d{bottom:1086.630000px;}
.ya5{bottom:1096.890000px;}
.y5c{bottom:1103.910000px;}
.ya4{bottom:1114.890000px;}
.y10c{bottom:1116.330000px;}
.y5b{bottom:1121.190000px;}
.ya3{bottom:1132.890000px;}
.y5a{bottom:1138.320000px;}
.ya2{bottom:1150.920000px;}
.y10b{bottom:1151.640000px;}
.y59{bottom:1155.600000px;}
.ya1{bottom:1168.920000px;}
.y58{bottom:1172.880000px;}
.y1{bottom:1191.780000px;}
.h1f{height:17.100000px;}
.h20{height:17.136000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h1b{height:29.340000px;}
.h12{height:29.520000px;}
.h3{height:32.940000px;}
.h22{height:34.380000px;}
.h24{height:34.416000px;}
.h21{height:34.560000px;}
.h23{height:34.596000px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1c{height:42.164648px;}
.h18{height:42.281367px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1a{height:52.435898px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h6{height:67.824844px;}
.h2{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:183.450000px;}
.h14{height:448.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:63.180000px;}
.w13{width:64.260000px;}
.w15{width:68.940000px;}
.w1b{width:70.200000px;}
.w19{width:72.720000px;}
.we{width:72.900000px;}
.w4{width:74.880000px;}
.w16{width:86.220000px;}
.w26{width:86.256000px;}
.w25{width:87.336000px;}
.w11{width:89.316000px;}
.w1c{width:91.800000px;}
.wd{width:103.896000px;}
.w1e{width:118.836000px;}
.w28{width:137.160000px;}
.w23{width:148.536000px;}
.w22{width:150.150000px;}
.w5{width:151.950000px;}
.w18{width:152.490000px;}
.w21{width:154.440000px;}
.w10{width:155.190000px;}
.w17{width:157.710000px;}
.w27{width:162.210000px;}
.w1d{width:177.330000px;}
.wc{width:179.850000px;}
.wf{width:192.090000px;}
.wa{width:192.810000px;}
.wb{width:194.070000px;}
.w24{width:201.090000px;}
.w14{width:204.915000px;}
.w20{width:217.875000px;}
.w1a{width:221.475000px;}
.w8{width:223.275000px;}
.w12{width:242.670000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w3{width:673.530000px;}
.w7{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x3{left:8.640000px;}
.x14{left:12.600000px;}
.xc{left:19.116000px;}
.xf{left:36.756000px;}
.x2{left:72.360000px;}
.x1{left:80.999987px;}
.x11{left:90.750000px;}
.x5{left:98.130000px;}
.x30{left:108.035987px;}
.x31{left:135.035987px;}
.xd{left:139.170000px;}
.x10{left:145.470000px;}
.xe{left:207.255000px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.x15{left:234.929987px;}
.x20{left:236.369987px;}
.x1c{left:255.449987px;}
.x16{left:266.790000px;}
.x2b{left:275.070000px;}
.x24{left:277.634987px;}
.x21{left:278.895000px;}
.x9{left:288.435000px;}
.x29{left:291.855000px;}
.x13{left:296.175000px;}
.x7{left:348.195000px;}
.x2c{left:363.135000px;}
.x25{left:366.375000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1d{left:421.995000px;}
.x2d{left:432.795000px;}
.x22{left:435.495000px;}
.x1b{left:446.474987px;}
.xa{left:455.700000px;}
.x26{left:459.075000px;}
.x17{left:461.595000px;}
.x1e{left:512.205000px;}
.x2e{left:519.765000px;}
.x23{left:593.925000px;}
.x2a{left:597.885000px;}
.x27{left:637.125000px;}
.x18{left:642.345000px;}
.x2f{left:682.710000px;}
.x4{left:745.890000px;}
.x1a{left:746.970000px;}
.x1f{left:755.610000px;}
.x28{left:756.690000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls14{letter-spacing:0.209707pt;}
.ls11{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls12{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-3.872000pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._4{width:1.915947pt;}
._11{width:2.818560pt;}
._12{width:3.930880pt;}
._15{width:4.908373pt;}
._10{width:5.886933pt;}
._f{width:7.064960pt;}
._13{width:8.002347pt;}
._9{width:9.242880pt;}
._8{width:10.215040pt;}
._6{width:11.351680pt;}
._5{width:12.293760pt;}
._19{width:15.029547pt;}
._7{width:16.085973pt;}
._14{width:17.079680pt;}
._a{width:18.358400pt;}
._e{width:19.450880pt;}
._d{width:20.494933pt;}
._18{width:21.495253pt;}
._28{width:23.522773pt;}
._17{width:27.259520pt;}
._16{width:28.312960pt;}
._29{width:29.372160pt;}
._25{width:31.393920pt;}
._24{width:32.296960pt;}
._21{width:33.890560pt;}
._b{width:38.183893pt;}
._c{width:39.283840pt;}
._26{width:41.274240pt;}
._20{width:51.685760pt;}
._23{width:63.159680pt;}
._1a{width:66.081280pt;}
._1b{width:67.356160pt;}
._1f{width:78.564480pt;}
._1c{width:88.126080pt;}
._22{width:131.834453pt;}
._1e{width:148.682880pt;}
._1d{width:149.851520pt;}
._27{width:168.071680pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.yd2{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.yf{bottom:8.480000pt;}
.y1b{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y4a{bottom:13.280000pt;}
.yad{bottom:15.200000pt;}
.y9f{bottom:15.354667pt;}
.y5{bottom:15.360000pt;}
.y49{bottom:16.000000pt;}
.y3{bottom:17.920000pt;}
.y46{bottom:18.080000pt;}
.y117{bottom:18.120000pt;}
.y109{bottom:18.234667pt;}
.ycb{bottom:18.240000pt;}
.y19{bottom:21.320000pt;}
.yc{bottom:26.880000pt;}
.y10f{bottom:30.560000pt;}
.y10a{bottom:30.714667pt;}
.y115{bottom:30.720000pt;}
.y45{bottom:33.440000pt;}
.y18{bottom:35.880000pt;}
.yb{bottom:41.280000pt;}
.y44{bottom:48.800000pt;}
.y17{bottom:50.600000pt;}
.y6{bottom:52.160000pt;}
.y16{bottom:61.640000pt;}
.y43{bottom:64.160000pt;}
.ya{bottom:65.146667pt;}
.y2{bottom:72.192000pt;}
.y15{bottom:74.600000pt;}
.y42{bottom:79.520000pt;}
.y9{bottom:82.586667pt;}
.y14{bottom:88.200000pt;}
.y41{bottom:94.720000pt;}
.y8{bottom:98.906667pt;}
.y13{bottom:105.160000pt;}
.y40{bottom:110.080000pt;}
.ydd{bottom:111.232000pt;}
.ya0{bottom:112.352000pt;}
.y57{bottom:113.952000pt;}
.y108{bottom:116.992000pt;}
.y94{bottom:122.592000pt;}
.y3f{bottom:125.440000pt;}
.ydc{bottom:126.592000pt;}
.y12{bottom:128.040000pt;}
.y9e{bottom:128.352000pt;}
.y140{bottom:128.512000pt;}
.y56{bottom:129.312000pt;}
.y2d{bottom:133.280000pt;}
.y93{bottom:137.786667pt;}
.y3e{bottom:140.800000pt;}
.ydb{bottom:141.786667pt;}
.y13f{bottom:143.866667pt;}
.y9d{bottom:144.346667pt;}
.y55{bottom:144.666667pt;}
.y2c{bottom:146.880000pt;}
.y107{bottom:148.346667pt;}
.y11{bottom:149.640000pt;}
.y92{bottom:153.146667pt;}
.yda{bottom:154.906667pt;}
.y3d{bottom:156.160000pt;}
.y13e{bottom:159.226667pt;}
.y54{bottom:160.026667pt;}
.y9c{bottom:160.346667pt;}
.y2b{bottom:162.560000pt;}
.y91{bottom:168.506667pt;}
.y3c{bottom:171.520000pt;}
.y13d{bottom:174.586667pt;}
.y53{bottom:175.226667pt;}
.y9b{bottom:176.346667pt;}
.y2a{bottom:177.920000pt;}
.y106{bottom:182.586667pt;}
.y90{bottom:183.866667pt;}
.yd9{bottom:186.266667pt;}
.y3b{bottom:186.720000pt;}
.y13c{bottom:189.786667pt;}
.y52{bottom:190.586667pt;}
.y9a{bottom:192.346667pt;}
.y29{bottom:193.280000pt;}
.y105{bottom:197.786667pt;}
.y8f{bottom:199.226667pt;}
.y3a{bottom:202.106667pt;}
.yd8{bottom:202.266667pt;}
.y13b{bottom:205.146667pt;}
.y51{bottom:205.946667pt;}
.y99{bottom:208.346667pt;}
.y28{bottom:209.146667pt;}
.y104{bottom:213.146667pt;}
.y8e{bottom:214.586667pt;}
.y39{bottom:217.466667pt;}
.yd7{bottom:218.266667pt;}
.y13a{bottom:220.506667pt;}
.y50{bottom:221.306667pt;}
.y98{bottom:224.346667pt;}
.y27{bottom:224.506667pt;}
.y103{bottom:226.266667pt;}
.y8d{bottom:229.786667pt;}
.y38{bottom:232.826667pt;}
.yd6{bottom:234.266667pt;}
.y139{bottom:235.866667pt;}
.y4f{bottom:236.666667pt;}
.y26{bottom:240.026667pt;}
.y97{bottom:240.346667pt;}
.y102{bottom:242.266667pt;}
.y8c{bottom:245.146667pt;}
.y37{bottom:248.186667pt;}
.yd5{bottom:250.266667pt;}
.y138{bottom:251.226667pt;}
.y4e{bottom:251.866667pt;}
.y25{bottom:255.386667pt;}
.y96{bottom:256.346667pt;}
.y101{bottom:258.266667pt;}
.y8b{bottom:260.506667pt;}
.y36{bottom:263.546667pt;}
.yd4{bottom:266.266667pt;}
.y137{bottom:266.586667pt;}
.y4d{bottom:267.226667pt;}
.y24{bottom:270.906667pt;}
.y95{bottom:272.346667pt;}
.y100{bottom:274.266667pt;}
.y8a{bottom:275.866667pt;}
.y35{bottom:278.746667pt;}
.y136{bottom:281.786667pt;}
.yd3{bottom:282.266667pt;}
.y4c{bottom:282.586667pt;}
.y23{bottom:286.426667pt;}
.yff{bottom:290.266667pt;}
.y89{bottom:291.226667pt;}
.y34{bottom:294.106667pt;}
.y135{bottom:297.146667pt;}
.y4b{bottom:297.946667pt;}
.yd1{bottom:298.266667pt;}
.y22{bottom:301.786667pt;}
.yfe{bottom:306.306667pt;}
.y88{bottom:306.466667pt;}
.y33{bottom:309.466667pt;}
.y48{bottom:310.466667pt;}
.y134{bottom:312.546667pt;}
.yd0{bottom:314.306667pt;}
.y21{bottom:317.306667pt;}
.y87{bottom:321.826667pt;}
.yfd{bottom:322.306667pt;}
.y32{bottom:324.826667pt;}
.y133{bottom:327.906667pt;}
.ycf{bottom:330.306667pt;}
.y20{bottom:332.826667pt;}
.y1c{bottom:336.546667pt;}
.y86{bottom:337.186667pt;}
.yfc{bottom:338.306667pt;}
.y31{bottom:340.186667pt;}
.y132{bottom:343.266667pt;}
.yce{bottom:346.306667pt;}
.y1f{bottom:348.346667pt;}
.y85{bottom:352.546667pt;}
.yfb{bottom:354.306667pt;}
.y30{bottom:355.546667pt;}
.y131{bottom:358.466667pt;}
.ycd{bottom:362.306667pt;}
.y84{bottom:367.906667pt;}
.yfa{bottom:370.306667pt;}
.y2f{bottom:370.746667pt;}
.y1e{bottom:372.826667pt;}
.y130{bottom:373.826667pt;}
.ycc{bottom:378.306667pt;}
.y83{bottom:383.266667pt;}
.y2e{bottom:386.106667pt;}
.yf9{bottom:386.306667pt;}
.y1d{bottom:388.506667pt;}
.y12f{bottom:389.186667pt;}
.yca{bottom:394.306667pt;}
.y82{bottom:398.466667pt;}
.y12e{bottom:404.546667pt;}
.y81{bottom:413.826667pt;}
.y12d{bottom:419.906667pt;}
.yf8{bottom:420.546667pt;}
.yc9{bottom:428.546667pt;}
.y80{bottom:429.186667pt;}
.y12c{bottom:435.266667pt;}
.yf7{bottom:435.906667pt;}
.yc8{bottom:443.906667pt;}
.y7f{bottom:444.546667pt;}
.y12b{bottom:450.466667pt;}
.yf6{bottom:451.266667pt;}
.yc7{bottom:459.266667pt;}
.y7e{bottom:459.906667pt;}
.y12a{bottom:465.826667pt;}
.yf5{bottom:466.466667pt;}
.yc6{bottom:474.466667pt;}
.y7d{bottom:475.266667pt;}
.y129{bottom:481.186667pt;}
.yf4{bottom:481.826667pt;}
.yc5{bottom:489.826667pt;}
.y7c{bottom:490.466667pt;}
.y128{bottom:496.546667pt;}
.yf3{bottom:497.186667pt;}
.yc4{bottom:505.186667pt;}
.y7b{bottom:505.826667pt;}
.y127{bottom:511.906667pt;}
.yf2{bottom:512.546667pt;}
.yc3{bottom:520.546667pt;}
.y7a{bottom:521.186667pt;}
.y126{bottom:527.266667pt;}
.yf1{bottom:527.906667pt;}
.yc2{bottom:535.906667pt;}
.y79{bottom:536.573333pt;}
.y125{bottom:542.493333pt;}
.yf0{bottom:543.293333pt;}
.yc1{bottom:551.293333pt;}
.y78{bottom:551.933333pt;}
.y124{bottom:557.853333pt;}
.yef{bottom:558.493333pt;}
.yc0{bottom:566.493333pt;}
.y77{bottom:567.293333pt;}
.y123{bottom:573.213333pt;}
.yee{bottom:573.853333pt;}
.ybf{bottom:581.853333pt;}
.y76{bottom:582.493333pt;}
.y122{bottom:588.573333pt;}
.yed{bottom:589.213333pt;}
.ybe{bottom:597.213333pt;}
.y75{bottom:597.853333pt;}
.y121{bottom:603.933333pt;}
.yec{bottom:604.573333pt;}
.ybd{bottom:612.573333pt;}
.y74{bottom:613.213333pt;}
.y120{bottom:619.133333pt;}
.yeb{bottom:619.933333pt;}
.ybc{bottom:627.933333pt;}
.y73{bottom:628.573333pt;}
.y11f{bottom:634.493333pt;}
.yea{bottom:635.133333pt;}
.ybb{bottom:641.053333pt;}
.y72{bottom:643.933333pt;}
.ye9{bottom:648.253333pt;}
.y11e{bottom:649.853333pt;}
.yba{bottom:657.053333pt;}
.y71{bottom:659.133333pt;}
.ye8{bottom:664.253333pt;}
.y11d{bottom:665.213333pt;}
.yb9{bottom:673.053333pt;}
.y70{bottom:674.493333pt;}
.ye7{bottom:680.253333pt;}
.y11c{bottom:680.573333pt;}
.yb8{bottom:689.053333pt;}
.y6f{bottom:689.853333pt;}
.y11b{bottom:695.933333pt;}
.ye6{bottom:696.253333pt;}
.yb7{bottom:705.053333pt;}
.y6e{bottom:705.213333pt;}
.y11a{bottom:709.053333pt;}
.ye5{bottom:712.253333pt;}
.y6d{bottom:720.573333pt;}
.yb6{bottom:721.053333pt;}
.y119{bottom:725.053333pt;}
.ye4{bottom:728.253333pt;}
.y1a{bottom:735.133333pt;}
.y6c{bottom:735.933333pt;}
.yb5{bottom:737.053333pt;}
.y118{bottom:741.053333pt;}
.ye3{bottom:744.253333pt;}
.y6b{bottom:751.133333pt;}
.yb4{bottom:753.053333pt;}
.y116{bottom:757.053333pt;}
.ye2{bottom:760.253333pt;}
.y10{bottom:761.373333pt;}
.y6a{bottom:766.493333pt;}
.yb3{bottom:769.053333pt;}
.ye1{bottom:776.293333pt;}
.y69{bottom:781.893333pt;}
.yb2{bottom:785.093333pt;}
.y114{bottom:788.293333pt;}
.ye0{bottom:792.293333pt;}
.y68{bottom:797.253333pt;}
.yb1{bottom:801.093333pt;}
.ydf{bottom:808.293333pt;}
.y67{bottom:812.613333pt;}
.yb0{bottom:817.093333pt;}
.y113{bottom:819.653333pt;}
.yde{bottom:824.293333pt;}
.y66{bottom:827.973333pt;}
.yaf{bottom:833.093333pt;}
.y65{bottom:843.173333pt;}
.yae{bottom:849.093333pt;}
.y112{bottom:851.013333pt;}
.y64{bottom:858.533333pt;}
.yac{bottom:865.093333pt;}
.y111{bottom:867.013333pt;}
.y63{bottom:873.893333pt;}
.yab{bottom:881.093333pt;}
.y62{bottom:889.253333pt;}
.y110{bottom:898.373333pt;}
.yaa{bottom:899.973333pt;}
.y61{bottom:904.613333pt;}
.ya9{bottom:915.173333pt;}
.y60{bottom:919.973333pt;}
.ye{bottom:924.453333pt;}
.y10e{bottom:929.733333pt;}
.ya8{bottom:930.533333pt;}
.y5f{bottom:935.173333pt;}
.ya7{bottom:945.893333pt;}
.y7{bottom:947.013333pt;}
.y5e{bottom:950.533333pt;}
.ya6{bottom:959.013333pt;}
.y10d{bottom:960.933333pt;}
.y5d{bottom:965.893333pt;}
.ya5{bottom:975.013333pt;}
.y5c{bottom:981.253333pt;}
.ya4{bottom:991.013333pt;}
.y10c{bottom:992.293333pt;}
.y5b{bottom:996.613333pt;}
.ya3{bottom:1007.013333pt;}
.y5a{bottom:1011.840000pt;}
.ya2{bottom:1023.040000pt;}
.y10b{bottom:1023.680000pt;}
.y59{bottom:1027.200000pt;}
.ya1{bottom:1039.040000pt;}
.y58{bottom:1042.560000pt;}
.y1{bottom:1059.360000pt;}
.h1f{height:15.200000pt;}
.h20{height:15.232000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h1b{height:26.080000pt;}
.h12{height:26.240000pt;}
.h3{height:29.280000pt;}
.h22{height:30.560000pt;}
.h24{height:30.592000pt;}
.h21{height:30.720000pt;}
.h23{height:30.752000pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1c{height:37.479688pt;}
.h18{height:37.583438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1a{height:46.609688pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h6{height:60.288750pt;}
.h2{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:163.066667pt;}
.h14{height:398.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:56.160000pt;}
.w13{width:57.120000pt;}
.w15{width:61.280000pt;}
.w1b{width:62.400000pt;}
.w19{width:64.640000pt;}
.we{width:64.800000pt;}
.w4{width:66.560000pt;}
.w16{width:76.640000pt;}
.w26{width:76.672000pt;}
.w25{width:77.632000pt;}
.w11{width:79.392000pt;}
.w1c{width:81.600000pt;}
.wd{width:92.352000pt;}
.w1e{width:105.632000pt;}
.w28{width:121.920000pt;}
.w23{width:132.032000pt;}
.w22{width:133.466667pt;}
.w5{width:135.066667pt;}
.w18{width:135.546667pt;}
.w21{width:137.280000pt;}
.w10{width:137.946667pt;}
.w17{width:140.186667pt;}
.w27{width:144.186667pt;}
.w1d{width:157.626667pt;}
.wc{width:159.866667pt;}
.wf{width:170.746667pt;}
.wa{width:171.386667pt;}
.wb{width:172.506667pt;}
.w24{width:178.746667pt;}
.w14{width:182.146667pt;}
.w20{width:193.666667pt;}
.w1a{width:196.866667pt;}
.w8{width:198.466667pt;}
.w12{width:215.706667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w3{width:598.693333pt;}
.w7{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x3{left:7.680000pt;}
.x14{left:11.200000pt;}
.xc{left:16.992000pt;}
.xf{left:32.672000pt;}
.x2{left:64.320000pt;}
.x1{left:71.999988pt;}
.x11{left:80.666667pt;}
.x5{left:87.226667pt;}
.x30{left:96.031988pt;}
.x31{left:120.031988pt;}
.xd{left:123.706667pt;}
.x10{left:129.306667pt;}
.xe{left:184.226667pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.x15{left:208.826655pt;}
.x20{left:210.106655pt;}
.x1c{left:227.066655pt;}
.x16{left:237.146667pt;}
.x2b{left:244.506667pt;}
.x24{left:246.786655pt;}
.x21{left:247.906667pt;}
.x9{left:256.386667pt;}
.x29{left:259.426667pt;}
.x13{left:263.266667pt;}
.x7{left:309.506667pt;}
.x2c{left:322.786667pt;}
.x25{left:325.666667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1d{left:375.106667pt;}
.x2d{left:384.706667pt;}
.x22{left:387.106667pt;}
.x1b{left:396.866655pt;}
.xa{left:405.066667pt;}
.x26{left:408.066667pt;}
.x17{left:410.306667pt;}
.x1e{left:455.293333pt;}
.x2e{left:462.013333pt;}
.x23{left:527.933333pt;}
.x2a{left:531.453333pt;}
.x27{left:566.333333pt;}
.x18{left:570.973333pt;}
.x2f{left:606.853333pt;}
.x4{left:663.013333pt;}
.x1a{left:663.973333pt;}
.x1f{left:671.653333pt;}
.x28{left:672.613333pt;}
}




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