
    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_031da65be50ec8dde966e0ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_f858d4b8b0838669cf4e1fdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_5bb8fff43256f6ce9c32ac78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_37d81ac42870fcd954968008.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_8399c2f45db5c0d9d9a6cf7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_c0fad4be2210f8209c045cd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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);}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-2.016000px;}
.ls3b{letter-spacing:-1.512000px;}
.ls39{letter-spacing:-1.368000px;}
.ls41{letter-spacing:-1.296000px;}
.ls4e{letter-spacing:-1.233792px;}
.ls35{letter-spacing:-1.008000px;}
.ls3c{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.648000px;}
.ls4d{letter-spacing:-0.628992px;}
.ls47{letter-spacing:-0.610848px;}
.ls1e{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.569664px;}
.ls2c{letter-spacing:-0.504000px;}
.ls3d{letter-spacing:-0.432000px;}
.ls46{letter-spacing:-0.387072px;}
.ls2b{letter-spacing:-0.360000px;}
.ls4b{letter-spacing:-0.308448px;}
.ls1b{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.264960px;}
.ls18{letter-spacing:-0.251712px;}
.ls49{letter-spacing:-0.217728px;}
.ls7{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.213840px;}
.ls14{letter-spacing:-0.165600px;}
.ls13{letter-spacing:-0.145728px;}
.ls2d{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.085536px;}
.ls4c{letter-spacing:-0.084672px;}
.ls5{letter-spacing:-0.076608px;}
.ls27{letter-spacing:-0.072000px;}
.ls4f{letter-spacing:-0.060480px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001440px;}
.ls12{letter-spacing:0.013248px;}
.ls24{letter-spacing:0.032832px;}
.lse{letter-spacing:0.057024px;}
.ls30{letter-spacing:0.071136px;}
.ls11{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.080640px;}
.ls1{letter-spacing:0.120960px;}
.ls28{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.205632px;}
.ls34{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.223344px;}
.lsc{letter-spacing:0.275616px;}
.ls29{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.300960px;}
.ls19{letter-spacing:0.304704px;}
.ls1f{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.387360px;}
.ls0{letter-spacing:0.389664px;}
.ls44{letter-spacing:0.429408px;}
.ls6{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.448704px;}
.ls48{letter-spacing:0.465696px;}
.ls32{letter-spacing:0.470592px;}
.ls1d{letter-spacing:0.504000px;}
.ls51{letter-spacing:0.508032px;}
.ls25{letter-spacing:0.547200px;}
.ls2e{letter-spacing:0.552960px;}
.ls50{letter-spacing:0.562464px;}
.ls20{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.627120px;}
.ls1c{letter-spacing:0.648000px;}
.ls33{letter-spacing:0.656640px;}
.ls26{letter-spacing:0.712800px;}
.ls1a{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.725760px;}
.ls16{letter-spacing:0.775008px;}
.ls3a{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.983664px;}
.ls2a{letter-spacing:1.152000px;}
.lsa{letter-spacing:1.226016px;}
.ls21{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.872000px;}
.ls37{letter-spacing:2.880000px;}
.ls42{letter-spacing:5.760000px;}
.ls36{letter-spacing:8.640000px;}
.ls2f{letter-spacing:11.520000px;}
.ls22{letter-spacing:18.720000px;}
.ls40{letter-spacing:21.600000px;}
.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;}
}
.ws4{word-spacing:-11.129184px;}
.ws21{word-spacing:-10.962864px;}
.ws6{word-spacing:-10.740960px;}
.ws5{word-spacing:-10.739520px;}
.ws44{word-spacing:-1.944000px;}
.ws2c{word-spacing:-1.224000px;}
.ws49{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.841248px;}
.ws15{word-spacing:-0.792000px;}
.ws6c{word-spacing:-0.786240px;}
.ws8{word-spacing:-0.723600px;}
.ws17{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.711360px;}
.ws2e{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.622944px;}
.ws1f{word-spacing:-0.601920px;}
.ws19{word-spacing:-0.576000px;}
.ws78{word-spacing:-0.568512px;}
.ws6f{word-spacing:-0.526176px;}
.ws37{word-spacing:-0.525312px;}
.ws2{word-spacing:-0.504000px;}
.ws1d{word-spacing:-0.503424px;}
.ws6b{word-spacing:-0.489888px;}
.ws22{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.370944px;}
.ws25{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.355680px;}
.ws39{word-spacing:-0.288000px;}
.ws71{word-spacing:-0.266112px;}
.ws23{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.144000px;}
.ws35{word-spacing:-0.125856px;}
.ws7{word-spacing:-0.096480px;}
.ws1e{word-spacing:-0.087552px;}
.wsb{word-spacing:-0.079488px;}
.ws1{word-spacing:-0.072000px;}
.ws73{word-spacing:-0.060480px;}
.ws20{word-spacing:-0.054720px;}
.ws1c{word-spacing:0.000000px;}
.ws0{word-spacing:0.021888px;}
.ws74{word-spacing:0.024192px;}
.ws34{word-spacing:0.072000px;}
.wsf{word-spacing:0.099360px;}
.ws3{word-spacing:0.144000px;}
.ws70{word-spacing:0.157248px;}
.ws12{word-spacing:0.185472px;}
.wse{word-spacing:0.198720px;}
.ws2b{word-spacing:0.216000px;}
.ws72{word-spacing:0.247968px;}
.ws54{word-spacing:0.288000px;}
.ws6d{word-spacing:0.326592px;}
.ws52{word-spacing:0.360000px;}
.ws4c{word-spacing:0.432000px;}
.ws1a{word-spacing:0.504000px;}
.ws6e{word-spacing:0.550368px;}
.ws75{word-spacing:0.568512px;}
.ws56{word-spacing:0.576000px;}
.ws9{word-spacing:0.648000px;}
.ws4e{word-spacing:0.720000px;}
.ws42{word-spacing:0.936000px;}
.ws76{word-spacing:1.173312px;}
.ws5e{word-spacing:1.224000px;}
.ws48{word-spacing:1.296000px;}
.ws4d{word-spacing:1.440000px;}
.ws59{word-spacing:1.944000px;}
.ws45{word-spacing:10.008000px;}
.wsc{word-spacing:10.147968px;}
.ws66{word-spacing:10.152000px;}
.ws4b{word-spacing:11.448000px;}
.ws62{word-spacing:11.592000px;}
.ws32{word-spacing:11.880000px;}
.ws4a{word-spacing:12.024000px;}
.ws2f{word-spacing:12.168000px;}
.ws30{word-spacing:12.456000px;}
.ws24{word-spacing:12.600000px;}
.ws5f{word-spacing:12.888000px;}
.ws3b{word-spacing:13.032000px;}
.ws3a{word-spacing:13.464000px;}
.ws63{word-spacing:14.040000px;}
.ws5a{word-spacing:14.328000px;}
.ws2a{word-spacing:14.472000px;}
.ws68{word-spacing:14.760000px;}
.ws16{word-spacing:14.904000px;}
.ws43{word-spacing:15.768000px;}
.ws69{word-spacing:15.912000px;}
.ws5d{word-spacing:16.920000px;}
.ws53{word-spacing:17.208000px;}
.ws5c{word-spacing:17.496000px;}
.ws5b{word-spacing:18.216000px;}
.ws3f{word-spacing:18.360000px;}
.ws33{word-spacing:18.648000px;}
.ws2d{word-spacing:18.792000px;}
.ws57{word-spacing:18.936000px;}
.ws1b{word-spacing:19.368000px;}
.ws58{word-spacing:19.800000px;}
.ws29{word-spacing:20.232000px;}
.ws55{word-spacing:20.376000px;}
.ws28{word-spacing:21.240000px;}
.ws4f{word-spacing:22.680000px;}
.ws46{word-spacing:22.968000px;}
.ws60{word-spacing:23.256000px;}
.ws3d{word-spacing:23.544000px;}
.ws65{word-spacing:24.264000px;}
.ws50{word-spacing:24.408000px;}
.ws61{word-spacing:24.552000px;}
.ws13{word-spacing:24.760512px;}
.ws51{word-spacing:25.128000px;}
.ws64{word-spacing:26.424000px;}
.ws47{word-spacing:27.720000px;}
.ws3e{word-spacing:28.872000px;}
.ws26{word-spacing:29.448000px;}
.ws27{word-spacing:29.880000px;}
.ws6a{word-spacing:32.760000px;}
.ws40{word-spacing:34.920000px;}
.ws41{word-spacing:35.640000px;}
.ws3c{word-spacing:37.800000px;}
.ws31{word-spacing:45.720000px;}
.ws11{word-spacing:49.852224px;}
.wsd{word-spacing:53.356320px;}
.ws18{word-spacing:200.088000px;}
.ws67{word-spacing:1271.448000px;}
._8{margin-left:-5.590368px;}
._9{margin-left:-3.977280px;}
._2{margin-left:-2.439216px;}
._0{margin-left:-1.434816px;}
._1{width:1.440000px;}
._3{width:2.593152px;}
._e{width:3.803328px;}
._d{width:4.896000px;}
._13{width:5.898960px;}
._6{width:6.906240px;}
._5{width:8.248320px;}
._b{width:10.068480px;}
._10{width:11.088000px;}
._a{width:12.954816px;}
._19{width:14.841504px;}
._17{width:16.128000px;}
._11{width:17.153712px;}
._c{width:18.415008px;}
._f{width:19.506816px;}
._14{width:20.936448px;}
._18{width:23.273712px;}
._16{width:25.837632px;}
._15{width:27.223344px;}
._12{width:29.072448px;}
._1a{width:33.264000px;}
._7{width:47.960640px;}
._4{width:52.015680px;}
.fc1{color:rgb(59,56,56);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.y3e{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.259970px;}
.y6d{bottom:3.060000px;}
.yb{bottom:7.020000px;}
.y3b{bottom:7.739970px;}
.y3d{bottom:21.420000px;}
.ya{bottom:27.540000px;}
.y9{bottom:41.940000px;}
.y8{bottom:57.420000px;}
.y2{bottom:57.960000px;}
.y7{bottom:78.660000px;}
.y3a{bottom:83.700030px;}
.y6b{bottom:84.780030px;}
.y3{bottom:88.740030px;}
.y39{bottom:90.540030px;}
.y6{bottom:99.540000px;}
.yae{bottom:113.400000px;}
.yc6{bottom:116.280000px;}
.y86{bottom:119.520000px;}
.ye4{bottom:121.680000px;}
.y38{bottom:123.840000px;}
.y6a{bottom:134.280000px;}
.yad{bottom:134.640000px;}
.yc5{bottom:137.520000px;}
.y85{bottom:140.400000px;}
.y37{bottom:144.720000px;}
.y71{bottom:146.160000px;}
.ye3{bottom:148.320000px;}
.y69{bottom:155.520000px;}
.yc4{bottom:158.400000px;}
.y84{bottom:161.640000px;}
.yac{bottom:164.520000px;}
.y36{bottom:165.960000px;}
.y70{bottom:167.400000px;}
.y68{bottom:176.400000px;}
.yc3{bottom:179.640000px;}
.y83{bottom:182.880000px;}
.yab{bottom:185.760000px;}
.y35{bottom:187.200000px;}
.y6f{bottom:188.640000px;}
.ye2{bottom:192.600000px;}
.y67{bottom:197.640000px;}
.yc2{bottom:200.880000px;}
.y82{bottom:203.760000px;}
.yaa{bottom:207.000000px;}
.y34{bottom:208.080000px;}
.y6e{bottom:209.880000px;}
.y66{bottom:218.880000px;}
.yc1{bottom:221.760000px;}
.y81{bottom:225.000000px;}
.ya9{bottom:228.240000px;}
.y33{bottom:229.320000px;}
.y65{bottom:239.760000px;}
.yc0{bottom:243.000000px;}
.ye1{bottom:245.520000px;}
.y80{bottom:246.240000px;}
.ya8{bottom:249.120000px;}
.y32{bottom:250.560000px;}
.y64{bottom:261.000000px;}
.ye0{bottom:263.160000px;}
.ybf{bottom:264.240000px;}
.y7f{bottom:267.120000px;}
.ya7{bottom:270.360000px;}
.y31{bottom:271.440000px;}
.y63{bottom:282.240000px;}
.ybe{bottom:285.120000px;}
.y7e{bottom:288.360000px;}
.ydf{bottom:289.800000px;}
.ya6{bottom:291.240000px;}
.y30{bottom:292.680000px;}
.y62{bottom:303.120000px;}
.ybd{bottom:306.360000px;}
.yde{bottom:307.440000px;}
.yd1{bottom:309.240000px;}
.y2f{bottom:313.560000px;}
.y7d{bottom:318.240000px;}
.ya5{bottom:321.480000px;}
.y61{bottom:324.360000px;}
.ybc{bottom:327.240000px;}
.yd0{bottom:330.480000px;}
.ydd{bottom:334.080000px;}
.y2e{bottom:334.440000px;}
.y7c{bottom:339.480000px;}
.ya4{bottom:342.720000px;}
.y60{bottom:345.240000px;}
.ybb{bottom:348.480000px;}
.ycf{bottom:351.720000px;}
.y2d{bottom:353.880000px;}
.ydc{bottom:360.360000px;}
.y7b{bottom:360.720000px;}
.ya3{bottom:363.600000px;}
.y5f{bottom:366.480000px;}
.yba{bottom:369.720000px;}
.yce{bottom:372.600000px;}
.y2c{bottom:373.320000px;}
.y7a{bottom:381.600000px;}
.ya2{bottom:384.840000px;}
.ydb{bottom:387.000000px;}
.y5e{bottom:387.720000px;}
.yb9{bottom:390.600000px;}
.y2b{bottom:392.400000px;}
.ycd{bottom:393.840000px;}
.yda{bottom:404.640000px;}
.ya1{bottom:405.720000px;}
.y5d{bottom:408.600000px;}
.y2a{bottom:411.840000px;}
.ycc{bottom:414.720000px;}
.ya0{bottom:426.960000px;}
.y5c{bottom:429.840000px;}
.y29{bottom:431.280000px;}
.y79{bottom:432.720000px;}
.ycb{bottom:435.960000px;}
.y9f{bottom:448.200000px;}
.yd9{bottom:448.920000px;}
.y28{bottom:450.360000px;}
.y5b{bottom:450.720000px;}
.y78{bottom:453.960000px;}
.yca{bottom:457.200000px;}
.y27{bottom:469.800000px;}
.y5a{bottom:471.960000px;}
.y77{bottom:475.200000px;}
.yd8{bottom:475.560000px;}
.y9e{bottom:478.080000px;}
.y26{bottom:489.240000px;}
.y59{bottom:493.200000px;}
.y76{bottom:496.080000px;}
.y9d{bottom:499.320000px;}
.y25{bottom:508.680000px;}
.y58{bottom:514.080000px;}
.y75{bottom:517.320000px;}
.yd7{bottom:519.480000px;}
.y9c{bottom:520.560000px;}
.y24{bottom:528.120000px;}
.y57{bottom:535.320000px;}
.y74{bottom:538.560000px;}
.y9b{bottom:541.440000px;}
.yd6{bottom:546.120000px;}
.y23{bottom:549.360000px;}
.y56{bottom:556.560000px;}
.yb8{bottom:559.440000px;}
.y9a{bottom:562.680000px;}
.y73{bottom:568.440000px;}
.y22{bottom:570.600000px;}
.yd5{bottom:572.760000px;}
.y55{bottom:577.440000px;}
.yb7{bottom:580.680000px;}
.y99{bottom:583.560000px;}
.y72{bottom:589.680000px;}
.yd4{bottom:590.400000px;}
.y21{bottom:591.480000px;}
.y54{bottom:598.680000px;}
.yb6{bottom:601.560000px;}
.y98{bottom:604.800000px;}
.y20{bottom:612.720000px;}
.yc9{bottom:613.800000px;}
.yd3{bottom:617.040000px;}
.y53{bottom:619.560000px;}
.yb5{bottom:622.800000px;}
.y97{bottom:626.040000px;}
.y1f{bottom:633.600000px;}
.yc8{bottom:635.040000px;}
.y52{bottom:640.800000px;}
.yd2{bottom:643.680000px;}
.yb4{bottom:644.040000px;}
.y96{bottom:646.920000px;}
.y1e{bottom:654.840000px;}
.yc7{bottom:655.920000px;}
.y51{bottom:662.040000px;}
.yb3{bottom:664.920000px;}
.y1d{bottom:676.080000px;}
.y95{bottom:677.160000px;}
.y50{bottom:682.920000px;}
.yb2{bottom:686.160000px;}
.y1c{bottom:696.960000px;}
.y94{bottom:698.040000px;}
.y4f{bottom:704.160000px;}
.yb1{bottom:707.040000px;}
.y1b{bottom:718.200000px;}
.y4e{bottom:725.040000px;}
.y93{bottom:728.280000px;}
.y1a{bottom:739.440000px;}
.y4d{bottom:746.280000px;}
.y92{bottom:749.520000px;}
.y19{bottom:760.320000px;}
.y4c{bottom:767.520000px;}
.y91{bottom:770.400000px;}
.y18{bottom:781.560000px;}
.y4b{bottom:788.400000px;}
.yb0{bottom:791.640000px;}
.y90{bottom:800.640000px;}
.y17{bottom:802.440000px;}
.y4a{bottom:809.640000px;}
.yf0{bottom:813.960000px;}
.yaf{bottom:821.520000px;}
.y8f{bottom:821.880000px;}
.y16{bottom:823.680000px;}
.y49{bottom:830.880000px;}
.yef{bottom:834.840000px;}
.y8e{bottom:842.760000px;}
.y15{bottom:844.920000px;}
.y48{bottom:851.760000px;}
.yee{bottom:856.080000px;}
.y8d{bottom:864.000000px;}
.y14{bottom:865.800000px;}
.y47{bottom:873.000000px;}
.yed{bottom:877.320000px;}
.y8c{bottom:884.880000px;}
.y13{bottom:887.040000px;}
.y46{bottom:893.880000px;}
.y8b{bottom:906.120000px;}
.yec{bottom:906.480000px;}
.y12{bottom:908.280000px;}
.y45{bottom:915.120000px;}
.y8a{bottom:927.360000px;}
.y11{bottom:929.160000px;}
.yeb{bottom:933.120000px;}
.y44{bottom:936.360000px;}
.y89{bottom:948.240000px;}
.y10{bottom:950.400000px;}
.y43{bottom:957.240000px;}
.yea{bottom:959.760000px;}
.y88{bottom:969.480000px;}
.yf{bottom:973.080000px;}
.ye9{bottom:977.400000px;}
.y42{bottom:978.480000px;}
.y87{bottom:990.720000px;}
.y41{bottom:999.720000px;}
.ye{bottom:1001.160000px;}
.y5{bottom:1002.420000px;}
.ye8{bottom:1003.680000px;}
.y40{bottom:1020.600000px;}
.ye7{bottom:1021.320000px;}
.yd{bottom:1030.680000px;}
.y3f{bottom:1041.840000px;}
.ye6{bottom:1047.960000px;}
.yc{bottom:1062.720000px;}
.ye5{bottom:1065.600000px;}
.y3c{bottom:1082.340000px;}
.y6c{bottom:1087.020000px;}
.y1{bottom:1116.720000px;}
.h2{height:14.040000px;}
.hd{height:19.080000px;}
.h9{height:20.520000px;}
.hc{height:20.880000px;}
.hb{height:31.672266px;}
.ha{height:32.760000px;}
.h5{height:32.925234px;}
.h8{height:47.707031px;}
.he{height:50.941406px;}
.h4{height:51.855469px;}
.hf{height:52.624688px;}
.h1{height:62.648438px;}
.h7{height:69.486328px;}
.h6{height:103.996406px;}
.h3{height:116.640000px;}
.h0{height:1188.000000px;}
.w1{width:43.200000px;}
.w5{width:162.720000px;}
.w3{width:300.600000px;}
.w6{width:332.280000px;}
.w4{width:765.360000px;}
.w2{width:775.080000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:3.780000px;}
.x1c{left:5.220000px;}
.x6{left:10.620000px;}
.x3{left:15.300000px;}
.x4{left:71.460000px;}
.x18{left:75.780000px;}
.x1d{left:77.220000px;}
.x1{left:81.000000px;}
.x7{left:83.880000px;}
.x1a{left:108.000000px;}
.x1e{left:135.000000px;}
.x19{left:144.720000px;}
.x1f{left:183.960000px;}
.x15{left:189.000000px;}
.xe{left:231.840000px;}
.x13{left:257.400000px;}
.x22{left:277.920000px;}
.xb{left:281.880000px;}
.x12{left:299.520000px;}
.x17{left:308.700000px;}
.x11{left:332.640000px;}
.xa{left:342.720000px;}
.xf{left:358.200000px;}
.xd{left:364.320000px;}
.xc{left:366.120000px;}
.x21{left:377.640000px;}
.x8{left:381.600000px;}
.x10{left:388.440000px;}
.x16{left:392.760000px;}
.x20{left:405.000000px;}
.x14{left:417.960000px;}
.x9{left:459.000000px;}
.x1b{left:678.420000px;}
.x2{left:793.980000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-1.792000pt;}
.ls3b{letter-spacing:-1.344000pt;}
.ls39{letter-spacing:-1.216000pt;}
.ls41{letter-spacing:-1.152000pt;}
.ls4e{letter-spacing:-1.096704pt;}
.ls35{letter-spacing:-0.896000pt;}
.ls3c{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.576000pt;}
.ls4d{letter-spacing:-0.559104pt;}
.ls47{letter-spacing:-0.542976pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.506368pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls46{letter-spacing:-0.344064pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls4b{letter-spacing:-0.274176pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls18{letter-spacing:-0.223744pt;}
.ls49{letter-spacing:-0.193536pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.190080pt;}
.ls14{letter-spacing:-0.147200pt;}
.ls13{letter-spacing:-0.129536pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.076032pt;}
.ls4c{letter-spacing:-0.075264pt;}
.ls5{letter-spacing:-0.068096pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls4f{letter-spacing:-0.053760pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001280pt;}
.ls12{letter-spacing:0.011776pt;}
.ls24{letter-spacing:0.029184pt;}
.lse{letter-spacing:0.050688pt;}
.ls30{letter-spacing:0.063232pt;}
.ls11{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.071680pt;}
.ls1{letter-spacing:0.107520pt;}
.ls28{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.182784pt;}
.ls34{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.198528pt;}
.lsc{letter-spacing:0.244992pt;}
.ls29{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.267520pt;}
.ls19{letter-spacing:0.270848pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.344320pt;}
.ls0{letter-spacing:0.346368pt;}
.ls44{letter-spacing:0.381696pt;}
.ls6{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.398848pt;}
.ls48{letter-spacing:0.413952pt;}
.ls32{letter-spacing:0.418304pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls51{letter-spacing:0.451584pt;}
.ls25{letter-spacing:0.486400pt;}
.ls2e{letter-spacing:0.491520pt;}
.ls50{letter-spacing:0.499968pt;}
.ls20{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.557440pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls33{letter-spacing:0.583680pt;}
.ls26{letter-spacing:0.633600pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.645120pt;}
.ls16{letter-spacing:0.688896pt;}
.ls3a{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.874368pt;}
.ls2a{letter-spacing:1.024000pt;}
.lsa{letter-spacing:1.089792pt;}
.ls21{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.664000pt;}
.ls37{letter-spacing:2.560000pt;}
.ls42{letter-spacing:5.120000pt;}
.ls36{letter-spacing:7.680000pt;}
.ls2f{letter-spacing:10.240000pt;}
.ls22{letter-spacing:16.640000pt;}
.ls40{letter-spacing:19.200000pt;}
.ws4{word-spacing:-9.892608pt;}
.ws21{word-spacing:-9.744768pt;}
.ws6{word-spacing:-9.547520pt;}
.ws5{word-spacing:-9.546240pt;}
.ws44{word-spacing:-1.728000pt;}
.ws2c{word-spacing:-1.088000pt;}
.ws49{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.747776pt;}
.ws15{word-spacing:-0.704000pt;}
.ws6c{word-spacing:-0.698880pt;}
.ws8{word-spacing:-0.643200pt;}
.ws17{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.632320pt;}
.ws2e{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.553728pt;}
.ws1f{word-spacing:-0.535040pt;}
.ws19{word-spacing:-0.512000pt;}
.ws78{word-spacing:-0.505344pt;}
.ws6f{word-spacing:-0.467712pt;}
.ws37{word-spacing:-0.466944pt;}
.ws2{word-spacing:-0.448000pt;}
.ws1d{word-spacing:-0.447488pt;}
.ws6b{word-spacing:-0.435456pt;}
.ws22{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.329728pt;}
.ws25{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.316160pt;}
.ws39{word-spacing:-0.256000pt;}
.ws71{word-spacing:-0.236544pt;}
.ws23{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws35{word-spacing:-0.111872pt;}
.ws7{word-spacing:-0.085760pt;}
.ws1e{word-spacing:-0.077824pt;}
.wsb{word-spacing:-0.070656pt;}
.ws1{word-spacing:-0.064000pt;}
.ws73{word-spacing:-0.053760pt;}
.ws20{word-spacing:-0.048640pt;}
.ws1c{word-spacing:0.000000pt;}
.ws0{word-spacing:0.019456pt;}
.ws74{word-spacing:0.021504pt;}
.ws34{word-spacing:0.064000pt;}
.wsf{word-spacing:0.088320pt;}
.ws3{word-spacing:0.128000pt;}
.ws70{word-spacing:0.139776pt;}
.ws12{word-spacing:0.164864pt;}
.wse{word-spacing:0.176640pt;}
.ws2b{word-spacing:0.192000pt;}
.ws72{word-spacing:0.220416pt;}
.ws54{word-spacing:0.256000pt;}
.ws6d{word-spacing:0.290304pt;}
.ws52{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.448000pt;}
.ws6e{word-spacing:0.489216pt;}
.ws75{word-spacing:0.505344pt;}
.ws56{word-spacing:0.512000pt;}
.ws9{word-spacing:0.576000pt;}
.ws4e{word-spacing:0.640000pt;}
.ws42{word-spacing:0.832000pt;}
.ws76{word-spacing:1.042944pt;}
.ws5e{word-spacing:1.088000pt;}
.ws48{word-spacing:1.152000pt;}
.ws4d{word-spacing:1.280000pt;}
.ws59{word-spacing:1.728000pt;}
.ws45{word-spacing:8.896000pt;}
.wsc{word-spacing:9.020416pt;}
.ws66{word-spacing:9.024000pt;}
.ws4b{word-spacing:10.176000pt;}
.ws62{word-spacing:10.304000pt;}
.ws32{word-spacing:10.560000pt;}
.ws4a{word-spacing:10.688000pt;}
.ws2f{word-spacing:10.816000pt;}
.ws30{word-spacing:11.072000pt;}
.ws24{word-spacing:11.200000pt;}
.ws5f{word-spacing:11.456000pt;}
.ws3b{word-spacing:11.584000pt;}
.ws3a{word-spacing:11.968000pt;}
.ws63{word-spacing:12.480000pt;}
.ws5a{word-spacing:12.736000pt;}
.ws2a{word-spacing:12.864000pt;}
.ws68{word-spacing:13.120000pt;}
.ws16{word-spacing:13.248000pt;}
.ws43{word-spacing:14.016000pt;}
.ws69{word-spacing:14.144000pt;}
.ws5d{word-spacing:15.040000pt;}
.ws53{word-spacing:15.296000pt;}
.ws5c{word-spacing:15.552000pt;}
.ws5b{word-spacing:16.192000pt;}
.ws3f{word-spacing:16.320000pt;}
.ws33{word-spacing:16.576000pt;}
.ws2d{word-spacing:16.704000pt;}
.ws57{word-spacing:16.832000pt;}
.ws1b{word-spacing:17.216000pt;}
.ws58{word-spacing:17.600000pt;}
.ws29{word-spacing:17.984000pt;}
.ws55{word-spacing:18.112000pt;}
.ws28{word-spacing:18.880000pt;}
.ws4f{word-spacing:20.160000pt;}
.ws46{word-spacing:20.416000pt;}
.ws60{word-spacing:20.672000pt;}
.ws3d{word-spacing:20.928000pt;}
.ws65{word-spacing:21.568000pt;}
.ws50{word-spacing:21.696000pt;}
.ws61{word-spacing:21.824000pt;}
.ws13{word-spacing:22.009344pt;}
.ws51{word-spacing:22.336000pt;}
.ws64{word-spacing:23.488000pt;}
.ws47{word-spacing:24.640000pt;}
.ws3e{word-spacing:25.664000pt;}
.ws26{word-spacing:26.176000pt;}
.ws27{word-spacing:26.560000pt;}
.ws6a{word-spacing:29.120000pt;}
.ws40{word-spacing:31.040000pt;}
.ws41{word-spacing:31.680000pt;}
.ws3c{word-spacing:33.600000pt;}
.ws31{word-spacing:40.640000pt;}
.ws11{word-spacing:44.313088pt;}
.wsd{word-spacing:47.427840pt;}
.ws18{word-spacing:177.856000pt;}
.ws67{word-spacing:1130.176000pt;}
._8{margin-left:-4.969216pt;}
._9{margin-left:-3.535360pt;}
._2{margin-left:-2.168192pt;}
._0{margin-left:-1.275392pt;}
._1{width:1.280000pt;}
._3{width:2.305024pt;}
._e{width:3.380736pt;}
._d{width:4.352000pt;}
._13{width:5.243520pt;}
._6{width:6.138880pt;}
._5{width:7.331840pt;}
._b{width:8.949760pt;}
._10{width:9.856000pt;}
._a{width:11.515392pt;}
._19{width:13.192448pt;}
._17{width:14.336000pt;}
._11{width:15.247744pt;}
._c{width:16.368896pt;}
._f{width:17.339392pt;}
._14{width:18.610176pt;}
._18{width:20.687744pt;}
._16{width:22.966784pt;}
._15{width:24.198528pt;}
._12{width:25.842176pt;}
._1a{width:29.568000pt;}
._7{width:42.631680pt;}
._4{width:46.236160pt;}
.fs2{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.y3e{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.119973pt;}
.y6d{bottom:2.720000pt;}
.yb{bottom:6.240000pt;}
.y3b{bottom:6.879973pt;}
.y3d{bottom:19.040000pt;}
.ya{bottom:24.480000pt;}
.y9{bottom:37.280000pt;}
.y8{bottom:51.040000pt;}
.y2{bottom:51.520000pt;}
.y7{bottom:69.920000pt;}
.y3a{bottom:74.400027pt;}
.y6b{bottom:75.360027pt;}
.y3{bottom:78.880027pt;}
.y39{bottom:80.480027pt;}
.y6{bottom:88.480000pt;}
.yae{bottom:100.800000pt;}
.yc6{bottom:103.360000pt;}
.y86{bottom:106.240000pt;}
.ye4{bottom:108.160000pt;}
.y38{bottom:110.080000pt;}
.y6a{bottom:119.360000pt;}
.yad{bottom:119.680000pt;}
.yc5{bottom:122.240000pt;}
.y85{bottom:124.800000pt;}
.y37{bottom:128.640000pt;}
.y71{bottom:129.920000pt;}
.ye3{bottom:131.840000pt;}
.y69{bottom:138.240000pt;}
.yc4{bottom:140.800000pt;}
.y84{bottom:143.680000pt;}
.yac{bottom:146.240000pt;}
.y36{bottom:147.520000pt;}
.y70{bottom:148.800000pt;}
.y68{bottom:156.800000pt;}
.yc3{bottom:159.680000pt;}
.y83{bottom:162.560000pt;}
.yab{bottom:165.120000pt;}
.y35{bottom:166.400000pt;}
.y6f{bottom:167.680000pt;}
.ye2{bottom:171.200000pt;}
.y67{bottom:175.680000pt;}
.yc2{bottom:178.560000pt;}
.y82{bottom:181.120000pt;}
.yaa{bottom:184.000000pt;}
.y34{bottom:184.960000pt;}
.y6e{bottom:186.560000pt;}
.y66{bottom:194.560000pt;}
.yc1{bottom:197.120000pt;}
.y81{bottom:200.000000pt;}
.ya9{bottom:202.880000pt;}
.y33{bottom:203.840000pt;}
.y65{bottom:213.120000pt;}
.yc0{bottom:216.000000pt;}
.ye1{bottom:218.240000pt;}
.y80{bottom:218.880000pt;}
.ya8{bottom:221.440000pt;}
.y32{bottom:222.720000pt;}
.y64{bottom:232.000000pt;}
.ye0{bottom:233.920000pt;}
.ybf{bottom:234.880000pt;}
.y7f{bottom:237.440000pt;}
.ya7{bottom:240.320000pt;}
.y31{bottom:241.280000pt;}
.y63{bottom:250.880000pt;}
.ybe{bottom:253.440000pt;}
.y7e{bottom:256.320000pt;}
.ydf{bottom:257.600000pt;}
.ya6{bottom:258.880000pt;}
.y30{bottom:260.160000pt;}
.y62{bottom:269.440000pt;}
.ybd{bottom:272.320000pt;}
.yde{bottom:273.280000pt;}
.yd1{bottom:274.880000pt;}
.y2f{bottom:278.720000pt;}
.y7d{bottom:282.880000pt;}
.ya5{bottom:285.760000pt;}
.y61{bottom:288.320000pt;}
.ybc{bottom:290.880000pt;}
.yd0{bottom:293.760000pt;}
.ydd{bottom:296.960000pt;}
.y2e{bottom:297.280000pt;}
.y7c{bottom:301.760000pt;}
.ya4{bottom:304.640000pt;}
.y60{bottom:306.880000pt;}
.ybb{bottom:309.760000pt;}
.ycf{bottom:312.640000pt;}
.y2d{bottom:314.560000pt;}
.ydc{bottom:320.320000pt;}
.y7b{bottom:320.640000pt;}
.ya3{bottom:323.200000pt;}
.y5f{bottom:325.760000pt;}
.yba{bottom:328.640000pt;}
.yce{bottom:331.200000pt;}
.y2c{bottom:331.840000pt;}
.y7a{bottom:339.200000pt;}
.ya2{bottom:342.080000pt;}
.ydb{bottom:344.000000pt;}
.y5e{bottom:344.640000pt;}
.yb9{bottom:347.200000pt;}
.y2b{bottom:348.800000pt;}
.ycd{bottom:350.080000pt;}
.yda{bottom:359.680000pt;}
.ya1{bottom:360.640000pt;}
.y5d{bottom:363.200000pt;}
.y2a{bottom:366.080000pt;}
.ycc{bottom:368.640000pt;}
.ya0{bottom:379.520000pt;}
.y5c{bottom:382.080000pt;}
.y29{bottom:383.360000pt;}
.y79{bottom:384.640000pt;}
.ycb{bottom:387.520000pt;}
.y9f{bottom:398.400000pt;}
.yd9{bottom:399.040000pt;}
.y28{bottom:400.320000pt;}
.y5b{bottom:400.640000pt;}
.y78{bottom:403.520000pt;}
.yca{bottom:406.400000pt;}
.y27{bottom:417.600000pt;}
.y5a{bottom:419.520000pt;}
.y77{bottom:422.400000pt;}
.yd8{bottom:422.720000pt;}
.y9e{bottom:424.960000pt;}
.y26{bottom:434.880000pt;}
.y59{bottom:438.400000pt;}
.y76{bottom:440.960000pt;}
.y9d{bottom:443.840000pt;}
.y25{bottom:452.160000pt;}
.y58{bottom:456.960000pt;}
.y75{bottom:459.840000pt;}
.yd7{bottom:461.760000pt;}
.y9c{bottom:462.720000pt;}
.y24{bottom:469.440000pt;}
.y57{bottom:475.840000pt;}
.y74{bottom:478.720000pt;}
.y9b{bottom:481.280000pt;}
.yd6{bottom:485.440000pt;}
.y23{bottom:488.320000pt;}
.y56{bottom:494.720000pt;}
.yb8{bottom:497.280000pt;}
.y9a{bottom:500.160000pt;}
.y73{bottom:505.280000pt;}
.y22{bottom:507.200000pt;}
.yd5{bottom:509.120000pt;}
.y55{bottom:513.280000pt;}
.yb7{bottom:516.160000pt;}
.y99{bottom:518.720000pt;}
.y72{bottom:524.160000pt;}
.yd4{bottom:524.800000pt;}
.y21{bottom:525.760000pt;}
.y54{bottom:532.160000pt;}
.yb6{bottom:534.720000pt;}
.y98{bottom:537.600000pt;}
.y20{bottom:544.640000pt;}
.yc9{bottom:545.600000pt;}
.yd3{bottom:548.480000pt;}
.y53{bottom:550.720000pt;}
.yb5{bottom:553.600000pt;}
.y97{bottom:556.480000pt;}
.y1f{bottom:563.200000pt;}
.yc8{bottom:564.480000pt;}
.y52{bottom:569.600000pt;}
.yd2{bottom:572.160000pt;}
.yb4{bottom:572.480000pt;}
.y96{bottom:575.040000pt;}
.y1e{bottom:582.080000pt;}
.yc7{bottom:583.040000pt;}
.y51{bottom:588.480000pt;}
.yb3{bottom:591.040000pt;}
.y1d{bottom:600.960000pt;}
.y95{bottom:601.920000pt;}
.y50{bottom:607.040000pt;}
.yb2{bottom:609.920000pt;}
.y1c{bottom:619.520000pt;}
.y94{bottom:620.480000pt;}
.y4f{bottom:625.920000pt;}
.yb1{bottom:628.480000pt;}
.y1b{bottom:638.400000pt;}
.y4e{bottom:644.480000pt;}
.y93{bottom:647.360000pt;}
.y1a{bottom:657.280000pt;}
.y4d{bottom:663.360000pt;}
.y92{bottom:666.240000pt;}
.y19{bottom:675.840000pt;}
.y4c{bottom:682.240000pt;}
.y91{bottom:684.800000pt;}
.y18{bottom:694.720000pt;}
.y4b{bottom:700.800000pt;}
.yb0{bottom:703.680000pt;}
.y90{bottom:711.680000pt;}
.y17{bottom:713.280000pt;}
.y4a{bottom:719.680000pt;}
.yf0{bottom:723.520000pt;}
.yaf{bottom:730.240000pt;}
.y8f{bottom:730.560000pt;}
.y16{bottom:732.160000pt;}
.y49{bottom:738.560000pt;}
.yef{bottom:742.080000pt;}
.y8e{bottom:749.120000pt;}
.y15{bottom:751.040000pt;}
.y48{bottom:757.120000pt;}
.yee{bottom:760.960000pt;}
.y8d{bottom:768.000000pt;}
.y14{bottom:769.600000pt;}
.y47{bottom:776.000000pt;}
.yed{bottom:779.840000pt;}
.y8c{bottom:786.560000pt;}
.y13{bottom:788.480000pt;}
.y46{bottom:794.560000pt;}
.y8b{bottom:805.440000pt;}
.yec{bottom:805.760000pt;}
.y12{bottom:807.360000pt;}
.y45{bottom:813.440000pt;}
.y8a{bottom:824.320000pt;}
.y11{bottom:825.920000pt;}
.yeb{bottom:829.440000pt;}
.y44{bottom:832.320000pt;}
.y89{bottom:842.880000pt;}
.y10{bottom:844.800000pt;}
.y43{bottom:850.880000pt;}
.yea{bottom:853.120000pt;}
.y88{bottom:861.760000pt;}
.yf{bottom:864.960000pt;}
.ye9{bottom:868.800000pt;}
.y42{bottom:869.760000pt;}
.y87{bottom:880.640000pt;}
.y41{bottom:888.640000pt;}
.ye{bottom:889.920000pt;}
.y5{bottom:891.040000pt;}
.ye8{bottom:892.160000pt;}
.y40{bottom:907.200000pt;}
.ye7{bottom:907.840000pt;}
.yd{bottom:916.160000pt;}
.y3f{bottom:926.080000pt;}
.ye6{bottom:931.520000pt;}
.yc{bottom:944.640000pt;}
.ye5{bottom:947.200000pt;}
.y3c{bottom:962.080000pt;}
.y6c{bottom:966.240000pt;}
.y1{bottom:992.640000pt;}
.h2{height:12.480000pt;}
.hd{height:16.960000pt;}
.h9{height:18.240000pt;}
.hc{height:18.560000pt;}
.hb{height:28.153125pt;}
.ha{height:29.120000pt;}
.h5{height:29.266875pt;}
.h8{height:42.406250pt;}
.he{height:45.281250pt;}
.h4{height:46.093750pt;}
.hf{height:46.777500pt;}
.h1{height:55.687500pt;}
.h7{height:61.765625pt;}
.h6{height:92.441250pt;}
.h3{height:103.680000pt;}
.h0{height:1056.000000pt;}
.w1{width:38.400000pt;}
.w5{width:144.640000pt;}
.w3{width:267.200000pt;}
.w6{width:295.360000pt;}
.w4{width:680.320000pt;}
.w2{width:688.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.360000pt;}
.x1c{left:4.640000pt;}
.x6{left:9.440000pt;}
.x3{left:13.600000pt;}
.x4{left:63.520000pt;}
.x18{left:67.360000pt;}
.x1d{left:68.640000pt;}
.x1{left:72.000000pt;}
.x7{left:74.560000pt;}
.x1a{left:96.000000pt;}
.x1e{left:120.000000pt;}
.x19{left:128.640000pt;}
.x1f{left:163.520000pt;}
.x15{left:168.000000pt;}
.xe{left:206.080000pt;}
.x13{left:228.800000pt;}
.x22{left:247.040000pt;}
.xb{left:250.560000pt;}
.x12{left:266.240000pt;}
.x17{left:274.400000pt;}
.x11{left:295.680000pt;}
.xa{left:304.640000pt;}
.xf{left:318.400000pt;}
.xd{left:323.840000pt;}
.xc{left:325.440000pt;}
.x21{left:335.680000pt;}
.x8{left:339.200000pt;}
.x10{left:345.280000pt;}
.x16{left:349.120000pt;}
.x20{left:360.000000pt;}
.x14{left:371.520000pt;}
.x9{left:408.000000pt;}
.x1b{left:603.040000pt;}
.x2{left:705.760000pt;}
}




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