
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ef410b52da15263ad2797afb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b383c656571b80cb91cf7d29.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c0107821e993637a277ad77.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_3aa957a0a8e44e5acc9ad563.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_e766e40e9ea28d58aad2ee8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.843000;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_f49fb5ba4f349d328ecb1445.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049000;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_fce325625d107c1155fb5e2d.woff2')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_46448410d19f8472eca100d9.woff2')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_3618bc66582f8eab6346da39.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_74f9283c578e24cb5d334942.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.331331;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_8f18b123957b0d7aaf7c03f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.331331;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_69dea884546c47ea44f26d30.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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_520b3661a596a61a97c66059.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v4{vertical-align:-74.880000px;}
.v3{vertical-align:-72.984639px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls26{letter-spacing:-1.800000px;}
.ls17{letter-spacing:-0.853806px;}
.ls10{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.630000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.349112px;}
.ls18{letter-spacing:-0.185308px;}
.lsd{letter-spacing:-0.142800px;}
.lsf{letter-spacing:-0.089400px;}
.ls13{letter-spacing:-0.072000px;}
.lsc{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.118080px;}
.ls4{letter-spacing:0.166967px;}
.ls1b{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234720px;}
.lse{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.414720px;}
.ls7{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.558453px;}
.ls3{letter-spacing:0.558579px;}
.ls6{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.661795px;}
.ls15{letter-spacing:0.664072px;}
.ls0{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.859119px;}
.ls27{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.558080px;}
.ls23{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.179673px;}
.ls24{letter-spacing:2.998080px;}
.ls20{letter-spacing:7.272000px;}
.ls21{letter-spacing:10.152000px;}
.ls22{letter-spacing:10.800000px;}
.ls8{letter-spacing:46.546560px;}
.ls1e{letter-spacing:47.664000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws15{word-spacing:-28.368000px;}
.wsf{word-spacing:-28.080000px;}
.ws5{word-spacing:-27.864000px;}
.ws2{word-spacing:-27.576000px;}
.ws12{word-spacing:-27.504000px;}
.ws11{word-spacing:-27.288000px;}
.ws16{word-spacing:-26.928000px;}
.ws17{word-spacing:-26.784000px;}
.ws10{word-spacing:-26.712000px;}
.ws13{word-spacing:-26.640000px;}
.wsa{word-spacing:-26.629653px;}
.ws9{word-spacing:-26.462687px;}
.ws14{word-spacing:-25.488000px;}
.ws3{word-spacing:-18.010080px;}
.ws1{word-spacing:-17.867280px;}
.ws0{word-spacing:-15.120000px;}
.wsd{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.050000px;}
.ws6{word-spacing:-11.160000px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsb{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.747923px;}
._8{width:6.640363px;}
._9{width:7.881177px;}
._b{width:8.995502px;}
._7{width:10.886885px;}
._6{width:12.101893px;}
._a{width:13.235948px;}
._e{width:14.728320px;}
._d{width:16.035840px;}
._13{width:18.167040px;}
._12{width:19.296000px;}
._10{width:20.952000px;}
._f{width:22.104000px;}
._11{width:23.326317px;}
._5{width:29.274063px;}
._14{width:134.047200px;}
._16{width:150.137280px;}
._15{width:256.069440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs8{font-size:18.720000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fsd{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fse{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs6{font-size:72.000000px;}
.fsf{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.075500px;}
.y40{bottom:4.680000px;}
.y56{bottom:5.370000px;}
.y9a{bottom:5.745000px;}
.yf5{bottom:5.755500px;}
.y91{bottom:5.760000px;}
.y8c{bottom:5.805000px;}
.y9b{bottom:6.105000px;}
.yf7{bottom:6.115500px;}
.y92{bottom:6.120000px;}
.yff{bottom:6.135000px;}
.yaf{bottom:6.150000px;}
.yf3{bottom:6.151500px;}
.yb7{bottom:6.165000px;}
.y8f{bottom:6.840000px;}
.y5{bottom:10.440000px;}
.y54{bottom:10.795500px;}
.y2{bottom:11.520000px;}
.y3f{bottom:23.400000px;}
.ydf{bottom:26.280000px;}
.y98{bottom:26.985000px;}
.y8e{bottom:27.000000px;}
.yad{bottom:27.030000px;}
.yb5{bottom:27.045000px;}
.y9f{bottom:27.345000px;}
.y95{bottom:27.360000px;}
.y4{bottom:27.720000px;}
.y53{bottom:29.515500px;}
.y48{bottom:30.595500px;}
.y3e{bottom:42.120000px;}
.y47{bottom:42.475500px;}
.y3{bottom:50.760000px;}
.y52{bottom:51.874500px;}
.y46{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y3d{bottom:61.200000px;}
.y45{bottom:68.794500px;}
.y51{bottom:70.954500px;}
.y3c{bottom:79.920000px;}
.y50{bottom:88.594500px;}
.y44{bottom:90.394500px;}
.y8a{bottom:93.276000px;}
.yf6{bottom:94.360500px;}
.y4f{bottom:94.714500px;}
.y41{bottom:98.680500px;}
.yc5{bottom:100.476000px;}
.y129{bottom:105.156000px;}
.y3b{bottom:108.000000px;}
.y4e{bottom:110.554500px;}
.yf4{bottom:115.600500px;}
.yc4{bottom:119.556000px;}
.y89{bottom:120.996000px;}
.y128{bottom:122.436000px;}
.y4d{bottom:126.034500px;}
.y3a{bottom:126.765000px;}
.yf2{bottom:136.480500px;}
.yc3{bottom:138.276000px;}
.y127{bottom:139.716000px;}
.y88{bottom:140.076000px;}
.y4c{bottom:141.514500px;}
.y39{bottom:145.845000px;}
.y43{bottom:152.674500px;}
.y4b{bottom:156.994500px;}
.yc2{bottom:157.395000px;}
.y126{bottom:157.755000px;}
.yf1{bottom:157.770000px;}
.y87{bottom:158.835000px;}
.y42{bottom:163.474500px;}
.y38{bottom:164.565000px;}
.y4a{bottom:172.474500px;}
.yc1{bottom:176.115000px;}
.y125{bottom:176.475000px;}
.y86{bottom:177.555000px;}
.yf0{bottom:179.010000px;}
.y37{bottom:185.805000px;}
.yc0{bottom:194.835000px;}
.y124{bottom:195.555000px;}
.y85{bottom:199.155000px;}
.yef{bottom:199.890000px;}
.y36{bottom:204.885000px;}
.ybf{bottom:213.915000px;}
.y123{bottom:214.275000px;}
.y84{bottom:217.875000px;}
.yee{bottom:221.130000px;}
.y35{bottom:223.605000px;}
.ybe{bottom:232.635000px;}
.y122{bottom:232.995000px;}
.y83{bottom:239.115000px;}
.yed{bottom:242.370000px;}
.y34{bottom:242.685000px;}
.y121{bottom:252.075000px;}
.y82{bottom:258.195000px;}
.ybd{bottom:260.715000px;}
.y33{bottom:261.435000px;}
.yec{bottom:263.610000px;}
.y120{bottom:270.795000px;}
.y81{bottom:276.945000px;}
.ybc{bottom:279.465000px;}
.y32{bottom:280.155000px;}
.yeb{bottom:284.505000px;}
.y11f{bottom:289.905000px;}
.y10{bottom:291.705000px;}
.y80{bottom:296.025000px;}
.ybb{bottom:298.545000px;}
.y31{bottom:299.235000px;}
.yea{bottom:305.745000px;}
.y7f{bottom:314.745000px;}
.y11e{bottom:317.625000px;}
.y30{bottom:317.955000px;}
.yba{bottom:326.265000px;}
.ye9{bottom:326.985000px;}
.y7e{bottom:333.825000px;}
.y11d{bottom:336.705000px;}
.y2f{bottom:337.035000px;}
.yb8{bottom:341.385000px;}
.ye8{bottom:347.865000px;}
.y1e{bottom:348.195000px;}
.y7d{bottom:352.545000px;}
.y11c{bottom:355.425000px;}
.y2e{bottom:355.755000px;}
.yb9{bottom:362.625000px;}
.ye7{bottom:369.105000px;}
.y7c{bottom:371.625000px;}
.y1d{bottom:372.315000px;}
.y11b{bottom:374.505000px;}
.y2d{bottom:374.835000px;}
.yb4{bottom:383.865000px;}
.y7b{bottom:390.345000px;}
.y11a{bottom:393.225000px;}
.y2c{bottom:393.585000px;}
.y1c{bottom:396.465000px;}
.yb6{bottom:404.745000px;}
.y7a{bottom:409.470000px;}
.ye6{bottom:411.270000px;}
.y119{bottom:411.990000px;}
.y2b{bottom:412.665000px;}
.y1b{bottom:420.585000px;}
.yb2{bottom:426.030000px;}
.y79{bottom:428.190000px;}
.y118{bottom:431.070000px;}
.y2a{bottom:431.385000px;}
.ye5{bottom:432.510000px;}
.y1a{bottom:444.705000px;}
.y78{bottom:446.910000px;}
.yb3{bottom:447.270000px;}
.y117{bottom:449.790000px;}
.ye4{bottom:453.750000px;}
.y29{bottom:458.745000px;}
.y77{bottom:465.990000px;}
.yb0{bottom:468.150000px;}
.y19{bottom:468.825000px;}
.y116{bottom:468.870000px;}
.ye3{bottom:474.630000px;}
.y28{bottom:476.025000px;}
.y76{bottom:484.710000px;}
.yb1{bottom:489.390000px;}
.y18{bottom:492.945000px;}
.y27{bottom:493.305000px;}
.ye2{bottom:495.870000px;}
.y115{bottom:496.590000px;}
.y75{bottom:503.790000px;}
.y26{bottom:510.630000px;}
.y114{bottom:515.670000px;}
.ye1{bottom:517.110000px;}
.y17{bottom:517.470000px;}
.y74{bottom:522.510000px;}
.y25{bottom:527.910000px;}
.yae{bottom:531.510000px;}
.y113{bottom:534.390000px;}
.ye0{bottom:538.020000px;}
.y16{bottom:541.590000px;}
.y73{bottom:541.620000px;}
.y24{bottom:545.550000px;}
.yab{bottom:552.780000px;}
.y112{bottom:553.500000px;}
.yde{bottom:559.260000px;}
.y72{bottom:560.340000px;}
.y23{bottom:562.830000px;}
.y15{bottom:565.710000px;}
.y111{bottom:572.220000px;}
.yac{bottom:574.020000px;}
.y71{bottom:579.420000px;}
.y22{bottom:580.110000px;}
.y14{bottom:589.830000px;}
.y110{bottom:591.300000px;}
.ya9{bottom:594.900000px;}
.y21{bottom:597.390000px;}
.y70{bottom:598.140000px;}
.y10f{bottom:610.020000px;}
.y13{bottom:613.950000px;}
.y20{bottom:614.670000px;}
.yaa{bottom:616.140000px;}
.y6f{bottom:616.860000px;}
.ydd{bottom:624.060000px;}
.y10e{bottom:628.740000px;}
.y6e{bottom:635.940000px;}
.ya7{bottom:637.380000px;}
.y12{bottom:638.070000px;}
.y10d{bottom:647.820000px;}
.y1f{bottom:649.260000px;}
.ydc{bottom:652.140000px;}
.y6d{bottom:654.660000px;}
.ya8{bottom:658.620000px;}
.y11{bottom:662.220000px;}
.y10c{bottom:666.540000px;}
.ydb{bottom:670.890000px;}
.y6c{bottom:673.770000px;}
.ya5{bottom:679.545000px;}
.y10b{bottom:685.650000px;}
.yda{bottom:689.970000px;}
.y6b{bottom:692.490000px;}
.ya6{bottom:700.785000px;}
.y10a{bottom:704.370000px;}
.yd9{bottom:708.690000px;}
.y6a{bottom:711.570000px;}
.ya3{bottom:722.025000px;}
.y109{bottom:723.450000px;}
.yd8{bottom:727.770000px;}
.y69{bottom:730.290000px;}
.y108{bottom:742.170000px;}
.ya4{bottom:742.905000px;}
.yd7{bottom:746.490000px;}
.y68{bottom:749.370000px;}
.y107{bottom:761.250000px;}
.ya1{bottom:764.145000px;}
.yd6{bottom:765.570000px;}
.y67{bottom:777.090000px;}
.y106{bottom:779.970000px;}
.yd5{bottom:784.290000px;}
.ya2{bottom:785.385000px;}
.y66{bottom:795.810000px;}
.yd4{bottom:803.055000px;}
.y9e{bottom:806.310000px;}
.y105{bottom:807.735000px;}
.y65{bottom:817.455000px;}
.yd3{bottom:822.135000px;}
.y104{bottom:823.230000px;}
.ya0{bottom:827.550000px;}
.y64{bottom:836.175000px;}
.yd2{bottom:840.855000px;}
.y103{bottom:844.110000px;}
.y9c{bottom:848.790000px;}
.y63{bottom:854.895000px;}
.yd1{bottom:859.935000px;}
.y102{bottom:865.350000px;}
.y9d{bottom:869.670000px;}
.y62{bottom:873.975000px;}
.y101{bottom:886.590000px;}
.yd0{bottom:887.655000px;}
.y97{bottom:890.910000px;}
.y61{bottom:892.695000px;}
.ycf{bottom:906.735000px;}
.y100{bottom:907.470000px;}
.y99{bottom:912.150000px;}
.y60{bottom:913.935000px;}
.yce{bottom:925.455000px;}
.yfe{bottom:928.710000px;}
.y5f{bottom:933.045000px;}
.ycd{bottom:944.565000px;}
.yfd{bottom:949.965000px;}
.y5e{bottom:951.765000px;}
.y96{bottom:954.285000px;}
.ycc{bottom:963.285000px;}
.yf{bottom:966.165000px;}
.ye{bottom:968.685000px;}
.y5d{bottom:970.845000px;}
.y93{bottom:975.525000px;}
.yd{bottom:976.605000px;}
.ycb{bottom:982.005000px;}
.y5c{bottom:989.565000px;}
.yfc{bottom:992.085000px;}
.y94{bottom:996.765000px;}
.yc{bottom:1003.245000px;}
.y5b{bottom:1008.285000px;}
.yca{bottom:1010.085000px;}
.yfb{bottom:1013.325000px;}
.y8d{bottom:1017.645000px;}
.yb{bottom:1024.125000px;}
.yc9{bottom:1028.805000px;}
.y5a{bottom:1029.885000px;}
.yfa{bottom:1034.205000px;}
.ya{bottom:1038.165000px;}
.y90{bottom:1038.885000px;}
.yc8{bottom:1047.885000px;}
.yf9{bottom:1055.445000px;}
.y59{bottom:1057.605000px;}
.y9{bottom:1059.765000px;}
.y8b{bottom:1060.125000px;}
.yc7{bottom:1066.650000px;}
.y58{bottom:1076.730000px;}
.yc6{bottom:1085.730000px;}
.y8{bottom:1087.530000px;}
.y55{bottom:1090.800000px;}
.yf8{bottom:1097.610000px;}
.y57{bottom:1104.450000px;}
.y6{bottom:1119.210000px;}
.y1{bottom:1120.650000px;}
.h1a{height:5.650313px;}
.h6{height:5.729063px;}
.hd{height:18.866250px;}
.h21{height:20.145000px;}
.h33{height:20.155500px;}
.h29{height:20.160000px;}
.h26{height:20.181000px;}
.h1f{height:20.190000px;}
.h28{height:20.196000px;}
.h22{height:20.505000px;}
.h34{height:20.515500px;}
.h2b{height:20.520000px;}
.h2e{height:20.550000px;}
.h32{height:20.551500px;}
.h1c{height:27.720000px;}
.h17{height:29.678906px;}
.h16{height:35.332031px;}
.ha{height:38.063520px;}
.hb{height:39.442500px;}
.h31{height:40.680000px;}
.h10{height:40.985156px;}
.h20{height:41.385000px;}
.h2c{height:41.400000px;}
.h25{height:41.421000px;}
.h2d{height:41.430000px;}
.h27{height:41.436000px;}
.h24{height:41.745000px;}
.h2a{height:41.760000px;}
.hf{height:42.086250px;}
.h18{height:53.677969px;}
.h19{height:55.147500px;}
.h11{height:55.927736px;}
.h12{height:57.672000px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.hc{height:60.952500px;}
.h1b{height:61.143509px;}
.h14{height:62.163910px;}
.h1d{height:63.455625px;}
.h3{height:65.884219px;}
.h1e{height:70.664062px;}
.h9{height:71.183520px;}
.h23{height:71.613281px;}
.h13{height:72.562500px;}
.h2f{height:74.004654px;}
.h30{height:74.953125px;}
.h8{height:77.280480px;}
.h2{height:87.870000px;}
.h4{height:116.640000px;}
.h15{height:192.285000px;}
.he{height:671.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:34.546500px;}
.we{width:46.425000px;}
.wf{width:46.470000px;}
.w18{width:50.782500px;}
.w14{width:53.265000px;}
.w13{width:53.280000px;}
.wd{width:53.310000px;}
.w11{width:53.316000px;}
.w10{width:60.120000px;}
.w12{width:60.141000px;}
.w15{width:60.510000px;}
.w16{width:73.462500px;}
.w1a{width:82.785000px;}
.w2{width:103.702500px;}
.w17{width:108.742500px;}
.wa{width:127.485000px;}
.w19{width:128.565000px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w1d{width:180.090000px;}
.w1b{width:188.025000px;}
.w1c{width:207.405000px;}
.wb{width:262.545000px;}
.wc{width:276.570000px;}
.w7{width:350.055000px;}
.w8{width:352.575000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x18{left:8.266500px;}
.x28{left:10.440000px;}
.x2d{left:11.880000px;}
.x4{left:13.305000px;}
.x2e{left:14.385000px;}
.x33{left:15.480000px;}
.x16{left:17.266500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x3d{left:21.985500px;}
.x35{left:23.040000px;}
.x3e{left:25.560000px;}
.x36{left:26.640000px;}
.x17{left:29.146500px;}
.x45{left:34.200000px;}
.x42{left:36.360000px;}
.x6{left:38.145000px;}
.x10{left:43.906500px;}
.x1d{left:47.542500px;}
.x11{left:50.782500px;}
.x15{left:54.022500px;}
.xf{left:55.102500px;}
.x1f{left:57.262500px;}
.x47{left:60.870000px;}
.x1a{left:62.295000px;}
.x1e{left:66.265500px;}
.x40{left:69.510000px;}
.x48{left:70.545000px;}
.x13{left:75.265500px;}
.x1{left:78.529500px;}
.x14{left:83.905500px;}
.x7{left:86.436000px;}
.x41{left:87.855000px;}
.x43{left:88.950000px;}
.x3f{left:92.895000px;}
.x2{left:95.425500px;}
.x46{left:96.495000px;}
.x44{left:98.295000px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x37{left:113.436000px;}
.x12{left:124.585500px;}
.x26{left:130.369500px;}
.x38{left:132.889500px;}
.x24{left:140.472000px;}
.x3{left:182.250000px;}
.x39{left:184.410000px;}
.x34{left:204.570000px;}
.x21{left:215.730000px;}
.x19{left:218.970000px;}
.x22{left:258.570000px;}
.xb{left:279.105000px;}
.xc{left:308.265000px;}
.x29{left:312.630000px;}
.x3a{left:313.710000px;}
.x2a{left:359.790000px;}
.x3b{left:397.590000px;}
.x2b{left:406.980000px;}
.x25{left:445.860000px;}
.x2c{left:467.820000px;}
.x27{left:521.865000px;}
.xa{left:547.410000px;}
.x2f{left:582.750000px;}
.x3c{left:586.710000px;}
.xd{left:588.135000px;}
.x30{left:629.910000px;}
.x31{left:683.925000px;}
.x32{left:737.925000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xe{left:807.090000px;}
@media print{
.v4{vertical-align:-66.560000pt;}
.v3{vertical-align:-64.875234pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls26{letter-spacing:-1.600000pt;}
.ls17{letter-spacing:-0.758939pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.310322pt;}
.ls18{letter-spacing:-0.164718pt;}
.lsd{letter-spacing:-0.126933pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls13{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.104960pt;}
.ls4{letter-spacing:0.148415pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208640pt;}
.lse{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.368640pt;}
.ls7{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.496402pt;}
.ls3{letter-spacing:0.496515pt;}
.ls6{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.588262pt;}
.ls15{letter-spacing:0.590286pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.763661pt;}
.ls27{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.384960pt;}
.ls23{letter-spacing:1.920000pt;}
.lsb{letter-spacing:1.937487pt;}
.ls24{letter-spacing:2.664960pt;}
.ls20{letter-spacing:6.464000pt;}
.ls21{letter-spacing:9.024000pt;}
.ls22{letter-spacing:9.600000pt;}
.ls8{letter-spacing:41.374720pt;}
.ls1e{letter-spacing:42.368000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws15{word-spacing:-25.216000pt;}
.wsf{word-spacing:-24.960000pt;}
.ws5{word-spacing:-24.768000pt;}
.ws2{word-spacing:-24.512000pt;}
.ws12{word-spacing:-24.448000pt;}
.ws11{word-spacing:-24.256000pt;}
.ws16{word-spacing:-23.936000pt;}
.ws17{word-spacing:-23.808000pt;}
.ws10{word-spacing:-23.744000pt;}
.ws13{word-spacing:-23.680000pt;}
.wsa{word-spacing:-23.670803pt;}
.ws9{word-spacing:-23.522388pt;}
.ws14{word-spacing:-22.656000pt;}
.ws3{word-spacing:-16.008960pt;}
.ws1{word-spacing:-15.882027pt;}
.ws0{word-spacing:-13.440000pt;}
.wsd{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.600000pt;}
.ws6{word-spacing:-9.920000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsb{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:4.220376pt;}
._8{width:5.902544pt;}
._9{width:7.005491pt;}
._b{width:7.996002pt;}
._7{width:9.677231pt;}
._6{width:10.757238pt;}
._a{width:11.765287pt;}
._e{width:13.091840pt;}
._d{width:14.254080pt;}
._13{width:16.148480pt;}
._12{width:17.152000pt;}
._10{width:18.624000pt;}
._f{width:19.648000pt;}
._11{width:20.734504pt;}
._5{width:26.021389pt;}
._14{width:119.153067pt;}
._16{width:133.455360pt;}
._15{width:227.617280pt;}
.fs3{font-size:5.120000pt;}
.fs8{font-size:16.640000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fsd{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fse{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs6{font-size:64.000000pt;}
.fsf{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:0.956000pt;}
.y40{bottom:4.160000pt;}
.y56{bottom:4.773333pt;}
.y9a{bottom:5.106667pt;}
.yf5{bottom:5.116000pt;}
.y91{bottom:5.120000pt;}
.y8c{bottom:5.160000pt;}
.y9b{bottom:5.426667pt;}
.yf7{bottom:5.436000pt;}
.y92{bottom:5.440000pt;}
.yff{bottom:5.453333pt;}
.yaf{bottom:5.466667pt;}
.yf3{bottom:5.468000pt;}
.yb7{bottom:5.480000pt;}
.y8f{bottom:6.080000pt;}
.y5{bottom:9.280000pt;}
.y54{bottom:9.596000pt;}
.y2{bottom:10.240000pt;}
.y3f{bottom:20.800000pt;}
.ydf{bottom:23.360000pt;}
.y98{bottom:23.986667pt;}
.y8e{bottom:24.000000pt;}
.yad{bottom:24.026667pt;}
.yb5{bottom:24.040000pt;}
.y9f{bottom:24.306667pt;}
.y95{bottom:24.320000pt;}
.y4{bottom:24.640000pt;}
.y53{bottom:26.236000pt;}
.y48{bottom:27.196000pt;}
.y3e{bottom:37.440000pt;}
.y47{bottom:37.756000pt;}
.y3{bottom:45.120000pt;}
.y52{bottom:46.110667pt;}
.y46{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y3d{bottom:54.400000pt;}
.y45{bottom:61.150667pt;}
.y51{bottom:63.070667pt;}
.y3c{bottom:71.040000pt;}
.y50{bottom:78.750667pt;}
.y44{bottom:80.350667pt;}
.y8a{bottom:82.912000pt;}
.yf6{bottom:83.876000pt;}
.y4f{bottom:84.190667pt;}
.y41{bottom:87.716000pt;}
.yc5{bottom:89.312000pt;}
.y129{bottom:93.472000pt;}
.y3b{bottom:96.000000pt;}
.y4e{bottom:98.270667pt;}
.yf4{bottom:102.756000pt;}
.yc4{bottom:106.272000pt;}
.y89{bottom:107.552000pt;}
.y128{bottom:108.832000pt;}
.y4d{bottom:112.030667pt;}
.y3a{bottom:112.680000pt;}
.yf2{bottom:121.316000pt;}
.yc3{bottom:122.912000pt;}
.y127{bottom:124.192000pt;}
.y88{bottom:124.512000pt;}
.y4c{bottom:125.790667pt;}
.y39{bottom:129.640000pt;}
.y43{bottom:135.710667pt;}
.y4b{bottom:139.550667pt;}
.yc2{bottom:139.906667pt;}
.y126{bottom:140.226667pt;}
.yf1{bottom:140.240000pt;}
.y87{bottom:141.186667pt;}
.y42{bottom:145.310667pt;}
.y38{bottom:146.280000pt;}
.y4a{bottom:153.310667pt;}
.yc1{bottom:156.546667pt;}
.y125{bottom:156.866667pt;}
.y86{bottom:157.826667pt;}
.yf0{bottom:159.120000pt;}
.y37{bottom:165.160000pt;}
.yc0{bottom:173.186667pt;}
.y124{bottom:173.826667pt;}
.y85{bottom:177.026667pt;}
.yef{bottom:177.680000pt;}
.y36{bottom:182.120000pt;}
.ybf{bottom:190.146667pt;}
.y123{bottom:190.466667pt;}
.y84{bottom:193.666667pt;}
.yee{bottom:196.560000pt;}
.y35{bottom:198.760000pt;}
.ybe{bottom:206.786667pt;}
.y122{bottom:207.106667pt;}
.y83{bottom:212.546667pt;}
.yed{bottom:215.440000pt;}
.y34{bottom:215.720000pt;}
.y121{bottom:224.066667pt;}
.y82{bottom:229.506667pt;}
.ybd{bottom:231.746667pt;}
.y33{bottom:232.386667pt;}
.yec{bottom:234.320000pt;}
.y120{bottom:240.706667pt;}
.y81{bottom:246.173333pt;}
.ybc{bottom:248.413333pt;}
.y32{bottom:249.026667pt;}
.yeb{bottom:252.893333pt;}
.y11f{bottom:257.693333pt;}
.y10{bottom:259.293333pt;}
.y80{bottom:263.133333pt;}
.ybb{bottom:265.373333pt;}
.y31{bottom:265.986667pt;}
.yea{bottom:271.773333pt;}
.y7f{bottom:279.773333pt;}
.y11e{bottom:282.333333pt;}
.y30{bottom:282.626667pt;}
.yba{bottom:290.013333pt;}
.ye9{bottom:290.653333pt;}
.y7e{bottom:296.733333pt;}
.y11d{bottom:299.293333pt;}
.y2f{bottom:299.586667pt;}
.yb8{bottom:303.453333pt;}
.ye8{bottom:309.213333pt;}
.y1e{bottom:309.506667pt;}
.y7d{bottom:313.373333pt;}
.y11c{bottom:315.933333pt;}
.y2e{bottom:316.226667pt;}
.yb9{bottom:322.333333pt;}
.ye7{bottom:328.093333pt;}
.y7c{bottom:330.333333pt;}
.y1d{bottom:330.946667pt;}
.y11b{bottom:332.893333pt;}
.y2d{bottom:333.186667pt;}
.yb4{bottom:341.213333pt;}
.y7b{bottom:346.973333pt;}
.y11a{bottom:349.533333pt;}
.y2c{bottom:349.853333pt;}
.y1c{bottom:352.413333pt;}
.yb6{bottom:359.773333pt;}
.y7a{bottom:363.973333pt;}
.ye6{bottom:365.573333pt;}
.y119{bottom:366.213333pt;}
.y2b{bottom:366.813333pt;}
.y1b{bottom:373.853333pt;}
.yb2{bottom:378.693333pt;}
.y79{bottom:380.613333pt;}
.y118{bottom:383.173333pt;}
.y2a{bottom:383.453333pt;}
.ye5{bottom:384.453333pt;}
.y1a{bottom:395.293333pt;}
.y78{bottom:397.253333pt;}
.yb3{bottom:397.573333pt;}
.y117{bottom:399.813333pt;}
.ye4{bottom:403.333333pt;}
.y29{bottom:407.773333pt;}
.y77{bottom:414.213333pt;}
.yb0{bottom:416.133333pt;}
.y19{bottom:416.733333pt;}
.y116{bottom:416.773333pt;}
.ye3{bottom:421.893333pt;}
.y28{bottom:423.133333pt;}
.y76{bottom:430.853333pt;}
.yb1{bottom:435.013333pt;}
.y18{bottom:438.173333pt;}
.y27{bottom:438.493333pt;}
.ye2{bottom:440.773333pt;}
.y115{bottom:441.413333pt;}
.y75{bottom:447.813333pt;}
.y26{bottom:453.893333pt;}
.y114{bottom:458.373333pt;}
.ye1{bottom:459.653333pt;}
.y17{bottom:459.973333pt;}
.y74{bottom:464.453333pt;}
.y25{bottom:469.253333pt;}
.yae{bottom:472.453333pt;}
.y113{bottom:475.013333pt;}
.ye0{bottom:478.240000pt;}
.y16{bottom:481.413333pt;}
.y73{bottom:481.440000pt;}
.y24{bottom:484.933333pt;}
.yab{bottom:491.360000pt;}
.y112{bottom:492.000000pt;}
.yde{bottom:497.120000pt;}
.y72{bottom:498.080000pt;}
.y23{bottom:500.293333pt;}
.y15{bottom:502.853333pt;}
.y111{bottom:508.640000pt;}
.yac{bottom:510.240000pt;}
.y71{bottom:515.040000pt;}
.y22{bottom:515.653333pt;}
.y14{bottom:524.293333pt;}
.y110{bottom:525.600000pt;}
.ya9{bottom:528.800000pt;}
.y21{bottom:531.013333pt;}
.y70{bottom:531.680000pt;}
.y10f{bottom:542.240000pt;}
.y13{bottom:545.733333pt;}
.y20{bottom:546.373333pt;}
.yaa{bottom:547.680000pt;}
.y6f{bottom:548.320000pt;}
.ydd{bottom:554.720000pt;}
.y10e{bottom:558.880000pt;}
.y6e{bottom:565.280000pt;}
.ya7{bottom:566.560000pt;}
.y12{bottom:567.173333pt;}
.y10d{bottom:575.840000pt;}
.y1f{bottom:577.120000pt;}
.ydc{bottom:579.680000pt;}
.y6d{bottom:581.920000pt;}
.ya8{bottom:585.440000pt;}
.y11{bottom:588.640000pt;}
.y10c{bottom:592.480000pt;}
.ydb{bottom:596.346667pt;}
.y6c{bottom:598.906667pt;}
.ya5{bottom:604.040000pt;}
.y10b{bottom:609.466667pt;}
.yda{bottom:613.306667pt;}
.y6b{bottom:615.546667pt;}
.ya6{bottom:622.920000pt;}
.y10a{bottom:626.106667pt;}
.yd9{bottom:629.946667pt;}
.y6a{bottom:632.506667pt;}
.ya3{bottom:641.800000pt;}
.y109{bottom:643.066667pt;}
.yd8{bottom:646.906667pt;}
.y69{bottom:649.146667pt;}
.y108{bottom:659.706667pt;}
.ya4{bottom:660.360000pt;}
.yd7{bottom:663.546667pt;}
.y68{bottom:666.106667pt;}
.y107{bottom:676.666667pt;}
.ya1{bottom:679.240000pt;}
.yd6{bottom:680.506667pt;}
.y67{bottom:690.746667pt;}
.y106{bottom:693.306667pt;}
.yd5{bottom:697.146667pt;}
.ya2{bottom:698.120000pt;}
.y66{bottom:707.386667pt;}
.yd4{bottom:713.826667pt;}
.y9e{bottom:716.720000pt;}
.y105{bottom:717.986667pt;}
.y65{bottom:726.626667pt;}
.yd3{bottom:730.786667pt;}
.y104{bottom:731.760000pt;}
.ya0{bottom:735.600000pt;}
.y64{bottom:743.266667pt;}
.yd2{bottom:747.426667pt;}
.y103{bottom:750.320000pt;}
.y9c{bottom:754.480000pt;}
.y63{bottom:759.906667pt;}
.yd1{bottom:764.386667pt;}
.y102{bottom:769.200000pt;}
.y9d{bottom:773.040000pt;}
.y62{bottom:776.866667pt;}
.y101{bottom:788.080000pt;}
.yd0{bottom:789.026667pt;}
.y97{bottom:791.920000pt;}
.y61{bottom:793.506667pt;}
.ycf{bottom:805.986667pt;}
.y100{bottom:806.640000pt;}
.y99{bottom:810.800000pt;}
.y60{bottom:812.386667pt;}
.yce{bottom:822.626667pt;}
.yfe{bottom:825.520000pt;}
.y5f{bottom:829.373333pt;}
.ycd{bottom:839.613333pt;}
.yfd{bottom:844.413333pt;}
.y5e{bottom:846.013333pt;}
.y96{bottom:848.253333pt;}
.ycc{bottom:856.253333pt;}
.yf{bottom:858.813333pt;}
.ye{bottom:861.053333pt;}
.y5d{bottom:862.973333pt;}
.y93{bottom:867.133333pt;}
.yd{bottom:868.093333pt;}
.ycb{bottom:872.893333pt;}
.y5c{bottom:879.613333pt;}
.yfc{bottom:881.853333pt;}
.y94{bottom:886.013333pt;}
.yc{bottom:891.773333pt;}
.y5b{bottom:896.253333pt;}
.yca{bottom:897.853333pt;}
.yfb{bottom:900.733333pt;}
.y8d{bottom:904.573333pt;}
.yb{bottom:910.333333pt;}
.yc9{bottom:914.493333pt;}
.y5a{bottom:915.453333pt;}
.yfa{bottom:919.293333pt;}
.ya{bottom:922.813333pt;}
.y90{bottom:923.453333pt;}
.yc8{bottom:931.453333pt;}
.yf9{bottom:938.173333pt;}
.y59{bottom:940.093333pt;}
.y9{bottom:942.013333pt;}
.y8b{bottom:942.333333pt;}
.yc7{bottom:948.133333pt;}
.y58{bottom:957.093333pt;}
.yc6{bottom:965.093333pt;}
.y8{bottom:966.693333pt;}
.y55{bottom:969.600000pt;}
.yf8{bottom:975.653333pt;}
.y57{bottom:981.733333pt;}
.y6{bottom:994.853333pt;}
.y1{bottom:996.133333pt;}
.h1a{height:5.022500pt;}
.h6{height:5.092500pt;}
.hd{height:16.770000pt;}
.h21{height:17.906667pt;}
.h33{height:17.916000pt;}
.h29{height:17.920000pt;}
.h26{height:17.938667pt;}
.h1f{height:17.946667pt;}
.h28{height:17.952000pt;}
.h22{height:18.226667pt;}
.h34{height:18.236000pt;}
.h2b{height:18.240000pt;}
.h2e{height:18.266667pt;}
.h32{height:18.268000pt;}
.h1c{height:24.640000pt;}
.h17{height:26.381250pt;}
.h16{height:31.406250pt;}
.ha{height:33.834240pt;}
.hb{height:35.060000pt;}
.h31{height:36.160000pt;}
.h10{height:36.431250pt;}
.h20{height:36.786667pt;}
.h2c{height:36.800000pt;}
.h25{height:36.818667pt;}
.h2d{height:36.826667pt;}
.h27{height:36.832000pt;}
.h24{height:37.106667pt;}
.h2a{height:37.120000pt;}
.hf{height:37.410000pt;}
.h18{height:47.713750pt;}
.h19{height:49.020000pt;}
.h11{height:49.713543pt;}
.h12{height:51.264000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.hc{height:54.180000pt;}
.h1b{height:54.349786pt;}
.h14{height:55.256809pt;}
.h1d{height:56.405000pt;}
.h3{height:58.563750pt;}
.h1e{height:62.812500pt;}
.h9{height:63.274240pt;}
.h23{height:63.656250pt;}
.h13{height:64.500000pt;}
.h2f{height:65.781915pt;}
.h30{height:66.625000pt;}
.h8{height:68.693760pt;}
.h2{height:78.106667pt;}
.h4{height:103.680000pt;}
.h15{height:170.920000pt;}
.he{height:596.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:30.708000pt;}
.we{width:41.266667pt;}
.wf{width:41.306667pt;}
.w18{width:45.140000pt;}
.w14{width:47.346667pt;}
.w13{width:47.360000pt;}
.wd{width:47.386667pt;}
.w11{width:47.392000pt;}
.w10{width:53.440000pt;}
.w12{width:53.458667pt;}
.w15{width:53.786667pt;}
.w16{width:65.300000pt;}
.w1a{width:73.586667pt;}
.w2{width:92.180000pt;}
.w17{width:96.660000pt;}
.wa{width:113.320000pt;}
.w19{width:114.280000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w1d{width:160.080000pt;}
.w1b{width:167.133333pt;}
.w1c{width:184.360000pt;}
.wb{width:233.373333pt;}
.wc{width:245.840000pt;}
.w7{width:311.160000pt;}
.w8{width:313.400000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x18{left:7.348000pt;}
.x28{left:9.280000pt;}
.x2d{left:10.560000pt;}
.x4{left:11.826667pt;}
.x2e{left:12.786667pt;}
.x33{left:13.760000pt;}
.x16{left:15.348000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x3d{left:19.542667pt;}
.x35{left:20.480000pt;}
.x3e{left:22.720000pt;}
.x36{left:23.680000pt;}
.x17{left:25.908000pt;}
.x45{left:30.400000pt;}
.x42{left:32.320000pt;}
.x6{left:33.906667pt;}
.x10{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x11{left:45.140000pt;}
.x15{left:48.020000pt;}
.xf{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x47{left:54.106667pt;}
.x1a{left:55.373333pt;}
.x1e{left:58.902667pt;}
.x40{left:61.786667pt;}
.x48{left:62.706667pt;}
.x13{left:66.902667pt;}
.x1{left:69.804000pt;}
.x14{left:74.582667pt;}
.x7{left:76.832000pt;}
.x41{left:78.093333pt;}
.x43{left:79.066667pt;}
.x3f{left:82.573333pt;}
.x2{left:84.822667pt;}
.x46{left:85.773333pt;}
.x44{left:87.373333pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x37{left:100.832000pt;}
.x12{left:110.742667pt;}
.x26{left:115.884000pt;}
.x38{left:118.124000pt;}
.x24{left:124.864000pt;}
.x3{left:162.000000pt;}
.x39{left:163.920000pt;}
.x34{left:181.840000pt;}
.x21{left:191.760000pt;}
.x19{left:194.640000pt;}
.x22{left:229.840000pt;}
.xb{left:248.093333pt;}
.xc{left:274.013333pt;}
.x29{left:277.893333pt;}
.x3a{left:278.853333pt;}
.x2a{left:319.813333pt;}
.x3b{left:353.413333pt;}
.x2b{left:361.760000pt;}
.x25{left:396.320000pt;}
.x2c{left:415.840000pt;}
.x27{left:463.880000pt;}
.xa{left:486.586667pt;}
.x2f{left:518.000000pt;}
.x3c{left:521.520000pt;}
.xd{left:522.786667pt;}
.x30{left:559.920000pt;}
.x31{left:607.933333pt;}
.x32{left:655.933333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xe{left:717.413333pt;}
}




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