
    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_a063ba0f235910569ef94f8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_04484fd7eeed67552445d39b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_4655be14004beffefe2bb0e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_0a81cf388c2713c869abe0f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108000;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_beda9dddefe432a05e811e62.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_57f15558a69214a0d2bb365a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_7ebb50b0f1e5f16c7a6f5a39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.542000px;}
.v5{vertical-align:13.686000px;}
.v1{vertical-align:28.206000px;}
.v2{vertical-align:34.188000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001500px;}
.ls2{letter-spacing:2.985797px;}
.ls4{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.991797px;}
.ls7{letter-spacing:8.367600px;}
.ls5{letter-spacing:10.961674px;}
.ls6{letter-spacing:10.963200px;}
.ls9{letter-spacing:18.773400px;}
.lsa{letter-spacing:23.914200px;}
.ls8{letter-spacing:26.900600px;}
.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;}
}
.ws29{word-spacing:-14.943900px;}
.wse{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws7{word-spacing:-5.487426px;}
.wsf{word-spacing:-3.586545px;}
.ws59{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.095641px;}
.ws63{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053200px;}
.ws10{word-spacing:-0.000109px;}
.ws0{word-spacing:0.000000px;}
.ws67{word-spacing:0.059776px;}
.ws25{word-spacing:0.239102px;}
.ws5c{word-spacing:0.418429px;}
.ws2f{word-spacing:0.537980px;}
.ws12{word-spacing:0.597756px;}
.ws47{word-spacing:0.896634px;}
.ws5a{word-spacing:1.075961px;}
.ws65{word-spacing:1.135736px;}
.ws1a{word-spacing:1.255288px;}
.ws19{word-spacing:1.315063px;}
.ws1d{word-spacing:1.340063px;}
.ws24{word-spacing:1.494390px;}
.ws58{word-spacing:1.554166px;}
.ws16{word-spacing:1.793268px;}
.ws17{word-spacing:1.912819px;}
.ws6{word-spacing:2.008474px;}
.ws5f{word-spacing:2.211697px;}
.ws48{word-spacing:2.331248px;}
.ws3d{word-spacing:2.450800px;}
.ws6a{word-spacing:2.582312px;}
.ws5b{word-spacing:2.749678px;}
.ws51{word-spacing:2.809453px;}
.ws64{word-spacing:2.929004px;}
.ws62{word-spacing:3.048556px;}
.ws37{word-spacing:3.407209px;}
.ws14{word-spacing:3.526760px;}
.ws38{word-spacing:3.825638px;}
.ws53{word-spacing:3.885414px;}
.ws52{word-spacing:3.945190px;}
.ws5e{word-spacing:4.004965px;}
.ws50{word-spacing:4.064741px;}
.ws1f{word-spacing:4.160392px;}
.ws40{word-spacing:4.206449px;}
.ws41{word-spacing:4.244068px;}
.ws32{word-spacing:4.303843px;}
.ws4b{word-spacing:4.722272px;}
.ws9{word-spacing:4.949453px;}
.ws21{word-spacing:4.961375px;}
.ws15{word-spacing:5.021150px;}
.ws70{word-spacing:5.212445px;}
.ws6d{word-spacing:5.260266px;}
.wsc{word-spacing:5.272243px;}
.ws49{word-spacing:5.439580px;}
.ws20{word-spacing:5.499355px;}
.ws56{word-spacing:5.618906px;}
.ws61{word-spacing:5.678682px;}
.ws2e{word-spacing:5.738458px;}
.ws31{word-spacing:5.858009px;}
.ws26{word-spacing:5.917784px;}
.ws68{word-spacing:6.097111px;}
.ws44{word-spacing:6.156887px;}
.ws54{word-spacing:6.216662px;}
.ws30{word-spacing:6.336214px;}
.ws1b{word-spacing:6.395989px;}
.wsd{word-spacing:6.455808px;}
.ws74{word-spacing:6.503602px;}
.ws22{word-spacing:6.515540px;}
.ws3a{word-spacing:6.694867px;}
.ws39{word-spacing:6.754643px;}
.ws60{word-spacing:6.814418px;}
.ws1e{word-spacing:6.838346px;}
.ws35{word-spacing:6.933970px;}
.wsa{word-spacing:7.101389px;}
.ws42{word-spacing:7.245392px;}
.ws43{word-spacing:7.292623px;}
.ws1c{word-spacing:7.460014px;}
.ws5d{word-spacing:7.531726px;}
.ws18{word-spacing:7.591501px;}
.wsb{word-spacing:7.746970px;}
.ws4f{word-spacing:7.890379px;}
.ws13{word-spacing:7.950155px;}
.ws4{word-spacing:7.986040px;}
.ws46{word-spacing:8.009930px;}
.ws27{word-spacing:8.189257px;}
.ws69{word-spacing:8.225143px;}
.ws36{word-spacing:8.547911px;}
.ws33{word-spacing:8.607686px;}
.ws4e{word-spacing:8.846789px;}
.ws28{word-spacing:9.205442px;}
.ws4a{word-spacing:9.265218px;}
.ws2b{word-spacing:9.862974px;}
.ws2c{word-spacing:9.877808px;}
.ws72{word-spacing:9.898864px;}
.ws73{word-spacing:9.994505px;}
.ws75{word-spacing:10.185788px;}
.ws66{word-spacing:10.341179px;}
.ws3c{word-spacing:10.640057px;}
.ws2a{word-spacing:11.237813px;}
.ws2d{word-spacing:11.417140px;}
.ws55{word-spacing:11.955120px;}
.ws6e{word-spacing:13.389768px;}
.ws6f{word-spacing:13.581050px;}
.ws4d{word-spacing:13.927715px;}
.ws71{word-spacing:14.202718px;}
.ws34{word-spacing:14.346144px;}
.ws45{word-spacing:14.405920px;}
.ws3b{word-spacing:14.645022px;}
.ws4c{word-spacing:14.943900px;}
.ws6b{word-spacing:15.589516px;}
.ws6c{word-spacing:17.932725px;}
.ws3f{word-spacing:19.845499px;}
.ws23{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws57{word-spacing:20.383480px;}
.ws11{word-spacing:29.828024px;}
.ws3e{word-spacing:596.623950px;}
._6{margin-left:-7.672019px;}
._5{margin-left:-6.121080px;}
._4{margin-left:-4.782115px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._8{width:1.966613px;}
._3{width:3.634366px;}
._7{width:8.392550px;}
._11{width:14.322230px;}
._c{width:17.119757px;}
._f{width:19.642259px;}
._9{width:21.017098px;}
._a{width:22.391936px;}
._10{width:29.887800px;}
._e{width:36.820045px;}
._b{width:39.223025px;}
._d{width:609.273689px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs10{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fse{font-size:53.798400px;}
.fsc{font-size:59.058000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:53.050500px;}
.y5{bottom:66.525004px;}
.y49{bottom:67.995000px;}
.y48{bottom:87.421500px;}
.y6f{bottom:88.168500px;}
.y8c{bottom:88.170000px;}
.y4{bottom:97.125005px;}
.y47{bottom:102.366000px;}
.y8b{bottom:105.549000px;}
.yb0{bottom:106.027500px;}
.y9f{bottom:106.563000px;}
.y6e{bottom:107.065500px;}
.y46{bottom:117.310500px;}
.y8a{bottom:122.928000px;}
.yaf{bottom:123.886500px;}
.y9e{bottom:124.957500px;}
.y6d{bottom:125.962500px;}
.y21{bottom:139.264499px;}
.y89{bottom:140.307000px;}
.yae{bottom:141.745500px;}
.y9d{bottom:143.352000px;}
.y6c{bottom:144.859500px;}
.y45{bottom:144.957000px;}
.yad{bottom:159.603000px;}
.y9c{bottom:161.746500px;}
.y44{bottom:163.717500px;}
.y6b{bottom:163.756500px;}
.y88{bottom:174.510000px;}
.yac{bottom:177.462000px;}
.y9b{bottom:180.141000px;}
.y6a{bottom:182.653500px;}
.y43{bottom:194.328000px;}
.yab{bottom:195.321000px;}
.y18{bottom:196.933500px;}
.y9a{bottom:198.535500px;}
.y69{bottom:201.550500px;}
.y87{bottom:208.161000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y42{bottom:212.796000px;}
.yaa{bottom:213.180000px;}
.y99{bottom:216.930000px;}
.y68{bottom:220.447500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y86{bottom:225.540000px;}
.ya9{bottom:231.037500px;}
.y41{bottom:231.262500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y98{bottom:235.324500px;}
.y67{bottom:239.344500px;}
.y85{bottom:242.919000px;}
.y40{bottom:249.729000px;}
.ya8{bottom:257.715000px;}
.y66{bottom:258.241500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y97{bottom:265.455000px;}
.y3f{bottom:268.195500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y84{bottom:277.123500px;}
.y65{bottom:277.138500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y3e{bottom:286.662000px;}
.ya7{bottom:293.134500px;}
.y64{bottom:296.035500px;}
.y3d{bottom:305.128500px;}
.y96{bottom:306.859500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y83{bottom:310.773000px;}
.ya6{bottom:310.993500px;}
.y63{bottom:314.932500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y3c{bottom:323.596500px;}
.y95{bottom:325.254000px;}
.y82{bottom:328.152000px;}
.ya5{bottom:328.852500px;}
.y62{bottom:333.829500px;}
.y3b{bottom:342.063000px;}
.y94{bottom:343.648500px;}
.yd6{bottom:344.401500px;}
.y81{bottom:345.531000px;}
.ya4{bottom:346.710000px;}
.yf{bottom:348.133500px;}
.y61{bottom:352.725000px;}
.yd5{bottom:359.346000px;}
.y80{bottom:362.910000px;}
.ya3{bottom:364.569000px;}
.y60{bottom:371.622000px;}
.y3a{bottom:372.699000px;}
.yd4{bottom:374.289000px;}
.y93{bottom:382.744500px;}
.ye{bottom:386.785499px;}
.yd3{bottom:389.233500px;}
.y5f{bottom:390.519000px;}
.y7f{bottom:400.602000px;}
.yd2{bottom:404.178000px;}
.yd{bottom:408.044999px;}
.y5e{bottom:409.416000px;}
.ya2{bottom:415.378500px;}
.yd1{bottom:419.121000px;}
.y5d{bottom:428.313000px;}
.yd0{bottom:434.065500px;}
.y39{bottom:438.616500px;}
.y92{bottom:441.273000px;}
.y5c{bottom:447.210000px;}
.ycf{bottom:449.010000px;}
.yce{bottom:463.953000px;}
.y5b{bottom:466.107000px;}
.ycd{bottom:478.897500px;}
.y38{bottom:482.436000px;}
.y5a{bottom:485.004000px;}
.ycc{bottom:493.842000px;}
.yc{bottom:502.864502px;}
.y59{bottom:503.901000px;}
.y37{bottom:507.840000px;}
.ycb{bottom:508.785000px;}
.yb{bottom:520.864502px;}
.y58{bottom:522.798000px;}
.yca{bottom:523.729500px;}
.y36{bottom:524.278500px;}
.y35{bottom:524.712000px;}
.yc9{bottom:538.672500px;}
.ya{bottom:538.864499px;}
.y34{bottom:540.717000px;}
.y57{bottom:541.695000px;}
.yc8{bottom:553.617000px;}
.y9{bottom:556.864499px;}
.y33{bottom:557.155500px;}
.y56{bottom:560.592000px;}
.yc7{bottom:568.561500px;}
.y32{bottom:573.594000px;}
.y55{bottom:579.489000px;}
.ya1{bottom:583.323000px;}
.yc6{bottom:583.504500px;}
.y31{bottom:590.032500px;}
.y91{bottom:593.686500px;}
.y54{bottom:598.384500px;}
.yc5{bottom:598.449000px;}
.y30{bottom:606.471000px;}
.y90{bottom:612.081000px;}
.yc4{bottom:613.393500px;}
.y53{bottom:617.281500px;}
.yc3{bottom:628.336500px;}
.y8f{bottom:630.475500px;}
.y2f{bottom:631.875000px;}
.y52{bottom:636.178500px;}
.yc2{bottom:643.281000px;}
.y8{bottom:645.510000px;}
.y51{bottom:655.075500px;}
.yc1{bottom:658.225500px;}
.y7{bottom:666.771000px;}
.y8e{bottom:669.571500px;}
.yc0{bottom:673.168500px;}
.ybf{bottom:688.113000px;}
.y50{bottom:691.258500px;}
.y7e{bottom:695.425500px;}
.y2e{bottom:696.495000px;}
.ybe{bottom:703.057500px;}
.y7d{bottom:712.804500px;}
.y2d{bottom:718.485000px;}
.y8d{bottom:720.381000px;}
.y6{bottom:726.298500px;}
.ybd{bottom:726.967500px;}
.y2c{bottom:737.769000px;}
.y7c{bottom:739.150500px;}
.y3{bottom:752.599495px;}
.y2b{bottom:753.780000px;}
.y7b{bottom:756.529500px;}
.ybc{bottom:762.832500px;}
.ya0{bottom:773.085000px;}
.y7a{bottom:773.908500px;}
.y2a{bottom:776.212500px;}
.ybb{bottom:780.765000px;}
.yba{bottom:798.697500px;}
.y79{bottom:800.253000px;}
.y29{bottom:814.212000px;}
.yb9{bottom:816.631500px;}
.y78{bottom:817.632000px;}
.yb8{bottom:834.564000px;}
.y77{bottom:842.871000px;}
.y28{bottom:844.099500px;}
.yb7{bottom:852.496500px;}
.y76{bottom:875.413500px;}
.y2{bottom:879.369000px;}
.yb6{bottom:879.396000px;}
.y27{bottom:881.218500px;}
.y75{bottom:892.792500px;}
.y26{bottom:899.151000px;}
.y74{bottom:910.171500px;}
.yb5{bottom:915.261000px;}
.y73{bottom:927.550500px;}
.yb4{bottom:933.193500px;}
.y25{bottom:941.653500px;}
.y72{bottom:944.929500px;}
.y4f{bottom:948.234000px;}
.yb3{bottom:951.126000px;}
.y24{bottom:956.596500px;}
.y71{bottom:962.308500px;}
.y1{bottom:966.726000px;}
.y4e{bottom:967.131000px;}
.yb2{bottom:969.060000px;}
.y70{bottom:979.687500px;}
.y4d{bottom:986.028000px;}
.yb1{bottom:986.992500px;}
.y4c{bottom:1004.925000px;}
.y23{bottom:1009.275000px;}
.y22{bottom:1035.292500px;}
.y4b{bottom:1037.802000px;}
.h16{height:27.599720px;}
.h10{height:31.920384px;}
.h7{height:32.130000px;}
.h11{height:32.804932px;}
.h12{height:37.174694px;}
.ha{height:38.782946px;}
.h19{height:41.006062px;}
.h14{height:41.304940px;}
.hc{height:42.560334px;}
.h17{height:44.102334px;}
.h6{height:45.900000px;}
.h13{height:47.880576px;}
.h3{height:48.195000px;}
.h15{height:53.200284px;}
.h18{height:54.692062px;}
.h2{height:55.080000px;}
.hd{height:63.840768px;}
.hb{height:72.113465px;}
.h5{height:78.030000px;}
.hf{height:80.767620px;}
.he{height:90.440910px;}
.h4{height:119.055004px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:55.666500px;}
.x22{left:57.651000px;}
.x11{left:61.644000px;}
.xa{left:63.103500px;}
.x13{left:65.383500px;}
.xe{left:67.258500px;}
.x9{left:70.866000px;}
.x14{left:72.040500px;}
.xd{left:73.206000px;}
.x12{left:79.576500px;}
.x1c{left:81.070500px;}
.x15{left:84.060000px;}
.x1d{left:94.521000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x16{left:116.769000px;}
.x1e{left:172.252500px;}
.xc{left:173.310000px;}
.x21{left:195.339000px;}
.x4{left:203.484001px;}
.x17{left:225.744000px;}
.x19{left:241.246500px;}
.x5{left:260.890500px;}
.x10{left:276.150000px;}
.x20{left:287.164500px;}
.x7{left:301.570500px;}
.x1f{left:311.314500px;}
.xf{left:313.498500px;}
.x6{left:317.613000px;}
.xb{left:345.546000px;}
.x3{left:454.959000px;}
.x1b{left:538.398000px;}
.x1a{left:554.155500px;}
.x8{left:618.787500px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.370667pt;}
.v5{vertical-align:12.165333pt;}
.v1{vertical-align:25.072000pt;}
.v2{vertical-align:30.389333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001333pt;}
.ls2{letter-spacing:2.654042pt;}
.ls4{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.659375pt;}
.ls7{letter-spacing:7.437867pt;}
.ls5{letter-spacing:9.743710pt;}
.ls6{letter-spacing:9.745067pt;}
.ls9{letter-spacing:16.687467pt;}
.lsa{letter-spacing:21.257067pt;}
.ls8{letter-spacing:23.911645pt;}
.ws29{word-spacing:-13.283467pt;}
.wse{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws7{word-spacing:-4.877712pt;}
.wsf{word-spacing:-3.188040pt;}
.ws59{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.085014pt;}
.ws63{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047289pt;}
.ws10{word-spacing:-0.000097pt;}
.ws0{word-spacing:0.000000pt;}
.ws67{word-spacing:0.053134pt;}
.ws25{word-spacing:0.212535pt;}
.ws5c{word-spacing:0.371937pt;}
.ws2f{word-spacing:0.478205pt;}
.ws12{word-spacing:0.531339pt;}
.ws47{word-spacing:0.797008pt;}
.ws5a{word-spacing:0.956410pt;}
.ws65{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.115811pt;}
.ws19{word-spacing:1.168945pt;}
.ws1d{word-spacing:1.191167pt;}
.ws24{word-spacing:1.328347pt;}
.ws58{word-spacing:1.381481pt;}
.ws16{word-spacing:1.594016pt;}
.ws17{word-spacing:1.700284pt;}
.ws6{word-spacing:1.785310pt;}
.ws5f{word-spacing:1.965953pt;}
.ws48{word-spacing:2.072221pt;}
.ws3d{word-spacing:2.178489pt;}
.ws6a{word-spacing:2.295389pt;}
.ws5b{word-spacing:2.444158pt;}
.ws51{word-spacing:2.497292pt;}
.ws64{word-spacing:2.603559pt;}
.ws62{word-spacing:2.709827pt;}
.ws37{word-spacing:3.028630pt;}
.ws14{word-spacing:3.134898pt;}
.ws38{word-spacing:3.400567pt;}
.ws53{word-spacing:3.453701pt;}
.ws52{word-spacing:3.506835pt;}
.ws5e{word-spacing:3.559969pt;}
.ws50{word-spacing:3.613103pt;}
.ws1f{word-spacing:3.698126pt;}
.ws40{word-spacing:3.739066pt;}
.ws41{word-spacing:3.772505pt;}
.ws32{word-spacing:3.825638pt;}
.ws4b{word-spacing:4.197575pt;}
.ws9{word-spacing:4.399514pt;}
.ws21{word-spacing:4.410111pt;}
.ws15{word-spacing:4.463245pt;}
.ws70{word-spacing:4.633285pt;}
.ws6d{word-spacing:4.675792pt;}
.wsc{word-spacing:4.686438pt;}
.ws49{word-spacing:4.835182pt;}
.ws20{word-spacing:4.888316pt;}
.ws56{word-spacing:4.994583pt;}
.ws61{word-spacing:5.047717pt;}
.ws2e{word-spacing:5.100851pt;}
.ws31{word-spacing:5.207119pt;}
.ws26{word-spacing:5.260253pt;}
.ws68{word-spacing:5.419654pt;}
.ws44{word-spacing:5.472788pt;}
.ws54{word-spacing:5.525922pt;}
.ws30{word-spacing:5.632190pt;}
.ws1b{word-spacing:5.685324pt;}
.wsd{word-spacing:5.738496pt;}
.ws74{word-spacing:5.780979pt;}
.ws22{word-spacing:5.791591pt;}
.ws3a{word-spacing:5.950993pt;}
.ws39{word-spacing:6.004127pt;}
.ws60{word-spacing:6.057261pt;}
.ws1e{word-spacing:6.078530pt;}
.ws35{word-spacing:6.163529pt;}
.wsa{word-spacing:6.312346pt;}
.ws42{word-spacing:6.440349pt;}
.ws43{word-spacing:6.482332pt;}
.ws1c{word-spacing:6.631123pt;}
.ws5d{word-spacing:6.694867pt;}
.ws18{word-spacing:6.748001pt;}
.wsb{word-spacing:6.886195pt;}
.ws4f{word-spacing:7.013670pt;}
.ws13{word-spacing:7.066804pt;}
.ws4{word-spacing:7.098702pt;}
.ws46{word-spacing:7.119938pt;}
.ws27{word-spacing:7.279340pt;}
.ws69{word-spacing:7.311238pt;}
.ws36{word-spacing:7.598143pt;}
.ws33{word-spacing:7.651277pt;}
.ws4e{word-spacing:7.863812pt;}
.ws28{word-spacing:8.182615pt;}
.ws4a{word-spacing:8.235749pt;}
.ws2b{word-spacing:8.767088pt;}
.ws2c{word-spacing:8.780274pt;}
.ws72{word-spacing:8.798990pt;}
.ws73{word-spacing:8.884005pt;}
.ws75{word-spacing:9.054034pt;}
.ws66{word-spacing:9.192159pt;}
.ws3c{word-spacing:9.457828pt;}
.ws2a{word-spacing:9.989167pt;}
.ws2d{word-spacing:10.148569pt;}
.ws55{word-spacing:10.626773pt;}
.ws6e{word-spacing:11.902016pt;}
.ws6f{word-spacing:12.072045pt;}
.ws4d{word-spacing:12.380191pt;}
.ws71{word-spacing:12.624638pt;}
.ws34{word-spacing:12.752128pt;}
.ws45{word-spacing:12.805262pt;}
.ws3b{word-spacing:13.017797pt;}
.ws4c{word-spacing:13.283467pt;}
.ws6b{word-spacing:13.857347pt;}
.ws6c{word-spacing:15.940200pt;}
.ws3f{word-spacing:17.640444pt;}
.ws23{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws57{word-spacing:18.118649pt;}
.ws11{word-spacing:26.513799pt;}
.ws3e{word-spacing:530.332400pt;}
._6{margin-left:-6.819572pt;}
._5{margin-left:-5.440960pt;}
._4{margin-left:-4.250769pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._8{width:1.748100pt;}
._3{width:3.230547pt;}
._7{width:7.460045pt;}
._11{width:12.730871pt;}
._c{width:15.217562pt;}
._f{width:17.459786pt;}
._9{width:18.681865pt;}
._a{width:19.903943pt;}
._10{width:26.566933pt;}
._e{width:32.728929pt;}
._b{width:34.864911pt;}
._d{width:541.576613pt;}
.fsd{font-size:31.880533pt;}
.fs10{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fse{font-size:47.820800pt;}
.fsc{font-size:52.496000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:47.156000pt;}
.y5{bottom:59.133337pt;}
.y49{bottom:60.440000pt;}
.y48{bottom:77.708000pt;}
.y6f{bottom:78.372000pt;}
.y8c{bottom:78.373333pt;}
.y4{bottom:86.333337pt;}
.y47{bottom:90.992000pt;}
.y8b{bottom:93.821333pt;}
.yb0{bottom:94.246667pt;}
.y9f{bottom:94.722667pt;}
.y6e{bottom:95.169333pt;}
.y46{bottom:104.276000pt;}
.y8a{bottom:109.269333pt;}
.yaf{bottom:110.121333pt;}
.y9e{bottom:111.073333pt;}
.y6d{bottom:111.966667pt;}
.y21{bottom:123.790666pt;}
.y89{bottom:124.717333pt;}
.yae{bottom:125.996000pt;}
.y9d{bottom:127.424000pt;}
.y6c{bottom:128.764000pt;}
.y45{bottom:128.850667pt;}
.yad{bottom:141.869333pt;}
.y9c{bottom:143.774667pt;}
.y44{bottom:145.526667pt;}
.y6b{bottom:145.561333pt;}
.y88{bottom:155.120000pt;}
.yac{bottom:157.744000pt;}
.y9b{bottom:160.125333pt;}
.y6a{bottom:162.358667pt;}
.y43{bottom:172.736000pt;}
.yab{bottom:173.618667pt;}
.y18{bottom:175.052000pt;}
.y9a{bottom:176.476000pt;}
.y69{bottom:179.156000pt;}
.y87{bottom:185.032000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y42{bottom:189.152000pt;}
.yaa{bottom:189.493333pt;}
.y99{bottom:192.826667pt;}
.y68{bottom:195.953333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y86{bottom:200.480000pt;}
.ya9{bottom:205.366667pt;}
.y41{bottom:205.566667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y98{bottom:209.177333pt;}
.y67{bottom:212.750667pt;}
.y85{bottom:215.928000pt;}
.y40{bottom:221.981333pt;}
.ya8{bottom:229.080000pt;}
.y66{bottom:229.548000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y97{bottom:235.960000pt;}
.y3f{bottom:238.396000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y84{bottom:246.332000pt;}
.y65{bottom:246.345333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y3e{bottom:254.810667pt;}
.ya7{bottom:260.564000pt;}
.y64{bottom:263.142667pt;}
.y3d{bottom:271.225333pt;}
.y96{bottom:272.764000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y83{bottom:276.242667pt;}
.ya6{bottom:276.438667pt;}
.y63{bottom:279.940000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y3c{bottom:287.641333pt;}
.y95{bottom:289.114667pt;}
.y82{bottom:291.690667pt;}
.ya5{bottom:292.313333pt;}
.y62{bottom:296.737333pt;}
.y3b{bottom:304.056000pt;}
.y94{bottom:305.465333pt;}
.yd6{bottom:306.134667pt;}
.y81{bottom:307.138667pt;}
.ya4{bottom:308.186667pt;}
.yf{bottom:309.452000pt;}
.y61{bottom:313.533333pt;}
.yd5{bottom:319.418667pt;}
.y80{bottom:322.586667pt;}
.ya3{bottom:324.061333pt;}
.y60{bottom:330.330667pt;}
.y3a{bottom:331.288000pt;}
.yd4{bottom:332.701333pt;}
.y93{bottom:340.217333pt;}
.ye{bottom:343.809333pt;}
.yd3{bottom:345.985333pt;}
.y5f{bottom:347.128000pt;}
.y7f{bottom:356.090667pt;}
.yd2{bottom:359.269333pt;}
.yd{bottom:362.706666pt;}
.y5e{bottom:363.925333pt;}
.ya2{bottom:369.225333pt;}
.yd1{bottom:372.552000pt;}
.y5d{bottom:380.722667pt;}
.yd0{bottom:385.836000pt;}
.y39{bottom:389.881333pt;}
.y92{bottom:392.242667pt;}
.y5c{bottom:397.520000pt;}
.ycf{bottom:399.120000pt;}
.yce{bottom:412.402667pt;}
.y5b{bottom:414.317333pt;}
.ycd{bottom:425.686667pt;}
.y38{bottom:428.832000pt;}
.y5a{bottom:431.114667pt;}
.ycc{bottom:438.970667pt;}
.yc{bottom:446.990669pt;}
.y59{bottom:447.912000pt;}
.y37{bottom:451.413333pt;}
.ycb{bottom:452.253333pt;}
.yb{bottom:462.990669pt;}
.y58{bottom:464.709333pt;}
.yca{bottom:465.537333pt;}
.y36{bottom:466.025333pt;}
.y35{bottom:466.410667pt;}
.yc9{bottom:478.820000pt;}
.ya{bottom:478.990666pt;}
.y34{bottom:480.637333pt;}
.y57{bottom:481.506667pt;}
.yc8{bottom:492.104000pt;}
.y9{bottom:494.990666pt;}
.y33{bottom:495.249333pt;}
.y56{bottom:498.304000pt;}
.yc7{bottom:505.388000pt;}
.y32{bottom:509.861333pt;}
.y55{bottom:515.101333pt;}
.ya1{bottom:518.509333pt;}
.yc6{bottom:518.670667pt;}
.y31{bottom:524.473333pt;}
.y91{bottom:527.721333pt;}
.y54{bottom:531.897333pt;}
.yc5{bottom:531.954667pt;}
.y30{bottom:539.085333pt;}
.y90{bottom:544.072000pt;}
.yc4{bottom:545.238667pt;}
.y53{bottom:548.694667pt;}
.yc3{bottom:558.521333pt;}
.y8f{bottom:560.422667pt;}
.y2f{bottom:561.666667pt;}
.y52{bottom:565.492000pt;}
.yc2{bottom:571.805333pt;}
.y8{bottom:573.786667pt;}
.y51{bottom:582.289333pt;}
.yc1{bottom:585.089333pt;}
.y7{bottom:592.685334pt;}
.y8e{bottom:595.174667pt;}
.yc0{bottom:598.372000pt;}
.ybf{bottom:611.656000pt;}
.y50{bottom:614.452000pt;}
.y7e{bottom:618.156000pt;}
.y2e{bottom:619.106667pt;}
.ybe{bottom:624.940000pt;}
.y7d{bottom:633.604000pt;}
.y2d{bottom:638.653333pt;}
.y8d{bottom:640.338667pt;}
.y6{bottom:645.598667pt;}
.ybd{bottom:646.193333pt;}
.y2c{bottom:655.794667pt;}
.y7c{bottom:657.022667pt;}
.y3{bottom:668.977329pt;}
.y2b{bottom:670.026667pt;}
.y7b{bottom:672.470667pt;}
.ybc{bottom:678.073333pt;}
.ya0{bottom:687.186667pt;}
.y7a{bottom:687.918667pt;}
.y2a{bottom:689.966667pt;}
.ybb{bottom:694.013333pt;}
.yba{bottom:709.953333pt;}
.y79{bottom:711.336000pt;}
.y29{bottom:723.744000pt;}
.yb9{bottom:725.894667pt;}
.y78{bottom:726.784000pt;}
.yb8{bottom:741.834667pt;}
.y77{bottom:749.218667pt;}
.y28{bottom:750.310667pt;}
.yb7{bottom:757.774667pt;}
.y76{bottom:778.145333pt;}
.y2{bottom:781.661334pt;}
.yb6{bottom:781.685333pt;}
.y27{bottom:783.305333pt;}
.y75{bottom:793.593333pt;}
.y26{bottom:799.245333pt;}
.y74{bottom:809.041333pt;}
.yb5{bottom:813.565333pt;}
.y73{bottom:824.489333pt;}
.yb4{bottom:829.505333pt;}
.y25{bottom:837.025333pt;}
.y72{bottom:839.937333pt;}
.y4f{bottom:842.874667pt;}
.yb3{bottom:845.445333pt;}
.y24{bottom:850.308000pt;}
.y71{bottom:855.385333pt;}
.y1{bottom:859.312000pt;}
.y4e{bottom:859.672000pt;}
.yb2{bottom:861.386667pt;}
.y70{bottom:870.833333pt;}
.y4d{bottom:876.469333pt;}
.yb1{bottom:877.326667pt;}
.y4c{bottom:893.266667pt;}
.y23{bottom:897.133333pt;}
.y22{bottom:920.260000pt;}
.y4b{bottom:922.490667pt;}
.h16{height:24.533085pt;}
.h10{height:28.373675pt;}
.h7{height:28.560000pt;}
.h11{height:29.159939pt;}
.h12{height:33.044173pt;}
.ha{height:34.473730pt;}
.h19{height:36.449833pt;}
.h14{height:36.715502pt;}
.hc{height:37.831408pt;}
.h17{height:39.202075pt;}
.h6{height:40.800000pt;}
.h13{height:42.560512pt;}
.h3{height:42.840000pt;}
.h15{height:47.289141pt;}
.h18{height:48.615166pt;}
.h2{height:48.960000pt;}
.hd{height:56.747349pt;}
.hb{height:64.100858pt;}
.h5{height:69.360000pt;}
.hf{height:71.793440pt;}
.he{height:80.391920pt;}
.h4{height:105.826671pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:49.481333pt;}
.x22{left:51.245333pt;}
.x11{left:54.794667pt;}
.xa{left:56.092000pt;}
.x13{left:58.118667pt;}
.xe{left:59.785333pt;}
.x9{left:62.992000pt;}
.x14{left:64.036000pt;}
.xd{left:65.072000pt;}
.x12{left:70.734667pt;}
.x1c{left:72.062667pt;}
.x15{left:74.720000pt;}
.x1d{left:84.018667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x16{left:103.794667pt;}
.x1e{left:153.113333pt;}
.xc{left:154.053333pt;}
.x21{left:173.634667pt;}
.x4{left:180.874667pt;}
.x17{left:200.661333pt;}
.x19{left:214.441333pt;}
.x5{left:231.902667pt;}
.x10{left:245.466667pt;}
.x20{left:255.257333pt;}
.x7{left:268.062667pt;}
.x1f{left:276.724000pt;}
.xf{left:278.665333pt;}
.x6{left:282.322667pt;}
.xb{left:307.152000pt;}
.x3{left:404.408000pt;}
.x1b{left:478.576000pt;}
.x1a{left:492.582667pt;}
.x8{left:550.033333pt;}
}




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