
    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_26556e66e59727dae963577a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_3affa25d0bc6c12df335bd58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_92449f34c2b34a0127126f32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_01d8aa7cf0ceb42427238f0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_1c05c1e20b4bfa4e3336c555.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_9b13492b45b7f91147953197.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_2bee09c0d2504dfb27d4efc4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_511d03943944b57916d6b714.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_f359e26e2fe19d4654076061.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008000;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_f982a7d2d5f22976bd7fff97.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_fb2b89c44e58763d92373279.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;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_78cd1937ec7fa12ac792fcb7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_0c6e31790cbab3314b102d5b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4778dc0f58eab800e68727eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_f43356b0ba192b21c5897ea3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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;}
.m1{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls32{letter-spacing:-1.614816px;}
.ls19{letter-spacing:-1.536192px;}
.ls2b{letter-spacing:-1.518048px;}
.ls2c{letter-spacing:-1.499904px;}
.ls1b{letter-spacing:-1.493856px;}
.ls18{letter-spacing:-1.481760px;}
.ls1a{letter-spacing:-1.475712px;}
.ls33{letter-spacing:-1.457568px;}
.ls2f{letter-spacing:-1.439424px;}
.ls2e{letter-spacing:-1.378944px;}
.ls31{letter-spacing:-1.360800px;}
.ls30{letter-spacing:-1.342656px;}
.ls2d{letter-spacing:-1.318464px;}
.ls14{letter-spacing:-1.209600px;}
.ls15{letter-spacing:-1.202400px;}
.ls13{letter-spacing:-1.188000px;}
.ls24{letter-spacing:-0.597600px;}
.lsf{letter-spacing:-0.338688px;}
.lsd{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.260064px;}
.ls10{letter-spacing:-0.241920px;}
.ls1d{letter-spacing:-0.221760px;}
.lsb{letter-spacing:-0.178848px;}
.ls1e{letter-spacing:-0.177408px;}
.ls26{letter-spacing:-0.158976px;}
.ls5{letter-spacing:-0.145728px;}
.ls11{letter-spacing:-0.145152px;}
.lsa{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.120960px;}
.ls27{letter-spacing:-0.119232px;}
.ls28{letter-spacing:-0.079488px;}
.ls9{letter-spacing:-0.066240px;}
.ls6{letter-spacing:-0.059616px;}
.ls7{letter-spacing:-0.052992px;}
.lsc{letter-spacing:-0.021600px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060048px;}
.ls1c{letter-spacing:0.202752px;}
.ls0{letter-spacing:0.240480px;}
.ls20{letter-spacing:4.039200px;}
.ls16{letter-spacing:4.151520px;}
.ls21{letter-spacing:4.188960px;}
.ls22{letter-spacing:4.190400px;}
.ls1f{letter-spacing:4.338720px;}
.ls17{letter-spacing:5.671728px;}
.ls25{letter-spacing:7.264224px;}
.ls29{letter-spacing:7.530768px;}
.ls4{letter-spacing:9.364752px;}
.ls3{letter-spacing:22.144320px;}
.ls2a{letter-spacing:24.785136px;}
.ls2{letter-spacing:24.858720px;}
.ls23{letter-spacing:30.406896px;}
.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;}
}
.ws0{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.235872px;}
.ws9{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.402400px;}
.wsd{word-spacing:-16.813440px;}
.wse{word-spacing:-16.812000px;}
.wsf{word-spacing:-16.797600px;}
.wsa{word-spacing:-16.790400px;}
.ws11{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.401024px;}
.wsc{word-spacing:-15.277248px;}
.ws8{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.999040px;}
.ws6{word-spacing:-14.974848px;}
.ws5{word-spacing:-14.878080px;}
.ws4{word-spacing:-14.859936px;}
.ws13{word-spacing:-13.680576px;}
.ws15{word-spacing:-13.601952px;}
.ws14{word-spacing:-13.583808px;}
.ws3{word-spacing:-0.050400px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-2.160432px;}
._0{margin-left:-1.009872px;}
._1{width:1.063728px;}
._c{width:2.408544px;}
._9{width:3.960000px;}
._19{width:4.968432px;}
._15{width:6.624000px;}
._6{width:7.632000px;}
._12{width:9.504000px;}
._14{width:10.674288px;}
._11{width:12.168000px;}
._d{width:13.968000px;}
._4{width:15.559200px;}
._1e{width:16.632000px;}
._2{width:18.272304px;}
._16{width:19.311696px;}
._18{width:20.592000px;}
._10{width:22.464000px;}
._a{width:24.192000px;}
._7{width:26.136000px;}
._b{width:27.548640px;}
._17{width:29.187360px;}
._f{width:30.528000px;}
._1b{width:32.040000px;}
._5{width:33.120000px;}
._13{width:34.272000px;}
._1a{width:35.280000px;}
._1f{width:37.238400px;}
._e{width:38.952000px;}
._8{width:40.896000px;}
._1c{width:50.904000px;}
._1d{width:53.222400px;}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y36{bottom:89.640000px;}
.yad{bottom:92.880000px;}
.y90{bottom:96.120000px;}
.yd1{bottom:97.560000px;}
.y112{bottom:100.440000px;}
.yeb{bottom:100.800000px;}
.y69{bottom:104.760000px;}
.y35{bottom:110.520000px;}
.yac{bottom:113.400000px;}
.yd0{bottom:116.280000px;}
.y8f{bottom:116.640000px;}
.y111{bottom:117.720000px;}
.yea{bottom:121.320000px;}
.y68{bottom:125.640000px;}
.y34{bottom:131.040000px;}
.yab{bottom:134.280000px;}
.y110{bottom:134.640000px;}
.y8e{bottom:137.520000px;}
.ycf{bottom:141.480000px;}
.ye9{bottom:142.200000px;}
.y67{bottom:146.160000px;}
.y33{bottom:151.920000px;}
.yaa{bottom:154.800000px;}
.y8d{bottom:158.040000px;}
.ye8{bottom:162.720000px;}
.yce{bottom:164.520000px;}
.y66{bottom:167.040000px;}
.y10f{bottom:169.200000px;}
.y32{bottom:172.440000px;}
.ya9{bottom:175.680000px;}
.y8c{bottom:178.920000px;}
.ye7{bottom:183.600000px;}
.y10e{bottom:186.480000px;}
.y65{bottom:187.560000px;}
.ya8{bottom:196.200000px;}
.y8b{bottom:199.440000px;}
.y10d{bottom:203.760000px;}
.ye6{bottom:204.120000px;}
.y31{bottom:204.840000px;}
.y64{bottom:208.440000px;}
.ya7{bottom:217.080000px;}
.y8a{bottom:220.320000px;}
.y10c{bottom:221.040000px;}
.ye5{bottom:225.000000px;}
.y30{bottom:225.720000px;}
.y63{bottom:228.960000px;}
.ya6{bottom:237.600000px;}
.y10b{bottom:238.320000px;}
.y89{bottom:240.840000px;}
.ye4{bottom:245.520000px;}
.ybc{bottom:249.840000px;}
.y2f{bottom:255.240000px;}
.y10a{bottom:255.600000px;}
.ya5{bottom:258.480000px;}
.y62{bottom:261.360000px;}
.y88{bottom:261.720000px;}
.ye3{bottom:266.400000px;}
.ybb{bottom:270.360000px;}
.y109{bottom:272.880000px;}
.y2e{bottom:276.120000px;}
.y61{bottom:282.240000px;}
.ye2{bottom:286.920000px;}
.y108{bottom:290.160000px;}
.ya4{bottom:290.880000px;}
.yba{bottom:291.240000px;}
.y2d{bottom:297.000000px;}
.y60{bottom:303.120000px;}
.y107{bottom:307.440000px;}
.ye1{bottom:307.800000px;}
.ya3{bottom:311.760000px;}
.yf2{bottom:314.640000px;}
.y2c{bottom:317.520000px;}
.y5f{bottom:323.640000px;}
.y106{bottom:324.720000px;}
.ye0{bottom:328.320000px;}
.ya2{bottom:332.640000px;}
.yf1{bottom:335.880000px;}
.y2b{bottom:338.400000px;}
.y105{bottom:341.640000px;}
.y5e{bottom:344.520000px;}
.ydf{bottom:349.200000px;}
.ya1{bottom:353.160000px;}
.yf0{bottom:356.400000px;}
.y2a{bottom:358.920000px;}
.y5d{bottom:365.040000px;}
.yde{bottom:369.720000px;}
.ya0{bottom:374.040000px;}
.y104{bottom:376.200000px;}
.yef{bottom:377.280000px;}
.y5c{bottom:385.920000px;}
.y29{bottom:388.440000px;}
.ydd{bottom:390.600000px;}
.y103{bottom:393.480000px;}
.y9f{bottom:394.560000px;}
.yee{bottom:397.800000px;}
.y5b{bottom:406.440000px;}
.y28{bottom:409.320000px;}
.ycd{bottom:409.680000px;}
.y102{bottom:410.760000px;}
.y9e{bottom:415.440000px;}
.y87{bottom:418.320000px;}
.yed{bottom:418.680000px;}
.ydc{bottom:423.000000px;}
.y5a{bottom:427.320000px;}
.y101{bottom:428.040000px;}
.ycc{bottom:429.840000px;}
.y27{bottom:430.200000px;}
.y9d{bottom:435.960000px;}
.y86{bottom:439.200000px;}
.ydb{bottom:443.880000px;}
.y100{bottom:445.320000px;}
.y59{bottom:447.840000px;}
.ycb{bottom:448.920000px;}
.y26{bottom:450.720000px;}
.y9c{bottom:456.840000px;}
.y85{bottom:460.080000px;}
.yff{bottom:462.600000px;}
.yda{bottom:464.040000px;}
.yca{bottom:467.640000px;}
.y58{bottom:468.720000px;}
.y25{bottom:471.600000px;}
.y9b{bottom:477.360000px;}
.y84{bottom:480.600000px;}
.yd9{bottom:483.120000px;}
.y57{bottom:489.240000px;}
.y24{bottom:492.120000px;}
.yfe{bottom:492.480000px;}
.yc9{bottom:492.840000px;}
.y9a{bottom:498.240000px;}
.y83{bottom:501.480000px;}
.yd8{bottom:507.960000px;}
.y56{bottom:510.120000px;}
.y23{bottom:513.000000px;}
.yfd{bottom:513.360000px;}
.yc8{bottom:515.880000px;}
.y99{bottom:518.760000px;}
.y82{bottom:522.000000px;}
.yb9{bottom:530.280000px;}
.y55{bottom:530.640000px;}
.yd7{bottom:531.360000px;}
.y22{bottom:533.520000px;}
.yfc{bottom:534.240000px;}
.y81{bottom:542.880000px;}
.y98{bottom:551.160000px;}
.y54{bottom:551.520000px;}
.y21{bottom:554.400000px;}
.yfb{bottom:554.760000px;}
.y80{bottom:563.400000px;}
.y53{bottom:572.040000px;}
.y20{bottom:574.920000px;}
.yfa{bottom:575.640000px;}
.y97{bottom:583.920000px;}
.y7f{bottom:584.280000px;}
.y52{bottom:592.920000px;}
.y1f{bottom:595.800000px;}
.yf9{bottom:596.160000px;}
.y7e{bottom:604.800000px;}
.y51{bottom:613.440000px;}
.y1e{bottom:616.320000px;}
.yf8{bottom:617.040000px;}
.y7d{bottom:625.680000px;}
.y50{bottom:634.320000px;}
.y1d{bottom:637.200000px;}
.yf7{bottom:637.560000px;}
.y7c{bottom:646.200000px;}
.y4f{bottom:654.840000px;}
.y1c{bottom:657.720000px;}
.yf6{bottom:658.440000px;}
.y7b{bottom:667.080000px;}
.y4e{bottom:675.720000px;}
.y1b{bottom:678.600000px;}
.yf5{bottom:678.960000px;}
.y7a{bottom:687.600000px;}
.yb8{bottom:696.240000px;}
.y1a{bottom:699.120000px;}
.yf4{bottom:699.840000px;}
.y4d{bottom:708.120000px;}
.y79{bottom:708.480000px;}
.yb7{bottom:717.120000px;}
.y19{bottom:720.000000px;}
.yf3{bottom:720.360000px;}
.y78{bottom:729.000000px;}
.yb6{bottom:737.640000px;}
.y18{bottom:740.520000px;}
.y4c{bottom:740.880000px;}
.yec{bottom:741.240000px;}
.y77{bottom:749.880000px;}
.yb5{bottom:758.520000px;}
.y17{bottom:761.400000px;}
.y4b{bottom:761.760000px;}
.y76{bottom:770.400000px;}
.yb4{bottom:779.040000px;}
.yc7{bottom:781.200000px;}
.y16{bottom:781.920000px;}
.y4a{bottom:782.280000px;}
.y75{bottom:791.280000px;}
.yb3{bottom:799.920000px;}
.yc6{bottom:801.360000px;}
.y15{bottom:802.800000px;}
.y49{bottom:803.160000px;}
.yd6{bottom:810.000000px;}
.y74{bottom:811.800000px;}
.yb2{bottom:820.440000px;}
.y14{bottom:823.320000px;}
.y48{bottom:823.680000px;}
.yd5{bottom:830.160000px;}
.y73{bottom:832.680000px;}
.yc5{bottom:839.160000px;}
.yb1{bottom:841.320000px;}
.y13{bottom:844.200000px;}
.y47{bottom:844.560000px;}
.yd4{bottom:849.240000px;}
.y72{bottom:853.200000px;}
.yb0{bottom:861.840000px;}
.yc4{bottom:864.360000px;}
.y12{bottom:864.720000px;}
.y46{bottom:865.080000px;}
.y71{bottom:874.080000px;}
.yd3{bottom:874.440000px;}
.yaf{bottom:882.720000px;}
.y11{bottom:885.600000px;}
.y45{bottom:885.960000px;}
.y70{bottom:894.600000px;}
.yd2{bottom:897.480000px;}
.y10{bottom:906.120000px;}
.y44{bottom:906.480000px;}
.yae{bottom:915.120000px;}
.y6f{bottom:915.480000px;}
.yf{bottom:927.000000px;}
.y43{bottom:927.360000px;}
.y6e{bottom:936.000000px;}
.ye{bottom:947.520000px;}
.y42{bottom:947.880000px;}
.y96{bottom:956.880000px;}
.y6d{bottom:968.400000px;}
.y41{bottom:968.760000px;}
.yd{bottom:972.720000px;}
.y95{bottom:977.400000px;}
.yc3{bottom:988.920000px;}
.y40{bottom:989.280000px;}
.yc{bottom:990.000000px;}
.y94{bottom:998.280000px;}
.yc2{bottom:1009.800000px;}
.y3f{bottom:1010.160000px;}
.yb{bottom:1011.600000px;}
.y93{bottom:1018.800000px;}
.yc1{bottom:1030.320000px;}
.y3e{bottom:1030.680000px;}
.ya{bottom:1032.480000px;}
.y92{bottom:1039.680000px;}
.yc0{bottom:1051.200000px;}
.y3d{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.y91{bottom:1071.720000px;}
.y3c{bottom:1072.080000px;}
.y8{bottom:1086.120000px;}
.ybf{bottom:1092.600000px;}
.y3b{bottom:1092.960000px;}
.ybe{bottom:1113.120000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.ybd{bottom:1133.640000px;}
.y39{bottom:1134.360000px;}
.y3{bottom:1146.600000px;}
.y6c{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y38{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y6b{bottom:1191.240000px;}
.y6a{bottom:1191.600000px;}
.y37{bottom:1192.320000px;}
.h5{height:24.000000px;}
.h9{height:26.274375px;}
.h10{height:41.993438px;}
.hf{height:42.022969px;}
.h3{height:44.149219px;}
.hd{height:45.992813px;}
.hb{height:46.448640px;}
.he{height:47.988281px;}
.hc{height:48.660480px;}
.ha{height:48.796875px;}
.h7{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h8{height:56.593125px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:127.439928px;}
.x2{left:129.266964px;}
.x6{left:138.269160px;}
.x4{left:154.439928px;}
.xc{left:163.901736px;}
.xb{left:169.965072px;}
.x10{left:172.702512px;}
.xf{left:181.439928px;}
.x1{left:242.852076px;}
.x13{left:258.123420px;}
.x11{left:273.851460px;}
.x9{left:276.411240px;}
.xa{left:288.283788px;}
.x19{left:302.604876px;}
.x15{left:306.841212px;}
.x8{left:318.647844px;}
.x17{left:329.358744px;}
.x3{left:446.152320px;}
.xe{left:534.392985px;}
.xd{left:542.718720px;}
.x16{left:649.552320px;}
.x18{left:653.872320px;}
.x12{left:656.212320px;}
.x14{left:660.172320px;}
.x5{left:735.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls32{letter-spacing:-1.435392pt;}
.ls19{letter-spacing:-1.365504pt;}
.ls2b{letter-spacing:-1.349376pt;}
.ls2c{letter-spacing:-1.333248pt;}
.ls1b{letter-spacing:-1.327872pt;}
.ls18{letter-spacing:-1.317120pt;}
.ls1a{letter-spacing:-1.311744pt;}
.ls33{letter-spacing:-1.295616pt;}
.ls2f{letter-spacing:-1.279488pt;}
.ls2e{letter-spacing:-1.225728pt;}
.ls31{letter-spacing:-1.209600pt;}
.ls30{letter-spacing:-1.193472pt;}
.ls2d{letter-spacing:-1.171968pt;}
.ls14{letter-spacing:-1.075200pt;}
.ls15{letter-spacing:-1.068800pt;}
.ls13{letter-spacing:-1.056000pt;}
.ls24{letter-spacing:-0.531200pt;}
.lsf{letter-spacing:-0.301056pt;}
.lsd{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.231168pt;}
.ls10{letter-spacing:-0.215040pt;}
.ls1d{letter-spacing:-0.197120pt;}
.lsb{letter-spacing:-0.158976pt;}
.ls1e{letter-spacing:-0.157696pt;}
.ls26{letter-spacing:-0.141312pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls11{letter-spacing:-0.129024pt;}
.lsa{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.107520pt;}
.ls27{letter-spacing:-0.105984pt;}
.ls28{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls6{letter-spacing:-0.052992pt;}
.ls7{letter-spacing:-0.047104pt;}
.lsc{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053376pt;}
.ls1c{letter-spacing:0.180224pt;}
.ls0{letter-spacing:0.213760pt;}
.ls20{letter-spacing:3.590400pt;}
.ls16{letter-spacing:3.690240pt;}
.ls21{letter-spacing:3.723520pt;}
.ls22{letter-spacing:3.724800pt;}
.ls1f{letter-spacing:3.856640pt;}
.ls17{letter-spacing:5.041536pt;}
.ls25{letter-spacing:6.457088pt;}
.ls29{letter-spacing:6.694016pt;}
.ls4{letter-spacing:8.324224pt;}
.ls3{letter-spacing:19.683840pt;}
.ls2a{letter-spacing:22.031232pt;}
.ls2{letter-spacing:22.096640pt;}
.ls23{letter-spacing:27.028352pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.209664pt;}
.ws9{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.468800pt;}
.wsd{word-spacing:-14.945280pt;}
.wse{word-spacing:-14.944000pt;}
.wsf{word-spacing:-14.931200pt;}
.wsa{word-spacing:-14.924800pt;}
.ws11{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.578688pt;}
.wsc{word-spacing:-13.579776pt;}
.ws8{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.332480pt;}
.ws6{word-spacing:-13.310976pt;}
.ws5{word-spacing:-13.224960pt;}
.ws4{word-spacing:-13.208832pt;}
.ws13{word-spacing:-12.160512pt;}
.ws15{word-spacing:-12.090624pt;}
.ws14{word-spacing:-12.074496pt;}
.ws3{word-spacing:-0.044800pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-1.920384pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.945536pt;}
._c{width:2.140928pt;}
._9{width:3.520000pt;}
._19{width:4.416384pt;}
._15{width:5.888000pt;}
._6{width:6.784000pt;}
._12{width:8.448000pt;}
._14{width:9.488256pt;}
._11{width:10.816000pt;}
._d{width:12.416000pt;}
._4{width:13.830400pt;}
._1e{width:14.784000pt;}
._2{width:16.242048pt;}
._16{width:17.165952pt;}
._18{width:18.304000pt;}
._10{width:19.968000pt;}
._a{width:21.504000pt;}
._7{width:23.232000pt;}
._b{width:24.487680pt;}
._17{width:25.944320pt;}
._f{width:27.136000pt;}
._1b{width:28.480000pt;}
._5{width:29.440000pt;}
._13{width:30.464000pt;}
._1a{width:31.360000pt;}
._1f{width:33.100800pt;}
._e{width:34.624000pt;}
._8{width:36.352000pt;}
._1c{width:45.248000pt;}
._1d{width:47.308800pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y36{bottom:79.680000pt;}
.yad{bottom:82.560000pt;}
.y90{bottom:85.440000pt;}
.yd1{bottom:86.720000pt;}
.y112{bottom:89.280000pt;}
.yeb{bottom:89.600000pt;}
.y69{bottom:93.120000pt;}
.y35{bottom:98.240000pt;}
.yac{bottom:100.800000pt;}
.yd0{bottom:103.360000pt;}
.y8f{bottom:103.680000pt;}
.y111{bottom:104.640000pt;}
.yea{bottom:107.840000pt;}
.y68{bottom:111.680000pt;}
.y34{bottom:116.480000pt;}
.yab{bottom:119.360000pt;}
.y110{bottom:119.680000pt;}
.y8e{bottom:122.240000pt;}
.ycf{bottom:125.760000pt;}
.ye9{bottom:126.400000pt;}
.y67{bottom:129.920000pt;}
.y33{bottom:135.040000pt;}
.yaa{bottom:137.600000pt;}
.y8d{bottom:140.480000pt;}
.ye8{bottom:144.640000pt;}
.yce{bottom:146.240000pt;}
.y66{bottom:148.480000pt;}
.y10f{bottom:150.400000pt;}
.y32{bottom:153.280000pt;}
.ya9{bottom:156.160000pt;}
.y8c{bottom:159.040000pt;}
.ye7{bottom:163.200000pt;}
.y10e{bottom:165.760000pt;}
.y65{bottom:166.720000pt;}
.ya8{bottom:174.400000pt;}
.y8b{bottom:177.280000pt;}
.y10d{bottom:181.120000pt;}
.ye6{bottom:181.440000pt;}
.y31{bottom:182.080000pt;}
.y64{bottom:185.280000pt;}
.ya7{bottom:192.960000pt;}
.y8a{bottom:195.840000pt;}
.y10c{bottom:196.480000pt;}
.ye5{bottom:200.000000pt;}
.y30{bottom:200.640000pt;}
.y63{bottom:203.520000pt;}
.ya6{bottom:211.200000pt;}
.y10b{bottom:211.840000pt;}
.y89{bottom:214.080000pt;}
.ye4{bottom:218.240000pt;}
.ybc{bottom:222.080000pt;}
.y2f{bottom:226.880000pt;}
.y10a{bottom:227.200000pt;}
.ya5{bottom:229.760000pt;}
.y62{bottom:232.320000pt;}
.y88{bottom:232.640000pt;}
.ye3{bottom:236.800000pt;}
.ybb{bottom:240.320000pt;}
.y109{bottom:242.560000pt;}
.y2e{bottom:245.440000pt;}
.y61{bottom:250.880000pt;}
.ye2{bottom:255.040000pt;}
.y108{bottom:257.920000pt;}
.ya4{bottom:258.560000pt;}
.yba{bottom:258.880000pt;}
.y2d{bottom:264.000000pt;}
.y60{bottom:269.440000pt;}
.y107{bottom:273.280000pt;}
.ye1{bottom:273.600000pt;}
.ya3{bottom:277.120000pt;}
.yf2{bottom:279.680000pt;}
.y2c{bottom:282.240000pt;}
.y5f{bottom:287.680000pt;}
.y106{bottom:288.640000pt;}
.ye0{bottom:291.840000pt;}
.ya2{bottom:295.680000pt;}
.yf1{bottom:298.560000pt;}
.y2b{bottom:300.800000pt;}
.y105{bottom:303.680000pt;}
.y5e{bottom:306.240000pt;}
.ydf{bottom:310.400000pt;}
.ya1{bottom:313.920000pt;}
.yf0{bottom:316.800000pt;}
.y2a{bottom:319.040000pt;}
.y5d{bottom:324.480000pt;}
.yde{bottom:328.640000pt;}
.ya0{bottom:332.480000pt;}
.y104{bottom:334.400000pt;}
.yef{bottom:335.360000pt;}
.y5c{bottom:343.040000pt;}
.y29{bottom:345.280000pt;}
.ydd{bottom:347.200000pt;}
.y103{bottom:349.760000pt;}
.y9f{bottom:350.720000pt;}
.yee{bottom:353.600000pt;}
.y5b{bottom:361.280000pt;}
.y28{bottom:363.840000pt;}
.ycd{bottom:364.160000pt;}
.y102{bottom:365.120000pt;}
.y9e{bottom:369.280000pt;}
.y87{bottom:371.840000pt;}
.yed{bottom:372.160000pt;}
.ydc{bottom:376.000000pt;}
.y5a{bottom:379.840000pt;}
.y101{bottom:380.480000pt;}
.ycc{bottom:382.080000pt;}
.y27{bottom:382.400000pt;}
.y9d{bottom:387.520000pt;}
.y86{bottom:390.400000pt;}
.ydb{bottom:394.560000pt;}
.y100{bottom:395.840000pt;}
.y59{bottom:398.080000pt;}
.ycb{bottom:399.040000pt;}
.y26{bottom:400.640000pt;}
.y9c{bottom:406.080000pt;}
.y85{bottom:408.960000pt;}
.yff{bottom:411.200000pt;}
.yda{bottom:412.480000pt;}
.yca{bottom:415.680000pt;}
.y58{bottom:416.640000pt;}
.y25{bottom:419.200000pt;}
.y9b{bottom:424.320000pt;}
.y84{bottom:427.200000pt;}
.yd9{bottom:429.440000pt;}
.y57{bottom:434.880000pt;}
.y24{bottom:437.440000pt;}
.yfe{bottom:437.760000pt;}
.yc9{bottom:438.080000pt;}
.y9a{bottom:442.880000pt;}
.y83{bottom:445.760000pt;}
.yd8{bottom:451.520000pt;}
.y56{bottom:453.440000pt;}
.y23{bottom:456.000000pt;}
.yfd{bottom:456.320000pt;}
.yc8{bottom:458.560000pt;}
.y99{bottom:461.120000pt;}
.y82{bottom:464.000000pt;}
.yb9{bottom:471.360000pt;}
.y55{bottom:471.680000pt;}
.yd7{bottom:472.320000pt;}
.y22{bottom:474.240000pt;}
.yfc{bottom:474.880000pt;}
.y81{bottom:482.560000pt;}
.y98{bottom:489.920000pt;}
.y54{bottom:490.240000pt;}
.y21{bottom:492.800000pt;}
.yfb{bottom:493.120000pt;}
.y80{bottom:500.800000pt;}
.y53{bottom:508.480000pt;}
.y20{bottom:511.040000pt;}
.yfa{bottom:511.680000pt;}
.y97{bottom:519.040000pt;}
.y7f{bottom:519.360000pt;}
.y52{bottom:527.040000pt;}
.y1f{bottom:529.600000pt;}
.yf9{bottom:529.920000pt;}
.y7e{bottom:537.600000pt;}
.y51{bottom:545.280000pt;}
.y1e{bottom:547.840000pt;}
.yf8{bottom:548.480000pt;}
.y7d{bottom:556.160000pt;}
.y50{bottom:563.840000pt;}
.y1d{bottom:566.400000pt;}
.yf7{bottom:566.720000pt;}
.y7c{bottom:574.400000pt;}
.y4f{bottom:582.080000pt;}
.y1c{bottom:584.640000pt;}
.yf6{bottom:585.280000pt;}
.y7b{bottom:592.960000pt;}
.y4e{bottom:600.640000pt;}
.y1b{bottom:603.200000pt;}
.yf5{bottom:603.520000pt;}
.y7a{bottom:611.200000pt;}
.yb8{bottom:618.880000pt;}
.y1a{bottom:621.440000pt;}
.yf4{bottom:622.080000pt;}
.y4d{bottom:629.440000pt;}
.y79{bottom:629.760000pt;}
.yb7{bottom:637.440000pt;}
.y19{bottom:640.000000pt;}
.yf3{bottom:640.320000pt;}
.y78{bottom:648.000000pt;}
.yb6{bottom:655.680000pt;}
.y18{bottom:658.240000pt;}
.y4c{bottom:658.560000pt;}
.yec{bottom:658.880000pt;}
.y77{bottom:666.560000pt;}
.yb5{bottom:674.240000pt;}
.y17{bottom:676.800000pt;}
.y4b{bottom:677.120000pt;}
.y76{bottom:684.800000pt;}
.yb4{bottom:692.480000pt;}
.yc7{bottom:694.400000pt;}
.y16{bottom:695.040000pt;}
.y4a{bottom:695.360000pt;}
.y75{bottom:703.360000pt;}
.yb3{bottom:711.040000pt;}
.yc6{bottom:712.320000pt;}
.y15{bottom:713.600000pt;}
.y49{bottom:713.920000pt;}
.yd6{bottom:720.000000pt;}
.y74{bottom:721.600000pt;}
.yb2{bottom:729.280000pt;}
.y14{bottom:731.840000pt;}
.y48{bottom:732.160000pt;}
.yd5{bottom:737.920000pt;}
.y73{bottom:740.160000pt;}
.yc5{bottom:745.920000pt;}
.yb1{bottom:747.840000pt;}
.y13{bottom:750.400000pt;}
.y47{bottom:750.720000pt;}
.yd4{bottom:754.880000pt;}
.y72{bottom:758.400000pt;}
.yb0{bottom:766.080000pt;}
.yc4{bottom:768.320000pt;}
.y12{bottom:768.640000pt;}
.y46{bottom:768.960000pt;}
.y71{bottom:776.960000pt;}
.yd3{bottom:777.280000pt;}
.yaf{bottom:784.640000pt;}
.y11{bottom:787.200000pt;}
.y45{bottom:787.520000pt;}
.y70{bottom:795.200000pt;}
.yd2{bottom:797.760000pt;}
.y10{bottom:805.440000pt;}
.y44{bottom:805.760000pt;}
.yae{bottom:813.440000pt;}
.y6f{bottom:813.760000pt;}
.yf{bottom:824.000000pt;}
.y43{bottom:824.320000pt;}
.y6e{bottom:832.000000pt;}
.ye{bottom:842.240000pt;}
.y42{bottom:842.560000pt;}
.y96{bottom:850.560000pt;}
.y6d{bottom:860.800000pt;}
.y41{bottom:861.120000pt;}
.yd{bottom:864.640000pt;}
.y95{bottom:868.800000pt;}
.yc3{bottom:879.040000pt;}
.y40{bottom:879.360000pt;}
.yc{bottom:880.000000pt;}
.y94{bottom:887.360000pt;}
.yc2{bottom:897.600000pt;}
.y3f{bottom:897.920000pt;}
.yb{bottom:899.200000pt;}
.y93{bottom:905.600000pt;}
.yc1{bottom:915.840000pt;}
.y3e{bottom:916.160000pt;}
.ya{bottom:917.760000pt;}
.y92{bottom:924.160000pt;}
.yc0{bottom:934.400000pt;}
.y3d{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.y91{bottom:952.640000pt;}
.y3c{bottom:952.960000pt;}
.y8{bottom:965.440000pt;}
.ybf{bottom:971.200000pt;}
.y3b{bottom:971.520000pt;}
.ybe{bottom:989.440000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.ybd{bottom:1007.680000pt;}
.y39{bottom:1008.320000pt;}
.y3{bottom:1019.200000pt;}
.y6c{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y38{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y6b{bottom:1058.880000pt;}
.y6a{bottom:1059.200000pt;}
.y37{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.h9{height:23.355000pt;}
.h10{height:37.327500pt;}
.hf{height:37.353750pt;}
.h3{height:39.243750pt;}
.hd{height:40.882500pt;}
.hb{height:41.287680pt;}
.he{height:42.656250pt;}
.hc{height:43.253760pt;}
.ha{height:43.375000pt;}
.h7{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h8{height:50.305000pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:113.279936pt;}
.x2{left:114.903968pt;}
.x6{left:122.905920pt;}
.x4{left:137.279936pt;}
.xc{left:145.690432pt;}
.xb{left:151.080064pt;}
.x10{left:153.513344pt;}
.xf{left:161.279936pt;}
.x1{left:215.868512pt;}
.x13{left:229.443040pt;}
.x11{left:243.423520pt;}
.x9{left:245.698880pt;}
.xa{left:256.252256pt;}
.x19{left:268.982112pt;}
.x15{left:272.747744pt;}
.x8{left:283.242528pt;}
.x17{left:292.763328pt;}
.x3{left:396.579840pt;}
.xe{left:475.015987pt;}
.xd{left:482.416640pt;}
.x16{left:577.379840pt;}
.x18{left:581.219840pt;}
.x12{left:583.299840pt;}
.x14{left:586.819840pt;}
.x5{left:653.333333pt;}
}




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