
    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_c1c652d5eab2e1b47b9c836c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_38271c6305c8f7763bc2d02d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b454aab39e8ebcc6625ae44a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1707d7f6c18026ed703c7101.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_76b3111f2981fe4405e1d7a9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f2ff6c6eebdd6c9612493bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_bb7d61c623e494e76f5b4fbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_0daa41d654210eae3764240a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_49fc3d37bc70803eaafc8ce7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_eb8d1df0ae111c630212e6a2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_997e021a63bb60a1e866440f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_3990a0d9d1a06a9e17f06ba3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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_17dddaf11443b0d2a35348bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.440000px;}
.ls3a{letter-spacing:-1.224000px;}
.ls49{letter-spacing:-0.936000px;}
.ls36{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.504000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.291600px;}
.ls35{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.072000px;}
.ls2e{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.106560px;}
.ls22{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.826560px;}
.ls2c{letter-spacing:0.900000px;}
.ls3b{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.620000px;}
.ls1a{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.880000px;}
.ls44{letter-spacing:3.600000px;}
.ls17{letter-spacing:4.320000px;}
.ls34{letter-spacing:5.040000px;}
.ls1b{letter-spacing:5.760000px;}
.ls28{letter-spacing:6.480000px;}
.ls3d{letter-spacing:7.344000px;}
.ls3{letter-spacing:8.640000px;}
.ls15{letter-spacing:10.080000px;}
.ls31{letter-spacing:10.224000px;}
.ls3f{letter-spacing:10.800000px;}
.lsa{letter-spacing:12.240000px;}
.ls42{letter-spacing:12.960000px;}
.ls40{letter-spacing:13.680000px;}
.ls2a{letter-spacing:14.400000px;}
.ls2{letter-spacing:17.424000px;}
.ls43{letter-spacing:18.000000px;}
.lsf{letter-spacing:18.720000px;}
.ls10{letter-spacing:19.440000px;}
.ls18{letter-spacing:20.160000px;}
.ls16{letter-spacing:20.880000px;}
.ls8{letter-spacing:21.600000px;}
.ls3e{letter-spacing:23.040000px;}
.ls27{letter-spacing:24.480000px;}
.ls26{letter-spacing:25.920000px;}
.lsd{letter-spacing:26.040000px;}
.ls3c{letter-spacing:28.800000px;}
.ls25{letter-spacing:29.520000px;}
.ls30{letter-spacing:31.680000px;}
.ls46{letter-spacing:33.120000px;}
.ls45{letter-spacing:34.560000px;}
.lse{letter-spacing:35.280000px;}
.lsb{letter-spacing:37.440000px;}
.lsc{letter-spacing:38.160000px;}
.ls1d{letter-spacing:39.600000px;}
.ls9{letter-spacing:43.920000px;}
.ls32{letter-spacing:46.080000px;}
.ls1c{letter-spacing:48.240000px;}
.ls11{letter-spacing:52.560000px;}
.ls1{letter-spacing:53.424000px;}
.ls33{letter-spacing:56.880000px;}
.ls12{letter-spacing:72.000000px;}
.ls21{letter-spacing:82.260000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.wsf{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.640000px;}
.ws11{word-spacing:-17.496000px;}
.wse{word-spacing:-17.136000px;}
.ws5{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.300000px;}
.ws16{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.648400px;}
.wsb{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-34.719840px;}
._15{margin-left:-21.453600px;}
._21{margin-left:-18.219600px;}
._5{margin-left:-9.936000px;}
._2{margin-left:-8.475840px;}
._11{margin-left:-7.249200px;}
._3{margin-left:-5.904000px;}
._2a{margin-left:-4.824000px;}
._4{margin-left:-3.744000px;}
._b{margin-left:-2.289120px;}
._1{margin-left:-1.178640px;}
._0{width:1.347840px;}
._f{width:2.376000px;}
._7{width:3.797280px;}
._8{width:5.711280px;}
._10{width:6.831600px;}
._c{width:7.935840px;}
._a{width:9.720000px;}
._2d{width:10.876800px;}
._14{width:11.952000px;}
._19{width:13.018560px;}
._1e{width:14.184000px;}
._1d{width:15.213120px;}
._13{width:16.985040px;}
._25{width:19.074960px;}
._17{width:20.442960px;}
._16{width:21.796080px;}
._27{width:23.482080px;}
._9{width:24.525360px;}
._6{width:25.685280px;}
._1c{width:26.829600px;}
._12{width:28.264320px;}
._2b{width:29.927760px;}
._2c{width:30.979200px;}
._d{width:32.112000px;}
._e{width:33.588000px;}
._1f{width:34.977120px;}
._1b{width:36.691920px;}
._1a{width:37.800000px;}
._22{width:38.952000px;}
._2f{width:40.253760px;}
._39{width:42.068160px;}
._18{width:43.220160px;}
._3a{width:44.398560px;}
._37{width:45.462720px;}
._38{width:46.678320px;}
._2e{width:48.024000px;}
._24{width:51.689760px;}
._23{width:53.237280px;}
._30{width:55.006560px;}
._31{width:56.401680px;}
._3f{width:57.527280px;}
._43{width:60.969120px;}
._44{width:62.510880px;}
._26{width:64.205280px;}
._41{width:65.839920px;}
._45{width:67.233120px;}
._46{width:68.570640px;}
._40{width:69.927360px;}
._29{width:70.931760px;}
._28{width:72.026640px;}
._35{width:75.955680px;}
._34{width:77.328000px;}
._36{width:78.617280px;}
._32{width:81.514560px;}
._33{width:83.144880px;}
._3b{width:84.389280px;}
._42{width:99.674640px;}
._3e{width:117.817200px;}
._3d{width:118.990800px;}
._3c{width:159.168000px;}
.fc6{color:rgb(107,159,37);}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc7{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y53{bottom:128.736000px;}
.y52{bottom:145.836000px;}
.y51{bottom:151.050000px;}
.y2d{bottom:153.390000px;}
.y50{bottom:163.110000px;}
.y7b{bottom:163.830000px;}
.y4f{bottom:168.330000px;}
.y2c{bottom:177.150000px;}
.y4e{bottom:180.390000px;}
.y68{bottom:185.610000px;}
.y7a{bottom:187.410000px;}
.y4d{bottom:197.670000px;}
.y2b{bottom:200.910000px;}
.y4c{bottom:202.890000px;}
.y79{bottom:211.350000px;}
.y67{bottom:214.950000px;}
.y4b{bottom:215.670000px;}
.y66{bottom:220.170000px;}
.y2a{bottom:224.670000px;}
.y65{bottom:232.230000px;}
.y76{bottom:232.950000px;}
.y78{bottom:235.110000px;}
.y29{bottom:248.610000px;}
.y64{bottom:249.330000px;}
.y77{bottom:258.510000px;}
.y75{bottom:258.870000px;}
.y63{bottom:266.610000px;}
.y62{bottom:271.830000px;}
.y28{bottom:272.370000px;}
.y7f{bottom:282.315000px;}
.y74{bottom:282.675000px;}
.y61{bottom:283.935000px;}
.y27{bottom:296.175000px;}
.y60{bottom:301.215000px;}
.y7e{bottom:306.075000px;}
.y4a{bottom:306.435000px;}
.y5f{bottom:318.495000px;}
.y26{bottom:319.935000px;}
.y5e{bottom:323.715000px;}
.y49{bottom:330.375000px;}
.y5d{bottom:335.595000px;}
.y5c{bottom:340.815000px;}
.y25{bottom:343.695000px;}
.y5b{bottom:352.875000px;}
.y71{bottom:353.595000px;}
.y48{bottom:354.135000px;}
.y24{bottom:367.635000px;}
.y5a{bottom:370.155000px;}
.y59{bottom:375.375000px;}
.y73{bottom:377.535000px;}
.y47{bottom:377.895000px;}
.y7d{bottom:384.735000px;}
.y58{bottom:388.155000px;}
.y46{bottom:401.655000px;}
.y45{bottom:425.595000px;}
.y57{bottom:432.435000px;}
.y44{bottom:449.355000px;}
.y43{bottom:473.115000px;}
.y7c{bottom:479.955000px;}
.y42{bottom:496.875000px;}
.y70{bottom:520.455000px;}
.y41{bottom:520.815000px;}
.y84{bottom:544.215000px;}
.y40{bottom:544.575000px;}
.y83{bottom:568.005000px;}
.y3f{bottom:568.365000px;}
.y3e{bottom:591.765000px;}
.y6f{bottom:592.125000px;}
.y82{bottom:615.705000px;}
.y3d{bottom:616.065000px;}
.y56{bottom:622.905000px;}
.y23{bottom:639.465000px;}
.y3c{bottom:639.825000px;}
.y22{bottom:663.225000px;}
.y3b{bottom:663.585000px;}
.y55{bottom:670.425000px;}
.y81{bottom:686.985000px;}
.y21{bottom:687.345000px;}
.y3a{bottom:694.185000px;}
.y80{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.y6e{bottom:718.125000px;}
.y1f{bottom:735.045000px;}
.y1e{bottom:758.805000px;}
.y39{bottom:765.645000px;}
.y1d{bottom:782.565000px;}
.y1c{bottom:806.325000px;}
.y85{bottom:806.505000px;}
.y6d{bottom:813.165000px;}
.y72{bottom:829.905000px;}
.y1b{bottom:830.265000px;}
.y1a{bottom:854.070000px;}
.y38{bottom:860.910000px;}
.y6c{bottom:877.470000px;}
.y19{bottom:877.830000px;}
.y54{bottom:884.670000px;}
.y18{bottom:901.230000px;}
.y37{bottom:901.590000px;}
.y6b{bottom:908.430000px;}
.y17{bottom:925.170000px;}
.y36{bottom:925.530000px;}
.y16{bottom:948.930000px;}
.y35{bottom:949.290000px;}
.y15{bottom:972.690000px;}
.y34{bottom:973.050000px;}
.y14{bottom:996.450000px;}
.y33{bottom:996.810000px;}
.y32{bottom:1020.390000px;}
.y13{bottom:1020.750000px;}
.y6a{bottom:1027.590000px;}
.y12{bottom:1044.150000px;}
.y31{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y30{bottom:1068.270000px;}
.y69{bottom:1075.110000px;}
.y10{bottom:1091.670000px;}
.y2f{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y2e{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.h10{height:38.158594px;}
.hf{height:47.344922px;}
.he{height:50.484375px;}
.h11{height:58.651172px;}
.h12{height:59.343750px;}
.hb{height:62.261719px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.hd{height:74.004654px;}
.hc{height:74.953125px;}
.h4{height:82.635820px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.w2{width:125.856000px;}
.w3{width:705.525000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x7{left:14.580000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x5{left:71.994000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x13{left:129.815987px;}
.x23{left:132.515987px;}
.x32{left:134.315987px;}
.x35{left:137.375987px;}
.x33{left:139.175987px;}
.x41{left:141.875987px;}
.x34{left:144.035987px;}
.x1b{left:148.895987px;}
.x2f{left:159.689987px;}
.x1a{left:180.749987px;}
.x12{left:212.789987px;}
.x45{left:229.349973px;}
.x46{left:241.589987px;}
.x3d{left:247.709973px;}
.x3e{left:262.289987px;}
.x14{left:285.329987px;}
.x17{left:333.074987px;}
.x28{left:340.274973px;}
.x22{left:343.694987px;}
.x2a{left:346.034987px;}
.x29{left:348.734987px;}
.x16{left:379.694987px;}
.x15{left:389.954987px;}
.x4a{left:418.574973px;}
.x4b{left:442.154987px;}
.x36{left:454.934973px;}
.x37{left:467.174987px;}
.x43{left:497.624973px;}
.x49{left:502.304973px;}
.x44{left:514.724987px;}
.x2b{left:533.444973px;}
.x2c{left:539.564987px;}
.x19{left:542.984987px;}
.x39{left:559.904973px;}
.x42{left:564.044973px;}
.x3a{left:572.144987px;}
.x30{left:575.924973px;}
.x31{left:590.324987px;}
.x26{left:600.044973px;}
.x27{left:606.164987px;}
.x38{left:611.924973px;}
.x24{left:615.344973px;}
.xb{left:619.305000px;}
.x25{left:623.984987px;}
.x47{left:636.404973px;}
.x1e{left:638.204973px;}
.x1f{left:644.324987px;}
.x48{left:650.264987px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.x1d{left:696.929987px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x3f{left:725.009973px;}
.x40{left:737.249987px;}
.x10{left:738.870000px;}
.x1c{left:749.129987px;}
.x3b{left:757.949973px;}
.x3c{left:770.189987px;}
.x20{left:786.569973px;}
.x21{left:792.689987px;}
.x2d{left:822.749973px;}
.x2e{left:828.869987px;}
.x8{left:831.390000px;}
.x18{left:840.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls3a{letter-spacing:-1.088000pt;}
.ls49{letter-spacing:-0.832000pt;}
.ls36{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.259200pt;}
.ls35{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls2e{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.094720pt;}
.ls22{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.734720pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls29{letter-spacing:2.560000pt;}
.ls44{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls34{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls28{letter-spacing:5.760000pt;}
.ls3d{letter-spacing:6.528000pt;}
.ls3{letter-spacing:7.680000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls31{letter-spacing:9.088000pt;}
.ls3f{letter-spacing:9.600000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls42{letter-spacing:11.520000pt;}
.ls40{letter-spacing:12.160000pt;}
.ls2a{letter-spacing:12.800000pt;}
.ls2{letter-spacing:15.488000pt;}
.ls43{letter-spacing:16.000000pt;}
.lsf{letter-spacing:16.640000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls18{letter-spacing:17.920000pt;}
.ls16{letter-spacing:18.560000pt;}
.ls8{letter-spacing:19.200000pt;}
.ls3e{letter-spacing:20.480000pt;}
.ls27{letter-spacing:21.760000pt;}
.ls26{letter-spacing:23.040000pt;}
.lsd{letter-spacing:23.146667pt;}
.ls3c{letter-spacing:25.600000pt;}
.ls25{letter-spacing:26.240000pt;}
.ls30{letter-spacing:28.160000pt;}
.ls46{letter-spacing:29.440000pt;}
.ls45{letter-spacing:30.720000pt;}
.lse{letter-spacing:31.360000pt;}
.lsb{letter-spacing:33.280000pt;}
.lsc{letter-spacing:33.920000pt;}
.ls1d{letter-spacing:35.200000pt;}
.ls9{letter-spacing:39.040000pt;}
.ls32{letter-spacing:40.960000pt;}
.ls1c{letter-spacing:42.880000pt;}
.ls11{letter-spacing:46.720000pt;}
.ls1{letter-spacing:47.488000pt;}
.ls33{letter-spacing:50.560000pt;}
.ls12{letter-spacing:64.000000pt;}
.ls21{letter-spacing:73.120000pt;}
.ws14{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.wsf{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.680000pt;}
.ws11{word-spacing:-15.552000pt;}
.wse{word-spacing:-15.232000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.240000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.020800pt;}
.wsb{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-30.862080pt;}
._15{margin-left:-19.069867pt;}
._21{margin-left:-16.195200pt;}
._5{margin-left:-8.832000pt;}
._2{margin-left:-7.534080pt;}
._11{margin-left:-6.443733pt;}
._3{margin-left:-5.248000pt;}
._2a{margin-left:-4.288000pt;}
._4{margin-left:-3.328000pt;}
._b{margin-left:-2.034773pt;}
._1{margin-left:-1.047680pt;}
._0{width:1.198080pt;}
._f{width:2.112000pt;}
._7{width:3.375360pt;}
._8{width:5.076693pt;}
._10{width:6.072533pt;}
._c{width:7.054080pt;}
._a{width:8.640000pt;}
._2d{width:9.668267pt;}
._14{width:10.624000pt;}
._19{width:11.572053pt;}
._1e{width:12.608000pt;}
._1d{width:13.522773pt;}
._13{width:15.097813pt;}
._25{width:16.955520pt;}
._17{width:18.171520pt;}
._16{width:19.374293pt;}
._27{width:20.872960pt;}
._9{width:21.800320pt;}
._6{width:22.831360pt;}
._1c{width:23.848533pt;}
._12{width:25.123840pt;}
._2b{width:26.602453pt;}
._2c{width:27.537067pt;}
._d{width:28.544000pt;}
._e{width:29.856000pt;}
._1f{width:31.090773pt;}
._1b{width:32.615040pt;}
._1a{width:33.600000pt;}
._22{width:34.624000pt;}
._2f{width:35.781120pt;}
._39{width:37.393920pt;}
._18{width:38.417920pt;}
._3a{width:39.465387pt;}
._37{width:40.411307pt;}
._38{width:41.491840pt;}
._2e{width:42.688000pt;}
._24{width:45.946453pt;}
._23{width:47.322027pt;}
._30{width:48.894720pt;}
._31{width:50.134827pt;}
._3f{width:51.135360pt;}
._43{width:54.194773pt;}
._44{width:55.565227pt;}
._26{width:57.071360pt;}
._41{width:58.524373pt;}
._45{width:59.762773pt;}
._46{width:60.951680pt;}
._40{width:62.157653pt;}
._29{width:63.050453pt;}
._28{width:64.023680pt;}
._35{width:67.516160pt;}
._34{width:68.736000pt;}
._36{width:69.882027pt;}
._32{width:72.457387pt;}
._33{width:73.906560pt;}
._3b{width:75.012693pt;}
._42{width:88.599680pt;}
._3e{width:104.726400pt;}
._3d{width:105.769600pt;}
._3c{width:141.482667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y53{bottom:114.432000pt;}
.y52{bottom:129.632000pt;}
.y51{bottom:134.266667pt;}
.y2d{bottom:136.346667pt;}
.y50{bottom:144.986667pt;}
.y7b{bottom:145.626667pt;}
.y4f{bottom:149.626667pt;}
.y2c{bottom:157.466667pt;}
.y4e{bottom:160.346667pt;}
.y68{bottom:164.986667pt;}
.y7a{bottom:166.586667pt;}
.y4d{bottom:175.706667pt;}
.y2b{bottom:178.586667pt;}
.y4c{bottom:180.346667pt;}
.y79{bottom:187.866667pt;}
.y67{bottom:191.066667pt;}
.y4b{bottom:191.706667pt;}
.y66{bottom:195.706667pt;}
.y2a{bottom:199.706667pt;}
.y65{bottom:206.426667pt;}
.y76{bottom:207.066667pt;}
.y78{bottom:208.986667pt;}
.y29{bottom:220.986667pt;}
.y64{bottom:221.626667pt;}
.y77{bottom:229.786667pt;}
.y75{bottom:230.106667pt;}
.y63{bottom:236.986667pt;}
.y62{bottom:241.626667pt;}
.y28{bottom:242.106667pt;}
.y7f{bottom:250.946667pt;}
.y74{bottom:251.266667pt;}
.y61{bottom:252.386667pt;}
.y27{bottom:263.266667pt;}
.y60{bottom:267.746667pt;}
.y7e{bottom:272.066667pt;}
.y4a{bottom:272.386667pt;}
.y5f{bottom:283.106667pt;}
.y26{bottom:284.386667pt;}
.y5e{bottom:287.746667pt;}
.y49{bottom:293.666667pt;}
.y5d{bottom:298.306667pt;}
.y5c{bottom:302.946667pt;}
.y25{bottom:305.506667pt;}
.y5b{bottom:313.666667pt;}
.y71{bottom:314.306667pt;}
.y48{bottom:314.786667pt;}
.y24{bottom:326.786667pt;}
.y5a{bottom:329.026667pt;}
.y59{bottom:333.666667pt;}
.y73{bottom:335.586667pt;}
.y47{bottom:335.906667pt;}
.y7d{bottom:341.986667pt;}
.y58{bottom:345.026667pt;}
.y46{bottom:357.026667pt;}
.y45{bottom:378.306667pt;}
.y57{bottom:384.386667pt;}
.y44{bottom:399.426667pt;}
.y43{bottom:420.546667pt;}
.y7c{bottom:426.626667pt;}
.y42{bottom:441.666667pt;}
.y70{bottom:462.626667pt;}
.y41{bottom:462.946667pt;}
.y84{bottom:483.746667pt;}
.y40{bottom:484.066667pt;}
.y83{bottom:504.893333pt;}
.y3f{bottom:505.213333pt;}
.y3e{bottom:526.013333pt;}
.y6f{bottom:526.333333pt;}
.y82{bottom:547.293333pt;}
.y3d{bottom:547.613333pt;}
.y56{bottom:553.693333pt;}
.y23{bottom:568.413333pt;}
.y3c{bottom:568.733333pt;}
.y22{bottom:589.533333pt;}
.y3b{bottom:589.853333pt;}
.y55{bottom:595.933333pt;}
.y81{bottom:610.653333pt;}
.y21{bottom:610.973333pt;}
.y3a{bottom:617.053333pt;}
.y80{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.y6e{bottom:638.333333pt;}
.y1f{bottom:653.373333pt;}
.y1e{bottom:674.493333pt;}
.y39{bottom:680.573333pt;}
.y1d{bottom:695.613333pt;}
.y1c{bottom:716.733333pt;}
.y85{bottom:716.893333pt;}
.y6d{bottom:722.813333pt;}
.y72{bottom:737.693333pt;}
.y1b{bottom:738.013333pt;}
.y1a{bottom:759.173333pt;}
.y38{bottom:765.253333pt;}
.y6c{bottom:779.973333pt;}
.y19{bottom:780.293333pt;}
.y54{bottom:786.373333pt;}
.y18{bottom:801.093333pt;}
.y37{bottom:801.413333pt;}
.y6b{bottom:807.493333pt;}
.y17{bottom:822.373333pt;}
.y36{bottom:822.693333pt;}
.y16{bottom:843.493333pt;}
.y35{bottom:843.813333pt;}
.y15{bottom:864.613333pt;}
.y34{bottom:864.933333pt;}
.y14{bottom:885.733333pt;}
.y33{bottom:886.053333pt;}
.y32{bottom:907.013333pt;}
.y13{bottom:907.333333pt;}
.y6a{bottom:913.413333pt;}
.y12{bottom:928.133333pt;}
.y31{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y30{bottom:949.573333pt;}
.y69{bottom:955.653333pt;}
.y10{bottom:970.373333pt;}
.y2f{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y2e{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.h10{height:33.918750pt;}
.hf{height:42.084375pt;}
.he{height:44.875000pt;}
.h11{height:52.134375pt;}
.h12{height:52.750000pt;}
.hb{height:55.343750pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.hd{height:65.781915pt;}
.hc{height:66.625000pt;}
.h4{height:73.454062pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.w2{width:111.872000pt;}
.w3{width:627.133333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x7{left:12.960000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x5{left:63.994667pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x13{left:115.391988pt;}
.x23{left:117.791988pt;}
.x32{left:119.391988pt;}
.x35{left:122.111988pt;}
.x33{left:123.711988pt;}
.x41{left:126.111988pt;}
.x34{left:128.031988pt;}
.x1b{left:132.351988pt;}
.x2f{left:141.946655pt;}
.x1a{left:160.666655pt;}
.x12{left:189.146655pt;}
.x45{left:203.866643pt;}
.x46{left:214.746655pt;}
.x3d{left:220.186643pt;}
.x3e{left:233.146655pt;}
.x14{left:253.626655pt;}
.x17{left:296.066655pt;}
.x28{left:302.466643pt;}
.x22{left:305.506655pt;}
.x2a{left:307.586655pt;}
.x29{left:309.986655pt;}
.x16{left:337.506655pt;}
.x15{left:346.626655pt;}
.x4a{left:372.066643pt;}
.x4b{left:393.026655pt;}
.x36{left:404.386643pt;}
.x37{left:415.266655pt;}
.x43{left:442.333310pt;}
.x49{left:446.493310pt;}
.x44{left:457.533322pt;}
.x2b{left:474.173310pt;}
.x2c{left:479.613322pt;}
.x19{left:482.653322pt;}
.x39{left:497.693310pt;}
.x42{left:501.373310pt;}
.x3a{left:508.573322pt;}
.x30{left:511.933310pt;}
.x31{left:524.733322pt;}
.x26{left:533.373310pt;}
.x27{left:538.813322pt;}
.x38{left:543.933310pt;}
.x24{left:546.973310pt;}
.xb{left:550.493333pt;}
.x25{left:554.653322pt;}
.x47{left:565.693310pt;}
.x1e{left:567.293310pt;}
.x1f{left:572.733322pt;}
.x48{left:578.013322pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.x1d{left:619.493322pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x3f{left:644.453310pt;}
.x40{left:655.333322pt;}
.x10{left:656.773333pt;}
.x1c{left:665.893322pt;}
.x3b{left:673.733310pt;}
.x3c{left:684.613322pt;}
.x20{left:699.173310pt;}
.x21{left:704.613322pt;}
.x2d{left:731.333310pt;}
.x2e{left:736.773322pt;}
.x8{left:739.013333pt;}
.x18{left:746.693322pt;}
}




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