
    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_d836c3895a787d83776cc3f2.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_9c6273b19e030ad375dc38da.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_9288660e62a67c025a7eb8d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_70a21efa6a3a3e3f8394eaaa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e94c7c2895198fb9b1cfc5f8.woff2')format("woff");}.ff7{font-family:ff7;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: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_f9ff06b415030e3d1788f16b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ef30ddf4630bf9fb3eac2761.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_d711e20052b15c6b13c8aab1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_70b69f9b1ca959641faa741e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_70b69f9b1ca959641faa741e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls40{letter-spacing:-1.206000px;}
.ls26{letter-spacing:-1.189005px;}
.ls42{letter-spacing:-0.972000px;}
.ls27{letter-spacing:-0.853806px;}
.ls41{letter-spacing:-0.804000px;}
.ls22{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.714668px;}
.ls2f{letter-spacing:-0.630000px;}
.ls1d{letter-spacing:-0.593400px;}
.ls19{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.555600px;}
.ls39{letter-spacing:-0.507000px;}
.ls28{letter-spacing:-0.385794px;}
.ls23{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.349112px;}
.ls31{letter-spacing:-0.234006px;}
.ls2a{letter-spacing:-0.218827px;}
.ls2c{letter-spacing:-0.185308px;}
.ls21{letter-spacing:-0.089400px;}
.ls2e{letter-spacing:-0.072000px;}
.ls18{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.012143px;}
.ls34{letter-spacing:0.020160px;}
.ls37{letter-spacing:0.032160px;}
.ls1f{letter-spacing:0.150000px;}
.ls3b{letter-spacing:0.181440px;}
.ls1{letter-spacing:0.195840px;}
.ls35{letter-spacing:0.233280px;}
.ls38{letter-spacing:0.233400px;}
.ls29{letter-spacing:0.330771px;}
.ls2b{letter-spacing:0.382632px;}
.ls1a{letter-spacing:0.388800px;}
.ls1e{letter-spacing:0.391800px;}
.ls16{letter-spacing:0.423360px;}
.ls0{letter-spacing:0.466560px;}
.ls1b{letter-spacing:0.466800px;}
.ls3c{letter-spacing:0.486600px;}
.ls3d{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.525186px;}
.ls20{letter-spacing:0.618000px;}
.ls6{letter-spacing:0.661795px;}
.ls24{letter-spacing:0.664072px;}
.ls2d{letter-spacing:0.695694px;}
.ls5{letter-spacing:0.714921px;}
.ls2{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.738000px;}
.ls3f{letter-spacing:1.906560px;}
.lse{letter-spacing:2.179673px;}
.ls33{letter-spacing:2.181950px;}
.lsf{letter-spacing:2.306163px;}
.ls3{letter-spacing:5.215429px;}
.ls4{letter-spacing:6.733307px;}
.ls17{letter-spacing:6.859797px;}
.ls10{letter-spacing:6.923042px;}
.ls44{letter-spacing:7.666560px;}
.ls8{letter-spacing:8.251185px;}
.lsc{letter-spacing:9.769063px;}
.lsd{letter-spacing:9.895553px;}
.ls12{letter-spacing:11.286942px;}
.ls13{letter-spacing:11.413431px;}
.ls11{letter-spacing:12.804820px;}
.ls14{letter-spacing:12.994554px;}
.ls15{letter-spacing:14.322698px;}
.ls9{letter-spacing:15.840576px;}
.lsb{letter-spacing:17.358454px;}
.lsa{letter-spacing:17.548189px;}
.ls3e{letter-spacing:24.946560px;}
.ls36{letter-spacing:29.266560px;}
.ls43{letter-spacing:46.546560px;}
.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;}
}
.wsb{word-spacing:-19.293120px;}
.ws5{word-spacing:-18.399718px;}
.wsf{word-spacing:-17.300040px;}
.ws1{word-spacing:-17.280240px;}
.ws11{word-spacing:-17.202240px;}
.wse{word-spacing:-17.046840px;}
.ws12{word-spacing:-16.994880px;}
.wsc{word-spacing:-16.813440px;}
.ws14{word-spacing:-16.306440px;}
.wsd{word-spacing:-16.257840px;}
.ws10{word-spacing:-16.220040px;}
.ws6{word-spacing:-16.034864px;}
.ws13{word-spacing:-15.607440px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-10.549680px;}
._7{margin-left:-8.492677px;}
._5{margin-left:-5.026680px;}
._f{margin-left:-3.736432px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._6{width:4.931612px;}
._9{width:6.201407px;}
._8{width:7.555997px;}
._a{width:8.867512px;}
._10{width:10.039680px;}
._e{width:11.203738px;}
._d{width:12.617987px;}
._11{width:13.648121px;}
._b{width:15.081890px;}
._c{width:17.539402px;}
._13{width:18.748800px;}
._15{width:25.102672px;}
._14{width:26.550720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs9{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y39{bottom:4.320000px;}
.y4f{bottom:5.370000px;}
.ya4{bottom:5.385000px;}
.y96{bottom:5.400000px;}
.ya6{bottom:5.745000px;}
.y99{bottom:5.760000px;}
.y84{bottom:6.825000px;}
.y7a{bottom:6.840000px;}
.y88{bottom:7.185000px;}
.y7e{bottom:7.200000px;}
.y82{bottom:7.215000px;}
.y90{bottom:7.230000px;}
.y2{bottom:7.920000px;}
.y4d{bottom:10.795500px;}
.y4{bottom:21.240000px;}
.y38{bottom:24.480000px;}
.y95{bottom:27.000000px;}
.y4c{bottom:29.515500px;}
.y41{bottom:30.595500px;}
.y40{bottom:42.475500px;}
.y3{bottom:44.280000px;}
.y4b{bottom:51.511500px;}
.y3f{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y37{bottom:64.440000px;}
.y3e{bottom:68.794500px;}
.y4a{bottom:70.954500px;}
.y49{bottom:88.234500px;}
.y3d{bottom:90.394500px;}
.y36{bottom:93.600000px;}
.y48{bottom:94.714500px;}
.y3a{bottom:97.960500px;}
.y78{bottom:104.076000px;}
.yd6{bottom:108.396000px;}
.y47{bottom:110.554500px;}
.y35{bottom:113.760000px;}
.yac{bottom:118.836000px;}
.y46{bottom:126.034500px;}
.y77{bottom:129.996000px;}
.yd5{bottom:131.436000px;}
.y34{bottom:133.965000px;}
.y45{bottom:141.514500px;}
.yab{bottom:142.272000px;}
.y3c{bottom:152.674500px;}
.y33{bottom:154.125000px;}
.y76{bottom:156.315000px;}
.y44{bottom:156.994500px;}
.yd4{bottom:158.475000px;}
.yaa{bottom:162.435000px;}
.y3b{bottom:163.474500px;}
.y43{bottom:172.114500px;}
.y32{bottom:173.925000px;}
.yd3{bottom:178.635000px;}
.y75{bottom:182.235000px;}
.ya9{bottom:182.595000px;}
.y31{bottom:194.085000px;}
.ya8{bottom:199.170000px;}
.yd2{bottom:205.635000px;}
.y74{bottom:208.515000px;}
.y30{bottom:214.245000px;}
.ya7{bottom:221.490000px;}
.yd1{bottom:225.795000px;}
.y73{bottom:231.915000px;}
.y2f{bottom:234.405000px;}
.ya5{bottom:243.810000px;}
.yd0{bottom:245.955000px;}
.y72{bottom:252.075000px;}
.y2e{bottom:254.595000px;}
.ya3{bottom:266.490000px;}
.y71{bottom:271.875000px;}
.ycf{bottom:272.595000px;}
.y2d{bottom:285.915000px;}
.ya2{bottom:288.825000px;}
.yf{bottom:290.985000px;}
.y70{bottom:292.065000px;}
.yce{bottom:292.785000px;}
.y2c{bottom:309.315000px;}
.ya1{bottom:311.145000px;}
.y6f{bottom:312.225000px;}
.ycd{bottom:315.465000px;}
.y6e{bottom:332.385000px;}
.y2b{bottom:333.075000px;}
.ya0{bottom:338.145000px;}
.ycc{bottom:342.825000px;}
.y6d{bottom:352.545000px;}
.y1d{bottom:355.755000px;}
.y2a{bottom:356.475000px;}
.ycb{bottom:362.985000px;}
.y9f{bottom:366.945000px;}
.y1c{bottom:379.905000px;}
.y6c{bottom:382.065000px;}
.yca{bottom:383.145000px;}
.y9e{bottom:387.105000px;}
.yc9{bottom:403.305000px;}
.y29{bottom:403.665000px;}
.y1b{bottom:404.025000px;}
.y9d{bottom:407.310000px;}
.y6b{bottom:409.470000px;}
.y28{bottom:427.065000px;}
.y9c{bottom:427.470000px;}
.y1a{bottom:428.505000px;}
.yc8{bottom:430.350000px;}
.y6a{bottom:436.470000px;}
.y9b{bottom:447.630000px;}
.y27{bottom:450.465000px;}
.y19{bottom:452.625000px;}
.yc7{bottom:459.150000px;}
.y69{bottom:465.990000px;}
.y26{bottom:474.225000px;}
.y18{bottom:476.745000px;}
.y9a{bottom:479.310000px;}
.y68{bottom:495.870000px;}
.y25{bottom:497.625000px;}
.y98{bottom:499.110000px;}
.yc6{bottom:499.470000px;}
.y17{bottom:500.865000px;}
.yc5{bottom:519.630000px;}
.y24{bottom:521.070000px;}
.y97{bottom:521.790000px;}
.y16{bottom:525.030000px;}
.y67{bottom:525.750000px;}
.yc4{bottom:539.820000px;}
.y94{bottom:544.140000px;}
.y23{bottom:544.830000px;}
.y15{bottom:549.150000px;}
.y66{bottom:553.140000px;}
.yc3{bottom:559.980000px;}
.yf1{bottom:563.220000px;}
.y22{bottom:568.230000px;}
.y14{bottom:573.270000px;}
.yc2{bottom:579.780000px;}
.y65{bottom:580.140000px;}
.yf0{bottom:581.220000px;}
.y21{bottom:591.630000px;}
.y93{bottom:592.380000px;}
.y13{bottom:597.390000px;}
.yc1{bottom:599.940000px;}
.yef{bottom:604.260000px;}
.y64{bottom:606.780000px;}
.y20{bottom:615.390000px;}
.yc0{bottom:620.100000px;}
.y12{bottom:621.510000px;}
.y92{bottom:624.420000px;}
.yee{bottom:630.180000px;}
.y63{bottom:633.780000px;}
.y1f{bottom:638.790000px;}
.y91{bottom:644.220000px;}
.y11{bottom:645.660000px;}
.ybf{bottom:649.260000px;}
.yed{bottom:653.220000px;}
.y62{bottom:653.940000px;}
.y1e{bottom:662.220000px;}
.y8f{bottom:667.980000px;}
.ybe{bottom:669.450000px;}
.y10{bottom:669.780000px;}
.yec{bottom:675.570000px;}
.y61{bottom:683.130000px;}
.ybd{bottom:689.610000px;}
.y8e{bottom:692.145000px;}
.yeb{bottom:692.850000px;}
.y60{bottom:703.290000px;}
.ybc{bottom:709.410000px;}
.yea{bottom:710.130000px;}
.y8d{bottom:715.905000px;}
.y5f{bottom:725.970000px;}
.ye9{bottom:727.410000px;}
.ybb{bottom:729.570000px;}
.y8c{bottom:739.665000px;}
.ye8{bottom:744.690000px;}
.y5e{bottom:749.370000px;}
.yba{bottom:749.730000px;}
.ye7{bottom:761.970000px;}
.y8b{bottom:763.425000px;}
.yb9{bottom:769.890000px;}
.y5d{bottom:778.530000px;}
.ye6{bottom:779.250000px;}
.y8a{bottom:787.545000px;}
.yb8{bottom:790.050000px;}
.ye5{bottom:796.530000px;}
.y5c{bottom:798.690000px;}
.yb7{bottom:809.895000px;}
.y89{bottom:811.350000px;}
.ye4{bottom:813.855000px;}
.y5b{bottom:818.895000px;}
.yb6{bottom:830.055000px;}
.ye3{bottom:831.135000px;}
.y87{bottom:835.110000px;}
.y5a{bottom:838.695000px;}
.ye2{bottom:851.295000px;}
.yb5{bottom:857.055000px;}
.y86{bottom:859.230000px;}
.y59{bottom:870.735000px;}
.ye1{bottom:871.455000px;}
.yb4{bottom:877.215000px;}
.y85{bottom:882.990000px;}
.ye0{bottom:891.615000px;}
.y58{bottom:894.135000px;}
.yb3{bottom:897.375000px;}
.y83{bottom:906.750000px;}
.ydf{bottom:911.775000px;}
.y57{bottom:914.295000px;}
.yb2{bottom:917.535000px;}
.y81{bottom:930.510000px;}
.yde{bottom:931.575000px;}
.y56{bottom:943.485000px;}
.yb1{bottom:946.365000px;}
.ydd{bottom:951.765000px;}
.y80{bottom:954.645000px;}
.yb0{bottom:962.925000px;}
.y55{bottom:963.285000px;}
.ydc{bottom:971.925000px;}
.ye{bottom:973.005000px;}
.yd{bottom:975.885000px;}
.y7f{bottom:978.405000px;}
.yc{bottom:983.445000px;}
.yaf{bottom:985.605000px;}
.ydb{bottom:994.605000px;}
.y7d{bottom:1002.165000px;}
.y54{bottom:1003.605000px;}
.yb{bottom:1003.965000px;}
.yae{bottom:1007.925000px;}
.yda{bottom:1021.965000px;}
.y7c{bottom:1026.285000px;}
.ya{bottom:1030.245000px;}
.y53{bottom:1032.765000px;}
.yd9{bottom:1044.645000px;}
.y7b{bottom:1050.045000px;}
.y52{bottom:1052.925000px;}
.y9{bottom:1055.085000px;}
.yd8{bottom:1072.050000px;}
.y51{bottom:1072.770000px;}
.y79{bottom:1073.850000px;}
.yad{bottom:1075.290000px;}
.y8{bottom:1086.450000px;}
.y4e{bottom:1089.720000px;}
.yd7{bottom:1094.730000px;}
.y50{bottom:1101.930000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.hb{height:18.866250px;}
.h24{height:21.585000px;}
.h25{height:21.600000px;}
.h22{height:21.630000px;}
.h23{height:21.945000px;}
.h1a{height:23.025000px;}
.h20{height:23.040000px;}
.h1e{height:23.061000px;}
.h1b{height:23.070000px;}
.h1c{height:23.385000px;}
.h1d{height:23.400000px;}
.h1f{height:23.436000px;}
.h17{height:27.720000px;}
.h12{height:29.678906px;}
.h6{height:30.077578px;}
.h11{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h21{height:43.200000px;}
.h13{height:53.677969px;}
.h16{height:54.426094px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h27{height:59.328281px;}
.h5{height:59.357813px;}
.ha{height:60.952500px;}
.hf{height:61.143509px;}
.h26{height:62.163910px;}
.h18{height:63.455625px;}
.h9{height:64.112344px;}
.h3{height:65.884219px;}
.h19{height:76.324219px;}
.h2{height:81.390000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:192.285000px;}
.hc{height:679.125000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:44.310000px;}
.w12{width:46.110000px;}
.w10{width:93.636000px;}
.w11{width:93.981000px;}
.w14{width:93.996000px;}
.w15{width:100.461000px;}
.w8{width:100.470000px;}
.w2{width:103.702500px;}
.wa{width:115.200000px;}
.wf{width:117.750000px;}
.w13{width:120.630000px;}
.w4{width:132.502500px;}
.w7{width:142.245000px;}
.wc{width:154.470000px;}
.wb{width:154.515000px;}
.w6{width:163.080000px;}
.wd{width:195.210000px;}
.w9{width:296.370000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x17{left:8.266500px;}
.x3b{left:9.360000px;}
.x47{left:10.777500px;}
.x26{left:11.880000px;}
.x4{left:13.305000px;}
.x2d{left:15.840000px;}
.x15{left:17.266500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x2a{left:21.600000px;}
.x34{left:25.200000px;}
.x3d{left:26.280000px;}
.x16{left:29.146500px;}
.x2b{left:31.680000px;}
.x39{left:32.760000px;}
.x37{left:33.840000px;}
.x2f{left:35.640000px;}
.x4d{left:37.080000px;}
.x6{left:38.145000px;}
.x45{left:39.990000px;}
.x31{left:41.025000px;}
.x41{left:42.460500px;}
.xf{left:43.906500px;}
.x36{left:45.375000px;}
.x1b{left:47.542500px;}
.x29{left:48.615000px;}
.x10{left:50.782500px;}
.x46{left:52.920000px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1d{left:57.262500px;}
.x3a{left:58.335000px;}
.x3e{left:61.200000px;}
.x1c{left:66.265500px;}
.x2e{left:71.310000px;}
.x2c{left:73.830000px;}
.x12{left:75.265500px;}
.x1{left:78.529500px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x35{left:90.750000px;}
.x2{left:95.425500px;}
.x1f{left:99.420000px;}
.x38{left:100.830000px;}
.x1e{left:102.985500px;}
.x32{left:104.430000px;}
.x19{left:106.945500px;}
.x33{left:113.430000px;}
.x30{left:115.950000px;}
.x11{left:124.585500px;}
.x28{left:128.190000px;}
.x3c{left:131.070000px;}
.x40{left:135.814500px;}
.x20{left:142.980000px;}
.x24{left:176.490000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x42{left:252.105000px;}
.x23{left:260.025000px;}
.x4f{left:265.065000px;}
.x49{left:270.825000px;}
.x48{left:305.025000px;}
.x4e{left:309.345000px;}
.x50{left:311.910000px;}
.xb{left:314.790000px;}
.x4a{left:315.870000px;}
.x25{left:319.470000px;}
.x3f{left:333.870000px;}
.x21{left:381.045000px;}
.x43{left:407.340000px;}
.x27{left:420.660000px;}
.x51{left:433.260000px;}
.x4b{left:434.340000px;}
.x4c{left:528.705000px;}
.x44{left:562.545000px;}
.xc{left:584.895000px;}
.xa{left:670.605000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls40{letter-spacing:-1.072000pt;}
.ls26{letter-spacing:-1.056893pt;}
.ls42{letter-spacing:-0.864000pt;}
.ls27{letter-spacing:-0.758939pt;}
.ls41{letter-spacing:-0.714667pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.635260pt;}
.ls2f{letter-spacing:-0.560000pt;}
.ls1d{letter-spacing:-0.527467pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.493867pt;}
.ls39{letter-spacing:-0.450667pt;}
.ls28{letter-spacing:-0.342928pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.310322pt;}
.ls31{letter-spacing:-0.208006pt;}
.ls2a{letter-spacing:-0.194513pt;}
.ls2c{letter-spacing:-0.164718pt;}
.ls21{letter-spacing:-0.079467pt;}
.ls2e{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.010794pt;}
.ls34{letter-spacing:0.017920pt;}
.ls37{letter-spacing:0.028587pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls3b{letter-spacing:0.161280pt;}
.ls1{letter-spacing:0.174080pt;}
.ls35{letter-spacing:0.207360pt;}
.ls38{letter-spacing:0.207467pt;}
.ls29{letter-spacing:0.294019pt;}
.ls2b{letter-spacing:0.340117pt;}
.ls1a{letter-spacing:0.345600pt;}
.ls1e{letter-spacing:0.348267pt;}
.ls16{letter-spacing:0.376320pt;}
.ls0{letter-spacing:0.414720pt;}
.ls1b{letter-spacing:0.414933pt;}
.ls3c{letter-spacing:0.432533pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.466832pt;}
.ls20{letter-spacing:0.549333pt;}
.ls6{letter-spacing:0.588262pt;}
.ls24{letter-spacing:0.590286pt;}
.ls2d{letter-spacing:0.618395pt;}
.ls5{letter-spacing:0.635485pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.656000pt;}
.ls3f{letter-spacing:1.694720pt;}
.lse{letter-spacing:1.937487pt;}
.ls33{letter-spacing:1.939511pt;}
.lsf{letter-spacing:2.049922pt;}
.ls3{letter-spacing:4.635937pt;}
.ls4{letter-spacing:5.985162pt;}
.ls17{letter-spacing:6.097597pt;}
.ls10{letter-spacing:6.153815pt;}
.ls44{letter-spacing:6.814720pt;}
.ls8{letter-spacing:7.334387pt;}
.lsc{letter-spacing:8.683612pt;}
.lsd{letter-spacing:8.796047pt;}
.ls12{letter-spacing:10.032837pt;}
.ls13{letter-spacing:10.145272pt;}
.ls11{letter-spacing:11.382062pt;}
.ls14{letter-spacing:11.550715pt;}
.ls15{letter-spacing:12.731287pt;}
.ls9{letter-spacing:14.080512pt;}
.lsb{letter-spacing:15.429737pt;}
.lsa{letter-spacing:15.598390pt;}
.ls3e{letter-spacing:22.174720pt;}
.ls36{letter-spacing:26.014720pt;}
.ls43{letter-spacing:41.374720pt;}
.wsb{word-spacing:-17.149440pt;}
.ws5{word-spacing:-16.355305pt;}
.wsf{word-spacing:-15.377813pt;}
.ws1{word-spacing:-15.360213pt;}
.ws11{word-spacing:-15.290880pt;}
.wse{word-spacing:-15.152747pt;}
.ws12{word-spacing:-15.106560pt;}
.wsc{word-spacing:-14.945280pt;}
.ws14{word-spacing:-14.494613pt;}
.wsd{word-spacing:-14.451413pt;}
.ws10{word-spacing:-14.417813pt;}
.ws6{word-spacing:-14.253213pt;}
.ws13{word-spacing:-13.873280pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-9.377493pt;}
._7{margin-left:-7.549046pt;}
._5{margin-left:-4.468160pt;}
._f{margin-left:-3.321273pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._6{width:4.383655pt;}
._9{width:5.512362pt;}
._8{width:6.716442pt;}
._a{width:7.882233pt;}
._10{width:8.924160pt;}
._e{width:9.958878pt;}
._d{width:11.215988pt;}
._11{width:12.131663pt;}
._b{width:13.406124pt;}
._c{width:15.590580pt;}
._13{width:16.665600pt;}
._15{width:22.313486pt;}
._14{width:23.600640pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs9{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y39{bottom:3.840000pt;}
.y4f{bottom:4.773333pt;}
.ya4{bottom:4.786667pt;}
.y96{bottom:4.800000pt;}
.ya6{bottom:5.106667pt;}
.y99{bottom:5.120000pt;}
.y84{bottom:6.066667pt;}
.y7a{bottom:6.080000pt;}
.y88{bottom:6.386667pt;}
.y7e{bottom:6.400000pt;}
.y82{bottom:6.413333pt;}
.y90{bottom:6.426667pt;}
.y2{bottom:7.040000pt;}
.y4d{bottom:9.596000pt;}
.y4{bottom:18.880000pt;}
.y38{bottom:21.760000pt;}
.y95{bottom:24.000000pt;}
.y4c{bottom:26.236000pt;}
.y41{bottom:27.196000pt;}
.y40{bottom:37.756000pt;}
.y3{bottom:39.360000pt;}
.y4b{bottom:45.788000pt;}
.y3f{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y37{bottom:57.280000pt;}
.y3e{bottom:61.150667pt;}
.y4a{bottom:63.070667pt;}
.y49{bottom:78.430667pt;}
.y3d{bottom:80.350667pt;}
.y36{bottom:83.200000pt;}
.y48{bottom:84.190667pt;}
.y3a{bottom:87.076000pt;}
.y78{bottom:92.512000pt;}
.yd6{bottom:96.352000pt;}
.y47{bottom:98.270667pt;}
.y35{bottom:101.120000pt;}
.yac{bottom:105.632000pt;}
.y46{bottom:112.030667pt;}
.y77{bottom:115.552000pt;}
.yd5{bottom:116.832000pt;}
.y34{bottom:119.080000pt;}
.y45{bottom:125.790667pt;}
.yab{bottom:126.464000pt;}
.y3c{bottom:135.710667pt;}
.y33{bottom:137.000000pt;}
.y76{bottom:138.946667pt;}
.y44{bottom:139.550667pt;}
.yd4{bottom:140.866667pt;}
.yaa{bottom:144.386667pt;}
.y3b{bottom:145.310667pt;}
.y43{bottom:152.990667pt;}
.y32{bottom:154.600000pt;}
.yd3{bottom:158.786667pt;}
.y75{bottom:161.986667pt;}
.ya9{bottom:162.306667pt;}
.y31{bottom:172.520000pt;}
.ya8{bottom:177.040000pt;}
.yd2{bottom:182.786667pt;}
.y74{bottom:185.346667pt;}
.y30{bottom:190.440000pt;}
.ya7{bottom:196.880000pt;}
.yd1{bottom:200.706667pt;}
.y73{bottom:206.146667pt;}
.y2f{bottom:208.360000pt;}
.ya5{bottom:216.720000pt;}
.yd0{bottom:218.626667pt;}
.y72{bottom:224.066667pt;}
.y2e{bottom:226.306667pt;}
.ya3{bottom:236.880000pt;}
.y71{bottom:241.666667pt;}
.ycf{bottom:242.306667pt;}
.y2d{bottom:254.146667pt;}
.ya2{bottom:256.733333pt;}
.yf{bottom:258.653333pt;}
.y70{bottom:259.613333pt;}
.yce{bottom:260.253333pt;}
.y2c{bottom:274.946667pt;}
.ya1{bottom:276.573333pt;}
.y6f{bottom:277.533333pt;}
.ycd{bottom:280.413333pt;}
.y6e{bottom:295.453333pt;}
.y2b{bottom:296.066667pt;}
.ya0{bottom:300.573333pt;}
.ycc{bottom:304.733333pt;}
.y6d{bottom:313.373333pt;}
.y1d{bottom:316.226667pt;}
.y2a{bottom:316.866667pt;}
.ycb{bottom:322.653333pt;}
.y9f{bottom:326.173333pt;}
.y1c{bottom:337.693333pt;}
.y6c{bottom:339.613333pt;}
.yca{bottom:340.573333pt;}
.y9e{bottom:344.093333pt;}
.yc9{bottom:358.493333pt;}
.y29{bottom:358.813333pt;}
.y1b{bottom:359.133333pt;}
.y9d{bottom:362.053333pt;}
.y6b{bottom:363.973333pt;}
.y28{bottom:379.613333pt;}
.y9c{bottom:379.973333pt;}
.y1a{bottom:380.893333pt;}
.yc8{bottom:382.533333pt;}
.y6a{bottom:387.973333pt;}
.y9b{bottom:397.893333pt;}
.y27{bottom:400.413333pt;}
.y19{bottom:402.333333pt;}
.yc7{bottom:408.133333pt;}
.y69{bottom:414.213333pt;}
.y26{bottom:421.533333pt;}
.y18{bottom:423.773333pt;}
.y9a{bottom:426.053333pt;}
.y68{bottom:440.773333pt;}
.y25{bottom:442.333333pt;}
.y98{bottom:443.653333pt;}
.yc6{bottom:443.973333pt;}
.y17{bottom:445.213333pt;}
.yc5{bottom:461.893333pt;}
.y24{bottom:463.173333pt;}
.y97{bottom:463.813333pt;}
.y16{bottom:466.693333pt;}
.y67{bottom:467.333333pt;}
.yc4{bottom:479.840000pt;}
.y94{bottom:483.680000pt;}
.y23{bottom:484.293333pt;}
.y15{bottom:488.133333pt;}
.y66{bottom:491.680000pt;}
.yc3{bottom:497.760000pt;}
.yf1{bottom:500.640000pt;}
.y22{bottom:505.093333pt;}
.y14{bottom:509.573333pt;}
.yc2{bottom:515.360000pt;}
.y65{bottom:515.680000pt;}
.yf0{bottom:516.640000pt;}
.y21{bottom:525.893333pt;}
.y93{bottom:526.560000pt;}
.y13{bottom:531.013333pt;}
.yc1{bottom:533.280000pt;}
.yef{bottom:537.120000pt;}
.y64{bottom:539.360000pt;}
.y20{bottom:547.013333pt;}
.yc0{bottom:551.200000pt;}
.y12{bottom:552.453333pt;}
.y92{bottom:555.040000pt;}
.yee{bottom:560.160000pt;}
.y63{bottom:563.360000pt;}
.y1f{bottom:567.813333pt;}
.y91{bottom:572.640000pt;}
.y11{bottom:573.920000pt;}
.ybf{bottom:577.120000pt;}
.yed{bottom:580.640000pt;}
.y62{bottom:581.280000pt;}
.y1e{bottom:588.640000pt;}
.y8f{bottom:593.760000pt;}
.ybe{bottom:595.066667pt;}
.y10{bottom:595.360000pt;}
.yec{bottom:600.506667pt;}
.y61{bottom:607.226667pt;}
.ybd{bottom:612.986667pt;}
.y8e{bottom:615.240000pt;}
.yeb{bottom:615.866667pt;}
.y60{bottom:625.146667pt;}
.ybc{bottom:630.586667pt;}
.yea{bottom:631.226667pt;}
.y8d{bottom:636.360000pt;}
.y5f{bottom:645.306667pt;}
.ye9{bottom:646.586667pt;}
.ybb{bottom:648.506667pt;}
.y8c{bottom:657.480000pt;}
.ye8{bottom:661.946667pt;}
.y5e{bottom:666.106667pt;}
.yba{bottom:666.426667pt;}
.ye7{bottom:677.306667pt;}
.y8b{bottom:678.600000pt;}
.yb9{bottom:684.346667pt;}
.y5d{bottom:692.026667pt;}
.ye6{bottom:692.666667pt;}
.y8a{bottom:700.040000pt;}
.yb8{bottom:702.266667pt;}
.ye5{bottom:708.026667pt;}
.y5c{bottom:709.946667pt;}
.yb7{bottom:719.906667pt;}
.y89{bottom:721.200000pt;}
.ye4{bottom:723.426667pt;}
.y5b{bottom:727.906667pt;}
.yb6{bottom:737.826667pt;}
.ye3{bottom:738.786667pt;}
.y87{bottom:742.320000pt;}
.y5a{bottom:745.506667pt;}
.ye2{bottom:756.706667pt;}
.yb5{bottom:761.826667pt;}
.y86{bottom:763.760000pt;}
.y59{bottom:773.986667pt;}
.ye1{bottom:774.626667pt;}
.yb4{bottom:779.746667pt;}
.y85{bottom:784.880000pt;}
.ye0{bottom:792.546667pt;}
.y58{bottom:794.786667pt;}
.yb3{bottom:797.666667pt;}
.y83{bottom:806.000000pt;}
.ydf{bottom:810.466667pt;}
.y57{bottom:812.706667pt;}
.yb2{bottom:815.586667pt;}
.y81{bottom:827.120000pt;}
.yde{bottom:828.066667pt;}
.y56{bottom:838.653333pt;}
.yb1{bottom:841.213333pt;}
.ydd{bottom:846.013333pt;}
.y80{bottom:848.573333pt;}
.yb0{bottom:855.933333pt;}
.y55{bottom:856.253333pt;}
.ydc{bottom:863.933333pt;}
.ye{bottom:864.893333pt;}
.yd{bottom:867.453333pt;}
.y7f{bottom:869.693333pt;}
.yc{bottom:874.173333pt;}
.yaf{bottom:876.093333pt;}
.ydb{bottom:884.093333pt;}
.y7d{bottom:890.813333pt;}
.y54{bottom:892.093333pt;}
.yb{bottom:892.413333pt;}
.yae{bottom:895.933333pt;}
.yda{bottom:908.413333pt;}
.y7c{bottom:912.253333pt;}
.ya{bottom:915.773333pt;}
.y53{bottom:918.013333pt;}
.yd9{bottom:928.573333pt;}
.y7b{bottom:933.373333pt;}
.y52{bottom:935.933333pt;}
.y9{bottom:937.853333pt;}
.yd8{bottom:952.933333pt;}
.y51{bottom:953.573333pt;}
.y79{bottom:954.533333pt;}
.yad{bottom:955.813333pt;}
.y8{bottom:965.733333pt;}
.y4e{bottom:968.640000pt;}
.yd7{bottom:973.093333pt;}
.y50{bottom:979.493333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.hb{height:16.770000pt;}
.h24{height:19.186667pt;}
.h25{height:19.200000pt;}
.h22{height:19.226667pt;}
.h23{height:19.506667pt;}
.h1a{height:20.466667pt;}
.h20{height:20.480000pt;}
.h1e{height:20.498667pt;}
.h1b{height:20.506667pt;}
.h1c{height:20.786667pt;}
.h1d{height:20.800000pt;}
.h1f{height:20.832000pt;}
.h17{height:24.640000pt;}
.h12{height:26.381250pt;}
.h6{height:26.735625pt;}
.h11{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h21{height:38.400000pt;}
.h13{height:47.713750pt;}
.h16{height:48.378750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h27{height:52.736250pt;}
.h5{height:52.762500pt;}
.ha{height:54.180000pt;}
.hf{height:54.349786pt;}
.h26{height:55.256809pt;}
.h18{height:56.405000pt;}
.h9{height:56.988750pt;}
.h3{height:58.563750pt;}
.h19{height:67.843750pt;}
.h2{height:72.346667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:170.920000pt;}
.hc{height:603.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:39.386667pt;}
.w12{width:40.986667pt;}
.w10{width:83.232000pt;}
.w11{width:83.538667pt;}
.w14{width:83.552000pt;}
.w15{width:89.298667pt;}
.w8{width:89.306667pt;}
.w2{width:92.180000pt;}
.wa{width:102.400000pt;}
.wf{width:104.666667pt;}
.w13{width:107.226667pt;}
.w4{width:117.780000pt;}
.w7{width:126.440000pt;}
.wc{width:137.306667pt;}
.wb{width:137.346667pt;}
.w6{width:144.960000pt;}
.wd{width:173.520000pt;}
.w9{width:263.440000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x17{left:7.348000pt;}
.x3b{left:8.320000pt;}
.x47{left:9.580000pt;}
.x26{left:10.560000pt;}
.x4{left:11.826667pt;}
.x2d{left:14.080000pt;}
.x15{left:15.348000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x2a{left:19.200000pt;}
.x34{left:22.400000pt;}
.x3d{left:23.360000pt;}
.x16{left:25.908000pt;}
.x2b{left:28.160000pt;}
.x39{left:29.120000pt;}
.x37{left:30.080000pt;}
.x2f{left:31.680000pt;}
.x4d{left:32.960000pt;}
.x6{left:33.906667pt;}
.x45{left:35.546667pt;}
.x31{left:36.466667pt;}
.x41{left:37.742667pt;}
.xf{left:39.028000pt;}
.x36{left:40.333333pt;}
.x1b{left:42.260000pt;}
.x29{left:43.213333pt;}
.x10{left:45.140000pt;}
.x46{left:47.040000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x3a{left:51.853333pt;}
.x3e{left:54.400000pt;}
.x1c{left:58.902667pt;}
.x2e{left:63.386667pt;}
.x2c{left:65.626667pt;}
.x12{left:66.902667pt;}
.x1{left:69.804000pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x35{left:80.666667pt;}
.x2{left:84.822667pt;}
.x1f{left:88.373333pt;}
.x38{left:89.626667pt;}
.x1e{left:91.542667pt;}
.x32{left:92.826667pt;}
.x19{left:95.062667pt;}
.x33{left:100.826667pt;}
.x30{left:103.066667pt;}
.x11{left:110.742667pt;}
.x28{left:113.946667pt;}
.x3c{left:116.506667pt;}
.x40{left:120.724000pt;}
.x20{left:127.093333pt;}
.x24{left:156.880000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x42{left:224.093333pt;}
.x23{left:231.133333pt;}
.x4f{left:235.613333pt;}
.x49{left:240.733333pt;}
.x48{left:271.133333pt;}
.x4e{left:274.973333pt;}
.x50{left:277.253333pt;}
.xb{left:279.813333pt;}
.x4a{left:280.773333pt;}
.x25{left:283.973333pt;}
.x3f{left:296.773333pt;}
.x21{left:338.706667pt;}
.x43{left:362.080000pt;}
.x27{left:373.920000pt;}
.x51{left:385.120000pt;}
.x4b{left:386.080000pt;}
.x4c{left:469.960000pt;}
.x44{left:500.040000pt;}
.xc{left:519.906667pt;}
.xa{left:596.093333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{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; }
  