
    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_3663ec68eec5646a891aa03e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_df5f22e32c9cf081b582589b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_7e24d0f9603b3dfb675be443.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_8aca4d0a7583570f510376ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_436c95099dbb77471bbfdd84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_14019d1d8237af07ef8041ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844727;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_9b56e5da2bdd836dae996ca6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_9d43720dcee022e93f40cdf2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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);}
.v4{vertical-align:-80.640000px;}
.v6{vertical-align:-26.640000px;}
.v3{vertical-align:-24.480000px;}
.v1{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:26.640000px;}
.v2{vertical-align:60.480000px;}
.v5{vertical-align:70.560000px;}
.ls4c{letter-spacing:-7.935840px;}
.ls4f{letter-spacing:-2.885760px;}
.ls46{letter-spacing:-2.736000px;}
.ls1f{letter-spacing:-2.499120px;}
.ls3b{letter-spacing:-2.298240px;}
.lsb{letter-spacing:-1.980000px;}
.ls4d{letter-spacing:-1.923840px;}
.ls41{letter-spacing:-1.712880px;}
.ls35{letter-spacing:-1.620000px;}
.ls25{letter-spacing:-1.347840px;}
.ls3a{letter-spacing:-0.957600px;}
.ls4e{letter-spacing:-0.841680px;}
.ls50{letter-spacing:-0.721440px;}
.ls51{letter-spacing:-0.360720px;}
.ls4a{letter-spacing:-0.335520px;}
.ls34{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.312480px;}
.ls26{letter-spacing:-0.299520px;}
.ls45{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.287280px;}
.ls3f{letter-spacing:-0.240480px;}
.ls3{letter-spacing:-0.192240px;}
.ls39{letter-spacing:-0.191520px;}
.ls7{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.162000px;}
.ls24{letter-spacing:-0.149760px;}
.ls19{letter-spacing:-0.131760px;}
.ls1c{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.095760px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.064800px;}
.ls44{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.074160px;}
.ls3e{letter-spacing:0.075600px;}
.ls2d{letter-spacing:0.095760px;}
.ls29{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.120240px;}
.ls17{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.156240px;}
.lsf{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.191520px;}
.ls2a{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.240480px;}
.ls1a{letter-spacing:0.263520px;}
.ls0{letter-spacing:0.264240px;}
.ls36{letter-spacing:0.287280px;}
.ls23{letter-spacing:0.299520px;}
.lsd{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.332640px;}
.lsa{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.360720px;}
.ls32{letter-spacing:0.383040px;}
.ls48{letter-spacing:0.384480px;}
.ls30{letter-spacing:0.421344px;}
.ls22{letter-spacing:0.748800px;}
.ls28{letter-spacing:0.756000px;}
.ls11{letter-spacing:1.185840px;}
.ls33{letter-spacing:1.436400px;}
.ls21{letter-spacing:1.497600px;}
.ls2e{letter-spacing:1.503432px;}
.ls4{letter-spacing:1.620000px;}
.ls31{letter-spacing:2.106720px;}
.ls18{letter-spacing:8.615520px;}
.ls5{letter-spacing:11.305440px;}
.ls42{letter-spacing:17.657400px;}
.lsc{letter-spacing:17.658000px;}
.ls43{letter-spacing:21.023400px;}
.ls20{letter-spacing:28.563840px;}
.ls40{letter-spacing:30.742560px;}
.ls12{letter-spacing:39.889440px;}
.ls49{letter-spacing:42.085440px;}
.ls10{letter-spacing:44.601840px;}
.ls4b{letter-spacing:54.866160px;}
.ls2c{letter-spacing:59.326560px;}
.ls27{letter-spacing:65.772000px;}
.ls3d{letter-spacing:75.312000px;}
.ls14{letter-spacing:77.592960px;}
.ls47{letter-spacing:94.716000px;}
.ls16{letter-spacing:95.824800px;}
.ls3c{letter-spacing:119.916000px;}
.ls15{letter-spacing:321.120000px;}
.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;}
}
.ws23{word-spacing:-131.760000px;}
.ws21{word-spacing:-120.240000px;}
.ws22{word-spacing:-85.731120px;}
.ws1f{word-spacing:-85.334328px;}
.ws20{word-spacing:-84.168000px;}
.ws0{word-spacing:-59.982480px;}
.ws1{word-spacing:-43.254000px;}
.ws2b{word-spacing:-40.947120px;}
.ws7{word-spacing:-40.860000px;}
.ws10{word-spacing:-40.500000px;}
.wsf{word-spacing:-38.700000px;}
.ws5c{word-spacing:-37.578240px;}
.ws16{word-spacing:-36.450000px;}
.ws15{word-spacing:-35.466480px;}
.ws30{word-spacing:-34.145280px;}
.ws32{word-spacing:-33.845760px;}
.ws2f{word-spacing:-33.696000px;}
.ws4f{word-spacing:-33.546240px;}
.ws56{word-spacing:-32.688000px;}
.ws31{word-spacing:-32.497920px;}
.ws57{word-spacing:-29.808000px;}
.ws1e{word-spacing:-29.646000px;}
.ws50{word-spacing:-28.064880px;}
.ws2{word-spacing:-27.414720px;}
.ws67{word-spacing:-27.294480px;}
.ws64{word-spacing:-27.174240px;}
.ws62{word-spacing:-27.054000px;}
.ws61{word-spacing:-26.933760px;}
.ws68{word-spacing:-26.813520px;}
.ws66{word-spacing:-26.452800px;}
.ws63{word-spacing:-25.250400px;}
.ws38{word-spacing:-24.624000px;}
.ws37{word-spacing:-24.516000px;}
.ws65{word-spacing:-24.288480px;}
.ws3b{word-spacing:-22.024800px;}
.ws39{word-spacing:-21.737520px;}
.ws3f{word-spacing:-21.641760px;}
.ws3c{word-spacing:-21.450240px;}
.ws3a{word-spacing:-21.354480px;}
.ws3e{word-spacing:-20.684160px;}
.ws40{word-spacing:-19.343520px;}
.ws6b{word-spacing:-2.885760px;}
.wsd{word-spacing:-2.343600px;}
.ws6a{word-spacing:-2.164320px;}
.ws72{word-spacing:-2.044080px;}
.ws1d{word-spacing:-1.944000px;}
.ws4b{word-spacing:-1.442880px;}
.wsb{word-spacing:-1.406160px;}
.ws11{word-spacing:-1.260000px;}
.ws70{word-spacing:-1.202400px;}
.ws54{word-spacing:-1.185840px;}
.ws6d{word-spacing:-1.082160px;}
.ws2c{word-spacing:-1.056960px;}
.ws17{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.937440px;}
.ws13{word-spacing:-0.900000px;}
.ws1c{word-spacing:-0.810000px;}
.ws52{word-spacing:-0.790560px;}
.ws9{word-spacing:-0.781200px;}
.ws5{word-spacing:-0.721440px;}
.ws19{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.527040px;}
.ws18{word-spacing:-0.486000px;}
.ws6{word-spacing:-0.480960px;}
.wse{word-spacing:-0.468720px;}
.ws6e{word-spacing:-0.360720px;}
.ws1b{word-spacing:-0.324000px;}
.ws33{word-spacing:-0.299520px;}
.ws45{word-spacing:-0.287280px;}
.ws4{word-spacing:-0.264240px;}
.ws24{word-spacing:-0.263520px;}
.ws6f{word-spacing:-0.240480px;}
.ws4e{word-spacing:-0.216000px;}
.ws49{word-spacing:-0.191520px;}
.wsc{word-spacing:-0.180000px;}
.ws1a{word-spacing:-0.162000px;}
.ws5a{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.131760px;}
.ws42{word-spacing:-0.108000px;}
.ws3d{word-spacing:-0.095760px;}
.ws59{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws46{word-spacing:0.095760px;}
.ws4d{word-spacing:0.120240px;}
.ws55{word-spacing:0.131760px;}
.ws5b{word-spacing:0.144000px;}
.ws34{word-spacing:0.149760px;}
.ws58{word-spacing:0.162000px;}
.ws5e{word-spacing:0.167760px;}
.ws14{word-spacing:0.180000px;}
.ws5d{word-spacing:0.192240px;}
.ws28{word-spacing:0.240480px;}
.ws6c{word-spacing:0.360720px;}
.ws26{word-spacing:0.395280px;}
.ws4c{word-spacing:0.432000px;}
.ws35{word-spacing:0.449280px;}
.ws60{word-spacing:0.503280px;}
.ws51{word-spacing:0.527040px;}
.ws8{word-spacing:0.540000px;}
.ws2d{word-spacing:0.576720px;}
.ws43{word-spacing:0.648000px;}
.ws48{word-spacing:0.766080px;}
.ws71{word-spacing:0.841680px;}
.ws53{word-spacing:0.898560px;}
.ws27{word-spacing:0.922320px;}
.ws36{word-spacing:1.048320px;}
.ws41{word-spacing:1.080000px;}
.ws4a{word-spacing:1.202400px;}
.ws2a{word-spacing:1.317600px;}
.ws5f{word-spacing:1.342080px;}
.ws2e{word-spacing:1.345680px;}
.ws47{word-spacing:1.532160px;}
.ws44{word-spacing:1.620000px;}
.ws69{word-spacing:7.935840px;}
._6{margin-left:-17.735760px;}
._a{margin-left:-15.373728px;}
._8{margin-left:-13.314240px;}
._c{margin-left:-11.466576px;}
._b{margin-left:-9.886608px;}
._4{margin-left:-8.671320px;}
._7{margin-left:-6.285600px;}
._1{margin-left:-4.227840px;}
._2{margin-left:-2.500992px;}
._0{margin-left:-1.321200px;}
._3{width:1.039968px;}
._5{width:2.158992px;}
._9{width:3.340584px;}
._e{width:5.567112px;}
._d{width:7.695360px;}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:72.000000px;}
.fs7{font-size:87.840000px;}
.fsc{font-size:95.760000px;}
.fs9{font-size:96.480000px;}
.fsb{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs6{font-size:131.760000px;}
.fsd{font-size:144.000000px;}
.fsa{font-size:149.760000px;}
.fs4{font-size:156.240000px;}
.fs5{font-size:162.000000px;}
.fse{font-size:167.760000px;}
.fs3{font-size:180.000000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:2.696700px;}
.y3b{bottom:34.919850px;}
.y8e{bottom:35.096700px;}
.yad{bottom:40.467750px;}
.y43{bottom:47.339850px;}
.y9f{bottom:53.182020px;}
.y32{bottom:55.751850px;}
.y8d{bottom:67.496700px;}
.y7b{bottom:82.630170px;}
.yac{bottom:83.667750px;}
.y9e{bottom:84.870300px;}
.y59{bottom:86.726520px;}
.y67{bottom:93.513600px;}
.y31{bottom:94.631850px;}
.yc5{bottom:99.044070px;}
.y8c{bottom:99.896700px;}
.y24{bottom:103.860000px;}
.y7a{bottom:105.660600px;}
.y10{bottom:108.900000px;}
.y9d{bottom:124.470300px;}
.y8b{bottom:125.816700px;}
.yab{bottom:126.867750px;}
.yc4{bottom:127.841700px;}
.y66{bottom:129.530880px;}
.y1b{bottom:129.600000px;}
.y79{bottom:134.470170px;}
.y58{bottom:138.583260px;}
.y30{bottom:143.231850px;}
.y23{bottom:155.340000px;}
.y78{bottom:157.500600px;}
.y8a{bottom:158.216700px;}
.yf{bottom:160.380000px;}
.yc3{bottom:163.849110px;}
.y9c{bottom:164.062020px;}
.y65{bottom:165.548160px;}
.y4e{bottom:167.163570px;}
.yaa{bottom:170.067750px;}
.y1a{bottom:172.800000px;}
.y2f{bottom:182.111850px;}
.y77{bottom:186.300450px;}
.y57{bottom:190.440000px;}
.y89{bottom:190.616700px;}
.yc2{bottom:192.646590px;}
.y9b{bottom:195.750300px;}
.y4d{bottom:198.851850px;}
.y64{bottom:201.565440px;}
.y22{bottom:206.820000px;}
.y48{bottom:210.192000px;}
.ye{bottom:211.860000px;}
.ya9{bottom:213.267750px;}
.y76{bottom:215.110170px;}
.y19{bottom:216.000000px;}
.y2e{bottom:220.991850px;}
.yc1{bottom:221.444070px;}
.y88{bottom:223.016700px;}
.y4a{bottom:233.231850px;}
.y9a{bottom:235.350300px;}
.y4c{bottom:237.191850px;}
.y63{bottom:237.582720px;}
.y75{bottom:238.140450px;}
.yc0{bottom:250.241550px;}
.y4b{bottom:253.211850px;}
.y56{bottom:253.733040px;}
.y87{bottom:255.416700px;}
.ya8{bottom:256.467750px;}
.y49{bottom:256.991850px;}
.y21{bottom:258.300000px;}
.y47{bottom:262.211850px;}
.yd{bottom:264.960000px;}
.y74{bottom:266.950170px;}
.y2d{bottom:269.591850px;}
.y18{bottom:270.000000px;}
.y62{bottom:273.600000px;}
.y42{bottom:275.172000px;}
.y99{bottom:275.995740px;}
.yb3{bottom:282.600000px;}
.ybf{bottom:286.246590px;}
.y86{bottom:288.539220px;}
.y73{bottom:289.980450px;}
.y5{bottom:293.632410px;}
.ya7{bottom:300.747750px;}
.y55{bottom:305.589780px;}
.y2c{bottom:308.471850px;}
.y20{bottom:309.780000px;}
.y98{bottom:312.013020px;}
.y45{bottom:312.979770px;}
.y17{bottom:313.200000px;}
.yc{bottom:313.560000px;}
.ybe{bottom:315.044070px;}
.y85{bottom:317.336700px;}
.y61{bottom:318.530880px;}
.y72{bottom:318.780450px;}
.y41{bottom:321.251850px;}
.y44{bottom:332.414370px;}
.y4{bottom:336.828630px;}
.y46{bottom:341.411850px;}
.yb2{bottom:343.068120px;}
.ybd{bottom:343.841550px;}
.y97{bottom:348.030300px;}
.ya6{bottom:348.267750px;}
.y71{bottom:348.300450px;}
.y84{bottom:352.616700px;}
.y60{bottom:354.548160px;}
.y2b{bottom:357.071850px;}
.y54{bottom:357.446520px;}
.y1f{bottom:362.880000px;}
.y16{bottom:367.200000px;}
.yb{bottom:371.340000px;}
.y70{bottom:374.220450px;}
.ybc{bottom:379.846590px;}
.y3{bottom:380.024850px;}
.y40{bottom:382.084290px;}
.y83{bottom:385.016700px;}
.y5f{bottom:390.565440px;}
.ya5{bottom:391.467750px;}
.y96{bottom:391.942020px;}
.yb1{bottom:393.480000px;}
.y2a{bottom:395.951850px;}
.y3a{bottom:399.912000px;}
.y6f{bottom:400.140450px;}
.y3f{bottom:400.811850px;}
.ybb{bottom:408.644070px;}
.y53{bottom:409.303260px;}
.y15{bottom:410.400000px;}
.y39{bottom:415.931850px;}
.y82{bottom:417.416700px;}
.y1e{bottom:422.280000px;}
.ya{bottom:422.820000px;}
.y95{bottom:423.630300px;}
.y6e{bottom:426.060450px;}
.y5e{bottom:426.582720px;}
.y3e{bottom:427.631850px;}
.y3c{bottom:433.931850px;}
.y2{bottom:434.026800px;}
.ya4{bottom:434.667750px;}
.yba{bottom:437.441550px;}
.y3d{bottom:443.651850px;}
.y29{bottom:444.551850px;}
.y81{bottom:450.536700px;}
.y6d{bottom:451.980450px;}
.y14{bottom:453.600000px;}
.yb0{bottom:455.448240px;}
.y52{bottom:461.160000px;}
.y5d{bottom:462.600000px;}
.y94{bottom:463.222020px;}
.ya3{bottom:469.227750px;}
.y38{bottom:470.823570px;}
.y1d{bottom:470.880000px;}
.yb9{bottom:473.449110px;}
.y9{bottom:474.300000px;}
.y28{bottom:483.431850px;}
.y6c{bottom:484.380450px;}
.y80{bottom:485.816700px;}
.y93{bottom:494.910300px;}
.y13{bottom:496.800000px;}
.y1{bottom:500.164650px;}
.yb8{bottom:502.246590px;}
.y37{bottom:502.511850px;}
.y5c{bottom:507.582720px;}
.ya2{bottom:508.107750px;}
.y6b{bottom:510.300450px;}
.yaf{bottom:513.024120px;}
.y7f{bottom:518.216700px;}
.y27{bottom:522.311850px;}
.y51{bottom:524.503260px;}
.y8{bottom:525.780000px;}
.y1c{bottom:530.280000px;}
.ya1{bottom:530.787750px;}
.yb7{bottom:531.044070px;}
.y92{bottom:535.573020px;}
.y6a{bottom:536.220450px;}
.y12{bottom:540.000000px;}
.y36{bottom:542.095290px;}
.y5b{bottom:543.600000px;}
.y7e{bottom:550.616700px;}
.yb6{bottom:559.841550px;}
.y26{bottom:561.191850px;}
.y69{bottom:562.140450px;}
.yae{bottom:570.600000px;}
.y91{bottom:571.590300px;}
.y35{bottom:573.783570px;}
.y50{bottom:576.360000px;}
.y7{bottom:578.880000px;}
.y7d{bottom:583.016700px;}
.y11{bottom:583.200000px;}
.y5a{bottom:588.600000px;}
.yb5{bottom:595.844070px;}
.y25{bottom:600.071850px;}
.y34{bottom:605.471850px;}
.y7c{bottom:616.136700px;}
.yb4{bottom:624.641550px;}
.ya0{bottom:637.467450px;}
.y68{bottom:647.050350px;}
.y90{bottom:654.477150px;}
.y4f{bottom:662.982000px;}
.y33{bottom:671.487000px;}
.y6{bottom:687.922500px;}
.he{height:51.257812px;}
.h1c{height:51.679688px;}
.hd{height:62.534531px;}
.h19{height:68.733984px;}
.h18{height:69.201563px;}
.h17{height:77.519531px;}
.h16{height:78.046875px;}
.hc{height:80.640000px;}
.h11{height:85.600547px;}
.h3{height:86.305078px;}
.hb{height:86.892187px;}
.ha{height:94.573828px;}
.h9{height:95.217187px;}
.h1e{height:103.359375px;}
.h1d{height:104.062500px;}
.h15{height:107.493750px;}
.h14{height:108.225000px;}
.h10{height:109.440000px;}
.h1b{height:112.640625px;}
.h5{height:112.907813px;}
.h8{height:116.279297px;}
.h7{height:117.070312px;}
.h21{height:120.413672px;}
.h1a{height:125.406562px;}
.h6{height:129.199219px;}
.h4{height:130.078125px;}
.h12{height:133.094531px;}
.h2{height:137.984766px;}
.h13{height:138.923438px;}
.hf{height:146.785078px;}
.h20{height:174.968437px;}
.h1{height:189.664453px;}
.h1f{height:200.500313px;}
.h0{height:810.000000px;}
.w1{width:55.438500px;}
.w3{width:55.440000px;}
.w2{width:87.121500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:20.340000px;}
.x14{left:31.320000px;}
.x24{left:49.012050px;}
.x1f{left:57.516900px;}
.x7{left:64.800000px;}
.x1e{left:79.275000px;}
.x25{left:89.511900px;}
.x21{left:98.016900px;}
.x26{left:103.012050px;}
.x9{left:105.300000px;}
.x20{left:111.516900px;}
.x8{left:118.800000px;}
.x23{left:125.718750px;}
.x27{left:136.851900px;}
.x22{left:145.356900px;}
.x12{left:152.634240px;}
.x1d{left:201.318750px;}
.xc{left:208.695000px;}
.x1{left:215.355000px;}
.x1c{left:216.978750px;}
.xb{left:375.375000px;}
.x29{left:385.458750px;}
.x6{left:388.875000px;}
.x2{left:420.374850px;}
.xa{left:422.715000px;}
.x5{left:424.466070px;}
.x28{left:430.635000px;}
.x17{left:433.080000px;}
.x4{left:439.225530px;}
.xd{left:441.000000px;}
.x1a{left:468.900000px;}
.x13{left:473.220000px;}
.x10{left:476.820000px;}
.x11{left:480.240000px;}
.x19{left:484.020000px;}
.x18{left:487.620000px;}
.xf{left:496.980000px;}
.x1b{left:502.020000px;}
.x3{left:504.215250px;}
.x16{left:529.015680px;}
.x15{left:550.800000px;}
@media print{
.v4{vertical-align:-71.680000pt;}
.v6{vertical-align:-23.680000pt;}
.v3{vertical-align:-21.760000pt;}
.v1{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:23.680000pt;}
.v2{vertical-align:53.760000pt;}
.v5{vertical-align:62.720000pt;}
.ls4c{letter-spacing:-7.054080pt;}
.ls4f{letter-spacing:-2.565120pt;}
.ls46{letter-spacing:-2.432000pt;}
.ls1f{letter-spacing:-2.221440pt;}
.ls3b{letter-spacing:-2.042880pt;}
.lsb{letter-spacing:-1.760000pt;}
.ls4d{letter-spacing:-1.710080pt;}
.ls41{letter-spacing:-1.522560pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls25{letter-spacing:-1.198080pt;}
.ls3a{letter-spacing:-0.851200pt;}
.ls4e{letter-spacing:-0.748160pt;}
.ls50{letter-spacing:-0.641280pt;}
.ls51{letter-spacing:-0.320640pt;}
.ls4a{letter-spacing:-0.298240pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.277760pt;}
.ls26{letter-spacing:-0.266240pt;}
.ls45{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.255360pt;}
.ls3f{letter-spacing:-0.213760pt;}
.ls3{letter-spacing:-0.170880pt;}
.ls39{letter-spacing:-0.170240pt;}
.ls7{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.144000pt;}
.ls24{letter-spacing:-0.133120pt;}
.ls19{letter-spacing:-0.117120pt;}
.ls1c{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.085120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls44{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.065920pt;}
.ls3e{letter-spacing:0.067200pt;}
.ls2d{letter-spacing:0.085120pt;}
.ls29{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.106880pt;}
.ls17{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.138880pt;}
.lsf{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.170240pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.213760pt;}
.ls1a{letter-spacing:0.234240pt;}
.ls0{letter-spacing:0.234880pt;}
.ls36{letter-spacing:0.255360pt;}
.ls23{letter-spacing:0.266240pt;}
.lsd{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.295680pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.320640pt;}
.ls32{letter-spacing:0.340480pt;}
.ls48{letter-spacing:0.341760pt;}
.ls30{letter-spacing:0.374528pt;}
.ls22{letter-spacing:0.665600pt;}
.ls28{letter-spacing:0.672000pt;}
.ls11{letter-spacing:1.054080pt;}
.ls33{letter-spacing:1.276800pt;}
.ls21{letter-spacing:1.331200pt;}
.ls2e{letter-spacing:1.336384pt;}
.ls4{letter-spacing:1.440000pt;}
.ls31{letter-spacing:1.872640pt;}
.ls18{letter-spacing:7.658240pt;}
.ls5{letter-spacing:10.049280pt;}
.ls42{letter-spacing:15.695467pt;}
.lsc{letter-spacing:15.696000pt;}
.ls43{letter-spacing:18.687467pt;}
.ls20{letter-spacing:25.390080pt;}
.ls40{letter-spacing:27.326720pt;}
.ls12{letter-spacing:35.457280pt;}
.ls49{letter-spacing:37.409280pt;}
.ls10{letter-spacing:39.646080pt;}
.ls4b{letter-spacing:48.769920pt;}
.ls2c{letter-spacing:52.734720pt;}
.ls27{letter-spacing:58.464000pt;}
.ls3d{letter-spacing:66.944000pt;}
.ls14{letter-spacing:68.971520pt;}
.ls47{letter-spacing:84.192000pt;}
.ls16{letter-spacing:85.177600pt;}
.ls3c{letter-spacing:106.592000pt;}
.ls15{letter-spacing:285.440000pt;}
.ws23{word-spacing:-117.120000pt;}
.ws21{word-spacing:-106.880000pt;}
.ws22{word-spacing:-76.205440pt;}
.ws1f{word-spacing:-75.852736pt;}
.ws20{word-spacing:-74.816000pt;}
.ws0{word-spacing:-53.317760pt;}
.ws1{word-spacing:-38.448000pt;}
.ws2b{word-spacing:-36.397440pt;}
.ws7{word-spacing:-36.320000pt;}
.ws10{word-spacing:-36.000000pt;}
.wsf{word-spacing:-34.400000pt;}
.ws5c{word-spacing:-33.402880pt;}
.ws16{word-spacing:-32.400000pt;}
.ws15{word-spacing:-31.525760pt;}
.ws30{word-spacing:-30.351360pt;}
.ws32{word-spacing:-30.085120pt;}
.ws2f{word-spacing:-29.952000pt;}
.ws4f{word-spacing:-29.818880pt;}
.ws56{word-spacing:-29.056000pt;}
.ws31{word-spacing:-28.887040pt;}
.ws57{word-spacing:-26.496000pt;}
.ws1e{word-spacing:-26.352000pt;}
.ws50{word-spacing:-24.946560pt;}
.ws2{word-spacing:-24.368640pt;}
.ws67{word-spacing:-24.261760pt;}
.ws64{word-spacing:-24.154880pt;}
.ws62{word-spacing:-24.048000pt;}
.ws61{word-spacing:-23.941120pt;}
.ws68{word-spacing:-23.834240pt;}
.ws66{word-spacing:-23.513600pt;}
.ws63{word-spacing:-22.444800pt;}
.ws38{word-spacing:-21.888000pt;}
.ws37{word-spacing:-21.792000pt;}
.ws65{word-spacing:-21.589760pt;}
.ws3b{word-spacing:-19.577600pt;}
.ws39{word-spacing:-19.322240pt;}
.ws3f{word-spacing:-19.237120pt;}
.ws3c{word-spacing:-19.066880pt;}
.ws3a{word-spacing:-18.981760pt;}
.ws3e{word-spacing:-18.385920pt;}
.ws40{word-spacing:-17.194240pt;}
.ws6b{word-spacing:-2.565120pt;}
.wsd{word-spacing:-2.083200pt;}
.ws6a{word-spacing:-1.923840pt;}
.ws72{word-spacing:-1.816960pt;}
.ws1d{word-spacing:-1.728000pt;}
.ws4b{word-spacing:-1.282560pt;}
.wsb{word-spacing:-1.249920pt;}
.ws11{word-spacing:-1.120000pt;}
.ws70{word-spacing:-1.068800pt;}
.ws54{word-spacing:-1.054080pt;}
.ws6d{word-spacing:-0.961920pt;}
.ws2c{word-spacing:-0.939520pt;}
.ws17{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.833280pt;}
.ws13{word-spacing:-0.800000pt;}
.ws1c{word-spacing:-0.720000pt;}
.ws52{word-spacing:-0.702720pt;}
.ws9{word-spacing:-0.694400pt;}
.ws5{word-spacing:-0.641280pt;}
.ws19{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.468480pt;}
.ws18{word-spacing:-0.432000pt;}
.ws6{word-spacing:-0.427520pt;}
.wse{word-spacing:-0.416640pt;}
.ws6e{word-spacing:-0.320640pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws33{word-spacing:-0.266240pt;}
.ws45{word-spacing:-0.255360pt;}
.ws4{word-spacing:-0.234880pt;}
.ws24{word-spacing:-0.234240pt;}
.ws6f{word-spacing:-0.213760pt;}
.ws4e{word-spacing:-0.192000pt;}
.ws49{word-spacing:-0.170240pt;}
.wsc{word-spacing:-0.160000pt;}
.ws1a{word-spacing:-0.144000pt;}
.ws5a{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.117120pt;}
.ws42{word-spacing:-0.096000pt;}
.ws3d{word-spacing:-0.085120pt;}
.ws59{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws46{word-spacing:0.085120pt;}
.ws4d{word-spacing:0.106880pt;}
.ws55{word-spacing:0.117120pt;}
.ws5b{word-spacing:0.128000pt;}
.ws34{word-spacing:0.133120pt;}
.ws58{word-spacing:0.144000pt;}
.ws5e{word-spacing:0.149120pt;}
.ws14{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.170880pt;}
.ws28{word-spacing:0.213760pt;}
.ws6c{word-spacing:0.320640pt;}
.ws26{word-spacing:0.351360pt;}
.ws4c{word-spacing:0.384000pt;}
.ws35{word-spacing:0.399360pt;}
.ws60{word-spacing:0.447360pt;}
.ws51{word-spacing:0.468480pt;}
.ws8{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.512640pt;}
.ws43{word-spacing:0.576000pt;}
.ws48{word-spacing:0.680960pt;}
.ws71{word-spacing:0.748160pt;}
.ws53{word-spacing:0.798720pt;}
.ws27{word-spacing:0.819840pt;}
.ws36{word-spacing:0.931840pt;}
.ws41{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.068800pt;}
.ws2a{word-spacing:1.171200pt;}
.ws5f{word-spacing:1.192960pt;}
.ws2e{word-spacing:1.196160pt;}
.ws47{word-spacing:1.361920pt;}
.ws44{word-spacing:1.440000pt;}
.ws69{word-spacing:7.054080pt;}
._6{margin-left:-15.765120pt;}
._a{margin-left:-13.665536pt;}
._8{margin-left:-11.834880pt;}
._c{margin-left:-10.192512pt;}
._b{margin-left:-8.788096pt;}
._4{margin-left:-7.707840pt;}
._7{margin-left:-5.587200pt;}
._1{margin-left:-3.758080pt;}
._2{margin-left:-2.223104pt;}
._0{margin-left:-1.174400pt;}
._3{width:0.924416pt;}
._5{width:1.919104pt;}
._9{width:2.969408pt;}
._e{width:4.948544pt;}
._d{width:6.840320pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:78.080000pt;}
.fsc{font-size:85.120000pt;}
.fs9{font-size:85.760000pt;}
.fsb{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs6{font-size:117.120000pt;}
.fsd{font-size:128.000000pt;}
.fsa{font-size:133.120000pt;}
.fs4{font-size:138.880000pt;}
.fs5{font-size:144.000000pt;}
.fse{font-size:149.120000pt;}
.fs3{font-size:160.000000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:2.397067pt;}
.y3b{bottom:31.039867pt;}
.y8e{bottom:31.197067pt;}
.yad{bottom:35.971333pt;}
.y43{bottom:42.079867pt;}
.y9f{bottom:47.272907pt;}
.y32{bottom:49.557200pt;}
.y8d{bottom:59.997067pt;}
.y7b{bottom:73.449040pt;}
.yac{bottom:74.371333pt;}
.y9e{bottom:75.440267pt;}
.y59{bottom:77.090240pt;}
.y67{bottom:83.123200pt;}
.y31{bottom:84.117200pt;}
.yc5{bottom:88.039173pt;}
.y8c{bottom:88.797067pt;}
.y24{bottom:92.320000pt;}
.y7a{bottom:93.920533pt;}
.y10{bottom:96.800000pt;}
.y9d{bottom:110.640267pt;}
.y8b{bottom:111.837067pt;}
.yab{bottom:112.771333pt;}
.yc4{bottom:113.637067pt;}
.y66{bottom:115.138560pt;}
.y1b{bottom:115.200000pt;}
.y79{bottom:119.529040pt;}
.y58{bottom:123.185120pt;}
.y30{bottom:127.317200pt;}
.y23{bottom:138.080000pt;}
.y78{bottom:140.000533pt;}
.y8a{bottom:140.637067pt;}
.yf{bottom:142.560000pt;}
.yc3{bottom:145.643653pt;}
.y9c{bottom:145.832907pt;}
.y65{bottom:147.153920pt;}
.y4e{bottom:148.589840pt;}
.yaa{bottom:151.171333pt;}
.y1a{bottom:153.600000pt;}
.y2f{bottom:161.877200pt;}
.y77{bottom:165.600400pt;}
.y57{bottom:169.280000pt;}
.y89{bottom:169.437067pt;}
.yc2{bottom:171.241413pt;}
.y9b{bottom:174.000267pt;}
.y4d{bottom:176.757200pt;}
.y64{bottom:179.169280pt;}
.y22{bottom:183.840000pt;}
.y48{bottom:186.837333pt;}
.ye{bottom:188.320000pt;}
.ya9{bottom:189.571333pt;}
.y76{bottom:191.209040pt;}
.y19{bottom:192.000000pt;}
.y2e{bottom:196.437200pt;}
.yc1{bottom:196.839173pt;}
.y88{bottom:198.237067pt;}
.y4a{bottom:207.317200pt;}
.y9a{bottom:209.200267pt;}
.y4c{bottom:210.837200pt;}
.y63{bottom:211.184640pt;}
.y75{bottom:211.680400pt;}
.yc0{bottom:222.436933pt;}
.y4b{bottom:225.077200pt;}
.y56{bottom:225.540480pt;}
.y87{bottom:227.037067pt;}
.ya8{bottom:227.971333pt;}
.y49{bottom:228.437200pt;}
.y21{bottom:229.600000pt;}
.y47{bottom:233.077200pt;}
.yd{bottom:235.520000pt;}
.y74{bottom:237.289040pt;}
.y2d{bottom:239.637200pt;}
.y18{bottom:240.000000pt;}
.y62{bottom:243.200000pt;}
.y42{bottom:244.597333pt;}
.y99{bottom:245.329547pt;}
.yb3{bottom:251.200000pt;}
.ybf{bottom:254.441413pt;}
.y86{bottom:256.479307pt;}
.y73{bottom:257.760400pt;}
.y5{bottom:261.006587pt;}
.ya7{bottom:267.331333pt;}
.y55{bottom:271.635360pt;}
.y2c{bottom:274.197200pt;}
.y20{bottom:275.360000pt;}
.y98{bottom:277.344907pt;}
.y45{bottom:278.204240pt;}
.y17{bottom:278.400000pt;}
.yc{bottom:278.720000pt;}
.ybe{bottom:280.039173pt;}
.y85{bottom:282.077067pt;}
.y61{bottom:283.138560pt;}
.y72{bottom:283.360400pt;}
.y41{bottom:285.557200pt;}
.y44{bottom:295.479440pt;}
.y4{bottom:299.403227pt;}
.y46{bottom:303.477200pt;}
.yb2{bottom:304.949440pt;}
.ybd{bottom:305.636933pt;}
.y97{bottom:309.360267pt;}
.ya6{bottom:309.571333pt;}
.y71{bottom:309.600400pt;}
.y84{bottom:313.437067pt;}
.y60{bottom:315.153920pt;}
.y2b{bottom:317.397200pt;}
.y54{bottom:317.730240pt;}
.y1f{bottom:322.560000pt;}
.y16{bottom:326.400000pt;}
.yb{bottom:330.080000pt;}
.y70{bottom:332.640400pt;}
.ybc{bottom:337.641413pt;}
.y3{bottom:337.799867pt;}
.y40{bottom:339.630480pt;}
.y83{bottom:342.237067pt;}
.y5f{bottom:347.169280pt;}
.ya5{bottom:347.971333pt;}
.y96{bottom:348.392907pt;}
.yb1{bottom:349.760000pt;}
.y2a{bottom:351.957200pt;}
.y3a{bottom:355.477333pt;}
.y6f{bottom:355.680400pt;}
.y3f{bottom:356.277200pt;}
.ybb{bottom:363.239173pt;}
.y53{bottom:363.825120pt;}
.y15{bottom:364.800000pt;}
.y39{bottom:369.717200pt;}
.y82{bottom:371.037067pt;}
.y1e{bottom:375.360000pt;}
.ya{bottom:375.840000pt;}
.y95{bottom:376.560267pt;}
.y6e{bottom:378.720400pt;}
.y5e{bottom:379.184640pt;}
.y3e{bottom:380.117200pt;}
.y3c{bottom:385.717200pt;}
.y2{bottom:385.801600pt;}
.ya4{bottom:386.371333pt;}
.yba{bottom:388.836933pt;}
.y3d{bottom:394.357200pt;}
.y29{bottom:395.157200pt;}
.y81{bottom:400.477067pt;}
.y6d{bottom:401.760400pt;}
.y14{bottom:403.200000pt;}
.yb0{bottom:404.842880pt;}
.y52{bottom:409.920000pt;}
.y5d{bottom:411.200000pt;}
.y94{bottom:411.752907pt;}
.ya3{bottom:417.091333pt;}
.y38{bottom:418.509840pt;}
.y1d{bottom:418.560000pt;}
.yb9{bottom:420.843653pt;}
.y9{bottom:421.600000pt;}
.y28{bottom:429.717200pt;}
.y6c{bottom:430.560400pt;}
.y80{bottom:431.837067pt;}
.y93{bottom:439.920267pt;}
.y13{bottom:441.600000pt;}
.y1{bottom:444.590800pt;}
.yb8{bottom:446.441413pt;}
.y37{bottom:446.677200pt;}
.y5c{bottom:451.184640pt;}
.ya2{bottom:451.651333pt;}
.y6b{bottom:453.600400pt;}
.yaf{bottom:456.021440pt;}
.y7f{bottom:460.637067pt;}
.y27{bottom:464.277200pt;}
.y51{bottom:466.225120pt;}
.y8{bottom:467.360000pt;}
.y1c{bottom:471.360000pt;}
.ya1{bottom:471.811333pt;}
.yb7{bottom:472.039173pt;}
.y92{bottom:476.064907pt;}
.y6a{bottom:476.640400pt;}
.y12{bottom:480.000000pt;}
.y36{bottom:481.862480pt;}
.y5b{bottom:483.200000pt;}
.y7e{bottom:489.437067pt;}
.yb6{bottom:497.636933pt;}
.y26{bottom:498.837200pt;}
.y69{bottom:499.680400pt;}
.yae{bottom:507.200000pt;}
.y91{bottom:508.080267pt;}
.y35{bottom:510.029840pt;}
.y50{bottom:512.320000pt;}
.y7{bottom:514.560000pt;}
.y7d{bottom:518.237067pt;}
.y11{bottom:518.400000pt;}
.y5a{bottom:523.200000pt;}
.yb5{bottom:529.639173pt;}
.y25{bottom:533.397200pt;}
.y34{bottom:538.197200pt;}
.y7c{bottom:547.677067pt;}
.yb4{bottom:555.236933pt;}
.ya0{bottom:566.637733pt;}
.y68{bottom:575.155867pt;}
.y90{bottom:581.757467pt;}
.y4f{bottom:589.317333pt;}
.y33{bottom:596.877333pt;}
.y6{bottom:611.486667pt;}
.he{height:45.562500pt;}
.h1c{height:45.937500pt;}
.hd{height:55.586250pt;}
.h19{height:61.096875pt;}
.h18{height:61.512500pt;}
.h17{height:68.906250pt;}
.h16{height:69.375000pt;}
.hc{height:71.680000pt;}
.h11{height:76.089375pt;}
.h3{height:76.715625pt;}
.hb{height:77.237500pt;}
.ha{height:84.065625pt;}
.h9{height:84.637500pt;}
.h1e{height:91.875000pt;}
.h1d{height:92.500000pt;}
.h15{height:95.550000pt;}
.h14{height:96.200000pt;}
.h10{height:97.280000pt;}
.h1b{height:100.125000pt;}
.h5{height:100.362500pt;}
.h8{height:103.359375pt;}
.h7{height:104.062500pt;}
.h21{height:107.034375pt;}
.h1a{height:111.472500pt;}
.h6{height:114.843750pt;}
.h4{height:115.625000pt;}
.h12{height:118.306250pt;}
.h2{height:122.653125pt;}
.h13{height:123.487500pt;}
.hf{height:130.475625pt;}
.h20{height:155.527500pt;}
.h1{height:168.590625pt;}
.h1f{height:178.222500pt;}
.h0{height:720.000000pt;}
.w1{width:49.278667pt;}
.w3{width:49.280000pt;}
.w2{width:77.441333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:18.080000pt;}
.x14{left:27.840000pt;}
.x24{left:43.566267pt;}
.x1f{left:51.126133pt;}
.x7{left:57.600000pt;}
.x1e{left:70.466667pt;}
.x25{left:79.566133pt;}
.x21{left:87.126133pt;}
.x26{left:91.566267pt;}
.x9{left:93.600000pt;}
.x20{left:99.126133pt;}
.x8{left:105.600000pt;}
.x23{left:111.750000pt;}
.x27{left:121.646133pt;}
.x22{left:129.206133pt;}
.x12{left:135.674880pt;}
.x1d{left:178.950000pt;}
.xc{left:185.506667pt;}
.x1{left:191.426667pt;}
.x1c{left:192.870000pt;}
.xb{left:333.666667pt;}
.x29{left:342.630000pt;}
.x6{left:345.666667pt;}
.x2{left:373.666533pt;}
.xa{left:375.746667pt;}
.x5{left:377.303173pt;}
.x28{left:382.786667pt;}
.x17{left:384.960000pt;}
.x4{left:390.422693pt;}
.xd{left:392.000000pt;}
.x1a{left:416.800000pt;}
.x13{left:420.640000pt;}
.x10{left:423.840000pt;}
.x11{left:426.880000pt;}
.x19{left:430.240000pt;}
.x18{left:433.440000pt;}
.xf{left:441.760000pt;}
.x1b{left:446.240000pt;}
.x3{left:448.191333pt;}
.x16{left:470.236160pt;}
.x15{left:489.600000pt;}
}




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