
    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_16c6f7e8b1fe1409f1b80c67.woff')format("woff");}.ff1{font-family:ff1;line-height:0.812500;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_008bf99fe68e31c32e00b4fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.753418;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_c4881f42a9bdd53c060c4ee1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_04d9977122906c877bdaeacc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_43f1df724dde8bf7727aede3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_500be235649cd1277b6e9d65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_b8a61c38182bd186fd527fd8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_819cf18b7eaba40eca9e445c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_38c2bc6a358d6d8d2461b650.woff')format("woff");}.ffa{font-family:ffa;line-height:0.886719;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.753906;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_ad4b8f8f3fe0e9b0315a4c5b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.041992;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_69434a73c199326cc3b09c60.woff')format("woff");}.ffd{font-family:ffd;line-height:0.812500;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_807baf81129fa04be71c6e63.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m2{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);}
.vf{vertical-align:-39.060000px;}
.vb{vertical-align:-10.080000px;}
.v1{vertical-align:-8.640000px;}
.v3{vertical-align:-7.589390px;}
.v9{vertical-align:-5.760000px;}
.v4{vertical-align:-4.553634px;}
.v6{vertical-align:-2.880000px;}
.vd{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v5{vertical-align:4.553634px;}
.va{vertical-align:5.760000px;}
.v8{vertical-align:7.200000px;}
.v2{vertical-align:8.640000px;}
.vc{vertical-align:10.080000px;}
.ve{vertical-align:38.880000px;}
.ls31{letter-spacing:-13.980000px;}
.ls44{letter-spacing:-1.740000px;}
.ls3c{letter-spacing:-1.338000px;}
.ls21{letter-spacing:-1.164000px;}
.ls43{letter-spacing:-1.092000px;}
.ls2b{letter-spacing:-0.954000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls4e{letter-spacing:-0.594600px;}
.ls3d{letter-spacing:-0.554400px;}
.ls49{letter-spacing:-0.548400px;}
.ls1f{letter-spacing:-0.526800px;}
.ls4c{letter-spacing:-0.498000px;}
.ls1c{letter-spacing:-0.420600px;}
.ls2e{letter-spacing:-0.411600px;}
.ls1e{letter-spacing:-0.387600px;}
.ls48{letter-spacing:-0.298200px;}
.ls46{letter-spacing:-0.129600px;}
.ls22{letter-spacing:-0.069000px;}
.lsc{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.073200px;}
.lsd{letter-spacing:0.078000px;}
.ls4d{letter-spacing:0.094800px;}
.ls1b{letter-spacing:0.099360px;}
.ls7{letter-spacing:0.099600px;}
.ls1{letter-spacing:0.104734px;}
.lse{letter-spacing:0.104987px;}
.ls34{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.133800px;}
.ls20{letter-spacing:0.148200px;}
.ls13{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.243360px;}
.ls2f{letter-spacing:0.273600px;}
.lsb{letter-spacing:0.348480px;}
.ls16{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.488400px;}
.ls2{letter-spacing:0.542880px;}
.ls2d{letter-spacing:0.574800px;}
.ls3b{letter-spacing:0.600000px;}
.ls38{letter-spacing:0.633600px;}
.ls29{letter-spacing:0.684000px;}
.ls1d{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.770400px;}
.ls19{letter-spacing:0.862560px;}
.ls11{letter-spacing:1.028160px;}
.ls5{letter-spacing:1.052640px;}
.ls3{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.539360px;}
.ls17{letter-spacing:1.713600px;}
.ls15{letter-spacing:1.788480px;}
.ls4b{letter-spacing:1.926000px;}
.ls50{letter-spacing:1.981440px;}
.ls3e{letter-spacing:2.073600px;}
.ls41{letter-spacing:2.121120px;}
.ls28{letter-spacing:2.128320px;}
.ls24{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.292480px;}
.ls23{letter-spacing:2.880000px;}
.ls30{letter-spacing:2.982000px;}
.ls18{letter-spacing:4.320000px;}
.ls3a{letter-spacing:4.419360px;}
.lsa{letter-spacing:7.299360px;}
.ls4{letter-spacing:8.640000px;}
.ls26{letter-spacing:11.520000px;}
.ls27{letter-spacing:11.619360px;}
.ls6{letter-spacing:12.960000px;}
.ls3f{letter-spacing:13.059360px;}
.ls1a{letter-spacing:14.400000px;}
.ls36{letter-spacing:14.499360px;}
.ls40{letter-spacing:16.059360px;}
.ls35{letter-spacing:17.379360px;}
.ls4a{letter-spacing:20.698560px;}
.ls25{letter-spacing:26.019360px;}
.ls51{letter-spacing:28.899360px;}
.ls12{letter-spacing:30.339360px;}
.ls42{letter-spacing:33.219360px;}
.ls45{letter-spacing:37.560000px;}
.ls39{letter-spacing:47.619360px;}
.ls8{letter-spacing:67.779360px;}
.ls33{letter-spacing:67.791360px;}
.ls10{letter-spacing:86.511360px;}
.ls47{letter-spacing:141.339360px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws3{word-spacing:-72.000000px;}
.wsa{word-spacing:-23.549640px;}
.ws4{word-spacing:-23.067360px;}
.ws1e{word-spacing:-20.546640px;}
.ws5{word-spacing:-19.627682px;}
.wsb{word-spacing:-19.340640px;}
.wsf{word-spacing:-19.304640px;}
.ws13{word-spacing:-19.195440px;}
.ws10{word-spacing:-19.109040px;}
.ws0{word-spacing:-19.010880px;}
.ws14{word-spacing:-18.894240px;}
.wsd{word-spacing:-18.768840px;}
.ws16{word-spacing:-18.754440px;}
.ws20{word-spacing:-18.715440px;}
.ws8{word-spacing:-18.693840px;}
.ws6{word-spacing:-18.620640px;}
.ws1b{word-spacing:-18.491040px;}
.ws1c{word-spacing:-18.322440px;}
.ws17{word-spacing:-18.209040px;}
.ws1f{word-spacing:-18.122640px;}
.wsc{word-spacing:-18.093840px;}
.ws1d{word-spacing:-18.072240px;}
.ws19{word-spacing:-18.066240px;}
.ws12{word-spacing:-17.756640px;}
.ws11{word-spacing:-17.666640px;}
.wse{word-spacing:-17.456640px;}
.ws1a{word-spacing:-16.880640px;}
.ws2{word-spacing:-14.650800px;}
.ws18{word-spacing:-11.116800px;}
.ws7{word-spacing:-0.096480px;}
.ws9{word-spacing:0.000000px;}
.ws15{word-spacing:23.728320px;}
._51{margin-left:-21.970080px;}
._1a{margin-left:-13.991040px;}
._23{margin-left:-12.551040px;}
._45{margin-left:-11.088480px;}
._52{margin-left:-10.070880px;}
._a{margin-left:-8.909280px;}
._21{margin-left:-5.209920px;}
._33{margin-left:-4.035360px;}
._15{margin-left:-2.924160px;}
._2{margin-left:-1.722240px;}
._0{width:1.031040px;}
._1{width:2.589120px;}
._5{width:3.664800px;}
._e{width:5.243040px;}
._39{width:6.276960px;}
._d{width:7.307040px;}
._13{width:8.417760px;}
._4{width:9.744480px;}
._3{width:10.887840px;}
._31{width:12.026880px;}
._20{width:13.065120px;}
._1b{width:14.400000px;}
._25{width:15.414720px;}
._14{width:17.229600px;}
._8{width:20.451360px;}
._f{width:22.561920px;}
._2f{width:24.328800px;}
._2a{width:25.998720px;}
._26{width:27.845280px;}
._29{width:29.151360px;}
._1e{width:30.816000px;}
._1f{width:32.050080px;}
._2e{width:33.916320px;}
._22{width:35.506080px;}
._12{width:37.024320px;}
._6{width:38.206080px;}
._7{width:39.671520px;}
._2b{width:40.838880px;}
._2d{width:42.394560px;}
._38{width:44.574000px;}
._37{width:46.393440px;}
._c{width:47.592000px;}
._b{width:49.432320px;}
._9{width:51.137280px;}
._34{width:52.236000px;}
._16{width:53.238240px;}
._40{width:55.029600px;}
._41{width:56.315040px;}
._30{width:57.454560px;}
._50{width:58.543200px;}
._18{width:59.847360px;}
._17{width:61.443360px;}
._42{width:63.012960px;}
._36{width:64.081440px;}
._24{width:65.672880px;}
._48{width:67.320480px;}
._11{width:68.523360px;}
._10{width:70.030080px;}
._3a{width:71.750400px;}
._46{width:73.549920px;}
._19{width:75.749280px;}
._1c{width:77.022720px;}
._1d{width:78.232320px;}
._3f{width:79.241760px;}
._3e{width:81.236160px;}
._49{width:82.336800px;}
._32{width:88.561440px;}
._35{width:90.219360px;}
._3b{width:92.293920px;}
._3c{width:96.179040px;}
._3d{width:97.643040px;}
._44{width:101.386080px;}
._43{width:102.477600px;}
._4d{width:104.264160px;}
._2c{width:106.513920px;}
._4f{width:117.674880px;}
._4e{width:119.882880px;}
._4c{width:140.764320px;}
._4b{width:143.886240px;}
._4a{width:146.102880px;}
._27{width:190.837920px;}
._28{width:197.745600px;}
._47{width:223.760160px;}
._53{width:846.456000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs5{font-size:18.720000px;}
.fs7{font-size:24.480000px;}
.fsc{font-size:41.760000px;}
.fse{font-size:57.600000px;}
.fsa{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs2{font-size:77.760000px;}
.fsd{font-size:81.965417px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:88.036930px;}
.fs8{font-size:96.480000px;}
.fs9{font-size:101.697833px;}
.fs6{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.yd{bottom:1.080000px;}
.y19{bottom:1.425000px;}
.y11{bottom:1.440000px;}
.y4{bottom:3.600000px;}
.y9{bottom:6.840000px;}
.yb{bottom:7.560000px;}
.y7{bottom:8.280000px;}
.yf{bottom:20.520000px;}
.y16{bottom:32.745000px;}
.y6{bottom:33.150000px;}
.y2{bottom:58.320000px;}
.y15{bottom:65.175000px;}
.y1{bottom:85.716000px;}
.y32{bottom:92.196000px;}
.y14{bottom:101.175000px;}
.y2f{bottom:129.636000px;}
.y13{bottom:137.175000px;}
.y4f{bottom:139.716000px;}
.y2e{bottom:165.630000px;}
.y4e{bottom:175.710000px;}
.y2d{bottom:201.675000px;}
.y4d{bottom:211.755000px;}
.y2c{bottom:237.675000px;}
.y4c{bottom:247.755000px;}
.y2b{bottom:273.675000px;}
.y4b{bottom:283.755000px;}
.y2a{bottom:309.315000px;}
.y4a{bottom:319.755000px;}
.y29{bottom:345.345000px;}
.y49{bottom:355.785000px;}
.y28{bottom:381.345000px;}
.y48{bottom:391.785000px;}
.y27{bottom:417.345000px;}
.y47{bottom:427.785000px;}
.y26{bottom:453.390000px;}
.y46{bottom:463.470000px;}
.y25{bottom:489.390000px;}
.y45{bottom:499.470000px;}
.y24{bottom:525.390000px;}
.y44{bottom:535.470000px;}
.y23{bottom:561.390000px;}
.y43{bottom:571.470000px;}
.y22{bottom:597.420000px;}
.y42{bottom:607.500000px;}
.y21{bottom:633.420000px;}
.y41{bottom:643.500000px;}
.y20{bottom:669.420000px;}
.y40{bottom:679.500000px;}
.y50{bottom:682.740000px;}
.y1f{bottom:705.090000px;}
.y3f{bottom:715.530000px;}
.y1e{bottom:741.090000px;}
.y3e{bottom:751.530000px;}
.y1d{bottom:777.090000px;}
.y3d{bottom:787.530000px;}
.y1c{bottom:813.090000px;}
.y3c{bottom:823.530000px;}
.y1b{bottom:849.135000px;}
.y3b{bottom:859.215000px;}
.y1a{bottom:872.175000px;}
.y18{bottom:880.830000px;}
.y12{bottom:888.030000px;}
.y17{bottom:892.107191px;}
.y3a{bottom:895.215000px;}
.y39{bottom:931.215000px;}
.y38{bottom:967.245000px;}
.y37{bottom:1003.245000px;}
.y36{bottom:1039.245000px;}
.y10{bottom:1044.645000px;}
.ye{bottom:1051.485000px;}
.y35{bottom:1075.245000px;}
.yc{bottom:1096.530000px;}
.ya{bottom:1101.570000px;}
.y34{bottom:1111.290000px;}
.y3{bottom:1126.050000px;}
.y33{bottom:1147.290000px;}
.y8{bottom:1148.370000px;}
.y31{bottom:1170.330000px;}
.y5{bottom:1176.450000px;}
.y30{bottom:1189.050000px;}
.hd{height:5.025000px;}
.h11{height:6.825000px;}
.h1a{height:7.185000px;}
.h1b{height:18.120938px;}
.he{height:19.241210px;}
.h9{height:22.305000px;}
.hb{height:24.465000px;}
.h12{height:24.671250px;}
.h8{height:28.065000px;}
.h1c{height:30.585938px;}
.hf{height:45.030000px;}
.h16{height:45.714375px;}
.h1d{height:51.207188px;}
.h6{height:52.950000px;}
.h17{height:55.586356px;}
.ha{height:56.084062px;}
.h1e{height:60.033265px;}
.h2{height:60.181495px;}
.hc{height:60.960938px;}
.h3{height:61.742812px;}
.h18{height:65.953125px;}
.h22{height:70.628906px;}
.h14{height:70.664062px;}
.h7{height:70.714687px;}
.h19{height:72.562500px;}
.h15{height:74.485717px;}
.h5{height:79.925027px;}
.h1f{height:81.067500px;}
.h20{height:81.247500px;}
.h10{height:87.539062px;}
.h21{height:99.166237px;}
.h4{height:103.350000px;}
.h13{height:156.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.266500px;}
.x6{left:11.145000px;}
.x10{left:19.080000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x3{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:91.095000px;}
.x12{left:92.905500px;}
.xd{left:96.150000px;}
.x1{left:108.036000px;}
.x4{left:110.185500px;}
.x20{left:121.716000px;}
.x15{left:141.895500px;}
.x21{left:148.752000px;}
.x1b{left:162.075000px;}
.x5{left:168.930000px;}
.x7{left:208.860000px;}
.x16{left:219.700500px;}
.x14{left:276.940500px;}
.x13{left:280.180500px;}
.x19{left:325.331131px;}
.x11{left:335.650500px;}
.x17{left:368.410500px;}
.xa{left:445.860000px;}
.x18{left:455.200500px;}
.x1c{left:473.580000px;}
.x22{left:487.260000px;}
.x1e{left:489.090000px;}
.x23{left:514.290000px;}
.x1f{left:516.090000px;}
.x1d{left:527.610000px;}
.x8{left:722.445000px;}
.x2{left:749.445000px;}
@media print{
.vf{vertical-align:-34.720000pt;}
.vb{vertical-align:-8.960000pt;}
.v1{vertical-align:-7.680000pt;}
.v3{vertical-align:-6.746125pt;}
.v9{vertical-align:-5.120000pt;}
.v4{vertical-align:-4.047675pt;}
.v6{vertical-align:-2.560000pt;}
.vd{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v5{vertical-align:4.047675pt;}
.va{vertical-align:5.120000pt;}
.v8{vertical-align:6.400000pt;}
.v2{vertical-align:7.680000pt;}
.vc{vertical-align:8.960000pt;}
.ve{vertical-align:34.560000pt;}
.ls31{letter-spacing:-12.426667pt;}
.ls44{letter-spacing:-1.546667pt;}
.ls3c{letter-spacing:-1.189333pt;}
.ls21{letter-spacing:-1.034667pt;}
.ls43{letter-spacing:-0.970667pt;}
.ls2b{letter-spacing:-0.848000pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls4e{letter-spacing:-0.528533pt;}
.ls3d{letter-spacing:-0.492800pt;}
.ls49{letter-spacing:-0.487467pt;}
.ls1f{letter-spacing:-0.468267pt;}
.ls4c{letter-spacing:-0.442667pt;}
.ls1c{letter-spacing:-0.373867pt;}
.ls2e{letter-spacing:-0.365867pt;}
.ls1e{letter-spacing:-0.344533pt;}
.ls48{letter-spacing:-0.265067pt;}
.ls46{letter-spacing:-0.115200pt;}
.ls22{letter-spacing:-0.061333pt;}
.lsc{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.065067pt;}
.lsd{letter-spacing:0.069333pt;}
.ls4d{letter-spacing:0.084267pt;}
.ls1b{letter-spacing:0.088320pt;}
.ls7{letter-spacing:0.088533pt;}
.ls1{letter-spacing:0.093097pt;}
.lse{letter-spacing:0.093321pt;}
.ls34{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.118933pt;}
.ls20{letter-spacing:0.131733pt;}
.ls13{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.216320pt;}
.ls2f{letter-spacing:0.243200pt;}
.lsb{letter-spacing:0.309760pt;}
.ls16{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.434133pt;}
.ls2{letter-spacing:0.482560pt;}
.ls2d{letter-spacing:0.510933pt;}
.ls3b{letter-spacing:0.533333pt;}
.ls38{letter-spacing:0.563200pt;}
.ls29{letter-spacing:0.608000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.684800pt;}
.ls19{letter-spacing:0.766720pt;}
.ls11{letter-spacing:0.913920pt;}
.ls5{letter-spacing:0.935680pt;}
.ls3{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.368320pt;}
.ls17{letter-spacing:1.523200pt;}
.ls15{letter-spacing:1.589760pt;}
.ls4b{letter-spacing:1.712000pt;}
.ls50{letter-spacing:1.761280pt;}
.ls3e{letter-spacing:1.843200pt;}
.ls41{letter-spacing:1.885440pt;}
.ls28{letter-spacing:1.891840pt;}
.ls24{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.037760pt;}
.ls23{letter-spacing:2.560000pt;}
.ls30{letter-spacing:2.650667pt;}
.ls18{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:3.928320pt;}
.lsa{letter-spacing:6.488320pt;}
.ls4{letter-spacing:7.680000pt;}
.ls26{letter-spacing:10.240000pt;}
.ls27{letter-spacing:10.328320pt;}
.ls6{letter-spacing:11.520000pt;}
.ls3f{letter-spacing:11.608320pt;}
.ls1a{letter-spacing:12.800000pt;}
.ls36{letter-spacing:12.888320pt;}
.ls40{letter-spacing:14.274987pt;}
.ls35{letter-spacing:15.448320pt;}
.ls4a{letter-spacing:18.398720pt;}
.ls25{letter-spacing:23.128320pt;}
.ls51{letter-spacing:25.688320pt;}
.ls12{letter-spacing:26.968320pt;}
.ls42{letter-spacing:29.528320pt;}
.ls45{letter-spacing:33.386667pt;}
.ls39{letter-spacing:42.328320pt;}
.ls8{letter-spacing:60.248320pt;}
.ls33{letter-spacing:60.258987pt;}
.ls10{letter-spacing:76.898987pt;}
.ls47{letter-spacing:125.634987pt;}
.ws1{word-spacing:-74.240000pt;}
.ws3{word-spacing:-64.000000pt;}
.wsa{word-spacing:-20.933013pt;}
.ws4{word-spacing:-20.504320pt;}
.ws1e{word-spacing:-18.263680pt;}
.ws5{word-spacing:-17.446828pt;}
.wsb{word-spacing:-17.191680pt;}
.wsf{word-spacing:-17.159680pt;}
.ws13{word-spacing:-17.062613pt;}
.ws10{word-spacing:-16.985813pt;}
.ws0{word-spacing:-16.898560pt;}
.ws14{word-spacing:-16.794880pt;}
.wsd{word-spacing:-16.683413pt;}
.ws16{word-spacing:-16.670613pt;}
.ws20{word-spacing:-16.635947pt;}
.ws8{word-spacing:-16.616747pt;}
.ws6{word-spacing:-16.551680pt;}
.ws1b{word-spacing:-16.436480pt;}
.ws1c{word-spacing:-16.286613pt;}
.ws17{word-spacing:-16.185813pt;}
.ws1f{word-spacing:-16.109013pt;}
.wsc{word-spacing:-16.083413pt;}
.ws1d{word-spacing:-16.064213pt;}
.ws19{word-spacing:-16.058880pt;}
.ws12{word-spacing:-15.783680pt;}
.ws11{word-spacing:-15.703680pt;}
.wse{word-spacing:-15.517013pt;}
.ws1a{word-spacing:-15.005013pt;}
.ws2{word-spacing:-13.022933pt;}
.ws18{word-spacing:-9.881600pt;}
.ws7{word-spacing:-0.085760pt;}
.ws9{word-spacing:0.000000pt;}
.ws15{word-spacing:21.091840pt;}
._51{margin-left:-19.528960pt;}
._1a{margin-left:-12.436480pt;}
._23{margin-left:-11.156480pt;}
._45{margin-left:-9.856427pt;}
._52{margin-left:-8.951893pt;}
._a{margin-left:-7.919360pt;}
._21{margin-left:-4.631040pt;}
._33{margin-left:-3.586987pt;}
._15{margin-left:-2.599253pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.916480pt;}
._1{width:2.301440pt;}
._5{width:3.257600pt;}
._e{width:4.660480pt;}
._39{width:5.579520pt;}
._d{width:6.495147pt;}
._13{width:7.482453pt;}
._4{width:8.661760pt;}
._3{width:9.678080pt;}
._31{width:10.690560pt;}
._20{width:11.613440pt;}
._1b{width:12.800000pt;}
._25{width:13.701973pt;}
._14{width:15.315200pt;}
._8{width:18.178987pt;}
._f{width:20.055040pt;}
._2f{width:21.625600pt;}
._2a{width:23.109973pt;}
._26{width:24.751360pt;}
._29{width:25.912320pt;}
._1e{width:27.392000pt;}
._1f{width:28.488960pt;}
._2e{width:30.147840pt;}
._22{width:31.560960pt;}
._12{width:32.910507pt;}
._6{width:33.960960pt;}
._7{width:35.263573pt;}
._2b{width:36.301227pt;}
._2d{width:37.684053pt;}
._38{width:39.621333pt;}
._37{width:41.238613pt;}
._c{width:42.304000pt;}
._b{width:43.939840pt;}
._9{width:45.455360pt;}
._34{width:46.432000pt;}
._16{width:47.322880pt;}
._40{width:48.915200pt;}
._41{width:50.057813pt;}
._30{width:51.070720pt;}
._50{width:52.038400pt;}
._18{width:53.197653pt;}
._17{width:54.616320pt;}
._42{width:56.011520pt;}
._36{width:56.961280pt;}
._24{width:58.375893pt;}
._48{width:59.840427pt;}
._11{width:60.909653pt;}
._10{width:62.248960pt;}
._3a{width:63.778133pt;}
._46{width:65.377707pt;}
._19{width:67.332693pt;}
._1c{width:68.464640pt;}
._1d{width:69.539840pt;}
._3f{width:70.437120pt;}
._3e{width:72.209920pt;}
._49{width:73.188267pt;}
._32{width:78.721280pt;}
._35{width:80.194987pt;}
._3b{width:82.039040pt;}
._3c{width:85.492480pt;}
._3d{width:86.793813pt;}
._44{width:90.120960pt;}
._43{width:91.091200pt;}
._4d{width:92.679253pt;}
._2c{width:94.679040pt;}
._4f{width:104.599893pt;}
._4e{width:106.562560pt;}
._4c{width:125.123840pt;}
._4b{width:127.898880pt;}
._4a{width:129.869227pt;}
._27{width:169.633707pt;}
._28{width:175.773867pt;}
._47{width:198.897920pt;}
._53{width:752.405333pt;}
.fs5{font-size:16.640000pt;}
.fs7{font-size:21.760000pt;}
.fsc{font-size:37.120000pt;}
.fse{font-size:51.200000pt;}
.fsa{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs2{font-size:69.120000pt;}
.fsd{font-size:72.858149pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:78.255049pt;}
.fs8{font-size:85.760000pt;}
.fs9{font-size:90.398073pt;}
.fs6{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.960000pt;}
.y19{bottom:1.266667pt;}
.y11{bottom:1.280000pt;}
.y4{bottom:3.200000pt;}
.y9{bottom:6.080000pt;}
.yb{bottom:6.720000pt;}
.y7{bottom:7.360000pt;}
.yf{bottom:18.240000pt;}
.y16{bottom:29.106667pt;}
.y6{bottom:29.466667pt;}
.y2{bottom:51.840000pt;}
.y15{bottom:57.933333pt;}
.y1{bottom:76.192000pt;}
.y32{bottom:81.952000pt;}
.y14{bottom:89.933333pt;}
.y2f{bottom:115.232000pt;}
.y13{bottom:121.933333pt;}
.y4f{bottom:124.192000pt;}
.y2e{bottom:147.226667pt;}
.y4e{bottom:156.186667pt;}
.y2d{bottom:179.266667pt;}
.y4d{bottom:188.226667pt;}
.y2c{bottom:211.266667pt;}
.y4c{bottom:220.226667pt;}
.y2b{bottom:243.266667pt;}
.y4b{bottom:252.226667pt;}
.y2a{bottom:274.946667pt;}
.y4a{bottom:284.226667pt;}
.y29{bottom:306.973333pt;}
.y49{bottom:316.253333pt;}
.y28{bottom:338.973333pt;}
.y48{bottom:348.253333pt;}
.y27{bottom:370.973333pt;}
.y47{bottom:380.253333pt;}
.y26{bottom:403.013333pt;}
.y46{bottom:411.973333pt;}
.y25{bottom:435.013333pt;}
.y45{bottom:443.973333pt;}
.y24{bottom:467.013333pt;}
.y44{bottom:475.973333pt;}
.y23{bottom:499.013333pt;}
.y43{bottom:507.973333pt;}
.y22{bottom:531.040000pt;}
.y42{bottom:540.000000pt;}
.y21{bottom:563.040000pt;}
.y41{bottom:572.000000pt;}
.y20{bottom:595.040000pt;}
.y40{bottom:604.000000pt;}
.y50{bottom:606.880000pt;}
.y1f{bottom:626.746667pt;}
.y3f{bottom:636.026667pt;}
.y1e{bottom:658.746667pt;}
.y3e{bottom:668.026667pt;}
.y1d{bottom:690.746667pt;}
.y3d{bottom:700.026667pt;}
.y1c{bottom:722.746667pt;}
.y3c{bottom:732.026667pt;}
.y1b{bottom:754.786667pt;}
.y3b{bottom:763.746667pt;}
.y1a{bottom:775.266667pt;}
.y18{bottom:782.960000pt;}
.y12{bottom:789.360000pt;}
.y17{bottom:792.984170pt;}
.y3a{bottom:795.746667pt;}
.y39{bottom:827.746667pt;}
.y38{bottom:859.773333pt;}
.y37{bottom:891.773333pt;}
.y36{bottom:923.773333pt;}
.y10{bottom:928.573333pt;}
.ye{bottom:934.653333pt;}
.y35{bottom:955.773333pt;}
.yc{bottom:974.693333pt;}
.ya{bottom:979.173333pt;}
.y34{bottom:987.813333pt;}
.y3{bottom:1000.933333pt;}
.y33{bottom:1019.813333pt;}
.y8{bottom:1020.773333pt;}
.y31{bottom:1040.293333pt;}
.y5{bottom:1045.733333pt;}
.y30{bottom:1056.933333pt;}
.hd{height:4.466667pt;}
.h11{height:6.066667pt;}
.h1a{height:6.386667pt;}
.h1b{height:16.107500pt;}
.he{height:17.103298pt;}
.h9{height:19.826667pt;}
.hb{height:21.746667pt;}
.h12{height:21.930000pt;}
.h8{height:24.946667pt;}
.h1c{height:27.187500pt;}
.hf{height:40.026667pt;}
.h16{height:40.635000pt;}
.h1d{height:45.517500pt;}
.h6{height:47.066667pt;}
.h17{height:49.410094pt;}
.ha{height:49.852500pt;}
.h1e{height:53.362902pt;}
.h2{height:53.494662pt;}
.hc{height:54.187500pt;}
.h3{height:54.882500pt;}
.h18{height:58.625000pt;}
.h22{height:62.781250pt;}
.h14{height:62.812500pt;}
.h7{height:62.857500pt;}
.h19{height:64.500000pt;}
.h15{height:66.209526pt;}
.h5{height:71.044468pt;}
.h1f{height:72.060000pt;}
.h20{height:72.220000pt;}
.h10{height:77.812500pt;}
.h21{height:88.147766pt;}
.h4{height:91.866667pt;}
.h13{height:139.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.348000pt;}
.x6{left:9.906667pt;}
.x10{left:16.960000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x3{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:80.973333pt;}
.x12{left:82.582667pt;}
.xd{left:85.466667pt;}
.x1{left:96.032000pt;}
.x4{left:97.942667pt;}
.x20{left:108.192000pt;}
.x15{left:126.129333pt;}
.x21{left:132.224000pt;}
.x1b{left:144.066667pt;}
.x5{left:150.160000pt;}
.x7{left:185.653333pt;}
.x16{left:195.289333pt;}
.x14{left:246.169333pt;}
.x13{left:249.049333pt;}
.x19{left:289.183228pt;}
.x11{left:298.356000pt;}
.x17{left:327.476000pt;}
.xa{left:396.320000pt;}
.x18{left:404.622667pt;}
.x1c{left:420.960000pt;}
.x22{left:433.120000pt;}
.x1e{left:434.746667pt;}
.x23{left:457.146667pt;}
.x1f{left:458.746667pt;}
.x1d{left:468.986667pt;}
.x8{left:642.173333pt;}
.x2{left:666.173333pt;}
}




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