
    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_ef8d30e64e41bc7487d5da11.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_88611d40ba4503044cf779e2.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_bca5efc073ccd1f94da1d0a7.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_24f6a46a40b5a36db082713f.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_2fb0e40e11fd27a502a8656d.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_1c272583dd0d5fb9ac81d2fd.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_f53b8a5d54ade1e00647ddeb.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bcab673c35851867041386b6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e29d16fa3aafd11d6a3186f4.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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d78670f077eb7c83e7027609.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_97deb98691fbb0097cf5dd9f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls11{letter-spacing:-0.350400px;}
.lse{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.422000px;}
.lsb{letter-spacing:5.760000px;}
.ls3{letter-spacing:10.080000px;}
.ls12{letter-spacing:10.224000px;}
.ls2{letter-spacing:20.880000px;}
.ls1{letter-spacing:21.600000px;}
.lsf{letter-spacing:25.920000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws1{word-spacing:-23.940000px;}
.ws7{word-spacing:-22.482000px;}
.ws9{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.718600px;}
.wsc{word-spacing:-20.709600px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.488000px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-2.652000px;}
._1{margin-left:-1.209600px;}
._0{width:1.347840px;}
._13{width:2.655360px;}
._17{width:3.960000px;}
._15{width:5.688000px;}
._16{width:7.145760px;}
._18{width:8.589120px;}
._11{width:10.152000px;}
._f{width:11.347200px;}
._e{width:12.532320px;}
._12{width:13.631520px;}
._c{width:14.832000px;}
._d{width:15.912000px;}
._23{width:16.920000px;}
._b{width:19.143360px;}
._3{width:20.736000px;}
._2{width:21.888000px;}
._10{width:23.112000px;}
._1b{width:25.560000px;}
._19{width:27.576000px;}
._1a{width:28.672320px;}
._8{width:29.736000px;}
._1c{width:37.900800px;}
._a{width:39.009600px;}
._9{width:40.068000px;}
._7{width:41.544000px;}
._6{width:42.552000px;}
._5{width:52.220160px;}
._4{width:53.352000px;}
._1e{width:67.665600px;}
._21{width:109.785600px;}
._20{width:110.943360px;}
._1f{width:127.152000px;}
._22{width:180.705600px;}
._1d{width:228.657600px;}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.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);}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:88.795869px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:8.100000px;}
.y79{bottom:8.280000px;}
.y45{bottom:8.640000px;}
.y3b{bottom:8.820000px;}
.yba{bottom:9.360000px;}
.yc0{bottom:9.540000px;}
.yb5{bottom:10.800000px;}
.y4e{bottom:14.220000px;}
.ybe{bottom:15.300000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y43{bottom:22.500000px;}
.y4a{bottom:22.530000px;}
.yc5{bottom:22.545000px;}
.y40{bottom:22.680000px;}
.y39{bottom:22.725000px;}
.y4{bottom:27.900000px;}
.y50{bottom:28.080000px;}
.y66{bottom:36.360000px;}
.y84{bottom:36.390000px;}
.yc4{bottom:36.405000px;}
.y3d{bottom:36.540000px;}
.y47{bottom:36.570000px;}
.y3a{bottom:36.585000px;}
.yb4{bottom:39.420000px;}
.yb9{bottom:41.580000px;}
.y4c{bottom:41.940000px;}
.ybd{bottom:43.020000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.yac{bottom:50.265000px;}
.y3f{bottom:50.400000px;}
.y49{bottom:50.430000px;}
.y4f{bottom:55.980000px;}
.yb0{bottom:59.040000px;}
.y83{bottom:64.110000px;}
.y3e{bottom:64.260000px;}
.y48{bottom:64.290000px;}
.y89{bottom:64.305000px;}
.y2{bottom:69.300000px;}
.y4d{bottom:69.840000px;}
.ybc{bottom:70.920000px;}
.yb3{bottom:71.490000px;}
.yb8{bottom:73.650000px;}
.ybf{bottom:73.800000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y42{bottom:78.120000px;}
.yab{bottom:78.165000px;}
.yaf{bottom:86.790000px;}
.ya{bottom:91.116000px;}
.y44{bottom:91.980000px;}
.y88{bottom:92.025000px;}
.yb2{bottom:102.990000px;}
.yb7{bottom:105.150000px;}
.y6c{bottom:105.840000px;}
.yaa{bottom:105.885000px;}
.y6a{bottom:119.700000px;}
.ya9{bottom:119.745000px;}
.y72{bottom:119.880000px;}
.y87{bottom:119.925000px;}
.yb1{bottom:131.430000px;}
.y6e{bottom:133.560000px;}
.yb6{bottom:133.590000px;}
.y6b{bottom:133.740000px;}
.y30{bottom:135.036000px;}
.ya5{bottom:140.256000px;}
.yc9{bottom:144.396000px;}
.y69{bottom:147.600000px;}
.y70{bottom:147.645000px;}
.y65{bottom:150.870000px;}
.y54{bottom:162.390000px;}
.ya4{bottom:164.010000px;}
.yc8{bottom:168.150000px;}
.y6f{bottom:175.365000px;}
.y8c{bottom:176.070000px;}
.y53{bottom:181.830000px;}
.ya3{bottom:187.770000px;}
.ye4{bottom:189.570000px;}
.yc7{bottom:192.090000px;}
.y75{bottom:193.170000px;}
.y8b{bottom:199.830000px;}
.yc6{bottom:209.550000px;}
.ya2{bottom:211.710000px;}
.y74{bottom:212.610000px;}
.ye3{bottom:212.790000px;}
.y8a{bottom:223.590000px;}
.ya1{bottom:235.470000px;}
.ye2{bottom:237.090000px;}
.y86{bottom:240.690000px;}
.ya0{bottom:259.590000px;}
.ye1{bottom:260.850000px;}
.y64{bottom:262.650000px;}
.yc3{bottom:265.890000px;}
.y9f{bottom:283.395000px;}
.ye0{bottom:284.655000px;}
.y9e{bottom:306.975000px;}
.ydf{bottom:308.415000px;}
.yc2{bottom:322.095000px;}
.y63{bottom:326.055000px;}
.y9d{bottom:330.735000px;}
.yde{bottom:332.175000px;}
.y9c{bottom:348.195000px;}
.y62{bottom:350.175000px;}
.yc1{bottom:350.715000px;}
.y2f{bottom:354.135000px;}
.ydd{bottom:356.115000px;}
.y61{bottom:374.115000px;}
.y9b{bottom:376.635000px;}
.y2e{bottom:377.895000px;}
.ydc{bottom:379.875000px;}
.y60{bottom:397.515000px;}
.y2d{bottom:401.655000px;}
.ydb{bottom:403.635000px;}
.ybb{bottom:406.875000px;}
.y52{bottom:416.955000px;}
.y5f{bottom:421.275000px;}
.y2c{bottom:425.595000px;}
.yda{bottom:427.395000px;}
.y9a{bottom:432.975000px;}
.y85{bottom:435.855000px;}
.y51{bottom:440.895000px;}
.y5e{bottom:445.395000px;}
.y2b{bottom:449.355000px;}
.yd9{bottom:451.335000px;}
.y4b{bottom:457.995000px;}
.y99{bottom:461.595000px;}
.y5d{bottom:469.335000px;}
.y2a{bottom:472.755000px;}
.yd8{bottom:475.095000px;}
.y5c{bottom:493.095000px;}
.y29{bottom:496.875000px;}
.yd7{bottom:498.855000px;}
.yae{bottom:504.075000px;}
.y5b{bottom:516.855000px;}
.y98{bottom:517.755000px;}
.y28{bottom:520.815000px;}
.yd6{bottom:522.615000px;}
.y5a{bottom:540.615000px;}
.y27{bottom:544.575000px;}
.yd5{bottom:546.555000px;}
.y82{bottom:547.815000px;}
.y46{bottom:553.215000px;}
.y73{bottom:556.635000px;}
.y59{bottom:560.235000px;}
.y26{bottom:568.365000px;}
.yd4{bottom:570.345000px;}
.y71{bottom:573.765000px;}
.y97{bottom:574.125000px;}
.y25{bottom:592.125000px;}
.yd3{bottom:594.105000px;}
.y24{bottom:616.065000px;}
.yd2{bottom:617.505000px;}
.y81{bottom:631.905000px;}
.y41{bottom:637.305000px;}
.y23{bottom:639.825000px;}
.yd1{bottom:641.805000px;}
.y96{bottom:658.185000px;}
.yd0{bottom:658.905000px;}
.yad{bottom:661.065000px;}
.y22{bottom:663.585000px;}
.y80{bottom:667.365000px;}
.y21{bottom:687.345000px;}
.y7f{bottom:691.665000px;}
.y20{bottom:711.285000px;}
.y6d{bottom:713.445000px;}
.y95{bottom:714.525000px;}
.ycf{bottom:715.065000px;}
.y7e{bottom:715.425000px;}
.y1f{bottom:735.045000px;}
.y7d{bottom:739.185000px;}
.y3c{bottom:749.085000px;}
.y94{bottom:750.165000px;}
.y1e{bottom:758.805000px;}
.y7c{bottom:762.585000px;}
.y93{bottom:774.285000px;}
.y58{bottom:776.445000px;}
.y7b{bottom:780.045000px;}
.y1d{bottom:782.565000px;}
.y92{bottom:798.045000px;}
.yce{bottom:799.125000px;}
.y57{bottom:800.385000px;}
.ya8{bottom:800.745000px;}
.y1c{bottom:806.325000px;}
.y7a{bottom:808.665000px;}
.y91{bottom:821.805000px;}
.y56{bottom:824.145000px;}
.y1b{bottom:829.905000px;}
.y38{bottom:833.145000px;}
.y78{bottom:837.105000px;}
.y55{bottom:843.585000px;}
.y90{bottom:845.565000px;}
.y1a{bottom:854.070000px;}
.ycd{bottom:855.510000px;}
.y77{bottom:865.770000px;}
.y8f{bottom:869.550000px;}
.y19{bottom:877.830000px;}
.y36{bottom:889.530000px;}
.y8e{bottom:893.310000px;}
.y18{bottom:901.590000px;}
.y68{bottom:908.610000px;}
.ycc{bottom:911.850000px;}
.y8d{bottom:912.930000px;}
.y35{bottom:925.170000px;}
.y17{bottom:925.530000px;}
.ya7{bottom:940.290000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.ycb{bottom:995.910000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.390000px;}
.y76{bottom:1020.750000px;}
.ya6{bottom:1024.350000px;}
.y34{bottom:1044.150000px;}
.y12{bottom:1044.510000px;}
.y33{bottom:1067.910000px;}
.y11{bottom:1068.270000px;}
.y67{bottom:1076.010000px;}
.yca{bottom:1079.970000px;}
.y10{bottom:1091.670000px;}
.y32{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y31{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.hd{height:27.720000px;}
.h19{height:27.900000px;}
.h18{height:27.936000px;}
.h8{height:33.120000px;}
.hc{height:50.484375px;}
.h1c{height:55.440000px;}
.h14{height:55.476000px;}
.h1b{height:55.620000px;}
.he{height:55.656000px;}
.hb{height:59.343750px;}
.h9{height:65.884219px;}
.h10{height:69.432187px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h21{height:74.004654px;}
.h1f{height:81.034902px;}
.h4{height:82.635820px;}
.h1a{height:83.196000px;}
.hf{height:83.340000px;}
.h12{height:83.376000px;}
.h13{height:94.500000px;}
.h20{height:96.480000px;}
.h2{height:109.800000px;}
.h11{height:111.060000px;}
.h5{height:129.250898px;}
.h1d{height:138.816000px;}
.h17{height:138.960000px;}
.h1e{height:156.270000px;}
.h15{height:166.680000px;}
.h16{height:194.430000px;}
.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;}
.w13{width:84.276000px;}
.wa{width:92.340000px;}
.w11{width:97.056000px;}
.w2{width:125.856000px;}
.wc{width:132.120000px;}
.wf{width:144.540000px;}
.w19{width:145.980000px;}
.w14{width:147.780000px;}
.w16{width:151.560000px;}
.w10{width:191.370000px;}
.wd{width:213.510000px;}
.w1d{width:223.230000px;}
.w1e{width:241.230000px;}
.w1c{width:261.750000px;}
.w12{width:269.310000px;}
.w1a{width:270.075000px;}
.w18{width:272.370000px;}
.w17{width:302.475000px;}
.w1b{width:310.350000px;}
.wb{width:380.775000px;}
.we{width:390.495000px;}
.w15{width:551.625000px;}
.w3{width:705.525000px;}
.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:19.800000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x34{left:36.765000px;}
.x5{left:71.994000px;}
.x1c{left:119.916000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x12{left:135.035987px;}
.x38{left:159.689987px;}
.x18{left:170.129987px;}
.x17{left:180.749987px;}
.x27{left:257.790000px;}
.x32{left:266.610000px;}
.x2a{left:268.410000px;}
.x2e{left:272.190000px;}
.x14{left:280.289987px;}
.x15{left:311.294987px;}
.x13{left:324.434987px;}
.x16{left:333.074987px;}
.x28{left:355.575000px;}
.x1a{left:364.934987px;}
.x36{left:382.575000px;}
.x21{left:422.534987px;}
.x26{left:427.394987px;}
.x2c{left:456.554987px;}
.x35{left:488.774987px;}
.x1d{left:501.405000px;}
.x23{left:511.125000px;}
.x2d{left:530.384987px;}
.x33{left:537.405000px;}
.x31{left:571.784987px;}
.x2f{left:575.385000px;}
.x19{left:576.464987px;}
.x37{left:606.525000px;}
.xb{left:619.305000px;}
.x29{left:625.605000px;}
.x1e{left:634.245000px;}
.x24{left:656.385000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.x1b{left:693.509987px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x25{left:766.049987px;}
.x22{left:779.909987px;}
.x1f{left:788.009987px;}
.x20{left:789.629987px;}
.x8{left:831.390000px;}
.x2b{left:833.189987px;}
.x30{left:840.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.311467pt;}
.lse{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.264000pt;}
.lsb{letter-spacing:5.120000pt;}
.ls3{letter-spacing:8.960000pt;}
.ls12{letter-spacing:9.088000pt;}
.ls2{letter-spacing:18.560000pt;}
.ls1{letter-spacing:19.200000pt;}
.lsf{letter-spacing:23.040000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws7{word-spacing:-19.984000pt;}
.ws9{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.416533pt;}
.wsc{word-spacing:-18.408533pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-2.357333pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.198080pt;}
._13{width:2.360320pt;}
._17{width:3.520000pt;}
._15{width:5.056000pt;}
._16{width:6.351787pt;}
._18{width:7.634773pt;}
._11{width:9.024000pt;}
._f{width:10.086400pt;}
._e{width:11.139840pt;}
._12{width:12.116907pt;}
._c{width:13.184000pt;}
._d{width:14.144000pt;}
._23{width:15.040000pt;}
._b{width:17.016320pt;}
._3{width:18.432000pt;}
._2{width:19.456000pt;}
._10{width:20.544000pt;}
._1b{width:22.720000pt;}
._19{width:24.512000pt;}
._1a{width:25.486507pt;}
._8{width:26.432000pt;}
._1c{width:33.689600pt;}
._a{width:34.675200pt;}
._9{width:35.616000pt;}
._7{width:36.928000pt;}
._6{width:37.824000pt;}
._5{width:46.417920pt;}
._4{width:47.424000pt;}
._1e{width:60.147200pt;}
._21{width:97.587200pt;}
._20{width:98.616320pt;}
._1f{width:113.024000pt;}
._22{width:160.627200pt;}
._1d{width:203.251200pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:78.929661pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:7.200000pt;}
.y79{bottom:7.360000pt;}
.y45{bottom:7.680000pt;}
.y3b{bottom:7.840000pt;}
.yba{bottom:8.320000pt;}
.yc0{bottom:8.480000pt;}
.yb5{bottom:9.600000pt;}
.y4e{bottom:12.640000pt;}
.ybe{bottom:13.600000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y43{bottom:20.000000pt;}
.y4a{bottom:20.026667pt;}
.yc5{bottom:20.040000pt;}
.y40{bottom:20.160000pt;}
.y39{bottom:20.200000pt;}
.y4{bottom:24.800000pt;}
.y50{bottom:24.960000pt;}
.y66{bottom:32.320000pt;}
.y84{bottom:32.346667pt;}
.yc4{bottom:32.360000pt;}
.y3d{bottom:32.480000pt;}
.y47{bottom:32.506667pt;}
.y3a{bottom:32.520000pt;}
.yb4{bottom:35.040000pt;}
.yb9{bottom:36.960000pt;}
.y4c{bottom:37.280000pt;}
.ybd{bottom:38.240000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.yac{bottom:44.680000pt;}
.y3f{bottom:44.800000pt;}
.y49{bottom:44.826667pt;}
.y4f{bottom:49.760000pt;}
.yb0{bottom:52.480000pt;}
.y83{bottom:56.986667pt;}
.y3e{bottom:57.120000pt;}
.y48{bottom:57.146667pt;}
.y89{bottom:57.160000pt;}
.y2{bottom:61.600000pt;}
.y4d{bottom:62.080000pt;}
.ybc{bottom:63.040000pt;}
.yb3{bottom:63.546667pt;}
.yb8{bottom:65.466667pt;}
.ybf{bottom:65.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y42{bottom:69.440000pt;}
.yab{bottom:69.480000pt;}
.yaf{bottom:77.146667pt;}
.ya{bottom:80.992000pt;}
.y44{bottom:81.760000pt;}
.y88{bottom:81.800000pt;}
.yb2{bottom:91.546667pt;}
.yb7{bottom:93.466667pt;}
.y6c{bottom:94.080000pt;}
.yaa{bottom:94.120000pt;}
.y6a{bottom:106.400000pt;}
.ya9{bottom:106.440000pt;}
.y72{bottom:106.560000pt;}
.y87{bottom:106.600000pt;}
.yb1{bottom:116.826667pt;}
.y6e{bottom:118.720000pt;}
.yb6{bottom:118.746667pt;}
.y6b{bottom:118.880000pt;}
.y30{bottom:120.032000pt;}
.ya5{bottom:124.672000pt;}
.yc9{bottom:128.352000pt;}
.y69{bottom:131.200000pt;}
.y70{bottom:131.240000pt;}
.y65{bottom:134.106667pt;}
.y54{bottom:144.346667pt;}
.ya4{bottom:145.786667pt;}
.yc8{bottom:149.466667pt;}
.y6f{bottom:155.880000pt;}
.y8c{bottom:156.506667pt;}
.y53{bottom:161.626667pt;}
.ya3{bottom:166.906667pt;}
.ye4{bottom:168.506667pt;}
.yc7{bottom:170.746667pt;}
.y75{bottom:171.706667pt;}
.y8b{bottom:177.626667pt;}
.yc6{bottom:186.266667pt;}
.ya2{bottom:188.186667pt;}
.y74{bottom:188.986667pt;}
.ye3{bottom:189.146667pt;}
.y8a{bottom:198.746667pt;}
.ya1{bottom:209.306667pt;}
.ye2{bottom:210.746667pt;}
.y86{bottom:213.946667pt;}
.ya0{bottom:230.746667pt;}
.ye1{bottom:231.866667pt;}
.y64{bottom:233.466667pt;}
.yc3{bottom:236.346667pt;}
.y9f{bottom:251.906667pt;}
.ye0{bottom:253.026667pt;}
.y9e{bottom:272.866667pt;}
.ydf{bottom:274.146667pt;}
.yc2{bottom:286.306667pt;}
.y63{bottom:289.826667pt;}
.y9d{bottom:293.986667pt;}
.yde{bottom:295.266667pt;}
.y9c{bottom:309.506667pt;}
.y62{bottom:311.266667pt;}
.yc1{bottom:311.746667pt;}
.y2f{bottom:314.786667pt;}
.ydd{bottom:316.546667pt;}
.y61{bottom:332.546667pt;}
.y9b{bottom:334.786667pt;}
.y2e{bottom:335.906667pt;}
.ydc{bottom:337.666667pt;}
.y60{bottom:353.346667pt;}
.y2d{bottom:357.026667pt;}
.ydb{bottom:358.786667pt;}
.ybb{bottom:361.666667pt;}
.y52{bottom:370.626667pt;}
.y5f{bottom:374.466667pt;}
.y2c{bottom:378.306667pt;}
.yda{bottom:379.906667pt;}
.y9a{bottom:384.866667pt;}
.y85{bottom:387.426667pt;}
.y51{bottom:391.906667pt;}
.y5e{bottom:395.906667pt;}
.y2b{bottom:399.426667pt;}
.yd9{bottom:401.186667pt;}
.y4b{bottom:407.106667pt;}
.y99{bottom:410.306667pt;}
.y5d{bottom:417.186667pt;}
.y2a{bottom:420.226667pt;}
.yd8{bottom:422.306667pt;}
.y5c{bottom:438.306667pt;}
.y29{bottom:441.666667pt;}
.yd7{bottom:443.426667pt;}
.yae{bottom:448.066667pt;}
.y5b{bottom:459.426667pt;}
.y98{bottom:460.226667pt;}
.y28{bottom:462.946667pt;}
.yd6{bottom:464.546667pt;}
.y5a{bottom:480.546667pt;}
.y27{bottom:484.066667pt;}
.yd5{bottom:485.826667pt;}
.y82{bottom:486.946667pt;}
.y46{bottom:491.746667pt;}
.y73{bottom:494.786667pt;}
.y59{bottom:497.986667pt;}
.y26{bottom:505.213333pt;}
.yd4{bottom:506.973333pt;}
.y71{bottom:510.013333pt;}
.y97{bottom:510.333333pt;}
.y25{bottom:526.333333pt;}
.yd3{bottom:528.093333pt;}
.y24{bottom:547.613333pt;}
.yd2{bottom:548.893333pt;}
.y81{bottom:561.693333pt;}
.y41{bottom:566.493333pt;}
.y23{bottom:568.733333pt;}
.yd1{bottom:570.493333pt;}
.y96{bottom:585.053333pt;}
.yd0{bottom:585.693333pt;}
.yad{bottom:587.613333pt;}
.y22{bottom:589.853333pt;}
.y80{bottom:593.213333pt;}
.y21{bottom:610.973333pt;}
.y7f{bottom:614.813333pt;}
.y20{bottom:632.253333pt;}
.y6d{bottom:634.173333pt;}
.y95{bottom:635.133333pt;}
.ycf{bottom:635.613333pt;}
.y7e{bottom:635.933333pt;}
.y1f{bottom:653.373333pt;}
.y7d{bottom:657.053333pt;}
.y3c{bottom:665.853333pt;}
.y94{bottom:666.813333pt;}
.y1e{bottom:674.493333pt;}
.y7c{bottom:677.853333pt;}
.y93{bottom:688.253333pt;}
.y58{bottom:690.173333pt;}
.y7b{bottom:693.373333pt;}
.y1d{bottom:695.613333pt;}
.y92{bottom:709.373333pt;}
.yce{bottom:710.333333pt;}
.y57{bottom:711.453333pt;}
.ya8{bottom:711.773333pt;}
.y1c{bottom:716.733333pt;}
.y7a{bottom:718.813333pt;}
.y91{bottom:730.493333pt;}
.y56{bottom:732.573333pt;}
.y1b{bottom:737.693333pt;}
.y38{bottom:740.573333pt;}
.y78{bottom:744.093333pt;}
.y55{bottom:749.853333pt;}
.y90{bottom:751.613333pt;}
.y1a{bottom:759.173333pt;}
.ycd{bottom:760.453333pt;}
.y77{bottom:769.573333pt;}
.y8f{bottom:772.933333pt;}
.y19{bottom:780.293333pt;}
.y36{bottom:790.693333pt;}
.y8e{bottom:794.053333pt;}
.y18{bottom:801.413333pt;}
.y68{bottom:807.653333pt;}
.ycc{bottom:810.533333pt;}
.y8d{bottom:811.493333pt;}
.y35{bottom:822.373333pt;}
.y17{bottom:822.693333pt;}
.ya7{bottom:835.813333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.ycb{bottom:885.253333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.013333pt;}
.y76{bottom:907.333333pt;}
.ya6{bottom:910.533333pt;}
.y34{bottom:928.133333pt;}
.y12{bottom:928.453333pt;}
.y33{bottom:949.253333pt;}
.y11{bottom:949.573333pt;}
.y67{bottom:956.453333pt;}
.yca{bottom:959.973333pt;}
.y10{bottom:970.373333pt;}
.y32{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y31{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.hd{height:24.640000pt;}
.h19{height:24.800000pt;}
.h18{height:24.832000pt;}
.h8{height:29.440000pt;}
.hc{height:44.875000pt;}
.h1c{height:49.280000pt;}
.h14{height:49.312000pt;}
.h1b{height:49.440000pt;}
.he{height:49.472000pt;}
.hb{height:52.750000pt;}
.h9{height:58.563750pt;}
.h10{height:61.717500pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h21{height:65.781915pt;}
.h1f{height:72.031024pt;}
.h4{height:73.454062pt;}
.h1a{height:73.952000pt;}
.hf{height:74.080000pt;}
.h12{height:74.112000pt;}
.h13{height:84.000000pt;}
.h20{height:85.760000pt;}
.h2{height:97.600000pt;}
.h11{height:98.720000pt;}
.h5{height:114.889687pt;}
.h1d{height:123.392000pt;}
.h17{height:123.520000pt;}
.h1e{height:138.906667pt;}
.h15{height:148.160000pt;}
.h16{height:172.826667pt;}
.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;}
.w13{width:74.912000pt;}
.wa{width:82.080000pt;}
.w11{width:86.272000pt;}
.w2{width:111.872000pt;}
.wc{width:117.440000pt;}
.wf{width:128.480000pt;}
.w19{width:129.760000pt;}
.w14{width:131.360000pt;}
.w16{width:134.720000pt;}
.w10{width:170.106667pt;}
.wd{width:189.786667pt;}
.w1d{width:198.426667pt;}
.w1e{width:214.426667pt;}
.w1c{width:232.666667pt;}
.w12{width:239.386667pt;}
.w1a{width:240.066667pt;}
.w18{width:242.106667pt;}
.w17{width:268.866667pt;}
.w1b{width:275.866667pt;}
.wb{width:338.466667pt;}
.we{width:347.106667pt;}
.w15{width:490.333333pt;}
.w3{width:627.133333pt;}
.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:17.600000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x34{left:32.680000pt;}
.x5{left:63.994667pt;}
.x1c{left:106.592000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x12{left:120.031988pt;}
.x38{left:141.946655pt;}
.x18{left:151.226655pt;}
.x17{left:160.666655pt;}
.x27{left:229.146667pt;}
.x32{left:236.986667pt;}
.x2a{left:238.586667pt;}
.x2e{left:241.946667pt;}
.x14{left:249.146655pt;}
.x15{left:276.706655pt;}
.x13{left:288.386655pt;}
.x16{left:296.066655pt;}
.x28{left:316.066667pt;}
.x1a{left:324.386655pt;}
.x36{left:340.066667pt;}
.x21{left:375.586655pt;}
.x26{left:379.906655pt;}
.x2c{left:405.826655pt;}
.x35{left:434.466655pt;}
.x1d{left:445.693333pt;}
.x23{left:454.333333pt;}
.x2d{left:471.453322pt;}
.x33{left:477.693333pt;}
.x31{left:508.253322pt;}
.x2f{left:511.453333pt;}
.x19{left:512.413322pt;}
.x37{left:539.133333pt;}
.xb{left:550.493333pt;}
.x29{left:556.093333pt;}
.x1e{left:563.773333pt;}
.x24{left:583.453333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.x1b{left:616.453322pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x25{left:680.933322pt;}
.x22{left:693.253322pt;}
.x1f{left:700.453322pt;}
.x20{left:701.893322pt;}
.x8{left:739.013333pt;}
.x2b{left:740.613322pt;}
.x30{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; }
  