
    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_5aaf81e75c18916a5e94b32d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_8bc2a7ae3262a8b7d2f89e35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_43df5d89cca05e77845db7ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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);}
.v3{vertical-align:-21.780000px;}
.v4{vertical-align:-1.050000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.270000px;}
.v1{vertical-align:31.680000px;}
.ls43{letter-spacing:-1.716000px;}
.ls41{letter-spacing:-1.518000px;}
.ls38{letter-spacing:-1.386000px;}
.ls2f{letter-spacing:-1.320000px;}
.ls2b{letter-spacing:-1.254000px;}
.ls3b{letter-spacing:-1.188000px;}
.ls2e{letter-spacing:-1.122000px;}
.ls4a{letter-spacing:-1.056000px;}
.ls42{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.969000px;}
.ls36{letter-spacing:-0.924000px;}
.ls1d{letter-spacing:-0.858000px;}
.ls5{letter-spacing:-0.798000px;}
.ls2d{letter-spacing:-0.792000px;}
.ls4f{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.741000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls4e{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.672000px;}
.ls3a{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.399000px;}
.ls2c{letter-spacing:-0.396000px;}
.ls49{letter-spacing:-0.378000px;}
.ls51{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.342000px;}
.ls29{letter-spacing:-0.330000px;}
.ls48{letter-spacing:-0.324000px;}
.ls50{letter-spacing:-0.315000px;}
.ls4{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.264000px;}
.ls22{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.198000px;}
.ls3{letter-spacing:-0.171000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls2a{letter-spacing:-0.066000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.114000px;}
.ls10{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.171000px;}
.ls26{letter-spacing:0.198000px;}
.ls39{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.228000px;}
.lse{letter-spacing:0.264000px;}
.ls40{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.378000px;}
.ls17{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.399000px;}
.ls3f{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.462000px;}
.ls47{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.528000px;}
.ls4c{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.594000px;}
.ls28{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.756000px;}
.ls4d{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.858000px;}
.lsd{letter-spacing:0.924000px;}
.ls19{letter-spacing:0.972000px;}
.ls14{letter-spacing:0.990000px;}
.ls31{letter-spacing:1.056000px;}
.ls34{letter-spacing:1.122000px;}
.ls33{letter-spacing:1.188000px;}
.ls45{letter-spacing:1.320000px;}
.ls18{letter-spacing:1.350000px;}
.ls46{letter-spacing:1.386000px;}
.ls16{letter-spacing:1.452000px;}
.ls35{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.650000px;}
.ls32{letter-spacing:1.914000px;}
.ls44{letter-spacing:1.980000px;}
.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;}
}
.ws52{word-spacing:-16.830000px;}
.ws33{word-spacing:-16.500000px;}
.ws40{word-spacing:-16.170000px;}
.ws57{word-spacing:-15.780000px;}
.ws4b{word-spacing:-15.774000px;}
.ws41{word-spacing:-15.180000px;}
.ws53{word-spacing:-15.000000px;}
.ws4e{word-spacing:-13.122000px;}
.ws56{word-spacing:-11.790000px;}
.ws13{word-spacing:-11.550000px;}
.ws54{word-spacing:-11.250000px;}
.ws58{word-spacing:-10.935000px;}
.ws55{word-spacing:-10.710000px;}
.ws12{word-spacing:-7.872000px;}
.ws4a{word-spacing:-7.680000px;}
.ws4c{word-spacing:-0.792000px;}
.ws17{word-spacing:-0.726000px;}
.ws5{word-spacing:-0.684000px;}
.ws19{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.594000px;}
.ws4{word-spacing:-0.570000px;}
.ws2b{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.528000px;}
.ws37{word-spacing:-0.508200px;}
.ws1c{word-spacing:-0.462000px;}
.ws2{word-spacing:-0.399000px;}
.ws21{word-spacing:-0.396000px;}
.ws2e{word-spacing:-0.378000px;}
.ws9{word-spacing:-0.342000px;}
.ws1f{word-spacing:-0.330000px;}
.ws30{word-spacing:-0.324000px;}
.ws5c{word-spacing:-0.300000px;}
.ws8{word-spacing:-0.285000px;}
.ws51{word-spacing:-0.270000px;}
.ws1a{word-spacing:-0.264000px;}
.wse{word-spacing:-0.228000px;}
.ws23{word-spacing:-0.198000px;}
.ws44{word-spacing:-0.162000px;}
.ws1b{word-spacing:-0.132000px;}
.ws3{word-spacing:-0.114000px;}
.ws1d{word-spacing:-0.066000px;}
.ws1{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws59{word-spacing:0.060000px;}
.ws34{word-spacing:0.066000px;}
.wsc{word-spacing:0.114000px;}
.ws14{word-spacing:0.132000px;}
.ws2f{word-spacing:0.162000px;}
.ws3a{word-spacing:0.198000px;}
.ws45{word-spacing:0.216000px;}
.ws4d{word-spacing:0.264000px;}
.ws32{word-spacing:0.324000px;}
.ws18{word-spacing:0.330000px;}
.wsf{word-spacing:0.342000px;}
.ws3e{word-spacing:0.378000px;}
.ws2a{word-spacing:0.396000px;}
.ws47{word-spacing:0.432000px;}
.ws20{word-spacing:0.462000px;}
.ws11{word-spacing:0.528000px;}
.ws36{word-spacing:0.594000px;}
.ws4f{word-spacing:0.646800px;}
.ws42{word-spacing:0.660000px;}
.ws5b{word-spacing:0.720000px;}
.ws16{word-spacing:0.726000px;}
.ws5a{word-spacing:0.780000px;}
.ws39{word-spacing:0.792000px;}
.ws38{word-spacing:0.858000px;}
.ws3d{word-spacing:0.918000px;}
.ws3c{word-spacing:0.924000px;}
.ws7{word-spacing:0.969000px;}
.ws2c{word-spacing:0.972000px;}
.ws26{word-spacing:0.990000px;}
.wsb{word-spacing:1.026000px;}
.ws3f{word-spacing:1.056000px;}
.ws49{word-spacing:1.080000px;}
.ws22{word-spacing:1.122000px;}
.ws46{word-spacing:1.134000px;}
.ws6{word-spacing:1.140000px;}
.ws43{word-spacing:1.188000px;}
.wsd{word-spacing:1.197000px;}
.ws31{word-spacing:1.242000px;}
.ws48{word-spacing:1.254000px;}
.ws50{word-spacing:1.296000px;}
.wsa{word-spacing:1.311000px;}
.ws35{word-spacing:1.320000px;}
.ws27{word-spacing:1.386000px;}
.ws1e{word-spacing:1.452000px;}
.ws25{word-spacing:1.518000px;}
.ws28{word-spacing:1.584000px;}
.ws24{word-spacing:1.650000px;}
.ws3b{word-spacing:4.752000px;}
.ws2d{word-spacing:4.968000px;}
.ws15{word-spacing:35.712000px;}
._7{margin-left:-8.514000px;}
._9{margin-left:-5.592000px;}
._8{margin-left:-4.512000px;}
._4{margin-left:-3.144000px;}
._0{margin-left:-1.938000px;}
._3{width:1.197000px;}
._1{width:2.337000px;}
._d{width:9.330000px;}
._2{width:12.198000px;}
._10{width:13.950000px;}
._11{width:15.114000px;}
._a{width:19.668000px;}
._f{width:24.090000px;}
._6{width:47.952000px;}
._c{width:49.572000px;}
._5{width:68.742000px;}
._13{width:93.120000px;}
._e{width:117.600000px;}
._12{width:1189.632000px;}
._b{width:1214.112000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:67.200000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:57.366000px;}
.y68{bottom:57.624000px;}
.y50{bottom:57.981000px;}
.yc0{bottom:58.008000px;}
.y1b{bottom:58.125000px;}
.yd3{bottom:59.682000px;}
.y89{bottom:59.698500px;}
.yc6{bottom:59.715000px;}
.ya1{bottom:71.622000px;}
.y67{bottom:71.880000px;}
.y4f{bottom:72.237000px;}
.ybf{bottom:72.264000px;}
.yd2{bottom:76.924500px;}
.y88{bottom:76.941000px;}
.yc5{bottom:76.957500px;}
.ya0{bottom:85.878000px;}
.y66{bottom:86.136000px;}
.y4e{bottom:86.493000px;}
.ybe{bottom:86.520000px;}
.yd1{bottom:94.167000px;}
.y87{bottom:94.183500px;}
.yc4{bottom:94.200000px;}
.y9f{bottom:100.134000px;}
.y65{bottom:100.392000px;}
.y4d{bottom:100.749000px;}
.ybd{bottom:100.776000px;}
.y1a{bottom:110.415000px;}
.yd0{bottom:111.409500px;}
.y86{bottom:111.426000px;}
.yc3{bottom:111.442500px;}
.y9e{bottom:114.390000px;}
.y64{bottom:114.648000px;}
.y4c{bottom:115.005000px;}
.ybc{bottom:115.032000px;}
.y19{bottom:127.657500px;}
.ycf{bottom:128.652000px;}
.y85{bottom:128.668500px;}
.yc2{bottom:128.685000px;}
.y63{bottom:128.904000px;}
.y4b{bottom:129.261000px;}
.ybb{bottom:129.288000px;}
.y62{bottom:143.160000px;}
.y4a{bottom:143.517000px;}
.yba{bottom:143.544000px;}
.y18{bottom:144.900000px;}
.yce{bottom:145.894500px;}
.y84{bottom:145.911000px;}
.yc1{bottom:145.927500px;}
.y49{bottom:157.773000px;}
.yb9{bottom:157.800000px;}
.yc9{bottom:162.907500px;}
.ycd{bottom:163.137000px;}
.y83{bottom:163.153500px;}
.y9d{bottom:163.170000px;}
.y48{bottom:172.029000px;}
.yc8{bottom:180.150000px;}
.ycc{bottom:180.379500px;}
.y82{bottom:180.396000px;}
.y9c{bottom:180.412500px;}
.y47{bottom:186.285000px;}
.y17{bottom:196.650000px;}
.yc7{bottom:197.392500px;}
.y61{bottom:197.452500px;}
.ycb{bottom:197.622000px;}
.y81{bottom:197.638500px;}
.y9b{bottom:197.655000px;}
.y16{bottom:211.612500px;}
.y60{bottom:214.695000px;}
.yb8{bottom:214.864500px;}
.y80{bottom:214.881000px;}
.y9a{bottom:214.897500px;}
.y5f{bottom:231.937500px;}
.y46{bottom:232.012500px;}
.yb7{bottom:232.107000px;}
.y7f{bottom:232.123500px;}
.y99{bottom:232.140000px;}
.y15{bottom:232.617000px;}
.y14{bottom:247.622250px;}
.y5e{bottom:249.180000px;}
.y45{bottom:249.255000px;}
.yb6{bottom:249.349500px;}
.y7e{bottom:249.366000px;}
.y98{bottom:249.382500px;}
.y13{bottom:262.627500px;}
.y5d{bottom:266.422500px;}
.y44{bottom:266.497500px;}
.yb5{bottom:266.592000px;}
.y7d{bottom:266.608500px;}
.y97{bottom:266.625000px;}
.y12{bottom:277.632750px;}
.y5c{bottom:283.665000px;}
.y43{bottom:283.740000px;}
.yb4{bottom:283.834500px;}
.y7c{bottom:283.851000px;}
.y96{bottom:283.867500px;}
.y11{bottom:292.638000px;}
.y5b{bottom:300.907500px;}
.y42{bottom:300.982500px;}
.yb3{bottom:301.077000px;}
.y7b{bottom:301.093500px;}
.y95{bottom:301.110000px;}
.y10{bottom:307.643250px;}
.y5a{bottom:318.150000px;}
.y41{bottom:318.225000px;}
.yb2{bottom:318.319500px;}
.y7a{bottom:318.336000px;}
.y94{bottom:318.352500px;}
.yf{bottom:322.648500px;}
.y59{bottom:335.392500px;}
.y40{bottom:335.467500px;}
.yb1{bottom:335.562000px;}
.y79{bottom:335.578500px;}
.y93{bottom:335.595000px;}
.ye{bottom:337.653750px;}
.y58{bottom:352.635000px;}
.y3f{bottom:352.710000px;}
.yb0{bottom:352.804500px;}
.y78{bottom:352.821000px;}
.y92{bottom:352.837500px;}
.yd{bottom:367.650000px;}
.y3e{bottom:369.952500px;}
.y57{bottom:370.047000px;}
.y77{bottom:370.063500px;}
.y91{bottom:370.080000px;}
.ye5{bottom:378.135000px;}
.y3d{bottom:387.195000px;}
.y56{bottom:387.289500px;}
.y90{bottom:387.322500px;}
.ye4{bottom:393.885000px;}
.y76{bottom:395.935500px;}
.yc{bottom:403.602000px;}
.y3c{bottom:404.437500px;}
.y55{bottom:404.532000px;}
.y8f{bottom:404.565000px;}
.ye3{bottom:409.635000px;}
.y75{bottom:413.178000px;}
.yb{bottom:418.607250px;}
.y3b{bottom:421.680000px;}
.y54{bottom:421.774500px;}
.y8e{bottom:421.807500px;}
.ye2{bottom:425.385000px;}
.y74{bottom:430.420500px;}
.y3a{bottom:438.922500px;}
.y53{bottom:439.017000px;}
.y8d{bottom:439.050000px;}
.ya{bottom:439.611750px;}
.ye1{bottom:441.135000px;}
.y73{bottom:447.663000px;}
.y9{bottom:454.617000px;}
.y39{bottom:456.165000px;}
.yaf{bottom:456.259500px;}
.y8c{bottom:456.292500px;}
.ye0{bottom:456.885000px;}
.y52{bottom:464.889000px;}
.y72{bottom:464.905500px;}
.y8{bottom:469.622250px;}
.ydf{bottom:472.635000px;}
.y38{bottom:473.407500px;}
.yae{bottom:473.502000px;}
.y8b{bottom:473.535000px;}
.y71{bottom:482.148000px;}
.y7{bottom:484.627500px;}
.yde{bottom:488.385000px;}
.y37{bottom:490.650000px;}
.yad{bottom:490.744500px;}
.y8a{bottom:490.777500px;}
.y70{bottom:499.390500px;}
.y6{bottom:499.632750px;}
.ydd{bottom:504.135000px;}
.y36{bottom:507.892500px;}
.yac{bottom:507.987000px;}
.y51{bottom:508.020000px;}
.y5{bottom:514.638000px;}
.y6f{bottom:516.633000px;}
.ydc{bottom:519.885000px;}
.yab{bottom:525.229500px;}
.y35{bottom:525.262500px;}
.y4{bottom:529.643250px;}
.y6e{bottom:533.875500px;}
.ydb{bottom:535.635000px;}
.yaa{bottom:542.472000px;}
.y34{bottom:542.505000px;}
.y3{bottom:544.648500px;}
.y6d{bottom:551.118000px;}
.yda{bottom:551.385000px;}
.y2{bottom:559.653750px;}
.ya9{bottom:559.714500px;}
.y33{bottom:559.747500px;}
.yd9{bottom:567.135000px;}
.yca{bottom:568.344000px;}
.y6c{bottom:568.360500px;}
.ya8{bottom:576.957000px;}
.y32{bottom:576.990000px;}
.yd8{bottom:582.885000px;}
.y6b{bottom:585.603000px;}
.y1{bottom:589.650000px;}
.ya7{bottom:594.199500px;}
.y31{bottom:594.232500px;}
.yd7{bottom:598.635000px;}
.y6a{bottom:602.845500px;}
.ya6{bottom:611.442000px;}
.y30{bottom:611.475000px;}
.yd6{bottom:614.385000px;}
.y69{bottom:620.088000px;}
.ya5{bottom:628.684500px;}
.y2f{bottom:628.717500px;}
.y22{bottom:628.890000px;}
.yd5{bottom:630.135000px;}
.ya4{bottom:645.927000px;}
.y2e{bottom:645.960000px;}
.yd4{bottom:654.556500px;}
.y2d{bottom:663.202500px;}
.ya3{bottom:671.799000px;}
.y2c{bottom:680.445000px;}
.y2b{bottom:697.687500px;}
.y21{bottom:713.349000px;}
.y2a{bottom:714.930000px;}
.y20{bottom:727.605000px;}
.y29{bottom:732.172500px;}
.y1f{bottom:745.605000px;}
.y28{bottom:749.415000px;}
.y27{bottom:766.657500px;}
.y26{bottom:783.900000px;}
.y1e{bottom:790.605000px;}
.y25{bottom:801.142500px;}
.y1d{bottom:814.605000px;}
.y24{bottom:818.385000px;}
.y1c{bottom:865.605000px;}
.y23{bottom:928.500000px;}
.h9{height:47.085938px;}
.h5{height:51.216000px;}
.hd{height:52.032000px;}
.h4{height:57.618000px;}
.hc{height:58.536000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.hf{height:64.020000px;}
.he{height:65.040000px;}
.h3{height:70.422000px;}
.hb{height:70.565400px;}
.ha{height:71.544000px;}
.h8{height:76.824000px;}
.h7{height:103.382400px;}
.h6{height:104.064000px;}
.h0{height:904.500000px;}
.w0{width:634.500000px;}
.x0{left:0.000000px;}
.x4{left:3.000000px;}
.x1{left:73.200000px;}
.x5{left:74.415000px;}
.x8{left:89.415000px;}
.x7{left:95.700000px;}
.x6{left:96.921000px;}
.x2{left:434.880000px;}
.x3{left:449.580000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v4{vertical-align:-0.933333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.906667pt;}
.v1{vertical-align:28.160000pt;}
.ls43{letter-spacing:-1.525333pt;}
.ls41{letter-spacing:-1.349333pt;}
.ls38{letter-spacing:-1.232000pt;}
.ls2f{letter-spacing:-1.173333pt;}
.ls2b{letter-spacing:-1.114667pt;}
.ls3b{letter-spacing:-1.056000pt;}
.ls2e{letter-spacing:-0.997333pt;}
.ls4a{letter-spacing:-0.938667pt;}
.ls42{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.861333pt;}
.ls36{letter-spacing:-0.821333pt;}
.ls1d{letter-spacing:-0.762667pt;}
.ls5{letter-spacing:-0.709333pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls4f{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.658667pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls4e{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls3a{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.354667pt;}
.ls2c{letter-spacing:-0.352000pt;}
.ls49{letter-spacing:-0.336000pt;}
.ls51{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.304000pt;}
.ls29{letter-spacing:-0.293333pt;}
.ls48{letter-spacing:-0.288000pt;}
.ls50{letter-spacing:-0.280000pt;}
.ls4{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.234667pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.176000pt;}
.ls3{letter-spacing:-0.152000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls2a{letter-spacing:-0.058667pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.101333pt;}
.ls10{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.152000pt;}
.ls26{letter-spacing:0.176000pt;}
.ls39{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.202667pt;}
.lse{letter-spacing:0.234667pt;}
.ls40{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.336000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.354667pt;}
.ls3f{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.410667pt;}
.ls47{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.469333pt;}
.ls4c{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.528000pt;}
.ls28{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.672000pt;}
.ls4d{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.762667pt;}
.lsd{letter-spacing:0.821333pt;}
.ls19{letter-spacing:0.864000pt;}
.ls14{letter-spacing:0.880000pt;}
.ls31{letter-spacing:0.938667pt;}
.ls34{letter-spacing:0.997333pt;}
.ls33{letter-spacing:1.056000pt;}
.ls45{letter-spacing:1.173333pt;}
.ls18{letter-spacing:1.200000pt;}
.ls46{letter-spacing:1.232000pt;}
.ls16{letter-spacing:1.290667pt;}
.ls35{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.466667pt;}
.ls32{letter-spacing:1.701333pt;}
.ls44{letter-spacing:1.760000pt;}
.ws52{word-spacing:-14.960000pt;}
.ws33{word-spacing:-14.666667pt;}
.ws40{word-spacing:-14.373333pt;}
.ws57{word-spacing:-14.026667pt;}
.ws4b{word-spacing:-14.021333pt;}
.ws41{word-spacing:-13.493333pt;}
.ws53{word-spacing:-13.333333pt;}
.ws4e{word-spacing:-11.664000pt;}
.ws56{word-spacing:-10.480000pt;}
.ws13{word-spacing:-10.266667pt;}
.ws54{word-spacing:-10.000000pt;}
.ws58{word-spacing:-9.720000pt;}
.ws55{word-spacing:-9.520000pt;}
.ws12{word-spacing:-6.997333pt;}
.ws4a{word-spacing:-6.826667pt;}
.ws4c{word-spacing:-0.704000pt;}
.ws17{word-spacing:-0.645333pt;}
.ws5{word-spacing:-0.608000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.528000pt;}
.ws4{word-spacing:-0.506667pt;}
.ws2b{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.469333pt;}
.ws37{word-spacing:-0.451733pt;}
.ws1c{word-spacing:-0.410667pt;}
.ws2{word-spacing:-0.354667pt;}
.ws21{word-spacing:-0.352000pt;}
.ws2e{word-spacing:-0.336000pt;}
.ws9{word-spacing:-0.304000pt;}
.ws1f{word-spacing:-0.293333pt;}
.ws30{word-spacing:-0.288000pt;}
.ws5c{word-spacing:-0.266667pt;}
.ws8{word-spacing:-0.253333pt;}
.ws51{word-spacing:-0.240000pt;}
.ws1a{word-spacing:-0.234667pt;}
.wse{word-spacing:-0.202667pt;}
.ws23{word-spacing:-0.176000pt;}
.ws44{word-spacing:-0.144000pt;}
.ws1b{word-spacing:-0.117333pt;}
.ws3{word-spacing:-0.101333pt;}
.ws1d{word-spacing:-0.058667pt;}
.ws1{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws59{word-spacing:0.053333pt;}
.ws34{word-spacing:0.058667pt;}
.wsc{word-spacing:0.101333pt;}
.ws14{word-spacing:0.117333pt;}
.ws2f{word-spacing:0.144000pt;}
.ws3a{word-spacing:0.176000pt;}
.ws45{word-spacing:0.192000pt;}
.ws4d{word-spacing:0.234667pt;}
.ws32{word-spacing:0.288000pt;}
.ws18{word-spacing:0.293333pt;}
.wsf{word-spacing:0.304000pt;}
.ws3e{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.352000pt;}
.ws47{word-spacing:0.384000pt;}
.ws20{word-spacing:0.410667pt;}
.ws11{word-spacing:0.469333pt;}
.ws36{word-spacing:0.528000pt;}
.ws4f{word-spacing:0.574933pt;}
.ws42{word-spacing:0.586667pt;}
.ws5b{word-spacing:0.640000pt;}
.ws16{word-spacing:0.645333pt;}
.ws5a{word-spacing:0.693333pt;}
.ws39{word-spacing:0.704000pt;}
.ws38{word-spacing:0.762667pt;}
.ws3d{word-spacing:0.816000pt;}
.ws3c{word-spacing:0.821333pt;}
.ws7{word-spacing:0.861333pt;}
.ws2c{word-spacing:0.864000pt;}
.ws26{word-spacing:0.880000pt;}
.wsb{word-spacing:0.912000pt;}
.ws3f{word-spacing:0.938667pt;}
.ws49{word-spacing:0.960000pt;}
.ws22{word-spacing:0.997333pt;}
.ws46{word-spacing:1.008000pt;}
.ws6{word-spacing:1.013333pt;}
.ws43{word-spacing:1.056000pt;}
.wsd{word-spacing:1.064000pt;}
.ws31{word-spacing:1.104000pt;}
.ws48{word-spacing:1.114667pt;}
.ws50{word-spacing:1.152000pt;}
.wsa{word-spacing:1.165333pt;}
.ws35{word-spacing:1.173333pt;}
.ws27{word-spacing:1.232000pt;}
.ws1e{word-spacing:1.290667pt;}
.ws25{word-spacing:1.349333pt;}
.ws28{word-spacing:1.408000pt;}
.ws24{word-spacing:1.466667pt;}
.ws3b{word-spacing:4.224000pt;}
.ws2d{word-spacing:4.416000pt;}
.ws15{word-spacing:31.744000pt;}
._7{margin-left:-7.568000pt;}
._9{margin-left:-4.970667pt;}
._8{margin-left:-4.010667pt;}
._4{margin-left:-2.794667pt;}
._0{margin-left:-1.722667pt;}
._3{width:1.064000pt;}
._1{width:2.077333pt;}
._d{width:8.293333pt;}
._2{width:10.842667pt;}
._10{width:12.400000pt;}
._11{width:13.434667pt;}
._a{width:17.482667pt;}
._f{width:21.413333pt;}
._6{width:42.624000pt;}
._c{width:44.064000pt;}
._5{width:61.104000pt;}
._13{width:82.773333pt;}
._e{width:104.533333pt;}
._12{width:1057.450667pt;}
._b{width:1079.210667pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:59.733333pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:50.992000pt;}
.y68{bottom:51.221333pt;}
.y50{bottom:51.538667pt;}
.yc0{bottom:51.562667pt;}
.y1b{bottom:51.666667pt;}
.yd3{bottom:53.050667pt;}
.y89{bottom:53.065333pt;}
.yc6{bottom:53.080000pt;}
.ya1{bottom:63.664000pt;}
.y67{bottom:63.893333pt;}
.y4f{bottom:64.210667pt;}
.ybf{bottom:64.234667pt;}
.yd2{bottom:68.377333pt;}
.y88{bottom:68.392000pt;}
.yc5{bottom:68.406667pt;}
.ya0{bottom:76.336000pt;}
.y66{bottom:76.565333pt;}
.y4e{bottom:76.882667pt;}
.ybe{bottom:76.906667pt;}
.yd1{bottom:83.704000pt;}
.y87{bottom:83.718667pt;}
.yc4{bottom:83.733333pt;}
.y9f{bottom:89.008000pt;}
.y65{bottom:89.237333pt;}
.y4d{bottom:89.554667pt;}
.ybd{bottom:89.578667pt;}
.y1a{bottom:98.146667pt;}
.yd0{bottom:99.030667pt;}
.y86{bottom:99.045333pt;}
.yc3{bottom:99.060000pt;}
.y9e{bottom:101.680000pt;}
.y64{bottom:101.909333pt;}
.y4c{bottom:102.226667pt;}
.ybc{bottom:102.250667pt;}
.y19{bottom:113.473333pt;}
.ycf{bottom:114.357333pt;}
.y85{bottom:114.372000pt;}
.yc2{bottom:114.386667pt;}
.y63{bottom:114.581333pt;}
.y4b{bottom:114.898667pt;}
.ybb{bottom:114.922667pt;}
.y62{bottom:127.253333pt;}
.y4a{bottom:127.570667pt;}
.yba{bottom:127.594667pt;}
.y18{bottom:128.800000pt;}
.yce{bottom:129.684000pt;}
.y84{bottom:129.698667pt;}
.yc1{bottom:129.713333pt;}
.y49{bottom:140.242667pt;}
.yb9{bottom:140.266667pt;}
.yc9{bottom:144.806667pt;}
.ycd{bottom:145.010667pt;}
.y83{bottom:145.025333pt;}
.y9d{bottom:145.040000pt;}
.y48{bottom:152.914667pt;}
.yc8{bottom:160.133333pt;}
.ycc{bottom:160.337333pt;}
.y82{bottom:160.352000pt;}
.y9c{bottom:160.366667pt;}
.y47{bottom:165.586667pt;}
.y17{bottom:174.800000pt;}
.yc7{bottom:175.460000pt;}
.y61{bottom:175.513333pt;}
.ycb{bottom:175.664000pt;}
.y81{bottom:175.678667pt;}
.y9b{bottom:175.693333pt;}
.y16{bottom:188.100000pt;}
.y60{bottom:190.840000pt;}
.yb8{bottom:190.990667pt;}
.y80{bottom:191.005333pt;}
.y9a{bottom:191.020000pt;}
.y5f{bottom:206.166667pt;}
.y46{bottom:206.233333pt;}
.yb7{bottom:206.317333pt;}
.y7f{bottom:206.332000pt;}
.y99{bottom:206.346667pt;}
.y15{bottom:206.770667pt;}
.y14{bottom:220.108667pt;}
.y5e{bottom:221.493333pt;}
.y45{bottom:221.560000pt;}
.yb6{bottom:221.644000pt;}
.y7e{bottom:221.658667pt;}
.y98{bottom:221.673333pt;}
.y13{bottom:233.446667pt;}
.y5d{bottom:236.820000pt;}
.y44{bottom:236.886667pt;}
.yb5{bottom:236.970667pt;}
.y7d{bottom:236.985333pt;}
.y97{bottom:237.000000pt;}
.y12{bottom:246.784667pt;}
.y5c{bottom:252.146667pt;}
.y43{bottom:252.213333pt;}
.yb4{bottom:252.297333pt;}
.y7c{bottom:252.312000pt;}
.y96{bottom:252.326667pt;}
.y11{bottom:260.122667pt;}
.y5b{bottom:267.473333pt;}
.y42{bottom:267.540000pt;}
.yb3{bottom:267.624000pt;}
.y7b{bottom:267.638667pt;}
.y95{bottom:267.653333pt;}
.y10{bottom:273.460667pt;}
.y5a{bottom:282.800000pt;}
.y41{bottom:282.866667pt;}
.yb2{bottom:282.950667pt;}
.y7a{bottom:282.965333pt;}
.y94{bottom:282.980000pt;}
.yf{bottom:286.798667pt;}
.y59{bottom:298.126667pt;}
.y40{bottom:298.193333pt;}
.yb1{bottom:298.277333pt;}
.y79{bottom:298.292000pt;}
.y93{bottom:298.306667pt;}
.ye{bottom:300.136667pt;}
.y58{bottom:313.453333pt;}
.y3f{bottom:313.520000pt;}
.yb0{bottom:313.604000pt;}
.y78{bottom:313.618667pt;}
.y92{bottom:313.633333pt;}
.yd{bottom:326.800000pt;}
.y3e{bottom:328.846667pt;}
.y57{bottom:328.930667pt;}
.y77{bottom:328.945333pt;}
.y91{bottom:328.960000pt;}
.ye5{bottom:336.120000pt;}
.y3d{bottom:344.173333pt;}
.y56{bottom:344.257333pt;}
.y90{bottom:344.286667pt;}
.ye4{bottom:350.120000pt;}
.y76{bottom:351.942667pt;}
.yc{bottom:358.757333pt;}
.y3c{bottom:359.500000pt;}
.y55{bottom:359.584000pt;}
.y8f{bottom:359.613333pt;}
.ye3{bottom:364.120000pt;}
.y75{bottom:367.269333pt;}
.yb{bottom:372.095333pt;}
.y3b{bottom:374.826667pt;}
.y54{bottom:374.910667pt;}
.y8e{bottom:374.940000pt;}
.ye2{bottom:378.120000pt;}
.y74{bottom:382.596000pt;}
.y3a{bottom:390.153333pt;}
.y53{bottom:390.237333pt;}
.y8d{bottom:390.266667pt;}
.ya{bottom:390.766000pt;}
.ye1{bottom:392.120000pt;}
.y73{bottom:397.922667pt;}
.y9{bottom:404.104000pt;}
.y39{bottom:405.480000pt;}
.yaf{bottom:405.564000pt;}
.y8c{bottom:405.593333pt;}
.ye0{bottom:406.120000pt;}
.y52{bottom:413.234667pt;}
.y72{bottom:413.249333pt;}
.y8{bottom:417.442000pt;}
.ydf{bottom:420.120000pt;}
.y38{bottom:420.806667pt;}
.yae{bottom:420.890667pt;}
.y8b{bottom:420.920000pt;}
.y71{bottom:428.576000pt;}
.y7{bottom:430.780000pt;}
.yde{bottom:434.120000pt;}
.y37{bottom:436.133333pt;}
.yad{bottom:436.217333pt;}
.y8a{bottom:436.246667pt;}
.y70{bottom:443.902667pt;}
.y6{bottom:444.118000pt;}
.ydd{bottom:448.120000pt;}
.y36{bottom:451.460000pt;}
.yac{bottom:451.544000pt;}
.y51{bottom:451.573333pt;}
.y5{bottom:457.456000pt;}
.y6f{bottom:459.229333pt;}
.ydc{bottom:462.120000pt;}
.yab{bottom:466.870667pt;}
.y35{bottom:466.900000pt;}
.y4{bottom:470.794000pt;}
.y6e{bottom:474.556000pt;}
.ydb{bottom:476.120000pt;}
.yaa{bottom:482.197333pt;}
.y34{bottom:482.226667pt;}
.y3{bottom:484.132000pt;}
.y6d{bottom:489.882667pt;}
.yda{bottom:490.120000pt;}
.y2{bottom:497.470000pt;}
.ya9{bottom:497.524000pt;}
.y33{bottom:497.553333pt;}
.yd9{bottom:504.120000pt;}
.yca{bottom:505.194667pt;}
.y6c{bottom:505.209333pt;}
.ya8{bottom:512.850667pt;}
.y32{bottom:512.880000pt;}
.yd8{bottom:518.120000pt;}
.y6b{bottom:520.536000pt;}
.y1{bottom:524.133333pt;}
.ya7{bottom:528.177333pt;}
.y31{bottom:528.206667pt;}
.yd7{bottom:532.120000pt;}
.y6a{bottom:535.862667pt;}
.ya6{bottom:543.504000pt;}
.y30{bottom:543.533333pt;}
.yd6{bottom:546.120000pt;}
.y69{bottom:551.189333pt;}
.ya5{bottom:558.830667pt;}
.y2f{bottom:558.860000pt;}
.y22{bottom:559.013333pt;}
.yd5{bottom:560.120000pt;}
.ya4{bottom:574.157333pt;}
.y2e{bottom:574.186667pt;}
.yd4{bottom:581.828000pt;}
.y2d{bottom:589.513333pt;}
.ya3{bottom:597.154667pt;}
.y2c{bottom:604.840000pt;}
.y2b{bottom:620.166667pt;}
.y21{bottom:634.088000pt;}
.y2a{bottom:635.493333pt;}
.y20{bottom:646.760000pt;}
.y29{bottom:650.820000pt;}
.y1f{bottom:662.760000pt;}
.y28{bottom:666.146667pt;}
.y27{bottom:681.473333pt;}
.y26{bottom:696.800000pt;}
.y1e{bottom:702.760000pt;}
.y25{bottom:712.126667pt;}
.y1d{bottom:724.093333pt;}
.y24{bottom:727.453333pt;}
.y1c{bottom:769.426667pt;}
.y23{bottom:825.333333pt;}
.h9{height:41.854167pt;}
.h5{height:45.525333pt;}
.hd{height:46.250667pt;}
.h4{height:51.216000pt;}
.hc{height:52.032000pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.hf{height:56.906667pt;}
.he{height:57.813333pt;}
.h3{height:62.597333pt;}
.hb{height:62.724800pt;}
.ha{height:63.594667pt;}
.h8{height:68.288000pt;}
.h7{height:91.895467pt;}
.h6{height:92.501333pt;}
.h0{height:804.000000pt;}
.w0{width:564.000000pt;}
.x0{left:0.000000pt;}
.x4{left:2.666667pt;}
.x1{left:65.066667pt;}
.x5{left:66.146667pt;}
.x8{left:79.480000pt;}
.x7{left:85.066667pt;}
.x6{left:86.152000pt;}
.x2{left:386.560000pt;}
.x3{left:399.626667pt;}
}




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