
    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_d001c14d928b0bd4a39fba87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_458456790d78d65b58f6a7df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_72b402676dac15efadb0b4da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9154ff70b51777fb827904c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_62dd77981d27666f2adb2ebc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_3fa37e624f2e9676cda1da35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8cbf11ed3c84f30d10231281.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8cf8ec73de007c4511f8c986.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.174000px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.504000px;}
.lsd{letter-spacing:2.160000px;}
.lsa{letter-spacing:4.320000px;}
.ls8{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.200000px;}
.lse{letter-spacing:15.120000px;}
.lsf{letter-spacing:18.000000px;}
.ls2{letter-spacing:26.640000px;}
.ls7{letter-spacing:28.800000px;}
.lsb{letter-spacing:33.840000px;}
.ls6{letter-spacing:134.784000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.608000px;}
._a{margin-left:-2.736000px;}
._2{margin-left:-1.224000px;}
._0{width:1.055520px;}
._5{width:2.148000px;}
._6{width:3.205920px;}
._9{width:4.426080px;}
._d{width:5.616000px;}
._8{width:6.624000px;}
._7{width:7.776000px;}
._11{width:9.288000px;}
._12{width:10.296000px;}
._f{width:11.448000px;}
._18{width:12.936960px;}
._19{width:13.942560px;}
._1a{width:14.954880px;}
._17{width:16.776000px;}
._4{width:19.080000px;}
._3{width:20.232000px;}
._e{width:21.480480px;}
._10{width:23.015520px;}
._15{width:24.984000px;}
._b{width:26.568000px;}
._c{width:27.828480px;}
._23{width:29.243040px;}
._20{width:30.744000px;}
._1b{width:31.752000px;}
._1c{width:32.760000px;}
._1f{width:33.912000px;}
._13{width:35.280000px;}
._14{width:36.720000px;}
._24{width:38.088000px;}
._1e{width:40.320000px;}
._1d{width:41.400000px;}
._21{width:43.560000px;}
._22{width:45.288000px;}
._25{width:49.608000px;}
._26{width:50.760000px;}
._1{width:82.776000px;}
._27{width:101.664000px;}
._28{width:558.216000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.ya9{bottom:12.060000px;}
.yc4{bottom:12.105000px;}
.ya5{bottom:12.240000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.ydd{bottom:38.340000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.ydc{bottom:64.620000px;}
.y6b{bottom:112.860000px;}
.y3b{bottom:114.660000px;}
.y125{bottom:116.460000px;}
.y118{bottom:117.180000px;}
.yb1{bottom:124.380000px;}
.yd2{bottom:126.540000px;}
.y6a{bottom:133.560000px;}
.y3a{bottom:135.360000px;}
.yf2{bottom:136.080000px;}
.y124{bottom:137.160000px;}
.y117{bottom:137.880000px;}
.yb0{bottom:145.080000px;}
.yd1{bottom:147.240000px;}
.y69{bottom:154.260000px;}
.y39{bottom:156.060000px;}
.y123{bottom:157.860000px;}
.y116{bottom:158.580000px;}
.y88{bottom:163.260000px;}
.yaf{bottom:165.780000px;}
.yd0{bottom:167.940000px;}
.y68{bottom:174.960000px;}
.y38{bottom:176.760000px;}
.y122{bottom:178.560000px;}
.y115{bottom:179.280000px;}
.y87{bottom:183.960000px;}
.yae{bottom:186.480000px;}
.y67{bottom:195.660000px;}
.y37{bottom:197.490000px;}
.ycf{bottom:197.670000px;}
.y121{bottom:199.290000px;}
.y114{bottom:200.010000px;}
.yad{bottom:207.210000px;}
.y86{bottom:213.690000px;}
.yf1{bottom:216.210000px;}
.y36{bottom:218.190000px;}
.yce{bottom:218.370000px;}
.y120{bottom:219.990000px;}
.y113{bottom:220.710000px;}
.y66{bottom:225.390000px;}
.yac{bottom:227.910000px;}
.y85{bottom:234.390000px;}
.yf0{bottom:236.910000px;}
.ycd{bottom:239.070000px;}
.y11f{bottom:240.690000px;}
.y112{bottom:241.410000px;}
.y65{bottom:246.090000px;}
.y35{bottom:247.890000px;}
.yab{bottom:257.790000px;}
.ycc{bottom:259.770000px;}
.y11e{bottom:261.390000px;}
.y111{bottom:262.110000px;}
.y84{bottom:264.090000px;}
.yef{bottom:266.610000px;}
.y64{bottom:266.790000px;}
.y34{bottom:277.590000px;}
.ycb{bottom:280.470000px;}
.y11d{bottom:282.090000px;}
.y110{bottom:282.810000px;}
.y83{bottom:284.790000px;}
.yee{bottom:287.310000px;}
.y63{bottom:287.490000px;}
.yaa{bottom:297.570000px;}
.yca{bottom:301.170000px;}
.y11c{bottom:302.790000px;}
.y10f{bottom:303.510000px;}
.y33{bottom:307.290000px;}
.yed{bottom:308.010000px;}
.y62{bottom:308.190000px;}
.y82{bottom:314.490000px;}
.yc9{bottom:321.870000px;}
.y11b{bottom:323.490000px;}
.y10e{bottom:324.210000px;}
.y32{bottom:327.990000px;}
.y61{bottom:328.890000px;}
.y81{bottom:335.190000px;}
.ya8{bottom:337.350000px;}
.yec{bottom:337.710000px;}
.yc8{bottom:342.570000px;}
.y11a{bottom:344.190000px;}
.y10d{bottom:344.910000px;}
.y60{bottom:349.590000px;}
.y31{bottom:357.690000px;}
.yc7{bottom:363.270000px;}
.y80{bottom:364.890000px;}
.yeb{bottom:367.410000px;}
.y10c{bottom:374.610000px;}
.ya7{bottom:376.950000px;}
.y30{bottom:378.390000px;}
.y5f{bottom:379.290000px;}
.yc6{bottom:383.970000px;}
.y7f{bottom:385.590000px;}
.y10b{bottom:395.310000px;}
.yea{bottom:397.110000px;}
.y2f{bottom:399.090000px;}
.y5e{bottom:399.990000px;}
.yc5{bottom:404.670000px;}
.y7e{bottom:406.290000px;}
.y134{bottom:413.490000px;}
.ya6{bottom:416.730000px;}
.ye9{bottom:417.810000px;}
.y2e{bottom:419.790000px;}
.y5d{bottom:420.690000px;}
.y10a{bottom:425.010000px;}
.y7d{bottom:426.990000px;}
.yc3{bottom:434.550000px;}
.ye8{bottom:438.555000px;}
.y2d{bottom:440.535000px;}
.y5c{bottom:441.435000px;}
.y133{bottom:443.235000px;}
.y109{bottom:445.755000px;}
.y7c{bottom:447.735000px;}
.ya4{bottom:457.275000px;}
.y2c{bottom:461.235000px;}
.y5b{bottom:462.135000px;}
.y108{bottom:466.455000px;}
.ye7{bottom:468.255000px;}
.y7b{bottom:468.435000px;}
.y132{bottom:472.935000px;}
.yc2{bottom:474.195000px;}
.y2b{bottom:481.935000px;}
.y5a{bottom:482.835000px;}
.ye6{bottom:488.955000px;}
.y7a{bottom:489.135000px;}
.y131{bottom:493.635000px;}
.y107{bottom:496.155000px;}
.y2a{bottom:502.635000px;}
.y59{bottom:503.535000px;}
.ya3{bottom:508.935000px;}
.ye5{bottom:509.655000px;}
.y79{bottom:509.835000px;}
.yc1{bottom:513.975000px;}
.y106{bottom:516.855000px;}
.y29{bottom:523.335000px;}
.y58{bottom:524.235000px;}
.ye4{bottom:530.355000px;}
.y78{bottom:530.535000px;}
.ya2{bottom:538.635000px;}
.y28{bottom:544.035000px;}
.y57{bottom:544.935000px;}
.y105{bottom:546.555000px;}
.ye3{bottom:551.055000px;}
.y77{bottom:551.235000px;}
.y130{bottom:553.035000px;}
.yc0{bottom:554.475000px;}
.y27{bottom:564.735000px;}
.y56{bottom:565.635000px;}
.ya1{bottom:568.335000px;}
.ye2{bottom:571.755000px;}
.y76{bottom:571.935000px;}
.y104{bottom:576.255000px;}
.y12f{bottom:582.735000px;}
.y26{bottom:585.435000px;}
.y55{bottom:586.335000px;}
.ya0{bottom:589.035000px;}
.ye1{bottom:592.455000px;}
.y75{bottom:592.635000px;}
.y12e{bottom:603.435000px;}
.y103{bottom:605.955000px;}
.y25{bottom:606.135000px;}
.y54{bottom:607.035000px;}
.y9f{bottom:609.735000px;}
.ye0{bottom:613.155000px;}
.y74{bottom:613.335000px;}
.ye{bottom:617.475000px;}
.y102{bottom:626.655000px;}
.y24{bottom:626.835000px;}
.y53{bottom:627.735000px;}
.y9e{bottom:630.435000px;}
.y12d{bottom:633.135000px;}
.ydf{bottom:633.855000px;}
.y73{bottom:634.035000px;}
.ybf{bottom:635.835000px;}
.y119{bottom:643.035000px;}
.y23{bottom:647.535000px;}
.y52{bottom:648.435000px;}
.y9d{bottom:651.135000px;}
.y12c{bottom:653.835000px;}
.yde{bottom:654.555000px;}
.y101{bottom:656.355000px;}
.y72{bottom:663.735000px;}
.ybe{bottom:665.535000px;}
.y22{bottom:668.235000px;}
.y51{bottom:669.135000px;}
.y12b{bottom:674.565000px;}
.y100{bottom:677.085000px;}
.y9c{bottom:680.865000px;}
.y71{bottom:684.465000px;}
.ybd{bottom:686.265000px;}
.y21{bottom:688.965000px;}
.y50{bottom:689.865000px;}
.yff{bottom:697.785000px;}
.y12a{bottom:704.265000px;}
.y70{bottom:705.165000px;}
.y20{bottom:709.665000px;}
.y9b{bottom:710.565000px;}
.ybc{bottom:715.965000px;}
.yfe{bottom:718.485000px;}
.y4f{bottom:719.565000px;}
.y129{bottom:724.965000px;}
.y6f{bottom:725.865000px;}
.y1f{bottom:730.365000px;}
.y9a{bottom:731.265000px;}
.yfd{bottom:739.185000px;}
.ybb{bottom:745.665000px;}
.y6e{bottom:746.565000px;}
.y4e{bottom:749.265000px;}
.y1e{bottom:751.065000px;}
.y99{bottom:751.965000px;}
.y128{bottom:754.665000px;}
.yfc{bottom:759.885000px;}
.y6d{bottom:767.265000px;}
.y1d{bottom:771.765000px;}
.y98{bottom:772.665000px;}
.yba{bottom:775.365000px;}
.ydb{bottom:776.625000px;}
.y4d{bottom:778.965000px;}
.yfb{bottom:780.585000px;}
.y6c{bottom:787.965000px;}
.y1c{bottom:792.465000px;}
.y97{bottom:793.365000px;}
.yfa{bottom:801.285000px;}
.yb9{bottom:805.065000px;}
.y4c{bottom:808.665000px;}
.y96{bottom:814.065000px;}
.yda{bottom:816.405000px;}
.yf9{bottom:821.985000px;}
.y1b{bottom:822.165000px;}
.y4b{bottom:829.365000px;}
.y95{bottom:834.765000px;}
.yf8{bottom:842.685000px;}
.y4a{bottom:850.065000px;}
.y1a{bottom:851.865000px;}
.y94{bottom:855.465000px;}
.yd9{bottom:856.905000px;}
.yb8{bottom:864.465000px;}
.y49{bottom:870.765000px;}
.yf7{bottom:872.565000px;}
.y93{bottom:876.165000px;}
.y19{bottom:881.565000px;}
.yb7{bottom:885.165000px;}
.y48{bottom:891.465000px;}
.y92{bottom:896.865000px;}
.y127{bottom:905.865000px;}
.yd8{bottom:908.565000px;}
.y18{bottom:911.265000px;}
.y47{bottom:912.165000px;}
.yb6{bottom:914.910000px;}
.y91{bottom:917.610000px;}
.y126{bottom:926.610000px;}
.y46{bottom:932.910000px;}
.yb5{bottom:935.610000px;}
.yd7{bottom:938.310000px;}
.yf6{bottom:938.490000px;}
.y17{bottom:941.010000px;}
.y90{bottom:947.310000px;}
.y45{bottom:953.610000px;}
.yb4{bottom:956.310000px;}
.yd6{bottom:968.010000px;}
.y16{bottom:970.710000px;}
.y44{bottom:974.310000px;}
.y8f{bottom:977.010000px;}
.yf5{bottom:978.270000px;}
.yd5{bottom:988.710000px;}
.y15{bottom:991.410000px;}
.y43{bottom:995.010000px;}
.y8e{bottom:997.710000px;}
.yb3{bottom:1006.710000px;}
.y42{bottom:1015.710000px;}
.yf4{bottom:1018.050000px;}
.y8d{bottom:1018.410000px;}
.y14{bottom:1021.110000px;}
.yb2{bottom:1027.410000px;}
.y41{bottom:1036.410000px;}
.y8c{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.y40{bottom:1057.110000px;}
.yf3{bottom:1058.550000px;}
.y8b{bottom:1059.810000px;}
.yd4{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3f{bottom:1077.810000px;}
.y8a{bottom:1080.510000px;}
.yd3{bottom:1089.510000px;}
.y3e{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.y89{bottom:1110.210000px;}
.y3d{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3c{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h11{height:35.100000px;}
.h13{height:35.136000px;}
.he{height:35.280000px;}
.h10{height:35.316000px;}
.h9{height:49.868086px;}
.hf{height:51.239531px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h12{height:61.171875px;}
.h7{height:61.189805px;}
.h15{height:61.416000px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h14{height:87.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w11{width:81.720000px;}
.w8{width:84.990000px;}
.wb{width:94.716000px;}
.we{width:96.516000px;}
.w13{width:102.960000px;}
.wd{width:110.340000px;}
.w10{width:110.556000px;}
.w14{width:113.616000px;}
.wa{width:125.316000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.wf{width:212.610000px;}
.w9{width:254.910000px;}
.wc{width:324.435000px;}
.w12{width:346.395000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x10{left:121.535987px;}
.xe{left:132.875987px;}
.x2{left:161.145000px;}
.x1d{left:162.930000px;}
.x17{left:178.770000px;}
.x14{left:206.850000px;}
.x1{left:212.430000px;}
.x1a{left:241.770000px;}
.x11{left:274.709987px;}
.xf{left:313.634987px;}
.x13{left:390.134987px;}
.x8{left:420.375000px;}
.x12{left:446.474987px;}
.x1b{left:456.735000px;}
.x15{left:463.935000px;}
.x18{left:505.365000px;}
.x1e{left:511.485000px;}
.x1c{left:569.625000px;}
.x16{left:591.585000px;}
.x1f{left:616.605000px;}
.x19{left:617.865000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.154667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsd{letter-spacing:1.920000pt;}
.lsa{letter-spacing:3.840000pt;}
.ls8{letter-spacing:5.760000pt;}
.lsc{letter-spacing:6.400000pt;}
.lse{letter-spacing:13.440000pt;}
.lsf{letter-spacing:16.000000pt;}
.ls2{letter-spacing:23.680000pt;}
.ls7{letter-spacing:25.600000pt;}
.lsb{letter-spacing:30.080000pt;}
.ls6{letter-spacing:119.808000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.096000pt;}
._a{margin-left:-2.432000pt;}
._2{margin-left:-1.088000pt;}
._0{width:0.938240pt;}
._5{width:1.909333pt;}
._6{width:2.849707pt;}
._9{width:3.934293pt;}
._d{width:4.992000pt;}
._8{width:5.888000pt;}
._7{width:6.912000pt;}
._11{width:8.256000pt;}
._12{width:9.152000pt;}
._f{width:10.176000pt;}
._18{width:11.499520pt;}
._19{width:12.393387pt;}
._1a{width:13.293227pt;}
._17{width:14.912000pt;}
._4{width:16.960000pt;}
._3{width:17.984000pt;}
._e{width:19.093760pt;}
._10{width:20.458240pt;}
._15{width:22.208000pt;}
._b{width:23.616000pt;}
._c{width:24.736427pt;}
._23{width:25.993813pt;}
._20{width:27.328000pt;}
._1b{width:28.224000pt;}
._1c{width:29.120000pt;}
._1f{width:30.144000pt;}
._13{width:31.360000pt;}
._14{width:32.640000pt;}
._24{width:33.856000pt;}
._1e{width:35.840000pt;}
._1d{width:36.800000pt;}
._21{width:38.720000pt;}
._22{width:40.256000pt;}
._25{width:44.096000pt;}
._26{width:45.120000pt;}
._1{width:73.578667pt;}
._27{width:90.368000pt;}
._28{width:496.192000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.ya9{bottom:10.720000pt;}
.yc4{bottom:10.760000pt;}
.ya5{bottom:10.880000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.ydd{bottom:34.080000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.ydc{bottom:57.440000pt;}
.y6b{bottom:100.320000pt;}
.y3b{bottom:101.920000pt;}
.y125{bottom:103.520000pt;}
.y118{bottom:104.160000pt;}
.yb1{bottom:110.560000pt;}
.yd2{bottom:112.480000pt;}
.y6a{bottom:118.720000pt;}
.y3a{bottom:120.320000pt;}
.yf2{bottom:120.960000pt;}
.y124{bottom:121.920000pt;}
.y117{bottom:122.560000pt;}
.yb0{bottom:128.960000pt;}
.yd1{bottom:130.880000pt;}
.y69{bottom:137.120000pt;}
.y39{bottom:138.720000pt;}
.y123{bottom:140.320000pt;}
.y116{bottom:140.960000pt;}
.y88{bottom:145.120000pt;}
.yaf{bottom:147.360000pt;}
.yd0{bottom:149.280000pt;}
.y68{bottom:155.520000pt;}
.y38{bottom:157.120000pt;}
.y122{bottom:158.720000pt;}
.y115{bottom:159.360000pt;}
.y87{bottom:163.520000pt;}
.yae{bottom:165.760000pt;}
.y67{bottom:173.920000pt;}
.y37{bottom:175.546667pt;}
.ycf{bottom:175.706667pt;}
.y121{bottom:177.146667pt;}
.y114{bottom:177.786667pt;}
.yad{bottom:184.186667pt;}
.y86{bottom:189.946667pt;}
.yf1{bottom:192.186667pt;}
.y36{bottom:193.946667pt;}
.yce{bottom:194.106667pt;}
.y120{bottom:195.546667pt;}
.y113{bottom:196.186667pt;}
.y66{bottom:200.346667pt;}
.yac{bottom:202.586667pt;}
.y85{bottom:208.346667pt;}
.yf0{bottom:210.586667pt;}
.ycd{bottom:212.506667pt;}
.y11f{bottom:213.946667pt;}
.y112{bottom:214.586667pt;}
.y65{bottom:218.746667pt;}
.y35{bottom:220.346667pt;}
.yab{bottom:229.146667pt;}
.ycc{bottom:230.906667pt;}
.y11e{bottom:232.346667pt;}
.y111{bottom:232.986667pt;}
.y84{bottom:234.746667pt;}
.yef{bottom:236.986667pt;}
.y64{bottom:237.146667pt;}
.y34{bottom:246.746667pt;}
.ycb{bottom:249.306667pt;}
.y11d{bottom:250.746667pt;}
.y110{bottom:251.386667pt;}
.y83{bottom:253.146667pt;}
.yee{bottom:255.386667pt;}
.y63{bottom:255.546667pt;}
.yaa{bottom:264.506667pt;}
.yca{bottom:267.706667pt;}
.y11c{bottom:269.146667pt;}
.y10f{bottom:269.786667pt;}
.y33{bottom:273.146667pt;}
.yed{bottom:273.786667pt;}
.y62{bottom:273.946667pt;}
.y82{bottom:279.546667pt;}
.yc9{bottom:286.106667pt;}
.y11b{bottom:287.546667pt;}
.y10e{bottom:288.186667pt;}
.y32{bottom:291.546667pt;}
.y61{bottom:292.346667pt;}
.y81{bottom:297.946667pt;}
.ya8{bottom:299.866667pt;}
.yec{bottom:300.186667pt;}
.yc8{bottom:304.506667pt;}
.y11a{bottom:305.946667pt;}
.y10d{bottom:306.586667pt;}
.y60{bottom:310.746667pt;}
.y31{bottom:317.946667pt;}
.yc7{bottom:322.906667pt;}
.y80{bottom:324.346667pt;}
.yeb{bottom:326.586667pt;}
.y10c{bottom:332.986667pt;}
.ya7{bottom:335.066667pt;}
.y30{bottom:336.346667pt;}
.y5f{bottom:337.146667pt;}
.yc6{bottom:341.306667pt;}
.y7f{bottom:342.746667pt;}
.y10b{bottom:351.386667pt;}
.yea{bottom:352.986667pt;}
.y2f{bottom:354.746667pt;}
.y5e{bottom:355.546667pt;}
.yc5{bottom:359.706667pt;}
.y7e{bottom:361.146667pt;}
.y134{bottom:367.546667pt;}
.ya6{bottom:370.426667pt;}
.ye9{bottom:371.386667pt;}
.y2e{bottom:373.146667pt;}
.y5d{bottom:373.946667pt;}
.y10a{bottom:377.786667pt;}
.y7d{bottom:379.546667pt;}
.yc3{bottom:386.266667pt;}
.ye8{bottom:389.826667pt;}
.y2d{bottom:391.586667pt;}
.y5c{bottom:392.386667pt;}
.y133{bottom:393.986667pt;}
.y109{bottom:396.226667pt;}
.y7c{bottom:397.986667pt;}
.ya4{bottom:406.466667pt;}
.y2c{bottom:409.986667pt;}
.y5b{bottom:410.786667pt;}
.y108{bottom:414.626667pt;}
.ye7{bottom:416.226667pt;}
.y7b{bottom:416.386667pt;}
.y132{bottom:420.386667pt;}
.yc2{bottom:421.506667pt;}
.y2b{bottom:428.386667pt;}
.y5a{bottom:429.186667pt;}
.ye6{bottom:434.626667pt;}
.y7a{bottom:434.786667pt;}
.y131{bottom:438.786667pt;}
.y107{bottom:441.026667pt;}
.y2a{bottom:446.786667pt;}
.y59{bottom:447.586667pt;}
.ya3{bottom:452.386667pt;}
.ye5{bottom:453.026667pt;}
.y79{bottom:453.186667pt;}
.yc1{bottom:456.866667pt;}
.y106{bottom:459.426667pt;}
.y29{bottom:465.186667pt;}
.y58{bottom:465.986667pt;}
.ye4{bottom:471.426667pt;}
.y78{bottom:471.586667pt;}
.ya2{bottom:478.786667pt;}
.y28{bottom:483.586667pt;}
.y57{bottom:484.386667pt;}
.y105{bottom:485.826667pt;}
.ye3{bottom:489.826667pt;}
.y77{bottom:489.986667pt;}
.y130{bottom:491.586667pt;}
.yc0{bottom:492.866667pt;}
.y27{bottom:501.986667pt;}
.y56{bottom:502.786667pt;}
.ya1{bottom:505.186667pt;}
.ye2{bottom:508.226667pt;}
.y76{bottom:508.386667pt;}
.y104{bottom:512.226667pt;}
.y12f{bottom:517.986667pt;}
.y26{bottom:520.386667pt;}
.y55{bottom:521.186667pt;}
.ya0{bottom:523.586667pt;}
.ye1{bottom:526.626667pt;}
.y75{bottom:526.786667pt;}
.y12e{bottom:536.386667pt;}
.y103{bottom:538.626667pt;}
.y25{bottom:538.786667pt;}
.y54{bottom:539.586667pt;}
.y9f{bottom:541.986667pt;}
.ye0{bottom:545.026667pt;}
.y74{bottom:545.186667pt;}
.ye{bottom:548.866667pt;}
.y102{bottom:557.026667pt;}
.y24{bottom:557.186667pt;}
.y53{bottom:557.986667pt;}
.y9e{bottom:560.386667pt;}
.y12d{bottom:562.786667pt;}
.ydf{bottom:563.426667pt;}
.y73{bottom:563.586667pt;}
.ybf{bottom:565.186667pt;}
.y119{bottom:571.586667pt;}
.y23{bottom:575.586667pt;}
.y52{bottom:576.386667pt;}
.y9d{bottom:578.786667pt;}
.y12c{bottom:581.186667pt;}
.yde{bottom:581.826667pt;}
.y101{bottom:583.426667pt;}
.y72{bottom:589.986667pt;}
.ybe{bottom:591.586667pt;}
.y22{bottom:593.986667pt;}
.y51{bottom:594.786667pt;}
.y12b{bottom:599.613333pt;}
.y100{bottom:601.853333pt;}
.y9c{bottom:605.213333pt;}
.y71{bottom:608.413333pt;}
.ybd{bottom:610.013333pt;}
.y21{bottom:612.413333pt;}
.y50{bottom:613.213333pt;}
.yff{bottom:620.253333pt;}
.y12a{bottom:626.013333pt;}
.y70{bottom:626.813333pt;}
.y20{bottom:630.813333pt;}
.y9b{bottom:631.613333pt;}
.ybc{bottom:636.413333pt;}
.yfe{bottom:638.653333pt;}
.y4f{bottom:639.613333pt;}
.y129{bottom:644.413333pt;}
.y6f{bottom:645.213333pt;}
.y1f{bottom:649.213333pt;}
.y9a{bottom:650.013333pt;}
.yfd{bottom:657.053333pt;}
.ybb{bottom:662.813333pt;}
.y6e{bottom:663.613333pt;}
.y4e{bottom:666.013333pt;}
.y1e{bottom:667.613333pt;}
.y99{bottom:668.413333pt;}
.y128{bottom:670.813333pt;}
.yfc{bottom:675.453333pt;}
.y6d{bottom:682.013333pt;}
.y1d{bottom:686.013333pt;}
.y98{bottom:686.813333pt;}
.yba{bottom:689.213333pt;}
.ydb{bottom:690.333333pt;}
.y4d{bottom:692.413333pt;}
.yfb{bottom:693.853333pt;}
.y6c{bottom:700.413333pt;}
.y1c{bottom:704.413333pt;}
.y97{bottom:705.213333pt;}
.yfa{bottom:712.253333pt;}
.yb9{bottom:715.613333pt;}
.y4c{bottom:718.813333pt;}
.y96{bottom:723.613333pt;}
.yda{bottom:725.693333pt;}
.yf9{bottom:730.653333pt;}
.y1b{bottom:730.813333pt;}
.y4b{bottom:737.213333pt;}
.y95{bottom:742.013333pt;}
.yf8{bottom:749.053333pt;}
.y4a{bottom:755.613333pt;}
.y1a{bottom:757.213333pt;}
.y94{bottom:760.413333pt;}
.yd9{bottom:761.693333pt;}
.yb8{bottom:768.413333pt;}
.y49{bottom:774.013333pt;}
.yf7{bottom:775.613333pt;}
.y93{bottom:778.813333pt;}
.y19{bottom:783.613333pt;}
.yb7{bottom:786.813333pt;}
.y48{bottom:792.413333pt;}
.y92{bottom:797.213333pt;}
.y127{bottom:805.213333pt;}
.yd8{bottom:807.613333pt;}
.y18{bottom:810.013333pt;}
.y47{bottom:810.813333pt;}
.yb6{bottom:813.253333pt;}
.y91{bottom:815.653333pt;}
.y126{bottom:823.653333pt;}
.y46{bottom:829.253333pt;}
.yb5{bottom:831.653333pt;}
.yd7{bottom:834.053333pt;}
.yf6{bottom:834.213333pt;}
.y17{bottom:836.453333pt;}
.y90{bottom:842.053333pt;}
.y45{bottom:847.653333pt;}
.yb4{bottom:850.053333pt;}
.yd6{bottom:860.453333pt;}
.y16{bottom:862.853333pt;}
.y44{bottom:866.053333pt;}
.y8f{bottom:868.453333pt;}
.yf5{bottom:869.573333pt;}
.yd5{bottom:878.853333pt;}
.y15{bottom:881.253333pt;}
.y43{bottom:884.453333pt;}
.y8e{bottom:886.853333pt;}
.yb3{bottom:894.853333pt;}
.y42{bottom:902.853333pt;}
.yf4{bottom:904.933333pt;}
.y8d{bottom:905.253333pt;}
.y14{bottom:907.653333pt;}
.yb2{bottom:913.253333pt;}
.y41{bottom:921.253333pt;}
.y8c{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.y40{bottom:939.653333pt;}
.yf3{bottom:940.933333pt;}
.y8b{bottom:942.053333pt;}
.yd4{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3f{bottom:958.053333pt;}
.y8a{bottom:960.453333pt;}
.yd3{bottom:968.453333pt;}
.y3e{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.y89{bottom:986.853333pt;}
.y3d{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3c{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h11{height:31.200000pt;}
.h13{height:31.232000pt;}
.he{height:31.360000pt;}
.h10{height:31.392000pt;}
.h9{height:44.327188pt;}
.hf{height:45.546250pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h12{height:54.375000pt;}
.h7{height:54.390938pt;}
.h15{height:54.592000pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h14{height:77.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w11{width:72.640000pt;}
.w8{width:75.546667pt;}
.wb{width:84.192000pt;}
.we{width:85.792000pt;}
.w13{width:91.520000pt;}
.wd{width:98.080000pt;}
.w10{width:98.272000pt;}
.w14{width:100.992000pt;}
.wa{width:111.392000pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.wf{width:188.986667pt;}
.w9{width:226.586667pt;}
.wc{width:288.386667pt;}
.w12{width:307.906667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x10{left:108.031988pt;}
.xe{left:118.111988pt;}
.x2{left:143.240000pt;}
.x1d{left:144.826667pt;}
.x17{left:158.906667pt;}
.x14{left:183.866667pt;}
.x1{left:188.826667pt;}
.x1a{left:214.906667pt;}
.x11{left:244.186655pt;}
.xf{left:278.786655pt;}
.x13{left:346.786655pt;}
.x8{left:373.666667pt;}
.x12{left:396.866655pt;}
.x1b{left:405.986667pt;}
.x15{left:412.386667pt;}
.x18{left:449.213333pt;}
.x1e{left:454.653333pt;}
.x1c{left:506.333333pt;}
.x16{left:525.853333pt;}
.x1f{left:548.093333pt;}
.x19{left:549.213333pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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