
    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_52ad2cfefc08346ab71c88e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_f8d5999a10186e27f5e5f811.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_336511fe9efedf2c693921a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f3db21b6b11d631d8de41c88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_35c9df12bb24c3b927a9eeb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_0b07b154fd4ccb36d860826a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_79fcba11e9f0bea2bf85a8b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_5ec944a73a83c8b760d2fe87.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_c0d24dadac9bab5bf2ca1e4c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_942296d73c3b6e3697676e0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_53f593009e05c4cb89e2243a.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6385b89f6a0d48691b7a779f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls7{letter-spacing:-1.026000px;}
.ls4{letter-spacing:-0.304800px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.088800px;}
.ls0{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.415200px;}
.ls8{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.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;}
}
.wsa{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.128000px;}
.ws1{word-spacing:-15.840000px;}
.ws6{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.352640px;}
.ws3{word-spacing:-10.026240px;}
.ws2{word-spacing:-9.937440px;}
.ws4{word-spacing:-9.632640px;}
.ws9{word-spacing:-8.911440px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.622880px;}
._1{width:1.069440px;}
._11{width:2.092080px;}
._4{width:3.147360px;}
._15{width:4.176000px;}
._7{width:5.328000px;}
._8{width:6.336000px;}
._d{width:7.658880px;}
._b{width:9.000000px;}
._5{width:10.224000px;}
._6{width:11.232000px;}
._c{width:12.391680px;}
._18{width:13.392000px;}
._12{width:15.336000px;}
._13{width:16.848000px;}
._14{width:19.003680px;}
._e{width:20.065440px;}
._a{width:21.312000px;}
._9{width:22.464000px;}
._20{width:23.542560px;}
._3{width:24.552000px;}
._21{width:26.064000px;}
._23{width:27.072000px;}
._f{width:28.152000px;}
._22{width:29.530560px;}
._19{width:30.888000px;}
._17{width:32.096640px;}
._16{width:33.480000px;}
._35{width:34.886880px;}
._1e{width:36.216000px;}
._1f{width:37.368000px;}
._25{width:38.664000px;}
._24{width:40.070880px;}
._1a{width:41.688000px;}
._1b{width:42.768000px;}
._3c{width:46.201440px;}
._1c{width:50.904000px;}
._1d{width:52.282560px;}
._32{width:53.284320px;}
._34{width:54.571680px;}
._36{width:59.544000px;}
._29{width:68.305440px;}
._2b{width:72.144000px;}
._2c{width:73.440000px;}
._38{width:84.276000px;}
._3f{width:85.824000px;}
._40{width:86.832000px;}
._27{width:94.008000px;}
._26{width:95.150880px;}
._28{width:102.024000px;}
._2f{width:105.624000px;}
._2e{width:109.224000px;}
._33{width:117.072000px;}
._2d{width:119.160000px;}
._37{width:133.001760px;}
._30{width:134.424000px;}
._31{width:135.864000px;}
._2a{width:172.008000px;}
._41{width:214.344000px;}
._3b{width:215.856000px;}
._3d{width:227.088000px;}
._3e{width:228.710880px;}
._39{width:282.240000px;}
._3a{width:284.268000px;}
._10{width:1131.450240px;}
._2{width:2694.606000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y30{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y36{bottom:2.160000px;}
.y2e{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y37{bottom:5.400000px;}
.y5b{bottom:5.940000px;}
.y82{bottom:6.120000px;}
.y34{bottom:12.600000px;}
.yfb{bottom:14.040000px;}
.yb7{bottom:14.580000px;}
.y5a{bottom:14.940000px;}
.y81{bottom:15.300000px;}
.yae{bottom:15.480000px;}
.yfd{bottom:16.020000px;}
.y3c{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y33{bottom:28.440000px;}
.y38{bottom:37.440000px;}
.y32{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y35{bottom:59.040000px;}
.y2c{bottom:111.780000px;}
.yb6{bottom:116.100000px;}
.yfa{bottom:116.460000px;}
.y2b{bottom:119.340000px;}
.y59{bottom:123.480000px;}
.y80{bottom:130.140000px;}
.y2a{bottom:132.840000px;}
.yad{bottom:135.000000px;}
.yf0{bottom:140.220000px;}
.y110{bottom:142.740000px;}
.ya0{bottom:143.820000px;}
.y7f{bottom:148.500000px;}
.yd6{bottom:149.040000px;}
.yb5{bottom:154.800000px;}
.yac{bottom:158.760000px;}
.y58{bottom:162.360000px;}
.yef{bottom:163.980000px;}
.y10f{bottom:166.680000px;}
.y7e{bottom:166.860000px;}
.yd5{bottom:172.800000px;}
.y29{bottom:175.680000px;}
.y9f{bottom:182.520000px;}
.y7d{bottom:185.040000px;}
.y57{bottom:186.120000px;}
.y10e{bottom:190.440000px;}
.y7c{bottom:192.600000px;}
.yb4{bottom:193.680000px;}
.y28{bottom:199.440000px;}
.yee{bottom:202.860000px;}
.y7b{bottom:203.040000px;}
.yab{bottom:206.490000px;}
.y56{bottom:209.910000px;}
.yd4{bottom:211.710000px;}
.y7a{bottom:219.450000px;}
.y9e{bottom:221.430000px;}
.y27{bottom:223.230000px;}
.yed{bottom:226.650000px;}
.y10d{bottom:229.350000px;}
.yb3{bottom:232.410000px;}
.y55{bottom:233.850000px;}
.yd3{bottom:235.470000px;}
.y79{bottom:236.370000px;}
.y78{bottom:243.930000px;}
.yaa{bottom:244.830000px;}
.y9d{bottom:245.190000px;}
.yec{bottom:250.410000px;}
.y10c{bottom:253.110000px;}
.y77{bottom:254.730000px;}
.y54{bottom:257.610000px;}
.yd2{bottom:259.230000px;}
.y26{bottom:261.750000px;}
.y76{bottom:262.290000px;}
.y9c{bottom:269.130000px;}
.yb2{bottom:271.290000px;}
.y75{bottom:273.630000px;}
.yf9{bottom:274.350000px;}
.y10b{bottom:276.870000px;}
.ya9{bottom:284.070000px;}
.yeb{bottom:289.290000px;}
.y9b{bottom:292.890000px;}
.y53{bottom:295.950000px;}
.yd1{bottom:298.110000px;}
.y25{bottom:300.630000px;}
.y74{bottom:307.830000px;}
.yb1{bottom:310.170000px;}
.yea{bottom:313.050000px;}
.y10a{bottom:315.750000px;}
.y9a{bottom:316.650000px;}
.yd0{bottom:321.870000px;}
.y24{bottom:324.570000px;}
.y73{bottom:331.590000px;}
.y52{bottom:335.190000px;}
.ye9{bottom:336.810000px;}
.y109{bottom:339.510000px;}
.y99{bottom:340.410000px;}
.ycf{bottom:345.630000px;}
.y23{bottom:348.870000px;}
.y72{bottom:355.530000px;}
.y51{bottom:358.950000px;}
.yf8{bottom:360.750000px;}
.y108{bottom:363.270000px;}
.y98{bottom:364.350000px;}
.y22{bottom:373.170000px;}
.ye8{bottom:375.690000px;}
.y71{bottom:379.290000px;}
.yce{bottom:384.510000px;}
.y97{bottom:388.110000px;}
.y50{bottom:393.510000px;}
.y21{bottom:396.210000px;}
.ye7{bottom:399.450000px;}
.y107{bottom:402.150000px;}
.y70{bottom:403.050000px;}
.ycd{bottom:408.270000px;}
.y96{bottom:411.870000px;}
.y20{bottom:417.270000px;}
.ye6{bottom:423.210000px;}
.y6f{bottom:426.810000px;}
.ycc{bottom:432.030000px;}
.y95{bottom:435.630000px;}
.y106{bottom:440.895000px;}
.yf7{bottom:447.195000px;}
.y1f{bottom:450.795000px;}
.y94{bottom:459.435000px;}
.ye5{bottom:462.135000px;}
.ycb{bottom:470.955000px;}
.y6e{bottom:474.555000px;}
.y1e{bottom:476.895000px;}
.y105{bottom:479.775000px;}
.y93{bottom:483.375000px;}
.ye4{bottom:485.895000px;}
.yca{bottom:494.715000px;}
.y1d{bottom:497.955000px;}
.ya8{bottom:498.315000px;}
.y104{bottom:503.535000px;}
.y92{bottom:507.135000px;}
.ye3{bottom:509.655000px;}
.y6d{bottom:513.255000px;}
.yc9{bottom:518.475000px;}
.y1c{bottom:521.715000px;}
.ya7{bottom:522.075000px;}
.y103{bottom:527.295000px;}
.y91{bottom:530.895000px;}
.yf6{bottom:533.595000px;}
.y6c{bottom:537.195000px;}
.yc8{bottom:542.415000px;}
.y1b{bottom:545.655000px;}
.ya6{bottom:546.015000px;}
.ye2{bottom:548.535000px;}
.y90{bottom:554.655000px;}
.y6b{bottom:560.955000px;}
.y102{bottom:566.175000px;}
.y1a{bottom:569.415000px;}
.ya5{bottom:569.775000px;}
.ye1{bottom:572.295000px;}
.y8f{bottom:578.595000px;}
.yc7{bottom:581.115000px;}
.y6a{bottom:584.715000px;}
.y19{bottom:593.175000px;}
.ya4{bottom:593.535000px;}
.ye0{bottom:596.055000px;}
.yc6{bottom:604.875000px;}
.y69{bottom:608.475000px;}
.y18{bottom:616.935000px;}
.ya3{bottom:617.295000px;}
.yf5{bottom:619.995000px;}
.yc5{bottom:628.815000px;}
.y68{bottom:632.415000px;}
.ydf{bottom:634.935000px;}
.y112{bottom:637.635000px;}
.y17{bottom:640.695000px;}
.ya2{bottom:641.055000px;}
.y67{bottom:656.175000px;}
.yde{bottom:658.695000px;}
.y16{bottom:664.635000px;}
.ya1{bottom:664.995000px;}
.yc4{bottom:667.515000px;}
.y111{bottom:676.365000px;}
.y66{bottom:679.965000px;}
.ydd{bottom:682.665000px;}
.yc3{bottom:691.305000px;}
.y4f{bottom:694.905000px;}
.yfc{bottom:697.605000px;}
.y15{bottom:697.965000px;}
.y65{bottom:703.725000px;}
.yf4{bottom:706.425000px;}
.yc2{bottom:715.245000px;}
.y4e{bottom:718.845000px;}
.ydc{bottom:721.365000px;}
.y14{bottom:723.885000px;}
.y64{bottom:727.665000px;}
.y101{bottom:739.005000px;}
.y4d{bottom:742.605000px;}
.ydb{bottom:745.125000px;}
.y13{bottom:745.485000px;}
.y63{bottom:751.425000px;}
.yc1{bottom:753.945000px;}
.y4c{bottom:766.365000px;}
.yda{bottom:769.065000px;}
.y12{bottom:769.785000px;}
.y8e{bottom:775.185000px;}
.yc0{bottom:777.705000px;}
.y4b{bottom:790.125000px;}
.yf3{bottom:792.825000px;}
.y11{bottom:794.085000px;}
.y62{bottom:798.405000px;}
.y8d{bottom:798.945000px;}
.y100{bottom:801.645000px;}
.yd9{bottom:807.765000px;}
.y4a{bottom:814.065000px;}
.ybf{bottom:816.585000px;}
.yf{bottom:818.385000px;}
.y8c{bottom:822.705000px;}
.y10{bottom:822.885000px;}
.yff{bottom:825.405000px;}
.yd8{bottom:831.525000px;}
.y49{bottom:837.825000px;}
.ybe{bottom:840.345000px;}
.ye{bottom:842.145000px;}
.y8b{bottom:846.645000px;}
.yd7{bottom:855.465000px;}
.yd{bottom:861.045000px;}
.y48{bottom:861.585000px;}
.ybd{bottom:864.285000px;}
.y61{bottom:869.865000px;}
.y8a{bottom:870.405000px;}
.yf2{bottom:879.225000px;}
.yc{bottom:883.905000px;}
.y47{bottom:885.345000px;}
.ybc{bottom:888.045000px;}
.y89{bottom:894.165000px;}
.yb{bottom:908.565000px;}
.y46{bottom:909.285000px;}
.yfe{bottom:911.850000px;}
.y88{bottom:917.970000px;}
.ybb{bottom:926.790000px;}
.y45{bottom:933.090000px;}
.y87{bottom:941.910000px;}
.ya{bottom:945.150000px;}
.yba{bottom:950.730000px;}
.y44{bottom:956.850000px;}
.y86{bottom:965.670000px;}
.y9{bottom:974.130000px;}
.yb9{bottom:974.490000px;}
.yb0{bottom:980.250000px;}
.y43{bottom:980.610000px;}
.y39{bottom:987.480000px;}
.y2d{bottom:988.740000px;}
.yf1{bottom:989.430000px;}
.y2f{bottom:990.180000px;}
.y8{bottom:993.390000px;}
.y85{bottom:1004.010000px;}
.y42{bottom:1004.370000px;}
.yb8{bottom:1013.190000px;}
.yaf{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y41{bottom:1028.310000px;}
.y60{bottom:1036.590000px;}
.y84{bottom:1043.250000px;}
.y40{bottom:1052.070000px;}
.y6{bottom:1062.870000px;}
.y83{bottom:1067.010000px;}
.y5f{bottom:1075.830000px;}
.y3f{bottom:1090.950000px;}
.y5e{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y3e{bottom:1114.710000px;}
.y5d{bottom:1138.110000px;}
.y3d{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3b{bottom:1180.440000px;}
.y3a{bottom:1196.280000px;}
.y5c{bottom:1197.540000px;}
.y31{bottom:1207.800000px;}
.h17{height:11.700000px;}
.h15{height:14.400000px;}
.h1f{height:18.000000px;}
.h22{height:18.180000px;}
.h1a{height:24.380859px;}
.h1c{height:25.740000px;}
.h20{height:34.884492px;}
.h1b{height:36.168398px;}
.h2{height:38.405391px;}
.h16{height:38.464805px;}
.h5{height:38.469727px;}
.h13{height:38.671172px;}
.hb{height:40.843828px;}
.h1d{height:45.720703px;}
.h21{height:47.344922px;}
.h19{height:49.680000px;}
.hc{height:50.597578px;}
.h1e{height:52.066406px;}
.h18{height:52.817344px;}
.h4{height:53.709961px;}
.h11{height:58.621992px;}
.hf{height:58.651172px;}
.h14{height:59.439023px;}
.h6{height:60.226875px;}
.h8{height:60.960938px;}
.h9{height:64.978594px;}
.h3{height:65.884219px;}
.h10{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:71.324297px;}
.h12{height:72.562500px;}
.h7{height:91.441406px;}
.ha{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.w7{width:79.200000px;}
.w5{width:96.480000px;}
.w3{width:135.000000px;}
.w4{width:137.340000px;}
.w8{width:199.080000px;}
.w6{width:626.400000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.836000px;}
.x14{left:12.210000px;}
.x16{left:16.455000px;}
.xe{left:42.270000px;}
.x11{left:96.840000px;}
.x1{left:108.036000px;}
.xc{left:112.896000px;}
.xf{left:114.120000px;}
.x17{left:118.116000px;}
.x28{left:166.890000px;}
.x18{left:168.150000px;}
.x2{left:173.370000px;}
.x6{left:180.210000px;}
.x19{left:192.810000px;}
.x3{left:234.750000px;}
.x1c{left:268.950000px;}
.x1b{left:285.735000px;}
.xa{left:319.215000px;}
.x9{left:321.195000px;}
.xb{left:324.075000px;}
.x1e{left:361.153125px;}
.x15{left:365.040000px;}
.x1f{left:367.635000px;}
.x1d{left:369.075000px;}
.x22{left:401.113125px;}
.x23{left:407.235000px;}
.x5{left:434.595000px;}
.x4{left:446.475000px;}
.x12{left:454.785000px;}
.x24{left:523.080000px;}
.x26{left:524.340000px;}
.x29{left:525.960000px;}
.x20{left:587.623125px;}
.x21{left:593.745000px;}
.xd{left:668.340000px;}
.x7{left:699.448125px;}
.x25{left:703.800000px;}
.x8{left:704.850000px;}
.x27{left:706.500000px;}
.x1a{left:723.390000px;}
.x13{left:813.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.912000pt;}
.ls4{letter-spacing:-0.270933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.078933pt;}
.ls0{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.369067pt;}
.ls8{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.wsa{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.202347pt;}
.ws3{word-spacing:-8.912213pt;}
.ws2{word-spacing:-8.833280pt;}
.ws4{word-spacing:-8.562347pt;}
.ws9{word-spacing:-7.921280pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.442560pt;}
._1{width:0.950613pt;}
._11{width:1.859627pt;}
._4{width:2.797653pt;}
._15{width:3.712000pt;}
._7{width:4.736000pt;}
._8{width:5.632000pt;}
._d{width:6.807893pt;}
._b{width:8.000000pt;}
._5{width:9.088000pt;}
._6{width:9.984000pt;}
._c{width:11.014827pt;}
._18{width:11.904000pt;}
._12{width:13.632000pt;}
._13{width:14.976000pt;}
._14{width:16.892160pt;}
._e{width:17.835947pt;}
._a{width:18.944000pt;}
._9{width:19.968000pt;}
._20{width:20.926720pt;}
._3{width:21.824000pt;}
._21{width:23.168000pt;}
._23{width:24.064000pt;}
._f{width:25.024000pt;}
._22{width:26.249387pt;}
._19{width:27.456000pt;}
._17{width:28.530347pt;}
._16{width:29.760000pt;}
._35{width:31.010560pt;}
._1e{width:32.192000pt;}
._1f{width:33.216000pt;}
._25{width:34.368000pt;}
._24{width:35.618560pt;}
._1a{width:37.056000pt;}
._1b{width:38.016000pt;}
._3c{width:41.067947pt;}
._1c{width:45.248000pt;}
._1d{width:46.473387pt;}
._32{width:47.363840pt;}
._34{width:48.508160pt;}
._36{width:52.928000pt;}
._29{width:60.715947pt;}
._2b{width:64.128000pt;}
._2c{width:65.280000pt;}
._38{width:74.912000pt;}
._3f{width:76.288000pt;}
._40{width:77.184000pt;}
._27{width:83.562667pt;}
._26{width:84.578560pt;}
._28{width:90.688000pt;}
._2f{width:93.888000pt;}
._2e{width:97.088000pt;}
._33{width:104.064000pt;}
._2d{width:105.920000pt;}
._37{width:118.223787pt;}
._30{width:119.488000pt;}
._31{width:120.768000pt;}
._2a{width:152.896000pt;}
._41{width:190.528000pt;}
._3b{width:191.872000pt;}
._3d{width:201.856000pt;}
._3e{width:203.298560pt;}
._39{width:250.880000pt;}
._3a{width:252.682667pt;}
._10{width:1005.733547pt;}
._2{width:2395.205333pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y30{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:1.920000pt;}
.y2e{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y37{bottom:4.800000pt;}
.y5b{bottom:5.280000pt;}
.y82{bottom:5.440000pt;}
.y34{bottom:11.200000pt;}
.yfb{bottom:12.480000pt;}
.yb7{bottom:12.960000pt;}
.y5a{bottom:13.280000pt;}
.y81{bottom:13.600000pt;}
.yae{bottom:13.760000pt;}
.yfd{bottom:14.240000pt;}
.y3c{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y33{bottom:25.280000pt;}
.y38{bottom:33.280000pt;}
.y32{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y35{bottom:52.480000pt;}
.y2c{bottom:99.360000pt;}
.yb6{bottom:103.200000pt;}
.yfa{bottom:103.520000pt;}
.y2b{bottom:106.080000pt;}
.y59{bottom:109.760000pt;}
.y80{bottom:115.680000pt;}
.y2a{bottom:118.080000pt;}
.yad{bottom:120.000000pt;}
.yf0{bottom:124.640000pt;}
.y110{bottom:126.880000pt;}
.ya0{bottom:127.840000pt;}
.y7f{bottom:132.000000pt;}
.yd6{bottom:132.480000pt;}
.yb5{bottom:137.600000pt;}
.yac{bottom:141.120000pt;}
.y58{bottom:144.320000pt;}
.yef{bottom:145.760000pt;}
.y10f{bottom:148.160000pt;}
.y7e{bottom:148.320000pt;}
.yd5{bottom:153.600000pt;}
.y29{bottom:156.160000pt;}
.y9f{bottom:162.240000pt;}
.y7d{bottom:164.480000pt;}
.y57{bottom:165.440000pt;}
.y10e{bottom:169.280000pt;}
.y7c{bottom:171.200000pt;}
.yb4{bottom:172.160000pt;}
.y28{bottom:177.280000pt;}
.yee{bottom:180.320000pt;}
.y7b{bottom:180.480000pt;}
.yab{bottom:183.546667pt;}
.y56{bottom:186.586667pt;}
.yd4{bottom:188.186667pt;}
.y7a{bottom:195.066667pt;}
.y9e{bottom:196.826667pt;}
.y27{bottom:198.426667pt;}
.yed{bottom:201.466667pt;}
.y10d{bottom:203.866667pt;}
.yb3{bottom:206.586667pt;}
.y55{bottom:207.866667pt;}
.yd3{bottom:209.306667pt;}
.y79{bottom:210.106667pt;}
.y78{bottom:216.826667pt;}
.yaa{bottom:217.626667pt;}
.y9d{bottom:217.946667pt;}
.yec{bottom:222.586667pt;}
.y10c{bottom:224.986667pt;}
.y77{bottom:226.426667pt;}
.y54{bottom:228.986667pt;}
.yd2{bottom:230.426667pt;}
.y26{bottom:232.666667pt;}
.y76{bottom:233.146667pt;}
.y9c{bottom:239.226667pt;}
.yb2{bottom:241.146667pt;}
.y75{bottom:243.226667pt;}
.yf9{bottom:243.866667pt;}
.y10b{bottom:246.106667pt;}
.ya9{bottom:252.506667pt;}
.yeb{bottom:257.146667pt;}
.y9b{bottom:260.346667pt;}
.y53{bottom:263.066667pt;}
.yd1{bottom:264.986667pt;}
.y25{bottom:267.226667pt;}
.y74{bottom:273.626667pt;}
.yb1{bottom:275.706667pt;}
.yea{bottom:278.266667pt;}
.y10a{bottom:280.666667pt;}
.y9a{bottom:281.466667pt;}
.yd0{bottom:286.106667pt;}
.y24{bottom:288.506667pt;}
.y73{bottom:294.746667pt;}
.y52{bottom:297.946667pt;}
.ye9{bottom:299.386667pt;}
.y109{bottom:301.786667pt;}
.y99{bottom:302.586667pt;}
.ycf{bottom:307.226667pt;}
.y23{bottom:310.106667pt;}
.y72{bottom:316.026667pt;}
.y51{bottom:319.066667pt;}
.yf8{bottom:320.666667pt;}
.y108{bottom:322.906667pt;}
.y98{bottom:323.866667pt;}
.y22{bottom:331.706667pt;}
.ye8{bottom:333.946667pt;}
.y71{bottom:337.146667pt;}
.yce{bottom:341.786667pt;}
.y97{bottom:344.986667pt;}
.y50{bottom:349.786667pt;}
.y21{bottom:352.186667pt;}
.ye7{bottom:355.066667pt;}
.y107{bottom:357.466667pt;}
.y70{bottom:358.266667pt;}
.ycd{bottom:362.906667pt;}
.y96{bottom:366.106667pt;}
.y20{bottom:370.906667pt;}
.ye6{bottom:376.186667pt;}
.y6f{bottom:379.386667pt;}
.ycc{bottom:384.026667pt;}
.y95{bottom:387.226667pt;}
.y106{bottom:391.906667pt;}
.yf7{bottom:397.506667pt;}
.y1f{bottom:400.706667pt;}
.y94{bottom:408.386667pt;}
.ye5{bottom:410.786667pt;}
.ycb{bottom:418.626667pt;}
.y6e{bottom:421.826667pt;}
.y1e{bottom:423.906667pt;}
.y105{bottom:426.466667pt;}
.y93{bottom:429.666667pt;}
.ye4{bottom:431.906667pt;}
.yca{bottom:439.746667pt;}
.y1d{bottom:442.626667pt;}
.ya8{bottom:442.946667pt;}
.y104{bottom:447.586667pt;}
.y92{bottom:450.786667pt;}
.ye3{bottom:453.026667pt;}
.y6d{bottom:456.226667pt;}
.yc9{bottom:460.866667pt;}
.y1c{bottom:463.746667pt;}
.ya7{bottom:464.066667pt;}
.y103{bottom:468.706667pt;}
.y91{bottom:471.906667pt;}
.yf6{bottom:474.306667pt;}
.y6c{bottom:477.506667pt;}
.yc8{bottom:482.146667pt;}
.y1b{bottom:485.026667pt;}
.ya6{bottom:485.346667pt;}
.ye2{bottom:487.586667pt;}
.y90{bottom:493.026667pt;}
.y6b{bottom:498.626667pt;}
.y102{bottom:503.266667pt;}
.y1a{bottom:506.146667pt;}
.ya5{bottom:506.466667pt;}
.ye1{bottom:508.706667pt;}
.y8f{bottom:514.306667pt;}
.yc7{bottom:516.546667pt;}
.y6a{bottom:519.746667pt;}
.y19{bottom:527.266667pt;}
.ya4{bottom:527.586667pt;}
.ye0{bottom:529.826667pt;}
.yc6{bottom:537.666667pt;}
.y69{bottom:540.866667pt;}
.y18{bottom:548.386667pt;}
.ya3{bottom:548.706667pt;}
.yf5{bottom:551.106667pt;}
.yc5{bottom:558.946667pt;}
.y68{bottom:562.146667pt;}
.ydf{bottom:564.386667pt;}
.y112{bottom:566.786667pt;}
.y17{bottom:569.506667pt;}
.ya2{bottom:569.826667pt;}
.y67{bottom:583.266667pt;}
.yde{bottom:585.506667pt;}
.y16{bottom:590.786667pt;}
.ya1{bottom:591.106667pt;}
.yc4{bottom:593.346667pt;}
.y111{bottom:601.213333pt;}
.y66{bottom:604.413333pt;}
.ydd{bottom:606.813333pt;}
.yc3{bottom:614.493333pt;}
.y4f{bottom:617.693333pt;}
.yfc{bottom:620.093333pt;}
.y15{bottom:620.413333pt;}
.y65{bottom:625.533333pt;}
.yf4{bottom:627.933333pt;}
.yc2{bottom:635.773333pt;}
.y4e{bottom:638.973333pt;}
.ydc{bottom:641.213333pt;}
.y14{bottom:643.453333pt;}
.y64{bottom:646.813333pt;}
.y101{bottom:656.893333pt;}
.y4d{bottom:660.093333pt;}
.ydb{bottom:662.333333pt;}
.y13{bottom:662.653333pt;}
.y63{bottom:667.933333pt;}
.yc1{bottom:670.173333pt;}
.y4c{bottom:681.213333pt;}
.yda{bottom:683.613333pt;}
.y12{bottom:684.253333pt;}
.y8e{bottom:689.053333pt;}
.yc0{bottom:691.293333pt;}
.y4b{bottom:702.333333pt;}
.yf3{bottom:704.733333pt;}
.y11{bottom:705.853333pt;}
.y62{bottom:709.693333pt;}
.y8d{bottom:710.173333pt;}
.y100{bottom:712.573333pt;}
.yd9{bottom:718.013333pt;}
.y4a{bottom:723.613333pt;}
.ybf{bottom:725.853333pt;}
.yf{bottom:727.453333pt;}
.y8c{bottom:731.293333pt;}
.y10{bottom:731.453333pt;}
.yff{bottom:733.693333pt;}
.yd8{bottom:739.133333pt;}
.y49{bottom:744.733333pt;}
.ybe{bottom:746.973333pt;}
.ye{bottom:748.573333pt;}
.y8b{bottom:752.573333pt;}
.yd7{bottom:760.413333pt;}
.yd{bottom:765.373333pt;}
.y48{bottom:765.853333pt;}
.ybd{bottom:768.253333pt;}
.y61{bottom:773.213333pt;}
.y8a{bottom:773.693333pt;}
.yf2{bottom:781.533333pt;}
.yc{bottom:785.693333pt;}
.y47{bottom:786.973333pt;}
.ybc{bottom:789.373333pt;}
.y89{bottom:794.813333pt;}
.yb{bottom:807.613333pt;}
.y46{bottom:808.253333pt;}
.yfe{bottom:810.533333pt;}
.y88{bottom:815.973333pt;}
.ybb{bottom:823.813333pt;}
.y45{bottom:829.413333pt;}
.y87{bottom:837.253333pt;}
.ya{bottom:840.133333pt;}
.yba{bottom:845.093333pt;}
.y44{bottom:850.533333pt;}
.y86{bottom:858.373333pt;}
.y9{bottom:865.893333pt;}
.yb9{bottom:866.213333pt;}
.yb0{bottom:871.333333pt;}
.y43{bottom:871.653333pt;}
.y39{bottom:877.760000pt;}
.y2d{bottom:878.880000pt;}
.yf1{bottom:879.493333pt;}
.y2f{bottom:880.160000pt;}
.y8{bottom:883.013333pt;}
.y85{bottom:892.453333pt;}
.y42{bottom:892.773333pt;}
.yb8{bottom:900.613333pt;}
.yaf{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y41{bottom:914.053333pt;}
.y60{bottom:921.413333pt;}
.y84{bottom:927.333333pt;}
.y40{bottom:935.173333pt;}
.y6{bottom:944.773333pt;}
.y83{bottom:948.453333pt;}
.y5f{bottom:956.293333pt;}
.y3f{bottom:969.733333pt;}
.y5e{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y3e{bottom:990.853333pt;}
.y5d{bottom:1011.653333pt;}
.y3d{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3b{bottom:1049.280000pt;}
.y3a{bottom:1063.360000pt;}
.y5c{bottom:1064.480000pt;}
.y31{bottom:1073.600000pt;}
.h17{height:10.400000pt;}
.h15{height:12.800000pt;}
.h1f{height:16.000000pt;}
.h22{height:16.160000pt;}
.h1a{height:21.671875pt;}
.h1c{height:22.880000pt;}
.h20{height:31.008437pt;}
.h1b{height:32.149687pt;}
.h2{height:34.138125pt;}
.h16{height:34.190937pt;}
.h5{height:34.195312pt;}
.h13{height:34.374375pt;}
.hb{height:36.305625pt;}
.h1d{height:40.640625pt;}
.h21{height:42.084375pt;}
.h19{height:44.160000pt;}
.hc{height:44.975625pt;}
.h1e{height:46.281250pt;}
.h18{height:46.948750pt;}
.h4{height:47.742188pt;}
.h11{height:52.108438pt;}
.hf{height:52.134375pt;}
.h14{height:52.834688pt;}
.h6{height:53.535000pt;}
.h8{height:54.187500pt;}
.h9{height:57.758750pt;}
.h3{height:58.563750pt;}
.h10{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:63.399375pt;}
.h12{height:64.500000pt;}
.h7{height:81.281250pt;}
.ha{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.w7{width:70.400000pt;}
.w5{width:85.760000pt;}
.w3{width:120.000000pt;}
.w4{width:122.080000pt;}
.w8{width:176.960000pt;}
.w6{width:556.800000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.632000pt;}
.x14{left:10.853333pt;}
.x16{left:14.626667pt;}
.xe{left:37.573333pt;}
.x11{left:86.080000pt;}
.x1{left:96.032000pt;}
.xc{left:100.352000pt;}
.xf{left:101.440000pt;}
.x17{left:104.992000pt;}
.x28{left:148.346667pt;}
.x18{left:149.466667pt;}
.x2{left:154.106667pt;}
.x6{left:160.186667pt;}
.x19{left:171.386667pt;}
.x3{left:208.666667pt;}
.x1c{left:239.066667pt;}
.x1b{left:253.986667pt;}
.xa{left:283.746667pt;}
.x9{left:285.506667pt;}
.xb{left:288.066667pt;}
.x1e{left:321.025000pt;}
.x15{left:324.480000pt;}
.x1f{left:326.786667pt;}
.x1d{left:328.066667pt;}
.x22{left:356.545000pt;}
.x23{left:361.986667pt;}
.x5{left:386.306667pt;}
.x4{left:396.866667pt;}
.x12{left:404.253333pt;}
.x24{left:464.960000pt;}
.x26{left:466.080000pt;}
.x29{left:467.520000pt;}
.x20{left:522.331667pt;}
.x21{left:527.773333pt;}
.xd{left:594.080000pt;}
.x7{left:621.731667pt;}
.x25{left:625.600000pt;}
.x8{left:626.533333pt;}
.x27{left:628.000000pt;}
.x1a{left:643.013333pt;}
.x13{left:723.360000pt;}
}




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