
    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_a9e00b95f4e1b6b31f4e83bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_e3f97cf2a9e4dc211bc494be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_b528adb48937fa5f210f2355.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_6459c678f20a1e131faf794c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_54a8209b8ce400a1829882a8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ec1b826d4ca6c818d31dfea1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_f570887c0033de0f1385215e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_8228a9ae2fe22aded6a15201.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_1de69b76df0f008af256cdda.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_613854960272117c7832e0da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.471000;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_08efcef76a606d3ea244de89.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_338f15cc5b3a075878eb4aad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.389000;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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.078000px;}
.v6{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:45.780000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.002682px;}
.ls16{letter-spacing:0.004218px;}
.ls24{letter-spacing:0.004963px;}
.ls1a{letter-spacing:0.006924px;}
.lsa{letter-spacing:0.009253px;}
.ls6{letter-spacing:0.009726px;}
.ls1c{letter-spacing:0.010267px;}
.ls1e{letter-spacing:0.010475px;}
.ls2b{letter-spacing:0.011891px;}
.ls1b{letter-spacing:0.017156px;}
.ls5{letter-spacing:0.023807px;}
.ls2a{letter-spacing:0.024543px;}
.ls23{letter-spacing:0.027669px;}
.ls2{letter-spacing:0.904881px;}
.ls17{letter-spacing:0.910881px;}
.ls0{letter-spacing:2.986053px;}
.lsf{letter-spacing:2.991113px;}
.ls21{letter-spacing:4.712731px;}
.lse{letter-spacing:7.126487px;}
.lsc{letter-spacing:7.134551px;}
.lsd{letter-spacing:10.865464px;}
.ls4{letter-spacing:10.930918px;}
.ls3{letter-spacing:18.196379px;}
.ls15{letter-spacing:19.636380px;}
.ls12{letter-spacing:20.356381px;}
.ls20{letter-spacing:21.114861px;}
.lsb{letter-spacing:21.861836px;}
.ls8{letter-spacing:24.980359px;}
.ls1f{letter-spacing:25.854567px;}
.ls27{letter-spacing:26.574568px;}
.ls14{letter-spacing:28.080023px;}
.ls22{letter-spacing:28.538206px;}
.ls7{letter-spacing:29.650934px;}
.ls28{letter-spacing:29.781843px;}
.ls25{letter-spacing:29.912752px;}
.ls1d{letter-spacing:31.418208px;}
.ls11{letter-spacing:31.549117px;}
.ls29{letter-spacing:32.400027px;}
.ls26{letter-spacing:32.465482px;}
.ls13{letter-spacing:32.727300px;}
.ls19{letter-spacing:36.327303px;}
.ls18{letter-spacing:36.392758px;}
.ls10{letter-spacing:864.786175px;}
.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;}
}
.ws13{word-spacing:-42.637126px;}
.ws36{word-spacing:-18.183288px;}
.ws40{word-spacing:-14.111859px;}
.ws14{word-spacing:-7.345954px;}
.ws50{word-spacing:-7.339954px;}
.ws31{word-spacing:-7.252370px;}
.ws12{word-spacing:-3.652367px;}
.ws18{word-spacing:-3.325094px;}
.ws25{word-spacing:-2.932366px;}
.ws53{word-spacing:-2.866911px;}
.ws42{word-spacing:-1.885092px;}
.ws17{word-spacing:-1.426910px;}
.wsf{word-spacing:-0.772364px;}
.ws28{word-spacing:-0.706910px;}
.ws24{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.183273px;}
.ws8{word-spacing:-0.071731px;}
.ws7{word-spacing:0.000000px;}
.ws21{word-spacing:0.013091px;}
.ws52{word-spacing:0.144000px;}
.ws4d{word-spacing:0.405819px;}
.ws46{word-spacing:0.471273px;}
.ws45{word-spacing:1.256728px;}
.ws71{word-spacing:1.322183px;}
.ws75{word-spacing:1.387638px;}
.ws3b{word-spacing:1.453092px;}
.ws49{word-spacing:1.518547px;}
.ws5e{word-spacing:1.714911px;}
.ws6a{word-spacing:1.780365px;}
.ws6c{word-spacing:1.845820px;}
.ws29{word-spacing:2.042184px;}
.ws38{word-spacing:2.173093px;}
.ws4b{word-spacing:2.434911px;}
.ws6d{word-spacing:2.500366px;}
.ws16{word-spacing:2.565820px;}
.wse{word-spacing:2.958548px;}
.ws5{word-spacing:3.613094px;}
.ws4c{word-spacing:3.678549px;}
.ws7a{word-spacing:3.744003px;}
.ws3c{word-spacing:3.874912px;}
.ws2b{word-spacing:3.940367px;}
.ws37{word-spacing:4.005822px;}
.ws39{word-spacing:4.071276px;}
.wsa{word-spacing:4.162913px;}
.wsd{word-spacing:4.333095px;}
.ws62{word-spacing:4.546788px;}
.ws64{word-spacing:5.053095px;}
.ws43{word-spacing:5.193843px;}
.ws57{word-spacing:5.380368px;}
.ws65{word-spacing:5.445823px;}
.ws2d{word-spacing:5.576732px;}
.ws5c{word-spacing:5.642187px;}
.ws5a{word-spacing:5.707641px;}
.ws72{word-spacing:5.773096px;}
.ws4e{word-spacing:6.100369px;}
.ws2e{word-spacing:6.165823px;}
.ws61{word-spacing:6.231278px;}
.ws55{word-spacing:6.427642px;}
.ws56{word-spacing:6.493096px;}
.ws2a{word-spacing:6.624006px;}
.ws23{word-spacing:6.689460px;}
.ws20{word-spacing:6.754915px;}
.ws63{word-spacing:6.885824px;}
.ws70{word-spacing:6.951279px;}
.ws4a{word-spacing:7.016733px;}
.ws3e{word-spacing:7.147642px;}
.ws1f{word-spacing:7.736734px;}
.wsb{word-spacing:7.867643px;}
.ws76{word-spacing:7.933098px;}
.ws3d{word-spacing:8.062788px;}
.ws68{word-spacing:8.260371px;}
.ws60{word-spacing:8.325825px;}
.ws5d{word-spacing:8.391280px;}
.wsc{word-spacing:8.522189px;}
.ws4f{word-spacing:8.784007px;}
.ws2c{word-spacing:8.914917px;}
.ws26{word-spacing:9.111280px;}
.ws27{word-spacing:9.307644px;}
.ws5f{word-spacing:9.595644px;}
.ws6f{word-spacing:10.027645px;}
.ws19{word-spacing:10.354918px;}
.ws10{word-spacing:10.420372px;}
.ws44{word-spacing:10.682191px;}
.ws6e{word-spacing:10.834046px;}
.ws6{word-spacing:10.878555px;}
.ws79{word-spacing:11.009464px;}
.ws77{word-spacing:11.074918px;}
.ws66{word-spacing:12.253101px;}
.ws11{word-spacing:12.318556px;}
.ws73{word-spacing:12.449465px;}
.ws59{word-spacing:12.467971px;}
.ws48{word-spacing:12.580374px;}
.ws6b{word-spacing:12.676046px;}
.ws35{word-spacing:13.300375px;}
.ws34{word-spacing:13.365829px;}
.ws69{word-spacing:13.496739px;}
.ws33{word-spacing:14.085830px;}
.ws32{word-spacing:14.151285px;}
.ws15{word-spacing:14.476046px;}
.ws1e{word-spacing:14.765971px;}
.ws3f{word-spacing:16.197843px;}
.ws58{word-spacing:16.252046px;}
.ws5b{word-spacing:16.522046px;}
.ws1b{word-spacing:21.208046px;}
.ws78{word-spacing:21.886046px;}
.ws74{word-spacing:23.314046px;}
.ws3{word-spacing:26.253619px;}
.ws30{word-spacing:26.827469px;}
.ws1d{word-spacing:27.098204px;}
.ws3a{word-spacing:28.341842px;}
.ws1a{word-spacing:29.520025px;}
.ws1c{word-spacing:29.585479px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws47{word-spacing:32.661845px;}
.ws54{word-spacing:32.989118px;}
.ws67{word-spacing:34.625483px;}
.ws9{word-spacing:39.639306px;}
.ws1{word-spacing:54.283749px;}
.ws2{word-spacing:54.432472px;}
.ws22{word-spacing:80.625869px;}
.ws41{word-spacing:741.967164px;}
.ws51{word-spacing:901.545479px;}
._24{margin-left:-5.954579px;}
._11{margin-left:-4.581822px;}
._19{margin-left:-3.338185px;}
._1{margin-left:-2.223667px;}
._12{margin-left:-1.050852px;}
._25{width:1.114517px;}
._2{width:2.223667px;}
._0{width:4.610401px;}
._1d{width:16.425526px;}
._17{width:18.196379px;}
._26{width:19.634591px;}
._1f{width:21.274534px;}
._1c{width:22.843655px;}
._20{width:24.812661px;}
._27{width:25.849199px;}
._1e{width:27.687296px;}
._1b{width:28.803602px;}
._14{width:30.045451px;}
._13{width:31.221844px;}
._16{width:32.596391px;}
._18{width:34.885513px;}
._23{width:37.309122px;}
._1a{width:38.618214px;}
._2b{width:42.345548px;}
._28{width:43.527309px;}
._29{width:47.127312px;}
._15{width:54.981864px;}
._2c{width:56.223712px;}
._2a{width:59.234624px;}
._4{width:60.545505px;}
._6{width:66.894601px;}
._22{width:75.272790px;}
._21{width:80.697600px;}
._b{width:868.518877px;}
._a{width:900.589841px;}
._9{width:1148.010019px;}
._5{width:1247.828284px;}
._e{width:1310.730154px;}
._f{width:1389.406583px;}
._d{width:1418.532091px;}
._c{width:1614.504953px;}
._8{width:1859.043338px;}
._7{width:1944.721621px;}
._3{width:2079.361733px;}
._10{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:93.813000px;}
.y51{bottom:176.005500px;}
.y2a{bottom:179.187000px;}
.y50{bottom:196.329000px;}
.y29{bottom:199.510500px;}
.y93{bottom:216.652500px;}
.y28{bottom:221.377500px;}
.y4f{bottom:223.699500px;}
.y75{bottom:224.173500px;}
.y27{bottom:241.702500px;}
.y4e{bottom:244.023000px;}
.y74{bottom:244.497000px;}
.y92{bottom:259.965000px;}
.y26{bottom:262.026000px;}
.y4d{bottom:278.310000px;}
.y73{bottom:279.595500px;}
.y91{bottom:280.288500px;}
.y25{bottom:282.349500px;}
.y72{bottom:299.919000px;}
.y90{bottom:300.612000px;}
.y24{bottom:304.216500px;}
.y4c{bottom:312.597000px;}
.y71{bottom:320.244000px;}
.y8f{bottom:320.935500px;}
.y23{bottom:324.540000px;}
.y22{bottom:344.863500px;}
.y4b{bottom:346.885500px;}
.y70{bottom:356.137500px;}
.y21{bottom:365.188500px;}
.y8e{bottom:365.440500px;}
.y6f{bottom:376.462500px;}
.y4a{bottom:381.172500px;}
.y8d{bottom:385.764000px;}
.y20{bottom:387.055500px;}
.y6e{bottom:396.786000px;}
.y49{bottom:401.496000px;}
.y8c{bottom:417.421500px;}
.y1f{bottom:428.446500px;}
.y48{bottom:430.585500px;}
.y6d{bottom:432.945000px;}
.y8b{bottom:460.762500px;}
.y6c{bottom:463.911000px;}
.y47{bottom:467.847000px;}
.y1e{bottom:469.839000px;}
.y8a{bottom:481.087500px;}
.y6b{bottom:485.029500px;}
.y46{bottom:488.172000px;}
.y1d{bottom:490.162500px;}
.y89{bottom:501.411000px;}
.y6a{bottom:505.353000px;}
.y45{bottom:508.624500px;}
.y1c{bottom:510.487500px;}
.y88{bottom:522.927000px;}
.y69{bottom:525.678000px;}
.y44{bottom:528.948000px;}
.y1b{bottom:530.811000px;}
.y7{bottom:532.603500px;}
.y68{bottom:546.267000px;}
.y43{bottom:549.271500px;}
.y1a{bottom:551.134500px;}
.y87{bottom:554.583000px;}
.y67{bottom:566.590500px;}
.y6{bottom:569.326500px;}
.y19{bottom:573.001500px;}
.y42{bottom:586.419000px;}
.y66{bottom:587.179500px;}
.y18{bottom:593.325000px;}
.y86{bottom:597.925500px;}
.y5{bottom:598.059000px;}
.y65{bottom:607.503000px;}
.y17{bottom:613.648500px;}
.y85{bottom:618.249000px;}
.y41{bottom:623.566500px;}
.y64{bottom:628.092000px;}
.y16{bottom:633.973500px;}
.ya8{bottom:634.503000px;}
.y84{bottom:638.572500px;}
.y40{bottom:652.656000px;}
.ya7{bottom:654.828000px;}
.y15{bottom:659.530500px;}
.y63{bottom:665.385000px;}
.ya6{bottom:675.151500px;}
.y83{bottom:677.116500px;}
.y3f{bottom:689.554500px;}
.ya5{bottom:695.475000px;}
.y82{bottom:697.440000px;}
.y14{bottom:699.304500px;}
.y62{bottom:712.855500px;}
.ya4{bottom:715.798500px;}
.y81{bottom:729.096000px;}
.y61{bottom:733.180500px;}
.y3e{bottom:736.051500px;}
.ya3{bottom:736.122000px;}
.y13{bottom:739.078500px;}
.y3d{bottom:756.375000px;}
.ya2{bottom:756.447000px;}
.y4{bottom:759.814500px;}
.y12{bottom:761.254500px;}
.y60{bottom:769.074000px;}
.y80{bottom:772.438500px;}
.y3c{bottom:776.698500px;}
.ya1{bottom:776.770500px;}
.y11{bottom:783.430500px;}
.y5f{bottom:789.397500px;}
.ya0{bottom:797.094000px;}
.y3{bottom:797.095500px;}
.y3b{bottom:797.151000px;}
.y7f{bottom:803.064000px;}
.y10{bottom:805.606500px;}
.y5e{bottom:809.722500px;}
.y9f{bottom:817.417500px;}
.y3a{bottom:817.474500px;}
.yf{bottom:827.782500px;}
.y7e{bottom:833.689500px;}
.y9e{bottom:837.741000px;}
.y39{bottom:837.799500px;}
.y2{bottom:841.927500px;}
.y5d{bottom:845.881500px;}
.y9d{bottom:858.066000px;}
.y38{bottom:858.123000px;}
.y5c{bottom:866.205000px;}
.ye{bottom:867.556500px;}
.y7d{bottom:873.424500px;}
.y9c{bottom:878.389500px;}
.y37{bottom:878.575500px;}
.y5b{bottom:886.528500px;}
.y36{bottom:898.899000px;}
.y5a{bottom:907.117500px;}
.yd{bottom:907.330500px;}
.y7c{bottom:911.967000px;}
.y9b{bottom:914.917500px;}
.y35{bottom:919.222500px;}
.y59{bottom:927.442500px;}
.y7b{bottom:932.290500px;}
.y34{bottom:939.546000px;}
.yc{bottom:947.104500px;}
.y58{bottom:947.766000px;}
.y7a{bottom:952.615500px;}
.y33{bottom:959.998500px;}
.y9a{bottom:960.498000px;}
.yb{bottom:969.280500px;}
.y57{bottom:978.996000px;}
.y32{bottom:980.322000px;}
.y99{bottom:980.821500px;}
.y79{bottom:984.271500px;}
.ya{bottom:991.456500px;}
.y56{bottom:1000.116000px;}
.y31{bottom:1000.774500px;}
.y98{bottom:1001.145000px;}
.y55{bottom:1020.439500px;}
.y30{bottom:1021.098000px;}
.y97{bottom:1021.470000px;}
.y78{bottom:1024.240500px;}
.y9{bottom:1031.230500px;}
.y54{bottom:1041.028500px;}
.y2f{bottom:1041.423000px;}
.y96{bottom:1041.793500px;}
.y53{bottom:1061.352000px;}
.y2e{bottom:1061.746500px;}
.y95{bottom:1062.117000px;}
.y8{bottom:1071.004500px;}
.y77{bottom:1078.321500px;}
.y52{bottom:1081.675500px;}
.y2d{bottom:1082.070000px;}
.y94{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y76{bottom:1098.645000px;}
.y2c{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.068378px;}
.h4{height:51.359539px;}
.hc{height:60.689702px;}
.ha{height:61.168950px;}
.h5{height:74.035330px;}
.hb{height:79.227301px;}
.hd{height:79.233301px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:111.109500px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x6{left:164.010000px;}
.xd{left:165.579000px;}
.xb{left:254.475000px;}
.x1{left:286.581000px;}
.xe{left:357.217500px;}
.xf{left:365.734500px;}
.xa{left:377.262000px;}
.x7{left:394.161000px;}
.x10{left:397.116000px;}
.x8{left:402.678000px;}
.x11{left:405.633000px;}
.xc{left:421.875000px;}
.x9{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.736000pt;}
.v6{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:40.693333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002384pt;}
.ls16{letter-spacing:0.003749pt;}
.ls24{letter-spacing:0.004412pt;}
.ls1a{letter-spacing:0.006155pt;}
.lsa{letter-spacing:0.008225pt;}
.ls6{letter-spacing:0.008646pt;}
.ls1c{letter-spacing:0.009126pt;}
.ls1e{letter-spacing:0.009311pt;}
.ls2b{letter-spacing:0.010570pt;}
.ls1b{letter-spacing:0.015250pt;}
.ls5{letter-spacing:0.021162pt;}
.ls2a{letter-spacing:0.021816pt;}
.ls23{letter-spacing:0.024595pt;}
.ls2{letter-spacing:0.804338pt;}
.ls17{letter-spacing:0.809672pt;}
.ls0{letter-spacing:2.654270pt;}
.lsf{letter-spacing:2.658767pt;}
.ls21{letter-spacing:4.189094pt;}
.lse{letter-spacing:6.334655pt;}
.lsc{letter-spacing:6.341823pt;}
.lsd{letter-spacing:9.658190pt;}
.ls4{letter-spacing:9.716372pt;}
.ls3{letter-spacing:16.174559pt;}
.ls15{letter-spacing:17.454560pt;}
.ls12{letter-spacing:18.094561pt;}
.ls20{letter-spacing:18.768766pt;}
.lsb{letter-spacing:19.432743pt;}
.ls8{letter-spacing:22.204764pt;}
.ls1f{letter-spacing:22.981837pt;}
.ls27{letter-spacing:23.621838pt;}
.ls14{letter-spacing:24.960021pt;}
.ls22{letter-spacing:25.367294pt;}
.ls7{letter-spacing:26.356386pt;}
.ls28{letter-spacing:26.472749pt;}
.ls25{letter-spacing:26.589113pt;}
.ls1d{letter-spacing:27.927296pt;}
.ls11{letter-spacing:28.043660pt;}
.ls29{letter-spacing:28.800024pt;}
.ls26{letter-spacing:28.858206pt;}
.ls13{letter-spacing:29.090933pt;}
.ls19{letter-spacing:32.290936pt;}
.ls18{letter-spacing:32.349118pt;}
.ls10{letter-spacing:768.698822pt;}
.ws13{word-spacing:-37.899668pt;}
.ws36{word-spacing:-16.162923pt;}
.ws40{word-spacing:-12.543875pt;}
.ws14{word-spacing:-6.529737pt;}
.ws50{word-spacing:-6.524404pt;}
.ws31{word-spacing:-6.446551pt;}
.ws12{word-spacing:-3.246548pt;}
.ws18{word-spacing:-2.955639pt;}
.ws25{word-spacing:-2.606548pt;}
.ws53{word-spacing:-2.548366pt;}
.ws42{word-spacing:-1.675638pt;}
.ws17{word-spacing:-1.268365pt;}
.wsf{word-spacing:-0.686546pt;}
.ws28{word-spacing:-0.628364pt;}
.ws24{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.162909pt;}
.ws8{word-spacing:-0.063761pt;}
.ws7{word-spacing:0.000000pt;}
.ws21{word-spacing:0.011636pt;}
.ws52{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.360728pt;}
.ws46{word-spacing:0.418909pt;}
.ws45{word-spacing:1.117092pt;}
.ws71{word-spacing:1.175274pt;}
.ws75{word-spacing:1.233456pt;}
.ws3b{word-spacing:1.291637pt;}
.ws49{word-spacing:1.349819pt;}
.ws5e{word-spacing:1.524365pt;}
.ws6a{word-spacing:1.582547pt;}
.ws6c{word-spacing:1.640729pt;}
.ws29{word-spacing:1.815274pt;}
.ws38{word-spacing:1.931638pt;}
.ws4b{word-spacing:2.164365pt;}
.ws6d{word-spacing:2.222547pt;}
.ws16{word-spacing:2.280729pt;}
.wse{word-spacing:2.629820pt;}
.ws5{word-spacing:3.211639pt;}
.ws4c{word-spacing:3.269821pt;}
.ws7a{word-spacing:3.328003pt;}
.ws3c{word-spacing:3.444367pt;}
.ws2b{word-spacing:3.502548pt;}
.ws37{word-spacing:3.560730pt;}
.ws39{word-spacing:3.618912pt;}
.wsa{word-spacing:3.700367pt;}
.wsd{word-spacing:3.851640pt;}
.ws62{word-spacing:4.041589pt;}
.ws64{word-spacing:4.491640pt;}
.ws43{word-spacing:4.616749pt;}
.ws57{word-spacing:4.782549pt;}
.ws65{word-spacing:4.840731pt;}
.ws2d{word-spacing:4.957095pt;}
.ws5c{word-spacing:5.015277pt;}
.ws5a{word-spacing:5.073459pt;}
.ws72{word-spacing:5.131641pt;}
.ws4e{word-spacing:5.422550pt;}
.ws2e{word-spacing:5.480732pt;}
.ws61{word-spacing:5.538914pt;}
.ws55{word-spacing:5.713459pt;}
.ws56{word-spacing:5.771641pt;}
.ws2a{word-spacing:5.888005pt;}
.ws23{word-spacing:5.946187pt;}
.ws20{word-spacing:6.004369pt;}
.ws63{word-spacing:6.120732pt;}
.ws70{word-spacing:6.178914pt;}
.ws4a{word-spacing:6.237096pt;}
.ws3e{word-spacing:6.353460pt;}
.ws1f{word-spacing:6.877097pt;}
.wsb{word-spacing:6.993460pt;}
.ws76{word-spacing:7.051642pt;}
.ws3d{word-spacing:7.166923pt;}
.ws68{word-spacing:7.342552pt;}
.ws60{word-spacing:7.400733pt;}
.ws5d{word-spacing:7.458915pt;}
.wsc{word-spacing:7.575279pt;}
.ws4f{word-spacing:7.808007pt;}
.ws2c{word-spacing:7.924370pt;}
.ws26{word-spacing:8.098916pt;}
.ws27{word-spacing:8.273461pt;}
.ws5f{word-spacing:8.529462pt;}
.ws6f{word-spacing:8.913462pt;}
.ws19{word-spacing:9.204371pt;}
.ws10{word-spacing:9.262553pt;}
.ws44{word-spacing:9.495281pt;}
.ws6e{word-spacing:9.630263pt;}
.ws6{word-spacing:9.669826pt;}
.ws79{word-spacing:9.786190pt;}
.ws77{word-spacing:9.844372pt;}
.ws66{word-spacing:10.891645pt;}
.ws11{word-spacing:10.949827pt;}
.ws73{word-spacing:11.066191pt;}
.ws59{word-spacing:11.082641pt;}
.ws48{word-spacing:11.182555pt;}
.ws6b{word-spacing:11.267596pt;}
.ws35{word-spacing:11.822555pt;}
.ws34{word-spacing:11.880737pt;}
.ws69{word-spacing:11.997101pt;}
.ws33{word-spacing:12.520738pt;}
.ws32{word-spacing:12.578920pt;}
.ws15{word-spacing:12.867596pt;}
.ws1e{word-spacing:13.125308pt;}
.ws3f{word-spacing:14.398083pt;}
.ws58{word-spacing:14.446263pt;}
.ws5b{word-spacing:14.686263pt;}
.ws1b{word-spacing:18.851596pt;}
.ws78{word-spacing:19.454263pt;}
.ws74{word-spacing:20.723596pt;}
.ws3{word-spacing:23.336550pt;}
.ws30{word-spacing:23.846639pt;}
.ws1d{word-spacing:24.087293pt;}
.ws3a{word-spacing:25.192748pt;}
.ws1a{word-spacing:26.240022pt;}
.ws1c{word-spacing:26.298204pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws47{word-spacing:29.032751pt;}
.ws54{word-spacing:29.323661pt;}
.ws67{word-spacing:30.778207pt;}
.ws9{word-spacing:35.234938pt;}
.ws1{word-spacing:48.252221pt;}
.ws2{word-spacing:48.384419pt;}
.ws22{word-spacing:71.667439pt;}
.ws41{word-spacing:659.526368pt;}
.ws51{word-spacing:801.373759pt;}
._24{margin-left:-5.292959pt;}
._11{margin-left:-4.072731pt;}
._19{margin-left:-2.967275pt;}
._1{margin-left:-1.976593pt;}
._12{margin-left:-0.934091pt;}
._25{width:0.990682pt;}
._2{width:1.976593pt;}
._0{width:4.098134pt;}
._1d{width:14.600468pt;}
._17{width:16.174559pt;}
._26{width:17.452970pt;}
._1f{width:18.910697pt;}
._1c{width:20.305471pt;}
._20{width:22.055699pt;}
._27{width:22.977066pt;}
._1e{width:24.610930pt;}
._1b{width:25.603202pt;}
._14{width:26.707067pt;}
._13{width:27.752750pt;}
._16{width:28.974570pt;}
._18{width:31.009345pt;}
._23{width:33.163664pt;}
._1a{width:34.327301pt;}
._2b{width:37.640487pt;}
._28{width:38.690941pt;}
._29{width:41.890944pt;}
._15{width:48.872768pt;}
._2c{width:49.976633pt;}
._2a{width:52.652999pt;}
._4{width:53.818227pt;}
._6{width:59.461868pt;}
._22{width:66.909147pt;}
._21{width:71.731200pt;}
._b{width:772.016779pt;}
._a{width:800.524303pt;}
._9{width:1020.453350pt;}
._5{width:1109.180697pt;}
._e{width:1165.093470pt;}
._f{width:1235.028074pt;}
._d{width:1260.917414pt;}
._c{width:1435.115514pt;}
._8{width:1652.482967pt;}
._7{width:1728.641441pt;}
._3{width:1848.321540pt;}
._10{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:83.389333pt;}
.y51{bottom:156.449333pt;}
.y2a{bottom:159.277333pt;}
.y50{bottom:174.514667pt;}
.y29{bottom:177.342667pt;}
.y93{bottom:192.580000pt;}
.y28{bottom:196.780000pt;}
.y4f{bottom:198.844000pt;}
.y75{bottom:199.265333pt;}
.y27{bottom:214.846667pt;}
.y4e{bottom:216.909333pt;}
.y74{bottom:217.330667pt;}
.y92{bottom:231.080000pt;}
.y26{bottom:232.912000pt;}
.y4d{bottom:247.386667pt;}
.y73{bottom:248.529333pt;}
.y91{bottom:249.145333pt;}
.y25{bottom:250.977333pt;}
.y72{bottom:266.594667pt;}
.y90{bottom:267.210667pt;}
.y24{bottom:270.414667pt;}
.y4c{bottom:277.864000pt;}
.y71{bottom:284.661333pt;}
.y8f{bottom:285.276000pt;}
.y23{bottom:288.480000pt;}
.y22{bottom:306.545333pt;}
.y4b{bottom:308.342667pt;}
.y70{bottom:316.566667pt;}
.y21{bottom:324.612000pt;}
.y8e{bottom:324.836000pt;}
.y6f{bottom:334.633333pt;}
.y4a{bottom:338.820000pt;}
.y8d{bottom:342.901333pt;}
.y20{bottom:344.049333pt;}
.y6e{bottom:352.698667pt;}
.y49{bottom:356.885333pt;}
.y8c{bottom:371.041333pt;}
.y1f{bottom:380.841333pt;}
.y48{bottom:382.742667pt;}
.y6d{bottom:384.840000pt;}
.y8b{bottom:409.566667pt;}
.y6c{bottom:412.365333pt;}
.y47{bottom:415.864000pt;}
.y1e{bottom:417.634667pt;}
.y8a{bottom:427.633333pt;}
.y6b{bottom:431.137333pt;}
.y46{bottom:433.930667pt;}
.y1d{bottom:435.700000pt;}
.y89{bottom:445.698667pt;}
.y6a{bottom:449.202667pt;}
.y45{bottom:452.110667pt;}
.y1c{bottom:453.766667pt;}
.y88{bottom:464.824000pt;}
.y69{bottom:467.269333pt;}
.y44{bottom:470.176000pt;}
.y1b{bottom:471.832000pt;}
.y7{bottom:473.425333pt;}
.y68{bottom:485.570667pt;}
.y43{bottom:488.241333pt;}
.y1a{bottom:489.897333pt;}
.y87{bottom:492.962667pt;}
.y67{bottom:503.636000pt;}
.y6{bottom:506.068000pt;}
.y19{bottom:509.334667pt;}
.y42{bottom:521.261333pt;}
.y66{bottom:521.937333pt;}
.y18{bottom:527.400000pt;}
.y86{bottom:531.489333pt;}
.y5{bottom:531.608000pt;}
.y65{bottom:540.002667pt;}
.y17{bottom:545.465333pt;}
.y85{bottom:549.554667pt;}
.y41{bottom:554.281333pt;}
.y64{bottom:558.304000pt;}
.y16{bottom:563.532000pt;}
.ya8{bottom:564.002667pt;}
.y84{bottom:567.620000pt;}
.y40{bottom:580.138667pt;}
.ya7{bottom:582.069333pt;}
.y15{bottom:586.249333pt;}
.y63{bottom:591.453333pt;}
.ya6{bottom:600.134667pt;}
.y83{bottom:601.881333pt;}
.y3f{bottom:612.937333pt;}
.ya5{bottom:618.200000pt;}
.y82{bottom:619.946667pt;}
.y14{bottom:621.604000pt;}
.y62{bottom:633.649333pt;}
.ya4{bottom:636.265333pt;}
.y81{bottom:648.085333pt;}
.y61{bottom:651.716000pt;}
.y3e{bottom:654.268000pt;}
.ya3{bottom:654.330667pt;}
.y13{bottom:656.958667pt;}
.y3d{bottom:672.333333pt;}
.ya2{bottom:672.397333pt;}
.y4{bottom:675.390667pt;}
.y12{bottom:676.670667pt;}
.y60{bottom:683.621333pt;}
.y80{bottom:686.612000pt;}
.y3c{bottom:690.398667pt;}
.ya1{bottom:690.462667pt;}
.y11{bottom:696.382667pt;}
.y5f{bottom:701.686667pt;}
.ya0{bottom:708.528000pt;}
.y3{bottom:708.529333pt;}
.y3b{bottom:708.578667pt;}
.y7f{bottom:713.834667pt;}
.y10{bottom:716.094667pt;}
.y5e{bottom:719.753333pt;}
.y9f{bottom:726.593333pt;}
.y3a{bottom:726.644000pt;}
.yf{bottom:735.806667pt;}
.y7e{bottom:741.057333pt;}
.y9e{bottom:744.658667pt;}
.y39{bottom:744.710667pt;}
.y2{bottom:748.380000pt;}
.y5d{bottom:751.894667pt;}
.y9d{bottom:762.725333pt;}
.y38{bottom:762.776000pt;}
.y5c{bottom:769.960000pt;}
.ye{bottom:771.161333pt;}
.y7d{bottom:776.377333pt;}
.y9c{bottom:780.790667pt;}
.y37{bottom:780.956000pt;}
.y5b{bottom:788.025333pt;}
.y36{bottom:799.021333pt;}
.y5a{bottom:806.326667pt;}
.yd{bottom:806.516000pt;}
.y7c{bottom:810.637333pt;}
.y9b{bottom:813.260000pt;}
.y35{bottom:817.086667pt;}
.y59{bottom:824.393333pt;}
.y7b{bottom:828.702667pt;}
.y34{bottom:835.152000pt;}
.yc{bottom:841.870667pt;}
.y58{bottom:842.458667pt;}
.y7a{bottom:846.769333pt;}
.y33{bottom:853.332000pt;}
.y9a{bottom:853.776000pt;}
.yb{bottom:861.582667pt;}
.y57{bottom:870.218667pt;}
.y32{bottom:871.397333pt;}
.y99{bottom:871.841333pt;}
.y79{bottom:874.908000pt;}
.ya{bottom:881.294667pt;}
.y56{bottom:888.992000pt;}
.y31{bottom:889.577333pt;}
.y98{bottom:889.906667pt;}
.y55{bottom:907.057333pt;}
.y30{bottom:907.642667pt;}
.y97{bottom:907.973333pt;}
.y78{bottom:910.436000pt;}
.y9{bottom:916.649333pt;}
.y54{bottom:925.358667pt;}
.y2f{bottom:925.709333pt;}
.y96{bottom:926.038667pt;}
.y53{bottom:943.424000pt;}
.y2e{bottom:943.774667pt;}
.y95{bottom:944.104000pt;}
.y8{bottom:952.004000pt;}
.y77{bottom:958.508000pt;}
.y52{bottom:961.489333pt;}
.y2d{bottom:961.840000pt;}
.y94{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y76{bottom:976.573333pt;}
.y2c{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.505225pt;}
.h4{height:45.652924pt;}
.hc{height:53.946402pt;}
.ha{height:54.372400pt;}
.h5{height:65.809182pt;}
.hb{height:70.424267pt;}
.hd{height:70.429601pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:98.764000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x6{left:145.786667pt;}
.xd{left:147.181333pt;}
.xb{left:226.200000pt;}
.x1{left:254.738667pt;}
.xe{left:317.526667pt;}
.xf{left:325.097333pt;}
.xa{left:335.344000pt;}
.x7{left:350.365333pt;}
.x10{left:352.992000pt;}
.x8{left:357.936000pt;}
.x11{left:360.562667pt;}
.xc{left:375.000000pt;}
.x9{left:389.748000pt;}
}




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