
    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_e30d07928a68e9b33e13047d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_95777e55ea9d865b76ccb29f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_3ffb08940381c10f9ccb8cc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_54e66bb2ec6d6550d802c530.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.430000;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_821697728d1527e326a36f7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_d1a39fca29b3420a54616e0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_c205ca60f8bda52e458bd506.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4c8045ab9ad104282155014c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_bf1eaf2451a28a46d717855d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.430000;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_1e664820d31ae221814257b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;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_58f2d1e97edcd9f16583b028.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3578716cfb1e240d6101ce68.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.522000;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:ffd;src:url('chunks/assets/font_757a36b67c44854ea0791036.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fb724518f61cf749bd2c1f2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988532px;}
.ls3{letter-spacing:16.589400px;}
.ls4{letter-spacing:21.815400px;}
.ls5{letter-spacing:31.523400px;}
.ls2{letter-spacing:32.729412px;}
.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;}
}
.ws4d{word-spacing:-32.727300px;}
.ws58{word-spacing:-17.214560px;}
.ws1b{word-spacing:-17.149105px;}
.ws8{word-spacing:-16.378514px;}
.ws5a{word-spacing:-16.232741px;}
.ws49{word-spacing:-16.167286px;}
.ws4a{word-spacing:-16.101832px;}
.ws30{word-spacing:-15.840013px;}
.ws37{word-spacing:-15.774559px;}
.ws40{word-spacing:-15.643649px;}
.ws25{word-spacing:-15.054558px;}
.ws3b{word-spacing:-14.661830px;}
.ws69{word-spacing:-14.530921px;}
.ws48{word-spacing:-14.203648px;}
.ws47{word-spacing:-13.287284px;}
.ws45{word-spacing:-13.156375px;}
.ws59{word-spacing:-13.025465px;}
.ws24{word-spacing:-12.829102px;}
.ws6f{word-spacing:-12.632738px;}
.ws4b{word-spacing:-12.501829px;}
.ws5f{word-spacing:-12.440304px;}
.ws61{word-spacing:-12.436374px;}
.ws36{word-spacing:-12.174556px;}
.wsc{word-spacing:-12.014896px;}
.ws70{word-spacing:-11.847283px;}
.ws39{word-spacing:-11.781828px;}
.ws54{word-spacing:-11.389100px;}
.ws43{word-spacing:-11.323646px;}
.ws19{word-spacing:-11.258191px;}
.ws73{word-spacing:-11.061827px;}
.wsa{word-spacing:-10.998710px;}
.ws12{word-spacing:-10.930918px;}
.ws1a{word-spacing:-10.865464px;}
.ws42{word-spacing:-10.734554px;}
.ws15{word-spacing:-10.669100px;}
.ws3a{word-spacing:-10.603645px;}
.ws2e{word-spacing:-10.538191px;}
.wse{word-spacing:-10.400954px;}
.ws3c{word-spacing:-10.276372px;}
.ws1e{word-spacing:-10.080008px;}
.wsf{word-spacing:-9.982525px;}
.ws2a{word-spacing:-9.949099px;}
.ws7b{word-spacing:-9.490917px;}
.ws18{word-spacing:-9.360008px;}
.ws50{word-spacing:-9.294553px;}
.ws6d{word-spacing:-9.229099px;}
.ws20{word-spacing:-9.163644px;}
.ws56{word-spacing:-9.032735px;}
.ws35{word-spacing:-8.967280px;}
.ws76{word-spacing:-8.640007px;}
.ws2d{word-spacing:-8.574553px;}
.wsb{word-spacing:-8.428360px;}
.ws6c{word-spacing:-8.378189px;}
.ws38{word-spacing:-8.181825px;}
.ws66{word-spacing:-8.116370px;}
.ws44{word-spacing:-7.985461px;}
.ws34{word-spacing:-7.920007px;}
.ws71{word-spacing:-7.789097px;}
.ws46{word-spacing:-7.723643px;}
.ws6e{word-spacing:-7.658188px;}
.ws26{word-spacing:-7.592734px;}
.ws57{word-spacing:-7.069097px;}
.ws16{word-spacing:-7.003642px;}
.ws79{word-spacing:-6.938188px;}
.ws75{word-spacing:-6.872733px;}
.ws27{word-spacing:-6.741824px;}
.ws1d{word-spacing:-6.676369px;}
.ws72{word-spacing:-6.152732px;}
.ws2b{word-spacing:-5.956369px;}
.ws4c{word-spacing:-5.301823px;}
.ws1f{word-spacing:-5.236368px;}
.ws6a{word-spacing:-5.170913px;}
.ws77{word-spacing:-4.843640px;}
.ws5{word-spacing:-4.650480px;}
.ws3{word-spacing:-4.649520px;}
.ws41{word-spacing:-4.647277px;}
.ws6{word-spacing:-4.646876px;}
.ws78{word-spacing:-4.058185px;}
.ws11{word-spacing:-3.992731px;}
.ws31{word-spacing:-3.861821px;}
.ws1c{word-spacing:-3.665458px;}
.ws5b{word-spacing:-3.534548px;}
.ws53{word-spacing:-3.469094px;}
.ws74{word-spacing:-3.338185px;}
.ws2c{word-spacing:-3.141821px;}
.wsd{word-spacing:-2.988780px;}
.ws51{word-spacing:-2.814548px;}
.ws6b{word-spacing:-2.487275px;}
.ws21{word-spacing:-2.356366px;}
.ws7a{word-spacing:-2.160002px;}
.ws33{word-spacing:-2.029093px;}
.ws55{word-spacing:-1.963638px;}
.ws68{word-spacing:-1.701820px;}
.ws4e{word-spacing:-1.243637px;}
.ws4f{word-spacing:-1.178183px;}
.ws9{word-spacing:-1.016185px;}
.ws65{word-spacing:-0.850910px;}
.ws63{word-spacing:-0.785455px;}
.ws52{word-spacing:-0.654546px;}
.ws14{word-spacing:-0.261818px;}
.ws67{word-spacing:-0.130909px;}
.ws1{word-spacing:-0.103292px;}
.ws29{word-spacing:-0.086077px;}
.ws2{word-spacing:-0.071731px;}
.ws5c{word-spacing:-0.065455px;}
.ws23{word-spacing:0.000000px;}
.ws3e{word-spacing:0.002112px;}
.ws2f{word-spacing:0.981819px;}
.ws22{word-spacing:18.399053px;}
.ws4{word-spacing:23.312640px;}
.ws62{word-spacing:23.606319px;}
.ws28{word-spacing:23.671230px;}
.ws60{word-spacing:24.716105px;}
.ws3f{word-spacing:25.003657px;}
.ws5d{word-spacing:25.069112px;}
.ws3d{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws7{word-spacing:31.131341px;}
.ws32{word-spacing:32.192873px;}
.ws64{word-spacing:37.012104px;}
.ws10{word-spacing:42.820075px;}
.ws13{word-spacing:50.381849px;}
.ws17{word-spacing:96.750773px;}
.ws5e{word-spacing:430.226485px;}
._1{margin-left:-8.160100px;}
._d{margin-left:-6.436276px;}
._2{margin-left:-5.371205px;}
._20{margin-left:-4.095537px;}
._3{margin-left:-2.788895px;}
._7{margin-left:-1.673717px;}
._6{width:1.494390px;}
._0{width:2.685602px;}
._e{width:16.821832px;}
._19{width:17.926772px;}
._1f{width:20.461637px;}
._1b{width:21.574365px;}
._17{width:23.248082px;}
._5{width:24.443082px;}
._1e{width:25.772075px;}
._f{width:27.572013px;}
._a{width:28.692288px;}
._1c{width:29.790653px;}
._b{width:31.107047px;}
._15{width:32.474584px;}
._2d{width:33.658658px;}
._1a{width:34.690938px;}
._18{width:36.636208px;}
._c{width:37.872560px;}
._13{width:39.014869px;}
._4{width:41.936714px;}
._10{width:44.128099px;}
._11{width:46.341857px;}
._9{width:47.402051px;}
._16{width:50.252096px;}
._22{width:51.452929px;}
._8{width:53.558938px;}
._12{width:55.292100px;}
._21{width:60.012328px;}
._1d{width:80.697600px;}
._2c{width:90.836933px;}
._14{width:96.836850px;}
._27{width:186.408100px;}
._2b{width:236.778015px;}
._24{width:246.026749px;}
._28{width:395.511164px;}
._25{width:462.953785px;}
._2a{width:470.409610px;}
._23{width:493.283967px;}
._26{width:581.999785px;}
._29{width:638.607750px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y51{bottom:108.000000px;}
.y78{bottom:112.185000px;}
.y26{bottom:113.713500px;}
.y50{bottom:128.323500px;}
.y77{bottom:132.508500px;}
.y25{bottom:136.954500px;}
.y4f{bottom:148.647000px;}
.y76{bottom:152.832000px;}
.y24{bottom:157.278000px;}
.y9a{bottom:162.696000px;}
.y4e{bottom:168.972000px;}
.y75{bottom:173.155500px;}
.y23{bottom:177.601500px;}
.y99{bottom:183.019500px;}
.y4d{bottom:189.295500px;}
.y74{bottom:193.479000px;}
.y22{bottom:197.926500px;}
.y98{bottom:203.343000px;}
.y4c{bottom:209.619000px;}
.y73{bottom:213.804000px;}
.y21{bottom:218.250000px;}
.y4b{bottom:229.942500px;}
.y72{bottom:234.127500px;}
.y97{bottom:235.822500px;}
.y20{bottom:238.573500px;}
.y96{bottom:256.146000px;}
.y1f{bottom:258.897000px;}
.y4a{bottom:260.835000px;}
.y71{bottom:273.201000px;}
.y95{bottom:276.469500px;}
.y1e{bottom:279.220500px;}
.yb8{bottom:292.884000px;}
.y1d{bottom:299.544000px;}
.y49{bottom:303.924000px;}
.y94{bottom:308.949000px;}
.yb7{bottom:313.207500px;}
.y1c{bottom:319.869000px;}
.y48{bottom:324.247500px;}
.y93{bottom:329.272500px;}
.y70{bottom:333.384000px;}
.yb6{bottom:333.532500px;}
.y1b{bottom:340.192500px;}
.y47{bottom:344.571000px;}
.y92{bottom:349.596000px;}
.y6f{bottom:353.707500px;}
.y46{bottom:364.896000px;}
.yb5{bottom:367.305000px;}
.y6e{bottom:374.031000px;}
.y1a{bottom:376.720500px;}
.y91{bottom:383.968500px;}
.y45{bottom:385.219500px;}
.yb4{bottom:387.628500px;}
.y6d{bottom:394.354500px;}
.y90{bottom:404.292000px;}
.y44{bottom:405.543000px;}
.y6c{bottom:414.678000px;}
.yb3{bottom:421.402500px;}
.y43{bottom:425.866500px;}
.y6b{bottom:435.001500px;}
.yb2{bottom:441.726000px;}
.y8f{bottom:443.365500px;}
.y19{bottom:444.322500px;}
.y42{bottom:446.190000px;}
.y6a{bottom:455.326500px;}
.yb1{bottom:462.049500px;}
.y18{bottom:464.646000px;}
.y41{bottom:466.515000px;}
.y69{bottom:475.650000px;}
.y17{bottom:484.969500px;}
.y40{bottom:486.838500px;}
.y68{bottom:495.973500px;}
.yb0{bottom:498.577500px;}
.y16{bottom:505.293000px;}
.y3f{bottom:507.162000px;}
.y8e{bottom:523.089000px;}
.y3e{bottom:527.485500px;}
.y67{bottom:535.047000px;}
.y8d{bottom:543.412500px;}
.y15{bottom:545.941500px;}
.y3d{bottom:564.013500px;}
.y8c{bottom:564.334500px;}
.y14{bottom:566.265000px;}
.yaf{bottom:566.499000px;}
.y8b{bottom:584.658000px;}
.yae{bottom:586.824000px;}
.y13{bottom:599.020500px;}
.y66{bottom:603.411000px;}
.y8a{bottom:604.981500px;}
.yad{bottom:607.147500px;}
.y12{bottom:616.953000px;}
.y65{bottom:623.736000px;}
.y89{bottom:625.306500px;}
.yac{bottom:627.471000px;}
.y3c{bottom:631.206000px;}
.y11{bottom:634.887000px;}
.y88{bottom:645.630000px;}
.yab{bottom:647.794500px;}
.y3b{bottom:651.529500px;}
.y10{bottom:652.819500px;}
.y64{bottom:657.508500px;}
.y87{bottom:665.953500px;}
.yaa{bottom:668.118000px;}
.yf{bottom:670.752000px;}
.y63{bottom:677.832000px;}
.y3a{bottom:681.435000px;}
.y86{bottom:686.875500px;}
.ya9{bottom:688.443000px;}
.ye{bottom:688.684500px;}
.y62{bottom:698.157000px;}
.y39{bottom:701.760000px;}
.yd{bottom:706.617000px;}
.y85{bottom:707.199000px;}
.ya8{bottom:708.766500px;}
.y38{bottom:722.083500px;}
.yc{bottom:724.549500px;}
.y84{bottom:727.522500px;}
.y61{bottom:731.929500px;}
.yb{bottom:742.483500px;}
.ya7{bottom:745.294500px;}
.y83{bottom:748.444500px;}
.y60{bottom:752.253000px;}
.y37{bottom:754.309500px;}
.ya{bottom:767.721000px;}
.y82{bottom:768.768000px;}
.y36{bottom:784.215000px;}
.y5f{bottom:786.027000px;}
.y81{bottom:789.690000px;}
.y35{bottom:804.538500px;}
.y80{bottom:810.013500px;}
.ya6{bottom:813.216000px;}
.y5e{bottom:816.918000px;}
.y34{bottom:824.863500px;}
.y7f{bottom:830.934000px;}
.ya5{bottom:833.539500px;}
.y9{bottom:841.995000px;}
.y33{bottom:845.187000px;}
.y7e{bottom:851.259000px;}
.ya4{bottom:853.863000px;}
.y5d{bottom:860.737500px;}
.y8{bottom:862.320000px;}
.y32{bottom:865.510500px;}
.y7d{bottom:872.179500px;}
.ya3{bottom:874.186500px;}
.y5c{bottom:881.061000px;}
.y31{bottom:885.834000px;}
.y7c{bottom:892.503000px;}
.ya2{bottom:894.511500px;}
.y7{bottom:898.807500px;}
.y5b{bottom:901.384500px;}
.y30{bottom:906.157500px;}
.ya1{bottom:914.835000px;}
.y6{bottom:919.729500px;}
.y5a{bottom:921.709500px;}
.y2f{bottom:926.482500px;}
.y7b{bottom:928.369500px;}
.ya0{bottom:935.158500px;}
.y5{bottom:940.650000px;}
.y59{bottom:942.033000px;}
.y9f{bottom:955.482000px;}
.y4{bottom:961.572000px;}
.y58{bottom:962.356500px;}
.y2e{bottom:963.010500px;}
.y9e{bottom:975.805500px;}
.y7a{bottom:978.778500px;}
.y57{bottom:982.680000px;}
.y2d{bottom:989.908500px;}
.y9d{bottom:996.130500px;}
.y56{bottom:1003.003500px;}
.y3{bottom:1007.038500px;}
.y9c{bottom:1016.454000px;}
.y79{bottom:1017.853500px;}
.y55{bottom:1023.328500px;}
.y9b{bottom:1036.777500px;}
.y2{bottom:1039.915500px;}
.y54{bottom:1043.652000px;}
.y2c{bottom:1057.101000px;}
.y53{bottom:1063.975500px;}
.y1{bottom:1072.792500px;}
.y2b{bottom:1077.424500px;}
.y52{bottom:1084.299000px;}
.y2a{bottom:1097.748000px;}
.y29{bottom:1118.073000px;}
.y28{bottom:1138.396500px;}
.h8{height:16.713370px;}
.h5{height:44.831700px;}
.h9{height:45.425492px;}
.h6{height:49.090950px;}
.h4{height:51.216077px;}
.h3{height:53.798400px;}
.h7{height:64.557900px;}
.h2{height:72.511265px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x13{left:117.564000px;}
.x1{left:119.587500px;}
.xe{left:126.655500px;}
.x11{left:127.999500px;}
.x17{left:133.404000px;}
.x2{left:138.544500px;}
.x10{left:144.313500px;}
.xc{left:148.909500px;}
.xb{left:171.325500px;}
.x5{left:257.923500px;}
.x16{left:297.669000px;}
.x12{left:299.752500px;}
.x7{left:309.318000px;}
.x6{left:320.475000px;}
.x8{left:373.905000px;}
.x4{left:393.321000px;}
.x9{left:400.563000px;}
.x3{left:404.652000px;}
.xa{left:413.580000px;}
.xf{left:442.366500px;}
.x14{left:477.775500px;}
.x15{left:687.643500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656473pt;}
.ls3{letter-spacing:14.746133pt;}
.ls4{letter-spacing:19.391467pt;}
.ls5{letter-spacing:28.020800pt;}
.ls2{letter-spacing:29.092811pt;}
.ws4d{word-spacing:-29.090933pt;}
.ws58{word-spacing:-15.301831pt;}
.ws1b{word-spacing:-15.243649pt;}
.ws8{word-spacing:-14.558679pt;}
.ws5a{word-spacing:-14.429103pt;}
.ws49{word-spacing:-14.370921pt;}
.ws4a{word-spacing:-14.312739pt;}
.ws30{word-spacing:-14.080012pt;}
.ws37{word-spacing:-14.021830pt;}
.ws40{word-spacing:-13.905466pt;}
.ws25{word-spacing:-13.381829pt;}
.ws3b{word-spacing:-13.032738pt;}
.ws69{word-spacing:-12.916374pt;}
.ws48{word-spacing:-12.625465pt;}
.ws47{word-spacing:-11.810919pt;}
.ws45{word-spacing:-11.694555pt;}
.ws59{word-spacing:-11.578191pt;}
.ws24{word-spacing:-11.403646pt;}
.ws6f{word-spacing:-11.229100pt;}
.ws4b{word-spacing:-11.112737pt;}
.ws5f{word-spacing:-11.058048pt;}
.ws61{word-spacing:-11.054555pt;}
.ws36{word-spacing:-10.821827pt;}
.wsc{word-spacing:-10.679907pt;}
.ws70{word-spacing:-10.530918pt;}
.ws39{word-spacing:-10.472736pt;}
.ws54{word-spacing:-10.123645pt;}
.ws43{word-spacing:-10.065463pt;}
.ws19{word-spacing:-10.007281pt;}
.ws73{word-spacing:-9.832735pt;}
.wsa{word-spacing:-9.776631pt;}
.ws12{word-spacing:-9.716372pt;}
.ws1a{word-spacing:-9.658190pt;}
.ws42{word-spacing:-9.541826pt;}
.ws15{word-spacing:-9.483644pt;}
.ws3a{word-spacing:-9.425462pt;}
.ws2e{word-spacing:-9.367281pt;}
.wse{word-spacing:-9.245293pt;}
.ws3c{word-spacing:-9.134553pt;}
.ws1e{word-spacing:-8.960007pt;}
.wsf{word-spacing:-8.873356pt;}
.ws2a{word-spacing:-8.843644pt;}
.ws7b{word-spacing:-8.436371pt;}
.ws18{word-spacing:-8.320007pt;}
.ws50{word-spacing:-8.261825pt;}
.ws6d{word-spacing:-8.203643pt;}
.ws20{word-spacing:-8.145461pt;}
.ws56{word-spacing:-8.029098pt;}
.ws35{word-spacing:-7.970916pt;}
.ws76{word-spacing:-7.680006pt;}
.ws2d{word-spacing:-7.621825pt;}
.wsb{word-spacing:-7.491875pt;}
.ws6c{word-spacing:-7.447279pt;}
.ws38{word-spacing:-7.272733pt;}
.ws66{word-spacing:-7.214551pt;}
.ws44{word-spacing:-7.098188pt;}
.ws34{word-spacing:-7.040006pt;}
.ws71{word-spacing:-6.923642pt;}
.ws46{word-spacing:-6.865460pt;}
.ws6e{word-spacing:-6.807278pt;}
.ws26{word-spacing:-6.749097pt;}
.ws57{word-spacing:-6.283642pt;}
.ws16{word-spacing:-6.225460pt;}
.ws79{word-spacing:-6.167278pt;}
.ws75{word-spacing:-6.109096pt;}
.ws27{word-spacing:-5.992732pt;}
.ws1d{word-spacing:-5.934550pt;}
.ws72{word-spacing:-5.469095pt;}
.ws2b{word-spacing:-5.294550pt;}
.ws4c{word-spacing:-4.712731pt;}
.ws1f{word-spacing:-4.654549pt;}
.ws6a{word-spacing:-4.596367pt;}
.ws77{word-spacing:-4.305458pt;}
.ws5{word-spacing:-4.133760pt;}
.ws3{word-spacing:-4.132907pt;}
.ws41{word-spacing:-4.130913pt;}
.ws6{word-spacing:-4.130557pt;}
.ws78{word-spacing:-3.607276pt;}
.ws11{word-spacing:-3.549094pt;}
.ws31{word-spacing:-3.432730pt;}
.ws1c{word-spacing:-3.258185pt;}
.ws5b{word-spacing:-3.141821pt;}
.ws53{word-spacing:-3.083639pt;}
.ws74{word-spacing:-2.967275pt;}
.ws2c{word-spacing:-2.792730pt;}
.wsd{word-spacing:-2.656693pt;}
.ws51{word-spacing:-2.501820pt;}
.ws6b{word-spacing:-2.210911pt;}
.ws21{word-spacing:-2.094547pt;}
.ws7a{word-spacing:-1.920002pt;}
.ws33{word-spacing:-1.803638pt;}
.ws55{word-spacing:-1.745456pt;}
.ws68{word-spacing:-1.512729pt;}
.ws4e{word-spacing:-1.105455pt;}
.ws4f{word-spacing:-1.047274pt;}
.ws9{word-spacing:-0.903276pt;}
.ws65{word-spacing:-0.756364pt;}
.ws63{word-spacing:-0.698182pt;}
.ws52{word-spacing:-0.581819pt;}
.ws14{word-spacing:-0.232727pt;}
.ws67{word-spacing:-0.116364pt;}
.ws1{word-spacing:-0.091815pt;}
.ws29{word-spacing:-0.076513pt;}
.ws2{word-spacing:-0.063761pt;}
.ws5c{word-spacing:-0.058182pt;}
.ws23{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.001877pt;}
.ws2f{word-spacing:0.872728pt;}
.ws22{word-spacing:16.354714pt;}
.ws4{word-spacing:20.722347pt;}
.ws62{word-spacing:20.983395pt;}
.ws28{word-spacing:21.041093pt;}
.ws60{word-spacing:21.969871pt;}
.ws3f{word-spacing:22.225473pt;}
.ws5d{word-spacing:22.283655pt;}
.ws3d{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws7{word-spacing:27.672303pt;}
.ws32{word-spacing:28.615887pt;}
.ws64{word-spacing:32.899648pt;}
.ws10{word-spacing:38.062289pt;}
.ws13{word-spacing:44.783866pt;}
.ws17{word-spacing:86.000687pt;}
.ws5e{word-spacing:382.423543pt;}
._1{margin-left:-7.253422pt;}
._d{margin-left:-5.721134pt;}
._2{margin-left:-4.774404pt;}
._20{margin-left:-3.640477pt;}
._3{margin-left:-2.479018pt;}
._7{margin-left:-1.487748pt;}
._6{width:1.328347pt;}
._0{width:2.387202pt;}
._e{width:14.952740pt;}
._19{width:15.934909pt;}
._1f{width:18.188122pt;}
._1b{width:19.177213pt;}
._17{width:20.664962pt;}
._5{width:21.727184pt;}
._1e{width:22.908511pt;}
._f{width:24.508456pt;}
._a{width:25.504256pt;}
._1c{width:26.480581pt;}
._b{width:27.650709pt;}
._15{width:28.866297pt;}
._2d{width:29.918807pt;}
._1a{width:30.836389pt;}
._18{width:32.565518pt;}
._c{width:33.664498pt;}
._13{width:34.679884pt;}
._4{width:37.277079pt;}
._10{width:39.224977pt;}
._11{width:41.192762pt;}
._9{width:42.135156pt;}
._16{width:44.668530pt;}
._22{width:45.735937pt;}
._8{width:47.607945pt;}
._12{width:49.148533pt;}
._21{width:53.344291pt;}
._1d{width:71.731200pt;}
._2c{width:80.743941pt;}
._14{width:86.077200pt;}
._27{width:165.696089pt;}
._2b{width:210.469346pt;}
._24{width:218.690444pt;}
._28{width:351.565479pt;}
._25{width:411.514476pt;}
._2a{width:418.141875pt;}
._23{width:438.474638pt;}
._26{width:517.333143pt;}
._29{width:567.651333pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y51{bottom:96.000000pt;}
.y78{bottom:99.720000pt;}
.y26{bottom:101.078667pt;}
.y50{bottom:114.065333pt;}
.y77{bottom:117.785333pt;}
.y25{bottom:121.737333pt;}
.y4f{bottom:132.130667pt;}
.y76{bottom:135.850667pt;}
.y24{bottom:139.802667pt;}
.y9a{bottom:144.618667pt;}
.y4e{bottom:150.197333pt;}
.y75{bottom:153.916000pt;}
.y23{bottom:157.868000pt;}
.y99{bottom:162.684000pt;}
.y4d{bottom:168.262667pt;}
.y74{bottom:171.981333pt;}
.y22{bottom:175.934667pt;}
.y98{bottom:180.749333pt;}
.y4c{bottom:186.328000pt;}
.y73{bottom:190.048000pt;}
.y21{bottom:194.000000pt;}
.y4b{bottom:204.393333pt;}
.y72{bottom:208.113333pt;}
.y97{bottom:209.620000pt;}
.y20{bottom:212.065333pt;}
.y96{bottom:227.685333pt;}
.y1f{bottom:230.130667pt;}
.y4a{bottom:231.853333pt;}
.y71{bottom:242.845333pt;}
.y95{bottom:245.750667pt;}
.y1e{bottom:248.196000pt;}
.yb8{bottom:260.341333pt;}
.y1d{bottom:266.261333pt;}
.y49{bottom:270.154667pt;}
.y94{bottom:274.621333pt;}
.yb7{bottom:278.406667pt;}
.y1c{bottom:284.328000pt;}
.y48{bottom:288.220000pt;}
.y93{bottom:292.686667pt;}
.y70{bottom:296.341333pt;}
.yb6{bottom:296.473333pt;}
.y1b{bottom:302.393333pt;}
.y47{bottom:306.285333pt;}
.y92{bottom:310.752000pt;}
.y6f{bottom:314.406667pt;}
.y46{bottom:324.352000pt;}
.yb5{bottom:326.493333pt;}
.y6e{bottom:332.472000pt;}
.y1a{bottom:334.862667pt;}
.y91{bottom:341.305333pt;}
.y45{bottom:342.417333pt;}
.yb4{bottom:344.558667pt;}
.y6d{bottom:350.537333pt;}
.y90{bottom:359.370667pt;}
.y44{bottom:360.482667pt;}
.y6c{bottom:368.602667pt;}
.yb3{bottom:374.580000pt;}
.y43{bottom:378.548000pt;}
.y6b{bottom:386.668000pt;}
.yb2{bottom:392.645333pt;}
.y8f{bottom:394.102667pt;}
.y19{bottom:394.953333pt;}
.y42{bottom:396.613333pt;}
.y6a{bottom:404.734667pt;}
.yb1{bottom:410.710667pt;}
.y18{bottom:413.018667pt;}
.y41{bottom:414.680000pt;}
.y69{bottom:422.800000pt;}
.y17{bottom:431.084000pt;}
.y40{bottom:432.745333pt;}
.y68{bottom:440.865333pt;}
.yb0{bottom:443.180000pt;}
.y16{bottom:449.149333pt;}
.y3f{bottom:450.810667pt;}
.y8e{bottom:464.968000pt;}
.y3e{bottom:468.876000pt;}
.y67{bottom:475.597333pt;}
.y8d{bottom:483.033333pt;}
.y15{bottom:485.281333pt;}
.y3d{bottom:501.345333pt;}
.y8c{bottom:501.630667pt;}
.y14{bottom:503.346667pt;}
.yaf{bottom:503.554667pt;}
.y8b{bottom:519.696000pt;}
.yae{bottom:521.621333pt;}
.y13{bottom:532.462667pt;}
.y66{bottom:536.365333pt;}
.y8a{bottom:537.761333pt;}
.yad{bottom:539.686667pt;}
.y12{bottom:548.402667pt;}
.y65{bottom:554.432000pt;}
.y89{bottom:555.828000pt;}
.yac{bottom:557.752000pt;}
.y3c{bottom:561.072000pt;}
.y11{bottom:564.344000pt;}
.y88{bottom:573.893333pt;}
.yab{bottom:575.817333pt;}
.y3b{bottom:579.137333pt;}
.y10{bottom:580.284000pt;}
.y64{bottom:584.452000pt;}
.y87{bottom:591.958667pt;}
.yaa{bottom:593.882667pt;}
.yf{bottom:596.224000pt;}
.y63{bottom:602.517333pt;}
.y3a{bottom:605.720000pt;}
.y86{bottom:610.556000pt;}
.ya9{bottom:611.949333pt;}
.ye{bottom:612.164000pt;}
.y62{bottom:620.584000pt;}
.y39{bottom:623.786667pt;}
.yd{bottom:628.104000pt;}
.y85{bottom:628.621333pt;}
.ya8{bottom:630.014667pt;}
.y38{bottom:641.852000pt;}
.yc{bottom:644.044000pt;}
.y84{bottom:646.686667pt;}
.y61{bottom:650.604000pt;}
.yb{bottom:659.985333pt;}
.ya7{bottom:662.484000pt;}
.y83{bottom:665.284000pt;}
.y60{bottom:668.669333pt;}
.y37{bottom:670.497333pt;}
.ya{bottom:682.418667pt;}
.y82{bottom:683.349333pt;}
.y36{bottom:697.080000pt;}
.y5f{bottom:698.690667pt;}
.y81{bottom:701.946667pt;}
.y35{bottom:715.145333pt;}
.y80{bottom:720.012000pt;}
.ya6{bottom:722.858667pt;}
.y5e{bottom:726.149333pt;}
.y34{bottom:733.212000pt;}
.y7f{bottom:738.608000pt;}
.ya5{bottom:740.924000pt;}
.y9{bottom:748.440000pt;}
.y33{bottom:751.277333pt;}
.y7e{bottom:756.674667pt;}
.ya4{bottom:758.989333pt;}
.y5d{bottom:765.100000pt;}
.y8{bottom:766.506667pt;}
.y32{bottom:769.342667pt;}
.y7d{bottom:775.270667pt;}
.ya3{bottom:777.054667pt;}
.y5c{bottom:783.165333pt;}
.y31{bottom:787.408000pt;}
.y7c{bottom:793.336000pt;}
.ya2{bottom:795.121333pt;}
.y7{bottom:798.940000pt;}
.y5b{bottom:801.230667pt;}
.y30{bottom:805.473333pt;}
.ya1{bottom:813.186667pt;}
.y6{bottom:817.537333pt;}
.y5a{bottom:819.297333pt;}
.y2f{bottom:823.540000pt;}
.y7b{bottom:825.217333pt;}
.ya0{bottom:831.252000pt;}
.y5{bottom:836.133333pt;}
.y59{bottom:837.362667pt;}
.y9f{bottom:849.317333pt;}
.y4{bottom:854.730667pt;}
.y58{bottom:855.428000pt;}
.y2e{bottom:856.009333pt;}
.y9e{bottom:867.382667pt;}
.y7a{bottom:870.025333pt;}
.y57{bottom:873.493333pt;}
.y2d{bottom:879.918667pt;}
.y9d{bottom:885.449333pt;}
.y56{bottom:891.558667pt;}
.y3{bottom:895.145333pt;}
.y9c{bottom:903.514667pt;}
.y79{bottom:904.758667pt;}
.y55{bottom:909.625333pt;}
.y9b{bottom:921.580000pt;}
.y2{bottom:924.369333pt;}
.y54{bottom:927.690667pt;}
.y2c{bottom:939.645333pt;}
.y53{bottom:945.756000pt;}
.y1{bottom:953.593333pt;}
.y2b{bottom:957.710667pt;}
.y52{bottom:963.821333pt;}
.y2a{bottom:975.776000pt;}
.y29{bottom:993.842667pt;}
.y28{bottom:1011.908000pt;}
.h8{height:14.856329pt;}
.h5{height:39.850400pt;}
.h9{height:40.378215pt;}
.h6{height:43.636400pt;}
.h4{height:45.525402pt;}
.h3{height:47.820800pt;}
.h7{height:57.384800pt;}
.h2{height:64.454458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x13{left:104.501333pt;}
.x1{left:106.300000pt;}
.xe{left:112.582667pt;}
.x11{left:113.777333pt;}
.x17{left:118.581333pt;}
.x2{left:123.150667pt;}
.x10{left:128.278667pt;}
.xc{left:132.364000pt;}
.xb{left:152.289333pt;}
.x5{left:229.265333pt;}
.x16{left:264.594667pt;}
.x12{left:266.446667pt;}
.x7{left:274.949333pt;}
.x6{left:284.866667pt;}
.x8{left:332.360000pt;}
.x4{left:349.618667pt;}
.x9{left:356.056000pt;}
.x3{left:359.690667pt;}
.xa{left:367.626667pt;}
.xf{left:393.214667pt;}
.x14{left:424.689333pt;}
.x15{left:611.238667pt;}
}




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