
    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_9d0dc3f379460ee6bfb7a22d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_d6e80a8b82aba79fa96bd9b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_b53c4b44141f1e102d60c8bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_8a9578e36ea8c1fb8f725b80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_1ebd40b2c70ac2a1cb536bda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758301;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_de92ba1a5a650ad68587f3f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_6224afaa19e3ac01e2e3f7e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3501b7918b47cc738ee577e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_38da9efe0d05a5f4d05904bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.816000px;}
.ls1f{letter-spacing:-0.498600px;}
.ls8{letter-spacing:-0.456000px;}
.ls12{letter-spacing:-0.453000px;}
.ls6{letter-spacing:-0.224400px;}
.ls19{letter-spacing:-0.184200px;}
.ls15{letter-spacing:-0.142200px;}
.ls11{letter-spacing:-0.096000px;}
.ls25{letter-spacing:-0.093000px;}
.ls13{letter-spacing:-0.055440px;}
.ls1a{letter-spacing:-0.021960px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.059760px;}
.ls5{letter-spacing:0.061920px;}
.ls21{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.073200px;}
.ls14{letter-spacing:0.093000px;}
.lsb{letter-spacing:0.140040px;}
.ls18{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.166800px;}
.ls7{letter-spacing:0.172800px;}
.ls9{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.175800px;}
.lse{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.337800px;}
.ls2{letter-spacing:0.720000px;}
.lsa{letter-spacing:23.966640px;}
.ls10{letter-spacing:28.881360px;}
.ls3{letter-spacing:38.798640px;}
.ls1c{letter-spacing:40.886640px;}
.ls1b{letter-spacing:41.246640px;}
.ls17{letter-spacing:63.566640px;}
.ls1e{letter-spacing:63.926640px;}
.ls22{letter-spacing:64.046640px;}
.lsc{letter-spacing:67.646640px;}
.ls24{letter-spacing:70.868640px;}
.ls20{letter-spacing:71.126640px;}
.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;}
}
.ws4{word-spacing:-60.120000px;}
.ws3{word-spacing:-26.913600px;}
.wsb{word-spacing:-23.486400px;}
.ws1{word-spacing:-20.664000px;}
.ws12{word-spacing:-17.994240px;}
.ws6{word-spacing:-17.006400px;}
.wsa{word-spacing:-16.869240px;}
.ws7{word-spacing:-16.833600px;}
.ws9{word-spacing:-16.826640px;}
.ws11{word-spacing:-16.820040px;}
.wsd{word-spacing:-16.746240px;}
.wse{word-spacing:-16.726440px;}
.ws0{word-spacing:-16.653240px;}
.ws10{word-spacing:-16.631280px;}
.wsc{word-spacing:-16.557240px;}
.wsf{word-spacing:-16.469040px;}
.ws5{word-spacing:-16.428840px;}
.ws8{word-spacing:-16.197240px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.184760px;}
._0{width:1.512000px;}
._a{width:2.580120px;}
._3{width:3.589560px;}
._4{width:4.777560px;}
._1c{width:6.422400px;}
._f{width:7.628040px;}
._e{width:8.639640px;}
._5{width:10.340640px;}
._6{width:11.709600px;}
._10{width:13.088400px;}
._16{width:14.338320px;}
._17{width:15.450840px;}
._b{width:18.577080px;}
._1b{width:19.766640px;}
._12{width:20.921760px;}
._11{width:24.227040px;}
._13{width:25.229040px;}
._9{width:26.633160px;}
._1a{width:27.653520px;}
._7{width:28.677240px;}
._8{width:30.180240px;}
._18{width:31.683240px;}
._19{width:32.851680px;}
._1d{width:33.912840px;}
._1e{width:35.597280px;}
._1f{width:37.154160px;}
._d{width:39.265560px;}
._c{width:40.520880px;}
._15{width:44.744880px;}
._14{width:45.871560px;}
._2{width:48.997800px;}
.fc1{color:rgb(0,51,102);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:51.120000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.050000px;}
.y2{bottom:9.000000px;}
.y13{bottom:10.890000px;}
.y55{bottom:12.330000px;}
.y53{bottom:12.360000px;}
.y51{bottom:12.420000px;}
.y18{bottom:23.400000px;}
.y15{bottom:26.190000px;}
.y12{bottom:29.880000px;}
.y3{bottom:72.720000px;}
.yb9{bottom:110.700000px;}
.y40{bottom:110.970000px;}
.y11f{bottom:117.540000px;}
.y19{bottom:121.950000px;}
.yb8{bottom:129.060000px;}
.y91{bottom:129.870000px;}
.yff{bottom:133.920000px;}
.ydb{bottom:135.630000px;}
.y3f{bottom:138.420000px;}
.y11e{bottom:144.900000px;}
.yb7{bottom:147.420000px;}
.yda{bottom:153.990000px;}
.y3e{bottom:156.780000px;}
.y90{bottom:157.320000px;}
.yfe{bottom:161.280000px;}
.y11d{bottom:163.350000px;}
.yb6{bottom:174.870000px;}
.y3d{bottom:175.230000px;}
.y8f{bottom:175.680000px;}
.yfd{bottom:179.730000px;}
.yd9{bottom:181.440000px;}
.y65{bottom:184.950000px;}
.y17{bottom:188.100000px;}
.y11c{bottom:190.710000px;}
.y3c{bottom:193.590000px;}
.y8e{bottom:194.130000px;}
.yfc{bottom:198.090000px;}
.yb5{bottom:202.230000px;}
.y64{bottom:203.400000px;}
.yd8{bottom:208.800000px;}
.y11b{bottom:209.070000px;}
.y3b{bottom:211.950000px;}
.y8d{bottom:212.490000px;}
.yfb{bottom:216.480000px;}
.yb4{bottom:220.620000px;}
.y63{bottom:221.790000px;}
.yd7{bottom:227.190000px;}
.y11a{bottom:227.550000px;}
.y8c{bottom:230.880000px;}
.y14{bottom:234.840000px;}
.yb3{bottom:239.070000px;}
.y3a{bottom:239.430000px;}
.y62{bottom:240.150000px;}
.yfa{bottom:243.930000px;}
.yd6{bottom:245.640000px;}
.y119{bottom:254.910000px;}
.yb2{bottom:257.430000px;}
.y8b{bottom:258.330000px;}
.y61{bottom:258.600000px;}
.y39{bottom:266.790000px;}
.yf9{bottom:271.290000px;}
.y118{bottom:273.270000px;}
.yd5{bottom:275.070000px;}
.yb1{bottom:275.790000px;}
.y8a{bottom:276.690000px;}
.y60{bottom:276.960000px;}
.y11{bottom:284.340000px;}
.y38{bottom:285.150000px;}
.y117{bottom:291.720000px;}
.yb0{bottom:294.240000px;}
.y89{bottom:295.050000px;}
.y5f{bottom:295.320000px;}
.yf8{bottom:300.720000px;}
.y37{bottom:303.600000px;}
.y116{bottom:310.080000px;}
.yaf{bottom:312.600000px;}
.y88{bottom:313.500000px;}
.y5e{bottom:313.770000px;}
.y36{bottom:321.960000px;}
.y115{bottom:328.530000px;}
.y5d{bottom:332.130000px;}
.yd4{bottom:338.430000px;}
.yae{bottom:339.960000px;}
.y35{bottom:340.320000px;}
.y87{bottom:342.120000px;}
.y114{bottom:346.890000px;}
.y5c{bottom:350.490000px;}
.y10{bottom:356.790000px;}
.yad{bottom:358.410000px;}
.yf7{bottom:364.080000px;}
.y113{bottom:365.250000px;}
.yd3{bottom:365.790000px;}
.y34{bottom:367.770000px;}
.y5b{bottom:368.940000px;}
.yac{bottom:376.770000px;}
.y112{bottom:383.700000px;}
.yd2{bottom:384.240000px;}
.yf6{bottom:391.530000px;}
.y86{bottom:393.600000px;}
.y33{bottom:395.130000px;}
.y5a{bottom:396.300000px;}
.y111{bottom:402.060000px;}
.yd1{bottom:402.600000px;}
.yf5{bottom:409.890000px;}
.y32{bottom:413.490000px;}
.yab{bottom:413.580000px;}
.yf{bottom:418.980000px;}
.y110{bottom:420.420000px;}
.y85{bottom:420.960000px;}
.y59{bottom:425.730000px;}
.yf4{bottom:428.250000px;}
.yaa{bottom:431.940000px;}
.y10f{bottom:438.870000px;}
.y84{bottom:439.410000px;}
.y31{bottom:440.940000px;}
.ya9{bottom:450.300000px;}
.yf3{bottom:455.700000px;}
.y10e{bottom:457.230000px;}
.y83{bottom:457.770000px;}
.y30{bottom:468.300000px;}
.ya8{bottom:468.750000px;}
.y82{bottom:476.130000px;}
.ye{bottom:481.080000px;}
.yf2{bottom:483.060000px;}
.y10d{bottom:484.590000px;}
.y58{bottom:489.090000px;}
.y81{bottom:494.580000px;}
.y2f{bottom:495.660000px;}
.ya7{bottom:497.370000px;}
.yf1{bottom:501.420000px;}
.y80{bottom:512.940000px;}
.y10c{bottom:513.210000px;}
.y57{bottom:513.930000px;}
.y2e{bottom:523.110000px;}
.yf0{bottom:528.870000px;}
.y7f{bottom:531.300000px;}
.y2d{bottom:541.470000px;}
.yd{bottom:543.180000px;}
.yef{bottom:547.230000px;}
.ya6{bottom:548.850000px;}
.y7e{bottom:549.750000px;}
.y56{bottom:551.010000px;}
.y2c{bottom:559.830000px;}
.y10b{bottom:566.760000px;}
.yd0{bottom:568.110000px;}
.yee{bottom:574.590000px;}
.ya5{bottom:576.300000px;}
.y7d{bottom:577.110000px;}
.ycf{bottom:586.470000px;}
.y2b{bottom:587.280000px;}
.y54{bottom:588.180000px;}
.yed{bottom:593.040000px;}
.ya4{bottom:594.660000px;}
.y7c{bottom:595.470000px;}
.yce{bottom:604.920000px;}
.yc{bottom:605.370000px;}
.ya3{bottom:613.020000px;}
.y7b{bottom:613.920000px;}
.y2a{bottom:614.640000px;}
.yec{bottom:620.400000px;}
.ycd{bottom:623.280000px;}
.y52{bottom:625.350000px;}
.y10a{bottom:630.210000px;}
.y7a{bottom:632.280000px;}
.ya2{bottom:640.500000px;}
.ycc{bottom:641.760000px;}
.y29{bottom:642.030000px;}
.yeb{bottom:647.790000px;}
.y109{bottom:648.600000px;}
.y79{bottom:650.760000px;}
.ycb{bottom:660.120000px;}
.y50{bottom:662.460000px;}
.yb{bottom:667.500000px;}
.ya1{bottom:667.860000px;}
.y78{bottom:669.120000px;}
.y28{bottom:669.480000px;}
.yea{bottom:675.240000px;}
.y108{bottom:675.960000px;}
.yca{bottom:678.480000px;}
.ya0{bottom:686.220000px;}
.y77{bottom:687.480000px;}
.y27{bottom:687.840000px;}
.ye9{bottom:693.600000px;}
.yc9{bottom:696.930000px;}
.y107{bottom:703.410000px;}
.y9f{bottom:704.670000px;}
.y4f{bottom:711.960000px;}
.y12c{bottom:714.030000px;}
.y76{bottom:714.930000px;}
.yc8{bottom:715.290000px;}
.y26{bottom:717.270000px;}
.ye8{bottom:720.960000px;}
.y106{bottom:721.770000px;}
.y9e{bottom:723.030000px;}
.ya{bottom:729.690000px;}
.y75{bottom:733.290000px;}
.yc7{bottom:733.650000px;}
.y4e{bottom:739.410000px;}
.y105{bottom:740.130000px;}
.y12b{bottom:740.760000px;}
.ye7{bottom:748.410000px;}
.y9d{bottom:750.390000px;}
.y74{bottom:751.650000px;}
.yc6{bottom:752.100000px;}
.y4d{bottom:757.770000px;}
.y104{bottom:758.580000px;}
.y12a{bottom:759.390000px;}
.ye6{bottom:766.770000px;}
.y73{bottom:770.100000px;}
.yc5{bottom:770.460000px;}
.y103{bottom:776.940000px;}
.y9c{bottom:777.840000px;}
.y25{bottom:780.630000px;}
.y4c{bottom:785.130000px;}
.y72{bottom:788.460000px;}
.yc4{bottom:788.820000px;}
.y9{bottom:791.790000px;}
.y9b{bottom:796.200000px;}
.y24{bottom:799.080000px;}
.ye5{bottom:803.580000px;}
.y102{bottom:804.300000px;}
.y129{bottom:805.200000px;}
.y71{bottom:806.820000px;}
.yc3{bottom:807.270000px;}
.y4b{bottom:814.560000px;}
.y23{bottom:817.440000px;}
.ye4{bottom:821.940000px;}
.yc2{bottom:825.630000px;}
.y128{bottom:832.560000px;}
.y9a{bottom:833.010000px;}
.y101{bottom:833.730000px;}
.y70{bottom:834.270000px;}
.y8{bottom:835.980000px;}
.ye3{bottom:840.300000px;}
.yc1{bottom:843.990000px;}
.y22{bottom:844.800000px;}
.y127{bottom:851.010000px;}
.y99{bottom:860.370000px;}
.y6f{bottom:861.630000px;}
.ye2{bottom:867.750000px;}
.yc0{bottom:871.440000px;}
.y21{bottom:872.250000px;}
.y4a{bottom:878.010000px;}
.y126{bottom:878.370000px;}
.y6e{bottom:879.990000px;}
.y98{bottom:887.730000px;}
.y20{bottom:890.610000px;}
.ye1{bottom:895.110000px;}
.y49{bottom:896.370000px;}
.y100{bottom:897.180000px;}
.y7{bottom:898.080000px;}
.y6d{bottom:898.440000px;}
.ybf{bottom:898.800000px;}
.y125{bottom:905.730000px;}
.y97{bottom:906.180000px;}
.y1f{bottom:908.970000px;}
.ye0{bottom:913.470000px;}
.y48{bottom:914.730000px;}
.y6c{bottom:916.800000px;}
.y124{bottom:924.180000px;}
.y96{bottom:924.540000px;}
.ybe{bottom:926.160000px;}
.y1e{bottom:927.420000px;}
.ydf{bottom:931.920000px;}
.y47{bottom:942.180000px;}
.y6b{bottom:944.160000px;}
.ybd{bottom:944.610000px;}
.y1d{bottom:945.780000px;}
.yde{bottom:950.280000px;}
.y123{bottom:951.540000px;}
.y95{bottom:951.900000px;}
.y6{bottom:960.180000px;}
.ybc{bottom:962.970000px;}
.y1c{bottom:964.230000px;}
.ydd{bottom:968.730000px;}
.y46{bottom:969.540000px;}
.y6a{bottom:971.610000px;}
.y122{bottom:978.900000px;}
.y94{bottom:979.350000px;}
.ybb{bottom:981.330000px;}
.y45{bottom:987.900000px;}
.y69{bottom:989.970000px;}
.y1b{bottom:991.590000px;}
.y121{bottom:997.350000px;}
.ydc{bottom:998.070000px;}
.y44{bottom:1006.350000px;}
.y93{bottom:1006.710000px;}
.y68{bottom:1008.330000px;}
.yba{bottom:1009.950000px;}
.y120{bottom:1015.710000px;}
.y1a{bottom:1021.020000px;}
.y5{bottom:1022.370000px;}
.y43{bottom:1024.710000px;}
.y67{bottom:1026.780000px;}
.y92{bottom:1034.070000px;}
.y42{bottom:1043.070000px;}
.y66{bottom:1055.430000px;}
.y41{bottom:1061.550000px;}
.y4{bottom:1088.910000px;}
.y1{bottom:1112.940000px;}
.hf{height:36.360000px;}
.he{height:36.390000px;}
.hc{height:36.450000px;}
.h13{height:38.340000px;}
.h9{height:41.520000px;}
.h8{height:44.280000px;}
.h10{height:46.910039px;}
.h5{height:47.970000px;}
.hb{height:49.287832px;}
.h3{height:55.628613px;}
.h6{height:59.027344px;}
.hd{height:61.793886px;}
.h12{height:62.585859px;}
.h7{height:66.621094px;}
.h11{height:87.320391px;}
.h2{height:96.750000px;}
.ha{height:100.062422px;}
.h4{height:118.054688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:234.930000px;}
.w2{width:324.120000px;}
.w3{width:324.210000px;}
.w5{width:435.360000px;}
.w6{width:585.150000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xc{left:22.230000px;}
.xe{left:110.880000px;}
.x1{left:119.520000px;}
.xd{left:125.640000px;}
.x5{left:127.620000px;}
.x12{left:148.950000px;}
.x7{left:152.010000px;}
.x10{left:154.620000px;}
.xf{left:157.410000px;}
.x13{left:175.980000px;}
.xa{left:181.290000px;}
.x14{left:188.580000px;}
.x18{left:191.460000px;}
.x15{left:207.750000px;}
.xb{left:226.740000px;}
.x16{left:235.650000px;}
.x2{left:239.880000px;}
.x17{left:262.650000px;}
.x11{left:337.080000px;}
.x8{left:348.600000px;}
.x9{left:359.760000px;}
.x3{left:443.640000px;}
.x6{left:446.520000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.725333pt;}
.ls1f{letter-spacing:-0.443200pt;}
.ls8{letter-spacing:-0.405333pt;}
.ls12{letter-spacing:-0.402667pt;}
.ls6{letter-spacing:-0.199467pt;}
.ls19{letter-spacing:-0.163733pt;}
.ls15{letter-spacing:-0.126400pt;}
.ls11{letter-spacing:-0.085333pt;}
.ls25{letter-spacing:-0.082667pt;}
.ls13{letter-spacing:-0.049280pt;}
.ls1a{letter-spacing:-0.019520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.053120pt;}
.ls5{letter-spacing:0.055040pt;}
.ls21{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.065067pt;}
.ls14{letter-spacing:0.082667pt;}
.lsb{letter-spacing:0.124480pt;}
.ls18{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.148267pt;}
.ls7{letter-spacing:0.153600pt;}
.ls9{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.156267pt;}
.lse{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.300267pt;}
.ls2{letter-spacing:0.640000pt;}
.lsa{letter-spacing:21.303680pt;}
.ls10{letter-spacing:25.672320pt;}
.ls3{letter-spacing:34.487680pt;}
.ls1c{letter-spacing:36.343680pt;}
.ls1b{letter-spacing:36.663680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:56.823680pt;}
.ls22{letter-spacing:56.930347pt;}
.lsc{letter-spacing:60.130347pt;}
.ls24{letter-spacing:62.994347pt;}
.ls20{letter-spacing:63.223680pt;}
.ws4{word-spacing:-53.440000pt;}
.ws3{word-spacing:-23.923200pt;}
.wsb{word-spacing:-20.876800pt;}
.ws1{word-spacing:-18.368000pt;}
.ws12{word-spacing:-15.994880pt;}
.ws6{word-spacing:-15.116800pt;}
.wsa{word-spacing:-14.994880pt;}
.ws7{word-spacing:-14.963200pt;}
.ws9{word-spacing:-14.957013pt;}
.ws11{word-spacing:-14.951147pt;}
.wsd{word-spacing:-14.885547pt;}
.wse{word-spacing:-14.867947pt;}
.ws0{word-spacing:-14.802880pt;}
.ws10{word-spacing:-14.783360pt;}
.wsc{word-spacing:-14.717547pt;}
.wsf{word-spacing:-14.639147pt;}
.ws5{word-spacing:-14.603413pt;}
.ws8{word-spacing:-14.397547pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.053120pt;}
._0{width:1.344000pt;}
._a{width:2.293440pt;}
._3{width:3.190720pt;}
._4{width:4.246720pt;}
._1c{width:5.708800pt;}
._f{width:6.780480pt;}
._e{width:7.679680pt;}
._5{width:9.191680pt;}
._6{width:10.408533pt;}
._10{width:11.634133pt;}
._16{width:12.745173pt;}
._17{width:13.734080pt;}
._b{width:16.512960pt;}
._1b{width:17.570347pt;}
._12{width:18.597120pt;}
._11{width:21.535147pt;}
._13{width:22.425813pt;}
._9{width:23.673920pt;}
._1a{width:24.580907pt;}
._7{width:25.490880pt;}
._8{width:26.826880pt;}
._18{width:28.162880pt;}
._19{width:29.201493pt;}
._1d{width:30.144747pt;}
._1e{width:31.642027pt;}
._1f{width:33.025920pt;}
._d{width:34.902720pt;}
._c{width:36.018560pt;}
._15{width:39.773227pt;}
._14{width:40.774720pt;}
._2{width:43.553600pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.600000pt;}
.y2{bottom:8.000000pt;}
.y13{bottom:9.680000pt;}
.y55{bottom:10.960000pt;}
.y53{bottom:10.986667pt;}
.y51{bottom:11.040000pt;}
.y18{bottom:20.800000pt;}
.y15{bottom:23.280000pt;}
.y12{bottom:26.560000pt;}
.y3{bottom:64.640000pt;}
.yb9{bottom:98.400000pt;}
.y40{bottom:98.640000pt;}
.y11f{bottom:104.480000pt;}
.y19{bottom:108.400000pt;}
.yb8{bottom:114.720000pt;}
.y91{bottom:115.440000pt;}
.yff{bottom:119.040000pt;}
.ydb{bottom:120.560000pt;}
.y3f{bottom:123.040000pt;}
.y11e{bottom:128.800000pt;}
.yb7{bottom:131.040000pt;}
.yda{bottom:136.880000pt;}
.y3e{bottom:139.360000pt;}
.y90{bottom:139.840000pt;}
.yfe{bottom:143.360000pt;}
.y11d{bottom:145.200000pt;}
.yb6{bottom:155.440000pt;}
.y3d{bottom:155.760000pt;}
.y8f{bottom:156.160000pt;}
.yfd{bottom:159.760000pt;}
.yd9{bottom:161.280000pt;}
.y65{bottom:164.400000pt;}
.y17{bottom:167.200000pt;}
.y11c{bottom:169.520000pt;}
.y3c{bottom:172.080000pt;}
.y8e{bottom:172.560000pt;}
.yfc{bottom:176.080000pt;}
.yb5{bottom:179.760000pt;}
.y64{bottom:180.800000pt;}
.yd8{bottom:185.600000pt;}
.y11b{bottom:185.840000pt;}
.y3b{bottom:188.400000pt;}
.y8d{bottom:188.880000pt;}
.yfb{bottom:192.426667pt;}
.yb4{bottom:196.106667pt;}
.y63{bottom:197.146667pt;}
.yd7{bottom:201.946667pt;}
.y11a{bottom:202.266667pt;}
.y8c{bottom:205.226667pt;}
.y14{bottom:208.746667pt;}
.yb3{bottom:212.506667pt;}
.y3a{bottom:212.826667pt;}
.y62{bottom:213.466667pt;}
.yfa{bottom:216.826667pt;}
.yd6{bottom:218.346667pt;}
.y119{bottom:226.586667pt;}
.yb2{bottom:228.826667pt;}
.y8b{bottom:229.626667pt;}
.y61{bottom:229.866667pt;}
.y39{bottom:237.146667pt;}
.yf9{bottom:241.146667pt;}
.y118{bottom:242.906667pt;}
.yd5{bottom:244.506667pt;}
.yb1{bottom:245.146667pt;}
.y8a{bottom:245.946667pt;}
.y60{bottom:246.186667pt;}
.y11{bottom:252.746667pt;}
.y38{bottom:253.466667pt;}
.y117{bottom:259.306667pt;}
.yb0{bottom:261.546667pt;}
.y89{bottom:262.266667pt;}
.y5f{bottom:262.506667pt;}
.yf8{bottom:267.306667pt;}
.y37{bottom:269.866667pt;}
.y116{bottom:275.626667pt;}
.yaf{bottom:277.866667pt;}
.y88{bottom:278.666667pt;}
.y5e{bottom:278.906667pt;}
.y36{bottom:286.186667pt;}
.y115{bottom:292.026667pt;}
.y5d{bottom:295.226667pt;}
.yd4{bottom:300.826667pt;}
.yae{bottom:302.186667pt;}
.y35{bottom:302.506667pt;}
.y87{bottom:304.106667pt;}
.y114{bottom:308.346667pt;}
.y5c{bottom:311.546667pt;}
.y10{bottom:317.146667pt;}
.yad{bottom:318.586667pt;}
.yf7{bottom:323.626667pt;}
.y113{bottom:324.666667pt;}
.yd3{bottom:325.146667pt;}
.y34{bottom:326.906667pt;}
.y5b{bottom:327.946667pt;}
.yac{bottom:334.906667pt;}
.y112{bottom:341.066667pt;}
.yd2{bottom:341.546667pt;}
.yf6{bottom:348.026667pt;}
.y86{bottom:349.866667pt;}
.y33{bottom:351.226667pt;}
.y5a{bottom:352.266667pt;}
.y111{bottom:357.386667pt;}
.yd1{bottom:357.866667pt;}
.yf5{bottom:364.346667pt;}
.y32{bottom:367.546667pt;}
.yab{bottom:367.626667pt;}
.yf{bottom:372.426667pt;}
.y110{bottom:373.706667pt;}
.y85{bottom:374.186667pt;}
.y59{bottom:378.426667pt;}
.yf4{bottom:380.666667pt;}
.yaa{bottom:383.946667pt;}
.y10f{bottom:390.106667pt;}
.y84{bottom:390.586667pt;}
.y31{bottom:391.946667pt;}
.ya9{bottom:400.266667pt;}
.yf3{bottom:405.066667pt;}
.y10e{bottom:406.426667pt;}
.y83{bottom:406.906667pt;}
.y30{bottom:416.266667pt;}
.ya8{bottom:416.666667pt;}
.y82{bottom:423.226667pt;}
.ye{bottom:427.626667pt;}
.yf2{bottom:429.386667pt;}
.y10d{bottom:430.746667pt;}
.y58{bottom:434.746667pt;}
.y81{bottom:439.626667pt;}
.y2f{bottom:440.586667pt;}
.ya7{bottom:442.106667pt;}
.yf1{bottom:445.706667pt;}
.y80{bottom:455.946667pt;}
.y10c{bottom:456.186667pt;}
.y57{bottom:456.826667pt;}
.y2e{bottom:464.986667pt;}
.yf0{bottom:470.106667pt;}
.y7f{bottom:472.266667pt;}
.y2d{bottom:481.306667pt;}
.yd{bottom:482.826667pt;}
.yef{bottom:486.426667pt;}
.ya6{bottom:487.866667pt;}
.y7e{bottom:488.666667pt;}
.y56{bottom:489.786667pt;}
.y2c{bottom:497.626667pt;}
.y10b{bottom:503.786667pt;}
.yd0{bottom:504.986667pt;}
.yee{bottom:510.746667pt;}
.ya5{bottom:512.266667pt;}
.y7d{bottom:512.986667pt;}
.ycf{bottom:521.306667pt;}
.y2b{bottom:522.026667pt;}
.y54{bottom:522.826667pt;}
.yed{bottom:527.146667pt;}
.ya4{bottom:528.586667pt;}
.y7c{bottom:529.306667pt;}
.yce{bottom:537.706667pt;}
.yc{bottom:538.106667pt;}
.ya3{bottom:544.906667pt;}
.y7b{bottom:545.706667pt;}
.y2a{bottom:546.346667pt;}
.yec{bottom:551.466667pt;}
.ycd{bottom:554.026667pt;}
.y52{bottom:555.866667pt;}
.y10a{bottom:560.186667pt;}
.y7a{bottom:562.026667pt;}
.ya2{bottom:569.333333pt;}
.ycc{bottom:570.453333pt;}
.y29{bottom:570.693333pt;}
.yeb{bottom:575.813333pt;}
.y109{bottom:576.533333pt;}
.y79{bottom:578.453333pt;}
.ycb{bottom:586.773333pt;}
.y50{bottom:588.853333pt;}
.yb{bottom:593.333333pt;}
.ya1{bottom:593.653333pt;}
.y78{bottom:594.773333pt;}
.y28{bottom:595.093333pt;}
.yea{bottom:600.213333pt;}
.y108{bottom:600.853333pt;}
.yca{bottom:603.093333pt;}
.ya0{bottom:609.973333pt;}
.y77{bottom:611.093333pt;}
.y27{bottom:611.413333pt;}
.ye9{bottom:616.533333pt;}
.yc9{bottom:619.493333pt;}
.y107{bottom:625.253333pt;}
.y9f{bottom:626.373333pt;}
.y4f{bottom:632.853333pt;}
.y12c{bottom:634.693333pt;}
.y76{bottom:635.493333pt;}
.yc8{bottom:635.813333pt;}
.y26{bottom:637.573333pt;}
.ye8{bottom:640.853333pt;}
.y106{bottom:641.573333pt;}
.y9e{bottom:642.693333pt;}
.ya{bottom:648.613333pt;}
.y75{bottom:651.813333pt;}
.yc7{bottom:652.133333pt;}
.y4e{bottom:657.253333pt;}
.y105{bottom:657.893333pt;}
.y12b{bottom:658.453333pt;}
.ye7{bottom:665.253333pt;}
.y9d{bottom:667.013333pt;}
.y74{bottom:668.133333pt;}
.yc6{bottom:668.533333pt;}
.y4d{bottom:673.573333pt;}
.y104{bottom:674.293333pt;}
.y12a{bottom:675.013333pt;}
.ye6{bottom:681.573333pt;}
.y73{bottom:684.533333pt;}
.yc5{bottom:684.853333pt;}
.y103{bottom:690.613333pt;}
.y9c{bottom:691.413333pt;}
.y25{bottom:693.893333pt;}
.y4c{bottom:697.893333pt;}
.y72{bottom:700.853333pt;}
.yc4{bottom:701.173333pt;}
.y9{bottom:703.813333pt;}
.y9b{bottom:707.733333pt;}
.y24{bottom:710.293333pt;}
.ye5{bottom:714.293333pt;}
.y102{bottom:714.933333pt;}
.y129{bottom:715.733333pt;}
.y71{bottom:717.173333pt;}
.yc3{bottom:717.573333pt;}
.y4b{bottom:724.053333pt;}
.y23{bottom:726.613333pt;}
.ye4{bottom:730.613333pt;}
.yc2{bottom:733.893333pt;}
.y128{bottom:740.053333pt;}
.y9a{bottom:740.453333pt;}
.y101{bottom:741.093333pt;}
.y70{bottom:741.573333pt;}
.y8{bottom:743.093333pt;}
.ye3{bottom:746.933333pt;}
.yc1{bottom:750.213333pt;}
.y22{bottom:750.933333pt;}
.y127{bottom:756.453333pt;}
.y99{bottom:764.773333pt;}
.y6f{bottom:765.893333pt;}
.ye2{bottom:771.333333pt;}
.yc0{bottom:774.613333pt;}
.y21{bottom:775.333333pt;}
.y4a{bottom:780.453333pt;}
.y126{bottom:780.773333pt;}
.y6e{bottom:782.213333pt;}
.y98{bottom:789.093333pt;}
.y20{bottom:791.653333pt;}
.ye1{bottom:795.653333pt;}
.y49{bottom:796.773333pt;}
.y100{bottom:797.493333pt;}
.y7{bottom:798.293333pt;}
.y6d{bottom:798.613333pt;}
.ybf{bottom:798.933333pt;}
.y125{bottom:805.093333pt;}
.y97{bottom:805.493333pt;}
.y1f{bottom:807.973333pt;}
.ye0{bottom:811.973333pt;}
.y48{bottom:813.093333pt;}
.y6c{bottom:814.933333pt;}
.y124{bottom:821.493333pt;}
.y96{bottom:821.813333pt;}
.ybe{bottom:823.253333pt;}
.y1e{bottom:824.373333pt;}
.ydf{bottom:828.373333pt;}
.y47{bottom:837.493333pt;}
.y6b{bottom:839.253333pt;}
.ybd{bottom:839.653333pt;}
.y1d{bottom:840.693333pt;}
.yde{bottom:844.693333pt;}
.y123{bottom:845.813333pt;}
.y95{bottom:846.133333pt;}
.y6{bottom:853.493333pt;}
.ybc{bottom:855.973333pt;}
.y1c{bottom:857.093333pt;}
.ydd{bottom:861.093333pt;}
.y46{bottom:861.813333pt;}
.y6a{bottom:863.653333pt;}
.y122{bottom:870.133333pt;}
.y94{bottom:870.533333pt;}
.ybb{bottom:872.293333pt;}
.y45{bottom:878.133333pt;}
.y69{bottom:879.973333pt;}
.y1b{bottom:881.413333pt;}
.y121{bottom:886.533333pt;}
.ydc{bottom:887.173333pt;}
.y44{bottom:894.533333pt;}
.y93{bottom:894.853333pt;}
.y68{bottom:896.293333pt;}
.yba{bottom:897.733333pt;}
.y120{bottom:902.853333pt;}
.y1a{bottom:907.573333pt;}
.y5{bottom:908.773333pt;}
.y43{bottom:910.853333pt;}
.y67{bottom:912.693333pt;}
.y92{bottom:919.173333pt;}
.y42{bottom:927.173333pt;}
.y66{bottom:938.160000pt;}
.y41{bottom:943.600000pt;}
.y4{bottom:967.920000pt;}
.y1{bottom:989.280000pt;}
.hf{height:32.320000pt;}
.he{height:32.346667pt;}
.hc{height:32.400000pt;}
.h13{height:34.080000pt;}
.h9{height:36.906667pt;}
.h8{height:39.360000pt;}
.h10{height:41.697812pt;}
.h5{height:42.640000pt;}
.hb{height:43.811406pt;}
.h3{height:49.447656pt;}
.h6{height:52.468750pt;}
.hd{height:54.927899pt;}
.h12{height:55.631875pt;}
.h7{height:59.218750pt;}
.h11{height:77.618125pt;}
.h2{height:86.000000pt;}
.ha{height:88.944375pt;}
.h4{height:104.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:208.826667pt;}
.w2{width:288.106667pt;}
.w3{width:288.186667pt;}
.w5{width:386.986667pt;}
.w6{width:520.133333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xc{left:19.760000pt;}
.xe{left:98.560000pt;}
.x1{left:106.240000pt;}
.xd{left:111.680000pt;}
.x5{left:113.440000pt;}
.x12{left:132.400000pt;}
.x7{left:135.120000pt;}
.x10{left:137.440000pt;}
.xf{left:139.920000pt;}
.x13{left:156.426667pt;}
.xa{left:161.146667pt;}
.x14{left:167.626667pt;}
.x18{left:170.186667pt;}
.x15{left:184.666667pt;}
.xb{left:201.546667pt;}
.x16{left:209.466667pt;}
.x2{left:213.226667pt;}
.x17{left:233.466667pt;}
.x11{left:299.626667pt;}
.x8{left:309.866667pt;}
.x9{left:319.786667pt;}
.x3{left:394.346667pt;}
.x6{left:396.906667pt;}
}




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