
    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_aec3809be1c5d124aa3d5335.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_bfee057a2f12350284dadc3e.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_b5dc41977ec7810d749614ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_19f6013ba8186c53400a85f3.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_e67521ee1dd0b6d930fc55cc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_600bb80d436249dd31d5c79c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74bc90b35d863c2892909f20.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_07a056a58244b2a9a966d5fe.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_2164732157162950f47e6bbe.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aaf27fd9590644b183972aac.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4629fed12d7f44b681c6575a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls37{letter-spacing:-1.663200px;}
.ls32{letter-spacing:-1.614816px;}
.ls33{letter-spacing:-1.596672px;}
.ls30{letter-spacing:-1.584576px;}
.ls1f{letter-spacing:-1.536192px;}
.ls2d{letter-spacing:-1.518048px;}
.ls2b{letter-spacing:-1.499904px;}
.ls1e{letter-spacing:-1.481760px;}
.ls2f{letter-spacing:-1.457568px;}
.ls2a{letter-spacing:-1.439424px;}
.ls28{letter-spacing:-1.421280px;}
.ls31{letter-spacing:-1.378944px;}
.ls2c{letter-spacing:-1.360800px;}
.ls2e{letter-spacing:-1.342656px;}
.ls29{letter-spacing:-1.318464px;}
.ls34{letter-spacing:-1.276128px;}
.lse{letter-spacing:-1.209600px;}
.lsd{letter-spacing:-1.202400px;}
.lsc{letter-spacing:-1.188000px;}
.ls36{letter-spacing:-1.139184px;}
.lsa{letter-spacing:-0.302400px;}
.lsb{letter-spacing:-0.260064px;}
.ls13{letter-spacing:-0.221760px;}
.ls8{letter-spacing:-0.178848px;}
.ls14{letter-spacing:-0.177408px;}
.ls2{letter-spacing:-0.145728px;}
.ls7{letter-spacing:-0.132480px;}
.ls6{letter-spacing:-0.066240px;}
.ls3{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.052992px;}
.ls9{letter-spacing:-0.021600px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.202752px;}
.ls24{letter-spacing:0.815040px;}
.ls25{letter-spacing:0.816480px;}
.ls23{letter-spacing:2.324160px;}
.ls15{letter-spacing:2.332800px;}
.ls17{letter-spacing:2.393280px;}
.ls10{letter-spacing:2.654352px;}
.ls1{letter-spacing:3.588480px;}
.ls18{letter-spacing:3.784320px;}
.ls1d{letter-spacing:4.504320px;}
.ls1c{letter-spacing:5.149440px;}
.ls19{letter-spacing:5.840352px;}
.ls1a{letter-spacing:5.840640px;}
.ls20{letter-spacing:6.831360px;}
.ls16{letter-spacing:7.325280px;}
.ls0{letter-spacing:8.856000px;}
.ls22{letter-spacing:9.064800px;}
.ls12{letter-spacing:10.081440px;}
.ls26{letter-spacing:12.404304px;}
.ls21{letter-spacing:16.136640px;}
.ls1b{letter-spacing:21.427776px;}
.ls27{letter-spacing:22.880160px;}
.ls11{letter-spacing:24.229440px;}
.ls35{letter-spacing:53.143200px;}
.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;}
.ws1{word-spacing:-18.282240px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.813440px;}
.ws4{word-spacing:-16.812000px;}
.ws8{word-spacing:-16.797600px;}
.ws6{word-spacing:-16.790400px;}
.ws9{word-spacing:-15.331680px;}
.wsb{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.859936px;}
.wsd{word-spacing:-13.759200px;}
.wsc{word-spacing:-13.680576px;}
.wsf{word-spacing:-13.583808px;}
.wse{word-spacing:-13.535424px;}
.ws10{word-spacing:-13.523328px;}
.ws2{word-spacing:-0.050400px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:1.100304px;}
._15{margin-left:-2.056032px;}
._0{margin-left:-1.009872px;}
._1{width:1.038384px;}
._e{width:2.993616px;}
._8{width:4.824000px;}
._9{width:6.696000px;}
._7{width:7.776000px;}
._5{width:9.216000px;}
._6{width:10.944000px;}
._3{width:12.312000px;}
._2{width:14.116032px;}
._f{width:15.619968px;}
._1d{width:16.692480px;}
._a{width:18.633600px;}
._10{width:19.670400px;}
._12{width:21.024000px;}
._4{width:22.896000px;}
._18{width:24.120000px;}
._13{width:25.416000px;}
._16{width:27.432000px;}
._14{width:29.160000px;}
._22{width:30.784320px;}
._11{width:31.896000px;}
._d{width:33.102144px;}
._17{width:34.307712px;}
._c{width:38.808000px;}
._b{width:46.080000px;}
._1f{width:49.522896px;}
._26{width:54.069120px;}
._25{width:55.097280px;}
._20{width:56.115216px;}
._21{width:57.166416px;}
._1b{width:71.789760px;}
._1e{width:73.059840px;}
._1a{width:120.673440px;}
._19{width:122.290560px;}
._1c{width:358.575696px;}
._24{width:504.712656px;}
._23{width:505.915200px;}
.fc3{color:rgb(255,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(28,30,41);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.yc4{bottom:91.080000px;}
.y6a{bottom:96.120000px;}
.y35{bottom:104.400000px;}
.ya4{bottom:108.000000px;}
.yc3{bottom:111.600000px;}
.y69{bottom:116.640000px;}
.y34{bottom:125.280000px;}
.ya3{bottom:128.880000px;}
.y68{bottom:137.520000px;}
.yfc{bottom:138.240000px;}
.yc2{bottom:144.000000px;}
.y33{bottom:145.800000px;}
.ya2{bottom:149.400000px;}
.yfb{bottom:155.520000px;}
.y67{bottom:158.040000px;}
.yc1{bottom:164.160000px;}
.y32{bottom:166.680000px;}
.ya1{bottom:170.280000px;}
.yfa{bottom:172.800000px;}
.y66{bottom:178.920000px;}
.yc0{bottom:182.520000px;}
.y31{bottom:187.200000px;}
.yf9{bottom:190.080000px;}
.ya6{bottom:190.440000px;}
.ya0{bottom:190.800000px;}
.y65{bottom:199.440000px;}
.ybf{bottom:203.040000px;}
.yf8{bottom:207.360000px;}
.y30{bottom:208.080000px;}
.y9f{bottom:211.680000px;}
.y64{bottom:220.320000px;}
.ybe{bottom:223.920000px;}
.yf7{bottom:224.640000px;}
.y2f{bottom:228.600000px;}
.y9e{bottom:232.200000px;}
.y63{bottom:240.840000px;}
.yf6{bottom:241.920000px;}
.ybd{bottom:244.440000px;}
.y2e{bottom:249.480000px;}
.y9d{bottom:253.080000px;}
.yf5{bottom:258.840000px;}
.y62{bottom:261.720000px;}
.ybc{bottom:265.320000px;}
.y2d{bottom:270.000000px;}
.y9c{bottom:273.600000px;}
.yf4{bottom:276.120000px;}
.y61{bottom:282.240000px;}
.ybb{bottom:285.840000px;}
.y2c{bottom:290.880000px;}
.yf3{bottom:293.400000px;}
.y9b{bottom:294.480000px;}
.y60{bottom:303.120000px;}
.yba{bottom:306.720000px;}
.yf2{bottom:310.680000px;}
.y2b{bottom:311.400000px;}
.y9a{bottom:315.000000px;}
.y5f{bottom:323.640000px;}
.yb9{bottom:327.240000px;}
.yf1{bottom:327.960000px;}
.y2a{bottom:332.280000px;}
.y99{bottom:335.880000px;}
.y5e{bottom:344.520000px;}
.yf0{bottom:345.240000px;}
.yb8{bottom:348.120000px;}
.y29{bottom:352.800000px;}
.y98{bottom:356.400000px;}
.yef{bottom:362.520000px;}
.y5d{bottom:365.040000px;}
.yb7{bottom:368.640000px;}
.y28{bottom:373.680000px;}
.y86{bottom:376.920000px;}
.y97{bottom:377.280000px;}
.yee{bottom:379.800000px;}
.y5c{bottom:385.920000px;}
.yb6{bottom:389.520000px;}
.y27{bottom:394.200000px;}
.yed{bottom:397.080000px;}
.y85{bottom:397.800000px;}
.y5b{bottom:406.440000px;}
.yae{bottom:409.680000px;}
.yb5{bottom:410.040000px;}
.yec{bottom:414.360000px;}
.y26{bottom:415.080000px;}
.yb0{bottom:418.320000px;}
.y84{bottom:418.680000px;}
.y5a{bottom:427.320000px;}
.yad{bottom:430.560000px;}
.yeb{bottom:431.640000px;}
.y25{bottom:435.600000px;}
.y83{bottom:439.200000px;}
.y59{bottom:447.840000px;}
.yea{bottom:448.560000px;}
.yac{bottom:451.440000px;}
.y24{bottom:456.480000px;}
.y82{bottom:460.080000px;}
.yb4{bottom:462.960000px;}
.ye9{bottom:465.840000px;}
.y58{bottom:468.720000px;}
.yab{bottom:471.960000px;}
.y81{bottom:480.600000px;}
.yb3{bottom:483.120000px;}
.y23{bottom:488.520000px;}
.y57{bottom:489.240000px;}
.yaa{bottom:492.840000px;}
.ye8{bottom:500.400000px;}
.y80{bottom:501.480000px;}
.y56{bottom:510.120000px;}
.ya9{bottom:513.360000px;}
.ye7{bottom:517.680000px;}
.y22{bottom:518.400000px;}
.y7f{bottom:522.000000px;}
.y55{bottom:530.640000px;}
.ya8{bottom:534.240000px;}
.ye6{bottom:534.960000px;}
.y7e{bottom:542.880000px;}
.y21{bottom:547.920000px;}
.y54{bottom:551.520000px;}
.ye5{bottom:552.240000px;}
.y96{bottom:554.400000px;}
.ya7{bottom:554.760000px;}
.y7d{bottom:563.400000px;}
.y20{bottom:569.160000px;}
.ye4{bottom:569.520000px;}
.y53{bottom:572.040000px;}
.y95{bottom:575.640000px;}
.y7c{bottom:584.280000px;}
.ye3{bottom:586.800000px;}
.y52{bottom:592.920000px;}
.y94{bottom:596.160000px;}
.y1f{bottom:598.320000px;}
.ye2{bottom:604.080000px;}
.y7b{bottom:604.800000px;}
.y93{bottom:617.040000px;}
.y1e{bottom:619.560000px;}
.ye1{bottom:621.360000px;}
.y51{bottom:625.320000px;}
.y7a{bottom:625.680000px;}
.y92{bottom:637.560000px;}
.ye0{bottom:638.640000px;}
.y1d{bottom:640.080000px;}
.y50{bottom:646.200000px;}
.y116{bottom:653.760000px;}
.ydf{bottom:655.560000px;}
.y91{bottom:658.440000px;}
.y1c{bottom:660.960000px;}
.y4f{bottom:667.080000px;}
.y115{bottom:671.040000px;}
.yde{bottom:672.840000px;}
.y90{bottom:678.960000px;}
.y1b{bottom:681.480000px;}
.y4e{bottom:687.600000px;}
.y114{bottom:688.320000px;}
.ydd{bottom:690.120000px;}
.y8f{bottom:699.840000px;}
.y1a{bottom:702.360000px;}
.y113{bottom:705.600000px;}
.ydc{bottom:707.400000px;}
.y4d{bottom:708.480000px;}
.y8e{bottom:720.360000px;}
.y19{bottom:722.880000px;}
.ydb{bottom:724.680000px;}
.y4c{bottom:729.000000px;}
.y112{bottom:740.160000px;}
.yb1{bottom:740.880000px;}
.y8d{bottom:741.240000px;}
.yda{bottom:741.960000px;}
.y18{bottom:743.760000px;}
.y4b{bottom:749.880000px;}
.y111{bottom:757.440000px;}
.yd9{bottom:759.240000px;}
.y8c{bottom:761.760000px;}
.y17{bottom:764.280000px;}
.y4a{bottom:770.400000px;}
.y110{bottom:774.720000px;}
.yd8{bottom:776.520000px;}
.ya5{bottom:781.920000px;}
.y8b{bottom:782.280000px;}
.y16{bottom:785.160000px;}
.y49{bottom:791.280000px;}
.y10f{bottom:792.000000px;}
.yd7{bottom:793.800000px;}
.y8a{bottom:803.160000px;}
.y15{bottom:805.680000px;}
.y10e{bottom:809.280000px;}
.yd6{bottom:811.080000px;}
.y48{bottom:811.800000px;}
.y89{bottom:823.680000px;}
.y14{bottom:826.560000px;}
.yd5{bottom:828.360000px;}
.y47{bottom:832.680000px;}
.y10d{bottom:843.480000px;}
.y88{bottom:844.560000px;}
.yd4{bottom:845.280000px;}
.y13{bottom:847.080000px;}
.y79{bottom:853.200000px;}
.y10c{bottom:860.760000px;}
.yd3{bottom:862.560000px;}
.y46{bottom:864.720000px;}
.y87{bottom:865.080000px;}
.y12{bottom:867.960000px;}
.y78{bottom:874.080000px;}
.y10b{bottom:878.040000px;}
.yd2{bottom:879.840000px;}
.y45{bottom:885.960000px;}
.y11{bottom:888.480000px;}
.y77{bottom:894.600000px;}
.y10a{bottom:895.320000px;}
.yd1{bottom:897.120000px;}
.y44{bottom:906.480000px;}
.y10{bottom:909.360000px;}
.y109{bottom:912.600000px;}
.yd0{bottom:914.400000px;}
.y76{bottom:915.480000px;}
.y43{bottom:927.360000px;}
.yf{bottom:929.880000px;}
.ycf{bottom:931.680000px;}
.y75{bottom:936.000000px;}
.y108{bottom:947.160000px;}
.y42{bottom:947.880000px;}
.yce{bottom:948.960000px;}
.ye{bottom:950.400000px;}
.y74{bottom:956.880000px;}
.y107{bottom:964.440000px;}
.ycd{bottom:966.240000px;}
.y41{bottom:968.760000px;}
.yd{bottom:970.920000px;}
.y73{bottom:977.400000px;}
.y106{bottom:981.720000px;}
.ycc{bottom:983.520000px;}
.yc{bottom:988.200000px;}
.yb2{bottom:988.920000px;}
.y40{bottom:989.280000px;}
.y72{bottom:998.280000px;}
.y105{bottom:999.000000px;}
.ycb{bottom:1000.800000px;}
.yaf{bottom:1009.800000px;}
.y3f{bottom:1010.160000px;}
.yb{bottom:1014.840000px;}
.y104{bottom:1016.280000px;}
.yca{bottom:1018.080000px;}
.y71{bottom:1018.800000px;}
.y3e{bottom:1030.680000px;}
.y103{bottom:1033.560000px;}
.ya{bottom:1035.000000px;}
.yc9{bottom:1035.360000px;}
.y70{bottom:1039.680000px;}
.y102{bottom:1050.480000px;}
.y3d{bottom:1051.560000px;}
.yc8{bottom:1052.280000px;}
.y9{bottom:1054.800000px;}
.y6f{bottom:1060.200000px;}
.y101{bottom:1067.760000px;}
.yc7{bottom:1069.560000px;}
.y3c{bottom:1072.080000px;}
.y6e{bottom:1081.080000px;}
.y100{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.yc6{bottom:1086.840000px;}
.y3b{bottom:1092.960000px;}
.y6d{bottom:1101.600000px;}
.yff{bottom:1102.320000px;}
.yc5{bottom:1104.120000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.yfe{bottom:1119.600000px;}
.y6c{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.yfd{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.y6b{bottom:1192.320000px;}
.h5{height:24.000000px;}
.h7{height:41.993438px;}
.hb{height:42.022969px;}
.h3{height:44.149219px;}
.hd{height:48.595781px;}
.ha{height:48.660480px;}
.h8{height:48.796875px;}
.h9{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.hc{height:55.666406px;}
.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;}
.xb{left:127.439928px;}
.x2{left:129.266964px;}
.x4{left:154.439928px;}
.xc{left:169.965072px;}
.x9{left:182.656116px;}
.x1{left:242.852076px;}
.x6{left:250.066044px;}
.xe{left:293.696424px;}
.x7{left:303.986916px;}
.xa{left:367.805160px;}
.x8{left:369.388440px;}
.x3{left:446.152320px;}
.xd{left:534.392985px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls37{letter-spacing:-1.478400pt;}
.ls32{letter-spacing:-1.435392pt;}
.ls33{letter-spacing:-1.419264pt;}
.ls30{letter-spacing:-1.408512pt;}
.ls1f{letter-spacing:-1.365504pt;}
.ls2d{letter-spacing:-1.349376pt;}
.ls2b{letter-spacing:-1.333248pt;}
.ls1e{letter-spacing:-1.317120pt;}
.ls2f{letter-spacing:-1.295616pt;}
.ls2a{letter-spacing:-1.279488pt;}
.ls28{letter-spacing:-1.263360pt;}
.ls31{letter-spacing:-1.225728pt;}
.ls2c{letter-spacing:-1.209600pt;}
.ls2e{letter-spacing:-1.193472pt;}
.ls29{letter-spacing:-1.171968pt;}
.ls34{letter-spacing:-1.134336pt;}
.lse{letter-spacing:-1.075200pt;}
.lsd{letter-spacing:-1.068800pt;}
.lsc{letter-spacing:-1.056000pt;}
.ls36{letter-spacing:-1.012608pt;}
.lsa{letter-spacing:-0.268800pt;}
.lsb{letter-spacing:-0.231168pt;}
.ls13{letter-spacing:-0.197120pt;}
.ls8{letter-spacing:-0.158976pt;}
.ls14{letter-spacing:-0.157696pt;}
.ls2{letter-spacing:-0.129536pt;}
.ls7{letter-spacing:-0.117760pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.047104pt;}
.ls9{letter-spacing:-0.019200pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.180224pt;}
.ls24{letter-spacing:0.724480pt;}
.ls25{letter-spacing:0.725760pt;}
.ls23{letter-spacing:2.065920pt;}
.ls15{letter-spacing:2.073600pt;}
.ls17{letter-spacing:2.127360pt;}
.ls10{letter-spacing:2.359424pt;}
.ls1{letter-spacing:3.189760pt;}
.ls18{letter-spacing:3.363840pt;}
.ls1d{letter-spacing:4.003840pt;}
.ls1c{letter-spacing:4.577280pt;}
.ls19{letter-spacing:5.191424pt;}
.ls1a{letter-spacing:5.191680pt;}
.ls20{letter-spacing:6.072320pt;}
.ls16{letter-spacing:6.511360pt;}
.ls0{letter-spacing:7.872000pt;}
.ls22{letter-spacing:8.057600pt;}
.ls12{letter-spacing:8.961280pt;}
.ls26{letter-spacing:11.026048pt;}
.ls21{letter-spacing:14.343680pt;}
.ls1b{letter-spacing:19.046912pt;}
.ls27{letter-spacing:20.337920pt;}
.ls11{letter-spacing:21.537280pt;}
.ls35{letter-spacing:47.238400pt;}
.ws0{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.945280pt;}
.ws4{word-spacing:-14.944000pt;}
.ws8{word-spacing:-14.931200pt;}
.ws6{word-spacing:-14.924800pt;}
.ws9{word-spacing:-13.628160pt;}
.wsb{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.208832pt;}
.wsd{word-spacing:-12.230400pt;}
.wsc{word-spacing:-12.160512pt;}
.wsf{word-spacing:-12.074496pt;}
.wse{word-spacing:-12.031488pt;}
.ws10{word-spacing:-12.020736pt;}
.ws2{word-spacing:-0.044800pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:0.978048pt;}
._15{margin-left:-1.827584pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.923008pt;}
._e{width:2.660992pt;}
._8{width:4.288000pt;}
._9{width:5.952000pt;}
._7{width:6.912000pt;}
._5{width:8.192000pt;}
._6{width:9.728000pt;}
._3{width:10.944000pt;}
._2{width:12.547584pt;}
._f{width:13.884416pt;}
._1d{width:14.837760pt;}
._a{width:16.563200pt;}
._10{width:17.484800pt;}
._12{width:18.688000pt;}
._4{width:20.352000pt;}
._18{width:21.440000pt;}
._13{width:22.592000pt;}
._16{width:24.384000pt;}
._14{width:25.920000pt;}
._22{width:27.363840pt;}
._11{width:28.352000pt;}
._d{width:29.424128pt;}
._17{width:30.495744pt;}
._c{width:34.496000pt;}
._b{width:40.960000pt;}
._1f{width:44.020352pt;}
._26{width:48.061440pt;}
._25{width:48.975360pt;}
._20{width:49.880192pt;}
._21{width:50.814592pt;}
._1b{width:63.813120pt;}
._1e{width:64.942080pt;}
._1a{width:107.265280pt;}
._19{width:108.702720pt;}
._1c{width:318.733952pt;}
._24{width:448.633472pt;}
._23{width:449.702400pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.yc4{bottom:80.960000pt;}
.y6a{bottom:85.440000pt;}
.y35{bottom:92.800000pt;}
.ya4{bottom:96.000000pt;}
.yc3{bottom:99.200000pt;}
.y69{bottom:103.680000pt;}
.y34{bottom:111.360000pt;}
.ya3{bottom:114.560000pt;}
.y68{bottom:122.240000pt;}
.yfc{bottom:122.880000pt;}
.yc2{bottom:128.000000pt;}
.y33{bottom:129.600000pt;}
.ya2{bottom:132.800000pt;}
.yfb{bottom:138.240000pt;}
.y67{bottom:140.480000pt;}
.yc1{bottom:145.920000pt;}
.y32{bottom:148.160000pt;}
.ya1{bottom:151.360000pt;}
.yfa{bottom:153.600000pt;}
.y66{bottom:159.040000pt;}
.yc0{bottom:162.240000pt;}
.y31{bottom:166.400000pt;}
.yf9{bottom:168.960000pt;}
.ya6{bottom:169.280000pt;}
.ya0{bottom:169.600000pt;}
.y65{bottom:177.280000pt;}
.ybf{bottom:180.480000pt;}
.yf8{bottom:184.320000pt;}
.y30{bottom:184.960000pt;}
.y9f{bottom:188.160000pt;}
.y64{bottom:195.840000pt;}
.ybe{bottom:199.040000pt;}
.yf7{bottom:199.680000pt;}
.y2f{bottom:203.200000pt;}
.y9e{bottom:206.400000pt;}
.y63{bottom:214.080000pt;}
.yf6{bottom:215.040000pt;}
.ybd{bottom:217.280000pt;}
.y2e{bottom:221.760000pt;}
.y9d{bottom:224.960000pt;}
.yf5{bottom:230.080000pt;}
.y62{bottom:232.640000pt;}
.ybc{bottom:235.840000pt;}
.y2d{bottom:240.000000pt;}
.y9c{bottom:243.200000pt;}
.yf4{bottom:245.440000pt;}
.y61{bottom:250.880000pt;}
.ybb{bottom:254.080000pt;}
.y2c{bottom:258.560000pt;}
.yf3{bottom:260.800000pt;}
.y9b{bottom:261.760000pt;}
.y60{bottom:269.440000pt;}
.yba{bottom:272.640000pt;}
.yf2{bottom:276.160000pt;}
.y2b{bottom:276.800000pt;}
.y9a{bottom:280.000000pt;}
.y5f{bottom:287.680000pt;}
.yb9{bottom:290.880000pt;}
.yf1{bottom:291.520000pt;}
.y2a{bottom:295.360000pt;}
.y99{bottom:298.560000pt;}
.y5e{bottom:306.240000pt;}
.yf0{bottom:306.880000pt;}
.yb8{bottom:309.440000pt;}
.y29{bottom:313.600000pt;}
.y98{bottom:316.800000pt;}
.yef{bottom:322.240000pt;}
.y5d{bottom:324.480000pt;}
.yb7{bottom:327.680000pt;}
.y28{bottom:332.160000pt;}
.y86{bottom:335.040000pt;}
.y97{bottom:335.360000pt;}
.yee{bottom:337.600000pt;}
.y5c{bottom:343.040000pt;}
.yb6{bottom:346.240000pt;}
.y27{bottom:350.400000pt;}
.yed{bottom:352.960000pt;}
.y85{bottom:353.600000pt;}
.y5b{bottom:361.280000pt;}
.yae{bottom:364.160000pt;}
.yb5{bottom:364.480000pt;}
.yec{bottom:368.320000pt;}
.y26{bottom:368.960000pt;}
.yb0{bottom:371.840000pt;}
.y84{bottom:372.160000pt;}
.y5a{bottom:379.840000pt;}
.yad{bottom:382.720000pt;}
.yeb{bottom:383.680000pt;}
.y25{bottom:387.200000pt;}
.y83{bottom:390.400000pt;}
.y59{bottom:398.080000pt;}
.yea{bottom:398.720000pt;}
.yac{bottom:401.280000pt;}
.y24{bottom:405.760000pt;}
.y82{bottom:408.960000pt;}
.yb4{bottom:411.520000pt;}
.ye9{bottom:414.080000pt;}
.y58{bottom:416.640000pt;}
.yab{bottom:419.520000pt;}
.y81{bottom:427.200000pt;}
.yb3{bottom:429.440000pt;}
.y23{bottom:434.240000pt;}
.y57{bottom:434.880000pt;}
.yaa{bottom:438.080000pt;}
.ye8{bottom:444.800000pt;}
.y80{bottom:445.760000pt;}
.y56{bottom:453.440000pt;}
.ya9{bottom:456.320000pt;}
.ye7{bottom:460.160000pt;}
.y22{bottom:460.800000pt;}
.y7f{bottom:464.000000pt;}
.y55{bottom:471.680000pt;}
.ya8{bottom:474.880000pt;}
.ye6{bottom:475.520000pt;}
.y7e{bottom:482.560000pt;}
.y21{bottom:487.040000pt;}
.y54{bottom:490.240000pt;}
.ye5{bottom:490.880000pt;}
.y96{bottom:492.800000pt;}
.ya7{bottom:493.120000pt;}
.y7d{bottom:500.800000pt;}
.y20{bottom:505.920000pt;}
.ye4{bottom:506.240000pt;}
.y53{bottom:508.480000pt;}
.y95{bottom:511.680000pt;}
.y7c{bottom:519.360000pt;}
.ye3{bottom:521.600000pt;}
.y52{bottom:527.040000pt;}
.y94{bottom:529.920000pt;}
.y1f{bottom:531.840000pt;}
.ye2{bottom:536.960000pt;}
.y7b{bottom:537.600000pt;}
.y93{bottom:548.480000pt;}
.y1e{bottom:550.720000pt;}
.ye1{bottom:552.320000pt;}
.y51{bottom:555.840000pt;}
.y7a{bottom:556.160000pt;}
.y92{bottom:566.720000pt;}
.ye0{bottom:567.680000pt;}
.y1d{bottom:568.960000pt;}
.y50{bottom:574.400000pt;}
.y116{bottom:581.120000pt;}
.ydf{bottom:582.720000pt;}
.y91{bottom:585.280000pt;}
.y1c{bottom:587.520000pt;}
.y4f{bottom:592.960000pt;}
.y115{bottom:596.480000pt;}
.yde{bottom:598.080000pt;}
.y90{bottom:603.520000pt;}
.y1b{bottom:605.760000pt;}
.y4e{bottom:611.200000pt;}
.y114{bottom:611.840000pt;}
.ydd{bottom:613.440000pt;}
.y8f{bottom:622.080000pt;}
.y1a{bottom:624.320000pt;}
.y113{bottom:627.200000pt;}
.ydc{bottom:628.800000pt;}
.y4d{bottom:629.760000pt;}
.y8e{bottom:640.320000pt;}
.y19{bottom:642.560000pt;}
.ydb{bottom:644.160000pt;}
.y4c{bottom:648.000000pt;}
.y112{bottom:657.920000pt;}
.yb1{bottom:658.560000pt;}
.y8d{bottom:658.880000pt;}
.yda{bottom:659.520000pt;}
.y18{bottom:661.120000pt;}
.y4b{bottom:666.560000pt;}
.y111{bottom:673.280000pt;}
.yd9{bottom:674.880000pt;}
.y8c{bottom:677.120000pt;}
.y17{bottom:679.360000pt;}
.y4a{bottom:684.800000pt;}
.y110{bottom:688.640000pt;}
.yd8{bottom:690.240000pt;}
.ya5{bottom:695.040000pt;}
.y8b{bottom:695.360000pt;}
.y16{bottom:697.920000pt;}
.y49{bottom:703.360000pt;}
.y10f{bottom:704.000000pt;}
.yd7{bottom:705.600000pt;}
.y8a{bottom:713.920000pt;}
.y15{bottom:716.160000pt;}
.y10e{bottom:719.360000pt;}
.yd6{bottom:720.960000pt;}
.y48{bottom:721.600000pt;}
.y89{bottom:732.160000pt;}
.y14{bottom:734.720000pt;}
.yd5{bottom:736.320000pt;}
.y47{bottom:740.160000pt;}
.y10d{bottom:749.760000pt;}
.y88{bottom:750.720000pt;}
.yd4{bottom:751.360000pt;}
.y13{bottom:752.960000pt;}
.y79{bottom:758.400000pt;}
.y10c{bottom:765.120000pt;}
.yd3{bottom:766.720000pt;}
.y46{bottom:768.640000pt;}
.y87{bottom:768.960000pt;}
.y12{bottom:771.520000pt;}
.y78{bottom:776.960000pt;}
.y10b{bottom:780.480000pt;}
.yd2{bottom:782.080000pt;}
.y45{bottom:787.520000pt;}
.y11{bottom:789.760000pt;}
.y77{bottom:795.200000pt;}
.y10a{bottom:795.840000pt;}
.yd1{bottom:797.440000pt;}
.y44{bottom:805.760000pt;}
.y10{bottom:808.320000pt;}
.y109{bottom:811.200000pt;}
.yd0{bottom:812.800000pt;}
.y76{bottom:813.760000pt;}
.y43{bottom:824.320000pt;}
.yf{bottom:826.560000pt;}
.ycf{bottom:828.160000pt;}
.y75{bottom:832.000000pt;}
.y108{bottom:841.920000pt;}
.y42{bottom:842.560000pt;}
.yce{bottom:843.520000pt;}
.ye{bottom:844.800000pt;}
.y74{bottom:850.560000pt;}
.y107{bottom:857.280000pt;}
.ycd{bottom:858.880000pt;}
.y41{bottom:861.120000pt;}
.yd{bottom:863.040000pt;}
.y73{bottom:868.800000pt;}
.y106{bottom:872.640000pt;}
.ycc{bottom:874.240000pt;}
.yc{bottom:878.400000pt;}
.yb2{bottom:879.040000pt;}
.y40{bottom:879.360000pt;}
.y72{bottom:887.360000pt;}
.y105{bottom:888.000000pt;}
.ycb{bottom:889.600000pt;}
.yaf{bottom:897.600000pt;}
.y3f{bottom:897.920000pt;}
.yb{bottom:902.080000pt;}
.y104{bottom:903.360000pt;}
.yca{bottom:904.960000pt;}
.y71{bottom:905.600000pt;}
.y3e{bottom:916.160000pt;}
.y103{bottom:918.720000pt;}
.ya{bottom:920.000000pt;}
.yc9{bottom:920.320000pt;}
.y70{bottom:924.160000pt;}
.y102{bottom:933.760000pt;}
.y3d{bottom:934.720000pt;}
.yc8{bottom:935.360000pt;}
.y9{bottom:937.600000pt;}
.y6f{bottom:942.400000pt;}
.y101{bottom:949.120000pt;}
.yc7{bottom:950.720000pt;}
.y3c{bottom:952.960000pt;}
.y6e{bottom:960.960000pt;}
.y100{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.yc6{bottom:966.080000pt;}
.y3b{bottom:971.520000pt;}
.y6d{bottom:979.200000pt;}
.yff{bottom:979.840000pt;}
.yc5{bottom:981.440000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.yfe{bottom:995.200000pt;}
.y6c{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.yfd{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.y6b{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.h7{height:37.327500pt;}
.hb{height:37.353750pt;}
.h3{height:39.243750pt;}
.hd{height:43.196250pt;}
.ha{height:43.253760pt;}
.h8{height:43.375000pt;}
.h9{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.hc{height:49.481250pt;}
.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;}
.xb{left:113.279936pt;}
.x2{left:114.903968pt;}
.x4{left:137.279936pt;}
.xc{left:151.080064pt;}
.x9{left:162.360992pt;}
.x1{left:215.868512pt;}
.x6{left:222.280928pt;}
.xe{left:261.063488pt;}
.x7{left:270.210592pt;}
.xa{left:326.937920pt;}
.x8{left:328.345280pt;}
.x3{left:396.579840pt;}
.xd{left:475.015987pt;}
.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; }
  