
    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_7a577488eca5ca468191a190.woff')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_a41a2d036ca092f91e8cd974.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_fcc9ceee09e6bc51a15f887a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_86f25f1dee4f4c2d9188ea5f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1b563c26648e0519eb8f7a6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e99115ade15160b0e03e432c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32b851f388cc5d8e1ad5e29d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94302b2f6d909b8c73eaca92.woff')format("woff");}.ff8{font-family:ff8;line-height:1.125488;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);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v5{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.666000px;}
.ls13{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.004320px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.276480px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.365760px;}
.ls9{letter-spacing:0.542160px;}
.lsa{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.900000px;}
.ls17{letter-spacing:434.340000px;}
.ls7{letter-spacing:1148.880000px;}
.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;}
}
.ws6{word-spacing:-32.808240px;}
.wsa{word-spacing:-15.768000px;}
.ws3{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.274000px;}
.ws0{word-spacing:-13.447440px;}
.ws7{word-spacing:-9.732960px;}
.ws9{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.715680px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-3.824640px;}
._c{margin-left:-2.330640px;}
._8{margin-left:-1.012560px;}
._1{width:1.015920px;}
._3{width:2.085120px;}
._4{width:3.131760px;}
._5{width:4.380240px;}
._b{width:5.564160px;}
._9{width:6.991920px;}
._a{width:8.054640px;}
._6{width:9.083520px;}
._7{width:10.517760px;}
._12{width:11.809920px;}
._13{width:13.266720px;}
._15{width:16.613280px;}
._1a{width:17.868240px;}
._f{width:19.123200px;}
._16{width:20.258640px;}
._17{width:21.931920px;}
._10{width:23.485680px;}
._d{width:24.498240px;}
._e{width:25.524240px;}
._1f{width:26.640000px;}
._14{width:27.848160px;}
._1b{width:30.298320px;}
._1c{width:31.440240px;}
._20{width:63.883440px;}
._1d{width:68.425200px;}
._1e{width:94.839120px;}
._21{width:849.216000px;}
._2{width:1131.344400px;}
._18{width:1732.050240px;}
._19{width:1733.318160px;}
._0{width:1762.290240px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.600000px;}
.y64{bottom:3.630000px;}
.y71{bottom:3.645000px;}
.y49{bottom:4.140000px;}
.y4d{bottom:4.500000px;}
.y6d{bottom:11.700000px;}
.y6c{bottom:12.240000px;}
.y61{bottom:12.600000px;}
.y51{bottom:20.880000px;}
.y48{bottom:21.240000px;}
.y4c{bottom:21.600000px;}
.y50{bottom:38.160000px;}
.y40{bottom:91.800000px;}
.yce{bottom:92.700000px;}
.ya0{bottom:103.140000px;}
.y3f{bottom:109.080000px;}
.ycd{bottom:109.800000px;}
.yd9{bottom:111.060000px;}
.y9e{bottom:120.420000px;}
.y3d{bottom:126.360000px;}
.ycc{bottom:127.080000px;}
.yd8{bottom:128.160000px;}
.y9d{bottom:137.700000px;}
.y3c{bottom:143.460000px;}
.ycb{bottom:144.360000px;}
.yd7{bottom:145.440000px;}
.y7f{bottom:145.620000px;}
.y9c{bottom:154.980000px;}
.y3e{bottom:160.410000px;}
.y3b{bottom:160.770000px;}
.yca{bottom:161.670000px;}
.yd6{bottom:162.750000px;}
.y7e{bottom:162.930000px;}
.y9b{bottom:172.110000px;}
.y3a{bottom:178.050000px;}
.yc9{bottom:178.950000px;}
.yd5{bottom:180.030000px;}
.y7d{bottom:180.210000px;}
.y9a{bottom:189.390000px;}
.y39{bottom:195.330000px;}
.yc8{bottom:196.050000px;}
.yd4{bottom:197.310000px;}
.y7c{bottom:197.490000px;}
.y99{bottom:206.310000px;}
.y9f{bottom:206.670000px;}
.y38{bottom:212.610000px;}
.yc7{bottom:213.330000px;}
.yd3{bottom:214.590000px;}
.y7b{bottom:214.770000px;}
.y98{bottom:223.950000px;}
.y37{bottom:229.890000px;}
.yc6{bottom:230.610000px;}
.yd2{bottom:231.690000px;}
.y7a{bottom:231.870000px;}
.y97{bottom:241.230000px;}
.y36{bottom:246.990000px;}
.yc5{bottom:248.970000px;}
.y79{bottom:249.150000px;}
.y96{bottom:258.510000px;}
.y35{bottom:264.270000px;}
.yc4{bottom:266.250000px;}
.y78{bottom:266.430000px;}
.y95{bottom:272.010000px;}
.y34{bottom:281.550000px;}
.yc3{bottom:283.530000px;}
.y77{bottom:283.710000px;}
.y33{bottom:298.830000px;}
.yc2{bottom:300.810000px;}
.y76{bottom:300.990000px;}
.y32{bottom:316.110000px;}
.y75{bottom:318.090000px;}
.y31{bottom:333.210000px;}
.y74{bottom:335.010000px;}
.yc1{bottom:335.190000px;}
.y82{bottom:335.370000px;}
.y30{bottom:350.490000px;}
.y73{bottom:352.290000px;}
.yc0{bottom:352.470000px;}
.y81{bottom:352.650000px;}
.y2f{bottom:367.770000px;}
.y72{bottom:369.570000px;}
.ybf{bottom:369.750000px;}
.y80{bottom:369.930000px;}
.y103{bottom:381.090000px;}
.y2e{bottom:385.050000px;}
.ybe{bottom:387.030000px;}
.y101{bottom:398.370000px;}
.y70{bottom:401.610000px;}
.y2d{bottom:402.330000px;}
.ybd{bottom:404.310000px;}
.y100{bottom:415.695000px;}
.y2c{bottom:419.655000px;}
.ybc{bottom:421.455000px;}
.yff{bottom:432.975000px;}
.y2b{bottom:436.755000px;}
.y6f{bottom:437.655000px;}
.ybb{bottom:438.735000px;}
.yfe{bottom:450.255000px;}
.y2a{bottom:454.035000px;}
.y6e{bottom:455.655000px;}
.yba{bottom:456.015000px;}
.yfd{bottom:467.535000px;}
.y29{bottom:471.315000px;}
.yb9{bottom:473.295000px;}
.y6b{bottom:473.655000px;}
.yfc{bottom:484.635000px;}
.y28{bottom:488.595000px;}
.yb8{bottom:490.575000px;}
.yfb{bottom:501.915000px;}
.y27{bottom:505.875000px;}
.yb7{bottom:507.855000px;}
.y6a{bottom:512.535000px;}
.yfa{bottom:519.195000px;}
.y26{bottom:523.155000px;}
.yb6{bottom:524.955000px;}
.yf9{bottom:536.475000px;}
.y25{bottom:540.255000px;}
.yb5{bottom:542.235000px;}
.y69{bottom:546.915000px;}
.yf8{bottom:553.755000px;}
.y24{bottom:557.535000px;}
.yb4{bottom:559.515000px;}
.y68{bottom:564.195000px;}
.yf7{bottom:571.035000px;}
.y23{bottom:574.815000px;}
.yb3{bottom:576.435000px;}
.yd1{bottom:576.795000px;}
.y67{bottom:581.475000px;}
.yf6{bottom:588.135000px;}
.y22{bottom:592.095000px;}
.yb2{bottom:593.715000px;}
.yd0{bottom:594.075000px;}
.y66{bottom:598.755000px;}
.y93{bottom:604.155000px;}
.yf5{bottom:605.415000px;}
.y21{bottom:609.375000px;}
.yb1{bottom:611.355000px;}
.y65{bottom:616.035000px;}
.y92{bottom:621.435000px;}
.yf4{bottom:622.695000px;}
.y20{bottom:626.295000px;}
.yb0{bottom:628.455000px;}
.y91{bottom:638.715000px;}
.yf3{bottom:639.975000px;}
.y1f{bottom:643.755000px;}
.yaf{bottom:645.735000px;}
.y63{bottom:647.535000px;}
.y90{bottom:655.845000px;}
.yf2{bottom:657.285000px;}
.y1e{bottom:661.065000px;}
.yae{bottom:663.045000px;}
.y60{bottom:665.565000px;}
.y8f{bottom:673.125000px;}
.yf1{bottom:674.385000px;}
.y1d{bottom:677.985000px;}
.yad{bottom:680.325000px;}
.y62{bottom:683.565000px;}
.y8e{bottom:690.405000px;}
.yf0{bottom:691.665000px;}
.y1c{bottom:695.625000px;}
.yac{bottom:697.605000px;}
.y5f{bottom:705.165000px;}
.y8d{bottom:707.685000px;}
.yef{bottom:708.945000px;}
.y1b{bottom:712.905000px;}
.yab{bottom:714.705000px;}
.y5e{bottom:722.445000px;}
.y8c{bottom:724.965000px;}
.yee{bottom:726.225000px;}
.y1a{bottom:730.005000px;}
.yaa{bottom:731.985000px;}
.y5d{bottom:739.725000px;}
.y8b{bottom:742.245000px;}
.yed{bottom:743.505000px;}
.y19{bottom:747.285000px;}
.ya9{bottom:749.265000px;}
.y5c{bottom:757.005000px;}
.y8a{bottom:759.345000px;}
.yec{bottom:760.785000px;}
.y18{bottom:764.565000px;}
.ya8{bottom:766.545000px;}
.y5b{bottom:774.285000px;}
.y89{bottom:776.625000px;}
.yeb{bottom:777.885000px;}
.y17{bottom:781.845000px;}
.ya7{bottom:783.825000px;}
.y5a{bottom:791.385000px;}
.y88{bottom:793.905000px;}
.yea{bottom:795.165000px;}
.y16{bottom:799.125000px;}
.ya6{bottom:801.105000px;}
.y59{bottom:808.665000px;}
.y87{bottom:811.185000px;}
.ye9{bottom:812.445000px;}
.y15{bottom:816.405000px;}
.ya5{bottom:818.205000px;}
.y58{bottom:825.945000px;}
.y86{bottom:828.105000px;}
.y94{bottom:828.465000px;}
.ye8{bottom:829.725000px;}
.y14{bottom:833.505000px;}
.ycf{bottom:835.125000px;}
.ya4{bottom:835.485000px;}
.y57{bottom:843.225000px;}
.y85{bottom:845.385000px;}
.ye7{bottom:847.005000px;}
.y13{bottom:850.785000px;}
.ya3{bottom:852.765000px;}
.y56{bottom:860.505000px;}
.y84{bottom:862.845000px;}
.ye6{bottom:864.285000px;}
.y12{bottom:867.705000px;}
.ya2{bottom:870.045000px;}
.y83{bottom:876.525000px;}
.y55{bottom:877.785000px;}
.ye5{bottom:881.385000px;}
.ya1{bottom:883.725000px;}
.y11{bottom:885.345000px;}
.y54{bottom:894.885000px;}
.ye4{bottom:898.710000px;}
.y10{bottom:902.670000px;}
.y53{bottom:912.210000px;}
.ye3{bottom:915.990000px;}
.yf{bottom:919.950000px;}
.y52{bottom:929.490000px;}
.ye2{bottom:933.270000px;}
.ye{bottom:937.050000px;}
.ye1{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.y4f{bottom:961.170000px;}
.ye0{bottom:967.830000px;}
.yc{bottom:971.250000px;}
.ydf{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.yde{bottom:1002.210000px;}
.ya{bottom:1005.810000px;}
.y4e{bottom:1013.550000px;}
.ydd{bottom:1019.490000px;}
.y9{bottom:1023.450000px;}
.y47{bottom:1031.550000px;}
.ydc{bottom:1036.770000px;}
.y8{bottom:1040.190000px;}
.y4a{bottom:1049.550000px;}
.ydb{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y46{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.y102{bottom:1088.070000px;}
.yda{bottom:1088.430000px;}
.y45{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y44{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y43{bottom:1140.270000px;}
.y3{bottom:1143.720000px;}
.y42{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y41{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h9{height:17.280000px;}
.hb{height:17.316000px;}
.hc{height:34.380000px;}
.h8{height:35.280000px;}
.ha{height:51.660000px;}
.h7{height:52.669336px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.hd{height:59.038594px;}
.he{height:59.158594px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:58.860000px;}
.w9{width:66.816000px;}
.w8{width:66.960000px;}
.wa{width:67.536000px;}
.w6{width:73.800000px;}
.w4{width:93.636000px;}
.w13{width:101.376000px;}
.w12{width:101.880000px;}
.w16{width:105.696000px;}
.w3{width:107.820000px;}
.w17{width:109.080000px;}
.we{width:113.976000px;}
.w14{width:125.640000px;}
.wf{width:127.296000px;}
.w10{width:127.440000px;}
.w15{width:127.656000px;}
.w11{width:138.456000px;}
.wc{width:167.040000px;}
.w5{width:397.695000px;}
.wd{width:509.325000px;}
.wb{width:675.105000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:7.920000px;}
.x20{left:16.200000px;}
.x21{left:18.180000px;}
.x26{left:19.620000px;}
.x29{left:21.600000px;}
.x23{left:22.680000px;}
.x2b{left:24.120000px;}
.x1a{left:28.260000px;}
.x2d{left:29.520000px;}
.x2c{left:30.960000px;}
.x3c{left:32.940000px;}
.x46{left:34.200000px;}
.x3d{left:35.640000px;}
.x1f{left:36.900000px;}
.x17{left:38.520000px;}
.x1b{left:40.500000px;}
.x18{left:44.274000px;}
.x42{left:45.900000px;}
.x33{left:47.745000px;}
.x45{left:50.220000px;}
.x30{left:51.474000px;}
.x37{left:53.145000px;}
.x34{left:54.900000px;}
.x39{left:56.025000px;}
.x44{left:61.230000px;}
.x38{left:73.794000px;}
.x1d{left:99.540000px;}
.x1{left:106.415987px;}
.x16{left:108.936000px;}
.x11{left:136.115987px;}
.x4{left:138.455987px;}
.x15{left:139.715987px;}
.x3a{left:141.695987px;}
.xd{left:157.349987px;}
.x32{left:182.565000px;}
.x3b{left:211.710000px;}
.x19{left:217.470000px;}
.x2f{left:258.689987px;}
.x48{left:265.349987px;}
.x31{left:275.790000px;}
.x2a{left:307.119000px;}
.x2{left:308.594987px;}
.x4b{left:310.214987px;}
.x1c{left:311.835000px;}
.x3e{left:313.815000px;}
.xb{left:359.534987px;}
.x22{left:371.415000px;}
.x9{left:389.954987px;}
.x5{left:392.834987px;}
.x24{left:439.095000px;}
.x3f{left:440.175000px;}
.x14{left:446.474987px;}
.x13{left:457.274987px;}
.x3{left:461.414987px;}
.x12{left:487.004987px;}
.x7{left:495.824987px;}
.x25{left:506.625000px;}
.x35{left:518.505000px;}
.xf{left:537.944987px;}
.x40{left:568.545000px;}
.x27{left:574.305000px;}
.xe{left:621.644987px;}
.x28{left:641.985000px;}
.x36{left:646.665000px;}
.x41{left:674.970000px;}
.x8{left:695.849987px;}
.x6{left:708.449987px;}
.x1e{left:710.250000px;}
.xa{left:713.489987px;}
.xc{left:718.349987px;}
.x2e{left:737.429987px;}
.x4a{left:764.789987px;}
.x47{left:771.989987px;}
.x49{left:785.309987px;}
.x10{left:786.749987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v5{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.003840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.245760pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.325120pt;}
.ls9{letter-spacing:0.481920pt;}
.lsa{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls17{letter-spacing:386.080000pt;}
.ls7{letter-spacing:1021.226667pt;}
.ws6{word-spacing:-29.162880pt;}
.wsa{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.688000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws7{word-spacing:-8.651520pt;}
.ws9{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.636160pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-3.399680pt;}
._c{margin-left:-2.071680pt;}
._8{margin-left:-0.900053pt;}
._1{width:0.903040pt;}
._3{width:1.853440pt;}
._4{width:2.783787pt;}
._5{width:3.893547pt;}
._b{width:4.945920pt;}
._9{width:6.215040pt;}
._a{width:7.159680pt;}
._6{width:8.074240pt;}
._7{width:9.349120pt;}
._12{width:10.497707pt;}
._13{width:11.792640pt;}
._15{width:14.767360pt;}
._1a{width:15.882880pt;}
._f{width:16.998400pt;}
._16{width:18.007680pt;}
._17{width:19.495040pt;}
._10{width:20.876160pt;}
._d{width:21.776213pt;}
._e{width:22.688213pt;}
._1f{width:23.680000pt;}
._14{width:24.753920pt;}
._1b{width:26.931840pt;}
._1c{width:27.946880pt;}
._20{width:56.785280pt;}
._1d{width:60.822400pt;}
._1e{width:84.301440pt;}
._21{width:754.858667pt;}
._2{width:1005.639467pt;}
._18{width:1539.600213pt;}
._19{width:1540.727253pt;}
._0{width:1566.480213pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.200000pt;}
.y64{bottom:3.226667pt;}
.y71{bottom:3.240000pt;}
.y49{bottom:3.680000pt;}
.y4d{bottom:4.000000pt;}
.y6d{bottom:10.400000pt;}
.y6c{bottom:10.880000pt;}
.y61{bottom:11.200000pt;}
.y51{bottom:18.560000pt;}
.y48{bottom:18.880000pt;}
.y4c{bottom:19.200000pt;}
.y50{bottom:33.920000pt;}
.y40{bottom:81.600000pt;}
.yce{bottom:82.400000pt;}
.ya0{bottom:91.680000pt;}
.y3f{bottom:96.960000pt;}
.ycd{bottom:97.600000pt;}
.yd9{bottom:98.720000pt;}
.y9e{bottom:107.040000pt;}
.y3d{bottom:112.320000pt;}
.ycc{bottom:112.960000pt;}
.yd8{bottom:113.920000pt;}
.y9d{bottom:122.400000pt;}
.y3c{bottom:127.520000pt;}
.ycb{bottom:128.320000pt;}
.yd7{bottom:129.280000pt;}
.y7f{bottom:129.440000pt;}
.y9c{bottom:137.760000pt;}
.y3e{bottom:142.586667pt;}
.y3b{bottom:142.906667pt;}
.yca{bottom:143.706667pt;}
.yd6{bottom:144.666667pt;}
.y7e{bottom:144.826667pt;}
.y9b{bottom:152.986667pt;}
.y3a{bottom:158.266667pt;}
.yc9{bottom:159.066667pt;}
.yd5{bottom:160.026667pt;}
.y7d{bottom:160.186667pt;}
.y9a{bottom:168.346667pt;}
.y39{bottom:173.626667pt;}
.yc8{bottom:174.266667pt;}
.yd4{bottom:175.386667pt;}
.y7c{bottom:175.546667pt;}
.y99{bottom:183.386667pt;}
.y9f{bottom:183.706667pt;}
.y38{bottom:188.986667pt;}
.yc7{bottom:189.626667pt;}
.yd3{bottom:190.746667pt;}
.y7b{bottom:190.906667pt;}
.y98{bottom:199.066667pt;}
.y37{bottom:204.346667pt;}
.yc6{bottom:204.986667pt;}
.yd2{bottom:205.946667pt;}
.y7a{bottom:206.106667pt;}
.y97{bottom:214.426667pt;}
.y36{bottom:219.546667pt;}
.yc5{bottom:221.306667pt;}
.y79{bottom:221.466667pt;}
.y96{bottom:229.786667pt;}
.y35{bottom:234.906667pt;}
.yc4{bottom:236.666667pt;}
.y78{bottom:236.826667pt;}
.y95{bottom:241.786667pt;}
.y34{bottom:250.266667pt;}
.yc3{bottom:252.026667pt;}
.y77{bottom:252.186667pt;}
.y33{bottom:265.626667pt;}
.yc2{bottom:267.386667pt;}
.y76{bottom:267.546667pt;}
.y32{bottom:280.986667pt;}
.y75{bottom:282.746667pt;}
.y31{bottom:296.186667pt;}
.y74{bottom:297.786667pt;}
.yc1{bottom:297.946667pt;}
.y82{bottom:298.106667pt;}
.y30{bottom:311.546667pt;}
.y73{bottom:313.146667pt;}
.yc0{bottom:313.306667pt;}
.y81{bottom:313.466667pt;}
.y2f{bottom:326.906667pt;}
.y72{bottom:328.506667pt;}
.ybf{bottom:328.666667pt;}
.y80{bottom:328.826667pt;}
.y103{bottom:338.746667pt;}
.y2e{bottom:342.266667pt;}
.ybe{bottom:344.026667pt;}
.y101{bottom:354.106667pt;}
.y70{bottom:356.986667pt;}
.y2d{bottom:357.626667pt;}
.ybd{bottom:359.386667pt;}
.y100{bottom:369.506667pt;}
.y2c{bottom:373.026667pt;}
.ybc{bottom:374.626667pt;}
.yff{bottom:384.866667pt;}
.y2b{bottom:388.226667pt;}
.y6f{bottom:389.026667pt;}
.ybb{bottom:389.986667pt;}
.yfe{bottom:400.226667pt;}
.y2a{bottom:403.586667pt;}
.y6e{bottom:405.026667pt;}
.yba{bottom:405.346667pt;}
.yfd{bottom:415.586667pt;}
.y29{bottom:418.946667pt;}
.yb9{bottom:420.706667pt;}
.y6b{bottom:421.026667pt;}
.yfc{bottom:430.786667pt;}
.y28{bottom:434.306667pt;}
.yb8{bottom:436.066667pt;}
.yfb{bottom:446.146667pt;}
.y27{bottom:449.666667pt;}
.yb7{bottom:451.426667pt;}
.y6a{bottom:455.586667pt;}
.yfa{bottom:461.506667pt;}
.y26{bottom:465.026667pt;}
.yb6{bottom:466.626667pt;}
.yf9{bottom:476.866667pt;}
.y25{bottom:480.226667pt;}
.yb5{bottom:481.986667pt;}
.y69{bottom:486.146667pt;}
.yf8{bottom:492.226667pt;}
.y24{bottom:495.586667pt;}
.yb4{bottom:497.346667pt;}
.y68{bottom:501.506667pt;}
.yf7{bottom:507.586667pt;}
.y23{bottom:510.946667pt;}
.yb3{bottom:512.386667pt;}
.yd1{bottom:512.706667pt;}
.y67{bottom:516.866667pt;}
.yf6{bottom:522.786667pt;}
.y22{bottom:526.306667pt;}
.yb2{bottom:527.746667pt;}
.yd0{bottom:528.066667pt;}
.y66{bottom:532.226667pt;}
.y93{bottom:537.026667pt;}
.yf5{bottom:538.146667pt;}
.y21{bottom:541.666667pt;}
.yb1{bottom:543.426667pt;}
.y65{bottom:547.586667pt;}
.y92{bottom:552.386667pt;}
.yf4{bottom:553.506667pt;}
.y20{bottom:556.706667pt;}
.yb0{bottom:558.626667pt;}
.y91{bottom:567.746667pt;}
.yf3{bottom:568.866667pt;}
.y1f{bottom:572.226667pt;}
.yaf{bottom:573.986667pt;}
.y63{bottom:575.586667pt;}
.y90{bottom:582.973333pt;}
.yf2{bottom:584.253333pt;}
.y1e{bottom:587.613333pt;}
.yae{bottom:589.373333pt;}
.y60{bottom:591.613333pt;}
.y8f{bottom:598.333333pt;}
.yf1{bottom:599.453333pt;}
.y1d{bottom:602.653333pt;}
.yad{bottom:604.733333pt;}
.y62{bottom:607.613333pt;}
.y8e{bottom:613.693333pt;}
.yf0{bottom:614.813333pt;}
.y1c{bottom:618.333333pt;}
.yac{bottom:620.093333pt;}
.y5f{bottom:626.813333pt;}
.y8d{bottom:629.053333pt;}
.yef{bottom:630.173333pt;}
.y1b{bottom:633.693333pt;}
.yab{bottom:635.293333pt;}
.y5e{bottom:642.173333pt;}
.y8c{bottom:644.413333pt;}
.yee{bottom:645.533333pt;}
.y1a{bottom:648.893333pt;}
.yaa{bottom:650.653333pt;}
.y5d{bottom:657.533333pt;}
.y8b{bottom:659.773333pt;}
.yed{bottom:660.893333pt;}
.y19{bottom:664.253333pt;}
.ya9{bottom:666.013333pt;}
.y5c{bottom:672.893333pt;}
.y8a{bottom:674.973333pt;}
.yec{bottom:676.253333pt;}
.y18{bottom:679.613333pt;}
.ya8{bottom:681.373333pt;}
.y5b{bottom:688.253333pt;}
.y89{bottom:690.333333pt;}
.yeb{bottom:691.453333pt;}
.y17{bottom:694.973333pt;}
.ya7{bottom:696.733333pt;}
.y5a{bottom:703.453333pt;}
.y88{bottom:705.693333pt;}
.yea{bottom:706.813333pt;}
.y16{bottom:710.333333pt;}
.ya6{bottom:712.093333pt;}
.y59{bottom:718.813333pt;}
.y87{bottom:721.053333pt;}
.ye9{bottom:722.173333pt;}
.y15{bottom:725.693333pt;}
.ya5{bottom:727.293333pt;}
.y58{bottom:734.173333pt;}
.y86{bottom:736.093333pt;}
.y94{bottom:736.413333pt;}
.ye8{bottom:737.533333pt;}
.y14{bottom:740.893333pt;}
.ycf{bottom:742.333333pt;}
.ya4{bottom:742.653333pt;}
.y57{bottom:749.533333pt;}
.y85{bottom:751.453333pt;}
.ye7{bottom:752.893333pt;}
.y13{bottom:756.253333pt;}
.ya3{bottom:758.013333pt;}
.y56{bottom:764.893333pt;}
.y84{bottom:766.973333pt;}
.ye6{bottom:768.253333pt;}
.y12{bottom:771.293333pt;}
.ya2{bottom:773.373333pt;}
.y83{bottom:779.133333pt;}
.y55{bottom:780.253333pt;}
.ye5{bottom:783.453333pt;}
.ya1{bottom:785.533333pt;}
.y11{bottom:786.973333pt;}
.y54{bottom:795.453333pt;}
.ye4{bottom:798.853333pt;}
.y10{bottom:802.373333pt;}
.y53{bottom:810.853333pt;}
.ye3{bottom:814.213333pt;}
.yf{bottom:817.733333pt;}
.y52{bottom:826.213333pt;}
.ye2{bottom:829.573333pt;}
.ye{bottom:832.933333pt;}
.ye1{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.y4f{bottom:854.373333pt;}
.ye0{bottom:860.293333pt;}
.yc{bottom:863.333333pt;}
.ydf{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.yde{bottom:890.853333pt;}
.ya{bottom:894.053333pt;}
.y4e{bottom:900.933333pt;}
.ydd{bottom:906.213333pt;}
.y9{bottom:909.733333pt;}
.y47{bottom:916.933333pt;}
.ydc{bottom:921.573333pt;}
.y8{bottom:924.613333pt;}
.y4a{bottom:932.933333pt;}
.ydb{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y46{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.y102{bottom:967.173333pt;}
.yda{bottom:967.493333pt;}
.y45{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y44{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y43{bottom:1013.573333pt;}
.y3{bottom:1016.640000pt;}
.y42{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y41{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h9{height:15.360000pt;}
.hb{height:15.392000pt;}
.hc{height:30.560000pt;}
.h8{height:31.360000pt;}
.ha{height:45.920000pt;}
.h7{height:46.817187pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.hd{height:52.478750pt;}
.he{height:52.585417pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:52.320000pt;}
.w9{width:59.392000pt;}
.w8{width:59.520000pt;}
.wa{width:60.032000pt;}
.w6{width:65.600000pt;}
.w4{width:83.232000pt;}
.w13{width:90.112000pt;}
.w12{width:90.560000pt;}
.w16{width:93.952000pt;}
.w3{width:95.840000pt;}
.w17{width:96.960000pt;}
.we{width:101.312000pt;}
.w14{width:111.680000pt;}
.wf{width:113.152000pt;}
.w10{width:113.280000pt;}
.w15{width:113.472000pt;}
.w11{width:123.072000pt;}
.wc{width:148.480000pt;}
.w5{width:353.506667pt;}
.wd{width:452.733333pt;}
.wb{width:600.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:7.040000pt;}
.x20{left:14.400000pt;}
.x21{left:16.160000pt;}
.x26{left:17.440000pt;}
.x29{left:19.200000pt;}
.x23{left:20.160000pt;}
.x2b{left:21.440000pt;}
.x1a{left:25.120000pt;}
.x2d{left:26.240000pt;}
.x2c{left:27.520000pt;}
.x3c{left:29.280000pt;}
.x46{left:30.400000pt;}
.x3d{left:31.680000pt;}
.x1f{left:32.800000pt;}
.x17{left:34.240000pt;}
.x1b{left:36.000000pt;}
.x18{left:39.354667pt;}
.x42{left:40.800000pt;}
.x33{left:42.440000pt;}
.x45{left:44.640000pt;}
.x30{left:45.754667pt;}
.x37{left:47.240000pt;}
.x34{left:48.800000pt;}
.x39{left:49.800000pt;}
.x44{left:54.426667pt;}
.x38{left:65.594667pt;}
.x1d{left:88.480000pt;}
.x1{left:94.591988pt;}
.x16{left:96.832000pt;}
.x11{left:120.991988pt;}
.x4{left:123.071988pt;}
.x15{left:124.191988pt;}
.x3a{left:125.951988pt;}
.xd{left:139.866655pt;}
.x32{left:162.280000pt;}
.x3b{left:188.186667pt;}
.x19{left:193.306667pt;}
.x2f{left:229.946655pt;}
.x48{left:235.866655pt;}
.x31{left:245.146667pt;}
.x2a{left:272.994667pt;}
.x2{left:274.306655pt;}
.x4b{left:275.746655pt;}
.x1c{left:277.186667pt;}
.x3e{left:278.946667pt;}
.xb{left:319.586655pt;}
.x22{left:330.146667pt;}
.x9{left:346.626655pt;}
.x5{left:349.186655pt;}
.x24{left:390.306667pt;}
.x3f{left:391.266667pt;}
.x14{left:396.866655pt;}
.x13{left:406.466655pt;}
.x3{left:410.146655pt;}
.x12{left:432.893322pt;}
.x7{left:440.733322pt;}
.x25{left:450.333333pt;}
.x35{left:460.893333pt;}
.xf{left:478.173322pt;}
.x40{left:505.373333pt;}
.x27{left:510.493333pt;}
.xe{left:552.573322pt;}
.x28{left:570.653333pt;}
.x36{left:574.813333pt;}
.x41{left:599.973333pt;}
.x8{left:618.533322pt;}
.x6{left:629.733322pt;}
.x1e{left:631.333333pt;}
.xa{left:634.213322pt;}
.xc{left:638.533322pt;}
.x2e{left:655.493322pt;}
.x4a{left:679.813322pt;}
.x47{left:686.213322pt;}
.x49{left:698.053322pt;}
.x10{left:699.333322pt;}
}




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