
    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_3c31e9c81a630b00321494f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5726c1ea606d91af725c8b10.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4d955da19743478a4ed884ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_94dfa771f72d70992ade12a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.072266;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_b4f905504d1736584d17784f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_fdb137ef0b8ea895e293d195.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_8e087b7c10b885be5c5169e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_661b1170d9265e743193f1c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_36a97e59bf32a6bf5653bfdc.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;}
.m2{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);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-8.760000px;}
.ls11{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015840px;}
.lsb{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.423360px;}
.ls8{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.624000px;}
.ls1{letter-spacing:0.665280px;}
.ls5{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.732000px;}
.ls12{letter-spacing:0.792000px;}
.ls7{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.944000px;}
.ls1b{letter-spacing:2.160000px;}
.lsc{letter-spacing:4.464000px;}
.ls2{letter-spacing:5.040000px;}
.ls9{letter-spacing:9.360000px;}
.ls17{letter-spacing:10.224000px;}
.ls15{letter-spacing:13.079664px;}
.ls14{letter-spacing:13.158720px;}
.ls1a{letter-spacing:15.984000px;}
.ls19{letter-spacing:51.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.036000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.064000px;}
.ws12{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.416000px;}
.wsf{word-spacing:-15.543360px;}
.ws10{word-spacing:-15.156000px;}
.wsc{word-spacing:-15.120000px;}
.wse{word-spacing:-13.680000px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws14{word-spacing:-9.240000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.280000px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:252.744000px;}
.wsa{word-spacing:288.492000px;}
._13{margin-left:-9.525120px;}
._e{margin-left:-7.560000px;}
._20{margin-left:-6.534240px;}
._0{margin-left:-5.512320px;}
._d{margin-left:-3.663360px;}
._a{margin-left:-2.046720px;}
._2{margin-left:-1.045440px;}
._3{width:1.330560px;}
._1{width:2.518560px;}
._b{width:3.564000px;}
._9{width:4.644960px;}
._c{width:5.966400px;}
._1f{width:7.398240px;}
._1b{width:8.494560px;}
._8{width:9.931680px;}
._11{width:11.261280px;}
._12{width:12.793920px;}
._1c{width:14.430720px;}
._1d{width:15.687840px;}
._4{width:16.917120px;}
._6{width:18.152640px;}
._5{width:19.670880px;}
._7{width:20.696160px;}
._f{width:22.285440px;}
._58{width:23.472960px;}
._10{width:24.487200px;}
._14{width:25.510560px;}
._15{width:27.047520px;}
._18{width:28.174560px;}
._43{width:29.196960px;}
._17{width:30.215520px;}
._21{width:32.077440px;}
._16{width:35.886720px;}
._1e{width:37.378080px;}
._1a{width:38.589120px;}
._52{width:40.011360px;}
._3e{width:41.320320px;}
._4e{width:43.518720px;}
._30{width:45.212160px;}
._44{width:48.151200px;}
._28{width:50.826240px;}
._29{width:52.700160px;}
._31{width:54.348960px;}
._32{width:55.405440px;}
._4f{width:56.508480px;}
._27{width:58.748160px;}
._26{width:60.620160px;}
._19{width:61.765440px;}
._2e{width:67.334400px;}
._33{width:68.453760px;}
._34{width:69.961440px;}
._24{width:72.534720px;}
._40{width:73.993920px;}
._22{width:76.676160px;}
._4d{width:77.785920px;}
._2f{width:79.909920px;}
._37{width:84.952320px;}
._38{width:87.404160px;}
._3a{width:88.836480px;}
._53{width:90.509280px;}
._4a{width:91.756320px;}
._49{width:93.695040px;}
._25{width:109.538880px;}
._51{width:116.796000px;}
._45{width:119.232000px;}
._54{width:120.441120px;}
._3d{width:122.112000px;}
._23{width:125.636160px;}
._36{width:143.113920px;}
._41{width:146.293920px;}
._39{width:147.479040px;}
._46{width:155.261760px;}
._5c{width:165.584160px;}
._5b{width:167.822400px;}
._3f{width:170.054400px;}
._3c{width:171.345120px;}
._4b{width:178.691040px;}
._3b{width:185.094720px;}
._48{width:187.804320px;}
._2d{width:197.420160px;}
._5a{width:218.334720px;}
._59{width:219.602880px;}
._2c{width:233.483040px;}
._35{width:242.089920px;}
._50{width:288.804000px;}
._47{width:298.473600px;}
._2b{width:301.926720px;}
._57{width:323.352000px;}
._55{width:324.461760px;}
._56{width:325.617600px;}
._42{width:345.421440px;}
._2a{width:368.381760px;}
._4c{width:393.218880px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs5{font-size:54.864000px;}
.fs6{font-size:60.480000px;}
.fs7{font-size:60.624000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.ycd{bottom:-18.870000px;}
.yc7{bottom:-13.755000px;}
.ye0{bottom:-6.555000px;}
.yaf{bottom:-3.030000px;}
.yb3{bottom:-2.985000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:0.210000px;}
.yd3{bottom:2.340000px;}
.y5a{bottom:3.600000px;}
.y61{bottom:4.320000px;}
.y7a{bottom:4.680000px;}
.ye3{bottom:5.370000px;}
.ydb{bottom:5.730000px;}
.y59{bottom:6.480000px;}
.yd7{bottom:6.735000px;}
.yc6{bottom:6.765000px;}
.y6c{bottom:6.840000px;}
.ya6{bottom:8.100000px;}
.ya4{bottom:8.460000px;}
.y58{bottom:8.640000px;}
.ybf{bottom:8.895000px;}
.yb6{bottom:9.930000px;}
.ydf{bottom:14.370000px;}
.y9e{bottom:17.250000px;}
.y63{bottom:20.205000px;}
.y60{bottom:25.200000px;}
.y83{bottom:25.230000px;}
.y64{bottom:26.685000px;}
.ye2{bottom:26.970000px;}
.yad{bottom:27.570000px;}
.yb5{bottom:27.930000px;}
.yb1{bottom:27.975000px;}
.y6d{bottom:28.440000px;}
.ya1{bottom:29.700000px;}
.ya5{bottom:30.060000px;}
.ya3{bottom:30.420000px;}
.y6a{bottom:31.365000px;}
.y73{bottom:32.760000px;}
.y7c{bottom:34.950000px;}
.y74{bottom:38.874000px;}
.yd9{bottom:41.010000px;}
.yd5{bottom:42.045000px;}
.y5f{bottom:45.720000px;}
.y79{bottom:46.074000px;}
.y82{bottom:46.110000px;}
.y2{bottom:46.440000px;}
.y96{bottom:50.865000px;}
.yc9{bottom:52.095000px;}
.y69{bottom:52.245000px;}
.ydd{bottom:55.770000px;}
.y78{bottom:66.594000px;}
.y5e{bottom:66.600000px;}
.y71{bottom:66.630000px;}
.y1{bottom:66.960000px;}
.ycf{bottom:71.460000px;}
.y68{bottom:72.765000px;}
.ya9{bottom:77.250000px;}
.y5d{bottom:87.120000px;}
.y70{bottom:87.150000px;}
.y81{bottom:87.510000px;}
.y77{bottom:87.519000px;}
.y97{bottom:88.410000px;}
.yba{bottom:91.005000px;}
.yc2{bottom:93.210000px;}
.y67{bottom:93.645000px;}
.y5c{bottom:108.000000px;}
.y6f{bottom:108.030000px;}
.y76{bottom:108.039000px;}
.yc1{bottom:110.490000px;}
.y94{bottom:110.916000px;}
.y66{bottom:114.165000px;}
.y31{bottom:115.236000px;}
.y4e{bottom:115.596000px;}
.y72{bottom:117.036000px;}
.y98{bottom:121.170000px;}
.y5b{bottom:128.550000px;}
.y80{bottom:128.910000px;}
.y75{bottom:128.919000px;}
.y65{bottom:135.045000px;}
.y93{bottom:141.516000px;}
.y30{bottom:146.196000px;}
.y4d{bottom:146.556000px;}
.y6e{bottom:149.430000px;}
.y99{bottom:153.975000px;}
.y7f{bottom:170.355000px;}
.y92{bottom:172.470000px;}
.y2f{bottom:177.150000px;}
.y4c{bottom:177.510000px;}
.y9a{bottom:186.735000px;}
.y7e{bottom:190.875000px;}
.y91{bottom:199.515000px;}
.y95{bottom:199.800000px;}
.y2e{bottom:208.155000px;}
.y4b{bottom:208.515000px;}
.y7d{bottom:211.755000px;}
.y9b{bottom:219.525000px;}
.y2d{bottom:239.475000px;}
.y4a{bottom:239.835000px;}
.y9c{bottom:252.285000px;}
.y6b{bottom:262.875000px;}
.y2c{bottom:270.435000px;}
.y49{bottom:270.795000px;}
.y9d{bottom:285.090000px;}
.y2b{bottom:301.395000px;}
.y48{bottom:301.755000px;}
.y2a{bottom:332.385000px;}
.y47{bottom:332.745000px;}
.y29{bottom:364.065000px;}
.y28{bottom:395.025000px;}
.ye4{bottom:425.625000px;}
.y27{bottom:425.985000px;}
.y62{bottom:429.225000px;}
.y26{bottom:456.990000px;}
.y46{bottom:487.590000px;}
.y25{bottom:487.950000px;}
.y45{bottom:518.910000px;}
.y24{bottom:519.270000px;}
.y90{bottom:538.350000px;}
.y44{bottom:549.870000px;}
.y23{bottom:550.230000px;}
.y8f{bottom:569.310000px;}
.y43{bottom:580.860000px;}
.y22{bottom:581.220000px;}
.y8e{bottom:600.660000px;}
.ya2{bottom:607.320000px;}
.ya0{bottom:607.680000px;}
.y21{bottom:611.820000px;}
.y56{bottom:612.180000px;}
.yce{bottom:614.160000px;}
.y8d{bottom:631.620000px;}
.yd2{bottom:633.780000px;}
.y20{bottom:643.140000px;}
.y42{bottom:643.500000px;}
.yd1{bottom:651.060000px;}
.ya8{bottom:652.320000px;}
.y9f{bottom:655.740000px;}
.y8c{bottom:662.580000px;}
.yd0{bottom:668.340000px;}
.y1f{bottom:674.100000px;}
.y41{bottom:674.460000px;}
.y8b{bottom:693.540000px;}
.yab{bottom:698.220000px;}
.y1e{bottom:705.090000px;}
.y40{bottom:705.450000px;}
.yaa{bottom:714.450000px;}
.y8a{bottom:724.890000px;}
.y57{bottom:726.690000px;}
.y1d{bottom:736.050000px;}
.y3f{bottom:736.410000px;}
.yb7{bottom:740.160000px;}
.yb4{bottom:743.400000px;}
.y89{bottom:755.850000px;}
.y1c{bottom:767.370000px;}
.y3e{bottom:767.730000px;}
.yc8{bottom:781.920000px;}
.ya7{bottom:784.290000px;}
.y88{bottom:786.810000px;}
.yac{bottom:786.960000px;}
.y1b{bottom:798.330000px;}
.y3d{bottom:798.690000px;}
.yae{bottom:799.050000px;}
.ycb{bottom:799.410000px;}
.yca{bottom:816.690000px;}
.y87{bottom:817.770000px;}
.y1a{bottom:829.335000px;}
.y3c{bottom:829.695000px;}
.yb0{bottom:838.800000px;}
.y86{bottom:848.775000px;}
.yb2{bottom:851.295000px;}
.y19{bottom:860.295000px;}
.y3b{bottom:860.655000px;}
.y85{bottom:880.095000px;}
.yb9{bottom:889.920000px;}
.y18{bottom:891.615000px;}
.y3a{bottom:891.975000px;}
.y17{bottom:910.335000px;}
.y84{bottom:911.055000px;}
.ybe{bottom:916.095000px;}
.y16{bottom:920.415000px;}
.yd4{bottom:922.320000px;}
.y39{bottom:922.935000px;}
.y7b{bottom:927.975000px;}
.y15{bottom:930.855000px;}
.ybd{bottom:931.575000px;}
.y14{bottom:941.295000px;}
.yb8{bottom:943.095000px;}
.yd6{bottom:947.055000px;}
.ybc{bottom:948.135000px;}
.y13{bottom:951.765000px;}
.y38{bottom:953.565000px;}
.y55{bottom:953.925000px;}
.y12{bottom:961.845000px;}
.ybb{bottom:964.725000px;}
.y11{bottom:972.285000px;}
.y10{bottom:982.725000px;}
.y37{bottom:984.525000px;}
.y54{bottom:984.885000px;}
.yf{bottom:993.165000px;}
.yc0{bottom:1002.240000px;}
.ye{bottom:1003.245000px;}
.yd{bottom:1013.685000px;}
.y36{bottom:1015.845000px;}
.y53{bottom:1016.205000px;}
.yc{bottom:1024.125000px;}
.yc5{bottom:1026.285000px;}
.yb{bottom:1035.285000px;}
.yc4{bottom:1043.565000px;}
.y35{bottom:1046.805000px;}
.y52{bottom:1047.165000px;}
.ya{bottom:1048.965000px;}
.yc3{bottom:1060.845000px;}
.y9{bottom:1063.005000px;}
.ydc{bottom:1070.280000px;}
.yd8{bottom:1074.960000px;}
.y8{bottom:1076.685000px;}
.y34{bottom:1077.810000px;}
.y51{bottom:1078.170000px;}
.ye1{bottom:1082.520000px;}
.y7{bottom:1090.050000px;}
.yda{bottom:1098.690000px;}
.y6{bottom:1104.090000px;}
.yde{bottom:1105.530000px;}
.y33{bottom:1108.770000px;}
.y50{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y32{bottom:1140.090000px;}
.y4f{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.hd{height:25.200000px;}
.h7{height:26.033203px;}
.h8{height:35.332031px;}
.h1d{height:39.570469px;}
.h22{height:39.997969px;}
.h1f{height:40.320000px;}
.h21{height:40.680000px;}
.h4{height:40.698281px;}
.h35{height:43.200000px;}
.h29{height:43.735781px;}
.h2d{height:43.839914px;}
.h6{height:46.638281px;}
.h1a{height:46.800000px;}
.h5{height:47.891250px;}
.hc{height:52.066406px;}
.h1e{height:53.704687px;}
.h26{height:53.846016px;}
.h23{height:54.586406px;}
.h24{height:54.730055px;}
.h1c{height:55.147500px;}
.h20{height:56.243537px;}
.h31{height:58.320000px;}
.h2a{height:59.357813px;}
.h30{height:59.400000px;}
.h2b{height:59.499141px;}
.ha{height:61.664062px;}
.h27{height:62.163910px;}
.h2{height:65.010937px;}
.h2c{height:66.240000px;}
.h2e{height:68.084282px;}
.h32{height:68.232291px;}
.hb{height:70.664062px;}
.h18{height:71.824219px;}
.h36{height:71.967867px;}
.h33{height:72.360000px;}
.h9{height:72.562500px;}
.h15{height:72.562520px;}
.h11{height:72.562529px;}
.h13{height:72.562533px;}
.hf{height:72.562541px;}
.h17{height:72.562547px;}
.h34{height:72.707625px;}
.h3{height:74.004654px;}
.h2f{height:85.320000px;}
.h1b{height:90.000000px;}
.h25{height:104.400000px;}
.h28{height:124.200000px;}
.he{height:144.756000px;}
.h14{height:145.116000px;}
.h10{height:151.275000px;}
.h12{height:165.630000px;}
.h16{height:227.955000px;}
.h19{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:92.196000px;}
.w10{width:104.760000px;}
.w9{width:105.840000px;}
.wa{width:106.200000px;}
.w13{width:106.560000px;}
.w12{width:116.640000px;}
.w11{width:117.000000px;}
.w15{width:123.840000px;}
.w14{width:132.480000px;}
.w8{width:140.760000px;}
.we{width:146.880000px;}
.wb{width:147.600000px;}
.w4{width:174.315000px;}
.w5{width:203.475000px;}
.w6{width:223.635000px;}
.wf{width:233.640000px;}
.wd{width:261.360000px;}
.wc{width:466.560000px;}
.w7{width:624.240000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.x1e{left:9.975000px;}
.x34{left:11.340000px;}
.x37{left:13.170000px;}
.x39{left:15.270000px;}
.x36{left:17.130000px;}
.x3f{left:18.540000px;}
.x28{left:21.090000px;}
.x23{left:22.425000px;}
.x18{left:24.480000px;}
.x43{left:25.740000px;}
.x2a{left:26.895000px;}
.x25{left:28.620000px;}
.x4e{left:30.750000px;}
.x3e{left:38.700000px;}
.x15{left:41.760000px;}
.x19{left:45.756000px;}
.x17{left:50.085000px;}
.x26{left:53.100000px;}
.x13{left:57.270000px;}
.x46{left:58.785000px;}
.x1f{left:61.200000px;}
.x51{left:62.205000px;}
.x2b{left:74.085000px;}
.x10{left:98.676000px;}
.x2{left:106.235987px;}
.x47{left:108.720000px;}
.x4{left:109.835987px;}
.xa{left:135.395987px;}
.x49{left:142.631987px;}
.x1a{left:146.591987px;}
.x48{left:147.671987px;}
.xf{left:149.471987px;}
.x3{left:159.554987px;}
.x1c{left:175.754987px;}
.x44{left:182.880000px;}
.x12{left:191.595000px;}
.x2e{left:192.780000px;}
.xb{left:202.754987px;}
.xd{left:209.954987px;}
.x45{left:222.554987px;}
.x5{left:237.344987px;}
.x20{left:251.024987px;}
.x22{left:261.000000px;}
.x4a{left:267.120000px;}
.x8{left:283.784987px;}
.x2d{left:287.280000px;}
.x4b{left:288.824987px;}
.xc{left:311.864987px;}
.x7{left:314.024987px;}
.x4c{left:316.440000px;}
.x38{left:320.400000px;}
.x2f{left:326.984987px;}
.x4d{left:351.509987px;}
.x14{left:366.630000px;}
.x1d{left:376.349987px;}
.x31{left:392.400000px;}
.x24{left:410.040000px;}
.x3b{left:425.520000px;}
.x3c{left:436.859987px;}
.x53{left:438.299987px;}
.x1{left:442.259987px;}
.x6{left:446.579987px;}
.x32{left:447.659987px;}
.x3d{left:467.280000px;}
.x33{left:470.699987px;}
.x9{left:473.219987px;}
.x42{left:481.859987px;}
.x30{left:489.419987px;}
.x40{left:492.659987px;}
.x41{left:503.099987px;}
.x21{left:519.689987px;}
.x2c{left:520.769987px;}
.x3a{left:521.849987px;}
.x27{left:533.520000px;}
.x52{left:556.200000px;}
.x35{left:567.720000px;}
.x16{left:570.810000px;}
.x29{left:640.080000px;}
.x4f{left:658.440000px;}
.x50{left:695.414987px;}
.xe{left:732.524987px;}
.x1b{left:785.804987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-7.786667pt;}
.ls11{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.014080pt;}
.lsb{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.376320pt;}
.ls8{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.554667pt;}
.ls1{letter-spacing:0.591360pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.650667pt;}
.ls12{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.728000pt;}
.ls1b{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.968000pt;}
.ls2{letter-spacing:4.480000pt;}
.ls9{letter-spacing:8.320000pt;}
.ls17{letter-spacing:9.088000pt;}
.ls15{letter-spacing:11.626368pt;}
.ls14{letter-spacing:11.696640pt;}
.ls1a{letter-spacing:14.208000pt;}
.ls19{letter-spacing:46.208000pt;}
.wsd{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.032000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.168000pt;}
.ws12{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.592000pt;}
.wsf{word-spacing:-13.816320pt;}
.ws10{word-spacing:-13.472000pt;}
.wsc{word-spacing:-13.440000pt;}
.wse{word-spacing:-12.160000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws14{word-spacing:-8.213333pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.360000pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:224.661333pt;}
.wsa{word-spacing:256.437333pt;}
._13{margin-left:-8.466773pt;}
._e{margin-left:-6.720000pt;}
._20{margin-left:-5.808213pt;}
._0{margin-left:-4.899840pt;}
._d{margin-left:-3.256320pt;}
._a{margin-left:-1.819307pt;}
._2{margin-left:-0.929280pt;}
._3{width:1.182720pt;}
._1{width:2.238720pt;}
._b{width:3.168000pt;}
._9{width:4.128853pt;}
._c{width:5.303467pt;}
._1f{width:6.576213pt;}
._1b{width:7.550720pt;}
._8{width:8.828160pt;}
._11{width:10.010027pt;}
._12{width:11.372373pt;}
._1c{width:12.827307pt;}
._1d{width:13.944747pt;}
._4{width:15.037440pt;}
._6{width:16.135680pt;}
._5{width:17.485227pt;}
._7{width:18.396587pt;}
._f{width:19.809280pt;}
._58{width:20.864853pt;}
._10{width:21.766400pt;}
._14{width:22.676053pt;}
._15{width:24.042240pt;}
._18{width:25.044053pt;}
._43{width:25.952853pt;}
._17{width:26.858240pt;}
._21{width:28.513280pt;}
._16{width:31.899307pt;}
._1e{width:33.224960pt;}
._1a{width:34.301440pt;}
._52{width:35.565653pt;}
._3e{width:36.729173pt;}
._4e{width:38.683307pt;}
._30{width:40.188587pt;}
._44{width:42.801067pt;}
._28{width:45.178880pt;}
._29{width:46.844587pt;}
._31{width:48.310187pt;}
._32{width:49.249280pt;}
._4f{width:50.229760pt;}
._27{width:52.220587pt;}
._26{width:53.884587pt;}
._19{width:54.902613pt;}
._2e{width:59.852800pt;}
._33{width:60.847787pt;}
._34{width:62.187947pt;}
._24{width:64.475307pt;}
._40{width:65.772373pt;}
._22{width:68.156587pt;}
._4d{width:69.143040pt;}
._2f{width:71.031040pt;}
._37{width:75.513173pt;}
._38{width:77.692587pt;}
._3a{width:78.965760pt;}
._53{width:80.452693pt;}
._4a{width:81.561173pt;}
._49{width:83.284480pt;}
._25{width:97.367893pt;}
._51{width:103.818667pt;}
._45{width:105.984000pt;}
._54{width:107.058773pt;}
._3d{width:108.544000pt;}
._23{width:111.676587pt;}
._36{width:127.212373pt;}
._41{width:130.039040pt;}
._39{width:131.092480pt;}
._46{width:138.010453pt;}
._5c{width:147.185920pt;}
._5b{width:149.175467pt;}
._3f{width:151.159467pt;}
._3c{width:152.306773pt;}
._4b{width:158.836480pt;}
._3b{width:164.528640pt;}
._48{width:166.937173pt;}
._2d{width:175.484587pt;}
._5a{width:194.075307pt;}
._59{width:195.202560pt;}
._2c{width:207.540480pt;}
._35{width:215.191040pt;}
._50{width:256.714667pt;}
._47{width:265.309867pt;}
._2b{width:268.379307pt;}
._57{width:287.424000pt;}
._55{width:288.410453pt;}
._56{width:289.437867pt;}
._42{width:307.041280pt;}
._2a{width:327.450453pt;}
._4c{width:349.527893pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs5{font-size:48.768000pt;}
.fs6{font-size:53.760000pt;}
.fs7{font-size:53.888000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.ycd{bottom:-16.773333pt;}
.yc7{bottom:-12.226667pt;}
.ye0{bottom:-5.826667pt;}
.yaf{bottom:-2.693333pt;}
.yb3{bottom:-2.653333pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:0.186667pt;}
.yd3{bottom:2.080000pt;}
.y5a{bottom:3.200000pt;}
.y61{bottom:3.840000pt;}
.y7a{bottom:4.160000pt;}
.ye3{bottom:4.773333pt;}
.ydb{bottom:5.093333pt;}
.y59{bottom:5.760000pt;}
.yd7{bottom:5.986667pt;}
.yc6{bottom:6.013333pt;}
.y6c{bottom:6.080000pt;}
.ya6{bottom:7.200000pt;}
.ya4{bottom:7.520000pt;}
.y58{bottom:7.680000pt;}
.ybf{bottom:7.906667pt;}
.yb6{bottom:8.826667pt;}
.ydf{bottom:12.773333pt;}
.y9e{bottom:15.333333pt;}
.y63{bottom:17.960000pt;}
.y60{bottom:22.400000pt;}
.y83{bottom:22.426667pt;}
.y64{bottom:23.720000pt;}
.ye2{bottom:23.973333pt;}
.yad{bottom:24.506667pt;}
.yb5{bottom:24.826667pt;}
.yb1{bottom:24.866667pt;}
.y6d{bottom:25.280000pt;}
.ya1{bottom:26.400000pt;}
.ya5{bottom:26.720000pt;}
.ya3{bottom:27.040000pt;}
.y6a{bottom:27.880000pt;}
.y73{bottom:29.120000pt;}
.y7c{bottom:31.066667pt;}
.y74{bottom:34.554667pt;}
.yd9{bottom:36.453333pt;}
.yd5{bottom:37.373333pt;}
.y5f{bottom:40.640000pt;}
.y79{bottom:40.954667pt;}
.y82{bottom:40.986667pt;}
.y2{bottom:41.280000pt;}
.y96{bottom:45.213333pt;}
.yc9{bottom:46.306667pt;}
.y69{bottom:46.440000pt;}
.ydd{bottom:49.573333pt;}
.y78{bottom:59.194667pt;}
.y5e{bottom:59.200000pt;}
.y71{bottom:59.226667pt;}
.y1{bottom:59.520000pt;}
.ycf{bottom:63.520000pt;}
.y68{bottom:64.680000pt;}
.ya9{bottom:68.666667pt;}
.y5d{bottom:77.440000pt;}
.y70{bottom:77.466667pt;}
.y81{bottom:77.786667pt;}
.y77{bottom:77.794667pt;}
.y97{bottom:78.586667pt;}
.yba{bottom:80.893333pt;}
.yc2{bottom:82.853333pt;}
.y67{bottom:83.240000pt;}
.y5c{bottom:96.000000pt;}
.y6f{bottom:96.026667pt;}
.y76{bottom:96.034667pt;}
.yc1{bottom:98.213333pt;}
.y94{bottom:98.592000pt;}
.y66{bottom:101.480000pt;}
.y31{bottom:102.432000pt;}
.y4e{bottom:102.752000pt;}
.y72{bottom:104.032000pt;}
.y98{bottom:107.706667pt;}
.y5b{bottom:114.266667pt;}
.y80{bottom:114.586667pt;}
.y75{bottom:114.594667pt;}
.y65{bottom:120.040000pt;}
.y93{bottom:125.792000pt;}
.y30{bottom:129.952000pt;}
.y4d{bottom:130.272000pt;}
.y6e{bottom:132.826667pt;}
.y99{bottom:136.866667pt;}
.y7f{bottom:151.426667pt;}
.y92{bottom:153.306667pt;}
.y2f{bottom:157.466667pt;}
.y4c{bottom:157.786667pt;}
.y9a{bottom:165.986667pt;}
.y7e{bottom:169.666667pt;}
.y91{bottom:177.346667pt;}
.y95{bottom:177.600000pt;}
.y2e{bottom:185.026667pt;}
.y4b{bottom:185.346667pt;}
.y7d{bottom:188.226667pt;}
.y9b{bottom:195.133333pt;}
.y2d{bottom:212.866667pt;}
.y4a{bottom:213.186667pt;}
.y9c{bottom:224.253333pt;}
.y6b{bottom:233.666667pt;}
.y2c{bottom:240.386667pt;}
.y49{bottom:240.706667pt;}
.y9d{bottom:253.413333pt;}
.y2b{bottom:267.906667pt;}
.y48{bottom:268.226667pt;}
.y2a{bottom:295.453333pt;}
.y47{bottom:295.773333pt;}
.y29{bottom:323.613333pt;}
.y28{bottom:351.133333pt;}
.ye4{bottom:378.333333pt;}
.y27{bottom:378.653333pt;}
.y62{bottom:381.533333pt;}
.y26{bottom:406.213333pt;}
.y46{bottom:433.413333pt;}
.y25{bottom:433.733333pt;}
.y45{bottom:461.253333pt;}
.y24{bottom:461.573333pt;}
.y90{bottom:478.533333pt;}
.y44{bottom:488.773333pt;}
.y23{bottom:489.093333pt;}
.y8f{bottom:506.053333pt;}
.y43{bottom:516.320000pt;}
.y22{bottom:516.640000pt;}
.y8e{bottom:533.920000pt;}
.ya2{bottom:539.840000pt;}
.ya0{bottom:540.160000pt;}
.y21{bottom:543.840000pt;}
.y56{bottom:544.160000pt;}
.yce{bottom:545.920000pt;}
.y8d{bottom:561.440000pt;}
.yd2{bottom:563.360000pt;}
.y20{bottom:571.680000pt;}
.y42{bottom:572.000000pt;}
.yd1{bottom:578.720000pt;}
.ya8{bottom:579.840000pt;}
.y9f{bottom:582.880000pt;}
.y8c{bottom:588.960000pt;}
.yd0{bottom:594.080000pt;}
.y1f{bottom:599.200000pt;}
.y41{bottom:599.520000pt;}
.y8b{bottom:616.480000pt;}
.yab{bottom:620.640000pt;}
.y1e{bottom:626.746667pt;}
.y40{bottom:627.066667pt;}
.yaa{bottom:635.066667pt;}
.y8a{bottom:644.346667pt;}
.y57{bottom:645.946667pt;}
.y1d{bottom:654.266667pt;}
.y3f{bottom:654.586667pt;}
.yb7{bottom:657.920000pt;}
.yb4{bottom:660.800000pt;}
.y89{bottom:671.866667pt;}
.y1c{bottom:682.106667pt;}
.y3e{bottom:682.426667pt;}
.yc8{bottom:695.040000pt;}
.ya7{bottom:697.146667pt;}
.y88{bottom:699.386667pt;}
.yac{bottom:699.520000pt;}
.y1b{bottom:709.626667pt;}
.y3d{bottom:709.946667pt;}
.yae{bottom:710.266667pt;}
.ycb{bottom:710.586667pt;}
.yca{bottom:725.946667pt;}
.y87{bottom:726.906667pt;}
.y1a{bottom:737.186667pt;}
.y3c{bottom:737.506667pt;}
.yb0{bottom:745.600000pt;}
.y86{bottom:754.466667pt;}
.yb2{bottom:756.706667pt;}
.y19{bottom:764.706667pt;}
.y3b{bottom:765.026667pt;}
.y85{bottom:782.306667pt;}
.yb9{bottom:791.040000pt;}
.y18{bottom:792.546667pt;}
.y3a{bottom:792.866667pt;}
.y17{bottom:809.186667pt;}
.y84{bottom:809.826667pt;}
.ybe{bottom:814.306667pt;}
.y16{bottom:818.146667pt;}
.yd4{bottom:819.840000pt;}
.y39{bottom:820.386667pt;}
.y7b{bottom:824.866667pt;}
.y15{bottom:827.426667pt;}
.ybd{bottom:828.066667pt;}
.y14{bottom:836.706667pt;}
.yb8{bottom:838.306667pt;}
.yd6{bottom:841.826667pt;}
.ybc{bottom:842.786667pt;}
.y13{bottom:846.013333pt;}
.y38{bottom:847.613333pt;}
.y55{bottom:847.933333pt;}
.y12{bottom:854.973333pt;}
.ybb{bottom:857.533333pt;}
.y11{bottom:864.253333pt;}
.y10{bottom:873.533333pt;}
.y37{bottom:875.133333pt;}
.y54{bottom:875.453333pt;}
.yf{bottom:882.813333pt;}
.yc0{bottom:890.880000pt;}
.ye{bottom:891.773333pt;}
.yd{bottom:901.053333pt;}
.y36{bottom:902.973333pt;}
.y53{bottom:903.293333pt;}
.yc{bottom:910.333333pt;}
.yc5{bottom:912.253333pt;}
.yb{bottom:920.253333pt;}
.yc4{bottom:927.613333pt;}
.y35{bottom:930.493333pt;}
.y52{bottom:930.813333pt;}
.ya{bottom:932.413333pt;}
.yc3{bottom:942.973333pt;}
.y9{bottom:944.893333pt;}
.ydc{bottom:951.360000pt;}
.yd8{bottom:955.520000pt;}
.y8{bottom:957.053333pt;}
.y34{bottom:958.053333pt;}
.y51{bottom:958.373333pt;}
.ye1{bottom:962.240000pt;}
.y7{bottom:968.933333pt;}
.yda{bottom:976.613333pt;}
.y6{bottom:981.413333pt;}
.yde{bottom:982.693333pt;}
.y33{bottom:985.573333pt;}
.y50{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y32{bottom:1013.413333pt;}
.y4f{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.hd{height:22.400000pt;}
.h7{height:23.140625pt;}
.h8{height:31.406250pt;}
.h1d{height:35.173750pt;}
.h22{height:35.553750pt;}
.h1f{height:35.840000pt;}
.h21{height:36.160000pt;}
.h4{height:36.176250pt;}
.h35{height:38.400000pt;}
.h29{height:38.876250pt;}
.h2d{height:38.968812pt;}
.h6{height:41.456250pt;}
.h1a{height:41.600000pt;}
.h5{height:42.570000pt;}
.hc{height:46.281250pt;}
.h1e{height:47.737500pt;}
.h26{height:47.863125pt;}
.h23{height:48.521250pt;}
.h24{height:48.648937pt;}
.h1c{height:49.020000pt;}
.h20{height:49.994255pt;}
.h31{height:51.840000pt;}
.h2a{height:52.762500pt;}
.h30{height:52.800000pt;}
.h2b{height:52.888125pt;}
.ha{height:54.812500pt;}
.h27{height:55.256809pt;}
.h2{height:57.787500pt;}
.h2c{height:58.880000pt;}
.h2e{height:60.519362pt;}
.h32{height:60.650926pt;}
.hb{height:62.812500pt;}
.h18{height:63.843750pt;}
.h36{height:63.971437pt;}
.h33{height:64.320000pt;}
.h9{height:64.500000pt;}
.h15{height:64.500018pt;}
.h11{height:64.500026pt;}
.h13{height:64.500029pt;}
.hf{height:64.500037pt;}
.h17{height:64.500042pt;}
.h34{height:64.629000pt;}
.h3{height:65.781915pt;}
.h2f{height:75.840000pt;}
.h1b{height:80.000000pt;}
.h25{height:92.800000pt;}
.h28{height:110.400000pt;}
.he{height:128.672000pt;}
.h14{height:128.992000pt;}
.h10{height:134.466667pt;}
.h12{height:147.226667pt;}
.h16{height:202.626667pt;}
.h19{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:81.952000pt;}
.w10{width:93.120000pt;}
.w9{width:94.080000pt;}
.wa{width:94.400000pt;}
.w13{width:94.720000pt;}
.w12{width:103.680000pt;}
.w11{width:104.000000pt;}
.w15{width:110.080000pt;}
.w14{width:117.760000pt;}
.w8{width:125.120000pt;}
.we{width:130.560000pt;}
.wb{width:131.200000pt;}
.w4{width:154.946667pt;}
.w5{width:180.866667pt;}
.w6{width:198.786667pt;}
.wf{width:207.680000pt;}
.wd{width:232.320000pt;}
.wc{width:414.720000pt;}
.w7{width:554.880000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.x1e{left:8.866667pt;}
.x34{left:10.080000pt;}
.x37{left:11.706667pt;}
.x39{left:13.573333pt;}
.x36{left:15.226667pt;}
.x3f{left:16.480000pt;}
.x28{left:18.746667pt;}
.x23{left:19.933333pt;}
.x18{left:21.760000pt;}
.x43{left:22.880000pt;}
.x2a{left:23.906667pt;}
.x25{left:25.440000pt;}
.x4e{left:27.333333pt;}
.x3e{left:34.400000pt;}
.x15{left:37.120000pt;}
.x19{left:40.672000pt;}
.x17{left:44.520000pt;}
.x26{left:47.200000pt;}
.x13{left:50.906667pt;}
.x46{left:52.253333pt;}
.x1f{left:54.400000pt;}
.x51{left:55.293333pt;}
.x2b{left:65.853333pt;}
.x10{left:87.712000pt;}
.x2{left:94.431988pt;}
.x47{left:96.640000pt;}
.x4{left:97.631988pt;}
.xa{left:120.351988pt;}
.x49{left:126.783988pt;}
.x1a{left:130.303988pt;}
.x48{left:131.263988pt;}
.xf{left:132.863988pt;}
.x3{left:141.826655pt;}
.x1c{left:156.226655pt;}
.x44{left:162.560000pt;}
.x12{left:170.306667pt;}
.x2e{left:171.360000pt;}
.xb{left:180.226655pt;}
.xd{left:186.626655pt;}
.x45{left:197.826655pt;}
.x5{left:210.973322pt;}
.x20{left:223.133322pt;}
.x22{left:232.000000pt;}
.x4a{left:237.440000pt;}
.x8{left:252.253322pt;}
.x2d{left:255.360000pt;}
.x4b{left:256.733322pt;}
.xc{left:277.213322pt;}
.x7{left:279.133322pt;}
.x4c{left:281.280000pt;}
.x38{left:284.800000pt;}
.x2f{left:290.653322pt;}
.x4d{left:312.453322pt;}
.x14{left:325.893333pt;}
.x1d{left:334.533322pt;}
.x31{left:348.800000pt;}
.x24{left:364.480000pt;}
.x3b{left:378.240000pt;}
.x3c{left:388.319988pt;}
.x53{left:389.599988pt;}
.x1{left:393.119988pt;}
.x6{left:396.959988pt;}
.x32{left:397.919988pt;}
.x3d{left:415.360000pt;}
.x33{left:418.399988pt;}
.x9{left:420.639988pt;}
.x42{left:428.319988pt;}
.x30{left:435.039988pt;}
.x40{left:437.919988pt;}
.x41{left:447.199988pt;}
.x21{left:461.946655pt;}
.x2c{left:462.906655pt;}
.x3a{left:463.866655pt;}
.x27{left:474.240000pt;}
.x52{left:494.400000pt;}
.x35{left:504.640000pt;}
.x16{left:507.386667pt;}
.x29{left:568.960000pt;}
.x4f{left:585.280000pt;}
.x50{left:618.146655pt;}
.xe{left:651.133322pt;}
.x1b{left:698.493322pt;}
}




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