
    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_4fa129e61adeae96359dc12f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_5df77ec7fe9386dd0c77ad5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_5c1fecb5d5cf2c857e27ad29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_01c54eb0c67f60225d01aa5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_27d34bb6475149331eccd2f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_95616f7b3ef884b918516e1a.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-2.880000px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.106720px;}
.ls11{letter-spacing:14.400000px;}
.ls10{letter-spacing:19.781280px;}
.lsc{letter-spacing:42.821280px;}
.ls2{letter-spacing:62.957280px;}
.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:-59.760000px;}
.ws1{word-spacing:-48.600000px;}
.ws0{word-spacing:-24.642000px;}
.ws3{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.wsa{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-4.537440px;}
._4{margin-left:-3.431760px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._5{width:2.271120px;}
._10{width:3.528000px;}
._f{width:4.568880px;}
._17{width:5.832000px;}
._1a{width:6.840000px;}
._1c{width:8.023200px;}
._15{width:9.054720px;}
._16{width:10.134720px;}
._a{width:11.177280px;}
._9{width:12.240000px;}
._14{width:13.284000px;}
._13{width:14.904000px;}
._b{width:16.838400px;}
._1b{width:19.097280px;}
._1d{width:20.393280px;}
._20{width:21.657120px;}
._19{width:23.544000px;}
._1e{width:24.696000px;}
._1f{width:27.588000px;}
._12{width:29.556000px;}
._11{width:30.960000px;}
._18{width:32.904000px;}
._d{width:34.776000px;}
._e{width:36.000000px;}
._3{width:44.647680px;}
._8{width:98.034720px;}
._6{width:99.230880px;}
._7{width:103.325040px;}
._2{width:195.469680px;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y8c{bottom:3.990000px;}
.y88{bottom:4.680000px;}
.y90{bottom:4.860000px;}
.y8a{bottom:5.400000px;}
.ya3{bottom:6.660000px;}
.ya5{bottom:14.400000px;}
.y83{bottom:24.660000px;}
.y5{bottom:56.520000px;}
.y4{bottom:75.996000px;}
.y3{bottom:96.336000px;}
.y2{bottom:115.416000px;}
.y1{bottom:134.316000px;}
.yb3{bottom:154.830000px;}
.y71{bottom:155.910000px;}
.y7a{bottom:156.990000px;}
.y51{bottom:159.150000px;}
.y31{bottom:161.850000px;}
.y9f{bottom:165.630000px;}
.yd6{bottom:175.890000px;}
.y30{bottom:182.550000px;}
.yb2{bottom:185.970000px;}
.y70{bottom:187.050000px;}
.y50{bottom:190.290000px;}
.y101{bottom:191.910000px;}
.y9e{bottom:196.770000px;}
.y2f{bottom:206.310000px;}
.yd5{bottom:206.850000px;}
.y100{bottom:212.610000px;}
.yb1{bottom:216.930000px;}
.y6f{bottom:218.010000px;}
.y4f{bottom:221.250000px;}
.y2e{bottom:227.010000px;}
.y9d{bottom:227.730000px;}
.yff{bottom:233.310000px;}
.yb0{bottom:236.910000px;}
.yd4{bottom:237.990000px;}
.y2d{bottom:247.710000px;}
.y6e{bottom:249.150000px;}
.y4e{bottom:252.390000px;}
.yfe{bottom:254.010000px;}
.yaf{bottom:254.190000px;}
.y9c{bottom:258.870000px;}
.y2c{bottom:268.410000px;}
.yd3{bottom:268.950000px;}
.yae{bottom:271.470000px;}
.yfd{bottom:274.710000px;}
.y6d{bottom:280.110000px;}
.y4d{bottom:283.350000px;}
.yad{bottom:288.750000px;}
.y2b{bottom:289.110000px;}
.y9b{bottom:289.830000px;}
.yfc{bottom:295.410000px;}
.yd2{bottom:300.090000px;}
.yac{bottom:303.510000px;}
.y2a{bottom:309.810000px;}
.y6c{bottom:311.250000px;}
.y4c{bottom:314.490000px;}
.yfb{bottom:316.110000px;}
.y9a{bottom:320.970000px;}
.yab{bottom:324.210000px;}
.y29{bottom:330.510000px;}
.yd1{bottom:331.050000px;}
.y79{bottom:335.730000px;}
.yfa{bottom:336.855000px;}
.y6b{bottom:342.255000px;}
.yaa{bottom:344.955000px;}
.y4b{bottom:345.495000px;}
.y28{bottom:351.255000px;}
.y99{bottom:351.975000px;}
.yf9{bottom:357.555000px;}
.y78{bottom:361.875000px;}
.yd0{bottom:362.235000px;}
.ya9{bottom:365.655000px;}
.y27{bottom:371.955000px;}
.y6a{bottom:373.395000px;}
.y4a{bottom:376.635000px;}
.yf8{bottom:378.255000px;}
.y98{bottom:383.115000px;}
.ya8{bottom:387.075000px;}
.y26{bottom:392.655000px;}
.ycf{bottom:393.195000px;}
.yf7{bottom:398.955000px;}
.y97{bottom:403.095000px;}
.y69{bottom:404.355000px;}
.y49{bottom:407.595000px;}
.y25{bottom:413.355000px;}
.yf6{bottom:419.655000px;}
.y96{bottom:420.375000px;}
.yce{bottom:424.155000px;}
.ya7{bottom:429.195000px;}
.y24{bottom:434.055000px;}
.y68{bottom:435.495000px;}
.y95{bottom:437.475000px;}
.y48{bottom:438.735000px;}
.yf5{bottom:440.355000px;}
.ya6{bottom:449.895000px;}
.y94{bottom:452.235000px;}
.y23{bottom:454.755000px;}
.ycd{bottom:457.635000px;}
.yf4{bottom:461.055000px;}
.y67{bottom:466.455000px;}
.y47{bottom:469.695000px;}
.y93{bottom:472.935000px;}
.y22{bottom:478.515000px;}
.yf3{bottom:481.755000px;}
.ya4{bottom:491.295000px;}
.ycc{bottom:491.475000px;}
.y92{bottom:493.635000px;}
.y66{bottom:497.595000px;}
.y21{bottom:499.215000px;}
.y46{bottom:500.835000px;}
.yf2{bottom:502.455000px;}
.y91{bottom:514.335000px;}
.y20{bottom:519.915000px;}
.ycb{bottom:522.615000px;}
.yf1{bottom:523.155000px;}
.y65{bottom:528.555000px;}
.y77{bottom:531.615000px;}
.y45{bottom:531.795000px;}
.ya2{bottom:533.415000px;}
.y8f{bottom:535.035000px;}
.y1f{bottom:540.615000px;}
.yf0{bottom:543.855000px;}
.yca{bottom:553.575000px;}
.ya1{bottom:554.115000px;}
.y8e{bottom:556.455000px;}
.y64{bottom:559.695000px;}
.y1e{bottom:561.315000px;}
.y76{bottom:562.575000px;}
.y44{bottom:562.935000px;}
.yef{bottom:564.555000px;}
.ya0{bottom:575.535000px;}
.y8d{bottom:578.055000px;}
.y1d{bottom:582.015000px;}
.yc9{bottom:584.715000px;}
.yee{bottom:585.255000px;}
.y63{bottom:590.655000px;}
.y75{bottom:593.535000px;}
.y43{bottom:593.895000px;}
.y8b{bottom:600.195000px;}
.y1c{bottom:602.715000px;}
.yed{bottom:605.985000px;}
.yc8{bottom:615.705000px;}
.y89{bottom:620.925000px;}
.y62{bottom:621.645000px;}
.y1b{bottom:623.445000px;}
.y74{bottom:624.705000px;}
.y42{bottom:625.065000px;}
.yec{bottom:626.685000px;}
.y87{bottom:642.345000px;}
.y1a{bottom:644.145000px;}
.yc7{bottom:646.845000px;}
.yeb{bottom:647.385000px;}
.y61{bottom:652.785000px;}
.y73{bottom:655.665000px;}
.y41{bottom:656.025000px;}
.y111{bottom:656.385000px;}
.y86{bottom:664.485000px;}
.y19{bottom:664.845000px;}
.yea{bottom:668.085000px;}
.yc6{bottom:677.805000px;}
.y110{bottom:680.145000px;}
.y72{bottom:682.665000px;}
.y60{bottom:683.745000px;}
.y85{bottom:685.185000px;}
.y18{bottom:685.545000px;}
.y40{bottom:687.165000px;}
.ye9{bottom:688.785000px;}
.y10f{bottom:704.085000px;}
.y17{bottom:706.245000px;}
.y82{bottom:706.785000px;}
.yc5{bottom:708.945000px;}
.ye8{bottom:709.485000px;}
.y5f{bottom:714.885000px;}
.y3f{bottom:718.125000px;}
.y10e{bottom:724.965000px;}
.y16{bottom:726.945000px;}
.ye7{bottom:730.185000px;}
.yc4{bottom:739.905000px;}
.y5e{bottom:745.845000px;}
.y15{bottom:747.645000px;}
.y3e{bottom:749.265000px;}
.ye6{bottom:750.885000px;}
.y81{bottom:752.865000px;}
.y10d{bottom:766.545000px;}
.y14{bottom:768.345000px;}
.yc3{bottom:771.045000px;}
.ye5{bottom:771.405000px;}
.y5d{bottom:776.985000px;}
.y3d{bottom:780.225000px;}
.y80{bottom:783.825000px;}
.y10c{bottom:787.245000px;}
.y13{bottom:789.045000px;}
.yc2{bottom:791.025000px;}
.ye4{bottom:792.105000px;}
.y5c{bottom:807.945000px;}
.yc1{bottom:808.125000px;}
.y12{bottom:809.745000px;}
.y3c{bottom:811.365000px;}
.ye3{bottom:812.805000px;}
.y7f{bottom:814.965000px;}
.yc0{bottom:825.405000px;}
.y10b{bottom:828.645000px;}
.y11{bottom:830.445000px;}
.ye2{bottom:833.505000px;}
.y5b{bottom:839.085000px;}
.ybf{bottom:840.165000px;}
.y3b{bottom:842.325000px;}
.y7e{bottom:845.925000px;}
.y10a{bottom:849.345000px;}
.y10{bottom:851.145000px;}
.ye1{bottom:854.205000px;}
.ybe{bottom:860.865000px;}
.y5a{bottom:870.045000px;}
.yf{bottom:873.150000px;}
.y3a{bottom:873.510000px;}
.ye0{bottom:874.950000px;}
.y7d{bottom:877.110000px;}
.ybd{bottom:881.610000px;}
.y109{bottom:890.790000px;}
.ydf{bottom:895.650000px;}
.ye{bottom:900.870000px;}
.y59{bottom:901.230000px;}
.ybc{bottom:903.030000px;}
.y39{bottom:904.470000px;}
.y7c{bottom:908.070000px;}
.y108{bottom:911.490000px;}
.ybb{bottom:924.630000px;}
.yd{bottom:928.410000px;}
.y7b{bottom:929.310000px;}
.y58{bottom:932.190000px;}
.y38{bottom:935.610000px;}
.yde{bottom:937.410000px;}
.yba{bottom:945.330000px;}
.y107{bottom:952.890000px;}
.yc{bottom:955.950000px;}
.ydd{bottom:958.110000px;}
.y57{bottom:963.330000px;}
.y37{bottom:966.570000px;}
.yb9{bottom:966.750000px;}
.y106{bottom:973.590000px;}
.ydc{bottom:978.810000px;}
.yb{bottom:983.670000px;}
.yb8{bottom:988.170000px;}
.y56{bottom:994.290000px;}
.y36{bottom:997.710000px;}
.ydb{bottom:999.510000px;}
.yb7{bottom:1008.870000px;}
.ya{bottom:1011.210000px;}
.y105{bottom:1014.990000px;}
.yda{bottom:1020.210000px;}
.y55{bottom:1025.430000px;}
.y35{bottom:1028.670000px;}
.yb6{bottom:1030.290000px;}
.y104{bottom:1035.690000px;}
.y9{bottom:1038.750000px;}
.yd9{bottom:1040.910000px;}
.yb5{bottom:1050.990000px;}
.y54{bottom:1056.390000px;}
.y34{bottom:1059.630000px;}
.yd8{bottom:1061.610000px;}
.y8{bottom:1066.470000px;}
.yb4{bottom:1072.410000px;}
.y103{bottom:1077.090000px;}
.yd7{bottom:1082.310000px;}
.y53{bottom:1087.530000px;}
.y33{bottom:1090.770000px;}
.y7{bottom:1094.010000px;}
.y102{bottom:1097.790000px;}
.y32{bottom:1115.610000px;}
.y52{bottom:1118.490000px;}
.y6{bottom:1119.750000px;}
.h12{height:20.520000px;}
.hc{height:20.700000px;}
.hf{height:20.736000px;}
.he{height:21.420000px;}
.hb{height:41.400000px;}
.h11{height:41.436000px;}
.h9{height:41.493516px;}
.ha{height:43.506914px;}
.h4{height:48.224531px;}
.h10{height:53.573906px;}
.h2{height:59.383125px;}
.h7{height:63.351562px;}
.h6{height:63.949219px;}
.h3{height:64.546875px;}
.hd{height:70.606406px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:42.120000px;}
.w8{width:42.480000px;}
.w9{width:63.396000px;}
.w11{width:63.936000px;}
.w6{width:84.780000px;}
.wb{width:85.176000px;}
.w13{width:85.536000px;}
.w12{width:105.840000px;}
.w19{width:106.020000px;}
.wf{width:106.236000px;}
.w1b{width:106.380000px;}
.wa{width:116.460000px;}
.w1a{width:116.496000px;}
.w15{width:116.856000px;}
.w7{width:117.036000px;}
.w3{width:127.620000px;}
.w14{width:138.240000px;}
.wc{width:148.860000px;}
.wd{width:212.295000px;}
.w18{width:222.870000px;}
.w4{width:222.915000px;}
.w17{width:223.050000px;}
.we{width:233.490000px;}
.w16{width:233.850000px;}
.w5{width:244.290000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x2c{left:11.745000px;}
.x1a{left:13.140000px;}
.x1f{left:14.400000px;}
.x33{left:15.660000px;}
.x18{left:17.100000px;}
.x30{left:18.540000px;}
.x20{left:19.800000px;}
.x21{left:21.240000px;}
.x10{left:22.365000px;}
.x1e{left:24.165000px;}
.x26{left:25.734000px;}
.x27{left:27.360000px;}
.x25{left:29.334000px;}
.x17{left:30.774000px;}
.x22{left:31.860000px;}
.x34{left:33.834000px;}
.x13{left:35.640000px;}
.x3d{left:36.720000px;}
.x35{left:38.514000px;}
.x16{left:42.300000px;}
.x23{left:45.714000px;}
.x32{left:47.334000px;}
.x31{left:48.414000px;}
.x3a{left:50.400000px;}
.x2f{left:53.145000px;}
.x24{left:58.545000px;}
.x29{left:74.334000px;}
.x3e{left:76.854000px;}
.x3f{left:81.894000px;}
.x39{left:83.874000px;}
.x2b{left:85.725000px;}
.x41{left:89.454000px;}
.x11{left:90.945000px;}
.x14{left:96.840000px;}
.x40{left:99.894000px;}
.x3c{left:102.414000px;}
.x42{left:121.895987px;}
.x1{left:127.655987px;}
.xc{left:154.649987px;}
.x3{left:170.129987px;}
.x7{left:176.969987px;}
.x8{left:180.749987px;}
.x4{left:212.609987px;}
.xf{left:255.270000px;}
.x36{left:265.890000px;}
.x2a{left:276.510000px;}
.x28{left:293.474987px;}
.xd{left:300.854987px;}
.x5{left:310.214987px;}
.x37{left:361.515000px;}
.x19{left:372.315000px;}
.x2d{left:382.755000px;}
.x1b{left:414.795000px;}
.x2e{left:424.875000px;}
.x12{left:478.905000px;}
.x6{left:489.164987px;}
.xa{left:548.924987px;}
.xb{left:578.264987px;}
.x38{left:585.285000px;}
.x1c{left:595.545000px;}
.x1d{left:638.025000px;}
.x9{left:687.569987px;}
.x3b{left:701.790000px;}
.x15{left:723.210000px;}
.x2{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-2.560000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.872640pt;}
.ls11{letter-spacing:12.800000pt;}
.ls10{letter-spacing:17.583360pt;}
.lsc{letter-spacing:38.063360pt;}
.ls2{letter-spacing:55.962027pt;}
.ws6{word-spacing:-53.120000pt;}
.ws1{word-spacing:-43.200000pt;}
.ws0{word-spacing:-21.904000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-4.033280pt;}
._4{margin-left:-3.050453pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._5{width:2.018773pt;}
._10{width:3.136000pt;}
._f{width:4.061227pt;}
._17{width:5.184000pt;}
._1a{width:6.080000pt;}
._1c{width:7.131733pt;}
._15{width:8.048640pt;}
._16{width:9.008640pt;}
._a{width:9.935360pt;}
._9{width:10.880000pt;}
._14{width:11.808000pt;}
._13{width:13.248000pt;}
._b{width:14.967467pt;}
._1b{width:16.975360pt;}
._1d{width:18.127360pt;}
._20{width:19.250773pt;}
._19{width:20.928000pt;}
._1e{width:21.952000pt;}
._1f{width:24.522667pt;}
._12{width:26.272000pt;}
._11{width:27.520000pt;}
._18{width:29.248000pt;}
._d{width:30.912000pt;}
._e{width:32.000000pt;}
._3{width:39.686827pt;}
._8{width:87.141973pt;}
._6{width:88.205227pt;}
._7{width:91.844480pt;}
._2{width:173.750827pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y8c{bottom:3.546667pt;}
.y88{bottom:4.160000pt;}
.y90{bottom:4.320000pt;}
.y8a{bottom:4.800000pt;}
.ya3{bottom:5.920000pt;}
.ya5{bottom:12.800000pt;}
.y83{bottom:21.920000pt;}
.y5{bottom:50.240000pt;}
.y4{bottom:67.552000pt;}
.y3{bottom:85.632000pt;}
.y2{bottom:102.592000pt;}
.y1{bottom:119.392000pt;}
.yb3{bottom:137.626667pt;}
.y71{bottom:138.586667pt;}
.y7a{bottom:139.546667pt;}
.y51{bottom:141.466667pt;}
.y31{bottom:143.866667pt;}
.y9f{bottom:147.226667pt;}
.yd6{bottom:156.346667pt;}
.y30{bottom:162.266667pt;}
.yb2{bottom:165.306667pt;}
.y70{bottom:166.266667pt;}
.y50{bottom:169.146667pt;}
.y101{bottom:170.586667pt;}
.y9e{bottom:174.906667pt;}
.y2f{bottom:183.386667pt;}
.yd5{bottom:183.866667pt;}
.y100{bottom:188.986667pt;}
.yb1{bottom:192.826667pt;}
.y6f{bottom:193.786667pt;}
.y4f{bottom:196.666667pt;}
.y2e{bottom:201.786667pt;}
.y9d{bottom:202.426667pt;}
.yff{bottom:207.386667pt;}
.yb0{bottom:210.586667pt;}
.yd4{bottom:211.546667pt;}
.y2d{bottom:220.186667pt;}
.y6e{bottom:221.466667pt;}
.y4e{bottom:224.346667pt;}
.yfe{bottom:225.786667pt;}
.yaf{bottom:225.946667pt;}
.y9c{bottom:230.106667pt;}
.y2c{bottom:238.586667pt;}
.yd3{bottom:239.066667pt;}
.yae{bottom:241.306667pt;}
.yfd{bottom:244.186667pt;}
.y6d{bottom:248.986667pt;}
.y4d{bottom:251.866667pt;}
.yad{bottom:256.666667pt;}
.y2b{bottom:256.986667pt;}
.y9b{bottom:257.626667pt;}
.yfc{bottom:262.586667pt;}
.yd2{bottom:266.746667pt;}
.yac{bottom:269.786667pt;}
.y2a{bottom:275.386667pt;}
.y6c{bottom:276.666667pt;}
.y4c{bottom:279.546667pt;}
.yfb{bottom:280.986667pt;}
.y9a{bottom:285.306667pt;}
.yab{bottom:288.186667pt;}
.y29{bottom:293.786667pt;}
.yd1{bottom:294.266667pt;}
.y79{bottom:298.426667pt;}
.yfa{bottom:299.426667pt;}
.y6b{bottom:304.226667pt;}
.yaa{bottom:306.626667pt;}
.y4b{bottom:307.106667pt;}
.y28{bottom:312.226667pt;}
.y99{bottom:312.866667pt;}
.yf9{bottom:317.826667pt;}
.y78{bottom:321.666667pt;}
.yd0{bottom:321.986667pt;}
.ya9{bottom:325.026667pt;}
.y27{bottom:330.626667pt;}
.y6a{bottom:331.906667pt;}
.y4a{bottom:334.786667pt;}
.yf8{bottom:336.226667pt;}
.y98{bottom:340.546667pt;}
.ya8{bottom:344.066667pt;}
.y26{bottom:349.026667pt;}
.ycf{bottom:349.506667pt;}
.yf7{bottom:354.626667pt;}
.y97{bottom:358.306667pt;}
.y69{bottom:359.426667pt;}
.y49{bottom:362.306667pt;}
.y25{bottom:367.426667pt;}
.yf6{bottom:373.026667pt;}
.y96{bottom:373.666667pt;}
.yce{bottom:377.026667pt;}
.ya7{bottom:381.506667pt;}
.y24{bottom:385.826667pt;}
.y68{bottom:387.106667pt;}
.y95{bottom:388.866667pt;}
.y48{bottom:389.986667pt;}
.yf5{bottom:391.426667pt;}
.ya6{bottom:399.906667pt;}
.y94{bottom:401.986667pt;}
.y23{bottom:404.226667pt;}
.ycd{bottom:406.786667pt;}
.yf4{bottom:409.826667pt;}
.y67{bottom:414.626667pt;}
.y47{bottom:417.506667pt;}
.y93{bottom:420.386667pt;}
.y22{bottom:425.346667pt;}
.yf3{bottom:428.226667pt;}
.ya4{bottom:436.706667pt;}
.ycc{bottom:436.866667pt;}
.y92{bottom:438.786667pt;}
.y66{bottom:442.306667pt;}
.y21{bottom:443.746667pt;}
.y46{bottom:445.186667pt;}
.yf2{bottom:446.626667pt;}
.y91{bottom:457.186667pt;}
.y20{bottom:462.146667pt;}
.ycb{bottom:464.546667pt;}
.yf1{bottom:465.026667pt;}
.y65{bottom:469.826667pt;}
.y77{bottom:472.546667pt;}
.y45{bottom:472.706667pt;}
.ya2{bottom:474.146667pt;}
.y8f{bottom:475.586667pt;}
.y1f{bottom:480.546667pt;}
.yf0{bottom:483.426667pt;}
.yca{bottom:492.066667pt;}
.ya1{bottom:492.546667pt;}
.y8e{bottom:494.626667pt;}
.y64{bottom:497.506667pt;}
.y1e{bottom:498.946667pt;}
.y76{bottom:500.066667pt;}
.y44{bottom:500.386667pt;}
.yef{bottom:501.826667pt;}
.ya0{bottom:511.586667pt;}
.y8d{bottom:513.826667pt;}
.y1d{bottom:517.346667pt;}
.yc9{bottom:519.746667pt;}
.yee{bottom:520.226667pt;}
.y63{bottom:525.026667pt;}
.y75{bottom:527.586667pt;}
.y43{bottom:527.906667pt;}
.y8b{bottom:533.506667pt;}
.y1c{bottom:535.746667pt;}
.yed{bottom:538.653333pt;}
.yc8{bottom:547.293333pt;}
.y89{bottom:551.933333pt;}
.y62{bottom:552.573333pt;}
.y1b{bottom:554.173333pt;}
.y74{bottom:555.293333pt;}
.y42{bottom:555.613333pt;}
.yec{bottom:557.053333pt;}
.y87{bottom:570.973333pt;}
.y1a{bottom:572.573333pt;}
.yc7{bottom:574.973333pt;}
.yeb{bottom:575.453333pt;}
.y61{bottom:580.253333pt;}
.y73{bottom:582.813333pt;}
.y41{bottom:583.133333pt;}
.y111{bottom:583.453333pt;}
.y86{bottom:590.653333pt;}
.y19{bottom:590.973333pt;}
.yea{bottom:593.853333pt;}
.yc6{bottom:602.493333pt;}
.y110{bottom:604.573333pt;}
.y72{bottom:606.813333pt;}
.y60{bottom:607.773333pt;}
.y85{bottom:609.053333pt;}
.y18{bottom:609.373333pt;}
.y40{bottom:610.813333pt;}
.ye9{bottom:612.253333pt;}
.y10f{bottom:625.853333pt;}
.y17{bottom:627.773333pt;}
.y82{bottom:628.253333pt;}
.yc5{bottom:630.173333pt;}
.ye8{bottom:630.653333pt;}
.y5f{bottom:635.453333pt;}
.y3f{bottom:638.333333pt;}
.y10e{bottom:644.413333pt;}
.y16{bottom:646.173333pt;}
.ye7{bottom:649.053333pt;}
.yc4{bottom:657.693333pt;}
.y5e{bottom:662.973333pt;}
.y15{bottom:664.573333pt;}
.y3e{bottom:666.013333pt;}
.ye6{bottom:667.453333pt;}
.y81{bottom:669.213333pt;}
.y10d{bottom:681.373333pt;}
.y14{bottom:682.973333pt;}
.yc3{bottom:685.373333pt;}
.ye5{bottom:685.693333pt;}
.y5d{bottom:690.653333pt;}
.y3d{bottom:693.533333pt;}
.y80{bottom:696.733333pt;}
.y10c{bottom:699.773333pt;}
.y13{bottom:701.373333pt;}
.yc2{bottom:703.133333pt;}
.ye4{bottom:704.093333pt;}
.y5c{bottom:718.173333pt;}
.yc1{bottom:718.333333pt;}
.y12{bottom:719.773333pt;}
.y3c{bottom:721.213333pt;}
.ye3{bottom:722.493333pt;}
.y7f{bottom:724.413333pt;}
.yc0{bottom:733.693333pt;}
.y10b{bottom:736.573333pt;}
.y11{bottom:738.173333pt;}
.ye2{bottom:740.893333pt;}
.y5b{bottom:745.853333pt;}
.ybf{bottom:746.813333pt;}
.y3b{bottom:748.733333pt;}
.y7e{bottom:751.933333pt;}
.y10a{bottom:754.973333pt;}
.y10{bottom:756.573333pt;}
.ye1{bottom:759.293333pt;}
.ybe{bottom:765.213333pt;}
.y5a{bottom:773.373333pt;}
.yf{bottom:776.133333pt;}
.y3a{bottom:776.453333pt;}
.ye0{bottom:777.733333pt;}
.y7d{bottom:779.653333pt;}
.ybd{bottom:783.653333pt;}
.y109{bottom:791.813333pt;}
.ydf{bottom:796.133333pt;}
.ye{bottom:800.773333pt;}
.y59{bottom:801.093333pt;}
.ybc{bottom:802.693333pt;}
.y39{bottom:803.973333pt;}
.y7c{bottom:807.173333pt;}
.y108{bottom:810.213333pt;}
.ybb{bottom:821.893333pt;}
.yd{bottom:825.253333pt;}
.y7b{bottom:826.053333pt;}
.y58{bottom:828.613333pt;}
.y38{bottom:831.653333pt;}
.yde{bottom:833.253333pt;}
.yba{bottom:840.293333pt;}
.y107{bottom:847.013333pt;}
.yc{bottom:849.733333pt;}
.ydd{bottom:851.653333pt;}
.y57{bottom:856.293333pt;}
.y37{bottom:859.173333pt;}
.yb9{bottom:859.333333pt;}
.y106{bottom:865.413333pt;}
.ydc{bottom:870.053333pt;}
.yb{bottom:874.373333pt;}
.yb8{bottom:878.373333pt;}
.y56{bottom:883.813333pt;}
.y36{bottom:886.853333pt;}
.ydb{bottom:888.453333pt;}
.yb7{bottom:896.773333pt;}
.ya{bottom:898.853333pt;}
.y105{bottom:902.213333pt;}
.yda{bottom:906.853333pt;}
.y55{bottom:911.493333pt;}
.y35{bottom:914.373333pt;}
.yb6{bottom:915.813333pt;}
.y104{bottom:920.613333pt;}
.y9{bottom:923.333333pt;}
.yd9{bottom:925.253333pt;}
.yb5{bottom:934.213333pt;}
.y54{bottom:939.013333pt;}
.y34{bottom:941.893333pt;}
.yd8{bottom:943.653333pt;}
.y8{bottom:947.973333pt;}
.yb4{bottom:953.253333pt;}
.y103{bottom:957.413333pt;}
.yd7{bottom:962.053333pt;}
.y53{bottom:966.693333pt;}
.y33{bottom:969.573333pt;}
.y7{bottom:972.453333pt;}
.y102{bottom:975.813333pt;}
.y32{bottom:991.653333pt;}
.y52{bottom:994.213333pt;}
.y6{bottom:995.333333pt;}
.h12{height:18.240000pt;}
.hc{height:18.400000pt;}
.hf{height:18.432000pt;}
.he{height:19.040000pt;}
.hb{height:36.800000pt;}
.h11{height:36.832000pt;}
.h9{height:36.883125pt;}
.ha{height:38.672812pt;}
.h4{height:42.866250pt;}
.h10{height:47.621250pt;}
.h2{height:52.785000pt;}
.h7{height:56.312500pt;}
.h6{height:56.843750pt;}
.h3{height:57.375000pt;}
.hd{height:62.761250pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:37.440000pt;}
.w8{width:37.760000pt;}
.w9{width:56.352000pt;}
.w11{width:56.832000pt;}
.w6{width:75.360000pt;}
.wb{width:75.712000pt;}
.w13{width:76.032000pt;}
.w12{width:94.080000pt;}
.w19{width:94.240000pt;}
.wf{width:94.432000pt;}
.w1b{width:94.560000pt;}
.wa{width:103.520000pt;}
.w1a{width:103.552000pt;}
.w15{width:103.872000pt;}
.w7{width:104.032000pt;}
.w3{width:113.440000pt;}
.w14{width:122.880000pt;}
.wc{width:132.320000pt;}
.wd{width:188.706667pt;}
.w18{width:198.106667pt;}
.w4{width:198.146667pt;}
.w17{width:198.266667pt;}
.we{width:207.546667pt;}
.w16{width:207.866667pt;}
.w5{width:217.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x2c{left:10.440000pt;}
.x1a{left:11.680000pt;}
.x1f{left:12.800000pt;}
.x33{left:13.920000pt;}
.x18{left:15.200000pt;}
.x30{left:16.480000pt;}
.x20{left:17.600000pt;}
.x21{left:18.880000pt;}
.x10{left:19.880000pt;}
.x1e{left:21.480000pt;}
.x26{left:22.874667pt;}
.x27{left:24.320000pt;}
.x25{left:26.074667pt;}
.x17{left:27.354667pt;}
.x22{left:28.320000pt;}
.x34{left:30.074667pt;}
.x13{left:31.680000pt;}
.x3d{left:32.640000pt;}
.x35{left:34.234667pt;}
.x16{left:37.600000pt;}
.x23{left:40.634667pt;}
.x32{left:42.074667pt;}
.x31{left:43.034667pt;}
.x3a{left:44.800000pt;}
.x2f{left:47.240000pt;}
.x24{left:52.040000pt;}
.x29{left:66.074667pt;}
.x3e{left:68.314667pt;}
.x3f{left:72.794667pt;}
.x39{left:74.554667pt;}
.x2b{left:76.200000pt;}
.x41{left:79.514667pt;}
.x11{left:80.840000pt;}
.x14{left:86.080000pt;}
.x40{left:88.794667pt;}
.x3c{left:91.034667pt;}
.x42{left:108.351988pt;}
.x1{left:113.471988pt;}
.xc{left:137.466655pt;}
.x3{left:151.226655pt;}
.x7{left:157.306655pt;}
.x8{left:160.666655pt;}
.x4{left:188.986655pt;}
.xf{left:226.906667pt;}
.x36{left:236.346667pt;}
.x2a{left:245.786667pt;}
.x28{left:260.866655pt;}
.xd{left:267.426655pt;}
.x5{left:275.746655pt;}
.x37{left:321.346667pt;}
.x19{left:330.946667pt;}
.x2d{left:340.226667pt;}
.x1b{left:368.706667pt;}
.x2e{left:377.666667pt;}
.x12{left:425.693333pt;}
.x6{left:434.813322pt;}
.xa{left:487.933322pt;}
.xb{left:514.013322pt;}
.x38{left:520.253333pt;}
.x1c{left:529.373333pt;}
.x1d{left:567.133333pt;}
.x9{left:611.173322pt;}
.x3b{left:623.813333pt;}
.x15{left:642.853333pt;}
.x2{left:718.373322pt;}
}




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