
    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_5434118dd027b19dc9953c66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_33aa37518f2f320b926720da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_657d43eea4c7579649ea7452.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_54f34373e361fa08ad18668c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28f29c45919683453c30101e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_2d834872c473b00208d68d1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_311cd1801aecc6ea9a25822e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687012;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_1b7b7b053c899fb301a40b9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_2b8777c876bb6cbbb4210ba8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.102051;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_95b414b48f2d85e4b34af87d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_e3006f7482a966649c2e324e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.123047;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_a1570333933d2522ce37f458.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;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_0a849c819afb0f55edf29dfb.woff2')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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_56eec1238673fb6c53771c7b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.102051;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_fa28cf95947a60cbfeb26556.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.123047;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:ff12;src:url('chunks/assets/font_b73ede195782626bbe5504b3.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{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);}
.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);}
.v4{vertical-align:-15.120000px;}
.v1{vertical-align:-6.480000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.ls2f{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.262200px;}
.ls20{letter-spacing:-0.238800px;}
.ls2d{letter-spacing:-0.155400px;}
.ls27{letter-spacing:-0.106800px;}
.ls15{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.014640px;}
.ls22{letter-spacing:0.052560px;}
.ls16{letter-spacing:0.052800px;}
.ls1f{letter-spacing:0.091200px;}
.ls21{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.270480px;}
.ls23{letter-spacing:1.296000px;}
.ls2a{letter-spacing:2.160000px;}
.ls18{letter-spacing:3.312000px;}
.ls19{letter-spacing:3.510720px;}
.ls1c{letter-spacing:3.659760px;}
.ls1b{letter-spacing:3.660480px;}
.ls1d{letter-spacing:3.839040px;}
.ls1a{letter-spacing:3.959280px;}
.ls13{letter-spacing:5.456880px;}
.lsb{letter-spacing:5.588640px;}
.ls9{letter-spacing:5.643360px;}
.lsc{letter-spacing:5.720400px;}
.ls7{letter-spacing:5.799600px;}
.ls11{letter-spacing:5.840400px;}
.ls12{letter-spacing:5.852160px;}
.lsd{letter-spacing:5.900400px;}
.lsa{letter-spacing:5.955840px;}
.ls6{letter-spacing:6.207120px;}
.lsf{letter-spacing:6.308640px;}
.ls0{letter-spacing:6.363360px;}
.ls10{letter-spacing:6.440400px;}
.ls14{letter-spacing:6.488640px;}
.ls4{letter-spacing:6.519600px;}
.lse{letter-spacing:6.572160px;}
.ls2{letter-spacing:6.639600px;}
.ls3{letter-spacing:6.651840px;}
.ls1{letter-spacing:6.675840px;}
.ls8{letter-spacing:6.795840px;}
.ls5{letter-spacing:6.855840px;}
.ls2c{letter-spacing:7.920000px;}
.ls25{letter-spacing:11.520000px;}
.ls2b{letter-spacing:18.000000px;}
.ls2e{letter-spacing:59.321280px;}
.ls24{letter-spacing:195.840000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(153,0,0),0 0.015em rgb(153,0,0),0.015em 0 rgb(153,0,0),0 -0.015em  rgb(153,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(192,192,192),0 0.015em rgb(192,192,192),0.015em 0 rgb(192,192,192),0 -0.015em  rgb(192,192,192);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(153,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(192,192,192);text-shadow:none;}
}
.wsc{word-spacing:-66.240000px;}
.wsa{word-spacing:-44.182080px;}
.ws5{word-spacing:-21.151200px;}
.ws6{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.821200px;}
.ws7{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.453200px;}
.wsb{word-spacing:-16.297800px;}
.ws2{word-spacing:-14.992800px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.240000px;}
._9{margin-left:-7.285217px;}
._8{margin-left:-4.877622px;}
._6{margin-left:-3.696863px;}
._7{margin-left:-2.291975px;}
._3{margin-left:-1.194378px;}
._0{width:1.128000px;}
._5{width:2.169581px;}
._a{width:3.754618px;}
._d{width:4.837578px;}
._4{width:6.214930px;}
._b{width:7.887360px;}
._1{width:9.022470px;}
._18{width:10.584570px;}
._11{width:11.856960px;}
._2{width:13.030574px;}
._17{width:14.099493px;}
._19{width:15.529351px;}
._e{width:17.633418px;}
._10{width:19.143360px;}
._f{width:20.933898px;}
._12{width:22.025320px;}
._13{width:23.220717px;}
._c{width:24.310080px;}
._14{width:25.433043px;}
._1b{width:27.160458px;}
._1a{width:28.615680px;}
._15{width:30.006720px;}
._1d{width:31.199040px;}
._16{width:32.327178px;}
._1e{width:33.912960px;}
._1f{width:35.372160px;}
._20{width:36.992437px;}
._21{width:58.953600px;}
._22{width:60.081738px;}
._1c{width:195.840000px;}
.fc3{color:transparent;}
.fc5{color:rgb(153,0,0);}
.fc1{color:rgb(153,0,0);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(192,192,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(192,192,192);}
.fsa{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs9{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.894008px;}
.fs8{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:131.760000px;}
.fs0{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.960000px;}
.yb{bottom:3.960300px;}
.y9{bottom:63.935700px;}
.y32{bottom:63.936000px;}
.ya{bottom:65.555850px;}
.y33{bottom:65.556000px;}
.y7f{bottom:116.316000px;}
.ya7{bottom:125.316000px;}
.y7e{bottom:134.316000px;}
.ya6{bottom:143.316000px;}
.y7d{bottom:152.310000px;}
.y2f{bottom:156.270000px;}
.y9f{bottom:161.310000px;}
.y7c{bottom:170.310000px;}
.y9e{bottom:179.310000px;}
.y2e{bottom:185.430000px;}
.y1d{bottom:186.438150px;}
.y7b{bottom:188.310000px;}
.y53{bottom:190.470000px;}
.y9d{bottom:197.310000px;}
.y1c{bottom:204.366150px;}
.y7a{bottom:206.310000px;}
.y90{bottom:215.310000px;}
.y52{bottom:217.470000px;}
.y79{bottom:224.310000px;}
.y9c{bottom:233.310000px;}
.y2d{bottom:239.430000px;}
.y1b{bottom:240.222000px;}
.y78{bottom:242.310000px;}
.y51{bottom:244.470000px;}
.y9b{bottom:251.310000px;}
.ya5{bottom:260.355000px;}
.y2c{bottom:268.815000px;}
.y77{bottom:269.355000px;}
.y50{bottom:271.515000px;}
.ya4{bottom:278.355000px;}
.y76{bottom:287.355000px;}
.y1a{bottom:287.355150px;}
.ya3{bottom:296.355000px;}
.y4f{bottom:299.235000px;}
.y75{bottom:305.355000px;}
.y19{bottom:305.355150px;}
.y9a{bottom:314.355000px;}
.y4e{bottom:317.775000px;}
.y2b{bottom:322.815000px;}
.y74{bottom:323.355000px;}
.y18{bottom:323.355150px;}
.y99{bottom:332.355000px;}
.y73{bottom:341.355000px;}
.y17{bottom:341.355150px;}
.y4d{bottom:345.315000px;}
.y98{bottom:350.355000px;}
.y2a{bottom:351.975000px;}
.y72{bottom:359.355000px;}
.y4c{bottom:363.855000px;}
.y97{bottom:368.355000px;}
.y71{bottom:377.355000px;}
.y16{bottom:377.355150px;}
.y4b{bottom:382.395000px;}
.y96{bottom:386.355000px;}
.y70{bottom:395.355000px;}
.y4a{bottom:400.935000px;}
.y95{bottom:404.355000px;}
.y29{bottom:405.975000px;}
.y6f{bottom:413.355000px;}
.y15{bottom:413.355150px;}
.y49{bottom:419.655000px;}
.y94{bottom:422.355000px;}
.y6e{bottom:431.355000px;}
.y14{bottom:431.355150px;}
.y28{bottom:432.975000px;}
.y48{bottom:438.195000px;}
.y93{bottom:440.355000px;}
.y8f{bottom:449.355000px;}
.y47{bottom:456.735000px;}
.y6d{bottom:458.355000px;}
.y27{bottom:462.315000px;}
.y8e{bottom:467.355000px;}
.y13{bottom:467.355150px;}
.y8{bottom:468.075000px;}
.y46{bottom:475.275000px;}
.y6c{bottom:476.355000px;}
.y12{bottom:485.361000px;}
.ya2{bottom:485.385000px;}
.y45{bottom:493.845000px;}
.y6b{bottom:494.385000px;}
.y11{bottom:503.367450px;}
.ya1{bottom:503.385000px;}
.y7{bottom:508.605000px;}
.y26{bottom:512.385000px;}
.y10{bottom:521.373300px;}
.ya0{bottom:521.385000px;}
.y6a{bottom:530.385000px;}
.y44{bottom:530.925000px;}
.yf{bottom:539.379150px;}
.y25{bottom:539.385000px;}
.y69{bottom:548.385000px;}
.y43{bottom:549.465000px;}
.ye{bottom:557.385000px;}
.y68{bottom:566.385000px;}
.y42{bottom:568.185000px;}
.y24{bottom:568.545000px;}
.y92{bottom:575.385000px;}
.y67{bottom:584.385000px;}
.y41{bottom:586.725000px;}
.y91{bottom:593.385000px;}
.y66{bottom:602.385000px;}
.y40{bottom:605.265000px;}
.yd{bottom:611.385000px;}
.y65{bottom:620.385000px;}
.y23{bottom:622.545000px;}
.y3f{bottom:623.805000px;}
.yc{bottom:629.385000px;}
.y64{bottom:638.385000px;}
.y3e{bottom:642.345000px;}
.y8d{bottom:647.385000px;}
.y22{bottom:649.545000px;}
.y5{bottom:653.865000px;}
.y6{bottom:655.305000px;}
.y63{bottom:656.385000px;}
.y3d{bottom:660.885000px;}
.y8c{bottom:665.385000px;}
.y62{bottom:674.385000px;}
.y21{bottom:678.885000px;}
.y8b{bottom:683.385000px;}
.y3c{bottom:688.425000px;}
.y61{bottom:692.385000px;}
.y3{bottom:692.745000px;}
.y4{bottom:694.365000px;}
.y8a{bottom:701.430000px;}
.y3b{bottom:707.010000px;}
.y60{bottom:710.430000px;}
.y89{bottom:719.430000px;}
.y5f{bottom:728.430000px;}
.y3a{bottom:729.510000px;}
.y20{bottom:732.930000px;}
.y88{bottom:737.430000px;}
.y1{bottom:737.790000px;}
.y2{bottom:739.410000px;}
.y39{bottom:744.270000px;}
.y5e{bottom:746.430000px;}
.y87{bottom:755.430000px;}
.y38{bottom:762.810000px;}
.y5d{bottom:764.430000px;}
.y86{bottom:773.430000px;}
.y5c{bottom:782.430000px;}
.y85{bottom:791.430000px;}
.y5b{bottom:800.430000px;}
.y84{bottom:809.430000px;}
.y1e{bottom:810.690000px;}
.y1f{bottom:811.770000px;}
.y37{bottom:812.850000px;}
.y5a{bottom:818.430000px;}
.y83{bottom:827.430000px;}
.y36{bottom:836.250000px;}
.y59{bottom:836.430000px;}
.y82{bottom:845.430000px;}
.y58{bottom:854.430000px;}
.y35{bottom:859.830000px;}
.y81{bottom:863.430000px;}
.y57{bottom:872.430000px;}
.y80{bottom:881.430000px;}
.y56{bottom:899.430000px;}
.y55{bottom:929.340000px;}
.y31{bottom:930.780000px;}
.y54{bottom:946.800000px;}
.y30{bottom:947.880000px;}
.h17{height:16.740000px;}
.h9{height:16.740300px;}
.h1a{height:41.837344px;}
.h1c{height:47.321367px;}
.h1b{height:48.935634px;}
.h15{height:50.539219px;}
.ha{height:50.597578px;}
.hb{height:51.385430px;}
.h1e{height:56.019375px;}
.h18{height:56.084062px;}
.h19{height:56.957344px;}
.h6{height:60.890625px;}
.h11{height:60.960938px;}
.h7{height:61.910156px;}
.h8{height:63.175781px;}
.h10{height:64.257915px;}
.h1d{height:69.086250px;}
.h16{height:70.664062px;}
.h12{height:71.324297px;}
.hd{height:73.762734px;}
.h14{height:75.093750px;}
.hf{height:76.201172px;}
.he{height:87.121406px;}
.hc{height:91.441406px;}
.h5{height:102.358477px;}
.h4{height:121.375898px;}
.h3{height:1020.000000px;}
.h13{height:1020.239908px;}
.h2{height:1020.240000px;}
.h0{height:1022.760000px;}
.h1{height:1023.000000px;}
.w5{width:7.020120px;}
.w4{width:7.200000px;}
.w7{width:14.040000px;}
.w8{width:14.220000px;}
.w1{width:721.500000px;}
.w0{width:721.800000px;}
.w3{width:722.250000px;}
.w6{width:722.519989px;}
.w2{width:722.520000px;}
.x0{left:0.000000px;}
.x39{left:84.996150px;}
.x47{left:90.575989px;}
.x49{left:97.235989px;}
.x48{left:99.935989px;}
.x43{left:106.235850px;}
.xe{left:110.016000px;}
.xd{left:111.636000px;}
.xf{left:132.876000px;}
.x4d{left:138.095989px;}
.x3a{left:148.896150px;}
.x10{left:155.730000px;}
.x26{left:158.250000px;}
.x25{left:159.690000px;}
.x4f{left:165.089989px;}
.x27{left:177.510000px;}
.x11{left:178.590000px;}
.x28{left:196.770000px;}
.x12{left:201.450000px;}
.x29{left:216.075000px;}
.x13{left:224.355000px;}
.x2a{left:235.335000px;}
.x14{left:247.215000px;}
.x4b{left:252.614989px;}
.x2b{left:254.775000px;}
.x2{left:258.375000px;}
.x1{left:259.995000px;}
.x15{left:270.075000px;}
.x2c{left:274.035000px;}
.x4a{left:275.834989px;}
.x3{left:281.235000px;}
.x16{left:292.755000px;}
.x4{left:304.095000px;}
.x2d{left:312.735000px;}
.x17{left:315.615000px;}
.x45{left:324.974989px;}
.x5{left:326.955000px;}
.x2e{left:332.175000px;}
.x18{left:338.475000px;}
.x6{left:349.815000px;}
.x2f{left:351.435000px;}
.x19{left:361.365000px;}
.x30{left:370.725000px;}
.x7{left:372.705000px;}
.x1a{left:384.225000px;}
.x31{left:389.985000px;}
.x8{left:395.565000px;}
.x1b{left:407.085000px;}
.x32{left:409.425000px;}
.x9{left:418.425000px;}
.x4c{left:425.984989px;}
.x33{left:428.685000px;}
.x1c{left:429.945000px;}
.xa{left:441.285000px;}
.x34{left:447.945000px;}
.x1d{left:452.805000px;}
.xb{left:464.145000px;}
.x35{left:467.385000px;}
.x1e{left:475.485000px;}
.xc{left:487.005000px;}
.x1f{left:498.345000px;}
.x36{left:506.130000px;}
.x20{left:521.250000px;}
.x37{left:525.390000px;}
.x21{left:544.110000px;}
.x3d{left:552.750000px;}
.x3c{left:553.830000px;}
.x44{left:556.889989px;}
.x4e{left:561.929989px;}
.x38{left:564.090000px;}
.x22{left:566.970000px;}
.x3e{left:581.730000px;}
.x23{left:589.830000px;}
.x3f{left:598.830000px;}
.x40{left:607.470000px;}
.x24{left:612.510000px;}
.x41{left:622.230000px;}
.x46{left:623.490000px;}
.x3b{left:630.510000px;}
.x42{left:637.530000px;}
@media print{
.v4{vertical-align:-13.440000pt;}
.v1{vertical-align:-5.760000pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.ls2f{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.233067pt;}
.ls20{letter-spacing:-0.212267pt;}
.ls2d{letter-spacing:-0.138133pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.013013pt;}
.ls22{letter-spacing:0.046720pt;}
.ls16{letter-spacing:0.046933pt;}
.ls1f{letter-spacing:0.081067pt;}
.ls21{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.240427pt;}
.ls23{letter-spacing:1.152000pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls18{letter-spacing:2.944000pt;}
.ls19{letter-spacing:3.120640pt;}
.ls1c{letter-spacing:3.253120pt;}
.ls1b{letter-spacing:3.253760pt;}
.ls1d{letter-spacing:3.412480pt;}
.ls1a{letter-spacing:3.519360pt;}
.ls13{letter-spacing:4.850560pt;}
.lsb{letter-spacing:4.967680pt;}
.ls9{letter-spacing:5.016320pt;}
.lsc{letter-spacing:5.084800pt;}
.ls7{letter-spacing:5.155200pt;}
.ls11{letter-spacing:5.191467pt;}
.ls12{letter-spacing:5.201920pt;}
.lsd{letter-spacing:5.244800pt;}
.lsa{letter-spacing:5.294080pt;}
.ls6{letter-spacing:5.517440pt;}
.lsf{letter-spacing:5.607680pt;}
.ls0{letter-spacing:5.656320pt;}
.ls10{letter-spacing:5.724800pt;}
.ls14{letter-spacing:5.767680pt;}
.ls4{letter-spacing:5.795200pt;}
.lse{letter-spacing:5.841920pt;}
.ls2{letter-spacing:5.901867pt;}
.ls3{letter-spacing:5.912747pt;}
.ls1{letter-spacing:5.934080pt;}
.ls8{letter-spacing:6.040747pt;}
.ls5{letter-spacing:6.094080pt;}
.ls2c{letter-spacing:7.040000pt;}
.ls25{letter-spacing:10.240000pt;}
.ls2b{letter-spacing:16.000000pt;}
.ls2e{letter-spacing:52.730027pt;}
.ls24{letter-spacing:174.080000pt;}
.wsc{word-spacing:-58.880000pt;}
.wsa{word-spacing:-39.272960pt;}
.ws5{word-spacing:-18.801067pt;}
.ws6{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.507733pt;}
.ws7{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.625067pt;}
.wsb{word-spacing:-14.486933pt;}
.ws2{word-spacing:-13.326933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.213333pt;}
._9{margin-left:-6.475748pt;}
._8{margin-left:-4.335664pt;}
._6{margin-left:-3.286100pt;}
._7{margin-left:-2.037311pt;}
._3{margin-left:-1.061670pt;}
._0{width:1.002667pt;}
._5{width:1.928516pt;}
._a{width:3.337438pt;}
._d{width:4.300070pt;}
._4{width:5.524382pt;}
._b{width:7.010987pt;}
._1{width:8.019973pt;}
._18{width:9.408507pt;}
._11{width:10.539520pt;}
._2{width:11.582732pt;}
._17{width:12.532883pt;}
._19{width:13.803867pt;}
._e{width:15.674150pt;}
._10{width:17.016320pt;}
._f{width:18.607910pt;}
._12{width:19.578062pt;}
._13{width:20.640637pt;}
._c{width:21.608960pt;}
._14{width:22.607149pt;}
._1b{width:24.142630pt;}
._1a{width:25.436160pt;}
._15{width:26.672640pt;}
._1d{width:27.732480pt;}
._16{width:28.735270pt;}
._1e{width:30.144853pt;}
._1f{width:31.441920pt;}
._20{width:32.882166pt;}
._21{width:52.403200pt;}
._22{width:53.405990pt;}
._1c{width:174.080000pt;}
.fsa{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs9{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:67.461341pt;}
.fs8{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:117.120000pt;}
.fs0{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.520000pt;}
.yb{bottom:3.520267pt;}
.y9{bottom:56.831733pt;}
.y32{bottom:56.832000pt;}
.ya{bottom:58.271867pt;}
.y33{bottom:58.272000pt;}
.y7f{bottom:103.392000pt;}
.ya7{bottom:111.392000pt;}
.y7e{bottom:119.392000pt;}
.ya6{bottom:127.392000pt;}
.y7d{bottom:135.386667pt;}
.y2f{bottom:138.906667pt;}
.y9f{bottom:143.386667pt;}
.y7c{bottom:151.386667pt;}
.y9e{bottom:159.386667pt;}
.y2e{bottom:164.826667pt;}
.y1d{bottom:165.722800pt;}
.y7b{bottom:167.386667pt;}
.y53{bottom:169.306667pt;}
.y9d{bottom:175.386667pt;}
.y1c{bottom:181.658800pt;}
.y7a{bottom:183.386667pt;}
.y90{bottom:191.386667pt;}
.y52{bottom:193.306667pt;}
.y79{bottom:199.386667pt;}
.y9c{bottom:207.386667pt;}
.y2d{bottom:212.826667pt;}
.y1b{bottom:213.530667pt;}
.y78{bottom:215.386667pt;}
.y51{bottom:217.306667pt;}
.y9b{bottom:223.386667pt;}
.ya5{bottom:231.426667pt;}
.y2c{bottom:238.946667pt;}
.y77{bottom:239.426667pt;}
.y50{bottom:241.346667pt;}
.ya4{bottom:247.426667pt;}
.y76{bottom:255.426667pt;}
.y1a{bottom:255.426800pt;}
.ya3{bottom:263.426667pt;}
.y4f{bottom:265.986667pt;}
.y75{bottom:271.426667pt;}
.y19{bottom:271.426800pt;}
.y9a{bottom:279.426667pt;}
.y4e{bottom:282.466667pt;}
.y2b{bottom:286.946667pt;}
.y74{bottom:287.426667pt;}
.y18{bottom:287.426800pt;}
.y99{bottom:295.426667pt;}
.y73{bottom:303.426667pt;}
.y17{bottom:303.426800pt;}
.y4d{bottom:306.946667pt;}
.y98{bottom:311.426667pt;}
.y2a{bottom:312.866667pt;}
.y72{bottom:319.426667pt;}
.y4c{bottom:323.426667pt;}
.y97{bottom:327.426667pt;}
.y71{bottom:335.426667pt;}
.y16{bottom:335.426800pt;}
.y4b{bottom:339.906667pt;}
.y96{bottom:343.426667pt;}
.y70{bottom:351.426667pt;}
.y4a{bottom:356.386667pt;}
.y95{bottom:359.426667pt;}
.y29{bottom:360.866667pt;}
.y6f{bottom:367.426667pt;}
.y15{bottom:367.426800pt;}
.y49{bottom:373.026667pt;}
.y94{bottom:375.426667pt;}
.y6e{bottom:383.426667pt;}
.y14{bottom:383.426800pt;}
.y28{bottom:384.866667pt;}
.y48{bottom:389.506667pt;}
.y93{bottom:391.426667pt;}
.y8f{bottom:399.426667pt;}
.y47{bottom:405.986667pt;}
.y6d{bottom:407.426667pt;}
.y27{bottom:410.946667pt;}
.y8e{bottom:415.426667pt;}
.y13{bottom:415.426800pt;}
.y8{bottom:416.066667pt;}
.y46{bottom:422.466667pt;}
.y6c{bottom:423.426667pt;}
.y12{bottom:431.432000pt;}
.ya2{bottom:431.453333pt;}
.y45{bottom:438.973333pt;}
.y6b{bottom:439.453333pt;}
.y11{bottom:447.437733pt;}
.ya1{bottom:447.453333pt;}
.y7{bottom:452.093333pt;}
.y26{bottom:455.453333pt;}
.y10{bottom:463.442933pt;}
.ya0{bottom:463.453333pt;}
.y6a{bottom:471.453333pt;}
.y44{bottom:471.933333pt;}
.yf{bottom:479.448133pt;}
.y25{bottom:479.453333pt;}
.y69{bottom:487.453333pt;}
.y43{bottom:488.413333pt;}
.ye{bottom:495.453333pt;}
.y68{bottom:503.453333pt;}
.y42{bottom:505.053333pt;}
.y24{bottom:505.373333pt;}
.y92{bottom:511.453333pt;}
.y67{bottom:519.453333pt;}
.y41{bottom:521.533333pt;}
.y91{bottom:527.453333pt;}
.y66{bottom:535.453333pt;}
.y40{bottom:538.013333pt;}
.yd{bottom:543.453333pt;}
.y65{bottom:551.453333pt;}
.y23{bottom:553.373333pt;}
.y3f{bottom:554.493333pt;}
.yc{bottom:559.453333pt;}
.y64{bottom:567.453333pt;}
.y3e{bottom:570.973333pt;}
.y8d{bottom:575.453333pt;}
.y22{bottom:577.373333pt;}
.y5{bottom:581.213333pt;}
.y6{bottom:582.493333pt;}
.y63{bottom:583.453333pt;}
.y3d{bottom:587.453333pt;}
.y8c{bottom:591.453333pt;}
.y62{bottom:599.453333pt;}
.y21{bottom:603.453333pt;}
.y8b{bottom:607.453333pt;}
.y3c{bottom:611.933333pt;}
.y61{bottom:615.453333pt;}
.y3{bottom:615.773333pt;}
.y4{bottom:617.213333pt;}
.y8a{bottom:623.493333pt;}
.y3b{bottom:628.453333pt;}
.y60{bottom:631.493333pt;}
.y89{bottom:639.493333pt;}
.y5f{bottom:647.493333pt;}
.y3a{bottom:648.453333pt;}
.y20{bottom:651.493333pt;}
.y88{bottom:655.493333pt;}
.y1{bottom:655.813333pt;}
.y2{bottom:657.253333pt;}
.y39{bottom:661.573333pt;}
.y5e{bottom:663.493333pt;}
.y87{bottom:671.493333pt;}
.y38{bottom:678.053333pt;}
.y5d{bottom:679.493333pt;}
.y86{bottom:687.493333pt;}
.y5c{bottom:695.493333pt;}
.y85{bottom:703.493333pt;}
.y5b{bottom:711.493333pt;}
.y84{bottom:719.493333pt;}
.y1e{bottom:720.613333pt;}
.y1f{bottom:721.573333pt;}
.y37{bottom:722.533333pt;}
.y5a{bottom:727.493333pt;}
.y83{bottom:735.493333pt;}
.y36{bottom:743.333333pt;}
.y59{bottom:743.493333pt;}
.y82{bottom:751.493333pt;}
.y58{bottom:759.493333pt;}
.y35{bottom:764.293333pt;}
.y81{bottom:767.493333pt;}
.y57{bottom:775.493333pt;}
.y80{bottom:783.493333pt;}
.y56{bottom:799.493333pt;}
.y55{bottom:826.080000pt;}
.y31{bottom:827.360000pt;}
.y54{bottom:841.600000pt;}
.y30{bottom:842.560000pt;}
.h17{height:14.880000pt;}
.h9{height:14.880267pt;}
.h1a{height:37.188750pt;}
.h1c{height:42.063437pt;}
.h1b{height:43.498341pt;}
.h15{height:44.923750pt;}
.ha{height:44.975625pt;}
.hb{height:45.675938pt;}
.h1e{height:49.795000pt;}
.h18{height:49.852500pt;}
.h19{height:50.628750pt;}
.h6{height:54.125000pt;}
.h11{height:54.187500pt;}
.h7{height:55.031250pt;}
.h8{height:56.156250pt;}
.h10{height:57.118147pt;}
.h1d{height:61.410000pt;}
.h16{height:62.812500pt;}
.h12{height:63.399375pt;}
.hd{height:65.566875pt;}
.h14{height:66.750000pt;}
.hf{height:67.734375pt;}
.he{height:77.441250pt;}
.hc{height:81.281250pt;}
.h5{height:90.985312pt;}
.h4{height:107.889688pt;}
.h3{height:906.666667pt;}
.h13{height:906.879919pt;}
.h2{height:906.880000pt;}
.h0{height:909.120000pt;}
.h1{height:909.333333pt;}
.w5{width:6.240107pt;}
.w4{width:6.400000pt;}
.w7{width:12.480000pt;}
.w8{width:12.640000pt;}
.w1{width:641.333333pt;}
.w0{width:641.600000pt;}
.w3{width:642.000000pt;}
.w6{width:642.239990pt;}
.w2{width:642.240000pt;}
.x0{left:0.000000pt;}
.x39{left:75.552133pt;}
.x47{left:80.511990pt;}
.x49{left:86.431990pt;}
.x48{left:88.831990pt;}
.x43{left:94.431867pt;}
.xe{left:97.792000pt;}
.xd{left:99.232000pt;}
.xf{left:118.112000pt;}
.x4d{left:122.751990pt;}
.x3a{left:132.352133pt;}
.x10{left:138.426667pt;}
.x26{left:140.666667pt;}
.x25{left:141.946667pt;}
.x4f{left:146.746657pt;}
.x27{left:157.786667pt;}
.x11{left:158.746667pt;}
.x28{left:174.906667pt;}
.x12{left:179.066667pt;}
.x29{left:192.066667pt;}
.x13{left:199.426667pt;}
.x2a{left:209.186667pt;}
.x14{left:219.746667pt;}
.x4b{left:224.546657pt;}
.x2b{left:226.466667pt;}
.x2{left:229.666667pt;}
.x1{left:231.106667pt;}
.x15{left:240.066667pt;}
.x2c{left:243.586667pt;}
.x4a{left:245.186657pt;}
.x3{left:249.986667pt;}
.x16{left:260.226667pt;}
.x4{left:270.306667pt;}
.x2d{left:277.986667pt;}
.x17{left:280.546667pt;}
.x45{left:288.866657pt;}
.x5{left:290.626667pt;}
.x2e{left:295.266667pt;}
.x18{left:300.866667pt;}
.x6{left:310.946667pt;}
.x2f{left:312.386667pt;}
.x19{left:321.213333pt;}
.x30{left:329.533333pt;}
.x7{left:331.293333pt;}
.x1a{left:341.533333pt;}
.x31{left:346.653333pt;}
.x8{left:351.613333pt;}
.x1b{left:361.853333pt;}
.x32{left:363.933333pt;}
.x9{left:371.933333pt;}
.x4c{left:378.653324pt;}
.x33{left:381.053333pt;}
.x1c{left:382.173333pt;}
.xa{left:392.253333pt;}
.x34{left:398.173333pt;}
.x1d{left:402.493333pt;}
.xb{left:412.573333pt;}
.x35{left:415.453333pt;}
.x1e{left:422.653333pt;}
.xc{left:432.893333pt;}
.x1f{left:442.973333pt;}
.x36{left:449.893333pt;}
.x20{left:463.333333pt;}
.x37{left:467.013333pt;}
.x21{left:483.653333pt;}
.x3d{left:491.333333pt;}
.x3c{left:492.293333pt;}
.x44{left:495.013324pt;}
.x4e{left:499.493324pt;}
.x38{left:501.413333pt;}
.x22{left:503.973333pt;}
.x3e{left:517.093333pt;}
.x23{left:524.293333pt;}
.x3f{left:532.293333pt;}
.x40{left:539.973333pt;}
.x24{left:544.453333pt;}
.x41{left:553.093333pt;}
.x46{left:554.213333pt;}
.x3b{left:560.453333pt;}
.x42{left:566.693333pt;}
}




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