
    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_3ef5543f2e66e403fb5a1bed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c1c4384c9e085f11c5ac62f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_e9ce7161fa4d15ff325019fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.703613;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_45f67530f897fec9e3c71a7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_b10afa3662e6ed0f7063d3dd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dc9a9184a734766a3f542138.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_110cdeaa4431b72615893564.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928223;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_86ef610ec55762f3e7c40610.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0bac7e95c32a533e6567c16f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_00521bd8394f786ebba14a57.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-6.120000px;}
.ls6{letter-spacing:-5.112000px;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.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;}
}
.ws1{word-spacing:-95.797440px;}
.ws3{word-spacing:-95.760000px;}
.wsc{word-spacing:-41.040000px;}
.wsb{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.036000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-12.888000px;}
.ws2{word-spacing:-0.095760px;}
.ws4{word-spacing:0.000000px;}
._2f{margin-left:-9.576000px;}
._5{margin-left:-8.255520px;}
._6{margin-left:-6.656976px;}
._2{margin-left:-5.468976px;}
._7{margin-left:-4.455072px;}
._3{margin-left:-2.585952px;}
._0{margin-left:-1.515024px;}
._4{width:1.757952px;}
._12{width:3.655440px;}
._1{width:5.419584px;}
._8{width:7.372416px;}
._d{width:8.640000px;}
._e{width:9.864000px;}
._14{width:10.878144px;}
._13{width:11.955024px;}
._15{width:13.392000px;}
._16{width:14.445072px;}
._1e{width:15.771024px;}
._1b{width:16.992000px;}
._c{width:19.076976px;}
._b{width:20.091024px;}
._19{width:21.864000px;}
._1a{width:23.741952px;}
._9{width:24.768000px;}
._a{width:25.938144px;}
._f{width:27.216000px;}
._1d{width:28.773072px;}
._17{width:29.952000px;}
._18{width:31.308000px;}
._1c{width:32.487024px;}
._10{width:33.912000px;}
._11{width:35.190048px;}
._21{width:37.296000px;}
._22{width:38.595024px;}
._23{width:39.988416px;}
._24{width:41.470848px;}
._26{width:43.344000px;}
._27{width:44.397072px;}
._2d{width:45.435024px;}
._1f{width:53.424000px;}
._20{width:54.576000px;}
._29{width:56.196000px;}
._2e{width:57.852000px;}
._32{width:59.163120px;}
._25{width:64.364976px;}
._31{width:66.672000px;}
._28{width:90.576000px;}
._30{width:103.320000px;}
._2c{width:115.193952px;}
._2a{width:217.872000px;}
._2b{width:219.384000px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(100,100,100);}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y16{bottom:-13.035000px;}
.y12{bottom:-10.470000px;}
.y0{bottom:0.000000px;}
.yea{bottom:4.140000px;}
.yc9{bottom:4.485000px;}
.ydb{bottom:4.500000px;}
.y9{bottom:5.040000px;}
.y11{bottom:7.710000px;}
.yb{bottom:9.360000px;}
.y24{bottom:9.750000px;}
.y58{bottom:11.160000px;}
.y15{bottom:13.965000px;}
.y7{bottom:21.420000px;}
.ya8{bottom:23.925000px;}
.y96{bottom:23.940000px;}
.yaa{bottom:24.285000px;}
.y98{bottom:24.300000px;}
.y9a{bottom:24.330000px;}
.yd7{bottom:24.345000px;}
.ye9{bottom:24.840000px;}
.yc8{bottom:25.185000px;}
.yda{bottom:25.200000px;}
.y10{bottom:30.210000px;}
.y14{bottom:38.085000px;}
.y6{bottom:42.516000px;}
.y2{bottom:57.060000px;}
.ye{bottom:58.830000px;}
.y5{bottom:64.440000px;}
.y1{bottom:72.720000px;}
.y8{bottom:85.860000px;}
.yd{bottom:89.790000px;}
.y112{bottom:113.940000px;}
.yf5{bottom:123.480000px;}
.yd0{bottom:123.840000px;}
.y8a{bottom:124.200000px;}
.y56{bottom:126.900000px;}
.yaf{bottom:128.340000px;}
.y111{bottom:134.640000px;}
.yf4{bottom:144.180000px;}
.ycf{bottom:144.540000px;}
.y89{bottom:144.900000px;}
.y55{bottom:147.600000px;}
.yae{bottom:149.040000px;}
.y110{bottom:155.340000px;}
.yce{bottom:165.240000px;}
.y88{bottom:165.600000px;}
.yad{bottom:167.400000px;}
.y54{bottom:168.300000px;}
.y10f{bottom:176.040000px;}
.ycd{bottom:185.940000px;}
.y87{bottom:186.300000px;}
.y53{bottom:189.000000px;}
.y23{bottom:193.860000px;}
.y10e{bottom:196.740000px;}
.ycc{bottom:206.310000px;}
.yf3{bottom:206.670000px;}
.y86{bottom:207.030000px;}
.y52{bottom:209.730000px;}
.yac{bottom:210.285000px;}
.y10d{bottom:217.470000px;}
.y22{bottom:223.050000px;}
.ycb{bottom:227.010000px;}
.yf2{bottom:227.370000px;}
.y85{bottom:227.730000px;}
.y51{bottom:230.430000px;}
.y10c{bottom:238.170000px;}
.y21{bottom:243.390000px;}
.yca{bottom:245.745000px;}
.yf1{bottom:248.070000px;}
.y84{bottom:248.430000px;}
.y50{bottom:251.130000px;}
.yab{bottom:252.945000px;}
.y10b{bottom:258.870000px;}
.y20{bottom:264.090000px;}
.yf0{bottom:268.410000px;}
.y115{bottom:268.770000px;}
.y83{bottom:269.130000px;}
.y4f{bottom:271.830000px;}
.y10a{bottom:279.570000px;}
.y1f{bottom:285.195000px;}
.yef{bottom:289.110000px;}
.y8d{bottom:289.470000px;}
.yc7{bottom:289.485000px;}
.y82{bottom:289.830000px;}
.y4e{bottom:292.530000px;}
.ya9{bottom:295.785000px;}
.y109{bottom:300.270000px;}
.y1e{bottom:305.535000px;}
.yee{bottom:307.845000px;}
.y81{bottom:310.530000px;}
.y4d{bottom:313.230000px;}
.y108{bottom:320.970000px;}
.y1d{bottom:326.235000px;}
.y80{bottom:331.230000px;}
.yc6{bottom:333.045000px;}
.y4c{bottom:333.930000px;}
.ya7{bottom:338.445000px;}
.y107{bottom:341.670000px;}
.y1c{bottom:347.295000px;}
.yed{bottom:350.685000px;}
.y114{bottom:351.570000px;}
.y7f{bottom:351.930000px;}
.y4b{bottom:354.630000px;}
.y106{bottom:362.010000px;}
.y1b{bottom:367.635000px;}
.y113{bottom:372.270000px;}
.y7e{bottom:372.630000px;}
.y4a{bottom:375.330000px;}
.yc5{bottom:375.885000px;}
.y105{bottom:382.710000px;}
.ya6{bottom:385.770000px;}
.y1a{bottom:388.335000px;}
.y7d{bottom:393.330000px;}
.yec{bottom:393.345000px;}
.y49{bottom:396.030000px;}
.y104{bottom:403.770000px;}
.ya5{bottom:406.110000px;}
.y19{bottom:409.395000px;}
.y7c{bottom:414.030000px;}
.y48{bottom:416.730000px;}
.yc4{bottom:418.545000px;}
.y103{bottom:424.470000px;}
.ya4{bottom:427.170000px;}
.y18{bottom:430.095000px;}
.y7b{bottom:434.730000px;}
.yeb{bottom:436.185000px;}
.y47{bottom:437.430000px;}
.y102{bottom:445.215000px;}
.ya3{bottom:447.915000px;}
.y17{bottom:450.435000px;}
.y8c{bottom:455.115000px;}
.y7a{bottom:455.475000px;}
.y46{bottom:458.175000px;}
.yc3{bottom:461.415000px;}
.y101{bottom:465.915000px;}
.ya2{bottom:468.615000px;}
.y8b{bottom:475.815000px;}
.y79{bottom:476.175000px;}
.y45{bottom:478.875000px;}
.y100{bottom:486.615000px;}
.ya1{bottom:489.315000px;}
.y8f{bottom:496.515000px;}
.y78{bottom:496.875000px;}
.y44{bottom:499.575000px;}
.yff{bottom:506.955000px;}
.yc2{bottom:508.575000px;}
.ya0{bottom:510.015000px;}
.y77{bottom:517.575000px;}
.y43{bottom:520.275000px;}
.ye8{bottom:527.115000px;}
.yfe{bottom:527.655000px;}
.yc1{bottom:528.915000px;}
.y9f{bottom:530.715000px;}
.y76{bottom:538.275000px;}
.y42{bottom:540.975000px;}
.yfd{bottom:546.375000px;}
.ye7{bottom:547.455000px;}
.y13{bottom:549.540000px;}
.yc0{bottom:549.615000px;}
.y9e{bottom:551.415000px;}
.y91{bottom:558.615000px;}
.y75{bottom:558.975000px;}
.y41{bottom:561.675000px;}
.ye6{bottom:568.155000px;}
.ybf{bottom:570.315000px;}
.y9d{bottom:572.115000px;}
.y90{bottom:579.315000px;}
.y74{bottom:579.675000px;}
.y40{bottom:582.375000px;}
.ye5{bottom:588.855000px;}
.yfc{bottom:589.215000px;}
.ybe{bottom:591.375000px;}
.y9c{bottom:592.815000px;}
.y73{bottom:600.375000px;}
.y3f{bottom:602.715000px;}
.ye4{bottom:609.915000px;}
.y9b{bottom:611.175000px;}
.ybd{bottom:612.075000px;}
.y72{bottom:621.075000px;}
.y3e{bottom:623.775000px;}
.ye3{bottom:630.615000px;}
.yfb{bottom:631.875000px;}
.ybc{bottom:632.775000px;}
.y71{bottom:641.775000px;}
.y3d{bottom:644.475000px;}
.ye2{bottom:651.315000px;}
.ybb{bottom:653.475000px;}
.y99{bottom:654.015000px;}
.y70{bottom:662.475000px;}
.y3c{bottom:665.175000px;}
.ye1{bottom:672.015000px;}
.yba{bottom:674.175000px;}
.yfa{bottom:674.715000px;}
.y6f{bottom:683.205000px;}
.y3b{bottom:685.545000px;}
.ye0{bottom:692.745000px;}
.yb9{bottom:694.905000px;}
.y97{bottom:696.705000px;}
.yc{bottom:702.540000px;}
.y6e{bottom:703.905000px;}
.y3a{bottom:706.605000px;}
.y4{bottom:707.550000px;}
.ydf{bottom:713.445000px;}
.yb8{bottom:715.605000px;}
.yf9{bottom:717.405000px;}
.y6d{bottom:724.605000px;}
.y39{bottom:727.305000px;}
.yde{bottom:733.785000px;}
.yb7{bottom:736.305000px;}
.y95{bottom:739.545000px;}
.y3{bottom:743.730000px;}
.y6c{bottom:745.305000px;}
.y38{bottom:748.005000px;}
.ydd{bottom:754.485000px;}
.yb6{bottom:754.845000px;}
.yf8{bottom:760.245000px;}
.yf{bottom:761.370000px;}
.y6b{bottom:766.005000px;}
.y37{bottom:768.705000px;}
.ydc{bottom:773.205000px;}
.y94{bottom:786.345000px;}
.y6a{bottom:786.705000px;}
.y36{bottom:789.405000px;}
.yb5{bottom:797.505000px;}
.y93{bottom:807.045000px;}
.y69{bottom:807.405000px;}
.y35{bottom:810.105000px;}
.yd9{bottom:816.045000px;}
.y92{bottom:827.745000px;}
.y68{bottom:828.105000px;}
.y34{bottom:830.805000px;}
.yb4{bottom:840.345000px;}
.ya{bottom:843.300000px;}
.yf7{bottom:848.445000px;}
.y67{bottom:848.805000px;}
.y33{bottom:851.505000px;}
.yd8{bottom:859.605000px;}
.y116{bottom:869.145000px;}
.y66{bottom:869.505000px;}
.y32{bottom:872.205000px;}
.yb3{bottom:883.005000px;}
.y65{bottom:890.205000px;}
.y31{bottom:892.725000px;}
.yd6{bottom:902.445000px;}
.y64{bottom:910.950000px;}
.y30{bottom:913.470000px;}
.yb2{bottom:925.890000px;}
.y63{bottom:931.650000px;}
.y2f{bottom:934.170000px;}
.yd5{bottom:945.150000px;}
.y62{bottom:952.350000px;}
.y2e{bottom:954.870000px;}
.y61{bottom:973.050000px;}
.y2d{bottom:975.570000px;}
.yd4{bottom:987.990000px;}
.yb1{bottom:993.390000px;}
.y60{bottom:993.750000px;}
.y2c{bottom:996.270000px;}
.yb0{bottom:1014.090000px;}
.y5f{bottom:1014.450000px;}
.y2b{bottom:1016.970000px;}
.yf6{bottom:1034.790000px;}
.y5e{bottom:1035.150000px;}
.y2a{bottom:1037.670000px;}
.yd3{bottom:1055.490000px;}
.y5d{bottom:1055.850000px;}
.y29{bottom:1058.370000px;}
.yd2{bottom:1076.190000px;}
.y5c{bottom:1076.550000px;}
.y28{bottom:1079.070000px;}
.yd1{bottom:1096.890000px;}
.y5b{bottom:1097.250000px;}
.y27{bottom:1099.770000px;}
.y5a{bottom:1117.950000px;}
.y26{bottom:1120.470000px;}
.y8e{bottom:1138.290000px;}
.y59{bottom:1138.650000px;}
.y25{bottom:1140.630000px;}
.y57{bottom:1145.880000px;}
.h8{height:30.912187px;}
.h9{height:34.920000px;}
.h18{height:37.980000px;}
.h1c{height:40.485000px;}
.h1a{height:40.500000px;}
.h1e{height:40.521000px;}
.h1b{height:40.530000px;}
.h1d{height:40.536000px;}
.h1f{height:41.385000px;}
.h20{height:41.400000px;}
.h7{height:49.675781px;}
.h6{height:49.746094px;}
.h5{height:49.845586px;}
.hf{height:51.328125px;}
.h2{height:52.998047px;}
.h10{height:57.600000px;}
.h4{height:61.200000px;}
.h3{height:62.184375px;}
.hd{height:68.266406px;}
.h13{height:70.664062px;}
.h14{height:70.805391px;}
.h12{height:72.562500px;}
.ha{height:84.898125px;}
.h19{height:85.043250px;}
.h11{height:96.508125px;}
.he{height:99.687656px;}
.hc{height:102.656250px;}
.hb{height:124.200000px;}
.h15{height:280.080000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h16{height:1262.880000px;}
.h17{height:1263.000000px;}
.w18{width:105.825000px;}
.w15{width:118.836000px;}
.w17{width:120.621000px;}
.w14{width:127.071000px;}
.w16{width:148.536000px;}
.w12{width:156.405000px;}
.w13{width:160.035000px;}
.wf{width:163.650000px;}
.w10{width:165.435000px;}
.wa{width:171.030000px;}
.wb{width:171.195000px;}
.wc{width:173.730000px;}
.w9{width:178.020000px;}
.wd{width:187.770000px;}
.w3{width:264.420000px;}
.we{width:294.150000px;}
.w11{width:306.615000px;}
.w2{width:415.980000px;}
.w4{width:545.940000px;}
.w6{width:585.360000px;}
.w5{width:759.600000px;}
.w7{width:892.980000px;}
.w8{width:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.x4{left:10.830000px;}
.xb{left:21.240000px;}
.xa{left:24.840000px;}
.x12{left:31.935000px;}
.x6{left:37.080000px;}
.x9{left:42.510000px;}
.x7{left:59.760000px;}
.x2{left:108.000000px;}
.x13{left:133.956000px;}
.x10{left:135.036000px;}
.x3{left:172.800000px;}
.x8{left:184.500000px;}
.x23{left:189.030000px;}
.x1f{left:262.110000px;}
.xc{left:268.770000px;}
.x5{left:302.250000px;}
.x15{left:306.075000px;}
.x17{left:308.775000px;}
.x19{left:322.815000px;}
.x11{left:345.420000px;}
.x20{left:382.035000px;}
.x1b{left:429.195000px;}
.x1d{left:441.660000px;}
.x16{left:478.200000px;}
.x18{left:480.900000px;}
.x1a{left:494.940000px;}
.x21{left:531.660000px;}
.x1c{left:593.760000px;}
.x1e{left:599.160000px;}
.xe{left:631.800000px;}
.xd{left:642.705000px;}
.x22{left:653.370000px;}
.xf{left:731.130000px;}
.x1{left:1128.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-5.440000pt;}
.ls6{letter-spacing:-4.544000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ws1{word-spacing:-85.153280pt;}
.ws3{word-spacing:-85.120000pt;}
.wsc{word-spacing:-36.480000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.032000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-11.456000pt;}
.ws2{word-spacing:-0.085120pt;}
.ws4{word-spacing:0.000000pt;}
._2f{margin-left:-8.512000pt;}
._5{margin-left:-7.338240pt;}
._6{margin-left:-5.917312pt;}
._2{margin-left:-4.861312pt;}
._7{margin-left:-3.960064pt;}
._3{margin-left:-2.298624pt;}
._0{margin-left:-1.346688pt;}
._4{width:1.562624pt;}
._12{width:3.249280pt;}
._1{width:4.817408pt;}
._8{width:6.553259pt;}
._d{width:7.680000pt;}
._e{width:8.768000pt;}
._14{width:9.669461pt;}
._13{width:10.626688pt;}
._15{width:11.904000pt;}
._16{width:12.840064pt;}
._1e{width:14.018688pt;}
._1b{width:15.104000pt;}
._c{width:16.957312pt;}
._b{width:17.858688pt;}
._19{width:19.434667pt;}
._1a{width:21.103957pt;}
._9{width:22.016000pt;}
._a{width:23.056128pt;}
._f{width:24.192000pt;}
._1d{width:25.576064pt;}
._17{width:26.624000pt;}
._18{width:27.829333pt;}
._1c{width:28.877355pt;}
._10{width:30.144000pt;}
._11{width:31.280043pt;}
._21{width:33.152000pt;}
._22{width:34.306688pt;}
._23{width:35.545259pt;}
._24{width:36.862976pt;}
._26{width:38.528000pt;}
._27{width:39.464064pt;}
._2d{width:40.386688pt;}
._1f{width:47.488000pt;}
._20{width:48.512000pt;}
._29{width:49.952000pt;}
._2e{width:51.424000pt;}
._32{width:52.589440pt;}
._25{width:57.213312pt;}
._31{width:59.264000pt;}
._28{width:80.512000pt;}
._30{width:91.840000pt;}
._2c{width:102.394624pt;}
._2a{width:193.664000pt;}
._2b{width:195.008000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y16{bottom:-11.586667pt;}
.y12{bottom:-9.306667pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:3.680000pt;}
.yc9{bottom:3.986667pt;}
.ydb{bottom:4.000000pt;}
.y9{bottom:4.480000pt;}
.y11{bottom:6.853333pt;}
.yb{bottom:8.320000pt;}
.y24{bottom:8.666667pt;}
.y58{bottom:9.920000pt;}
.y15{bottom:12.413333pt;}
.y7{bottom:19.040000pt;}
.ya8{bottom:21.266667pt;}
.y96{bottom:21.280000pt;}
.yaa{bottom:21.586667pt;}
.y98{bottom:21.600000pt;}
.y9a{bottom:21.626667pt;}
.yd7{bottom:21.640000pt;}
.ye9{bottom:22.080000pt;}
.yc8{bottom:22.386667pt;}
.yda{bottom:22.400000pt;}
.y10{bottom:26.853333pt;}
.y14{bottom:33.853333pt;}
.y6{bottom:37.792000pt;}
.y2{bottom:50.720000pt;}
.ye{bottom:52.293333pt;}
.y5{bottom:57.280000pt;}
.y1{bottom:64.640000pt;}
.y8{bottom:76.320000pt;}
.yd{bottom:79.813333pt;}
.y112{bottom:101.280000pt;}
.yf5{bottom:109.760000pt;}
.yd0{bottom:110.080000pt;}
.y8a{bottom:110.400000pt;}
.y56{bottom:112.800000pt;}
.yaf{bottom:114.080000pt;}
.y111{bottom:119.680000pt;}
.yf4{bottom:128.160000pt;}
.ycf{bottom:128.480000pt;}
.y89{bottom:128.800000pt;}
.y55{bottom:131.200000pt;}
.yae{bottom:132.480000pt;}
.y110{bottom:138.080000pt;}
.yce{bottom:146.880000pt;}
.y88{bottom:147.200000pt;}
.yad{bottom:148.800000pt;}
.y54{bottom:149.600000pt;}
.y10f{bottom:156.480000pt;}
.ycd{bottom:165.280000pt;}
.y87{bottom:165.600000pt;}
.y53{bottom:168.000000pt;}
.y23{bottom:172.320000pt;}
.y10e{bottom:174.880000pt;}
.ycc{bottom:183.386667pt;}
.yf3{bottom:183.706667pt;}
.y86{bottom:184.026667pt;}
.y52{bottom:186.426667pt;}
.yac{bottom:186.920000pt;}
.y10d{bottom:193.306667pt;}
.y22{bottom:198.266667pt;}
.ycb{bottom:201.786667pt;}
.yf2{bottom:202.106667pt;}
.y85{bottom:202.426667pt;}
.y51{bottom:204.826667pt;}
.y10c{bottom:211.706667pt;}
.y21{bottom:216.346667pt;}
.yca{bottom:218.440000pt;}
.yf1{bottom:220.506667pt;}
.y84{bottom:220.826667pt;}
.y50{bottom:223.226667pt;}
.yab{bottom:224.840000pt;}
.y10b{bottom:230.106667pt;}
.y20{bottom:234.746667pt;}
.yf0{bottom:238.586667pt;}
.y115{bottom:238.906667pt;}
.y83{bottom:239.226667pt;}
.y4f{bottom:241.626667pt;}
.y10a{bottom:248.506667pt;}
.y1f{bottom:253.506667pt;}
.yef{bottom:256.986667pt;}
.y8d{bottom:257.306667pt;}
.yc7{bottom:257.320000pt;}
.y82{bottom:257.626667pt;}
.y4e{bottom:260.026667pt;}
.ya9{bottom:262.920000pt;}
.y109{bottom:266.906667pt;}
.y1e{bottom:271.586667pt;}
.yee{bottom:273.640000pt;}
.y81{bottom:276.026667pt;}
.y4d{bottom:278.426667pt;}
.y108{bottom:285.306667pt;}
.y1d{bottom:289.986667pt;}
.y80{bottom:294.426667pt;}
.yc6{bottom:296.040000pt;}
.y4c{bottom:296.826667pt;}
.ya7{bottom:300.840000pt;}
.y107{bottom:303.706667pt;}
.y1c{bottom:308.706667pt;}
.yed{bottom:311.720000pt;}
.y114{bottom:312.506667pt;}
.y7f{bottom:312.826667pt;}
.y4b{bottom:315.226667pt;}
.y106{bottom:321.786667pt;}
.y1b{bottom:326.786667pt;}
.y113{bottom:330.906667pt;}
.y7e{bottom:331.226667pt;}
.y4a{bottom:333.626667pt;}
.yc5{bottom:334.120000pt;}
.y105{bottom:340.186667pt;}
.ya6{bottom:342.906667pt;}
.y1a{bottom:345.186667pt;}
.y7d{bottom:349.626667pt;}
.yec{bottom:349.640000pt;}
.y49{bottom:352.026667pt;}
.y104{bottom:358.906667pt;}
.ya5{bottom:360.986667pt;}
.y19{bottom:363.906667pt;}
.y7c{bottom:368.026667pt;}
.y48{bottom:370.426667pt;}
.yc4{bottom:372.040000pt;}
.y103{bottom:377.306667pt;}
.ya4{bottom:379.706667pt;}
.y18{bottom:382.306667pt;}
.y7b{bottom:386.426667pt;}
.yeb{bottom:387.720000pt;}
.y47{bottom:388.826667pt;}
.y102{bottom:395.746667pt;}
.ya3{bottom:398.146667pt;}
.y17{bottom:400.386667pt;}
.y8c{bottom:404.546667pt;}
.y7a{bottom:404.866667pt;}
.y46{bottom:407.266667pt;}
.yc3{bottom:410.146667pt;}
.y101{bottom:414.146667pt;}
.ya2{bottom:416.546667pt;}
.y8b{bottom:422.946667pt;}
.y79{bottom:423.266667pt;}
.y45{bottom:425.666667pt;}
.y100{bottom:432.546667pt;}
.ya1{bottom:434.946667pt;}
.y8f{bottom:441.346667pt;}
.y78{bottom:441.666667pt;}
.y44{bottom:444.066667pt;}
.yff{bottom:450.626667pt;}
.yc2{bottom:452.066667pt;}
.ya0{bottom:453.346667pt;}
.y77{bottom:460.066667pt;}
.y43{bottom:462.466667pt;}
.ye8{bottom:468.546667pt;}
.yfe{bottom:469.026667pt;}
.yc1{bottom:470.146667pt;}
.y9f{bottom:471.746667pt;}
.y76{bottom:478.466667pt;}
.y42{bottom:480.866667pt;}
.yfd{bottom:485.666667pt;}
.ye7{bottom:486.626667pt;}
.y13{bottom:488.480000pt;}
.yc0{bottom:488.546667pt;}
.y9e{bottom:490.146667pt;}
.y91{bottom:496.546667pt;}
.y75{bottom:496.866667pt;}
.y41{bottom:499.266667pt;}
.ye6{bottom:505.026667pt;}
.ybf{bottom:506.946667pt;}
.y9d{bottom:508.546667pt;}
.y90{bottom:514.946667pt;}
.y74{bottom:515.266667pt;}
.y40{bottom:517.666667pt;}
.ye5{bottom:523.426667pt;}
.yfc{bottom:523.746667pt;}
.ybe{bottom:525.666667pt;}
.y9c{bottom:526.946667pt;}
.y73{bottom:533.666667pt;}
.y3f{bottom:535.746667pt;}
.ye4{bottom:542.146667pt;}
.y9b{bottom:543.266667pt;}
.ybd{bottom:544.066667pt;}
.y72{bottom:552.066667pt;}
.y3e{bottom:554.466667pt;}
.ye3{bottom:560.546667pt;}
.yfb{bottom:561.666667pt;}
.ybc{bottom:562.466667pt;}
.y71{bottom:570.466667pt;}
.y3d{bottom:572.866667pt;}
.ye2{bottom:578.946667pt;}
.ybb{bottom:580.866667pt;}
.y99{bottom:581.346667pt;}
.y70{bottom:588.866667pt;}
.y3c{bottom:591.266667pt;}
.ye1{bottom:597.346667pt;}
.yba{bottom:599.266667pt;}
.yfa{bottom:599.746667pt;}
.y6f{bottom:607.293333pt;}
.y3b{bottom:609.373333pt;}
.ye0{bottom:615.773333pt;}
.yb9{bottom:617.693333pt;}
.y97{bottom:619.293333pt;}
.yc{bottom:624.480000pt;}
.y6e{bottom:625.693333pt;}
.y3a{bottom:628.093333pt;}
.y4{bottom:628.933333pt;}
.ydf{bottom:634.173333pt;}
.yb8{bottom:636.093333pt;}
.yf9{bottom:637.693333pt;}
.y6d{bottom:644.093333pt;}
.y39{bottom:646.493333pt;}
.yde{bottom:652.253333pt;}
.yb7{bottom:654.493333pt;}
.y95{bottom:657.373333pt;}
.y3{bottom:661.093333pt;}
.y6c{bottom:662.493333pt;}
.y38{bottom:664.893333pt;}
.ydd{bottom:670.653333pt;}
.yb6{bottom:670.973333pt;}
.yf8{bottom:675.773333pt;}
.yf{bottom:676.773333pt;}
.y6b{bottom:680.893333pt;}
.y37{bottom:683.293333pt;}
.ydc{bottom:687.293333pt;}
.y94{bottom:698.973333pt;}
.y6a{bottom:699.293333pt;}
.y36{bottom:701.693333pt;}
.yb5{bottom:708.893333pt;}
.y93{bottom:717.373333pt;}
.y69{bottom:717.693333pt;}
.y35{bottom:720.093333pt;}
.yd9{bottom:725.373333pt;}
.y92{bottom:735.773333pt;}
.y68{bottom:736.093333pt;}
.y34{bottom:738.493333pt;}
.yb4{bottom:746.973333pt;}
.ya{bottom:749.600000pt;}
.yf7{bottom:754.173333pt;}
.y67{bottom:754.493333pt;}
.y33{bottom:756.893333pt;}
.yd8{bottom:764.093333pt;}
.y116{bottom:772.573333pt;}
.y66{bottom:772.893333pt;}
.y32{bottom:775.293333pt;}
.yb3{bottom:784.893333pt;}
.y65{bottom:791.293333pt;}
.y31{bottom:793.533333pt;}
.yd6{bottom:802.173333pt;}
.y64{bottom:809.733333pt;}
.y30{bottom:811.973333pt;}
.yb2{bottom:823.013333pt;}
.y63{bottom:828.133333pt;}
.y2f{bottom:830.373333pt;}
.yd5{bottom:840.133333pt;}
.y62{bottom:846.533333pt;}
.y2e{bottom:848.773333pt;}
.y61{bottom:864.933333pt;}
.y2d{bottom:867.173333pt;}
.yd4{bottom:878.213333pt;}
.yb1{bottom:883.013333pt;}
.y60{bottom:883.333333pt;}
.y2c{bottom:885.573333pt;}
.yb0{bottom:901.413333pt;}
.y5f{bottom:901.733333pt;}
.y2b{bottom:903.973333pt;}
.yf6{bottom:919.813333pt;}
.y5e{bottom:920.133333pt;}
.y2a{bottom:922.373333pt;}
.yd3{bottom:938.213333pt;}
.y5d{bottom:938.533333pt;}
.y29{bottom:940.773333pt;}
.yd2{bottom:956.613333pt;}
.y5c{bottom:956.933333pt;}
.y28{bottom:959.173333pt;}
.yd1{bottom:975.013333pt;}
.y5b{bottom:975.333333pt;}
.y27{bottom:977.573333pt;}
.y5a{bottom:993.733333pt;}
.y26{bottom:995.973333pt;}
.y8e{bottom:1011.813333pt;}
.y59{bottom:1012.133333pt;}
.y25{bottom:1013.893333pt;}
.y57{bottom:1018.560000pt;}
.h8{height:27.477500pt;}
.h9{height:31.040000pt;}
.h18{height:33.760000pt;}
.h1c{height:35.986667pt;}
.h1a{height:36.000000pt;}
.h1e{height:36.018667pt;}
.h1b{height:36.026667pt;}
.h1d{height:36.032000pt;}
.h1f{height:36.786667pt;}
.h20{height:36.800000pt;}
.h7{height:44.156250pt;}
.h6{height:44.218750pt;}
.h5{height:44.307187pt;}
.hf{height:45.625000pt;}
.h2{height:47.109375pt;}
.h10{height:51.200000pt;}
.h4{height:54.400000pt;}
.h3{height:55.275000pt;}
.hd{height:60.681250pt;}
.h13{height:62.812500pt;}
.h14{height:62.938125pt;}
.h12{height:64.500000pt;}
.ha{height:75.465000pt;}
.h19{height:75.594000pt;}
.h11{height:85.785000pt;}
.he{height:88.611250pt;}
.hc{height:91.250000pt;}
.hb{height:110.400000pt;}
.h15{height:248.960000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h16{height:1122.560000pt;}
.h17{height:1122.666667pt;}
.w18{width:94.066667pt;}
.w15{width:105.632000pt;}
.w17{width:107.218667pt;}
.w14{width:112.952000pt;}
.w16{width:132.032000pt;}
.w12{width:139.026667pt;}
.w13{width:142.253333pt;}
.wf{width:145.466667pt;}
.w10{width:147.053333pt;}
.wa{width:152.026667pt;}
.wb{width:152.173333pt;}
.wc{width:154.426667pt;}
.w9{width:158.240000pt;}
.wd{width:166.906667pt;}
.w3{width:235.040000pt;}
.we{width:261.466667pt;}
.w11{width:272.546667pt;}
.w2{width:369.760000pt;}
.w4{width:485.280000pt;}
.w6{width:520.320000pt;}
.w5{width:675.200000pt;}
.w7{width:793.760000pt;}
.w8{width:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.x4{left:9.626667pt;}
.xb{left:18.880000pt;}
.xa{left:22.080000pt;}
.x12{left:28.386667pt;}
.x6{left:32.960000pt;}
.x9{left:37.786667pt;}
.x7{left:53.120000pt;}
.x2{left:96.000000pt;}
.x13{left:119.072000pt;}
.x10{left:120.032000pt;}
.x3{left:153.600000pt;}
.x8{left:164.000000pt;}
.x23{left:168.026667pt;}
.x1f{left:232.986667pt;}
.xc{left:238.906667pt;}
.x5{left:268.666667pt;}
.x15{left:272.066667pt;}
.x17{left:274.466667pt;}
.x19{left:286.946667pt;}
.x11{left:307.040000pt;}
.x20{left:339.586667pt;}
.x1b{left:381.506667pt;}
.x1d{left:392.586667pt;}
.x16{left:425.066667pt;}
.x18{left:427.466667pt;}
.x1a{left:439.946667pt;}
.x21{left:472.586667pt;}
.x1c{left:527.786667pt;}
.x1e{left:532.586667pt;}
.xe{left:561.600000pt;}
.xd{left:571.293333pt;}
.x22{left:580.773333pt;}
.xf{left:649.893333pt;}
.x1{left:1002.720000pt;}
}




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