
    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_a6acaaa77142c0b189b57baf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_06a854308fa6f2cd6e576feb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.013000;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_6cacfb154e18404d51b9f2ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042969;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_dec56310b8f189340fe08986.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.176270;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_e97acb3023c0ca01d1df075d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_a725b532c27e79587834e342.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_06d06fd93d82ecd2c38324bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_374801c024817c51dbb4c0df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_fd7957d9c4aa035c3b77553f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056152;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_355d0771c78630cfd0b34243.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.848145;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;}
.m4{transform:matrix(0.000000,-0.197170,0.246462,0.041910,0,0);-ms-transform:matrix(0.000000,-0.197170,0.246462,0.041910,0,0);-webkit-transform:matrix(0.000000,-0.197170,0.246462,0.041910,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.197170,0.000000,-0.041910,0.246462,0,0);-ms-transform:matrix(0.197170,0.000000,-0.041910,0.246462,0,0);-webkit-transform:matrix(0.197170,0.000000,-0.041910,0.246462,0,0);}
.m1{transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,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);}
.v3{vertical-align:-14.812521px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.811480px;}
.v2{vertical-align:22.875000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.005130px;}
.ls5{letter-spacing:0.132000px;}
.ls8{letter-spacing:0.164250px;}
.ls7{letter-spacing:0.330000px;}
.ls9{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.730335px;}
.lsb{letter-spacing:0.960000px;}
.ls3{letter-spacing:16.493250px;}
.ls6{letter-spacing:17.544750px;}
.ls4{letter-spacing:18.150000px;}
.ls1{letter-spacing:19.251000px;}
.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:-37.296000px;}
.ws4{word-spacing:-27.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.896000px;}
.ws7{word-spacing:-16.500000px;}
.ws18{word-spacing:-12.000000px;}
.ws17{word-spacing:-11.676000px;}
.wsf{word-spacing:-8.250000px;}
.ws13{word-spacing:-5.838000px;}
.wsc{word-spacing:-1.998480px;}
.wsd{word-spacing:-0.110160px;}
.ws1{word-spacing:-0.097188px;}
.ws2{word-spacing:-0.049320px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:0.199980px;}
.ws19{word-spacing:0.664800px;}
.wse{word-spacing:1.011120px;}
.ws16{word-spacing:1.590600px;}
.ws6{word-spacing:2.730420px;}
.wsb{word-spacing:3.993000px;}
.ws12{word-spacing:5.349960px;}
.ws8{word-spacing:10.338240px;}
.ws15{word-spacing:10.610250px;}
.ws9{word-spacing:11.088660px;}
.ws14{word-spacing:14.324640px;}
.ws11{word-spacing:20.550000px;}
._b{margin-left:-8.270654px;}
._5{margin-left:-6.147374px;}
._15{margin-left:-4.671988px;}
._c{margin-left:-3.570300px;}
._0{margin-left:-2.294460px;}
._6{margin-left:-1.213080px;}
._4{width:1.199686px;}
._2{width:2.241914px;}
._1{width:3.477600px;}
._3{width:5.260918px;}
._8{width:6.273012px;}
._7{width:7.722660px;}
._9{width:8.755560px;}
._a{width:10.351440px;}
._d{width:12.301740px;}
._e{width:14.104860px;}
._14{width:15.610798px;}
._1c{width:17.534220px;}
._10{width:18.551940px;}
._11{width:19.591080px;}
._18{width:20.678220px;}
._1b{width:22.177202px;}
._17{width:24.135573px;}
._16{width:25.243601px;}
._1f{width:27.043800px;}
._f{width:28.170120px;}
._20{width:29.515860px;}
._19{width:30.903840px;}
._1d{width:32.057342px;}
._13{width:34.358940px;}
._12{width:36.480180px;}
._1e{width:37.562880px;}
._1a{width:41.598644px;}
._22{width:53.308800px;}
._21{width:55.305600px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:21.000000px;}
.fse{font-size:33.000000px;}
.fsc{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs3{font-size:49.320000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:73.033543px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:97.188000px;}
.fsa{font-size:108.000000px;}
.fs0{font-size:126.000000px;}
.fs1{font-size:1152.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:67.731150px;}
.y24{bottom:68.202300px;}
.y23{bottom:81.702300px;}
.y49{bottom:128.539650px;}
.yce{bottom:128.539665px;}
.y1a{bottom:128.539800px;}
.y93{bottom:128.539815px;}
.y101{bottom:129.796170px;}
.y98{bottom:132.454785px;}
.y100{bottom:144.796170px;}
.y97{bottom:145.954740px;}
.y48{bottom:147.844650px;}
.ycd{bottom:147.844665px;}
.y19{bottom:147.844800px;}
.y92{bottom:147.844815px;}
.y96{bottom:159.454695px;}
.yff{bottom:164.047770px;}
.y47{bottom:167.149650px;}
.ycc{bottom:167.149665px;}
.y18{bottom:167.149800px;}
.y91{bottom:167.149815px;}
.y95{bottom:172.954650px;}
.yfe{bottom:183.299370px;}
.y46{bottom:186.454650px;}
.ycb{bottom:186.454665px;}
.y17{bottom:186.454800px;}
.y90{bottom:186.454815px;}
.yfd{bottom:198.299370px;}
.yca{bottom:205.759665px;}
.y16{bottom:205.759800px;}
.y8f{bottom:205.759815px;}
.yfc{bottom:217.550970px;}
.y45{bottom:220.564800px;}
.yc9{bottom:225.064665px;}
.y15{bottom:225.064800px;}
.y8e{bottom:225.064815px;}
.yfb{bottom:236.802570px;}
.y44{bottom:239.869800px;}
.yc8{bottom:244.369665px;}
.y14{bottom:244.369800px;}
.y8d{bottom:244.369815px;}
.yfa{bottom:251.802570px;}
.y5b{bottom:259.174800px;}
.yc7{bottom:263.674665px;}
.y13{bottom:263.674800px;}
.y8c{bottom:263.674815px;}
.yf9{bottom:271.054170px;}
.yc6{bottom:282.979665px;}
.y12{bottom:282.979800px;}
.y8b{bottom:282.979815px;}
.yf8{bottom:290.305770px;}
.y63{bottom:297.784800px;}
.yc5{bottom:302.284665px;}
.y11{bottom:302.284800px;}
.y8a{bottom:302.284815px;}
.yf7{bottom:305.305770px;}
.yc4{bottom:321.589665px;}
.y10{bottom:321.589800px;}
.y89{bottom:321.589815px;}
.yf6{bottom:324.557370px;}
.yf5{bottom:339.557370px;}
.yc3{bottom:340.894665px;}
.yf{bottom:340.894800px;}
.y88{bottom:340.894815px;}
.yf4{bottom:358.808970px;}
.yc2{bottom:360.199665px;}
.ye{bottom:360.199800px;}
.y87{bottom:360.199815px;}
.yf3{bottom:373.808970px;}
.yc1{bottom:379.504665px;}
.yd{bottom:379.504800px;}
.y86{bottom:379.504815px;}
.yf2{bottom:388.808970px;}
.yc0{bottom:398.809665px;}
.yc{bottom:398.809800px;}
.y85{bottom:398.809815px;}
.yf1{bottom:408.061050px;}
.y107{bottom:408.811980px;}
.ybf{bottom:418.114665px;}
.yb{bottom:418.114800px;}
.y84{bottom:418.114815px;}
.yf0{bottom:423.061050px;}
.y43{bottom:427.834980px;}
.y106{bottom:429.812040px;}
.ybe{bottom:437.419665px;}
.y5a{bottom:437.419800px;}
.y83{bottom:437.419815px;}
.y42{bottom:441.334935px;}
.yef{bottom:442.312890px;}
.y105{bottom:450.812100px;}
.ya{bottom:452.224800px;}
.y41{bottom:454.834890px;}
.y62{bottom:456.724665px;}
.y6b{bottom:456.724800px;}
.y82{bottom:456.724815px;}
.yee{bottom:457.312890px;}
.y40{bottom:468.334845px;}
.y9{bottom:471.529800px;}
.y104{bottom:471.812160px;}
.yed{bottom:472.312890px;}
.y61{bottom:476.029665px;}
.y6a{bottom:476.029800px;}
.y81{bottom:476.029815px;}
.y3f{bottom:481.834800px;}
.yec{bottom:487.312890px;}
.y59{bottom:490.834800px;}
.y103{bottom:492.812220px;}
.y60{bottom:495.334665px;}
.y69{bottom:495.334800px;}
.y80{bottom:495.334815px;}
.y6f{bottom:501.316140px;}
.yeb{bottom:502.312890px;}
.y6{bottom:502.871550px;}
.y9a{bottom:510.139800px;}
.y102{bottom:513.812280px;}
.y3e{bottom:514.639665px;}
.y68{bottom:514.639800px;}
.y7f{bottom:514.639815px;}
.yea{bottom:517.312890px;}
.y6e{bottom:522.316200px;}
.y99{bottom:529.444800px;}
.ye9{bottom:532.312890px;}
.y3d{bottom:533.944665px;}
.y67{bottom:533.944800px;}
.y7e{bottom:533.944815px;}
.yd5{bottom:534.812340px;}
.y6d{bottom:543.316260px;}
.ye8{bottom:547.312890px;}
.y3c{bottom:553.249500px;}
.y7d{bottom:553.249650px;}
.yd4{bottom:555.812400px;}
.ye7{bottom:562.312890px;}
.y6c{bottom:564.316320px;}
.yb2{bottom:564.859695px;}
.y66{bottom:570.664740px;}
.y3b{bottom:572.554500px;}
.y7c{bottom:572.554650px;}
.y20{bottom:575.854200px;}
.yd3{bottom:576.812460px;}
.ye6{bottom:577.312890px;}
.yb1{bottom:578.359650px;}
.y65{bottom:584.164695px;}
.y5f{bottom:585.316380px;}
.yaa{bottom:589.308600px;}
.y3a{bottom:591.859500px;}
.y7b{bottom:591.859650px;}
.ye5{bottom:592.312890px;}
.y1f{bottom:595.654200px;}
.y64{bottom:597.664650px;}
.yd2{bottom:597.812520px;}
.y5e{bottom:606.316440px;}
.yb0{bottom:606.664650px;}
.ya9{bottom:610.308660px;}
.y39{bottom:611.164500px;}
.y7a{bottom:611.164650px;}
.ye4{bottom:611.564970px;}
.y1e{bottom:615.454200px;}
.yd1{bottom:618.812580px;}
.yaf{bottom:625.969650px;}
.ye3{bottom:626.564970px;}
.y5d{bottom:627.316500px;}
.y38{bottom:630.469500px;}
.y79{bottom:630.469650px;}
.ya8{bottom:631.308720px;}
.y1d{bottom:635.254200px;}
.yd0{bottom:639.812640px;}
.ye2{bottom:641.564970px;}
.yae{bottom:645.274650px;}
.y5c{bottom:648.316560px;}
.y37{bottom:649.774500px;}
.y78{bottom:649.774650px;}
.ya7{bottom:652.308780px;}
.ycf{bottom:660.812700px;}
.ye1{bottom:660.816810px;}
.y36{bottom:669.079500px;}
.y77{bottom:669.079650px;}
.y58{bottom:669.316620px;}
.y1c{bottom:673.054200px;}
.ye0{bottom:675.816810px;}
.ybd{bottom:676.909734px;}
.ya6{bottom:681.812760px;}
.y35{bottom:688.384500px;}
.y76{bottom:688.384650px;}
.y57{bottom:690.316680px;}
.ybc{bottom:690.409714px;}
.yad{bottom:692.299740px;}
.ydf{bottom:695.068650px;}
.y1b{bottom:701.554200px;}
.ya5{bottom:702.812820px;}
.y94{bottom:703.189650px;}
.ybb{bottom:703.909694px;}
.yac{bottom:705.799695px;}
.y9e{bottom:707.689485px;}
.y34{bottom:707.689500px;}
.yde{bottom:710.068650px;}
.y56{bottom:711.316740px;}
.yba{bottom:717.409675px;}
.yab{bottom:719.299650px;}
.y75{bottom:722.494650px;}
.ya4{bottom:723.812880px;}
.y9d{bottom:726.994485px;}
.y33{bottom:726.994500px;}
.ydd{bottom:729.320730px;}
.yb9{bottom:730.909630px;}
.y55{bottom:732.316800px;}
.ydc{bottom:744.320730px;}
.yb8{bottom:744.409715px;}
.ya3{bottom:744.812940px;}
.y9c{bottom:746.299485px;}
.y32{bottom:746.299500px;}
.y54{bottom:753.316860px;}
.yb7{bottom:757.909695px;}
.ydb{bottom:763.572570px;}
.y74{bottom:765.604485px;}
.y31{bottom:765.604500px;}
.ya2{bottom:765.813000px;}
.y5{bottom:768.371550px;}
.yb6{bottom:771.409650px;}
.y53{bottom:774.316920px;}
.yda{bottom:778.572570px;}
.y73{bottom:784.909650px;}
.y30{bottom:784.909665px;}
.ya1{bottom:786.813060px;}
.y52{bottom:795.316980px;}
.yd9{bottom:797.824650px;}
.y4{bottom:799.871550px;}
.y72{bottom:804.214485px;}
.y2f{bottom:804.214500px;}
.ya0{bottom:807.813120px;}
.yd8{bottom:812.824650px;}
.y51{bottom:816.317040px;}
.y71{bottom:823.519650px;}
.y2e{bottom:823.519665px;}
.yd7{bottom:827.824650px;}
.y9f{bottom:828.813180px;}
.y3{bottom:831.371550px;}
.y50{bottom:837.317100px;}
.y70{bottom:842.824650px;}
.y2d{bottom:842.824665px;}
.yd6{bottom:857.629650px;}
.y4f{bottom:858.317160px;}
.y9b{bottom:862.129650px;}
.y2c{bottom:862.129665px;}
.y2{bottom:862.871550px;}
.y4e{bottom:879.317220px;}
.y2b{bottom:881.434500px;}
.y1{bottom:894.371550px;}
.y4d{bottom:900.317280px;}
.y2a{bottom:900.739500px;}
.y29{bottom:920.044500px;}
.y4c{bottom:921.317340px;}
.y22{bottom:929.409450px;}
.y8{bottom:930.247200px;}
.yb5{bottom:936.425315px;}
.y21{bottom:938.211000px;}
.y28{bottom:939.349500px;}
.y4b{bottom:942.317400px;}
.y7{bottom:945.561600px;}
.yb4{bottom:949.925270px;}
.y27{bottom:958.654500px;}
.yb3{bottom:963.425250px;}
.y4a{bottom:1038.851250px;}
.y26{bottom:1147.996050px;}
.hf{height:30.946289px;}
.h12{height:30.946608px;}
.he{height:33.696000px;}
.h5{height:36.348840px;}
.h14{height:37.429688px;}
.h13{height:43.148438px;}
.hc{height:46.887535px;}
.ha{height:51.465820px;}
.hb{height:53.935547px;}
.h6{height:56.144531px;}
.h7{height:59.329102px;}
.h10{height:59.329642px;}
.h11{height:59.329762px;}
.h9{height:60.823242px;}
.h4{height:71.627556px;}
.h8{height:74.859375px;}
.h2{height:96.768000px;}
.hd{height:97.083984px;}
.h3{height:884.736000px;}
.h0{height:1118.977200px;}
.h1{height:1119.000000px;}
.w1{width:795.750000px;}
.w0{width:795.825750px;}
.x0{left:0.000000px;}
.x10{left:6.980250px;}
.x15{left:59.541600px;}
.x11{left:87.519600px;}
.x37{left:88.866744px;}
.x20{left:89.935662px;}
.x1b{left:91.538382px;}
.x2e{left:93.716478px;}
.x19{left:97.536126px;}
.x3d{left:98.872062px;}
.x1{left:100.042350px;}
.x3b{left:102.719598px;}
.x25{left:104.071392px;}
.x27{left:105.653808px;}
.x1e{left:107.736654px;}
.x28{left:110.285568px;}
.x35{left:111.466536px;}
.x12{left:113.031108px;}
.x3c{left:114.433710px;}
.x21{left:116.432814px;}
.x2a{left:118.441494px;}
.x18{left:120.663534px;}
.x17{left:122.760750px;}
.x2b{left:125.678790px;}
.x1d{left:127.765182px;}
.x36{left:129.579864px;}
.x24{left:131.234688px;}
.x1a{left:132.542526px;}
.x1f{left:135.132654px;}
.x1c{left:136.726446px;}
.x23{left:144.097200px;}
.x2c{left:146.827062px;}
.x34{left:149.922600px;}
.x29{left:151.554240px;}
.x2f{left:154.814238px;}
.x31{left:156.809358px;}
.x26{left:161.662896px;}
.x39{left:163.492350px;}
.x2d{left:165.628350px;}
.x30{left:168.549822px;}
.x13{left:172.559100px;}
.x3a{left:177.203598px;}
.x33{left:195.042222px;}
.x38{left:207.195720px;}
.x32{left:231.597630px;}
.x4{left:278.858850px;}
.x16{left:289.811700px;}
.x5{left:304.374714px;}
.x7{left:316.281840px;}
.x6{left:354.841200px;}
.x22{left:363.898200px;}
.x9{left:470.952900px;}
.xa{left:519.460656px;}
.x14{left:533.976150px;}
.x2{left:538.653300px;}
.x8{left:540.373950px;}
.xe{left:542.702495px;}
.xd{left:582.214050px;}
.x3{left:644.210700px;}
.xf{left:710.433600px;}
.xb{left:726.936900px;}
.xc{left:747.036600px;}
@media print{
.v3{vertical-align:-13.166686pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.165760pt;}
.v2{vertical-align:20.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004560pt;}
.ls5{letter-spacing:0.117333pt;}
.ls8{letter-spacing:0.146000pt;}
.ls7{letter-spacing:0.293333pt;}
.ls9{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.649187pt;}
.lsb{letter-spacing:0.853333pt;}
.ls3{letter-spacing:14.660667pt;}
.ls6{letter-spacing:15.595333pt;}
.ls4{letter-spacing:16.133333pt;}
.ls1{letter-spacing:17.112000pt;}
.ws0{word-spacing:-33.152000pt;}
.ws4{word-spacing:-24.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.018667pt;}
.ws7{word-spacing:-14.666667pt;}
.ws18{word-spacing:-10.666667pt;}
.ws17{word-spacing:-10.378667pt;}
.wsf{word-spacing:-7.333333pt;}
.ws13{word-spacing:-5.189333pt;}
.wsc{word-spacing:-1.776427pt;}
.wsd{word-spacing:-0.097920pt;}
.ws1{word-spacing:-0.086389pt;}
.ws2{word-spacing:-0.043840pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:0.177760pt;}
.ws19{word-spacing:0.590933pt;}
.wse{word-spacing:0.898773pt;}
.ws16{word-spacing:1.413867pt;}
.ws6{word-spacing:2.427040pt;}
.wsb{word-spacing:3.549333pt;}
.ws12{word-spacing:4.755520pt;}
.ws8{word-spacing:9.189547pt;}
.ws15{word-spacing:9.431333pt;}
.ws9{word-spacing:9.856587pt;}
.ws14{word-spacing:12.733013pt;}
.ws11{word-spacing:18.266667pt;}
._b{margin-left:-7.351692pt;}
._5{margin-left:-5.464332pt;}
._15{margin-left:-4.152878pt;}
._c{margin-left:-3.173600pt;}
._0{margin-left:-2.039520pt;}
._6{margin-left:-1.078293pt;}
._4{width:1.066388pt;}
._2{width:1.992812pt;}
._1{width:3.091200pt;}
._3{width:4.676371pt;}
._8{width:5.576011pt;}
._7{width:6.864587pt;}
._9{width:7.782720pt;}
._a{width:9.201280pt;}
._d{width:10.934880pt;}
._e{width:12.537653pt;}
._14{width:13.876265pt;}
._1c{width:15.585973pt;}
._10{width:16.490613pt;}
._11{width:17.414293pt;}
._18{width:18.380640pt;}
._1b{width:19.713069pt;}
._17{width:21.453843pt;}
._16{width:22.438757pt;}
._1f{width:24.038933pt;}
._f{width:25.040107pt;}
._20{width:26.236320pt;}
._19{width:27.470080pt;}
._1d{width:28.495415pt;}
._13{width:30.541280pt;}
._12{width:32.426827pt;}
._1e{width:33.389227pt;}
._1a{width:36.976573pt;}
._22{width:47.385600pt;}
._21{width:49.160533pt;}
.fsd{font-size:18.666667pt;}
.fse{font-size:29.333333pt;}
.fsc{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs3{font-size:43.840000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:64.918705pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:86.389333pt;}
.fsa{font-size:96.000000pt;}
.fs0{font-size:112.000000pt;}
.fs1{font-size:1024.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:60.205467pt;}
.y24{bottom:60.624267pt;}
.y23{bottom:72.624267pt;}
.y49{bottom:114.257467pt;}
.yce{bottom:114.257480pt;}
.y1a{bottom:114.257600pt;}
.y93{bottom:114.257613pt;}
.y101{bottom:115.374373pt;}
.y98{bottom:117.737587pt;}
.y100{bottom:128.707707pt;}
.y97{bottom:129.737547pt;}
.y48{bottom:131.417467pt;}
.ycd{bottom:131.417480pt;}
.y19{bottom:131.417600pt;}
.y92{bottom:131.417613pt;}
.y96{bottom:141.737507pt;}
.yff{bottom:145.820240pt;}
.y47{bottom:148.577467pt;}
.ycc{bottom:148.577480pt;}
.y18{bottom:148.577600pt;}
.y91{bottom:148.577613pt;}
.y95{bottom:153.737467pt;}
.yfe{bottom:162.932773pt;}
.y46{bottom:165.737467pt;}
.ycb{bottom:165.737480pt;}
.y17{bottom:165.737600pt;}
.y90{bottom:165.737613pt;}
.yfd{bottom:176.266107pt;}
.yca{bottom:182.897480pt;}
.y16{bottom:182.897600pt;}
.y8f{bottom:182.897613pt;}
.yfc{bottom:193.378640pt;}
.y45{bottom:196.057600pt;}
.yc9{bottom:200.057480pt;}
.y15{bottom:200.057600pt;}
.y8e{bottom:200.057613pt;}
.yfb{bottom:210.491173pt;}
.y44{bottom:213.217600pt;}
.yc8{bottom:217.217480pt;}
.y14{bottom:217.217600pt;}
.y8d{bottom:217.217613pt;}
.yfa{bottom:223.824507pt;}
.y5b{bottom:230.377600pt;}
.yc7{bottom:234.377480pt;}
.y13{bottom:234.377600pt;}
.y8c{bottom:234.377613pt;}
.yf9{bottom:240.937040pt;}
.yc6{bottom:251.537480pt;}
.y12{bottom:251.537600pt;}
.y8b{bottom:251.537613pt;}
.yf8{bottom:258.049573pt;}
.y63{bottom:264.697600pt;}
.yc5{bottom:268.697480pt;}
.y11{bottom:268.697600pt;}
.y8a{bottom:268.697613pt;}
.yf7{bottom:271.382907pt;}
.yc4{bottom:285.857480pt;}
.y10{bottom:285.857600pt;}
.y89{bottom:285.857613pt;}
.yf6{bottom:288.495440pt;}
.yf5{bottom:301.828773pt;}
.yc3{bottom:303.017480pt;}
.yf{bottom:303.017600pt;}
.y88{bottom:303.017613pt;}
.yf4{bottom:318.941307pt;}
.yc2{bottom:320.177480pt;}
.ye{bottom:320.177600pt;}
.y87{bottom:320.177613pt;}
.yf3{bottom:332.274640pt;}
.yc1{bottom:337.337480pt;}
.yd{bottom:337.337600pt;}
.y86{bottom:337.337613pt;}
.yf2{bottom:345.607973pt;}
.yc0{bottom:354.497480pt;}
.yc{bottom:354.497600pt;}
.y85{bottom:354.497613pt;}
.yf1{bottom:362.720933pt;}
.y107{bottom:363.388427pt;}
.ybf{bottom:371.657480pt;}
.yb{bottom:371.657600pt;}
.y84{bottom:371.657613pt;}
.yf0{bottom:376.054267pt;}
.y43{bottom:380.297760pt;}
.y106{bottom:382.055147pt;}
.ybe{bottom:388.817480pt;}
.y5a{bottom:388.817600pt;}
.y83{bottom:388.817613pt;}
.y42{bottom:392.297720pt;}
.yef{bottom:393.167013pt;}
.y105{bottom:400.721867pt;}
.ya{bottom:401.977600pt;}
.y41{bottom:404.297680pt;}
.y62{bottom:405.977480pt;}
.y6b{bottom:405.977600pt;}
.y82{bottom:405.977613pt;}
.yee{bottom:406.500347pt;}
.y40{bottom:416.297640pt;}
.y9{bottom:419.137600pt;}
.y104{bottom:419.388587pt;}
.yed{bottom:419.833680pt;}
.y61{bottom:423.137480pt;}
.y6a{bottom:423.137600pt;}
.y81{bottom:423.137613pt;}
.y3f{bottom:428.297600pt;}
.yec{bottom:433.167013pt;}
.y59{bottom:436.297600pt;}
.y103{bottom:438.055307pt;}
.y60{bottom:440.297480pt;}
.y69{bottom:440.297600pt;}
.y80{bottom:440.297613pt;}
.y6f{bottom:445.614347pt;}
.yeb{bottom:446.500347pt;}
.y6{bottom:446.996933pt;}
.y9a{bottom:453.457600pt;}
.y102{bottom:456.722027pt;}
.y3e{bottom:457.457480pt;}
.y68{bottom:457.457600pt;}
.y7f{bottom:457.457613pt;}
.yea{bottom:459.833680pt;}
.y6e{bottom:464.281067pt;}
.y99{bottom:470.617600pt;}
.ye9{bottom:473.167013pt;}
.y3d{bottom:474.617480pt;}
.y67{bottom:474.617600pt;}
.y7e{bottom:474.617613pt;}
.yd5{bottom:475.388747pt;}
.y6d{bottom:482.947787pt;}
.ye8{bottom:486.500347pt;}
.y3c{bottom:491.777333pt;}
.y7d{bottom:491.777467pt;}
.yd4{bottom:494.055467pt;}
.ye7{bottom:499.833680pt;}
.y6c{bottom:501.614507pt;}
.yb2{bottom:502.097507pt;}
.y66{bottom:507.257547pt;}
.y3b{bottom:508.937333pt;}
.y7c{bottom:508.937467pt;}
.y20{bottom:511.870400pt;}
.yd3{bottom:512.722187pt;}
.ye6{bottom:513.167013pt;}
.yb1{bottom:514.097467pt;}
.y65{bottom:519.257507pt;}
.y5f{bottom:520.281227pt;}
.yaa{bottom:523.829867pt;}
.y3a{bottom:526.097333pt;}
.y7b{bottom:526.097467pt;}
.ye5{bottom:526.500347pt;}
.y1f{bottom:529.470400pt;}
.y64{bottom:531.257467pt;}
.yd2{bottom:531.388907pt;}
.y5e{bottom:538.947947pt;}
.yb0{bottom:539.257467pt;}
.ya9{bottom:542.496587pt;}
.y39{bottom:543.257333pt;}
.y7a{bottom:543.257467pt;}
.ye4{bottom:543.613307pt;}
.y1e{bottom:547.070400pt;}
.yd1{bottom:550.055627pt;}
.yaf{bottom:556.417467pt;}
.ye3{bottom:556.946640pt;}
.y5d{bottom:557.614667pt;}
.y38{bottom:560.417333pt;}
.y79{bottom:560.417467pt;}
.ya8{bottom:561.163307pt;}
.y1d{bottom:564.670400pt;}
.yd0{bottom:568.722347pt;}
.ye2{bottom:570.279973pt;}
.yae{bottom:573.577467pt;}
.y5c{bottom:576.281387pt;}
.y37{bottom:577.577333pt;}
.y78{bottom:577.577467pt;}
.ya7{bottom:579.830027pt;}
.ycf{bottom:587.389067pt;}
.ye1{bottom:587.392720pt;}
.y36{bottom:594.737333pt;}
.y77{bottom:594.737467pt;}
.y58{bottom:594.948107pt;}
.y1c{bottom:598.270400pt;}
.ye0{bottom:600.726053pt;}
.ybd{bottom:601.697541pt;}
.ya6{bottom:606.055787pt;}
.y35{bottom:611.897333pt;}
.y76{bottom:611.897467pt;}
.y57{bottom:613.614827pt;}
.ybc{bottom:613.697524pt;}
.yad{bottom:615.377547pt;}
.ydf{bottom:617.838800pt;}
.y1b{bottom:623.603733pt;}
.ya5{bottom:624.722507pt;}
.y94{bottom:625.057467pt;}
.ybb{bottom:625.697506pt;}
.yac{bottom:627.377507pt;}
.y9e{bottom:629.057320pt;}
.y34{bottom:629.057333pt;}
.yde{bottom:631.172133pt;}
.y56{bottom:632.281547pt;}
.yba{bottom:637.697489pt;}
.yab{bottom:639.377467pt;}
.y75{bottom:642.217467pt;}
.ya4{bottom:643.389227pt;}
.y9d{bottom:646.217320pt;}
.y33{bottom:646.217333pt;}
.ydd{bottom:648.285093pt;}
.yb9{bottom:649.697449pt;}
.y55{bottom:650.948267pt;}
.ydc{bottom:661.618427pt;}
.yb8{bottom:661.697524pt;}
.ya3{bottom:662.055947pt;}
.y9c{bottom:663.377320pt;}
.y32{bottom:663.377333pt;}
.y54{bottom:669.614987pt;}
.yb7{bottom:673.697507pt;}
.ydb{bottom:678.731173pt;}
.y74{bottom:680.537320pt;}
.y31{bottom:680.537333pt;}
.ya2{bottom:680.722667pt;}
.y5{bottom:682.996933pt;}
.yb6{bottom:685.697467pt;}
.y53{bottom:688.281707pt;}
.yda{bottom:692.064507pt;}
.y73{bottom:697.697467pt;}
.y30{bottom:697.697480pt;}
.ya1{bottom:699.389387pt;}
.y52{bottom:706.948427pt;}
.yd9{bottom:709.177467pt;}
.y4{bottom:710.996933pt;}
.y72{bottom:714.857320pt;}
.y2f{bottom:714.857333pt;}
.ya0{bottom:718.056107pt;}
.yd8{bottom:722.510800pt;}
.y51{bottom:725.615147pt;}
.y71{bottom:732.017467pt;}
.y2e{bottom:732.017480pt;}
.yd7{bottom:735.844133pt;}
.y9f{bottom:736.722827pt;}
.y3{bottom:738.996933pt;}
.y50{bottom:744.281867pt;}
.y70{bottom:749.177467pt;}
.y2d{bottom:749.177480pt;}
.yd6{bottom:762.337467pt;}
.y4f{bottom:762.948587pt;}
.y9b{bottom:766.337467pt;}
.y2c{bottom:766.337480pt;}
.y2{bottom:766.996933pt;}
.y4e{bottom:781.615307pt;}
.y2b{bottom:783.497333pt;}
.y1{bottom:794.996933pt;}
.y4d{bottom:800.282027pt;}
.y2a{bottom:800.657333pt;}
.y29{bottom:817.817333pt;}
.y4c{bottom:818.948747pt;}
.y22{bottom:826.141733pt;}
.y8{bottom:826.886400pt;}
.yb5{bottom:832.378058pt;}
.y21{bottom:833.965333pt;}
.y28{bottom:834.977333pt;}
.y4b{bottom:837.615467pt;}
.y7{bottom:840.499200pt;}
.yb4{bottom:844.378018pt;}
.y27{bottom:852.137333pt;}
.yb3{bottom:856.378000pt;}
.y4a{bottom:923.423333pt;}
.y26{bottom:1020.440933pt;}
.hf{height:27.507812pt;}
.h12{height:27.508096pt;}
.he{height:29.952000pt;}
.h5{height:32.310080pt;}
.h14{height:33.270833pt;}
.h13{height:38.354167pt;}
.hc{height:41.677809pt;}
.ha{height:45.747396pt;}
.hb{height:47.942708pt;}
.h6{height:49.906250pt;}
.h7{height:52.736979pt;}
.h10{height:52.737459pt;}
.h11{height:52.737566pt;}
.h9{height:54.065104pt;}
.h4{height:63.668939pt;}
.h8{height:66.541667pt;}
.h2{height:86.016000pt;}
.hd{height:86.296875pt;}
.h3{height:786.432000pt;}
.h0{height:994.646400pt;}
.h1{height:994.666667pt;}
.w1{width:707.333333pt;}
.w0{width:707.400667pt;}
.x0{left:0.000000pt;}
.x10{left:6.204667pt;}
.x15{left:52.925867pt;}
.x11{left:77.795200pt;}
.x37{left:78.992661pt;}
.x20{left:79.942811pt;}
.x1b{left:81.367451pt;}
.x2e{left:83.303536pt;}
.x19{left:86.698779pt;}
.x3d{left:87.886277pt;}
.x1{left:88.926533pt;}
.x3b{left:91.306309pt;}
.x25{left:92.507904pt;}
.x27{left:93.914496pt;}
.x1e{left:95.765915pt;}
.x28{left:98.031616pt;}
.x35{left:99.081365pt;}
.x12{left:100.472096pt;}
.x3c{left:101.718853pt;}
.x21{left:103.495835pt;}
.x2a{left:105.281328pt;}
.x18{left:107.256475pt;}
.x17{left:109.120667pt;}
.x2b{left:111.714480pt;}
.x1d{left:113.569051pt;}
.x36{left:115.182101pt;}
.x24{left:116.653056pt;}
.x1a{left:117.815579pt;}
.x1f{left:120.117915pt;}
.x1c{left:121.534619pt;}
.x23{left:128.086400pt;}
.x2c{left:130.512944pt;}
.x34{left:133.264533pt;}
.x29{left:134.714880pt;}
.x2f{left:137.612656pt;}
.x31{left:139.386096pt;}
.x26{left:143.700352pt;}
.x39{left:145.326533pt;}
.x2d{left:147.225200pt;}
.x30{left:149.822064pt;}
.x13{left:153.385867pt;}
.x3a{left:157.514309pt;}
.x33{left:173.370864pt;}
.x38{left:184.173973pt;}
.x32{left:205.864560pt;}
.x4{left:247.874533pt;}
.x16{left:257.610400pt;}
.x5{left:270.555301pt;}
.x7{left:281.139413pt;}
.x6{left:315.414400pt;}
.x22{left:323.465067pt;}
.x9{left:418.624800pt;}
.xa{left:461.742805pt;}
.x14{left:474.645467pt;}
.x2{left:478.802933pt;}
.x8{left:480.332400pt;}
.xe{left:482.402218pt;}
.xd{left:517.523600pt;}
.x3{left:572.631733pt;}
.xf{left:631.496533pt;}
.xb{left:646.166133pt;}
.xc{left:664.032533pt;}
}




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