
    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_abee864fa76df77b6f94f426.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_99b90b42562f11637744f019.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_a20470e9efff5c2e8a4dbe16.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_06e64c158e5ac29097fabc56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_a5d4046291aec58863a82d95.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3e8c7feb1b1281e545104b1d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_b6928872b85055139f559fff.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.567600px;}
.ls12{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.397200px;}
.ls16{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.158400px;}
.ls24{letter-spacing:-0.147000px;}
.ls17{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls1d{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.109200px;}
.ls27{letter-spacing:0.167040px;}
.ls1c{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls28{letter-spacing:0.308400px;}
.ls19{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.745920px;}
.ls23{letter-spacing:1.080000px;}
.lsf{letter-spacing:4.320000px;}
.ls3{letter-spacing:7.920000px;}
.ls1a{letter-spacing:10.080000px;}
.ls20{letter-spacing:15.120000px;}
.ls1f{letter-spacing:20.160000px;}
.lsd{letter-spacing:30.240000px;}
.ls26{letter-spacing:34.841280px;}
.ls22{letter-spacing:67.961280px;}
.lsc{letter-spacing:645.240000px;}
.ls21{letter-spacing:859.836000px;}
.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;}
}
.ws7{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.422720px;}
.ws6{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.992400px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-2.367360px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.535360px;}
._9{width:4.334400px;}
._8{width:5.431680px;}
._b{width:7.286400px;}
._a{width:8.346240px;}
._d{width:9.472320px;}
._e{width:10.835040px;}
._1b{width:11.878560px;}
._7{width:12.916800px;}
._1a{width:13.968000px;}
._1c{width:15.260640px;}
._17{width:16.315200px;}
._15{width:19.098720px;}
._c{width:20.680320px;}
._18{width:22.680000px;}
._19{width:23.760000px;}
._11{width:24.972480px;}
._13{width:29.691840px;}
._12{width:30.720000px;}
._1d{width:37.584000px;}
._f{width:39.744000px;}
._10{width:41.072160px;}
._16{width:50.112000px;}
._20{width:52.197120px;}
._1e{width:96.048000px;}
._1f{width:97.916160px;}
._1{width:480.335520px;}
._4{width:756.300000px;}
._2{width:822.540000px;}
._3{width:831.888480px;}
._21{width:846.300000px;}
.fc2{color:transparent;}
.fc1{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y69{bottom:4.320000px;}
.yc2{bottom:4.485000px;}
.y7a{bottom:4.500000px;}
.y7c{bottom:4.860000px;}
.y77{bottom:5.040000px;}
.y78{bottom:14.760000px;}
.yc3{bottom:14.790000px;}
.yf0{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.yc7{bottom:25.185000px;}
.y79{bottom:25.200000px;}
.yc1{bottom:25.230000px;}
.ybf{bottom:25.590000px;}
.y75{bottom:26.100000px;}
.ya{bottom:31.140000px;}
.yc8{bottom:35.445000px;}
.y8{bottom:41.940000px;}
.yc6{bottom:45.705000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.yc5{bottom:66.405000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y67{bottom:151.230000px;}
.y38{bottom:151.410000px;}
.y9b{bottom:165.090000px;}
.yce{bottom:165.450000px;}
.ya9{bottom:165.630000px;}
.y37{bottom:170.310000px;}
.y66{bottom:171.930000px;}
.ye1{bottom:176.610000px;}
.y9a{bottom:185.790000px;}
.ycd{bottom:186.150000px;}
.ya8{bottom:186.330000px;}
.y36{bottom:189.210000px;}
.y65{bottom:192.630000px;}
.ye0{bottom:195.510000px;}
.y99{bottom:206.490000px;}
.ycc{bottom:206.850000px;}
.ya7{bottom:207.030000px;}
.y35{bottom:208.290000px;}
.y64{bottom:213.330000px;}
.ydf{bottom:214.590000px;}
.y34{bottom:227.190000px;}
.ycb{bottom:227.550000px;}
.ya6{bottom:227.730000px;}
.yde{bottom:233.490000px;}
.y63{bottom:234.030000px;}
.y33{bottom:246.270000px;}
.y98{bottom:247.890000px;}
.yca{bottom:248.250000px;}
.ya5{bottom:248.430000px;}
.ydd{bottom:252.570000px;}
.y62{bottom:254.730000px;}
.y32{bottom:265.170000px;}
.yc9{bottom:268.410000px;}
.y97{bottom:268.590000px;}
.ya4{bottom:269.130000px;}
.ydc{bottom:271.470000px;}
.y61{bottom:275.430000px;}
.y31{bottom:284.070000px;}
.yc4{bottom:284.265000px;}
.y96{bottom:289.290000px;}
.ya3{bottom:289.830000px;}
.y60{bottom:296.130000px;}
.y30{bottom:303.150000px;}
.ydb{bottom:309.450000px;}
.y95{bottom:309.990000px;}
.ya2{bottom:310.530000px;}
.y5f{bottom:316.830000px;}
.y2f{bottom:322.050000px;}
.ya1{bottom:326.910000px;}
.yda{bottom:328.350000px;}
.y94{bottom:330.690000px;}
.y5e{bottom:337.530000px;}
.y2e{bottom:341.130000px;}
.yd9{bottom:347.430000px;}
.y93{bottom:351.030000px;}
.y5d{bottom:358.230000px;}
.y2d{bottom:360.030000px;}
.yd8{bottom:366.330000px;}
.ybe{bottom:367.785000px;}
.y92{bottom:372.090000px;}
.y5c{bottom:378.570000px;}
.y2c{bottom:378.930000px;}
.yd7{bottom:385.275000px;}
.y91{bottom:389.235000px;}
.y2b{bottom:398.055000px;}
.y5b{bottom:399.675000px;}
.yd6{bottom:404.355000px;}
.yc0{bottom:409.935000px;}
.y90{bottom:411.735000px;}
.y2a{bottom:416.955000px;}
.y5a{bottom:420.375000px;}
.yd5{bottom:423.255000px;}
.y8f{bottom:434.235000px;}
.ybd{bottom:435.855000px;}
.y29{bottom:436.035000px;}
.y59{bottom:441.075000px;}
.yd4{bottom:442.335000px;}
.y28{bottom:454.935000px;}
.ybc{bottom:456.555000px;}
.y8e{bottom:456.735000px;}
.yd3{bottom:461.235000px;}
.y58{bottom:461.775000px;}
.y27{bottom:473.835000px;}
.ybb{bottom:477.255000px;}
.y8d{bottom:479.235000px;}
.yd2{bottom:480.315000px;}
.y57{bottom:482.475000px;}
.y26{bottom:492.915000px;}
.yba{bottom:497.955000px;}
.yd1{bottom:499.215000px;}
.y8c{bottom:501.735000px;}
.y56{bottom:503.175000px;}
.y25{bottom:511.815000px;}
.yd0{bottom:518.295000px;}
.yb9{bottom:518.655000px;}
.y55{bottom:523.875000px;}
.y8b{bottom:524.235000px;}
.y24{bottom:530.895000px;}
.yb8{bottom:539.355000px;}
.y54{bottom:544.575000px;}
.y8a{bottom:546.735000px;}
.y23{bottom:549.795000px;}
.yb7{bottom:560.055000px;}
.y53{bottom:565.275000px;}
.y22{bottom:568.875000px;}
.y89{bottom:569.235000px;}
.yb6{bottom:580.755000px;}
.y52{bottom:585.975000px;}
.y21{bottom:587.775000px;}
.y88{bottom:591.735000px;}
.yb5{bottom:601.455000px;}
.y51{bottom:606.675000px;}
.y20{bottom:607.215000px;}
.y87{bottom:614.235000px;}
.yb4{bottom:622.155000px;}
.y50{bottom:627.375000px;}
.y1f{bottom:628.095000px;}
.y86{bottom:636.765000px;}
.yb3{bottom:642.885000px;}
.y4f{bottom:648.105000px;}
.y1e{bottom:650.625000px;}
.y85{bottom:659.265000px;}
.yb2{bottom:663.585000px;}
.y4e{bottom:668.805000px;}
.y1d{bottom:672.585000px;}
.y84{bottom:681.765000px;}
.yb1{bottom:684.285000px;}
.y4d{bottom:689.505000px;}
.y1c{bottom:695.445000px;}
.y83{bottom:704.265000px;}
.yb0{bottom:704.985000px;}
.y4c{bottom:710.205000px;}
.y1b{bottom:717.945000px;}
.yaf{bottom:725.685000px;}
.y82{bottom:726.765000px;}
.y4b{bottom:730.905000px;}
.y1a{bottom:739.725000px;}
.yae{bottom:746.385000px;}
.y81{bottom:749.265000px;}
.y4a{bottom:751.605000px;}
.y19{bottom:762.225000px;}
.yad{bottom:767.085000px;}
.y80{bottom:771.765000px;}
.y49{bottom:772.305000px;}
.y18{bottom:785.085000px;}
.yac{bottom:787.785000px;}
.y48{bottom:793.005000px;}
.y7f{bottom:794.265000px;}
.y17{bottom:807.585000px;}
.yab{bottom:808.485000px;}
.yf2{bottom:810.105000px;}
.y47{bottom:813.705000px;}
.y7e{bottom:816.765000px;}
.yaa{bottom:829.185000px;}
.y16{bottom:829.545000px;}
.yf1{bottom:830.805000px;}
.y46{bottom:834.405000px;}
.y7d{bottom:839.265000px;}
.yef{bottom:847.005000px;}
.ya0{bottom:849.885000px;}
.y15{bottom:852.405000px;}
.y45{bottom:854.925000px;}
.y7b{bottom:861.765000px;}
.yee{bottom:867.705000px;}
.y9f{bottom:870.585000px;}
.y14{bottom:874.905000px;}
.y44{bottom:875.625000px;}
.y74{bottom:884.310000px;}
.y9e{bottom:891.330000px;}
.yed{bottom:892.950000px;}
.y43{bottom:896.370000px;}
.y13{bottom:896.730000px;}
.ycf{bottom:911.670000px;}
.y9d{bottom:912.030000px;}
.yec{bottom:913.290000px;}
.y42{bottom:917.070000px;}
.y12{bottom:919.050000px;}
.y76{bottom:926.430000px;}
.yeb{bottom:932.190000px;}
.y9c{bottom:932.730000px;}
.y41{bottom:937.770000px;}
.y11{bottom:940.470000px;}
.yea{bottom:951.270000px;}
.y73{bottom:953.430000px;}
.y10{bottom:964.590000px;}
.ye9{bottom:970.170000px;}
.y72{bottom:974.130000px;}
.y40{bottom:979.170000px;}
.yf{bottom:988.710000px;}
.ye8{bottom:989.070000px;}
.y71{bottom:994.830000px;}
.y3f{bottom:999.870000px;}
.ye7{bottom:1008.150000px;}
.ye{bottom:1012.830000px;}
.y70{bottom:1015.530000px;}
.y3e{bottom:1020.570000px;}
.ye6{bottom:1027.050000px;}
.y6f{bottom:1036.230000px;}
.y68{bottom:1036.770000px;}
.yd{bottom:1036.950000px;}
.y3d{bottom:1041.270000px;}
.ye5{bottom:1046.130000px;}
.y6e{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.y3c{bottom:1061.970000px;}
.ye4{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y6d{bottom:1077.630000px;}
.y3b{bottom:1082.670000px;}
.ye3{bottom:1083.930000px;}
.y6c{bottom:1098.330000px;}
.ye2{bottom:1103.010000px;}
.y6b{bottom:1119.030000px;}
.y3a{bottom:1121.910000px;}
.y6a{bottom:1139.760000px;}
.y39{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h19{height:20.685000px;}
.h20{height:20.700000px;}
.h1e{height:20.722500px;}
.h17{height:21.585000px;}
.h15{height:21.600000px;}
.h16{height:21.630000px;}
.h13{height:21.765000px;}
.h14{height:41.385000px;}
.h1a{height:41.421000px;}
.h1f{height:41.422500px;}
.h3{height:45.184219px;}
.hd{height:56.278125px;}
.h1d{height:59.383125px;}
.h10{height:62.085000px;}
.h18{height:62.841000px;}
.h12{height:63.885000px;}
.hf{height:64.546875px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.h1c{height:68.084282px;}
.hc{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h1b{height:82.605000px;}
.h9{height:84.898125px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:52.365000px;}
.w5{width:56.194500px;}
.wf{width:63.210000px;}
.w4{width:82.470000px;}
.wa{width:84.261000px;}
.w11{width:84.405000px;}
.wb{width:89.085000px;}
.w10{width:94.860000px;}
.w8{width:94.896000px;}
.w9{width:105.465000px;}
.w3{width:180.735000px;}
.wc{width:244.153500px;}
.w6{width:296.479500px;}
.w12{width:337.753500px;}
.wd{width:360.795000px;}
.w7{width:376.095000px;}
.w13{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x1e{left:9.180000px;}
.x34{left:10.440000px;}
.x22{left:13.485000px;}
.x25{left:15.300000px;}
.x23{left:18.390000px;}
.x20{left:20.685000px;}
.x27{left:21.810000px;}
.x28{left:24.120000px;}
.x26{left:27.180000px;}
.x29{left:28.620000px;}
.x1d{left:32.400000px;}
.x2a{left:36.885000px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x2d{left:88.560000px;}
.xc{left:92.556000px;}
.x9{left:94.356000px;}
.x18{left:102.096000px;}
.x11{left:103.536000px;}
.x1b{left:107.803500px;}
.x1a{left:109.846500px;}
.x16{left:127.476000px;}
.x17{left:141.156000px;}
.x5{left:172.650000px;}
.x2c{left:180.930000px;}
.xd{left:190.290000px;}
.xa{left:230.250000px;}
.x2e{left:330.015000px;}
.x19{left:387.795000px;}
.x1c{left:407.055000px;}
.x35{left:414.795000px;}
.x14{left:423.975000px;}
.x31{left:425.775000px;}
.xb{left:446.505000px;}
.x12{left:465.045000px;}
.xe{left:467.745000px;}
.xf{left:471.525000px;}
.x15{left:485.565000px;}
.x1f{left:502.680000px;}
.x32{left:521.400000px;}
.x4{left:552.900000px;}
.x33{left:606.540000px;}
.x21{left:608.880000px;}
.x10{left:677.490000px;}
.x2f{left:691.530000px;}
.x24{left:694.050000px;}
.x6{left:733.650000px;}
.x13{left:741.390000px;}
.x30{left:744.810000px;}
.x2b{left:802.590000px;}
.x8{left:808.020000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.504533pt;}
.ls12{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.353067pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.140800pt;}
.ls24{letter-spacing:-0.130667pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls27{letter-spacing:0.148480pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls28{letter-spacing:0.274133pt;}
.ls19{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.663040pt;}
.ls23{letter-spacing:0.960000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls3{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:8.960000pt;}
.ls20{letter-spacing:13.440000pt;}
.ls1f{letter-spacing:17.920000pt;}
.lsd{letter-spacing:26.880000pt;}
.ls26{letter-spacing:30.970027pt;}
.ls22{letter-spacing:60.410027pt;}
.lsc{letter-spacing:573.546667pt;}
.ls21{letter-spacing:764.298667pt;}
.ws7{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.264640pt;}
.ws6{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.215467pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-2.104320pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.253653pt;}
._9{width:3.852800pt;}
._8{width:4.828160pt;}
._b{width:6.476800pt;}
._a{width:7.418880pt;}
._d{width:8.419840pt;}
._e{width:9.631147pt;}
._1b{width:10.558720pt;}
._7{width:11.481600pt;}
._1a{width:12.416000pt;}
._1c{width:13.565013pt;}
._17{width:14.502400pt;}
._15{width:16.976640pt;}
._c{width:18.382507pt;}
._18{width:20.160000pt;}
._19{width:21.120000pt;}
._11{width:22.197760pt;}
._13{width:26.392747pt;}
._12{width:27.306667pt;}
._1d{width:33.408000pt;}
._f{width:35.328000pt;}
._10{width:36.508587pt;}
._16{width:44.544000pt;}
._20{width:46.397440pt;}
._1e{width:85.376000pt;}
._1f{width:87.036587pt;}
._1{width:426.964907pt;}
._4{width:672.266667pt;}
._2{width:731.146667pt;}
._3{width:739.456427pt;}
._21{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y69{bottom:3.840000pt;}
.yc2{bottom:3.986667pt;}
.y7a{bottom:4.000000pt;}
.y7c{bottom:4.320000pt;}
.y77{bottom:4.480000pt;}
.y78{bottom:13.120000pt;}
.yc3{bottom:13.146667pt;}
.yf0{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.yc7{bottom:22.386667pt;}
.y79{bottom:22.400000pt;}
.yc1{bottom:22.426667pt;}
.ybf{bottom:22.746667pt;}
.y75{bottom:23.200000pt;}
.ya{bottom:27.680000pt;}
.yc8{bottom:31.506667pt;}
.y8{bottom:37.280000pt;}
.yc6{bottom:40.626667pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.yc5{bottom:59.026667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y67{bottom:134.426667pt;}
.y38{bottom:134.586667pt;}
.y9b{bottom:146.746667pt;}
.yce{bottom:147.066667pt;}
.ya9{bottom:147.226667pt;}
.y37{bottom:151.386667pt;}
.y66{bottom:152.826667pt;}
.ye1{bottom:156.986667pt;}
.y9a{bottom:165.146667pt;}
.ycd{bottom:165.466667pt;}
.ya8{bottom:165.626667pt;}
.y36{bottom:168.186667pt;}
.y65{bottom:171.226667pt;}
.ye0{bottom:173.786667pt;}
.y99{bottom:183.546667pt;}
.ycc{bottom:183.866667pt;}
.ya7{bottom:184.026667pt;}
.y35{bottom:185.146667pt;}
.y64{bottom:189.626667pt;}
.ydf{bottom:190.746667pt;}
.y34{bottom:201.946667pt;}
.ycb{bottom:202.266667pt;}
.ya6{bottom:202.426667pt;}
.yde{bottom:207.546667pt;}
.y63{bottom:208.026667pt;}
.y33{bottom:218.906667pt;}
.y98{bottom:220.346667pt;}
.yca{bottom:220.666667pt;}
.ya5{bottom:220.826667pt;}
.ydd{bottom:224.506667pt;}
.y62{bottom:226.426667pt;}
.y32{bottom:235.706667pt;}
.yc9{bottom:238.586667pt;}
.y97{bottom:238.746667pt;}
.ya4{bottom:239.226667pt;}
.ydc{bottom:241.306667pt;}
.y61{bottom:244.826667pt;}
.y31{bottom:252.506667pt;}
.yc4{bottom:252.680000pt;}
.y96{bottom:257.146667pt;}
.ya3{bottom:257.626667pt;}
.y60{bottom:263.226667pt;}
.y30{bottom:269.466667pt;}
.ydb{bottom:275.066667pt;}
.y95{bottom:275.546667pt;}
.ya2{bottom:276.026667pt;}
.y5f{bottom:281.626667pt;}
.y2f{bottom:286.266667pt;}
.ya1{bottom:290.586667pt;}
.yda{bottom:291.866667pt;}
.y94{bottom:293.946667pt;}
.y5e{bottom:300.026667pt;}
.y2e{bottom:303.226667pt;}
.yd9{bottom:308.826667pt;}
.y93{bottom:312.026667pt;}
.y5d{bottom:318.426667pt;}
.y2d{bottom:320.026667pt;}
.yd8{bottom:325.626667pt;}
.ybe{bottom:326.920000pt;}
.y92{bottom:330.746667pt;}
.y5c{bottom:336.506667pt;}
.y2c{bottom:336.826667pt;}
.yd7{bottom:342.466667pt;}
.y91{bottom:345.986667pt;}
.y2b{bottom:353.826667pt;}
.y5b{bottom:355.266667pt;}
.yd6{bottom:359.426667pt;}
.yc0{bottom:364.386667pt;}
.y90{bottom:365.986667pt;}
.y2a{bottom:370.626667pt;}
.y5a{bottom:373.666667pt;}
.yd5{bottom:376.226667pt;}
.y8f{bottom:385.986667pt;}
.ybd{bottom:387.426667pt;}
.y29{bottom:387.586667pt;}
.y59{bottom:392.066667pt;}
.yd4{bottom:393.186667pt;}
.y28{bottom:404.386667pt;}
.ybc{bottom:405.826667pt;}
.y8e{bottom:405.986667pt;}
.yd3{bottom:409.986667pt;}
.y58{bottom:410.466667pt;}
.y27{bottom:421.186667pt;}
.ybb{bottom:424.226667pt;}
.y8d{bottom:425.986667pt;}
.yd2{bottom:426.946667pt;}
.y57{bottom:428.866667pt;}
.y26{bottom:438.146667pt;}
.yba{bottom:442.626667pt;}
.yd1{bottom:443.746667pt;}
.y8c{bottom:445.986667pt;}
.y56{bottom:447.266667pt;}
.y25{bottom:454.946667pt;}
.yd0{bottom:460.706667pt;}
.yb9{bottom:461.026667pt;}
.y55{bottom:465.666667pt;}
.y8b{bottom:465.986667pt;}
.y24{bottom:471.906667pt;}
.yb8{bottom:479.426667pt;}
.y54{bottom:484.066667pt;}
.y8a{bottom:485.986667pt;}
.y23{bottom:488.706667pt;}
.yb7{bottom:497.826667pt;}
.y53{bottom:502.466667pt;}
.y22{bottom:505.666667pt;}
.y89{bottom:505.986667pt;}
.yb6{bottom:516.226667pt;}
.y52{bottom:520.866667pt;}
.y21{bottom:522.466667pt;}
.y88{bottom:525.986667pt;}
.yb5{bottom:534.626667pt;}
.y51{bottom:539.266667pt;}
.y20{bottom:539.746667pt;}
.y87{bottom:545.986667pt;}
.yb4{bottom:553.026667pt;}
.y50{bottom:557.666667pt;}
.y1f{bottom:558.306667pt;}
.y86{bottom:566.013333pt;}
.yb3{bottom:571.453333pt;}
.y4f{bottom:576.093333pt;}
.y1e{bottom:578.333333pt;}
.y85{bottom:586.013333pt;}
.yb2{bottom:589.853333pt;}
.y4e{bottom:594.493333pt;}
.y1d{bottom:597.853333pt;}
.y84{bottom:606.013333pt;}
.yb1{bottom:608.253333pt;}
.y4d{bottom:612.893333pt;}
.y1c{bottom:618.173333pt;}
.y83{bottom:626.013333pt;}
.yb0{bottom:626.653333pt;}
.y4c{bottom:631.293333pt;}
.y1b{bottom:638.173333pt;}
.yaf{bottom:645.053333pt;}
.y82{bottom:646.013333pt;}
.y4b{bottom:649.693333pt;}
.y1a{bottom:657.533333pt;}
.yae{bottom:663.453333pt;}
.y81{bottom:666.013333pt;}
.y4a{bottom:668.093333pt;}
.y19{bottom:677.533333pt;}
.yad{bottom:681.853333pt;}
.y80{bottom:686.013333pt;}
.y49{bottom:686.493333pt;}
.y18{bottom:697.853333pt;}
.yac{bottom:700.253333pt;}
.y48{bottom:704.893333pt;}
.y7f{bottom:706.013333pt;}
.y17{bottom:717.853333pt;}
.yab{bottom:718.653333pt;}
.yf2{bottom:720.093333pt;}
.y47{bottom:723.293333pt;}
.y7e{bottom:726.013333pt;}
.yaa{bottom:737.053333pt;}
.y16{bottom:737.373333pt;}
.yf1{bottom:738.493333pt;}
.y46{bottom:741.693333pt;}
.y7d{bottom:746.013333pt;}
.yef{bottom:752.893333pt;}
.ya0{bottom:755.453333pt;}
.y15{bottom:757.693333pt;}
.y45{bottom:759.933333pt;}
.y7b{bottom:766.013333pt;}
.yee{bottom:771.293333pt;}
.y9f{bottom:773.853333pt;}
.y14{bottom:777.693333pt;}
.y44{bottom:778.333333pt;}
.y74{bottom:786.053333pt;}
.y9e{bottom:792.293333pt;}
.yed{bottom:793.733333pt;}
.y43{bottom:796.773333pt;}
.y13{bottom:797.093333pt;}
.ycf{bottom:810.373333pt;}
.y9d{bottom:810.693333pt;}
.yec{bottom:811.813333pt;}
.y42{bottom:815.173333pt;}
.y12{bottom:816.933333pt;}
.y76{bottom:823.493333pt;}
.yeb{bottom:828.613333pt;}
.y9c{bottom:829.093333pt;}
.y41{bottom:833.573333pt;}
.y11{bottom:835.973333pt;}
.yea{bottom:845.573333pt;}
.y73{bottom:847.493333pt;}
.y10{bottom:857.413333pt;}
.ye9{bottom:862.373333pt;}
.y72{bottom:865.893333pt;}
.y40{bottom:870.373333pt;}
.yf{bottom:878.853333pt;}
.ye8{bottom:879.173333pt;}
.y71{bottom:884.293333pt;}
.y3f{bottom:888.773333pt;}
.ye7{bottom:896.133333pt;}
.ye{bottom:900.293333pt;}
.y70{bottom:902.693333pt;}
.y3e{bottom:907.173333pt;}
.ye6{bottom:912.933333pt;}
.y6f{bottom:921.093333pt;}
.y68{bottom:921.573333pt;}
.yd{bottom:921.733333pt;}
.y3d{bottom:925.573333pt;}
.ye5{bottom:929.893333pt;}
.y6e{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.y3c{bottom:943.973333pt;}
.ye4{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y6d{bottom:957.893333pt;}
.y3b{bottom:962.373333pt;}
.ye3{bottom:963.493333pt;}
.y6c{bottom:976.293333pt;}
.ye2{bottom:980.453333pt;}
.y6b{bottom:994.693333pt;}
.y3a{bottom:997.253333pt;}
.y6a{bottom:1013.120000pt;}
.y39{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h19{height:18.386667pt;}
.h20{height:18.400000pt;}
.h1e{height:18.420000pt;}
.h17{height:19.186667pt;}
.h15{height:19.200000pt;}
.h16{height:19.226667pt;}
.h13{height:19.346667pt;}
.h14{height:36.786667pt;}
.h1a{height:36.818667pt;}
.h1f{height:36.820000pt;}
.h3{height:40.163750pt;}
.hd{height:50.025000pt;}
.h1d{height:52.785000pt;}
.h10{height:55.186667pt;}
.h18{height:55.858667pt;}
.h12{height:56.786667pt;}
.hf{height:57.375000pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1c{height:60.519362pt;}
.hc{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h1b{height:73.426667pt;}
.h9{height:75.465000pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:46.546667pt;}
.w5{width:49.950667pt;}
.wf{width:56.186667pt;}
.w4{width:73.306667pt;}
.wa{width:74.898667pt;}
.w11{width:75.026667pt;}
.wb{width:79.186667pt;}
.w10{width:84.320000pt;}
.w8{width:84.352000pt;}
.w9{width:93.746667pt;}
.w3{width:160.653333pt;}
.wc{width:217.025333pt;}
.w6{width:263.537333pt;}
.w12{width:300.225333pt;}
.wd{width:320.706667pt;}
.w7{width:334.306667pt;}
.w13{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x1e{left:8.160000pt;}
.x34{left:9.280000pt;}
.x22{left:11.986667pt;}
.x25{left:13.600000pt;}
.x23{left:16.346667pt;}
.x20{left:18.386667pt;}
.x27{left:19.386667pt;}
.x28{left:21.440000pt;}
.x26{left:24.160000pt;}
.x29{left:25.440000pt;}
.x1d{left:28.800000pt;}
.x2a{left:32.786667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x2d{left:78.720000pt;}
.xc{left:82.272000pt;}
.x9{left:83.872000pt;}
.x18{left:90.752000pt;}
.x11{left:92.032000pt;}
.x1b{left:95.825333pt;}
.x1a{left:97.641333pt;}
.x16{left:113.312000pt;}
.x17{left:125.472000pt;}
.x5{left:153.466667pt;}
.x2c{left:160.826667pt;}
.xd{left:169.146667pt;}
.xa{left:204.666667pt;}
.x2e{left:293.346667pt;}
.x19{left:344.706667pt;}
.x1c{left:361.826667pt;}
.x35{left:368.706667pt;}
.x14{left:376.866667pt;}
.x31{left:378.466667pt;}
.xb{left:396.893333pt;}
.x12{left:413.373333pt;}
.xe{left:415.773333pt;}
.xf{left:419.133333pt;}
.x15{left:431.613333pt;}
.x1f{left:446.826667pt;}
.x32{left:463.466667pt;}
.x4{left:491.466667pt;}
.x33{left:539.146667pt;}
.x21{left:541.226667pt;}
.x10{left:602.213333pt;}
.x2f{left:614.693333pt;}
.x24{left:616.933333pt;}
.x6{left:652.133333pt;}
.x13{left:659.013333pt;}
.x30{left:662.053333pt;}
.x2b{left:713.413333pt;}
.x8{left:718.240000pt;}
}




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