
    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_08524bd190c9247a3e0ae8f1.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_858fcb4cc3b812dfb47f5892.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e748accca72ee3f39f3186a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_abd24058488e7df3f1c4ab2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3dd2e2ab4a6062e823f8a680.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_2d785fdbd47615b59a267e15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_418550fd0dafb944326d0b2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.763672;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_6f515e98bde4b3716f56baa0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7179c57f530fa5ef097bc0cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_cc73aa38f964dcdb529bf813.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_77245c124b006583a9c3fe63.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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:ffd;src:url('chunks/assets/font_f063d8418203dae8fa5b8aeb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_88488bd31ee76a334a668ebf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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:fff;src:url('chunks/assets/font_5081c24770e19d12cac4a343.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_0e58329faf036c45a5d81a7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_167a623120308b4ff8cd4635.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_68b5e9a5dcdfbefbb699c443.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.937988;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);}
.v5{vertical-align:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.342000px;}
.ls12{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.209400px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.264000px;}
.lse{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.468000px;}
.ls14{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.118880px;}
.ws5{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws6{word-spacing:-11.862000px;}
.ws12{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.wse{word-spacing:-8.280000px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._17{margin-left:-7.814400px;}
._13{margin-left:-6.573600px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.544160px;}
._2{margin-left:-2.807280px;}
._1{margin-left:-1.152000px;}
._0{width:1.092000px;}
._5{width:2.486880px;}
._6{width:3.569040px;}
._7{width:4.608240px;}
._b{width:5.849760px;}
._10{width:6.920880px;}
._d{width:7.926480px;}
._c{width:9.545280px;}
._f{width:11.514960px;}
._e{width:12.926880px;}
._8{width:16.327680px;}
._a{width:17.408640px;}
._9{width:18.826800px;}
._12{width:20.013120px;}
._11{width:21.095280px;}
._14{width:22.437120px;}
._15{width:24.166800px;}
._16{width:25.657920px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.yca{bottom:3.285000px;}
.y16{bottom:3.600000px;}
.y4b{bottom:3.960000px;}
.y3{bottom:4.500000px;}
.y2{bottom:7.380000px;}
.yd{bottom:9.540000px;}
.yb{bottom:9.720000px;}
.y49{bottom:10.620000px;}
.y18{bottom:12.420000px;}
.y45{bottom:20.520000px;}
.y4a{bottom:22.320000px;}
.y15{bottom:23.940000px;}
.y48{bottom:25.380000px;}
.ya{bottom:30.240000px;}
.y44{bottom:37.620000px;}
.y4{bottom:39.060000px;}
.y14{bottom:40.320000px;}
.y9{bottom:46.620000px;}
.y43{bottom:54.900000px;}
.y13{bottom:56.880000px;}
.y1{bottom:61.560000px;}
.y12{bottom:69.840000px;}
.y42{bottom:72.180000px;}
.y8{bottom:73.470000px;}
.y11{bottom:88.200000px;}
.y41{bottom:89.460000px;}
.y7{bottom:93.090000px;}
.y5b{bottom:102.816000px;}
.y10{bottom:106.560000px;}
.yd7{bottom:106.596000px;}
.y40{bottom:106.740000px;}
.y9a{bottom:107.676000px;}
.y6{bottom:111.450000px;}
.y5a{bottom:120.096000px;}
.yd6{bottom:121.356000px;}
.y3f{bottom:124.020000px;}
.y99{bottom:124.776000px;}
.yf{bottom:125.640000px;}
.yf8{bottom:135.756000px;}
.y59{bottom:137.376000px;}
.yd5{bottom:139.356000px;}
.y3e{bottom:141.120000px;}
.y98{bottom:142.056000px;}
.y2b{bottom:149.940000px;}
.yf7{bottom:153.030000px;}
.y58{bottom:154.650000px;}
.yd4{bottom:157.350000px;}
.y3d{bottom:158.400000px;}
.y97{bottom:159.330000px;}
.y2a{bottom:165.240000px;}
.yf6{bottom:170.310000px;}
.y57{bottom:171.930000px;}
.y96{bottom:174.090000px;}
.yd3{bottom:175.350000px;}
.y3c{bottom:175.680000px;}
.y29{bottom:182.880000px;}
.yf5{bottom:187.590000px;}
.y56{bottom:189.030000px;}
.y95{bottom:192.090000px;}
.y3b{bottom:192.990000px;}
.yd2{bottom:193.350000px;}
.y28{bottom:200.010000px;}
.yf4{bottom:204.870000px;}
.y55{bottom:206.310000px;}
.y94{bottom:210.090000px;}
.y3a{bottom:210.270000px;}
.yd1{bottom:214.590000px;}
.y27{bottom:217.290000px;}
.yf3{bottom:221.970000px;}
.y54{bottom:223.590000px;}
.y39{bottom:227.550000px;}
.y93{bottom:228.090000px;}
.yd0{bottom:231.870000px;}
.y26{bottom:235.110000px;}
.yf2{bottom:239.250000px;}
.y53{bottom:240.870000px;}
.y38{bottom:244.650000px;}
.y92{bottom:246.090000px;}
.ycf{bottom:248.970000px;}
.y25{bottom:252.570000px;}
.yf1{bottom:256.530000px;}
.y52{bottom:258.150000px;}
.y37{bottom:261.930000px;}
.yce{bottom:266.250000px;}
.y91{bottom:267.330000px;}
.y24{bottom:269.850000px;}
.yf0{bottom:273.810000px;}
.y51{bottom:275.250000px;}
.y36{bottom:279.210000px;}
.ycd{bottom:283.530000px;}
.y90{bottom:284.610000px;}
.y23{bottom:287.310000px;}
.yef{bottom:291.090000px;}
.y50{bottom:292.530000px;}
.y35{bottom:296.490000px;}
.ycc{bottom:300.810000px;}
.y8f{bottom:301.890000px;}
.y22{bottom:304.770000px;}
.yee{bottom:308.370000px;}
.y4f{bottom:309.810000px;}
.y34{bottom:313.770000px;}
.ycb{bottom:315.570000px;}
.y8e{bottom:319.170000px;}
.y21{bottom:322.050000px;}
.yed{bottom:325.470000px;}
.y4e{bottom:327.090000px;}
.y33{bottom:330.870000px;}
.yc9{bottom:333.570000px;}
.y8d{bottom:336.270000px;}
.y20{bottom:339.510000px;}
.yec{bottom:342.795000px;}
.y4d{bottom:344.415000px;}
.y32{bottom:348.150000px;}
.yc8{bottom:351.615000px;}
.y8c{bottom:353.595000px;}
.y1f{bottom:356.790000px;}
.yeb{bottom:360.075000px;}
.y4c{bottom:362.415000px;}
.y31{bottom:365.430000px;}
.yc7{bottom:369.615000px;}
.y8b{bottom:370.875000px;}
.y1e{bottom:374.250000px;}
.y47{bottom:376.635000px;}
.yea{bottom:377.355000px;}
.y30{bottom:382.710000px;}
.yc6{bottom:387.615000px;}
.y8a{bottom:388.155000px;}
.y1d{bottom:391.710000px;}
.ye9{bottom:394.635000px;}
.y2f{bottom:399.990000px;}
.y89{bottom:405.435000px;}
.yc5{bottom:405.615000px;}
.y1c{bottom:409.170000px;}
.ye8{bottom:411.915000px;}
.y19{bottom:413.355000px;}
.y2e{bottom:417.270000px;}
.y88{bottom:422.535000px;}
.yc4{bottom:423.615000px;}
.ye7{bottom:429.015000px;}
.y2d{bottom:434.370000px;}
.y1b{bottom:436.710000px;}
.y87{bottom:439.815000px;}
.yc3{bottom:444.855000px;}
.ye6{bottom:446.295000px;}
.y2c{bottom:451.650000px;}
.y1a{bottom:454.350000px;}
.y86{bottom:457.095000px;}
.yc2{bottom:462.135000px;}
.ye5{bottom:463.575000px;}
.y85{bottom:474.375000px;}
.yc1{bottom:479.415000px;}
.ye4{bottom:480.855000px;}
.y84{bottom:491.655000px;}
.yc0{bottom:496.515000px;}
.ye3{bottom:498.135000px;}
.y83{bottom:508.935000px;}
.ybf{bottom:513.795000px;}
.ye2{bottom:515.235000px;}
.y82{bottom:526.035000px;}
.ybe{bottom:531.075000px;}
.ye1{bottom:532.515000px;}
.y81{bottom:543.315000px;}
.ybd{bottom:545.835000px;}
.ye0{bottom:549.795000px;}
.y80{bottom:561.675000px;}
.ybc{bottom:563.835000px;}
.ydf{bottom:567.075000px;}
.y7f{bottom:580.035000px;}
.ybb{bottom:581.835000px;}
.yde{bottom:584.355000px;}
.y7e{bottom:597.315000px;}
.yba{bottom:599.835000px;}
.ydd{bottom:601.635000px;}
.y7d{bottom:614.625000px;}
.yb9{bottom:617.865000px;}
.ydc{bottom:618.765000px;}
.y7c{bottom:632.805000px;}
.yb8{bottom:635.865000px;}
.ydb{bottom:636.045000px;}
.y7b{bottom:651.165000px;}
.yda{bottom:653.325000px;}
.yb7{bottom:653.865000px;}
.y7a{bottom:669.525000px;}
.yd9{bottom:670.605000px;}
.yb6{bottom:671.865000px;}
.y79{bottom:687.885000px;}
.yb5{bottom:693.105000px;}
.y78{bottom:705.165000px;}
.yb4{bottom:710.385000px;}
.y77{bottom:722.265000px;}
.yb3{bottom:727.665000px;}
.y76{bottom:739.545000px;}
.yb2{bottom:744.765000px;}
.y75{bottom:756.825000px;}
.yb1{bottom:762.045000px;}
.y74{bottom:774.105000px;}
.yb0{bottom:779.325000px;}
.y73{bottom:791.385000px;}
.yaf{bottom:796.605000px;}
.y72{bottom:808.665000px;}
.yae{bottom:811.365000px;}
.y71{bottom:825.765000px;}
.yad{bottom:829.365000px;}
.y70{bottom:843.045000px;}
.yac{bottom:847.365000px;}
.y6f{bottom:860.325000px;}
.yab{bottom:865.365000px;}
.y6e{bottom:877.650000px;}
.y17{bottom:879.090000px;}
.yaa{bottom:883.410000px;}
.y6d{bottom:894.930000px;}
.ya9{bottom:901.410000px;}
.ye{bottom:908.610000px;}
.y6c{bottom:912.030000px;}
.ya8{bottom:919.410000px;}
.y6b{bottom:929.310000px;}
.ya7{bottom:937.410000px;}
.y6a{bottom:946.590000px;}
.ya6{bottom:955.410000px;}
.y69{bottom:963.870000px;}
.ya5{bottom:976.650000px;}
.y68{bottom:981.150000px;}
.ya4{bottom:993.930000px;}
.y67{bottom:998.430000px;}
.ya3{bottom:1011.030000px;}
.y66{bottom:1015.530000px;}
.ya2{bottom:1028.310000px;}
.y65{bottom:1032.810000px;}
.ya1{bottom:1045.590000px;}
.y64{bottom:1050.090000px;}
.yc{bottom:1055.310000px;}
.ya0{bottom:1062.870000px;}
.y63{bottom:1067.370000px;}
.y9f{bottom:1077.630000px;}
.y5{bottom:1080.510000px;}
.yd8{bottom:1084.650000px;}
.y62{bottom:1089.870000px;}
.y9e{bottom:1095.630000px;}
.y61{bottom:1101.930000px;}
.y9d{bottom:1113.630000px;}
.y60{bottom:1119.030000px;}
.y9c{bottom:1131.630000px;}
.y5f{bottom:1136.310000px;}
.y9b{bottom:1149.660000px;}
.y5e{bottom:1153.620000px;}
.y5d{bottom:1170.900000px;}
.y5c{bottom:1188.180000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.h2{height:20.196000px;}
.ha{height:24.840000px;}
.h1e{height:28.115859px;}
.hf{height:28.968750px;}
.h11{height:29.520000px;}
.h7{height:36.180000px;}
.h1a{height:36.720000px;}
.h18{height:38.818125px;}
.h1c{height:42.164648px;}
.h19{height:43.215117px;}
.h10{height:43.453125px;}
.h1f{height:43.506914px;}
.h9{height:44.820000px;}
.h16{height:45.770625px;}
.h14{height:47.980898px;}
.h1b{height:48.088125px;}
.h1d{height:48.995859px;}
.h22{height:49.115859px;}
.h17{height:49.255313px;}
.h8{height:54.000000px;}
.h3{height:55.291992px;}
.h15{height:56.574492px;}
.hd{height:59.439023px;}
.he{height:61.189805px;}
.hc{height:63.180000px;}
.h4{height:67.824844px;}
.h5{height:71.613281px;}
.h12{height:73.722656px;}
.h6{height:121.536000px;}
.hb{height:146.700000px;}
.h13{height:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w10{width:104.940000px;}
.wb{width:106.380000px;}
.wd{width:108.720000px;}
.w16{width:122.040000px;}
.wc{width:127.836000px;}
.w13{width:141.516000px;}
.w19{width:147.816000px;}
.w5{width:151.950000px;}
.w1d{width:159.840000px;}
.w11{width:162.390000px;}
.w1e{width:164.190000px;}
.we{width:174.450000px;}
.w17{width:188.850000px;}
.w1b{width:196.995000px;}
.w1c{width:206.310000px;}
.wa{width:209.235000px;}
.w14{width:219.090000px;}
.w8{width:223.455000px;}
.w1a{width:228.630000px;}
.w18{width:351.795000px;}
.w12{width:367.635000px;}
.w15{width:417.345000px;}
.wf{width:460.725000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xd{left:60.156000px;}
.x1{left:81.000000px;}
.x10{left:84.630000px;}
.x4{left:98.130000px;}
.x14{left:102.275987px;}
.x2a{left:108.035987px;}
.xe{left:138.630000px;}
.xf{left:142.590000px;}
.x20{left:187.949987px;}
.x23{left:204.689987px;}
.x26{left:211.169987px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x15{left:239.609987px;}
.x1d{left:245.729987px;}
.xb{left:253.695000px;}
.x8{left:272.235000px;}
.x27{left:279.435000px;}
.x16{left:291.675000px;}
.x12{left:304.455000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xc{left:365.475000px;}
.x17{left:398.775000px;}
.x24{left:434.235000px;}
.x9{left:439.500000px;}
.x1e{left:450.075000px;}
.x28{left:486.645000px;}
.x21{left:499.785000px;}
.x18{left:527.505000px;}
.x1b{left:543.165000px;}
.xa{left:571.080000px;}
.x25{left:582.765000px;}
.x1f{left:592.305000px;}
.x22{left:622.545000px;}
.x1a{left:636.945000px;}
.x29{left:647.205000px;}
.x1c{left:649.005000px;}
.x3{left:739.050000px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.304000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.186133pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.416000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.661227pt;}
.ws5{word-spacing:-11.184000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws6{word-spacing:-10.544000pt;}
.ws12{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.wse{word-spacing:-7.360000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._17{margin-left:-6.946133pt;}
._13{margin-left:-5.843200pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-4.039253pt;}
._2{margin-left:-2.495360pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.970667pt;}
._5{width:2.210560pt;}
._6{width:3.172480pt;}
._7{width:4.096213pt;}
._b{width:5.199787pt;}
._10{width:6.151893pt;}
._d{width:7.045760pt;}
._c{width:8.484693pt;}
._f{width:10.235520pt;}
._e{width:11.490560pt;}
._8{width:14.513493pt;}
._a{width:15.474347pt;}
._9{width:16.734933pt;}
._12{width:17.789440pt;}
._11{width:18.751360pt;}
._14{width:19.944107pt;}
._15{width:21.481600pt;}
._16{width:22.807040pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.yca{bottom:2.920000pt;}
.y16{bottom:3.200000pt;}
.y4b{bottom:3.520000pt;}
.y3{bottom:4.000000pt;}
.y2{bottom:6.560000pt;}
.yd{bottom:8.480000pt;}
.yb{bottom:8.640000pt;}
.y49{bottom:9.440000pt;}
.y18{bottom:11.040000pt;}
.y45{bottom:18.240000pt;}
.y4a{bottom:19.840000pt;}
.y15{bottom:21.280000pt;}
.y48{bottom:22.560000pt;}
.ya{bottom:26.880000pt;}
.y44{bottom:33.440000pt;}
.y4{bottom:34.720000pt;}
.y14{bottom:35.840000pt;}
.y9{bottom:41.440000pt;}
.y43{bottom:48.800000pt;}
.y13{bottom:50.560000pt;}
.y1{bottom:54.720000pt;}
.y12{bottom:62.080000pt;}
.y42{bottom:64.160000pt;}
.y8{bottom:65.306667pt;}
.y11{bottom:78.400000pt;}
.y41{bottom:79.520000pt;}
.y7{bottom:82.746667pt;}
.y5b{bottom:91.392000pt;}
.y10{bottom:94.720000pt;}
.yd7{bottom:94.752000pt;}
.y40{bottom:94.880000pt;}
.y9a{bottom:95.712000pt;}
.y6{bottom:99.066667pt;}
.y5a{bottom:106.752000pt;}
.yd6{bottom:107.872000pt;}
.y3f{bottom:110.240000pt;}
.y99{bottom:110.912000pt;}
.yf{bottom:111.680000pt;}
.yf8{bottom:120.672000pt;}
.y59{bottom:122.112000pt;}
.yd5{bottom:123.872000pt;}
.y3e{bottom:125.440000pt;}
.y98{bottom:126.272000pt;}
.y2b{bottom:133.280000pt;}
.yf7{bottom:136.026667pt;}
.y58{bottom:137.466667pt;}
.yd4{bottom:139.866667pt;}
.y3d{bottom:140.800000pt;}
.y97{bottom:141.626667pt;}
.y2a{bottom:146.880000pt;}
.yf6{bottom:151.386667pt;}
.y57{bottom:152.826667pt;}
.y96{bottom:154.746667pt;}
.yd3{bottom:155.866667pt;}
.y3c{bottom:156.160000pt;}
.y29{bottom:162.560000pt;}
.yf5{bottom:166.746667pt;}
.y56{bottom:168.026667pt;}
.y95{bottom:170.746667pt;}
.y3b{bottom:171.546667pt;}
.yd2{bottom:171.866667pt;}
.y28{bottom:177.786667pt;}
.yf4{bottom:182.106667pt;}
.y55{bottom:183.386667pt;}
.y94{bottom:186.746667pt;}
.y3a{bottom:186.906667pt;}
.yd1{bottom:190.746667pt;}
.y27{bottom:193.146667pt;}
.yf3{bottom:197.306667pt;}
.y54{bottom:198.746667pt;}
.y39{bottom:202.266667pt;}
.y93{bottom:202.746667pt;}
.yd0{bottom:206.106667pt;}
.y26{bottom:208.986667pt;}
.yf2{bottom:212.666667pt;}
.y53{bottom:214.106667pt;}
.y38{bottom:217.466667pt;}
.y92{bottom:218.746667pt;}
.ycf{bottom:221.306667pt;}
.y25{bottom:224.506667pt;}
.yf1{bottom:228.026667pt;}
.y52{bottom:229.466667pt;}
.y37{bottom:232.826667pt;}
.yce{bottom:236.666667pt;}
.y91{bottom:237.626667pt;}
.y24{bottom:239.866667pt;}
.yf0{bottom:243.386667pt;}
.y51{bottom:244.666667pt;}
.y36{bottom:248.186667pt;}
.ycd{bottom:252.026667pt;}
.y90{bottom:252.986667pt;}
.y23{bottom:255.386667pt;}
.yef{bottom:258.746667pt;}
.y50{bottom:260.026667pt;}
.y35{bottom:263.546667pt;}
.ycc{bottom:267.386667pt;}
.y8f{bottom:268.346667pt;}
.y22{bottom:270.906667pt;}
.yee{bottom:274.106667pt;}
.y4f{bottom:275.386667pt;}
.y34{bottom:278.906667pt;}
.ycb{bottom:280.506667pt;}
.y8e{bottom:283.706667pt;}
.y21{bottom:286.266667pt;}
.yed{bottom:289.306667pt;}
.y4e{bottom:290.746667pt;}
.y33{bottom:294.106667pt;}
.yc9{bottom:296.506667pt;}
.y8d{bottom:298.906667pt;}
.y20{bottom:301.786667pt;}
.yec{bottom:304.706667pt;}
.y4d{bottom:306.146667pt;}
.y32{bottom:309.466667pt;}
.yc8{bottom:312.546667pt;}
.y8c{bottom:314.306667pt;}
.y1f{bottom:317.146667pt;}
.yeb{bottom:320.066667pt;}
.y4c{bottom:322.146667pt;}
.y31{bottom:324.826667pt;}
.yc7{bottom:328.546667pt;}
.y8b{bottom:329.666667pt;}
.y1e{bottom:332.666667pt;}
.y47{bottom:334.786667pt;}
.yea{bottom:335.426667pt;}
.y30{bottom:340.186667pt;}
.yc6{bottom:344.546667pt;}
.y8a{bottom:345.026667pt;}
.y1d{bottom:348.186667pt;}
.ye9{bottom:350.786667pt;}
.y2f{bottom:355.546667pt;}
.y89{bottom:360.386667pt;}
.yc5{bottom:360.546667pt;}
.y1c{bottom:363.706667pt;}
.ye8{bottom:366.146667pt;}
.y19{bottom:367.426667pt;}
.y2e{bottom:370.906667pt;}
.y88{bottom:375.586667pt;}
.yc4{bottom:376.546667pt;}
.ye7{bottom:381.346667pt;}
.y2d{bottom:386.106667pt;}
.y1b{bottom:388.186667pt;}
.y87{bottom:390.946667pt;}
.yc3{bottom:395.426667pt;}
.ye6{bottom:396.706667pt;}
.y2c{bottom:401.466667pt;}
.y1a{bottom:403.866667pt;}
.y86{bottom:406.306667pt;}
.yc2{bottom:410.786667pt;}
.ye5{bottom:412.066667pt;}
.y85{bottom:421.666667pt;}
.yc1{bottom:426.146667pt;}
.ye4{bottom:427.426667pt;}
.y84{bottom:437.026667pt;}
.yc0{bottom:441.346667pt;}
.ye3{bottom:442.786667pt;}
.y83{bottom:452.386667pt;}
.ybf{bottom:456.706667pt;}
.ye2{bottom:457.986667pt;}
.y82{bottom:467.586667pt;}
.ybe{bottom:472.066667pt;}
.ye1{bottom:473.346667pt;}
.y81{bottom:482.946667pt;}
.ybd{bottom:485.186667pt;}
.ye0{bottom:488.706667pt;}
.y80{bottom:499.266667pt;}
.ybc{bottom:501.186667pt;}
.ydf{bottom:504.066667pt;}
.y7f{bottom:515.586667pt;}
.ybb{bottom:517.186667pt;}
.yde{bottom:519.426667pt;}
.y7e{bottom:530.946667pt;}
.yba{bottom:533.186667pt;}
.ydd{bottom:534.786667pt;}
.y7d{bottom:546.333333pt;}
.yb9{bottom:549.213333pt;}
.ydc{bottom:550.013333pt;}
.y7c{bottom:562.493333pt;}
.yb8{bottom:565.213333pt;}
.ydb{bottom:565.373333pt;}
.y7b{bottom:578.813333pt;}
.yda{bottom:580.733333pt;}
.yb7{bottom:581.213333pt;}
.y7a{bottom:595.133333pt;}
.yd9{bottom:596.093333pt;}
.yb6{bottom:597.213333pt;}
.y79{bottom:611.453333pt;}
.yb5{bottom:616.093333pt;}
.y78{bottom:626.813333pt;}
.yb4{bottom:631.453333pt;}
.y77{bottom:642.013333pt;}
.yb3{bottom:646.813333pt;}
.y76{bottom:657.373333pt;}
.yb2{bottom:662.013333pt;}
.y75{bottom:672.733333pt;}
.yb1{bottom:677.373333pt;}
.y74{bottom:688.093333pt;}
.yb0{bottom:692.733333pt;}
.y73{bottom:703.453333pt;}
.yaf{bottom:708.093333pt;}
.y72{bottom:718.813333pt;}
.yae{bottom:721.213333pt;}
.y71{bottom:734.013333pt;}
.yad{bottom:737.213333pt;}
.y70{bottom:749.373333pt;}
.yac{bottom:753.213333pt;}
.y6f{bottom:764.733333pt;}
.yab{bottom:769.213333pt;}
.y6e{bottom:780.133333pt;}
.y17{bottom:781.413333pt;}
.yaa{bottom:785.253333pt;}
.y6d{bottom:795.493333pt;}
.ya9{bottom:801.253333pt;}
.ye{bottom:807.653333pt;}
.y6c{bottom:810.693333pt;}
.ya8{bottom:817.253333pt;}
.y6b{bottom:826.053333pt;}
.ya7{bottom:833.253333pt;}
.y6a{bottom:841.413333pt;}
.ya6{bottom:849.253333pt;}
.y69{bottom:856.773333pt;}
.ya5{bottom:868.133333pt;}
.y68{bottom:872.133333pt;}
.ya4{bottom:883.493333pt;}
.y67{bottom:887.493333pt;}
.ya3{bottom:898.693333pt;}
.y66{bottom:902.693333pt;}
.ya2{bottom:914.053333pt;}
.y65{bottom:918.053333pt;}
.ya1{bottom:929.413333pt;}
.y64{bottom:933.413333pt;}
.yc{bottom:938.053333pt;}
.ya0{bottom:944.773333pt;}
.y63{bottom:948.773333pt;}
.y9f{bottom:957.893333pt;}
.y5{bottom:960.453333pt;}
.yd8{bottom:964.133333pt;}
.y62{bottom:968.773333pt;}
.y9e{bottom:973.893333pt;}
.y61{bottom:979.493333pt;}
.y9d{bottom:989.893333pt;}
.y60{bottom:994.693333pt;}
.y9c{bottom:1005.893333pt;}
.y5f{bottom:1010.053333pt;}
.y9b{bottom:1021.920000pt;}
.y5e{bottom:1025.440000pt;}
.y5d{bottom:1040.800000pt;}
.y5c{bottom:1056.160000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.h2{height:17.952000pt;}
.ha{height:22.080000pt;}
.h1e{height:24.991875pt;}
.hf{height:25.750000pt;}
.h11{height:26.240000pt;}
.h7{height:32.160000pt;}
.h1a{height:32.640000pt;}
.h18{height:34.505000pt;}
.h1c{height:37.479688pt;}
.h19{height:38.413438pt;}
.h10{height:38.625000pt;}
.h1f{height:38.672812pt;}
.h9{height:39.840000pt;}
.h16{height:40.685000pt;}
.h14{height:42.649687pt;}
.h1b{height:42.745000pt;}
.h1d{height:43.551875pt;}
.h22{height:43.658542pt;}
.h17{height:43.782500pt;}
.h8{height:48.000000pt;}
.h3{height:49.148438pt;}
.h15{height:50.288438pt;}
.hd{height:52.834688pt;}
.he{height:54.390938pt;}
.hc{height:56.160000pt;}
.h4{height:60.288750pt;}
.h5{height:63.656250pt;}
.h12{height:65.531250pt;}
.h6{height:108.032000pt;}
.hb{height:130.400000pt;}
.h13{height:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w10{width:93.280000pt;}
.wb{width:94.560000pt;}
.wd{width:96.640000pt;}
.w16{width:108.480000pt;}
.wc{width:113.632000pt;}
.w13{width:125.792000pt;}
.w19{width:131.392000pt;}
.w5{width:135.066667pt;}
.w1d{width:142.080000pt;}
.w11{width:144.346667pt;}
.w1e{width:145.946667pt;}
.we{width:155.066667pt;}
.w17{width:167.866667pt;}
.w1b{width:175.106667pt;}
.w1c{width:183.386667pt;}
.wa{width:185.986667pt;}
.w14{width:194.746667pt;}
.w8{width:198.626667pt;}
.w1a{width:203.226667pt;}
.w18{width:312.706667pt;}
.w12{width:326.786667pt;}
.w15{width:370.973333pt;}
.wf{width:409.533333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xd{left:53.472000pt;}
.x1{left:72.000000pt;}
.x10{left:75.226667pt;}
.x4{left:87.226667pt;}
.x14{left:90.911988pt;}
.x2a{left:96.031988pt;}
.xe{left:123.226667pt;}
.xf{left:126.746667pt;}
.x20{left:167.066655pt;}
.x23{left:181.946655pt;}
.x26{left:187.706655pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x15{left:212.986655pt;}
.x1d{left:218.426655pt;}
.xb{left:225.506667pt;}
.x8{left:241.986667pt;}
.x27{left:248.386667pt;}
.x16{left:259.266667pt;}
.x12{left:270.626667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xc{left:324.866667pt;}
.x17{left:354.466667pt;}
.x24{left:385.986667pt;}
.x9{left:390.666667pt;}
.x1e{left:400.066667pt;}
.x28{left:432.573333pt;}
.x21{left:444.253333pt;}
.x18{left:468.893333pt;}
.x1b{left:482.813333pt;}
.xa{left:507.626667pt;}
.x25{left:518.013333pt;}
.x1f{left:526.493333pt;}
.x22{left:553.373333pt;}
.x1a{left:566.173333pt;}
.x29{left:575.293333pt;}
.x1c{left:576.893333pt;}
.x3{left:656.933333pt;}
}




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