
    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_cd335696031fd42a3cf5cd32.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4ed45cbf741e3df51dff519.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_1acfd28fb36b1a7012958dd9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37ba27cd809d94373c3a8a28.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e3678edf6dfc63926ad791cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_cae0e7b29ce8b7788bf40aed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_9f267131e190f3904a7caccd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.066406;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_a4eea2af16c8d9edb2028ad9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.066406;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;}
.ls6{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:1.620000px;}
.ls7{letter-spacing:21.546720px;}
.ls8{letter-spacing:22.500000px;}
.ls9{letter-spacing:26.100000px;}
.ls3{letter-spacing:46.002720px;}
.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:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-8.173440px;}
._d{margin-left:-3.469680px;}
._7{margin-left:-2.450160px;}
._1{margin-left:-1.321920px;}
._0{width:1.346400px;}
._2{width:2.794080px;}
._6{width:4.500000px;}
._c{width:5.617440px;}
._b{width:7.199280px;}
._a{width:8.693280px;}
._11{width:9.742800px;}
._8{width:10.816560px;}
._9{width:12.310560px;}
._e{width:13.533840px;}
._12{width:16.553520px;}
._13{width:18.416400px;}
._16{width:20.048880px;}
._1a{width:21.519840px;}
._f{width:22.796640px;}
._10{width:23.951280px;}
._14{width:26.202960px;}
._15{width:27.222480px;}
._20{width:44.699520px;}
._1d{width:58.961760px;}
._1c{width:60.238080px;}
._1e{width:79.482720px;}
._5{width:85.656000px;}
._23{width:98.245440px;}
._22{width:111.480480px;}
._1b{width:158.631120px;}
._19{width:171.677760px;}
._17{width:211.219920px;}
._18{width:212.478480px;}
._3{width:576.120000px;}
._4{width:687.306000px;}
._21{width:2202.992640px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.240000px;}
.ybd{bottom:3.285000px;}
.y79{bottom:3.780000px;}
.y7e{bottom:4.680000px;}
.y103{bottom:11.880000px;}
.y106{bottom:12.600000px;}
.ye9{bottom:20.340000px;}
.y130{bottom:20.514000px;}
.y80{bottom:20.520000px;}
.y78{bottom:21.060000px;}
.yd1{bottom:21.600000px;}
.y7d{bottom:21.960000px;}
.y105{bottom:29.880000px;}
.ya{bottom:36.720000px;}
.y12d{bottom:37.620000px;}
.y12f{bottom:37.794000px;}
.yf0{bottom:37.800000px;}
.yd0{bottom:38.880000px;}
.y7c{bottom:39.240000px;}
.yb5{bottom:49.005000px;}
.y9{bottom:55.260000px;}
.ycf{bottom:56.160000px;}
.y7b{bottom:56.520000px;}
.yb4{bottom:66.285000px;}
.yed{bottom:74.565000px;}
.yb3{bottom:83.565000px;}
.yec{bottom:91.845000px;}
.yb2{bottom:100.845000px;}
.yeb{bottom:109.125000px;}
.y40{bottom:113.436000px;}
.yac{bottom:113.616000px;}
.y89{bottom:115.236000px;}
.yb1{bottom:118.125000px;}
.y132{bottom:119.556000px;}
.y131{bottom:124.056000px;}
.ye7{bottom:124.776000px;}
.y3f{bottom:130.536000px;}
.yab{bottom:130.716000px;}
.y88{bottom:132.516000px;}
.yb0{bottom:135.405000px;}
.y76{bottom:136.836000px;}
.y12e{bottom:138.816000px;}
.ye6{bottom:142.056000px;}
.y3e{bottom:147.816000px;}
.yaa{bottom:147.996000px;}
.y87{bottom:149.796000px;}
.yaf{bottom:152.505000px;}
.y75{bottom:154.110000px;}
.ye5{bottom:159.330000px;}
.y3d{bottom:165.090000px;}
.ya9{bottom:165.270000px;}
.y86{bottom:166.890000px;}
.y74{bottom:171.390000px;}
.ye4{bottom:176.610000px;}
.y3c{bottom:182.370000px;}
.ya8{bottom:182.550000px;}
.y85{bottom:184.170000px;}
.y73{bottom:188.490000px;}
.y12c{bottom:191.370000px;}
.ye3{bottom:193.890000px;}
.y3b{bottom:199.650000px;}
.ya7{bottom:199.830000px;}
.y84{bottom:201.450000px;}
.y72{bottom:205.770000px;}
.ye2{bottom:210.990000px;}
.y3a{bottom:216.750000px;}
.ya6{bottom:217.110000px;}
.y83{bottom:218.730000px;}
.y71{bottom:223.050000px;}
.ye1{bottom:228.270000px;}
.y7a{bottom:233.490000px;}
.y39{bottom:234.030000px;}
.ya5{bottom:234.210000px;}
.y70{bottom:240.330000px;}
.y12b{bottom:243.750000px;}
.ye0{bottom:245.550000px;}
.y38{bottom:251.310000px;}
.y82{bottom:251.490000px;}
.y6f{bottom:257.610000px;}
.ydf{bottom:262.830000px;}
.y37{bottom:268.590000px;}
.ya4{bottom:268.770000px;}
.y7f{bottom:269.490000px;}
.y6e{bottom:274.890000px;}
.yde{bottom:280.110000px;}
.y36{bottom:285.870000px;}
.ya3{bottom:286.050000px;}
.y6d{bottom:291.990000px;}
.y12a{bottom:296.310000px;}
.ydd{bottom:297.390000px;}
.y35{bottom:303.150000px;}
.ya2{bottom:303.330000px;}
.y77{bottom:304.770000px;}
.y6c{bottom:309.270000px;}
.ydc{bottom:314.490000px;}
.y34{bottom:320.250000px;}
.ya1{bottom:320.610000px;}
.y6b{bottom:326.550000px;}
.ydb{bottom:331.770000px;}
.y33{bottom:337.575000px;}
.ya0{bottom:337.755000px;}
.y6a{bottom:343.875000px;}
.y129{bottom:348.915000px;}
.yda{bottom:349.095000px;}
.y32{bottom:354.855000px;}
.y9f{bottom:355.035000px;}
.y69{bottom:361.155000px;}
.yd9{bottom:366.375000px;}
.y128{bottom:370.155000px;}
.y31{bottom:372.135000px;}
.y9e{bottom:372.315000px;}
.y110{bottom:373.035000px;}
.y68{bottom:378.255000px;}
.yd8{bottom:383.655000px;}
.y127{bottom:387.255000px;}
.y30{bottom:389.415000px;}
.y9d{bottom:389.595000px;}
.y10f{bottom:390.315000px;}
.y67{bottom:395.535000px;}
.yd7{bottom:400.755000px;}
.y9c{bottom:404.355000px;}
.y126{bottom:404.535000px;}
.y2f{bottom:406.695000px;}
.y10e{bottom:407.595000px;}
.y66{bottom:412.815000px;}
.yd6{bottom:418.035000px;}
.y125{bottom:421.815000px;}
.y9b{bottom:422.355000px;}
.y2e{bottom:423.795000px;}
.y10d{bottom:424.875000px;}
.y65{bottom:430.095000px;}
.yd5{bottom:435.315000px;}
.y124{bottom:439.095000px;}
.y9a{bottom:440.355000px;}
.y2d{bottom:441.075000px;}
.y10c{bottom:442.155000px;}
.y64{bottom:447.375000px;}
.yce{bottom:450.075000px;}
.y123{bottom:456.375000px;}
.y2c{bottom:458.355000px;}
.y10b{bottom:459.255000px;}
.y63{bottom:464.655000px;}
.yd4{bottom:468.075000px;}
.y122{bottom:473.475000px;}
.y2b{bottom:475.635000px;}
.y99{bottom:476.355000px;}
.y10a{bottom:476.535000px;}
.y62{bottom:481.755000px;}
.y121{bottom:490.755000px;}
.y2a{bottom:492.915000px;}
.y98{bottom:497.595000px;}
.y61{bottom:499.035000px;}
.yd3{bottom:503.355000px;}
.y109{bottom:505.875000px;}
.y120{bottom:508.035000px;}
.y29{bottom:510.015000px;}
.y97{bottom:514.875000px;}
.y60{bottom:516.315000px;}
.y104{bottom:520.635000px;}
.yd2{bottom:521.355000px;}
.y11f{bottom:525.315000px;}
.y28{bottom:527.295000px;}
.y96{bottom:531.975000px;}
.y5f{bottom:533.595000px;}
.y108{bottom:538.635000px;}
.ycd{bottom:539.355000px;}
.y11e{bottom:542.595000px;}
.y27{bottom:544.575000px;}
.y95{bottom:549.255000px;}
.y5e{bottom:550.875000px;}
.y107{bottom:556.635000px;}
.y11d{bottom:559.875000px;}
.y26{bottom:564.015000px;}
.y94{bottom:566.535000px;}
.y5d{bottom:568.155000px;}
.y102{bottom:574.635000px;}
.y11c{bottom:576.975000px;}
.ycc{bottom:577.875000px;}
.y25{bottom:581.295000px;}
.y93{bottom:583.815000px;}
.y5c{bottom:585.255000px;}
.y11b{bottom:594.255000px;}
.ycb{bottom:595.155000px;}
.y24{bottom:598.575000px;}
.y92{bottom:601.095000px;}
.y5b{bottom:602.535000px;}
.y11a{bottom:611.565000px;}
.yca{bottom:612.285000px;}
.y101{bottom:613.185000px;}
.y23{bottom:615.885000px;}
.y91{bottom:618.405000px;}
.y5a{bottom:619.845000px;}
.y119{bottom:628.845000px;}
.yc9{bottom:629.565000px;}
.y100{bottom:630.285000px;}
.y22{bottom:633.165000px;}
.y90{bottom:635.505000px;}
.y59{bottom:637.125000px;}
.y118{bottom:646.125000px;}
.yc8{bottom:646.845000px;}
.yff{bottom:647.565000px;}
.y21{bottom:650.445000px;}
.y8f{bottom:652.785000px;}
.y58{bottom:654.405000px;}
.y117{bottom:663.405000px;}
.yc7{bottom:664.125000px;}
.yfe{bottom:664.845000px;}
.y20{bottom:667.545000px;}
.y8e{bottom:670.065000px;}
.y57{bottom:671.685000px;}
.y116{bottom:680.505000px;}
.yc6{bottom:681.405000px;}
.yfd{bottom:682.125000px;}
.y1f{bottom:684.825000px;}
.y8d{bottom:687.345000px;}
.y56{bottom:688.785000px;}
.y115{bottom:697.785000px;}
.yc5{bottom:698.505000px;}
.yfc{bottom:699.405000px;}
.y1e{bottom:702.105000px;}
.y8c{bottom:704.625000px;}
.y55{bottom:706.065000px;}
.y114{bottom:715.065000px;}
.yc4{bottom:715.785000px;}
.yfb{bottom:716.505000px;}
.y1d{bottom:719.385000px;}
.y8b{bottom:721.905000px;}
.y54{bottom:723.345000px;}
.y113{bottom:732.345000px;}
.yc3{bottom:733.065000px;}
.yfa{bottom:733.785000px;}
.y8a{bottom:735.765000px;}
.y1c{bottom:736.665000px;}
.y53{bottom:740.625000px;}
.y112{bottom:749.625000px;}
.yc2{bottom:750.345000px;}
.yf9{bottom:751.065000px;}
.y1b{bottom:753.945000px;}
.y52{bottom:757.905000px;}
.y111{bottom:763.485000px;}
.yc1{bottom:767.625000px;}
.yf8{bottom:768.345000px;}
.y1a{bottom:771.045000px;}
.y51{bottom:775.005000px;}
.yc0{bottom:784.905000px;}
.yf7{bottom:785.625000px;}
.y19{bottom:788.325000px;}
.y50{bottom:792.285000px;}
.ybf{bottom:802.005000px;}
.yf6{bottom:802.905000px;}
.y18{bottom:805.605000px;}
.y4f{bottom:809.565000px;}
.ybe{bottom:819.285000px;}
.yf5{bottom:820.005000px;}
.y17{bottom:822.885000px;}
.y4e{bottom:826.845000px;}
.yae{bottom:834.045000px;}
.yea{bottom:834.765000px;}
.y16{bottom:840.165000px;}
.y4d{bottom:844.125000px;}
.yf4{bottom:852.765000px;}
.y15{bottom:857.445000px;}
.y4c{bottom:861.405000px;}
.ybc{bottom:869.325000px;}
.yf3{bottom:870.810000px;}
.y14{bottom:876.930000px;}
.y4b{bottom:878.550000px;}
.ybb{bottom:887.370000px;}
.y13{bottom:894.570000px;}
.y4a{bottom:895.830000px;}
.yba{bottom:905.370000px;}
.yf2{bottom:906.090000px;}
.y49{bottom:913.110000px;}
.y12{bottom:913.470000px;}
.yb9{bottom:923.370000px;}
.yf1{bottom:924.090000px;}
.y48{bottom:930.390000px;}
.y11{bottom:932.550000px;}
.y47{bottom:947.670000px;}
.y10{bottom:951.450000px;}
.yb8{bottom:958.650000px;}
.yef{bottom:959.370000px;}
.y46{bottom:964.950000px;}
.yf{bottom:970.530000px;}
.y45{bottom:982.050000px;}
.ye{bottom:989.430000px;}
.yb7{bottom:993.930000px;}
.y44{bottom:999.330000px;}
.yd{bottom:1008.510000px;}
.yee{bottom:1011.930000px;}
.y43{bottom:1016.610000px;}
.yc{bottom:1027.770000px;}
.yb6{bottom:1029.210000px;}
.ye8{bottom:1029.930000px;}
.y42{bottom:1033.890000px;}
.yad{bottom:1047.030000px;}
.yb{bottom:1048.290000px;}
.y41{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h10{height:17.100000px;}
.hc{height:17.280000px;}
.h12{height:17.316000px;}
.hb{height:34.380000px;}
.h16{height:34.416000px;}
.h11{height:34.560000px;}
.h9{height:35.136000px;}
.h5{height:42.164648px;}
.hd{height:45.024258px;}
.h6{height:45.061523px;}
.h8{height:46.736719px;}
.h2{height:49.868086px;}
.he{height:50.772656px;}
.h4{height:50.800781px;}
.h19{height:51.660000px;}
.h18{height:51.696000px;}
.h15{height:51.840000px;}
.h17{height:53.280000px;}
.h3{height:55.275469px;}
.h7{height:65.884219px;}
.ha{height:70.380000px;}
.h13{height:88.560000px;}
.h14{height:194.430000px;}
.hf{height:212.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:57.996000px;}
.w4{width:63.000000px;}
.w10{width:83.340000px;}
.w16{width:84.240000px;}
.w8{width:99.720000px;}
.w13{width:115.740000px;}
.wb{width:115.920000px;}
.wa{width:116.100000px;}
.w9{width:116.316000px;}
.wd{width:121.356000px;}
.w19{width:126.756000px;}
.w5{width:127.080000px;}
.w11{width:136.620000px;}
.w6{width:137.376000px;}
.we{width:142.560000px;}
.w14{width:168.300000px;}
.w18{width:174.420000px;}
.w17{width:174.630000px;}
.w1a{width:190.650000px;}
.w3{width:265.170000px;}
.wc{width:408.855000px;}
.w15{width:421.635000px;}
.w12{width:421.665000px;}
.wf{width:448.305000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x21{left:10.080000px;}
.x22{left:11.520000px;}
.x19{left:13.860000px;}
.x2e{left:18.360000px;}
.x35{left:20.340000px;}
.x2a{left:23.760000px;}
.x24{left:25.200000px;}
.x3c{left:28.260000px;}
.x1a{left:32.580000px;}
.x38{left:34.020000px;}
.x25{left:36.720000px;}
.x36{left:39.240000px;}
.x26{left:41.220000px;}
.x30{left:43.785000px;}
.x27{left:45.000000px;}
.x3d{left:49.854000px;}
.x2f{left:57.954000px;}
.x18{left:63.540000px;}
.x8{left:108.035987px;}
.x41{left:112.176000px;}
.x3e{left:115.955987px;}
.x29{left:122.796000px;}
.x2{left:130.715987px;}
.x12{left:135.035987px;}
.x37{left:139.535987px;}
.x1{left:151.409987px;}
.x31{left:153.569987px;}
.x5{left:157.169987px;}
.x2c{left:171.405000px;}
.x3a{left:177.705000px;}
.xf{left:180.209987px;}
.x33{left:191.205000px;}
.x9{left:193.169987px;}
.x40{left:230.069987px;}
.x2b{left:239.430000px;}
.x39{left:246.270000px;}
.x1f{left:250.410000px;}
.x32{left:252.030000px;}
.xd{left:277.634987px;}
.xc{left:282.854987px;}
.x42{left:287.535000px;}
.x45{left:294.374987px;}
.x1e{left:301.754987px;}
.x20{left:309.135000px;}
.x13{left:313.454987px;}
.xa{left:317.774987px;}
.x28{left:339.554987px;}
.x1c{left:343.694987px;}
.xb{left:344.954987px;}
.x15{left:346.394987px;}
.xe{left:357.194987px;}
.x4{left:364.214987px;}
.x46{left:370.334987px;}
.x14{left:384.374987px;}
.x10{left:386.534987px;}
.x7{left:396.434987px;}
.x11{left:398.954987px;}
.x1b{left:409.935000px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x43{left:462.855000px;}
.x23{left:526.605000px;}
.x17{left:548.025000px;}
.x44{left:590.325000px;}
.x3f{left:601.844987px;}
.x2d{left:649.005000px;}
.x3b{left:668.670000px;}
.x1d{left:689.549987px;}
.x34{left:701.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls7{letter-spacing:19.152640pt;}
.ls8{letter-spacing:20.000000pt;}
.ls9{letter-spacing:23.200000pt;}
.ls3{letter-spacing:40.891307pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-7.265280pt;}
._d{margin-left:-3.084160pt;}
._7{margin-left:-2.177920pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.196800pt;}
._2{width:2.483627pt;}
._6{width:4.000000pt;}
._c{width:4.993280pt;}
._b{width:6.399360pt;}
._a{width:7.727360pt;}
._11{width:8.660267pt;}
._8{width:9.614720pt;}
._9{width:10.942720pt;}
._e{width:12.030080pt;}
._12{width:14.714240pt;}
._13{width:16.370133pt;}
._16{width:17.821227pt;}
._1a{width:19.128747pt;}
._f{width:20.263680pt;}
._10{width:21.290027pt;}
._14{width:23.291520pt;}
._15{width:24.197760pt;}
._20{width:39.732907pt;}
._1d{width:52.410453pt;}
._1c{width:53.544960pt;}
._1e{width:70.651307pt;}
._5{width:76.138667pt;}
._23{width:87.329280pt;}
._22{width:99.093760pt;}
._1b{width:141.005440pt;}
._19{width:152.602453pt;}
._17{width:187.751040pt;}
._18{width:188.869760pt;}
._3{width:512.106667pt;}
._4{width:610.938667pt;}
._21{width:1958.215680pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:2.880000pt;}
.ybd{bottom:2.920000pt;}
.y79{bottom:3.360000pt;}
.y7e{bottom:4.160000pt;}
.y103{bottom:10.560000pt;}
.y106{bottom:11.200000pt;}
.ye9{bottom:18.080000pt;}
.y130{bottom:18.234667pt;}
.y80{bottom:18.240000pt;}
.y78{bottom:18.720000pt;}
.yd1{bottom:19.200000pt;}
.y7d{bottom:19.520000pt;}
.y105{bottom:26.560000pt;}
.ya{bottom:32.640000pt;}
.y12d{bottom:33.440000pt;}
.y12f{bottom:33.594667pt;}
.yf0{bottom:33.600000pt;}
.yd0{bottom:34.560000pt;}
.y7c{bottom:34.880000pt;}
.yb5{bottom:43.560000pt;}
.y9{bottom:49.120000pt;}
.ycf{bottom:49.920000pt;}
.y7b{bottom:50.240000pt;}
.yb4{bottom:58.920000pt;}
.yed{bottom:66.280000pt;}
.yb3{bottom:74.280000pt;}
.yec{bottom:81.640000pt;}
.yb2{bottom:89.640000pt;}
.yeb{bottom:97.000000pt;}
.y40{bottom:100.832000pt;}
.yac{bottom:100.992000pt;}
.y89{bottom:102.432000pt;}
.yb1{bottom:105.000000pt;}
.y132{bottom:106.272000pt;}
.y131{bottom:110.272000pt;}
.ye7{bottom:110.912000pt;}
.y3f{bottom:116.032000pt;}
.yab{bottom:116.192000pt;}
.y88{bottom:117.792000pt;}
.yb0{bottom:120.360000pt;}
.y76{bottom:121.632000pt;}
.y12e{bottom:123.392000pt;}
.ye6{bottom:126.272000pt;}
.y3e{bottom:131.392000pt;}
.yaa{bottom:131.552000pt;}
.y87{bottom:133.152000pt;}
.yaf{bottom:135.560000pt;}
.y75{bottom:136.986667pt;}
.ye5{bottom:141.626667pt;}
.y3d{bottom:146.746667pt;}
.ya9{bottom:146.906667pt;}
.y86{bottom:148.346667pt;}
.y74{bottom:152.346667pt;}
.ye4{bottom:156.986667pt;}
.y3c{bottom:162.106667pt;}
.ya8{bottom:162.266667pt;}
.y85{bottom:163.706667pt;}
.y73{bottom:167.546667pt;}
.y12c{bottom:170.106667pt;}
.ye3{bottom:172.346667pt;}
.y3b{bottom:177.466667pt;}
.ya7{bottom:177.626667pt;}
.y84{bottom:179.066667pt;}
.y72{bottom:182.906667pt;}
.ye2{bottom:187.546667pt;}
.y3a{bottom:192.666667pt;}
.ya6{bottom:192.986667pt;}
.y83{bottom:194.426667pt;}
.y71{bottom:198.266667pt;}
.ye1{bottom:202.906667pt;}
.y7a{bottom:207.546667pt;}
.y39{bottom:208.026667pt;}
.ya5{bottom:208.186667pt;}
.y70{bottom:213.626667pt;}
.y12b{bottom:216.666667pt;}
.ye0{bottom:218.266667pt;}
.y38{bottom:223.386667pt;}
.y82{bottom:223.546667pt;}
.y6f{bottom:228.986667pt;}
.ydf{bottom:233.626667pt;}
.y37{bottom:238.746667pt;}
.ya4{bottom:238.906667pt;}
.y7f{bottom:239.546667pt;}
.y6e{bottom:244.346667pt;}
.yde{bottom:248.986667pt;}
.y36{bottom:254.106667pt;}
.ya3{bottom:254.266667pt;}
.y6d{bottom:259.546667pt;}
.y12a{bottom:263.386667pt;}
.ydd{bottom:264.346667pt;}
.y35{bottom:269.466667pt;}
.ya2{bottom:269.626667pt;}
.y77{bottom:270.906667pt;}
.y6c{bottom:274.906667pt;}
.ydc{bottom:279.546667pt;}
.y34{bottom:284.666667pt;}
.ya1{bottom:284.986667pt;}
.y6b{bottom:290.266667pt;}
.ydb{bottom:294.906667pt;}
.y33{bottom:300.066667pt;}
.ya0{bottom:300.226667pt;}
.y6a{bottom:305.666667pt;}
.y129{bottom:310.146667pt;}
.yda{bottom:310.306667pt;}
.y32{bottom:315.426667pt;}
.y9f{bottom:315.586667pt;}
.y69{bottom:321.026667pt;}
.yd9{bottom:325.666667pt;}
.y128{bottom:329.026667pt;}
.y31{bottom:330.786667pt;}
.y9e{bottom:330.946667pt;}
.y110{bottom:331.586667pt;}
.y68{bottom:336.226667pt;}
.yd8{bottom:341.026667pt;}
.y127{bottom:344.226667pt;}
.y30{bottom:346.146667pt;}
.y9d{bottom:346.306667pt;}
.y10f{bottom:346.946667pt;}
.y67{bottom:351.586667pt;}
.yd7{bottom:356.226667pt;}
.y9c{bottom:359.426667pt;}
.y126{bottom:359.586667pt;}
.y2f{bottom:361.506667pt;}
.y10e{bottom:362.306667pt;}
.y66{bottom:366.946667pt;}
.yd6{bottom:371.586667pt;}
.y125{bottom:374.946667pt;}
.y9b{bottom:375.426667pt;}
.y2e{bottom:376.706667pt;}
.y10d{bottom:377.666667pt;}
.y65{bottom:382.306667pt;}
.yd5{bottom:386.946667pt;}
.y124{bottom:390.306667pt;}
.y9a{bottom:391.426667pt;}
.y2d{bottom:392.066667pt;}
.y10c{bottom:393.026667pt;}
.y64{bottom:397.666667pt;}
.yce{bottom:400.066667pt;}
.y123{bottom:405.666667pt;}
.y2c{bottom:407.426667pt;}
.y10b{bottom:408.226667pt;}
.y63{bottom:413.026667pt;}
.yd4{bottom:416.066667pt;}
.y122{bottom:420.866667pt;}
.y2b{bottom:422.786667pt;}
.y99{bottom:423.426667pt;}
.y10a{bottom:423.586667pt;}
.y62{bottom:428.226667pt;}
.y121{bottom:436.226667pt;}
.y2a{bottom:438.146667pt;}
.y98{bottom:442.306667pt;}
.y61{bottom:443.586667pt;}
.yd3{bottom:447.426667pt;}
.y109{bottom:449.666667pt;}
.y120{bottom:451.586667pt;}
.y29{bottom:453.346667pt;}
.y97{bottom:457.666667pt;}
.y60{bottom:458.946667pt;}
.y104{bottom:462.786667pt;}
.yd2{bottom:463.426667pt;}
.y11f{bottom:466.946667pt;}
.y28{bottom:468.706667pt;}
.y96{bottom:472.866667pt;}
.y5f{bottom:474.306667pt;}
.y108{bottom:478.786667pt;}
.ycd{bottom:479.426667pt;}
.y11e{bottom:482.306667pt;}
.y27{bottom:484.066667pt;}
.y95{bottom:488.226667pt;}
.y5e{bottom:489.666667pt;}
.y107{bottom:494.786667pt;}
.y11d{bottom:497.666667pt;}
.y26{bottom:501.346667pt;}
.y94{bottom:503.586667pt;}
.y5d{bottom:505.026667pt;}
.y102{bottom:510.786667pt;}
.y11c{bottom:512.866667pt;}
.ycc{bottom:513.666667pt;}
.y25{bottom:516.706667pt;}
.y93{bottom:518.946667pt;}
.y5c{bottom:520.226667pt;}
.y11b{bottom:528.226667pt;}
.ycb{bottom:529.026667pt;}
.y24{bottom:532.066667pt;}
.y92{bottom:534.306667pt;}
.y5b{bottom:535.586667pt;}
.y11a{bottom:543.613333pt;}
.yca{bottom:544.253333pt;}
.y101{bottom:545.053333pt;}
.y23{bottom:547.453333pt;}
.y91{bottom:549.693333pt;}
.y5a{bottom:550.973333pt;}
.y119{bottom:558.973333pt;}
.yc9{bottom:559.613333pt;}
.y100{bottom:560.253333pt;}
.y22{bottom:562.813333pt;}
.y90{bottom:564.893333pt;}
.y59{bottom:566.333333pt;}
.y118{bottom:574.333333pt;}
.yc8{bottom:574.973333pt;}
.yff{bottom:575.613333pt;}
.y21{bottom:578.173333pt;}
.y8f{bottom:580.253333pt;}
.y58{bottom:581.693333pt;}
.y117{bottom:589.693333pt;}
.yc7{bottom:590.333333pt;}
.yfe{bottom:590.973333pt;}
.y20{bottom:593.373333pt;}
.y8e{bottom:595.613333pt;}
.y57{bottom:597.053333pt;}
.y116{bottom:604.893333pt;}
.yc6{bottom:605.693333pt;}
.yfd{bottom:606.333333pt;}
.y1f{bottom:608.733333pt;}
.y8d{bottom:610.973333pt;}
.y56{bottom:612.253333pt;}
.y115{bottom:620.253333pt;}
.yc5{bottom:620.893333pt;}
.yfc{bottom:621.693333pt;}
.y1e{bottom:624.093333pt;}
.y8c{bottom:626.333333pt;}
.y55{bottom:627.613333pt;}
.y114{bottom:635.613333pt;}
.yc4{bottom:636.253333pt;}
.yfb{bottom:636.893333pt;}
.y1d{bottom:639.453333pt;}
.y8b{bottom:641.693333pt;}
.y54{bottom:642.973333pt;}
.y113{bottom:650.973333pt;}
.yc3{bottom:651.613333pt;}
.yfa{bottom:652.253333pt;}
.y8a{bottom:654.013333pt;}
.y1c{bottom:654.813333pt;}
.y53{bottom:658.333333pt;}
.y112{bottom:666.333333pt;}
.yc2{bottom:666.973333pt;}
.yf9{bottom:667.613333pt;}
.y1b{bottom:670.173333pt;}
.y52{bottom:673.693333pt;}
.y111{bottom:678.653333pt;}
.yc1{bottom:682.333333pt;}
.yf8{bottom:682.973333pt;}
.y1a{bottom:685.373333pt;}
.y51{bottom:688.893333pt;}
.yc0{bottom:697.693333pt;}
.yf7{bottom:698.333333pt;}
.y19{bottom:700.733333pt;}
.y50{bottom:704.253333pt;}
.ybf{bottom:712.893333pt;}
.yf6{bottom:713.693333pt;}
.y18{bottom:716.093333pt;}
.y4f{bottom:719.613333pt;}
.ybe{bottom:728.253333pt;}
.yf5{bottom:728.893333pt;}
.y17{bottom:731.453333pt;}
.y4e{bottom:734.973333pt;}
.yae{bottom:741.373333pt;}
.yea{bottom:742.013333pt;}
.y16{bottom:746.813333pt;}
.y4d{bottom:750.333333pt;}
.yf4{bottom:758.013333pt;}
.y15{bottom:762.173333pt;}
.y4c{bottom:765.693333pt;}
.ybc{bottom:772.733333pt;}
.yf3{bottom:774.053333pt;}
.y14{bottom:779.493333pt;}
.y4b{bottom:780.933333pt;}
.ybb{bottom:788.773333pt;}
.y13{bottom:795.173333pt;}
.y4a{bottom:796.293333pt;}
.yba{bottom:804.773333pt;}
.yf2{bottom:805.413333pt;}
.y49{bottom:811.653333pt;}
.y12{bottom:811.973333pt;}
.yb9{bottom:820.773333pt;}
.yf1{bottom:821.413333pt;}
.y48{bottom:827.013333pt;}
.y11{bottom:828.933333pt;}
.y47{bottom:842.373333pt;}
.y10{bottom:845.733333pt;}
.yb8{bottom:852.133333pt;}
.yef{bottom:852.773333pt;}
.y46{bottom:857.733333pt;}
.yf{bottom:862.693333pt;}
.y45{bottom:872.933333pt;}
.ye{bottom:879.493333pt;}
.yb7{bottom:883.493333pt;}
.y44{bottom:888.293333pt;}
.yd{bottom:896.453333pt;}
.yee{bottom:899.493333pt;}
.y43{bottom:903.653333pt;}
.yc{bottom:913.573333pt;}
.yb6{bottom:914.853333pt;}
.ye8{bottom:915.493333pt;}
.y42{bottom:919.013333pt;}
.yad{bottom:930.693333pt;}
.yb{bottom:931.813333pt;}
.y41{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h10{height:15.200000pt;}
.hc{height:15.360000pt;}
.h12{height:15.392000pt;}
.hb{height:30.560000pt;}
.h16{height:30.592000pt;}
.h11{height:30.720000pt;}
.h9{height:31.232000pt;}
.h5{height:37.479688pt;}
.hd{height:40.021563pt;}
.h6{height:40.054688pt;}
.h8{height:41.543750pt;}
.h2{height:44.327188pt;}
.he{height:45.131250pt;}
.h4{height:45.156250pt;}
.h19{height:45.920000pt;}
.h18{height:45.952000pt;}
.h15{height:46.080000pt;}
.h17{height:47.360000pt;}
.h3{height:49.133750pt;}
.h7{height:58.563750pt;}
.ha{height:62.560000pt;}
.h13{height:78.720000pt;}
.h14{height:172.826667pt;}
.hf{height:188.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:51.552000pt;}
.w4{width:56.000000pt;}
.w10{width:74.080000pt;}
.w16{width:74.880000pt;}
.w8{width:88.640000pt;}
.w13{width:102.880000pt;}
.wb{width:103.040000pt;}
.wa{width:103.200000pt;}
.w9{width:103.392000pt;}
.wd{width:107.872000pt;}
.w19{width:112.672000pt;}
.w5{width:112.960000pt;}
.w11{width:121.440000pt;}
.w6{width:122.112000pt;}
.we{width:126.720000pt;}
.w14{width:149.600000pt;}
.w18{width:155.040000pt;}
.w17{width:155.226667pt;}
.w1a{width:169.466667pt;}
.w3{width:235.706667pt;}
.wc{width:363.426667pt;}
.w15{width:374.786667pt;}
.w12{width:374.813333pt;}
.wf{width:398.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x21{left:8.960000pt;}
.x22{left:10.240000pt;}
.x19{left:12.320000pt;}
.x2e{left:16.320000pt;}
.x35{left:18.080000pt;}
.x2a{left:21.120000pt;}
.x24{left:22.400000pt;}
.x3c{left:25.120000pt;}
.x1a{left:28.960000pt;}
.x38{left:30.240000pt;}
.x25{left:32.640000pt;}
.x36{left:34.880000pt;}
.x26{left:36.640000pt;}
.x30{left:38.920000pt;}
.x27{left:40.000000pt;}
.x3d{left:44.314667pt;}
.x2f{left:51.514667pt;}
.x18{left:56.480000pt;}
.x8{left:96.031988pt;}
.x41{left:99.712000pt;}
.x3e{left:103.071988pt;}
.x29{left:109.152000pt;}
.x2{left:116.191988pt;}
.x12{left:120.031988pt;}
.x37{left:124.031988pt;}
.x1{left:134.586655pt;}
.x31{left:136.506655pt;}
.x5{left:139.706655pt;}
.x2c{left:152.360000pt;}
.x3a{left:157.960000pt;}
.xf{left:160.186655pt;}
.x33{left:169.960000pt;}
.x9{left:171.706655pt;}
.x40{left:204.506655pt;}
.x2b{left:212.826667pt;}
.x39{left:218.906667pt;}
.x1f{left:222.586667pt;}
.x32{left:224.026667pt;}
.xd{left:246.786655pt;}
.xc{left:251.426655pt;}
.x42{left:255.586667pt;}
.x45{left:261.666655pt;}
.x1e{left:268.226655pt;}
.x20{left:274.786667pt;}
.x13{left:278.626655pt;}
.xa{left:282.466655pt;}
.x28{left:301.826655pt;}
.x1c{left:305.506655pt;}
.xb{left:306.626655pt;}
.x15{left:307.906655pt;}
.xe{left:317.506655pt;}
.x4{left:323.746655pt;}
.x46{left:329.186655pt;}
.x14{left:341.666655pt;}
.x10{left:343.586655pt;}
.x7{left:352.386655pt;}
.x11{left:354.626655pt;}
.x1b{left:364.386667pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x43{left:411.426667pt;}
.x23{left:468.093333pt;}
.x17{left:487.133333pt;}
.x44{left:524.733333pt;}
.x3f{left:534.973322pt;}
.x2d{left:576.893333pt;}
.x3b{left:594.373333pt;}
.x1d{left:612.933322pt;}
.x34{left:623.173333pt;}
}




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