
    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_7c3796daaf12c521f2c6fa96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50d78e35eb8c9213810a3528.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f13e7844d736508aa27826a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_3cfad9cffe84fda98ef6c5f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_10c1050978814232ff6830b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_508eb1675013e634988d3f55.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_87f3f9fe6b601715cfebcd14.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9ba0a51f9d56d2bab8302be2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_1fb916abfb05e3be1e744c73.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_decdaa617f3261f5caa1d4b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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_705da45ddc8f52f26400f1c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_3b1a6a67918d45fe2f4370a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_958859d9749aafa74a566214.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675293;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_5ce722dd1ad8d4ec27280da2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.841797;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:fff;src:url('chunks/assets/font_18ceeba014b59278516559d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.857422;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:ff10;src:url('chunks/assets/font_ddad4125cd691dbe8ccc92ea.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_433c063b25c8ea9d824b8b25.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.903809;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:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls3{letter-spacing:-10.121472px;}
.ls31{letter-spacing:-7.741440px;}
.ls25{letter-spacing:-5.763744px;}
.ls48{letter-spacing:-5.752800px;}
.ls4{letter-spacing:-5.219712px;}
.ls3d{letter-spacing:-5.040000px;}
.ls2c{letter-spacing:-4.493664px;}
.ls20{letter-spacing:-3.960000px;}
.ls33{letter-spacing:-3.568320px;}
.ls2f{letter-spacing:-2.896992px;}
.ls17{letter-spacing:-2.401056px;}
.ls39{letter-spacing:-0.592704px;}
.ls2d{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.417312px;}
.ls34{letter-spacing:-0.399168px;}
.ls2e{letter-spacing:-0.374976px;}
.ls16{letter-spacing:-0.338688px;}
.ls24{letter-spacing:-0.320544px;}
.ls2{letter-spacing:-0.317952px;}
.ls1f{letter-spacing:-0.302400px;}
.ls30{letter-spacing:-0.266112px;}
.ls1c{letter-spacing:-0.260064px;}
.ls38{letter-spacing:-0.247968px;}
.ls19{letter-spacing:-0.241920px;}
.ls18{letter-spacing:-0.223776px;}
.ls2b{letter-spacing:-0.175392px;}
.ls1d{letter-spacing:-0.157248px;}
.ls1a{letter-spacing:-0.145152px;}
.ls1b{letter-spacing:-0.120960px;}
.lsc{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000576px;}
.ls0{letter-spacing:0.007200px;}
.ls3b{letter-spacing:0.011520px;}
.ls6{letter-spacing:0.014400px;}
.ls3a{letter-spacing:0.096768px;}
.ls42{letter-spacing:0.120960px;}
.ls47{letter-spacing:0.200448px;}
.ls21{letter-spacing:0.223200px;}
.ls46{letter-spacing:0.317376px;}
.ls43{letter-spacing:0.325728px;}
.ls49{letter-spacing:0.359136px;}
.ls23{letter-spacing:0.458640px;}
.ls11{letter-spacing:0.519840px;}
.ls26{letter-spacing:0.695664px;}
.ls12{letter-spacing:0.711360px;}
.ls2a{letter-spacing:0.719280px;}
.ls15{letter-spacing:0.720432px;}
.ls29{letter-spacing:0.722304px;}
.ls3e{letter-spacing:0.739152px;}
.ls3c{letter-spacing:0.969840px;}
.ls14{letter-spacing:0.986400px;}
.ls22{letter-spacing:1.022544px;}
.ls37{letter-spacing:1.056960px;}
.ls28{letter-spacing:1.088640px;}
.ls13{letter-spacing:1.166400px;}
.ls3f{letter-spacing:1.987200px;}
.ls35{letter-spacing:6.725088px;}
.ls10{letter-spacing:7.836480px;}
.ls36{letter-spacing:8.058384px;}
.ls32{letter-spacing:28.007568px;}
.ls27{letter-spacing:32.050512px;}
.lsa{letter-spacing:33.984000px;}
.ls9{letter-spacing:38.026944px;}
.ls45{letter-spacing:64.007424px;}
.lsb{letter-spacing:102.011328px;}
.ls40{letter-spacing:102.011472px;}
.ls8{letter-spacing:106.054272px;}
.lsf{letter-spacing:106.054416px;}
.ls7{letter-spacing:130.030848px;}
.lse{letter-spacing:130.030992px;}
.ls5{letter-spacing:154.007424px;}
.lsd{letter-spacing:154.007568px;}
.ls41{letter-spacing:194.399568px;}
.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;}
}
.ws0{word-spacing:-33.120000px;}
.ws2{word-spacing:-32.802048px;}
.ws1d{word-spacing:-21.239136px;}
.ws1e{word-spacing:-21.205728px;}
.ws1a{word-spacing:-21.197376px;}
.ws1b{word-spacing:-21.080448px;}
.ws12{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws8{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.wsa{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.wse{word-spacing:-14.859936px;}
.ws18{word-spacing:-12.960000px;}
.ws6{word-spacing:-12.718944px;}
.wsc{word-spacing:-12.602304px;}
.ws16{word-spacing:-12.374208px;}
.ws14{word-spacing:-12.277440px;}
.ws1c{word-spacing:-12.247200px;}
.ws13{word-spacing:-12.029472px;}
.ws17{word-spacing:-12.017376px;}
.ws15{word-spacing:-11.684736px;}
.wsf{word-spacing:-10.626336px;}
.ws11{word-spacing:-4.536000px;}
.ws19{word-spacing:-0.780912px;}
.wsd{word-spacing:-0.758160px;}
.wsb{word-spacing:-0.036000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.185472px;}
.ws10{word-spacing:0.468000px;}
._5{margin-left:-9.671040px;}
._16{margin-left:-7.192800px;}
._b{margin-left:-5.758272px;}
._3{margin-left:-4.017600px;}
._6{margin-left:-2.384640px;}
._2{margin-left:-1.324800px;}
._4{width:1.059840px;}
._8{width:2.649600px;}
._9{width:4.385088px;}
._a{width:5.418432px;}
._e{width:6.883200px;}
._c{width:8.592768px;}
._7{width:9.803520px;}
._13{width:10.892160px;}
._11{width:12.103200px;}
._d{width:13.923504px;}
._12{width:15.861600px;}
._f{width:16.862400px;}
._18{width:19.137600px;}
._1f{width:20.219040px;}
._19{width:21.571200px;}
._10{width:22.910400px;}
._1e{width:24.012000px;}
._1a{width:25.905600px;}
._24{width:27.028800px;}
._26{width:28.555488px;}
._21{width:29.880000px;}
._17{width:30.945600px;}
._14{width:31.968000px;}
._23{width:32.990400px;}
._25{width:34.228800px;}
._20{width:35.954208px;}
._1c{width:36.972000px;}
._15{width:38.591280px;}
._1d{width:40.968000px;}
._22{width:42.595200px;}
._1b{width:194.399568px;}
._0{width:496.822032px;}
._1{width:764.663040px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs2{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:109.440000px;}
.y7f{bottom:110.520000px;}
.y81{bottom:114.840000px;}
.y72{bottom:115.920000px;}
.y43{bottom:119.880000px;}
.y25{bottom:120.600000px;}
.yc0{bottom:125.280000px;}
.y6a{bottom:126.720000px;}
.ya4{bottom:127.800000px;}
.y80{bottom:128.520000px;}
.y7e{bottom:128.880000px;}
.y71{bottom:129.600000px;}
.y84{bottom:132.120000px;}
.y70{bottom:133.200000px;}
.y61{bottom:140.760000px;}
.y24{bottom:141.120000px;}
.y79{bottom:144.000000px;}
.y6f{bottom:145.080000px;}
.ya5{bottom:145.800000px;}
.y83{bottom:149.400000px;}
.y69{bottom:150.480000px;}
.y42{bottom:150.840000px;}
.y7d{bottom:152.640000px;}
.ybf{bottom:156.240000px;}
.y78{bottom:161.280000px;}
.y23{bottom:162.000000px;}
.y68{bottom:162.360000px;}
.y82{bottom:163.080000px;}
.y7c{bottom:164.160000px;}
.y6e{bottom:167.760000px;}
.ya3{bottom:170.280000px;}
.y60{bottom:171.720000px;}
.y77{bottom:178.560000px;}
.ya1{bottom:180.360000px;}
.y41{bottom:182.160000px;}
.y22{bottom:182.520000px;}
.y6d{bottom:184.680000px;}
.y87{bottom:185.040000px;}
.y67{bottom:185.760000px;}
.y7b{bottom:186.840000px;}
.ybe{bottom:187.200000px;}
.ya2{bottom:189.720000px;}
.y86{bottom:196.560000px;}
.y66{bottom:197.640000px;}
.y6c{bottom:198.360000px;}
.y7a{bottom:200.520000px;}
.y76{bottom:200.880000px;}
.y5f{bottom:202.680000px;}
.y21{bottom:203.400000px;}
.ya0{bottom:204.120000px;}
.y75{bottom:212.760000px;}
.y40{bottom:213.120000px;}
.y9f{bottom:217.800000px;}
.ybd{bottom:218.160000px;}
.y65{bottom:220.320000px;}
.y20{bottom:223.920000px;}
.y64{bottom:232.200000px;}
.y5e{bottom:233.640000px;}
.y85{bottom:234.000000px;}
.y74{bottom:236.520000px;}
.y3f{bottom:244.080000px;}
.y1f{bottom:244.800000px;}
.ybc{bottom:249.480000px;}
.y73{bottom:250.200000px;}
.y63{bottom:254.880000px;}
.y9e{bottom:262.800000px;}
.y5d{bottom:264.960000px;}
.y1e{bottom:265.320000px;}
.y62{bottom:268.560000px;}
.y3e{bottom:275.040000px;}
.ybb{bottom:280.440000px;}
.y1d{bottom:286.200000px;}
.y9d{bottom:294.120000px;}
.y5c{bottom:295.920000px;}
.y3d{bottom:306.360000px;}
.y1c{bottom:306.720000px;}
.yba{bottom:311.400000px;}
.y9c{bottom:325.080000px;}
.y5b{bottom:326.880000px;}
.y1b{bottom:327.600000px;}
.y3c{bottom:337.320000px;}
.yb9{bottom:342.360000px;}
.y1a{bottom:348.120000px;}
.y9b{bottom:356.040000px;}
.y5a{bottom:357.840000px;}
.y3b{bottom:368.280000px;}
.y19{bottom:369.000000px;}
.yb8{bottom:373.680000px;}
.y9a{bottom:387.000000px;}
.y59{bottom:389.160000px;}
.y18{bottom:389.520000px;}
.y3a{bottom:399.240000px;}
.yb7{bottom:404.640000px;}
.y17{bottom:410.400000px;}
.y99{bottom:418.320000px;}
.y58{bottom:420.120000px;}
.y39{bottom:430.560000px;}
.y16{bottom:430.920000px;}
.yb6{bottom:435.600000px;}
.y98{bottom:449.280000px;}
.y57{bottom:451.080000px;}
.y38{bottom:461.520000px;}
.yb5{bottom:466.560000px;}
.y15{bottom:473.400000px;}
.y97{bottom:480.240000px;}
.y56{bottom:482.040000px;}
.y37{bottom:492.480000px;}
.yb4{bottom:500.400000px;}
.y96{bottom:511.200000px;}
.y55{bottom:513.360000px;}
.y36{bottom:523.440000px;}
.y14{bottom:530.280000px;}
.yb3{bottom:533.880000px;}
.y95{bottom:542.520000px;}
.y54{bottom:544.320000px;}
.y35{bottom:554.760000px;}
.yb2{bottom:564.840000px;}
.y94{bottom:573.480000px;}
.y53{bottom:575.280000px;}
.y34{bottom:585.720000px;}
.y13{bottom:587.160000px;}
.yb1{bottom:596.160000px;}
.y93{bottom:604.440000px;}
.y52{bottom:606.240000px;}
.y33{bottom:616.680000px;}
.yb0{bottom:627.120000px;}
.y92{bottom:635.400000px;}
.y51{bottom:637.560000px;}
.y12{bottom:644.400000px;}
.y32{bottom:647.640000px;}
.yaf{bottom:658.080000px;}
.y91{bottom:666.720000px;}
.y50{bottom:668.520000px;}
.y31{bottom:678.960000px;}
.yae{bottom:689.040000px;}
.y11{bottom:689.400000px;}
.y90{bottom:697.680000px;}
.y4f{bottom:699.480000px;}
.y30{bottom:709.920000px;}
.y10{bottom:720.360000px;}
.y8f{bottom:728.640000px;}
.y4e{bottom:730.440000px;}
.y2f{bottom:740.880000px;}
.yf{bottom:751.320000px;}
.y8e{bottom:759.600000px;}
.y4d{bottom:761.760000px;}
.y2e{bottom:771.840000px;}
.ye{bottom:775.080000px;}
.yad{bottom:782.280000px;}
.y8d{bottom:790.560000px;}
.y4c{bottom:792.720000px;}
.yd{bottom:799.200000px;}
.y2d{bottom:803.160000px;}
.yac{bottom:813.240000px;}
.y8c{bottom:821.880000px;}
.yc{bottom:822.960000px;}
.y4b{bottom:823.680000px;}
.y2c{bottom:834.120000px;}
.yab{bottom:844.560000px;}
.yb{bottom:846.720000px;}
.y8b{bottom:852.840000px;}
.y4a{bottom:854.640000px;}
.y2b{bottom:865.080000px;}
.ya{bottom:870.480000px;}
.yaa{bottom:875.520000px;}
.y8a{bottom:883.800000px;}
.y49{bottom:885.960000px;}
.y9{bottom:894.240000px;}
.y2a{bottom:896.040000px;}
.ya9{bottom:906.480000px;}
.y89{bottom:914.760000px;}
.y48{bottom:916.920000px;}
.y8{bottom:918.000000px;}
.y29{bottom:927.360000px;}
.ya8{bottom:937.440000px;}
.y7{bottom:941.760000px;}
.y88{bottom:946.080000px;}
.y47{bottom:947.880000px;}
.y28{bottom:958.320000px;}
.y6{bottom:965.520000px;}
.ya7{bottom:968.760000px;}
.y46{bottom:978.840000px;}
.y5{bottom:989.280000px;}
.ya6{bottom:1002.240000px;}
.y45{bottom:1009.800000px;}
.y4{bottom:1013.400000px;}
.y27{bottom:1020.240000px;}
.y3{bottom:1038.600000px;}
.y44{bottom:1041.120000px;}
.y26{bottom:1041.480000px;}
.y2{bottom:1063.080000px;}
.y1{bottom:1091.160000px;}
.ha{height:23.994141px;}
.hd{height:27.833203px;}
.h7{height:31.467656px;}
.he{height:40.339688px;}
.hb{height:40.723594px;}
.hc{height:41.993438px;}
.h2{height:47.988281px;}
.h9{height:49.992188px;}
.h8{height:53.067656px;}
.h3{height:55.666406px;}
.h6{height:63.175781px;}
.h4{height:63.949219px;}
.hf{height:74.181094px;}
.h5{height:117.666563px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.439928px;}
.xc{left:154.439928px;}
.x4{left:179.923464px;}
.x3{left:188.173440px;}
.xd{left:208.439928px;}
.x8{left:212.712516px;}
.x5{left:231.421500px;}
.x17{left:233.639640px;}
.xe{left:235.439928px;}
.x12{left:256.437000px;}
.x10{left:261.437976px;}
.x7{left:265.165632px;}
.xf{left:266.438952px;}
.x19{left:273.110940px;}
.xa{left:279.869760px;}
.x15{left:286.739856px;}
.x13{left:289.439928px;}
.x6{left:300.346092px;}
.xb{left:309.326292px;}
.x16{left:313.739856px;}
.x11{left:316.439928px;}
.x14{left:343.439928px;}
.x1{left:344.879892px;}
.x18{left:367.349400px;}
.x9{left:446.114880px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls3{letter-spacing:-8.996864pt;}
.ls31{letter-spacing:-6.881280pt;}
.ls25{letter-spacing:-5.123328pt;}
.ls48{letter-spacing:-5.113600pt;}
.ls4{letter-spacing:-4.639744pt;}
.ls3d{letter-spacing:-4.480000pt;}
.ls2c{letter-spacing:-3.994368pt;}
.ls20{letter-spacing:-3.520000pt;}
.ls33{letter-spacing:-3.171840pt;}
.ls2f{letter-spacing:-2.575104pt;}
.ls17{letter-spacing:-2.134272pt;}
.ls39{letter-spacing:-0.526848pt;}
.ls2d{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.370944pt;}
.ls34{letter-spacing:-0.354816pt;}
.ls2e{letter-spacing:-0.333312pt;}
.ls16{letter-spacing:-0.301056pt;}
.ls24{letter-spacing:-0.284928pt;}
.ls2{letter-spacing:-0.282624pt;}
.ls1f{letter-spacing:-0.268800pt;}
.ls30{letter-spacing:-0.236544pt;}
.ls1c{letter-spacing:-0.231168pt;}
.ls38{letter-spacing:-0.220416pt;}
.ls19{letter-spacing:-0.215040pt;}
.ls18{letter-spacing:-0.198912pt;}
.ls2b{letter-spacing:-0.155904pt;}
.ls1d{letter-spacing:-0.139776pt;}
.ls1a{letter-spacing:-0.129024pt;}
.ls1b{letter-spacing:-0.107520pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000512pt;}
.ls0{letter-spacing:0.006400pt;}
.ls3b{letter-spacing:0.010240pt;}
.ls6{letter-spacing:0.012800pt;}
.ls3a{letter-spacing:0.086016pt;}
.ls42{letter-spacing:0.107520pt;}
.ls47{letter-spacing:0.178176pt;}
.ls21{letter-spacing:0.198400pt;}
.ls46{letter-spacing:0.282112pt;}
.ls43{letter-spacing:0.289536pt;}
.ls49{letter-spacing:0.319232pt;}
.ls23{letter-spacing:0.407680pt;}
.ls11{letter-spacing:0.462080pt;}
.ls26{letter-spacing:0.618368pt;}
.ls12{letter-spacing:0.632320pt;}
.ls2a{letter-spacing:0.639360pt;}
.ls15{letter-spacing:0.640384pt;}
.ls29{letter-spacing:0.642048pt;}
.ls3e{letter-spacing:0.657024pt;}
.ls3c{letter-spacing:0.862080pt;}
.ls14{letter-spacing:0.876800pt;}
.ls22{letter-spacing:0.908928pt;}
.ls37{letter-spacing:0.939520pt;}
.ls28{letter-spacing:0.967680pt;}
.ls13{letter-spacing:1.036800pt;}
.ls3f{letter-spacing:1.766400pt;}
.ls35{letter-spacing:5.977856pt;}
.ls10{letter-spacing:6.965760pt;}
.ls36{letter-spacing:7.163008pt;}
.ls32{letter-spacing:24.895616pt;}
.ls27{letter-spacing:28.489344pt;}
.lsa{letter-spacing:30.208000pt;}
.ls9{letter-spacing:33.801728pt;}
.ls45{letter-spacing:56.895488pt;}
.lsb{letter-spacing:90.676736pt;}
.ls40{letter-spacing:90.676864pt;}
.ls8{letter-spacing:94.270464pt;}
.lsf{letter-spacing:94.270592pt;}
.ls7{letter-spacing:115.582976pt;}
.lse{letter-spacing:115.583104pt;}
.ls5{letter-spacing:136.895488pt;}
.lsd{letter-spacing:136.895616pt;}
.ls41{letter-spacing:172.799616pt;}
.ws0{word-spacing:-29.440000pt;}
.ws2{word-spacing:-29.157376pt;}
.ws1d{word-spacing:-18.879232pt;}
.ws1e{word-spacing:-18.849536pt;}
.ws1a{word-spacing:-18.842112pt;}
.ws1b{word-spacing:-18.738176pt;}
.ws12{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws8{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.wsa{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.wse{word-spacing:-13.208832pt;}
.ws18{word-spacing:-11.520000pt;}
.ws6{word-spacing:-11.305728pt;}
.wsc{word-spacing:-11.202048pt;}
.ws16{word-spacing:-10.999296pt;}
.ws14{word-spacing:-10.913280pt;}
.ws1c{word-spacing:-10.886400pt;}
.ws13{word-spacing:-10.692864pt;}
.ws17{word-spacing:-10.682112pt;}
.ws15{word-spacing:-10.386432pt;}
.wsf{word-spacing:-9.445632pt;}
.ws11{word-spacing:-4.032000pt;}
.ws19{word-spacing:-0.694144pt;}
.wsd{word-spacing:-0.673920pt;}
.wsb{word-spacing:-0.032000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.164864pt;}
.ws10{word-spacing:0.416000pt;}
._5{margin-left:-8.596480pt;}
._16{margin-left:-6.393600pt;}
._b{margin-left:-5.118464pt;}
._3{margin-left:-3.571200pt;}
._6{margin-left:-2.119680pt;}
._2{margin-left:-1.177600pt;}
._4{width:0.942080pt;}
._8{width:2.355200pt;}
._9{width:3.897856pt;}
._a{width:4.816384pt;}
._e{width:6.118400pt;}
._c{width:7.638016pt;}
._7{width:8.714240pt;}
._13{width:9.681920pt;}
._11{width:10.758400pt;}
._d{width:12.376448pt;}
._12{width:14.099200pt;}
._f{width:14.988800pt;}
._18{width:17.011200pt;}
._1f{width:17.972480pt;}
._19{width:19.174400pt;}
._10{width:20.364800pt;}
._1e{width:21.344000pt;}
._1a{width:23.027200pt;}
._24{width:24.025600pt;}
._26{width:25.382656pt;}
._21{width:26.560000pt;}
._17{width:27.507200pt;}
._14{width:28.416000pt;}
._23{width:29.324800pt;}
._25{width:30.425600pt;}
._20{width:31.959296pt;}
._1c{width:32.864000pt;}
._15{width:34.303360pt;}
._1d{width:36.416000pt;}
._22{width:37.862400pt;}
._1b{width:172.799616pt;}
._0{width:441.619584pt;}
._1{width:679.700480pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs2{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:97.280000pt;}
.y7f{bottom:98.240000pt;}
.y81{bottom:102.080000pt;}
.y72{bottom:103.040000pt;}
.y43{bottom:106.560000pt;}
.y25{bottom:107.200000pt;}
.yc0{bottom:111.360000pt;}
.y6a{bottom:112.640000pt;}
.ya4{bottom:113.600000pt;}
.y80{bottom:114.240000pt;}
.y7e{bottom:114.560000pt;}
.y71{bottom:115.200000pt;}
.y84{bottom:117.440000pt;}
.y70{bottom:118.400000pt;}
.y61{bottom:125.120000pt;}
.y24{bottom:125.440000pt;}
.y79{bottom:128.000000pt;}
.y6f{bottom:128.960000pt;}
.ya5{bottom:129.600000pt;}
.y83{bottom:132.800000pt;}
.y69{bottom:133.760000pt;}
.y42{bottom:134.080000pt;}
.y7d{bottom:135.680000pt;}
.ybf{bottom:138.880000pt;}
.y78{bottom:143.360000pt;}
.y23{bottom:144.000000pt;}
.y68{bottom:144.320000pt;}
.y82{bottom:144.960000pt;}
.y7c{bottom:145.920000pt;}
.y6e{bottom:149.120000pt;}
.ya3{bottom:151.360000pt;}
.y60{bottom:152.640000pt;}
.y77{bottom:158.720000pt;}
.ya1{bottom:160.320000pt;}
.y41{bottom:161.920000pt;}
.y22{bottom:162.240000pt;}
.y6d{bottom:164.160000pt;}
.y87{bottom:164.480000pt;}
.y67{bottom:165.120000pt;}
.y7b{bottom:166.080000pt;}
.ybe{bottom:166.400000pt;}
.ya2{bottom:168.640000pt;}
.y86{bottom:174.720000pt;}
.y66{bottom:175.680000pt;}
.y6c{bottom:176.320000pt;}
.y7a{bottom:178.240000pt;}
.y76{bottom:178.560000pt;}
.y5f{bottom:180.160000pt;}
.y21{bottom:180.800000pt;}
.ya0{bottom:181.440000pt;}
.y75{bottom:189.120000pt;}
.y40{bottom:189.440000pt;}
.y9f{bottom:193.600000pt;}
.ybd{bottom:193.920000pt;}
.y65{bottom:195.840000pt;}
.y20{bottom:199.040000pt;}
.y64{bottom:206.400000pt;}
.y5e{bottom:207.680000pt;}
.y85{bottom:208.000000pt;}
.y74{bottom:210.240000pt;}
.y3f{bottom:216.960000pt;}
.y1f{bottom:217.600000pt;}
.ybc{bottom:221.760000pt;}
.y73{bottom:222.400000pt;}
.y63{bottom:226.560000pt;}
.y9e{bottom:233.600000pt;}
.y5d{bottom:235.520000pt;}
.y1e{bottom:235.840000pt;}
.y62{bottom:238.720000pt;}
.y3e{bottom:244.480000pt;}
.ybb{bottom:249.280000pt;}
.y1d{bottom:254.400000pt;}
.y9d{bottom:261.440000pt;}
.y5c{bottom:263.040000pt;}
.y3d{bottom:272.320000pt;}
.y1c{bottom:272.640000pt;}
.yba{bottom:276.800000pt;}
.y9c{bottom:288.960000pt;}
.y5b{bottom:290.560000pt;}
.y1b{bottom:291.200000pt;}
.y3c{bottom:299.840000pt;}
.yb9{bottom:304.320000pt;}
.y1a{bottom:309.440000pt;}
.y9b{bottom:316.480000pt;}
.y5a{bottom:318.080000pt;}
.y3b{bottom:327.360000pt;}
.y19{bottom:328.000000pt;}
.yb8{bottom:332.160000pt;}
.y9a{bottom:344.000000pt;}
.y59{bottom:345.920000pt;}
.y18{bottom:346.240000pt;}
.y3a{bottom:354.880000pt;}
.yb7{bottom:359.680000pt;}
.y17{bottom:364.800000pt;}
.y99{bottom:371.840000pt;}
.y58{bottom:373.440000pt;}
.y39{bottom:382.720000pt;}
.y16{bottom:383.040000pt;}
.yb6{bottom:387.200000pt;}
.y98{bottom:399.360000pt;}
.y57{bottom:400.960000pt;}
.y38{bottom:410.240000pt;}
.yb5{bottom:414.720000pt;}
.y15{bottom:420.800000pt;}
.y97{bottom:426.880000pt;}
.y56{bottom:428.480000pt;}
.y37{bottom:437.760000pt;}
.yb4{bottom:444.800000pt;}
.y96{bottom:454.400000pt;}
.y55{bottom:456.320000pt;}
.y36{bottom:465.280000pt;}
.y14{bottom:471.360000pt;}
.yb3{bottom:474.560000pt;}
.y95{bottom:482.240000pt;}
.y54{bottom:483.840000pt;}
.y35{bottom:493.120000pt;}
.yb2{bottom:502.080000pt;}
.y94{bottom:509.760000pt;}
.y53{bottom:511.360000pt;}
.y34{bottom:520.640000pt;}
.y13{bottom:521.920000pt;}
.yb1{bottom:529.920000pt;}
.y93{bottom:537.280000pt;}
.y52{bottom:538.880000pt;}
.y33{bottom:548.160000pt;}
.yb0{bottom:557.440000pt;}
.y92{bottom:564.800000pt;}
.y51{bottom:566.720000pt;}
.y12{bottom:572.800000pt;}
.y32{bottom:575.680000pt;}
.yaf{bottom:584.960000pt;}
.y91{bottom:592.640000pt;}
.y50{bottom:594.240000pt;}
.y31{bottom:603.520000pt;}
.yae{bottom:612.480000pt;}
.y11{bottom:612.800000pt;}
.y90{bottom:620.160000pt;}
.y4f{bottom:621.760000pt;}
.y30{bottom:631.040000pt;}
.y10{bottom:640.320000pt;}
.y8f{bottom:647.680000pt;}
.y4e{bottom:649.280000pt;}
.y2f{bottom:658.560000pt;}
.yf{bottom:667.840000pt;}
.y8e{bottom:675.200000pt;}
.y4d{bottom:677.120000pt;}
.y2e{bottom:686.080000pt;}
.ye{bottom:688.960000pt;}
.yad{bottom:695.360000pt;}
.y8d{bottom:702.720000pt;}
.y4c{bottom:704.640000pt;}
.yd{bottom:710.400000pt;}
.y2d{bottom:713.920000pt;}
.yac{bottom:722.880000pt;}
.y8c{bottom:730.560000pt;}
.yc{bottom:731.520000pt;}
.y4b{bottom:732.160000pt;}
.y2c{bottom:741.440000pt;}
.yab{bottom:750.720000pt;}
.yb{bottom:752.640000pt;}
.y8b{bottom:758.080000pt;}
.y4a{bottom:759.680000pt;}
.y2b{bottom:768.960000pt;}
.ya{bottom:773.760000pt;}
.yaa{bottom:778.240000pt;}
.y8a{bottom:785.600000pt;}
.y49{bottom:787.520000pt;}
.y9{bottom:794.880000pt;}
.y2a{bottom:796.480000pt;}
.ya9{bottom:805.760000pt;}
.y89{bottom:813.120000pt;}
.y48{bottom:815.040000pt;}
.y8{bottom:816.000000pt;}
.y29{bottom:824.320000pt;}
.ya8{bottom:833.280000pt;}
.y7{bottom:837.120000pt;}
.y88{bottom:840.960000pt;}
.y47{bottom:842.560000pt;}
.y28{bottom:851.840000pt;}
.y6{bottom:858.240000pt;}
.ya7{bottom:861.120000pt;}
.y46{bottom:870.080000pt;}
.y5{bottom:879.360000pt;}
.ya6{bottom:890.880000pt;}
.y45{bottom:897.600000pt;}
.y4{bottom:900.800000pt;}
.y27{bottom:906.880000pt;}
.y3{bottom:923.200000pt;}
.y44{bottom:925.440000pt;}
.y26{bottom:925.760000pt;}
.y2{bottom:944.960000pt;}
.y1{bottom:969.920000pt;}
.ha{height:21.328125pt;}
.hd{height:24.740625pt;}
.h7{height:27.971250pt;}
.he{height:35.857500pt;}
.hb{height:36.198750pt;}
.hc{height:37.327500pt;}
.h2{height:42.656250pt;}
.h9{height:44.437500pt;}
.h8{height:47.171250pt;}
.h3{height:49.481250pt;}
.h6{height:56.156250pt;}
.h4{height:56.843750pt;}
.hf{height:65.938750pt;}
.h5{height:104.592500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.279936pt;}
.xc{left:137.279936pt;}
.x4{left:159.931968pt;}
.x3{left:167.265280pt;}
.xd{left:185.279936pt;}
.x8{left:189.077792pt;}
.x5{left:205.708000pt;}
.x17{left:207.679680pt;}
.xe{left:209.279936pt;}
.x12{left:227.944000pt;}
.x10{left:232.389312pt;}
.x7{left:235.702784pt;}
.xf{left:236.834624pt;}
.x19{left:242.765280pt;}
.xa{left:248.773120pt;}
.x15{left:254.879872pt;}
.x13{left:257.279936pt;}
.x6{left:266.974304pt;}
.xb{left:274.956704pt;}
.x16{left:278.879872pt;}
.x11{left:281.279936pt;}
.x14{left:305.279936pt;}
.x1{left:306.559904pt;}
.x18{left:326.532800pt;}
.x9{left:396.546560pt;}
}




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