
    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_de1c56e39691e37beff92eb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_212055b1d69cd46da764db81.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_d6a230843f9d3eeb644e2a90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_4ba8cc59b0e505a663f2c1da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_af66f9e240a31b65622c39a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110533;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_f820abea156a56c28c848a41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_64ed481aa7fe1bda8c794467.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.111133;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_349511394495c13f09619007.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_9151f8c7434b16f23b10f329.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_a21748c2625dd02e243b4c93.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_3e5f530dc3bc973fd0d6095c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_6b3eaf54e675d2cf58a58239.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916992;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_6c3de19b009103703db39e3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0c2acc28353394395926a237.woff2')format("woff");}.fff{font-family:fff;line-height:0.963000;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_f973c883c4398fae77df1747.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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;}
.ls11{letter-spacing:-0.260400px;}
.ls16{letter-spacing:-0.172200px;}
.ls7{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.009360px;}
.ls9{letter-spacing:0.010080px;}
.ls15{letter-spacing:0.030240px;}
.lse{letter-spacing:0.056160px;}
.ls1e{letter-spacing:0.072600px;}
.ls1{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.115200px;}
.ls14{letter-spacing:0.147000px;}
.ls12{letter-spacing:0.169800px;}
.ls1d{letter-spacing:0.231600px;}
.ls3{letter-spacing:0.320400px;}
.ls13{letter-spacing:0.322560px;}
.ls8{letter-spacing:0.342600px;}
.lsf{letter-spacing:0.459360px;}
.lsd{letter-spacing:0.459600px;}
.ls4{letter-spacing:0.522000px;}
.ls17{letter-spacing:0.547800px;}
.lsa{letter-spacing:1.318320px;}
.ls2{letter-spacing:2.038320px;}
.lsb{letter-spacing:4.918320px;}
.ls5{letter-spacing:12.118320px;}
.ls19{letter-spacing:12.838320px;}
.lsc{letter-spacing:13.558320px;}
.ls1c{letter-spacing:46.678320px;}
.ls18{letter-spacing:61.866720px;}
.ls1b{letter-spacing:85.018320px;}
.ls1a{letter-spacing:223.798320px;}
.ls6{letter-spacing:849.240000px;}
.ls10{letter-spacing:849.360000px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-17.884800px;}
.ws5{word-spacing:-16.135200px;}
.ws4{word-spacing:-16.096320px;}
.wse{word-spacing:-15.069480px;}
.ws7{word-spacing:-14.842080px;}
.ws11{word-spacing:-14.753280px;}
.wsb{word-spacing:-14.691480px;}
.wsc{word-spacing:-14.668680px;}
.ws10{word-spacing:-14.594280px;}
.ws6{word-spacing:-14.531760px;}
.ws2{word-spacing:-14.521680px;}
.wsf{word-spacing:-14.349480px;}
.ws9{word-spacing:-12.770160px;}
.ws1{word-spacing:-12.653160px;}
.ws0{word-spacing:-12.310560px;}
.wsa{word-spacing:-12.050160px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-3.346560px;}
._4{margin-left:-1.667520px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._9{width:3.366960px;}
._8{width:4.541760px;}
._7{width:5.617440px;}
._5{width:6.752880px;}
._6{width:7.768800px;}
._a{width:9.149760px;}
._b{width:10.199520px;}
._d{width:11.342640px;}
._c{width:13.087440px;}
._10{width:16.194960px;}
._22{width:17.210880px;}
._1a{width:18.286560px;}
._1b{width:19.302480px;}
._18{width:21.274560px;}
._15{width:22.947840px;}
._2a{width:24.083280px;}
._16{width:25.696800px;}
._f{width:27.310320px;}
._1f{width:28.676160px;}
._12{width:30.119040px;}
._1d{width:31.134960px;}
._1c{width:34.421760px;}
._14{width:36.035280px;}
._17{width:37.409760px;}
._1e{width:38.963520px;}
._21{width:43.445520px;}
._19{width:45.055440px;}
._27{width:46.134720px;}
._e{width:49.361760px;}
._28{width:53.784000px;}
._23{width:55.038960px;}
._2d{width:61.973520px;}
._24{width:84.261600px;}
._2f{width:86.584320px;}
._2c{width:90.237600px;}
._2b{width:91.373040px;}
._26{width:95.317200px;}
._13{width:103.922640px;}
._29{width:171.272160px;}
._2e{width:224.599680px;}
._1{width:294.824880px;}
._2{width:505.489440px;}
._25{width:508.369440px;}
._20{width:510.529440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y95{bottom:4.320000px;}
.y97{bottom:4.500000px;}
.y68{bottom:5.040000px;}
.y63{bottom:5.220000px;}
.y6{bottom:10.260000px;}
.y93{bottom:14.220000px;}
.ya9{bottom:14.400000px;}
.y6b{bottom:15.480000px;}
.y6e{bottom:15.525000px;}
.y61{bottom:15.660000px;}
.yb5{bottom:24.120000px;}
.y94{bottom:24.300000px;}
.y6a{bottom:25.920000px;}
.y70{bottom:25.965000px;}
.y62{bottom:26.100000px;}
.ya8{bottom:34.200000px;}
.y73{bottom:36.360000px;}
.y6d{bottom:36.405000px;}
.y65{bottom:36.540000px;}
.yaa{bottom:44.100000px;}
.y66{bottom:46.800000px;}
.y6f{bottom:46.845000px;}
.yb1{bottom:54.000000px;}
.y2{bottom:57.420000px;}
.yb4{bottom:63.900000px;}
.yb9{bottom:64.080000px;}
.yad{bottom:64.110000px;}
.yb3{bottom:73.800000px;}
.ybb{bottom:73.980000px;}
.yb0{bottom:74.010000px;}
.yb6{bottom:83.880000px;}
.yac{bottom:83.910000px;}
.yc1{bottom:99.900000px;}
.ydc{bottom:102.960000px;}
.yaf{bottom:103.710000px;}
.y5c{bottom:107.820000px;}
.yfc{bottom:118.980000px;}
.yc0{bottom:119.880000px;}
.ydb{bottom:122.940000px;}
.yae{bottom:123.690000px;}
.y5b{bottom:127.800000px;}
.y37{bottom:128.340000px;}
.y36{bottom:128.520000px;}
.y91{bottom:133.560000px;}
.yfb{bottom:138.816000px;}
.ybf{bottom:139.716000px;}
.yda{bottom:142.776000px;}
.y5a{bottom:147.636000px;}
.y35{bottom:148.356000px;}
.y90{bottom:154.470000px;}
.yfa{bottom:158.610000px;}
.ybe{bottom:159.690000px;}
.yd9{bottom:162.570000px;}
.y59{bottom:167.430000px;}
.y34{bottom:168.330000px;}
.y8f{bottom:175.350000px;}
.yf9{bottom:178.590000px;}
.ybd{bottom:179.490000px;}
.yd8{bottom:182.550000px;}
.y58{bottom:187.410000px;}
.y33{bottom:188.130000px;}
.y8e{bottom:196.230000px;}
.yf8{bottom:198.390000px;}
.ybc{bottom:199.470000px;}
.yd7{bottom:202.350000px;}
.y57{bottom:207.210000px;}
.y32{bottom:207.930000px;}
.yba{bottom:215.670000px;}
.y8d{bottom:217.110000px;}
.yf7{bottom:218.370000px;}
.yd6{bottom:222.330000px;}
.y56{bottom:227.190000px;}
.y31{bottom:227.910000px;}
.y8c{bottom:237.990000px;}
.yf6{bottom:238.170000px;}
.yd5{bottom:242.130000px;}
.y55{bottom:246.990000px;}
.y30{bottom:247.710000px;}
.yf5{bottom:258.150000px;}
.y8b{bottom:258.870000px;}
.yd4{bottom:261.930000px;}
.y54{bottom:266.970000px;}
.y2f{bottom:267.690000px;}
.yf4{bottom:277.950000px;}
.y8a{bottom:279.750000px;}
.yd3{bottom:281.910000px;}
.y53{bottom:286.770000px;}
.y2e{bottom:287.490000px;}
.yf3{bottom:297.750000px;}
.y89{bottom:300.630000px;}
.yd2{bottom:301.710000px;}
.y52{bottom:306.570000px;}
.y2d{bottom:307.290000px;}
.yb8{bottom:315.750000px;}
.yf2{bottom:317.730000px;}
.y88{bottom:321.510000px;}
.yd1{bottom:321.690000px;}
.y51{bottom:326.550000px;}
.y2c{bottom:327.270000px;}
.yf1{bottom:337.530000px;}
.yd0{bottom:341.490000px;}
.y87{bottom:342.390000px;}
.y50{bottom:346.350000px;}
.y2b{bottom:347.070000px;}
.yf0{bottom:357.510000px;}
.ycf{bottom:361.470000px;}
.y86{bottom:363.270000px;}
.y4f{bottom:366.330000px;}
.y2a{bottom:367.050000px;}
.yef{bottom:377.310000px;}
.yce{bottom:381.270000px;}
.y85{bottom:383.970000px;}
.y4e{bottom:386.130000px;}
.y29{bottom:386.850000px;}
.yb7{bottom:396.075000px;}
.yee{bottom:397.155000px;}
.ycd{bottom:401.115000px;}
.y84{bottom:404.895000px;}
.y4d{bottom:405.975000px;}
.y28{bottom:406.875000px;}
.yed{bottom:418.215000px;}
.ycc{bottom:421.095000px;}
.y83{bottom:425.775000px;}
.y4c{bottom:425.955000px;}
.y27{bottom:426.675000px;}
.ycb{bottom:440.895000px;}
.yec{bottom:444.135000px;}
.y4b{bottom:445.755000px;}
.y26{bottom:446.475000px;}
.y82{bottom:446.655000px;}
.yca{bottom:460.875000px;}
.y4a{bottom:465.735000px;}
.y25{bottom:466.455000px;}
.y81{bottom:467.535000px;}
.yeb{bottom:470.055000px;}
.yb2{bottom:476.355000px;}
.yc9{bottom:480.675000px;}
.y49{bottom:481.215000px;}
.y24{bottom:486.255000px;}
.y80{bottom:488.415000px;}
.yea{bottom:495.075000px;}
.yc8{bottom:500.475000px;}
.y23{bottom:506.235000px;}
.y7f{bottom:509.295000px;}
.ye9{bottom:516.855000px;}
.yc7{bottom:520.455000px;}
.y22{bottom:526.035000px;}
.y7e{bottom:530.175000px;}
.ye8{bottom:538.635000px;}
.yc6{bottom:540.255000px;}
.y21{bottom:545.835000px;}
.y7d{bottom:551.055000px;}
.yc5{bottom:560.235000px;}
.ye7{bottom:560.595000px;}
.y20{bottom:565.815000px;}
.y7c{bottom:571.935000px;}
.yab{bottom:576.435000px;}
.yc4{bottom:580.035000px;}
.ye6{bottom:582.375000px;}
.y1f{bottom:585.615000px;}
.y7b{bottom:592.815000px;}
.yc3{bottom:600.015000px;}
.ye5{bottom:604.335000px;}
.y1e{bottom:605.595000px;}
.y7a{bottom:613.695000px;}
.yc2{bottom:615.495000px;}
.y1d{bottom:625.395000px;}
.ye4{bottom:625.755000px;}
.y79{bottom:634.575000px;}
.y1c{bottom:645.405000px;}
.ye3{bottom:645.765000px;}
.y78{bottom:655.485000px;}
.y1b{bottom:665.205000px;}
.ye2{bottom:665.565000px;}
.y77{bottom:676.365000px;}
.y1a{bottom:685.005000px;}
.ye1{bottom:685.545000px;}
.y76{bottom:697.245000px;}
.y19{bottom:704.985000px;}
.ye0{bottom:705.345000px;}
.ya7{bottom:716.325000px;}
.y75{bottom:717.945000px;}
.y18{bottom:724.785000px;}
.ydf{bottom:725.145000px;}
.y74{bottom:738.825000px;}
.y17{bottom:744.765000px;}
.yde{bottom:745.125000px;}
.y72{bottom:755.385000px;}
.y16{bottom:764.565000px;}
.ydd{bottom:764.925000px;}
.ya6{bottom:781.125000px;}
.y15{bottom:784.365000px;}
.y48{bottom:784.905000px;}
.ya5{bottom:800.925000px;}
.y14{bottom:804.345000px;}
.y47{bottom:804.705000px;}
.y71{bottom:818.745000px;}
.ya4{bottom:820.905000px;}
.y13{bottom:824.145000px;}
.y46{bottom:824.505000px;}
.ya3{bottom:840.705000px;}
.y12{bottom:844.125000px;}
.y45{bottom:844.485000px;}
.ya2{bottom:860.505000px;}
.y11{bottom:863.925000px;}
.y44{bottom:864.285000px;}
.ya1{bottom:880.485000px;}
.y6c{bottom:882.105000px;}
.y10{bottom:883.905000px;}
.y43{bottom:884.265000px;}
.ya0{bottom:900.330000px;}
.yf{bottom:903.750000px;}
.y42{bottom:904.110000px;}
.y9f{bottom:920.310000px;}
.ye{bottom:923.550000px;}
.y41{bottom:924.090000px;}
.y9e{bottom:940.110000px;}
.y40{bottom:943.890000px;}
.yd{bottom:944.610000px;}
.y69{bottom:945.510000px;}
.y9d{bottom:960.090000px;}
.y3f{bottom:963.690000px;}
.yc{bottom:970.530000px;}
.y9c{bottom:979.890000px;}
.y3e{bottom:983.670000px;}
.y67{bottom:987.990000px;}
.yb{bottom:996.270000px;}
.y9b{bottom:999.690000px;}
.y3d{bottom:1003.470000px;}
.y64{bottom:1009.590000px;}
.y9a{bottom:1019.670000px;}
.ya{bottom:1021.470000px;}
.y3c{bottom:1023.450000px;}
.y99{bottom:1035.870000px;}
.y9{bottom:1043.250000px;}
.y98{bottom:1056.570000px;}
.y3b{bottom:1063.050000px;}
.y8{bottom:1065.030000px;}
.y60{bottom:1072.950000px;}
.y96{bottom:1077.090000px;}
.y3a{bottom:1083.030000px;}
.y7{bottom:1086.630000px;}
.y92{bottom:1097.790000px;}
.y39{bottom:1102.830000px;}
.y5{bottom:1106.610000px;}
.y5f{bottom:1120.650000px;}
.y38{bottom:1122.810000px;}
.y5e{bottom:1141.530000px;}
.y4{bottom:1142.610000px;}
.y5d{bottom:1162.440000px;}
.y3{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.h12{height:19.800000px;}
.h11{height:19.980000px;}
.hd{height:20.700000px;}
.h5{height:31.680000px;}
.h10{height:39.780000px;}
.he{height:41.580000px;}
.hb{height:41.760000px;}
.h9{height:45.537120px;}
.h4{height:52.656528px;}
.ha{height:53.517072px;}
.h6{height:58.366272px;}
.h7{height:59.320128px;}
.h2{height:59.439023px;}
.h13{height:59.580000px;}
.hc{height:62.460000px;}
.hf{height:62.496000px;}
.h3{height:65.884219px;}
.h8{height:69.636672px;}
.h16{height:79.380000px;}
.h17{height:79.596000px;}
.h15{height:99.360000px;}
.h14{height:139.176000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.wa{width:137.016000px;}
.wb{width:185.970000px;}
.w4{width:190.290000px;}
.wc{width:205.950000px;}
.w5{width:211.575000px;}
.w6{width:243.750000px;}
.w9{width:253.830000px;}
.w8{width:254.370000px;}
.w7{width:264.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x42{left:9.396000px;}
.x3f{left:10.440000px;}
.x1b{left:11.700000px;}
.x20{left:12.816000px;}
.x25{left:14.580000px;}
.x1c{left:16.380000px;}
.x2e{left:18.360000px;}
.x41{left:19.656000px;}
.x19{left:20.880000px;}
.x3d{left:22.356000px;}
.x16{left:23.400000px;}
.x23{left:24.660000px;}
.x2b{left:25.776000px;}
.x45{left:27.900000px;}
.x28{left:28.980000px;}
.x29{left:30.240000px;}
.x43{left:32.796000px;}
.x1a{left:37.440000px;}
.x27{left:40.356000px;}
.x4{left:42.300000px;}
.x14{left:43.956000px;}
.x1f{left:45.900000px;}
.x37{left:48.960000px;}
.x3e{left:50.076000px;}
.x3b{left:51.705000px;}
.x17{left:57.600000px;}
.x31{left:60.480000px;}
.x2d{left:63.000000px;}
.x39{left:65.550000px;}
.x24{left:68.220000px;}
.x1e{left:70.200000px;}
.x22{left:72.570000px;}
.x2a{left:75.420000px;}
.x34{left:78.150000px;}
.x3c{left:79.590000px;}
.x44{left:81.225000px;}
.x2c{left:82.650000px;}
.x1{left:84.959987px;}
.x40{left:88.950000px;}
.x21{left:91.830000px;}
.x2f{left:99.180000px;}
.x9{left:100.295987px;}
.xc{left:106.235987px;}
.x1d{left:108.360000px;}
.x33{left:113.040000px;}
.x35{left:115.200000px;}
.x26{left:116.325000px;}
.x30{left:128.375987px;}
.x8{left:131.255987px;}
.x4c{left:165.269987px;}
.xa{left:178.409987px;}
.x10{left:200.009987px;}
.x12{left:204.509987px;}
.x48{left:207.389987px;}
.x13{left:212.069987px;}
.x4b{left:214.589987px;}
.x36{left:223.590000px;}
.xb{left:228.629987px;}
.x4d{left:253.109987px;}
.x15{left:298.155000px;}
.x47{left:309.494987px;}
.x3{left:326.235000px;}
.x7{left:366.194987px;}
.x5{left:376.635000px;}
.x4a{left:379.514987px;}
.x38{left:410.475000px;}
.x2{left:446.474987px;}
.xd{left:473.144987px;}
.xe{left:494.384987px;}
.x18{left:542.805000px;}
.x32{left:553.425000px;}
.x49{left:596.624987px;}
.x3a{left:617.145000px;}
.x11{left:737.249987px;}
.x46{left:792.149987px;}
.xf{left:804.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.231467pt;}
.ls16{letter-spacing:-0.153067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.008320pt;}
.ls9{letter-spacing:0.008960pt;}
.ls15{letter-spacing:0.026880pt;}
.lse{letter-spacing:0.049920pt;}
.ls1e{letter-spacing:0.064533pt;}
.ls1{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.102400pt;}
.ls14{letter-spacing:0.130667pt;}
.ls12{letter-spacing:0.150933pt;}
.ls1d{letter-spacing:0.205867pt;}
.ls3{letter-spacing:0.284800pt;}
.ls13{letter-spacing:0.286720pt;}
.ls8{letter-spacing:0.304533pt;}
.lsf{letter-spacing:0.408320pt;}
.lsd{letter-spacing:0.408533pt;}
.ls4{letter-spacing:0.464000pt;}
.ls17{letter-spacing:0.486933pt;}
.lsa{letter-spacing:1.171840pt;}
.ls2{letter-spacing:1.811840pt;}
.lsb{letter-spacing:4.371840pt;}
.ls5{letter-spacing:10.771840pt;}
.ls19{letter-spacing:11.411840pt;}
.lsc{letter-spacing:12.051840pt;}
.ls1c{letter-spacing:41.491840pt;}
.ls18{letter-spacing:54.992640pt;}
.ls1b{letter-spacing:75.571840pt;}
.ls1a{letter-spacing:198.931840pt;}
.ls6{letter-spacing:754.880000pt;}
.ls10{letter-spacing:754.986667pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-15.897600pt;}
.ws5{word-spacing:-14.342400pt;}
.ws4{word-spacing:-14.307840pt;}
.wse{word-spacing:-13.395093pt;}
.ws7{word-spacing:-13.192960pt;}
.ws11{word-spacing:-13.114027pt;}
.wsb{word-spacing:-13.059093pt;}
.wsc{word-spacing:-13.038827pt;}
.ws10{word-spacing:-12.972693pt;}
.ws6{word-spacing:-12.917120pt;}
.ws2{word-spacing:-12.908160pt;}
.wsf{word-spacing:-12.755093pt;}
.ws9{word-spacing:-11.351253pt;}
.ws1{word-spacing:-11.247253pt;}
.ws0{word-spacing:-10.942720pt;}
.wsa{word-spacing:-10.711253pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-2.974720pt;}
._4{margin-left:-1.482240pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._9{width:2.992853pt;}
._8{width:4.037120pt;}
._7{width:4.993280pt;}
._5{width:6.002560pt;}
._6{width:6.905600pt;}
._a{width:8.133120pt;}
._b{width:9.066240pt;}
._d{width:10.082347pt;}
._c{width:11.633280pt;}
._10{width:14.395520pt;}
._22{width:15.298560pt;}
._1a{width:16.254720pt;}
._1b{width:17.157760pt;}
._18{width:18.910720pt;}
._15{width:20.398080pt;}
._2a{width:21.407360pt;}
._16{width:22.841600pt;}
._f{width:24.275840pt;}
._1f{width:25.489920pt;}
._12{width:26.772480pt;}
._1d{width:27.675520pt;}
._1c{width:30.597120pt;}
._14{width:32.031360pt;}
._17{width:33.253120pt;}
._1e{width:34.634240pt;}
._21{width:38.618240pt;}
._19{width:40.049280pt;}
._27{width:41.008640pt;}
._e{width:43.877120pt;}
._28{width:47.808000pt;}
._23{width:48.923520pt;}
._2d{width:55.087573pt;}
._24{width:74.899200pt;}
._2f{width:76.963840pt;}
._2c{width:80.211200pt;}
._2b{width:81.220480pt;}
._26{width:84.726400pt;}
._13{width:92.375680pt;}
._29{width:152.241920pt;}
._2e{width:199.644160pt;}
._1{width:262.066560pt;}
._2{width:449.323947pt;}
._25{width:451.883947pt;}
._20{width:453.803947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.840000pt;}
.y97{bottom:4.000000pt;}
.y68{bottom:4.480000pt;}
.y63{bottom:4.640000pt;}
.y6{bottom:9.120000pt;}
.y93{bottom:12.640000pt;}
.ya9{bottom:12.800000pt;}
.y6b{bottom:13.760000pt;}
.y6e{bottom:13.800000pt;}
.y61{bottom:13.920000pt;}
.yb5{bottom:21.440000pt;}
.y94{bottom:21.600000pt;}
.y6a{bottom:23.040000pt;}
.y70{bottom:23.080000pt;}
.y62{bottom:23.200000pt;}
.ya8{bottom:30.400000pt;}
.y73{bottom:32.320000pt;}
.y6d{bottom:32.360000pt;}
.y65{bottom:32.480000pt;}
.yaa{bottom:39.200000pt;}
.y66{bottom:41.600000pt;}
.y6f{bottom:41.640000pt;}
.yb1{bottom:48.000000pt;}
.y2{bottom:51.040000pt;}
.yb4{bottom:56.800000pt;}
.yb9{bottom:56.960000pt;}
.yad{bottom:56.986667pt;}
.yb3{bottom:65.600000pt;}
.ybb{bottom:65.760000pt;}
.yb0{bottom:65.786667pt;}
.yb6{bottom:74.560000pt;}
.yac{bottom:74.586667pt;}
.yc1{bottom:88.800000pt;}
.ydc{bottom:91.520000pt;}
.yaf{bottom:92.186667pt;}
.y5c{bottom:95.840000pt;}
.yfc{bottom:105.760000pt;}
.yc0{bottom:106.560000pt;}
.ydb{bottom:109.280000pt;}
.yae{bottom:109.946667pt;}
.y5b{bottom:113.600000pt;}
.y37{bottom:114.080000pt;}
.y36{bottom:114.240000pt;}
.y91{bottom:118.720000pt;}
.yfb{bottom:123.392000pt;}
.ybf{bottom:124.192000pt;}
.yda{bottom:126.912000pt;}
.y5a{bottom:131.232000pt;}
.y35{bottom:131.872000pt;}
.y90{bottom:137.306667pt;}
.yfa{bottom:140.986667pt;}
.ybe{bottom:141.946667pt;}
.yd9{bottom:144.506667pt;}
.y59{bottom:148.826667pt;}
.y34{bottom:149.626667pt;}
.y8f{bottom:155.866667pt;}
.yf9{bottom:158.746667pt;}
.ybd{bottom:159.546667pt;}
.yd8{bottom:162.266667pt;}
.y58{bottom:166.586667pt;}
.y33{bottom:167.226667pt;}
.y8e{bottom:174.426667pt;}
.yf8{bottom:176.346667pt;}
.ybc{bottom:177.306667pt;}
.yd7{bottom:179.866667pt;}
.y57{bottom:184.186667pt;}
.y32{bottom:184.826667pt;}
.yba{bottom:191.706667pt;}
.y8d{bottom:192.986667pt;}
.yf7{bottom:194.106667pt;}
.yd6{bottom:197.626667pt;}
.y56{bottom:201.946667pt;}
.y31{bottom:202.586667pt;}
.y8c{bottom:211.546667pt;}
.yf6{bottom:211.706667pt;}
.yd5{bottom:215.226667pt;}
.y55{bottom:219.546667pt;}
.y30{bottom:220.186667pt;}
.yf5{bottom:229.466667pt;}
.y8b{bottom:230.106667pt;}
.yd4{bottom:232.826667pt;}
.y54{bottom:237.306667pt;}
.y2f{bottom:237.946667pt;}
.yf4{bottom:247.066667pt;}
.y8a{bottom:248.666667pt;}
.yd3{bottom:250.586667pt;}
.y53{bottom:254.906667pt;}
.y2e{bottom:255.546667pt;}
.yf3{bottom:264.666667pt;}
.y89{bottom:267.226667pt;}
.yd2{bottom:268.186667pt;}
.y52{bottom:272.506667pt;}
.y2d{bottom:273.146667pt;}
.yb8{bottom:280.666667pt;}
.yf2{bottom:282.426667pt;}
.y88{bottom:285.786667pt;}
.yd1{bottom:285.946667pt;}
.y51{bottom:290.266667pt;}
.y2c{bottom:290.906667pt;}
.yf1{bottom:300.026667pt;}
.yd0{bottom:303.546667pt;}
.y87{bottom:304.346667pt;}
.y50{bottom:307.866667pt;}
.y2b{bottom:308.506667pt;}
.yf0{bottom:317.786667pt;}
.ycf{bottom:321.306667pt;}
.y86{bottom:322.906667pt;}
.y4f{bottom:325.626667pt;}
.y2a{bottom:326.266667pt;}
.yef{bottom:335.386667pt;}
.yce{bottom:338.906667pt;}
.y85{bottom:341.306667pt;}
.y4e{bottom:343.226667pt;}
.y29{bottom:343.866667pt;}
.yb7{bottom:352.066667pt;}
.yee{bottom:353.026667pt;}
.ycd{bottom:356.546667pt;}
.y84{bottom:359.906667pt;}
.y4d{bottom:360.866667pt;}
.y28{bottom:361.666667pt;}
.yed{bottom:371.746667pt;}
.ycc{bottom:374.306667pt;}
.y83{bottom:378.466667pt;}
.y4c{bottom:378.626667pt;}
.y27{bottom:379.266667pt;}
.ycb{bottom:391.906667pt;}
.yec{bottom:394.786667pt;}
.y4b{bottom:396.226667pt;}
.y26{bottom:396.866667pt;}
.y82{bottom:397.026667pt;}
.yca{bottom:409.666667pt;}
.y4a{bottom:413.986667pt;}
.y25{bottom:414.626667pt;}
.y81{bottom:415.586667pt;}
.yeb{bottom:417.826667pt;}
.yb2{bottom:423.426667pt;}
.yc9{bottom:427.266667pt;}
.y49{bottom:427.746667pt;}
.y24{bottom:432.226667pt;}
.y80{bottom:434.146667pt;}
.yea{bottom:440.066667pt;}
.yc8{bottom:444.866667pt;}
.y23{bottom:449.986667pt;}
.y7f{bottom:452.706667pt;}
.ye9{bottom:459.426667pt;}
.yc7{bottom:462.626667pt;}
.y22{bottom:467.586667pt;}
.y7e{bottom:471.266667pt;}
.ye8{bottom:478.786667pt;}
.yc6{bottom:480.226667pt;}
.y21{bottom:485.186667pt;}
.y7d{bottom:489.826667pt;}
.yc5{bottom:497.986667pt;}
.ye7{bottom:498.306667pt;}
.y20{bottom:502.946667pt;}
.y7c{bottom:508.386667pt;}
.yab{bottom:512.386667pt;}
.yc4{bottom:515.586667pt;}
.ye6{bottom:517.666667pt;}
.y1f{bottom:520.546667pt;}
.y7b{bottom:526.946667pt;}
.yc3{bottom:533.346667pt;}
.ye5{bottom:537.186667pt;}
.y1e{bottom:538.306667pt;}
.y7a{bottom:545.506667pt;}
.yc2{bottom:547.106667pt;}
.y1d{bottom:555.906667pt;}
.ye4{bottom:556.226667pt;}
.y79{bottom:564.066667pt;}
.y1c{bottom:573.693333pt;}
.ye3{bottom:574.013333pt;}
.y78{bottom:582.653333pt;}
.y1b{bottom:591.293333pt;}
.ye2{bottom:591.613333pt;}
.y77{bottom:601.213333pt;}
.y1a{bottom:608.893333pt;}
.ye1{bottom:609.373333pt;}
.y76{bottom:619.773333pt;}
.y19{bottom:626.653333pt;}
.ye0{bottom:626.973333pt;}
.ya7{bottom:636.733333pt;}
.y75{bottom:638.173333pt;}
.y18{bottom:644.253333pt;}
.ydf{bottom:644.573333pt;}
.y74{bottom:656.733333pt;}
.y17{bottom:662.013333pt;}
.yde{bottom:662.333333pt;}
.y72{bottom:671.453333pt;}
.y16{bottom:679.613333pt;}
.ydd{bottom:679.933333pt;}
.ya6{bottom:694.333333pt;}
.y15{bottom:697.213333pt;}
.y48{bottom:697.693333pt;}
.ya5{bottom:711.933333pt;}
.y14{bottom:714.973333pt;}
.y47{bottom:715.293333pt;}
.y71{bottom:727.773333pt;}
.ya4{bottom:729.693333pt;}
.y13{bottom:732.573333pt;}
.y46{bottom:732.893333pt;}
.ya3{bottom:747.293333pt;}
.y12{bottom:750.333333pt;}
.y45{bottom:750.653333pt;}
.ya2{bottom:764.893333pt;}
.y11{bottom:767.933333pt;}
.y44{bottom:768.253333pt;}
.ya1{bottom:782.653333pt;}
.y6c{bottom:784.093333pt;}
.y10{bottom:785.693333pt;}
.y43{bottom:786.013333pt;}
.ya0{bottom:800.293333pt;}
.yf{bottom:803.333333pt;}
.y42{bottom:803.653333pt;}
.y9f{bottom:818.053333pt;}
.ye{bottom:820.933333pt;}
.y41{bottom:821.413333pt;}
.y9e{bottom:835.653333pt;}
.y40{bottom:839.013333pt;}
.yd{bottom:839.653333pt;}
.y69{bottom:840.453333pt;}
.y9d{bottom:853.413333pt;}
.y3f{bottom:856.613333pt;}
.yc{bottom:862.693333pt;}
.y9c{bottom:871.013333pt;}
.y3e{bottom:874.373333pt;}
.y67{bottom:878.213333pt;}
.yb{bottom:885.573333pt;}
.y9b{bottom:888.613333pt;}
.y3d{bottom:891.973333pt;}
.y64{bottom:897.413333pt;}
.y9a{bottom:906.373333pt;}
.ya{bottom:907.973333pt;}
.y3c{bottom:909.733333pt;}
.y99{bottom:920.773333pt;}
.y9{bottom:927.333333pt;}
.y98{bottom:939.173333pt;}
.y3b{bottom:944.933333pt;}
.y8{bottom:946.693333pt;}
.y60{bottom:953.733333pt;}
.y96{bottom:957.413333pt;}
.y3a{bottom:962.693333pt;}
.y7{bottom:965.893333pt;}
.y92{bottom:975.813333pt;}
.y39{bottom:980.293333pt;}
.y5{bottom:983.653333pt;}
.y5f{bottom:996.133333pt;}
.y38{bottom:998.053333pt;}
.y5e{bottom:1014.693333pt;}
.y4{bottom:1015.653333pt;}
.y5d{bottom:1033.280000pt;}
.y3{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.h12{height:17.600000pt;}
.h11{height:17.760000pt;}
.hd{height:18.400000pt;}
.h5{height:28.160000pt;}
.h10{height:35.360000pt;}
.he{height:36.960000pt;}
.hb{height:37.120000pt;}
.h9{height:40.477440pt;}
.h4{height:46.805803pt;}
.ha{height:47.570731pt;}
.h6{height:51.881131pt;}
.h7{height:52.729003pt;}
.h2{height:52.834688pt;}
.h13{height:52.960000pt;}
.hc{height:55.520000pt;}
.hf{height:55.552000pt;}
.h3{height:58.563750pt;}
.h8{height:61.899264pt;}
.h16{height:70.560000pt;}
.h17{height:70.752000pt;}
.h15{height:88.320000pt;}
.h14{height:123.712000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.wa{width:121.792000pt;}
.wb{width:165.306667pt;}
.w4{width:169.146667pt;}
.wc{width:183.066667pt;}
.w5{width:188.066667pt;}
.w6{width:216.666667pt;}
.w9{width:225.626667pt;}
.w8{width:226.106667pt;}
.w7{width:235.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x42{left:8.352000pt;}
.x3f{left:9.280000pt;}
.x1b{left:10.400000pt;}
.x20{left:11.392000pt;}
.x25{left:12.960000pt;}
.x1c{left:14.560000pt;}
.x2e{left:16.320000pt;}
.x41{left:17.472000pt;}
.x19{left:18.560000pt;}
.x3d{left:19.872000pt;}
.x16{left:20.800000pt;}
.x23{left:21.920000pt;}
.x2b{left:22.912000pt;}
.x45{left:24.800000pt;}
.x28{left:25.760000pt;}
.x29{left:26.880000pt;}
.x43{left:29.152000pt;}
.x1a{left:33.280000pt;}
.x27{left:35.872000pt;}
.x4{left:37.600000pt;}
.x14{left:39.072000pt;}
.x1f{left:40.800000pt;}
.x37{left:43.520000pt;}
.x3e{left:44.512000pt;}
.x3b{left:45.960000pt;}
.x17{left:51.200000pt;}
.x31{left:53.760000pt;}
.x2d{left:56.000000pt;}
.x39{left:58.266667pt;}
.x24{left:60.640000pt;}
.x1e{left:62.400000pt;}
.x22{left:64.506667pt;}
.x2a{left:67.040000pt;}
.x34{left:69.466667pt;}
.x3c{left:70.746667pt;}
.x44{left:72.200000pt;}
.x2c{left:73.466667pt;}
.x1{left:75.519988pt;}
.x40{left:79.066667pt;}
.x21{left:81.626667pt;}
.x2f{left:88.160000pt;}
.x9{left:89.151988pt;}
.xc{left:94.431988pt;}
.x1d{left:96.320000pt;}
.x33{left:100.480000pt;}
.x35{left:102.400000pt;}
.x26{left:103.400000pt;}
.x30{left:114.111988pt;}
.x8{left:116.671988pt;}
.x4c{left:146.906655pt;}
.xa{left:158.586655pt;}
.x10{left:177.786655pt;}
.x12{left:181.786655pt;}
.x48{left:184.346655pt;}
.x13{left:188.506655pt;}
.x4b{left:190.746655pt;}
.x36{left:198.746667pt;}
.xb{left:203.226655pt;}
.x4d{left:224.986655pt;}
.x15{left:265.026667pt;}
.x47{left:275.106655pt;}
.x3{left:289.986667pt;}
.x7{left:325.506655pt;}
.x5{left:334.786667pt;}
.x4a{left:337.346655pt;}
.x38{left:364.866667pt;}
.x2{left:396.866655pt;}
.xd{left:420.573322pt;}
.xe{left:439.453322pt;}
.x18{left:482.493333pt;}
.x32{left:491.933333pt;}
.x49{left:530.333322pt;}
.x3a{left:548.573333pt;}
.x11{left:655.333322pt;}
.x46{left:704.133322pt;}
.xf{left:714.853322pt;}
}




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