
    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_b2ba3150810f470da52304f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;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_270164828216a86807bdb373.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_adbda8e188fe07c4f49498a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925000;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_2df0921355ed3b19fc210b43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_a604d00f5c7253b6d8e12afb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171000;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_5cd823ffc0742445c27bbfbe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942933;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_81d2c9baed1f1d1cd2a5786b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.714000;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_27cf9089868b5922a81fdcea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d3be8da4486be997133ab99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.843000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cdc1bec69a2d1a6cbd768405.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6035aefc48382f0d76545e2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_270ef20e2f1c546e60f3abc4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677246;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.886000px;}
.ls5{letter-spacing:-0.867000px;}
.ls7{letter-spacing:-0.629640px;}
.ls4{letter-spacing:-0.225000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000018px;}
.ls3{letter-spacing:0.510000px;}
.ls1{letter-spacing:1.350000px;}
.ls0{letter-spacing:2.100000px;}
.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;}
}
.ws10{word-spacing:-50.133000px;}
.ws12{word-spacing:-16.344000px;}
.ws7{word-spacing:-14.040000px;}
.ws5{word-spacing:-8.185320px;}
.ws11{word-spacing:-7.555680px;}
.ws14{word-spacing:-3.132000px;}
.wsa{word-spacing:-1.998000px;}
.ws4{word-spacing:-1.728000px;}
.wsf{word-spacing:-1.296000px;}
.ws9{word-spacing:-0.432000px;}
.ws0{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.045000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.225000px;}
.wsd{word-spacing:1.566000px;}
.wsb{word-spacing:1.782000px;}
.ws13{word-spacing:3.294000px;}
.wsc{word-spacing:5.130000px;}
.ws3{word-spacing:11.124000px;}
.ws8{word-spacing:11.394000px;}
.ws6{word-spacing:38.403000px;}
._e{margin-left:-611.796000px;}
._25{margin-left:-609.399000px;}
._15{margin-left:-604.605000px;}
._18{margin-left:-602.208000px;}
._20{margin-left:-14.526000px;}
._12{margin-left:-13.068000px;}
._11{margin-left:-11.625000px;}
._1{margin-left:-9.882000px;}
._d{margin-left:-8.275500px;}
._0{margin-left:-6.000000px;}
._14{margin-left:-4.944000px;}
._8{margin-left:-3.906000px;}
._2{margin-left:-2.214000px;}
._3{margin-left:-1.026000px;}
._4{width:1.467000px;}
._5{width:3.339000px;}
._7{width:4.779000px;}
._f{width:5.961600px;}
._c{width:6.998400px;}
._9{width:8.964000px;}
._a{width:10.152000px;}
._b{width:11.244600px;}
._16{width:12.706200px;}
._19{width:13.923000px;}
._1e{width:15.363000px;}
._1f{width:17.550000px;}
._21{width:18.689400px;}
._23{width:20.698200px;}
._1b{width:21.780000px;}
._24{width:25.848000px;}
._1d{width:28.426500px;}
._1c{width:31.050000px;}
._17{width:41.040000px;}
._10{width:42.480000px;}
._1a{width:43.488000px;}
._13{width:44.568000px;}
._22{width:51.672000px;}
._6{width:52.776000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs4{font-size:45.000000px;}
.fs0{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:41.744850px;}
.y21{bottom:55.244850px;}
.y1{bottom:55.275600px;}
.y20{bottom:68.744850px;}
.ybc{bottom:97.770600px;}
.ya8{bottom:97.774350px;}
.ye0{bottom:97.794000px;}
.y38{bottom:97.800000px;}
.y5c{bottom:97.848000px;}
.ycd{bottom:97.871850px;}
.y7c{bottom:97.884000px;}
.yfd{bottom:97.938000px;}
.y162{bottom:97.974000px;}
.y9f{bottom:98.022000px;}
.y1f{bottom:110.907900px;}
.ya7{bottom:114.274350px;}
.ydf{bottom:117.288000px;}
.y37{bottom:117.294000px;}
.y144{bottom:117.318000px;}
.y5b{bottom:117.342000px;}
.ycc{bottom:117.365850px;}
.y7b{bottom:117.378000px;}
.yfc{bottom:117.432000px;}
.y161{bottom:117.468000px;}
.y9e{bottom:117.516000px;}
.y1e{bottom:130.401900px;}
.yde{bottom:136.782000px;}
.y36{bottom:136.788000px;}
.y143{bottom:136.812000px;}
.y5a{bottom:136.836000px;}
.ycb{bottom:136.859850px;}
.y10b{bottom:136.860000px;}
.y7a{bottom:136.872000px;}
.yfb{bottom:136.926000px;}
.y160{bottom:136.962000px;}
.y9d{bottom:137.010000px;}
.y1d{bottom:149.895900px;}
.ydd{bottom:156.276000px;}
.y35{bottom:156.282000px;}
.ya6{bottom:156.300000px;}
.y142{bottom:156.306000px;}
.y12f{bottom:156.324000px;}
.y59{bottom:156.330000px;}
.yca{bottom:156.353850px;}
.y10a{bottom:156.354000px;}
.y79{bottom:156.366000px;}
.yfa{bottom:156.420000px;}
.y15f{bottom:156.456000px;}
.y9c{bottom:156.504000px;}
.y1c{bottom:169.389900px;}
.y34{bottom:175.776000px;}
.ya5{bottom:175.794000px;}
.y141{bottom:175.800000px;}
.y12e{bottom:175.818000px;}
.y58{bottom:175.824000px;}
.yc9{bottom:175.847850px;}
.y109{bottom:175.848000px;}
.y78{bottom:175.860000px;}
.yf9{bottom:175.914000px;}
.y15e{bottom:175.950000px;}
.y9b{bottom:175.998000px;}
.y1b{bottom:188.883900px;}
.ydc{bottom:195.276000px;}
.ya4{bottom:195.288000px;}
.y140{bottom:195.294000px;}
.y12d{bottom:195.312000px;}
.y57{bottom:195.318000px;}
.yc8{bottom:195.341850px;}
.y108{bottom:195.342000px;}
.y77{bottom:195.354000px;}
.yf8{bottom:195.408000px;}
.y15d{bottom:195.444000px;}
.y17e{bottom:195.480000px;}
.y9a{bottom:195.492000px;}
.y1a{bottom:208.377900px;}
.ya3{bottom:214.782000px;}
.y13f{bottom:214.788000px;}
.y12c{bottom:214.806000px;}
.y56{bottom:214.812000px;}
.yc7{bottom:214.835850px;}
.y107{bottom:214.836000px;}
.y76{bottom:214.848000px;}
.yf7{bottom:214.902000px;}
.y15c{bottom:214.938000px;}
.y17d{bottom:214.974000px;}
.y99{bottom:214.986000px;}
.y19{bottom:227.871900px;}
.y13e{bottom:234.282000px;}
.y12b{bottom:234.300000px;}
.y55{bottom:234.306000px;}
.yc6{bottom:234.329850px;}
.y106{bottom:234.330000px;}
.y75{bottom:234.342000px;}
.yf6{bottom:234.396000px;}
.y15b{bottom:234.432000px;}
.y17c{bottom:234.468000px;}
.y98{bottom:234.480000px;}
.y33{bottom:240.775950px;}
.ya2{bottom:245.274450px;}
.y18{bottom:247.365900px;}
.y12a{bottom:253.794000px;}
.y54{bottom:253.800000px;}
.y13d{bottom:253.806000px;}
.yc5{bottom:253.823850px;}
.y105{bottom:253.824000px;}
.y74{bottom:253.836000px;}
.yf5{bottom:253.890000px;}
.y15a{bottom:253.926000px;}
.y17b{bottom:253.962000px;}
.y97{bottom:253.974000px;}
.ya1{bottom:262.525200px;}
.y17{bottom:266.859900px;}
.y129{bottom:273.288000px;}
.y53{bottom:273.294000px;}
.y13c{bottom:273.300000px;}
.yc4{bottom:273.317850px;}
.y104{bottom:273.318000px;}
.y73{bottom:273.330000px;}
.ydb{bottom:273.342000px;}
.yf4{bottom:273.384000px;}
.y159{bottom:273.420000px;}
.y17a{bottom:273.456000px;}
.y96{bottom:273.468000px;}
.ya0{bottom:279.775950px;}
.y16{bottom:286.353900px;}
.y128{bottom:292.782000px;}
.y52{bottom:292.788000px;}
.y13b{bottom:292.794000px;}
.yc3{bottom:292.811850px;}
.y103{bottom:292.812000px;}
.y72{bottom:292.824000px;}
.yda{bottom:292.836000px;}
.yf3{bottom:292.878000px;}
.y158{bottom:292.914000px;}
.y179{bottom:292.950000px;}
.y95{bottom:292.962000px;}
.y15{bottom:305.847900px;}
.y127{bottom:312.276000px;}
.y51{bottom:312.282000px;}
.y13a{bottom:312.288000px;}
.yc2{bottom:312.305850px;}
.y102{bottom:312.306000px;}
.y71{bottom:312.318000px;}
.yd9{bottom:312.330000px;}
.yf2{bottom:312.372000px;}
.y157{bottom:312.408000px;}
.y178{bottom:312.444000px;}
.y94{bottom:312.456000px;}
.y14{bottom:325.341900px;}
.y50{bottom:331.776000px;}
.y139{bottom:331.782000px;}
.yc1{bottom:331.799850px;}
.y101{bottom:331.800000px;}
.y70{bottom:331.812000px;}
.yd8{bottom:331.824000px;}
.yf1{bottom:331.866000px;}
.y156{bottom:331.902000px;}
.y177{bottom:331.938000px;}
.y93{bottom:331.950000px;}
.y13{bottom:344.835900px;}
.y126{bottom:351.276000px;}
.yc0{bottom:351.293850px;}
.y100{bottom:351.294000px;}
.y6f{bottom:351.306000px;}
.yd7{bottom:351.318000px;}
.y138{bottom:351.330000px;}
.yf0{bottom:351.360000px;}
.y155{bottom:351.396000px;}
.y176{bottom:351.432000px;}
.y92{bottom:351.444000px;}
.y12{bottom:364.329900px;}
.y4f{bottom:370.776000px;}
.ybf{bottom:370.787850px;}
.yff{bottom:370.788000px;}
.y6e{bottom:370.800000px;}
.yd6{bottom:370.812000px;}
.y137{bottom:370.824000px;}
.yef{bottom:370.854000px;}
.y154{bottom:370.890000px;}
.y175{bottom:370.926000px;}
.y91{bottom:370.938000px;}
.y11{bottom:383.823900px;}
.ybe{bottom:390.281850px;}
.yfe{bottom:390.282000px;}
.y6d{bottom:390.294000px;}
.yd5{bottom:390.306000px;}
.y136{bottom:390.318000px;}
.yee{bottom:390.348000px;}
.y153{bottom:390.384000px;}
.y174{bottom:390.420000px;}
.y90{bottom:390.432000px;}
.y10{bottom:403.317900px;}
.ybd{bottom:409.775850px;}
.y112{bottom:409.776000px;}
.y6c{bottom:409.788000px;}
.yd4{bottom:409.800000px;}
.y135{bottom:409.812000px;}
.yed{bottom:409.842000px;}
.y152{bottom:409.878000px;}
.y173{bottom:409.914000px;}
.y8f{bottom:409.926000px;}
.yf{bottom:422.811900px;}
.y6b{bottom:429.282000px;}
.yd3{bottom:429.294000px;}
.y134{bottom:429.306000px;}
.y125{bottom:429.318000px;}
.yec{bottom:429.336000px;}
.y151{bottom:429.372000px;}
.y172{bottom:429.408000px;}
.y8e{bottom:429.420000px;}
.ye{bottom:442.305900px;}
.y6a{bottom:448.776000px;}
.yd2{bottom:448.788000px;}
.y133{bottom:448.800000px;}
.y124{bottom:448.812000px;}
.yeb{bottom:448.830000px;}
.y150{bottom:448.866000px;}
.ybb{bottom:448.890000px;}
.y171{bottom:448.902000px;}
.y4e{bottom:448.908000px;}
.y8d{bottom:448.914000px;}
.ycf{bottom:459.471150px;}
.yd{bottom:461.799900px;}
.yd1{bottom:468.282000px;}
.y132{bottom:468.294000px;}
.y123{bottom:468.306000px;}
.yea{bottom:468.324000px;}
.y14f{bottom:468.360000px;}
.yba{bottom:468.384000px;}
.y170{bottom:468.396000px;}
.y4d{bottom:468.402000px;}
.y8c{bottom:468.408000px;}
.yce{bottom:476.721900px;}
.yc{bottom:481.293900px;}
.y69{bottom:487.776000px;}
.y131{bottom:487.788000px;}
.y122{bottom:487.800000px;}
.ye9{bottom:487.818000px;}
.y14e{bottom:487.854000px;}
.yb9{bottom:487.878000px;}
.y16f{bottom:487.890000px;}
.y4c{bottom:487.896000px;}
.y8b{bottom:487.902000px;}
.yb{bottom:500.787900px;}
.y130{bottom:507.282000px;}
.y121{bottom:507.294000px;}
.ye8{bottom:507.312000px;}
.y14d{bottom:507.348000px;}
.yb8{bottom:507.372000px;}
.y16e{bottom:507.384000px;}
.y4b{bottom:507.390000px;}
.y8a{bottom:507.396000px;}
.ya{bottom:520.281900px;}
.yd0{bottom:526.776000px;}
.y120{bottom:526.788000px;}
.ye7{bottom:526.806000px;}
.y111{bottom:526.812000px;}
.y32{bottom:526.824000px;}
.y14c{bottom:526.842000px;}
.yb7{bottom:526.866000px;}
.y16d{bottom:526.878000px;}
.y4a{bottom:526.884000px;}
.y89{bottom:526.890000px;}
.y9{bottom:539.775900px;}
.y11f{bottom:546.282000px;}
.ye6{bottom:546.300000px;}
.y110{bottom:546.306000px;}
.y31{bottom:546.318000px;}
.y14b{bottom:546.336000px;}
.yb6{bottom:546.360000px;}
.y16c{bottom:546.372000px;}
.y49{bottom:546.378000px;}
.y88{bottom:546.384000px;}
.y11e{bottom:565.776000px;}
.ye5{bottom:565.794000px;}
.y10f{bottom:565.800000px;}
.y30{bottom:565.812000px;}
.y14a{bottom:565.830000px;}
.y68{bottom:565.842000px;}
.yb5{bottom:565.854000px;}
.y16b{bottom:565.866000px;}
.y48{bottom:565.872000px;}
.y87{bottom:565.878000px;}
.y8{bottom:578.775900px;}
.ye4{bottom:585.288000px;}
.y10e{bottom:585.294000px;}
.y2f{bottom:585.306000px;}
.y149{bottom:585.324000px;}
.y67{bottom:585.336000px;}
.yb4{bottom:585.348000px;}
.y16a{bottom:585.360000px;}
.y47{bottom:585.366000px;}
.y86{bottom:585.372000px;}
.y11d{bottom:604.776000px;}
.ye3{bottom:604.782000px;}
.y10d{bottom:604.788000px;}
.y2e{bottom:604.800000px;}
.y148{bottom:604.818000px;}
.y66{bottom:604.830000px;}
.yb3{bottom:604.842000px;}
.y169{bottom:604.854000px;}
.y46{bottom:604.860000px;}
.y85{bottom:604.866000px;}
.ye2{bottom:624.276000px;}
.y10c{bottom:624.282000px;}
.y2d{bottom:624.294000px;}
.y185{bottom:624.307500px;}
.y147{bottom:624.312000px;}
.y65{bottom:624.324000px;}
.yb2{bottom:624.336000px;}
.y168{bottom:624.348000px;}
.y45{bottom:624.354000px;}
.y84{bottom:624.360000px;}
.y2c{bottom:643.788000px;}
.y184{bottom:643.801500px;}
.y146{bottom:643.806000px;}
.y64{bottom:643.818000px;}
.yb1{bottom:643.830000px;}
.y167{bottom:643.842000px;}
.y44{bottom:643.848000px;}
.y83{bottom:643.854000px;}
.y7{bottom:656.772150px;}
.ye1{bottom:663.276000px;}
.y2b{bottom:663.282000px;}
.y183{bottom:663.295500px;}
.y145{bottom:663.300000px;}
.y63{bottom:663.312000px;}
.yb0{bottom:663.324000px;}
.y166{bottom:663.336000px;}
.y43{bottom:663.342000px;}
.y82{bottom:663.348000px;}
.y6{bottom:679.272150px;}
.y2a{bottom:682.776000px;}
.y182{bottom:682.789500px;}
.y11c{bottom:682.794000px;}
.y62{bottom:682.806000px;}
.yaf{bottom:682.818000px;}
.y165{bottom:682.830000px;}
.y42{bottom:682.836000px;}
.y81{bottom:682.842000px;}
.y5{bottom:695.775900px;}
.y11b{bottom:702.288000px;}
.y61{bottom:702.300000px;}
.yae{bottom:702.312000px;}
.y164{bottom:702.324000px;}
.y41{bottom:702.330000px;}
.y80{bottom:702.336000px;}
.y29{bottom:721.776000px;}
.y11a{bottom:721.782000px;}
.y181{bottom:721.791000px;}
.y60{bottom:721.794000px;}
.yad{bottom:721.806000px;}
.y163{bottom:721.818000px;}
.y40{bottom:721.824000px;}
.y7f{bottom:721.830000px;}
.y180{bottom:741.285000px;}
.y5f{bottom:741.288000px;}
.yac{bottom:741.300000px;}
.y119{bottom:741.312000px;}
.y3f{bottom:741.318000px;}
.y7e{bottom:741.324000px;}
.y5e{bottom:760.782000px;}
.yab{bottom:760.794000px;}
.y118{bottom:760.806000px;}
.y3e{bottom:760.812000px;}
.y7d{bottom:760.818000px;}
.y17f{bottom:780.286500px;}
.yaa{bottom:780.288000px;}
.y117{bottom:780.300000px;}
.y3d{bottom:780.306000px;}
.y5d{bottom:780.312000px;}
.ya9{bottom:799.782000px;}
.y116{bottom:799.794000px;}
.y3c{bottom:799.800000px;}
.y28{bottom:799.806000px;}
.y4{bottom:806.275950px;}
.y115{bottom:819.288000px;}
.y3b{bottom:819.294000px;}
.y27{bottom:819.300000px;}
.y3{bottom:838.776000px;}
.y114{bottom:838.782000px;}
.y3a{bottom:838.788000px;}
.y26{bottom:838.794000px;}
.y113{bottom:858.276000px;}
.y39{bottom:858.282000px;}
.y25{bottom:858.288000px;}
.y24{bottom:877.782000px;}
.y2{bottom:897.276000px;}
.y23{bottom:947.196900px;}
.h9{height:32.310000px;}
.h2{height:35.802000px;}
.ha{height:36.618000px;}
.h5{height:37.908000px;}
.hc{height:41.580000px;}
.h6{height:41.895000px;}
.hb{height:42.103140px;}
.h8{height:50.274000px;}
.h7{height:51.696000px;}
.h4{height:58.968000px;}
.h3{height:84.240000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x3{left:97.795350px;}
.x6{left:110.551200px;}
.x4{left:116.926350px;}
.x5{left:521.836200px;}
.x1{left:642.047250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.898667pt;}
.ls5{letter-spacing:-0.770667pt;}
.ls7{letter-spacing:-0.559680pt;}
.ls4{letter-spacing:-0.200000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000016pt;}
.ls3{letter-spacing:0.453333pt;}
.ls1{letter-spacing:1.200000pt;}
.ls0{letter-spacing:1.866667pt;}
.ws10{word-spacing:-44.562667pt;}
.ws12{word-spacing:-14.528000pt;}
.ws7{word-spacing:-12.480000pt;}
.ws5{word-spacing:-7.275840pt;}
.ws11{word-spacing:-6.716160pt;}
.ws14{word-spacing:-2.784000pt;}
.wsa{word-spacing:-1.776000pt;}
.ws4{word-spacing:-1.536000pt;}
.wsf{word-spacing:-1.152000pt;}
.ws9{word-spacing:-0.384000pt;}
.ws0{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.040000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.200000pt;}
.wsd{word-spacing:1.392000pt;}
.wsb{word-spacing:1.584000pt;}
.ws13{word-spacing:2.928000pt;}
.wsc{word-spacing:4.560000pt;}
.ws3{word-spacing:9.888000pt;}
.ws8{word-spacing:10.128000pt;}
.ws6{word-spacing:34.136000pt;}
._e{margin-left:-543.818667pt;}
._25{margin-left:-541.688000pt;}
._15{margin-left:-537.426667pt;}
._18{margin-left:-535.296000pt;}
._20{margin-left:-12.912000pt;}
._12{margin-left:-11.616000pt;}
._11{margin-left:-10.333333pt;}
._1{margin-left:-8.784000pt;}
._d{margin-left:-7.356000pt;}
._0{margin-left:-5.333333pt;}
._14{margin-left:-4.394667pt;}
._8{margin-left:-3.472000pt;}
._2{margin-left:-1.968000pt;}
._3{margin-left:-0.912000pt;}
._4{width:1.304000pt;}
._5{width:2.968000pt;}
._7{width:4.248000pt;}
._f{width:5.299200pt;}
._c{width:6.220800pt;}
._9{width:7.968000pt;}
._a{width:9.024000pt;}
._b{width:9.995200pt;}
._16{width:11.294400pt;}
._19{width:12.376000pt;}
._1e{width:13.656000pt;}
._1f{width:15.600000pt;}
._21{width:16.612800pt;}
._23{width:18.398400pt;}
._1b{width:19.360000pt;}
._24{width:22.976000pt;}
._1d{width:25.268000pt;}
._1c{width:27.600000pt;}
._17{width:36.480000pt;}
._10{width:37.760000pt;}
._1a{width:38.656000pt;}
._13{width:39.616000pt;}
._22{width:45.930667pt;}
._6{width:46.912000pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:40.000000pt;}
.fs0{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:37.106533pt;}
.y21{bottom:49.106533pt;}
.y1{bottom:49.133867pt;}
.y20{bottom:61.106533pt;}
.ybc{bottom:86.907200pt;}
.ya8{bottom:86.910533pt;}
.ye0{bottom:86.928000pt;}
.y38{bottom:86.933333pt;}
.y5c{bottom:86.976000pt;}
.ycd{bottom:86.997200pt;}
.y7c{bottom:87.008000pt;}
.yfd{bottom:87.056000pt;}
.y162{bottom:87.088000pt;}
.y9f{bottom:87.130667pt;}
.y1f{bottom:98.584800pt;}
.ya7{bottom:101.577200pt;}
.ydf{bottom:104.256000pt;}
.y37{bottom:104.261333pt;}
.y144{bottom:104.282667pt;}
.y5b{bottom:104.304000pt;}
.ycc{bottom:104.325200pt;}
.y7b{bottom:104.336000pt;}
.yfc{bottom:104.384000pt;}
.y161{bottom:104.416000pt;}
.y9e{bottom:104.458667pt;}
.y1e{bottom:115.912800pt;}
.yde{bottom:121.584000pt;}
.y36{bottom:121.589333pt;}
.y143{bottom:121.610667pt;}
.y5a{bottom:121.632000pt;}
.ycb{bottom:121.653200pt;}
.y10b{bottom:121.653333pt;}
.y7a{bottom:121.664000pt;}
.yfb{bottom:121.712000pt;}
.y160{bottom:121.744000pt;}
.y9d{bottom:121.786667pt;}
.y1d{bottom:133.240800pt;}
.ydd{bottom:138.912000pt;}
.y35{bottom:138.917333pt;}
.ya6{bottom:138.933333pt;}
.y142{bottom:138.938667pt;}
.y12f{bottom:138.954667pt;}
.y59{bottom:138.960000pt;}
.yca{bottom:138.981200pt;}
.y10a{bottom:138.981333pt;}
.y79{bottom:138.992000pt;}
.yfa{bottom:139.040000pt;}
.y15f{bottom:139.072000pt;}
.y9c{bottom:139.114667pt;}
.y1c{bottom:150.568800pt;}
.y34{bottom:156.245333pt;}
.ya5{bottom:156.261333pt;}
.y141{bottom:156.266667pt;}
.y12e{bottom:156.282667pt;}
.y58{bottom:156.288000pt;}
.yc9{bottom:156.309200pt;}
.y109{bottom:156.309333pt;}
.y78{bottom:156.320000pt;}
.yf9{bottom:156.368000pt;}
.y15e{bottom:156.400000pt;}
.y9b{bottom:156.442667pt;}
.y1b{bottom:167.896800pt;}
.ydc{bottom:173.578667pt;}
.ya4{bottom:173.589333pt;}
.y140{bottom:173.594667pt;}
.y12d{bottom:173.610667pt;}
.y57{bottom:173.616000pt;}
.yc8{bottom:173.637200pt;}
.y108{bottom:173.637333pt;}
.y77{bottom:173.648000pt;}
.yf8{bottom:173.696000pt;}
.y15d{bottom:173.728000pt;}
.y17e{bottom:173.760000pt;}
.y9a{bottom:173.770667pt;}
.y1a{bottom:185.224800pt;}
.ya3{bottom:190.917333pt;}
.y13f{bottom:190.922667pt;}
.y12c{bottom:190.938667pt;}
.y56{bottom:190.944000pt;}
.yc7{bottom:190.965200pt;}
.y107{bottom:190.965333pt;}
.y76{bottom:190.976000pt;}
.yf7{bottom:191.024000pt;}
.y15c{bottom:191.056000pt;}
.y17d{bottom:191.088000pt;}
.y99{bottom:191.098667pt;}
.y19{bottom:202.552800pt;}
.y13e{bottom:208.250667pt;}
.y12b{bottom:208.266667pt;}
.y55{bottom:208.272000pt;}
.yc6{bottom:208.293200pt;}
.y106{bottom:208.293333pt;}
.y75{bottom:208.304000pt;}
.yf6{bottom:208.352000pt;}
.y15b{bottom:208.384000pt;}
.y17c{bottom:208.416000pt;}
.y98{bottom:208.426667pt;}
.y33{bottom:214.023067pt;}
.ya2{bottom:218.021733pt;}
.y18{bottom:219.880800pt;}
.y12a{bottom:225.594667pt;}
.y54{bottom:225.600000pt;}
.y13d{bottom:225.605333pt;}
.yc5{bottom:225.621200pt;}
.y105{bottom:225.621333pt;}
.y74{bottom:225.632000pt;}
.yf5{bottom:225.680000pt;}
.y15a{bottom:225.712000pt;}
.y17b{bottom:225.744000pt;}
.y97{bottom:225.754667pt;}
.ya1{bottom:233.355733pt;}
.y17{bottom:237.208800pt;}
.y129{bottom:242.922667pt;}
.y53{bottom:242.928000pt;}
.y13c{bottom:242.933333pt;}
.yc4{bottom:242.949200pt;}
.y104{bottom:242.949333pt;}
.y73{bottom:242.960000pt;}
.ydb{bottom:242.970667pt;}
.yf4{bottom:243.008000pt;}
.y159{bottom:243.040000pt;}
.y17a{bottom:243.072000pt;}
.y96{bottom:243.082667pt;}
.ya0{bottom:248.689733pt;}
.y16{bottom:254.536800pt;}
.y128{bottom:260.250667pt;}
.y52{bottom:260.256000pt;}
.y13b{bottom:260.261333pt;}
.yc3{bottom:260.277200pt;}
.y103{bottom:260.277333pt;}
.y72{bottom:260.288000pt;}
.yda{bottom:260.298667pt;}
.yf3{bottom:260.336000pt;}
.y158{bottom:260.368000pt;}
.y179{bottom:260.400000pt;}
.y95{bottom:260.410667pt;}
.y15{bottom:271.864800pt;}
.y127{bottom:277.578667pt;}
.y51{bottom:277.584000pt;}
.y13a{bottom:277.589333pt;}
.yc2{bottom:277.605200pt;}
.y102{bottom:277.605333pt;}
.y71{bottom:277.616000pt;}
.yd9{bottom:277.626667pt;}
.yf2{bottom:277.664000pt;}
.y157{bottom:277.696000pt;}
.y178{bottom:277.728000pt;}
.y94{bottom:277.738667pt;}
.y14{bottom:289.192800pt;}
.y50{bottom:294.912000pt;}
.y139{bottom:294.917333pt;}
.yc1{bottom:294.933200pt;}
.y101{bottom:294.933333pt;}
.y70{bottom:294.944000pt;}
.yd8{bottom:294.954667pt;}
.yf1{bottom:294.992000pt;}
.y156{bottom:295.024000pt;}
.y177{bottom:295.056000pt;}
.y93{bottom:295.066667pt;}
.y13{bottom:306.520800pt;}
.y126{bottom:312.245333pt;}
.yc0{bottom:312.261200pt;}
.y100{bottom:312.261333pt;}
.y6f{bottom:312.272000pt;}
.yd7{bottom:312.282667pt;}
.y138{bottom:312.293333pt;}
.yf0{bottom:312.320000pt;}
.y155{bottom:312.352000pt;}
.y176{bottom:312.384000pt;}
.y92{bottom:312.394667pt;}
.y12{bottom:323.848800pt;}
.y4f{bottom:329.578667pt;}
.ybf{bottom:329.589200pt;}
.yff{bottom:329.589333pt;}
.y6e{bottom:329.600000pt;}
.yd6{bottom:329.610667pt;}
.y137{bottom:329.621333pt;}
.yef{bottom:329.648000pt;}
.y154{bottom:329.680000pt;}
.y175{bottom:329.712000pt;}
.y91{bottom:329.722667pt;}
.y11{bottom:341.176800pt;}
.ybe{bottom:346.917200pt;}
.yfe{bottom:346.917333pt;}
.y6d{bottom:346.928000pt;}
.yd5{bottom:346.938667pt;}
.y136{bottom:346.949333pt;}
.yee{bottom:346.976000pt;}
.y153{bottom:347.008000pt;}
.y174{bottom:347.040000pt;}
.y90{bottom:347.050667pt;}
.y10{bottom:358.504800pt;}
.ybd{bottom:364.245200pt;}
.y112{bottom:364.245333pt;}
.y6c{bottom:364.256000pt;}
.yd4{bottom:364.266667pt;}
.y135{bottom:364.277333pt;}
.yed{bottom:364.304000pt;}
.y152{bottom:364.336000pt;}
.y173{bottom:364.368000pt;}
.y8f{bottom:364.378667pt;}
.yf{bottom:375.832800pt;}
.y6b{bottom:381.584000pt;}
.yd3{bottom:381.594667pt;}
.y134{bottom:381.605333pt;}
.y125{bottom:381.616000pt;}
.yec{bottom:381.632000pt;}
.y151{bottom:381.664000pt;}
.y172{bottom:381.696000pt;}
.y8e{bottom:381.706667pt;}
.ye{bottom:393.160800pt;}
.y6a{bottom:398.912000pt;}
.yd2{bottom:398.922667pt;}
.y133{bottom:398.933333pt;}
.y124{bottom:398.944000pt;}
.yeb{bottom:398.960000pt;}
.y150{bottom:398.992000pt;}
.ybb{bottom:399.013333pt;}
.y171{bottom:399.024000pt;}
.y4e{bottom:399.029333pt;}
.y8d{bottom:399.034667pt;}
.ycf{bottom:408.418800pt;}
.yd{bottom:410.488800pt;}
.yd1{bottom:416.250667pt;}
.y132{bottom:416.261333pt;}
.y123{bottom:416.272000pt;}
.yea{bottom:416.288000pt;}
.y14f{bottom:416.320000pt;}
.yba{bottom:416.341333pt;}
.y170{bottom:416.352000pt;}
.y4d{bottom:416.357333pt;}
.y8c{bottom:416.362667pt;}
.yce{bottom:423.752800pt;}
.yc{bottom:427.816800pt;}
.y69{bottom:433.578667pt;}
.y131{bottom:433.589333pt;}
.y122{bottom:433.600000pt;}
.ye9{bottom:433.616000pt;}
.y14e{bottom:433.648000pt;}
.yb9{bottom:433.669333pt;}
.y16f{bottom:433.680000pt;}
.y4c{bottom:433.685333pt;}
.y8b{bottom:433.690667pt;}
.yb{bottom:445.144800pt;}
.y130{bottom:450.917333pt;}
.y121{bottom:450.928000pt;}
.ye8{bottom:450.944000pt;}
.y14d{bottom:450.976000pt;}
.yb8{bottom:450.997333pt;}
.y16e{bottom:451.008000pt;}
.y4b{bottom:451.013333pt;}
.y8a{bottom:451.018667pt;}
.ya{bottom:462.472800pt;}
.yd0{bottom:468.245333pt;}
.y120{bottom:468.256000pt;}
.ye7{bottom:468.272000pt;}
.y111{bottom:468.277333pt;}
.y32{bottom:468.288000pt;}
.y14c{bottom:468.304000pt;}
.yb7{bottom:468.325333pt;}
.y16d{bottom:468.336000pt;}
.y4a{bottom:468.341333pt;}
.y89{bottom:468.346667pt;}
.y9{bottom:479.800800pt;}
.y11f{bottom:485.584000pt;}
.ye6{bottom:485.600000pt;}
.y110{bottom:485.605333pt;}
.y31{bottom:485.616000pt;}
.y14b{bottom:485.632000pt;}
.yb6{bottom:485.653333pt;}
.y16c{bottom:485.664000pt;}
.y49{bottom:485.669333pt;}
.y88{bottom:485.674667pt;}
.y11e{bottom:502.912000pt;}
.ye5{bottom:502.928000pt;}
.y10f{bottom:502.933333pt;}
.y30{bottom:502.944000pt;}
.y14a{bottom:502.960000pt;}
.y68{bottom:502.970667pt;}
.yb5{bottom:502.981333pt;}
.y16b{bottom:502.992000pt;}
.y48{bottom:502.997333pt;}
.y87{bottom:503.002667pt;}
.y8{bottom:514.467467pt;}
.ye4{bottom:520.256000pt;}
.y10e{bottom:520.261333pt;}
.y2f{bottom:520.272000pt;}
.y149{bottom:520.288000pt;}
.y67{bottom:520.298667pt;}
.yb4{bottom:520.309333pt;}
.y16a{bottom:520.320000pt;}
.y47{bottom:520.325333pt;}
.y86{bottom:520.330667pt;}
.y11d{bottom:537.578667pt;}
.ye3{bottom:537.584000pt;}
.y10d{bottom:537.589333pt;}
.y2e{bottom:537.600000pt;}
.y148{bottom:537.616000pt;}
.y66{bottom:537.626667pt;}
.yb3{bottom:537.637333pt;}
.y169{bottom:537.648000pt;}
.y46{bottom:537.653333pt;}
.y85{bottom:537.658667pt;}
.ye2{bottom:554.912000pt;}
.y10c{bottom:554.917333pt;}
.y2d{bottom:554.928000pt;}
.y185{bottom:554.940000pt;}
.y147{bottom:554.944000pt;}
.y65{bottom:554.954667pt;}
.yb2{bottom:554.965333pt;}
.y168{bottom:554.976000pt;}
.y45{bottom:554.981333pt;}
.y84{bottom:554.986667pt;}
.y2c{bottom:572.256000pt;}
.y184{bottom:572.268000pt;}
.y146{bottom:572.272000pt;}
.y64{bottom:572.282667pt;}
.yb1{bottom:572.293333pt;}
.y167{bottom:572.304000pt;}
.y44{bottom:572.309333pt;}
.y83{bottom:572.314667pt;}
.y7{bottom:583.797467pt;}
.ye1{bottom:589.578667pt;}
.y2b{bottom:589.584000pt;}
.y183{bottom:589.596000pt;}
.y145{bottom:589.600000pt;}
.y63{bottom:589.610667pt;}
.yb0{bottom:589.621333pt;}
.y166{bottom:589.632000pt;}
.y43{bottom:589.637333pt;}
.y82{bottom:589.642667pt;}
.y6{bottom:603.797467pt;}
.y2a{bottom:606.912000pt;}
.y182{bottom:606.924000pt;}
.y11c{bottom:606.928000pt;}
.y62{bottom:606.938667pt;}
.yaf{bottom:606.949333pt;}
.y165{bottom:606.960000pt;}
.y42{bottom:606.965333pt;}
.y81{bottom:606.970667pt;}
.y5{bottom:618.467467pt;}
.y11b{bottom:624.256000pt;}
.y61{bottom:624.266667pt;}
.yae{bottom:624.277333pt;}
.y164{bottom:624.288000pt;}
.y41{bottom:624.293333pt;}
.y80{bottom:624.298667pt;}
.y29{bottom:641.578667pt;}
.y11a{bottom:641.584000pt;}
.y181{bottom:641.592000pt;}
.y60{bottom:641.594667pt;}
.yad{bottom:641.605333pt;}
.y163{bottom:641.616000pt;}
.y40{bottom:641.621333pt;}
.y7f{bottom:641.626667pt;}
.y180{bottom:658.920000pt;}
.y5f{bottom:658.922667pt;}
.yac{bottom:658.933333pt;}
.y119{bottom:658.944000pt;}
.y3f{bottom:658.949333pt;}
.y7e{bottom:658.954667pt;}
.y5e{bottom:676.250667pt;}
.yab{bottom:676.261333pt;}
.y118{bottom:676.272000pt;}
.y3e{bottom:676.277333pt;}
.y7d{bottom:676.282667pt;}
.y17f{bottom:693.588000pt;}
.yaa{bottom:693.589333pt;}
.y117{bottom:693.600000pt;}
.y3d{bottom:693.605333pt;}
.y5d{bottom:693.610667pt;}
.ya9{bottom:710.917333pt;}
.y116{bottom:710.928000pt;}
.y3c{bottom:710.933333pt;}
.y28{bottom:710.938667pt;}
.y4{bottom:716.689733pt;}
.y115{bottom:728.256000pt;}
.y3b{bottom:728.261333pt;}
.y27{bottom:728.266667pt;}
.y3{bottom:745.578667pt;}
.y114{bottom:745.584000pt;}
.y3a{bottom:745.589333pt;}
.y26{bottom:745.594667pt;}
.y113{bottom:762.912000pt;}
.y39{bottom:762.917333pt;}
.y25{bottom:762.922667pt;}
.y24{bottom:780.250667pt;}
.y2{bottom:797.578667pt;}
.y23{bottom:841.952800pt;}
.h9{height:28.720000pt;}
.h2{height:31.824000pt;}
.ha{height:32.549333pt;}
.h5{height:33.696000pt;}
.hc{height:36.960000pt;}
.h6{height:37.240000pt;}
.hb{height:37.425013pt;}
.h8{height:44.688000pt;}
.h7{height:45.952000pt;}
.h4{height:52.416000pt;}
.h3{height:74.880000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x3{left:86.929200pt;}
.x6{left:98.267733pt;}
.x4{left:103.934533pt;}
.x5{left:463.854400pt;}
.x1{left:570.708667pt;}
}




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