
    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_0774c51c06d1210bf4aaf8f2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_309963cb2b67feefc263dc46.woff')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_33d1ff101004301ec69e81e3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_c5b7d96d5043e27ce2c3bfc2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_d84cd5f8d7d5a49d315b0c5d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_86af25da6a40613b69687a44.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_4d8762fa499b0dae6db8376c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e45927f8d9030550bef83191.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95e9d43785772382c6b4f2da.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_cdeb88e13c523c00695ed5a4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_f5a75519160bef9413a6921e.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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);}
.v8{vertical-align:-102.120000px;}
.v5{vertical-align:-54.000000px;}
.v7{vertical-align:-26.520000px;}
.v4{vertical-align:-16.260000px;}
.v2{vertical-align:-15.120000px;}
.v6{vertical-align:-8.340000px;}
.v3{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.164400px;}
.lsf{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.091200px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls18{letter-spacing:0.540000px;}
.ls7{letter-spacing:2.520000px;}
.ls12{letter-spacing:15.984000px;}
.ls17{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.lsb{letter-spacing:70.650720px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws12{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.wsc{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:256.212000px;}
.wse{word-spacing:256.272000px;}
.ws11{word-spacing:320.891520px;}
.ws10{word-spacing:338.231520px;}
._1a{margin-left:-6.348960px;}
._5{margin-left:-4.927920px;}
._4{margin-left:-3.767040px;}
._3{margin-left:-2.147040px;}
._2{margin-left:-1.080000px;}
._0{width:1.872000px;}
._6{width:3.866400px;}
._1{width:4.968000px;}
._a{width:6.693120px;}
._11{width:7.971840px;}
._13{width:9.113040px;}
._12{width:10.252080px;}
._9{width:12.207600px;}
._18{width:13.486320px;}
._15{width:15.989040px;}
._d{width:17.131680px;}
._e{width:18.425520px;}
._17{width:19.560960px;}
._b{width:20.597760px;}
._c{width:21.672000px;}
._14{width:22.780080px;}
._8{width:23.844240px;}
._7{width:24.981840px;}
._16{width:26.992080px;}
._10{width:28.306800px;}
._f{width:29.939760px;}
._1e{width:35.497440px;}
._1d{width:36.812160px;}
._1b{width:75.620160px;}
._1c{width:76.648320px;}
._19{width:197.088480px;}
.fc7{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y41{bottom:3.960000px;}
.yb4{bottom:4.140000px;}
.yb9{bottom:4.320000px;}
.y1b{bottom:4.860000px;}
.yb6{bottom:5.040000px;}
.yaf{bottom:6.120000px;}
.y9d{bottom:6.300000px;}
.y9c{bottom:6.480000px;}
.ycb{bottom:6.834000px;}
.yad{bottom:7.020000px;}
.yeb{bottom:7.170000px;}
.yc9{bottom:7.560000px;}
.yc2{bottom:7.920000px;}
.yc6{bottom:8.460000px;}
.ye{bottom:9.540000px;}
.y3f{bottom:10.620000px;}
.y94{bottom:12.240000px;}
.y1d{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yb0{bottom:14.760000px;}
.ya0{bottom:15.480000px;}
.y4{bottom:17.316000px;}
.y9a{bottom:18.540000px;}
.y2{bottom:20.196000px;}
.y3b{bottom:20.520000px;}
.y40{bottom:22.140000px;}
.yae{bottom:23.400000px;}
.yc8{bottom:24.834000px;}
.y3e{bottom:25.200000px;}
.yb2{bottom:25.740000px;}
.ye9{bottom:27.465000px;}
.yab{bottom:27.540000px;}
.y1a{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y2c{bottom:30.780000px;}
.yea{bottom:35.715000px;}
.y3a{bottom:37.800000px;}
.y5{bottom:41.220000px;}
.y19{bottom:45.900000px;}
.y2b{bottom:46.080000px;}
.ya{bottom:46.440000px;}
.yf1{bottom:47.340000px;}
.ye8{bottom:47.625000px;}
.y39{bottom:54.900000px;}
.y98{bottom:55.620000px;}
.y1{bottom:62.280000px;}
.y18{bottom:62.460000px;}
.y2a{bottom:63.720000px;}
.ydf{bottom:69.990000px;}
.y38{bottom:72.180000px;}
.y97{bottom:72.900000px;}
.y9{bottom:73.440000px;}
.y17{bottom:78.885000px;}
.y29{bottom:81.000000px;}
.y37{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y16{bottom:95.445000px;}
.y28{bottom:98.100000px;}
.ye0{bottom:101.235000px;}
.y36{bottom:106.740000px;}
.ycc{bottom:109.836000px;}
.y15{bottom:111.105000px;}
.y7{bottom:111.270000px;}
.y27{bottom:115.950000px;}
.y106{bottom:119.196000px;}
.y107{bottom:119.376000px;}
.y14{bottom:121.545000px;}
.y35{bottom:124.050000px;}
.yf2{bottom:125.460000px;}
.y54{bottom:130.716000px;}
.yc7{bottom:131.616000px;}
.ye1{bottom:132.450000px;}
.y26{bottom:132.690000px;}
.y90{bottom:136.476000px;}
.y13{bottom:139.905000px;}
.y34{bottom:141.330000px;}
.yef{bottom:147.420000px;}
.y53{bottom:147.996000px;}
.yca{bottom:149.616000px;}
.y25{bottom:149.790000px;}
.y8f{bottom:153.750000px;}
.y33{bottom:158.430000px;}
.y12{bottom:158.985000px;}
.ye2{bottom:163.650000px;}
.y52{bottom:165.270000px;}
.ydd{bottom:166.425000px;}
.y24{bottom:167.250000px;}
.y105{bottom:170.850000px;}
.y8e{bottom:171.030000px;}
.yc4{bottom:171.210000px;}
.y32{bottom:175.710000px;}
.y51{bottom:182.370000px;}
.y23{bottom:184.530000px;}
.y11{bottom:184.725000px;}
.y104{bottom:188.130000px;}
.y8d{bottom:188.310000px;}
.y31{bottom:192.990000px;}
.yc5{bottom:194.430000px;}
.ye3{bottom:194.910000px;}
.y50{bottom:199.650000px;}
.y22{bottom:201.990000px;}
.y103{bottom:205.410000px;}
.y8c{bottom:205.590000px;}
.y10{bottom:209.025000px;}
.y30{bottom:210.270000px;}
.yc3{bottom:216.210000px;}
.y4f{bottom:216.930000px;}
.y21{bottom:219.630000px;}
.y102{bottom:222.690000px;}
.y8b{bottom:222.870000px;}
.ye4{bottom:226.110000px;}
.y2f{bottom:227.550000px;}
.y4e{bottom:234.210000px;}
.yee{bottom:236.880000px;}
.yc1{bottom:238.890000px;}
.y8a{bottom:239.970000px;}
.y2e{bottom:244.830000px;}
.y20{bottom:246.990000px;}
.y4d{bottom:251.490000px;}
.yed{bottom:257.010000px;}
.y89{bottom:257.250000px;}
.ye5{bottom:257.370000px;}
.y2d{bottom:261.930000px;}
.y1f{bottom:264.630000px;}
.y4c{bottom:268.590000px;}
.yde{bottom:271.335000px;}
.y101{bottom:274.350000px;}
.y88{bottom:274.530000px;}
.yc0{bottom:282.090000px;}
.y4b{bottom:285.870000px;}
.ydb{bottom:288.210000px;}
.ye6{bottom:288.570000px;}
.y100{bottom:291.630000px;}
.y87{bottom:291.810000px;}
.ybf{bottom:299.190000px;}
.yda{bottom:302.070000px;}
.y4a{bottom:303.150000px;}
.yec{bottom:306.615000px;}
.yff{bottom:308.910000px;}
.y86{bottom:309.090000px;}
.ybe{bottom:316.470000px;}
.ye7{bottom:319.830000px;}
.y49{bottom:320.430000px;}
.yfe{bottom:326.190000px;}
.y85{bottom:326.370000px;}
.ybd{bottom:333.750000px;}
.y48{bottom:337.755000px;}
.y84{bottom:343.515000px;}
.ybc{bottom:351.075000px;}
.y47{bottom:355.035000px;}
.y83{bottom:360.795000px;}
.ybb{bottom:368.355000px;}
.y46{bottom:372.135000px;}
.yfd{bottom:377.895000px;}
.y82{bottom:378.075000px;}
.yb7{bottom:383.115000px;}
.y45{bottom:389.415000px;}
.yfc{bottom:395.175000px;}
.y81{bottom:395.355000px;}
.yba{bottom:404.535000px;}
.y44{bottom:406.695000px;}
.yfb{bottom:412.455000px;}
.y80{bottom:412.635000px;}
.y43{bottom:423.975000px;}
.yb8{bottom:425.955000px;}
.yfa{bottom:429.735000px;}
.y7f{bottom:429.915000px;}
.y42{bottom:441.255000px;}
.yb1{bottom:445.935000px;}
.y7e{bottom:447.015000px;}
.y3d{bottom:455.295000px;}
.yf9{bottom:464.115000px;}
.y7d{bottom:464.295000px;}
.yb5{bottom:467.355000px;}
.yf8{bottom:481.395000px;}
.y7c{bottom:481.575000px;}
.yb3{bottom:488.955000px;}
.y1e{bottom:491.835000px;}
.yf7{bottom:498.675000px;}
.y7b{bottom:498.855000px;}
.yaa{bottom:508.935000px;}
.yf6{bottom:515.955000px;}
.y7a{bottom:516.135000px;}
.y79{bottom:533.235000px;}
.yac{bottom:549.795000px;}
.y78{bottom:550.515000px;}
.yf5{bottom:564.555000px;}
.y77{bottom:567.795000px;}
.ya9{bottom:578.595000px;}
.y76{bottom:585.075000px;}
.ya8{bottom:595.875000px;}
.y75{bottom:602.355000px;}
.ya7{bottom:613.185000px;}
.yd9{bottom:614.265000px;}
.y74{bottom:619.665000px;}
.ya6{bottom:630.465000px;}
.yd8{bottom:631.545000px;}
.y73{bottom:636.765000px;}
.yd7{bottom:645.585000px;}
.ydc{bottom:645.660000px;}
.ya5{bottom:647.745000px;}
.y72{bottom:654.045000px;}
.ya4{bottom:665.025000px;}
.y71{bottom:671.325000px;}
.ya3{bottom:682.125000px;}
.y70{bottom:688.605000px;}
.ya2{bottom:696.885000px;}
.y6f{bottom:705.885000px;}
.y96{bottom:714.885000px;}
.y6e{bottom:723.165000px;}
.ya1{bottom:732.885000px;}
.y6d{bottom:740.265000px;}
.yf0{bottom:745.740000px;}
.y9e{bottom:757.365000px;}
.y6c{bottom:757.545000px;}
.y1c{bottom:767.805000px;}
.y6b{bottom:774.825000px;}
.y9f{bottom:781.665000px;}
.y6a{bottom:792.105000px;}
.yf{bottom:797.325000px;}
.y99{bottom:806.145000px;}
.y69{bottom:809.385000px;}
.y68{bottom:826.485000px;}
.y9b{bottom:830.445000px;}
.y67{bottom:843.765000px;}
.y93{bottom:854.745000px;}
.yf4{bottom:855.465000px;}
.y66{bottom:861.045000px;}
.yf3{bottom:869.505000px;}
.y95{bottom:872.790000px;}
.y65{bottom:878.370000px;}
.y92{bottom:890.790000px;}
.y64{bottom:895.650000px;}
.y91{bottom:908.790000px;}
.y63{bottom:912.930000px;}
.y62{bottom:930.030000px;}
.y61{bottom:947.310000px;}
.y60{bottom:964.590000px;}
.y5f{bottom:981.870000px;}
.yd6{bottom:986.370000px;}
.y5e{bottom:999.150000px;}
.yd5{bottom:1003.650000px;}
.y5d{bottom:1016.430000px;}
.yd4{bottom:1020.930000px;}
.yd{bottom:1021.470000px;}
.y5c{bottom:1033.530000px;}
.yd3{bottom:1038.030000px;}
.y6{bottom:1046.850000px;}
.y5b{bottom:1050.810000px;}
.yd2{bottom:1055.310000px;}
.y5a{bottom:1068.090000px;}
.yd1{bottom:1072.590000px;}
.y59{bottom:1085.370000px;}
.yd0{bottom:1089.870000px;}
.y58{bottom:1102.650000px;}
.ycf{bottom:1107.150000px;}
.y57{bottom:1119.930000px;}
.yce{bottom:1121.910000px;}
.y56{bottom:1137.030000px;}
.ycd{bottom:1145.160000px;}
.y55{bottom:1154.340000px;}
.h23{height:17.280000px;}
.h25{height:17.316000px;}
.h2f{height:19.260000px;}
.h30{height:20.700000px;}
.h38{height:20.880000px;}
.h35{height:21.060000px;}
.h33{height:21.780000px;}
.h36{height:22.500000px;}
.h39{height:22.536000px;}
.h28{height:23.580000px;}
.h2a{height:23.760000px;}
.h2c{height:24.840000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h24{height:35.316000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h1c{height:38.818125px;}
.h37{height:38.880000px;}
.h32{height:39.060000px;}
.h2d{height:40.140000px;}
.h19{height:40.243711px;}
.h29{height:41.760000px;}
.h20{height:42.164648px;}
.h1b{height:42.281367px;}
.h1d{height:43.215117px;}
.h22{height:43.506914px;}
.he{height:44.002969px;}
.h34{height:44.280000px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h27{height:47.880000px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h21{height:48.995859px;}
.h4{height:53.709961px;}
.h3b{height:53.853187px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h31{height:62.100000px;}
.h2e{height:62.280000px;}
.h2b{height:65.700000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h3c{height:70.020000px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.h26{height:139.140000px;}
.hd{height:224.130000px;}
.h16{height:275.970000px;}
.h3a{height:337.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:64.260000px;}
.w3{width:74.880000px;}
.w11{width:75.060000px;}
.wd{width:99.000000px;}
.we{width:102.276000px;}
.w1a{width:107.820000px;}
.w19{width:110.016000px;}
.w1c{width:111.996000px;}
.w18{width:116.496000px;}
.w1b{width:124.740000px;}
.w5{width:151.950000px;}
.wb{width:153.750000px;}
.wc{width:156.270000px;}
.w10{width:164.550000px;}
.w17{width:176.970000px;}
.w13{width:179.490000px;}
.w16{width:179.850000px;}
.w14{width:205.590000px;}
.w8{width:223.275000px;}
.wf{width:240.330000px;}
.w21{width:303.840000px;}
.wa{width:343.335000px;}
.w15{width:360.075000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w1f{width:649.080000px;}
.w20{width:649.260000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w1e{width:750.030000px;}
.w12{width:754.530000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.560000px;}
.x2{left:8.640000px;}
.x17{left:12.600000px;}
.x38{left:30.420000px;}
.x11{left:33.516000px;}
.x14{left:36.036000px;}
.xd{left:40.356000px;}
.x32{left:44.130000px;}
.xf{left:49.716000px;}
.x31{left:50.970000px;}
.x30{left:57.810000px;}
.x13{left:67.356000px;}
.x1a{left:69.300000px;}
.x12{left:70.956000px;}
.x1{left:72.360000px;}
.x10{left:75.456000px;}
.x4{left:80.999987px;}
.x40{left:84.239987px;}
.x33{left:88.350000px;}
.x5{left:98.130000px;}
.x18{left:108.035987px;}
.x2f{left:111.270000px;}
.x24{left:113.615987px;}
.x2e{left:121.860000px;}
.x39{left:126.900000px;}
.x19{left:128.915987px;}
.x20{left:158.249987px;}
.x1e{left:172.290000px;}
.x2a{left:184.170000px;}
.xe{left:192.270000px;}
.x3d{left:200.310000px;}
.x34{left:201.570000px;}
.x35{left:211.470000px;}
.x15{left:215.175000px;}
.x6{left:224.850000px;}
.x25{left:249.330000px;}
.x21{left:253.470000px;}
.x9{left:288.435000px;}
.x16{left:296.175000px;}
.x36{left:297.465000px;}
.x37{left:334.725000px;}
.x1f{left:337.575000px;}
.x7{left:346.395000px;}
.x8{left:367.635000px;}
.xb{left:369.975000px;}
.xc{left:373.575000px;}
.x41{left:388.874987px;}
.x42{left:396.074987px;}
.x1b{left:413.355000px;}
.x2c{left:446.474987px;}
.xa{left:455.700000px;}
.x22{left:459.795000px;}
.x3c{left:467.280000px;}
.x27{left:477.465000px;}
.x3b{left:537.450000px;}
.x3a{left:558.105000px;}
.x1c{left:567.825000px;}
.x28{left:586.005000px;}
.x23{left:640.005000px;}
.x29{left:696.750000px;}
.x1d{left:724.830000px;}
.x3{left:745.890000px;}
.x2b{left:771.089987px;}
.x3f{left:775.769987px;}
.x2d{left:785.129987px;}
.x3e{left:786.569987px;}
@media print{
.v8{vertical-align:-90.773333pt;}
.v5{vertical-align:-48.000000pt;}
.v7{vertical-align:-23.573333pt;}
.v4{vertical-align:-14.453333pt;}
.v2{vertical-align:-13.440000pt;}
.v6{vertical-align:-7.413333pt;}
.v3{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.146133pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.081067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls18{letter-spacing:0.480000pt;}
.ls7{letter-spacing:2.240000pt;}
.ls12{letter-spacing:14.208000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.lsb{letter-spacing:62.800640pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:227.744000pt;}
.wse{word-spacing:227.797333pt;}
.ws11{word-spacing:285.236907pt;}
.ws10{word-spacing:300.650240pt;}
._1a{margin-left:-5.643520pt;}
._5{margin-left:-4.380373pt;}
._4{margin-left:-3.348480pt;}
._3{margin-left:-1.908480pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.664000pt;}
._6{width:3.436800pt;}
._1{width:4.416000pt;}
._a{width:5.949440pt;}
._11{width:7.086080pt;}
._13{width:8.100480pt;}
._12{width:9.112960pt;}
._9{width:10.851200pt;}
._18{width:11.987840pt;}
._15{width:14.212480pt;}
._d{width:15.228160pt;}
._e{width:16.378240pt;}
._17{width:17.387520pt;}
._b{width:18.309120pt;}
._c{width:19.264000pt;}
._14{width:20.248960pt;}
._8{width:21.194880pt;}
._7{width:22.206080pt;}
._16{width:23.992960pt;}
._10{width:25.161600pt;}
._f{width:26.613120pt;}
._1e{width:31.553280pt;}
._1d{width:32.721920pt;}
._1b{width:67.217920pt;}
._1c{width:68.131840pt;}
._19{width:175.189760pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y41{bottom:3.520000pt;}
.yb4{bottom:3.680000pt;}
.yb9{bottom:3.840000pt;}
.y1b{bottom:4.320000pt;}
.yb6{bottom:4.480000pt;}
.yaf{bottom:5.440000pt;}
.y9d{bottom:5.600000pt;}
.y9c{bottom:5.760000pt;}
.ycb{bottom:6.074667pt;}
.yad{bottom:6.240000pt;}
.yeb{bottom:6.373333pt;}
.yc9{bottom:6.720000pt;}
.yc2{bottom:7.040000pt;}
.yc6{bottom:7.520000pt;}
.ye{bottom:8.480000pt;}
.y3f{bottom:9.440000pt;}
.y94{bottom:10.880000pt;}
.y1d{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yb0{bottom:13.120000pt;}
.ya0{bottom:13.760000pt;}
.y4{bottom:15.392000pt;}
.y9a{bottom:16.480000pt;}
.y2{bottom:17.952000pt;}
.y3b{bottom:18.240000pt;}
.y40{bottom:19.680000pt;}
.yae{bottom:20.800000pt;}
.yc8{bottom:22.074667pt;}
.y3e{bottom:22.400000pt;}
.yb2{bottom:22.880000pt;}
.ye9{bottom:24.413333pt;}
.yab{bottom:24.480000pt;}
.y1a{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y2c{bottom:27.360000pt;}
.yea{bottom:31.746667pt;}
.y3a{bottom:33.600000pt;}
.y5{bottom:36.640000pt;}
.y19{bottom:40.800000pt;}
.y2b{bottom:40.960000pt;}
.ya{bottom:41.280000pt;}
.yf1{bottom:42.080000pt;}
.ye8{bottom:42.333333pt;}
.y39{bottom:48.800000pt;}
.y98{bottom:49.440000pt;}
.y1{bottom:55.360000pt;}
.y18{bottom:55.520000pt;}
.y2a{bottom:56.640000pt;}
.ydf{bottom:62.213333pt;}
.y38{bottom:64.160000pt;}
.y97{bottom:64.800000pt;}
.y9{bottom:65.280000pt;}
.y17{bottom:70.120000pt;}
.y29{bottom:72.000000pt;}
.y37{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y16{bottom:84.840000pt;}
.y28{bottom:87.200000pt;}
.ye0{bottom:89.986667pt;}
.y36{bottom:94.880000pt;}
.ycc{bottom:97.632000pt;}
.y15{bottom:98.760000pt;}
.y7{bottom:98.906667pt;}
.y27{bottom:103.066667pt;}
.y106{bottom:105.952000pt;}
.y107{bottom:106.112000pt;}
.y14{bottom:108.040000pt;}
.y35{bottom:110.266667pt;}
.yf2{bottom:111.520000pt;}
.y54{bottom:116.192000pt;}
.yc7{bottom:116.992000pt;}
.ye1{bottom:117.733333pt;}
.y26{bottom:117.946667pt;}
.y90{bottom:121.312000pt;}
.y13{bottom:124.360000pt;}
.y34{bottom:125.626667pt;}
.yef{bottom:131.040000pt;}
.y53{bottom:131.552000pt;}
.yca{bottom:132.992000pt;}
.y25{bottom:133.146667pt;}
.y8f{bottom:136.666667pt;}
.y33{bottom:140.826667pt;}
.y12{bottom:141.320000pt;}
.ye2{bottom:145.466667pt;}
.y52{bottom:146.906667pt;}
.ydd{bottom:147.933333pt;}
.y24{bottom:148.666667pt;}
.y105{bottom:151.866667pt;}
.y8e{bottom:152.026667pt;}
.yc4{bottom:152.186667pt;}
.y32{bottom:156.186667pt;}
.y51{bottom:162.106667pt;}
.y23{bottom:164.026667pt;}
.y11{bottom:164.200000pt;}
.y104{bottom:167.226667pt;}
.y8d{bottom:167.386667pt;}
.y31{bottom:171.546667pt;}
.yc5{bottom:172.826667pt;}
.ye3{bottom:173.253333pt;}
.y50{bottom:177.466667pt;}
.y22{bottom:179.546667pt;}
.y103{bottom:182.586667pt;}
.y8c{bottom:182.746667pt;}
.y10{bottom:185.800000pt;}
.y30{bottom:186.906667pt;}
.yc3{bottom:192.186667pt;}
.y4f{bottom:192.826667pt;}
.y21{bottom:195.226667pt;}
.y102{bottom:197.946667pt;}
.y8b{bottom:198.106667pt;}
.ye4{bottom:200.986667pt;}
.y2f{bottom:202.266667pt;}
.y4e{bottom:208.186667pt;}
.yee{bottom:210.560000pt;}
.yc1{bottom:212.346667pt;}
.y8a{bottom:213.306667pt;}
.y2e{bottom:217.626667pt;}
.y20{bottom:219.546667pt;}
.y4d{bottom:223.546667pt;}
.yed{bottom:228.453333pt;}
.y89{bottom:228.666667pt;}
.ye5{bottom:228.773333pt;}
.y2d{bottom:232.826667pt;}
.y1f{bottom:235.226667pt;}
.y4c{bottom:238.746667pt;}
.yde{bottom:241.186667pt;}
.y101{bottom:243.866667pt;}
.y88{bottom:244.026667pt;}
.yc0{bottom:250.746667pt;}
.y4b{bottom:254.106667pt;}
.ydb{bottom:256.186667pt;}
.ye6{bottom:256.506667pt;}
.y100{bottom:259.226667pt;}
.y87{bottom:259.386667pt;}
.ybf{bottom:265.946667pt;}
.yda{bottom:268.506667pt;}
.y4a{bottom:269.466667pt;}
.yec{bottom:272.546667pt;}
.yff{bottom:274.586667pt;}
.y86{bottom:274.746667pt;}
.ybe{bottom:281.306667pt;}
.ye7{bottom:284.293333pt;}
.y49{bottom:284.826667pt;}
.yfe{bottom:289.946667pt;}
.y85{bottom:290.106667pt;}
.ybd{bottom:296.666667pt;}
.y48{bottom:300.226667pt;}
.y84{bottom:305.346667pt;}
.ybc{bottom:312.066667pt;}
.y47{bottom:315.586667pt;}
.y83{bottom:320.706667pt;}
.ybb{bottom:327.426667pt;}
.y46{bottom:330.786667pt;}
.yfd{bottom:335.906667pt;}
.y82{bottom:336.066667pt;}
.yb7{bottom:340.546667pt;}
.y45{bottom:346.146667pt;}
.yfc{bottom:351.266667pt;}
.y81{bottom:351.426667pt;}
.yba{bottom:359.586667pt;}
.y44{bottom:361.506667pt;}
.yfb{bottom:366.626667pt;}
.y80{bottom:366.786667pt;}
.y43{bottom:376.866667pt;}
.yb8{bottom:378.626667pt;}
.yfa{bottom:381.986667pt;}
.y7f{bottom:382.146667pt;}
.y42{bottom:392.226667pt;}
.yb1{bottom:396.386667pt;}
.y7e{bottom:397.346667pt;}
.y3d{bottom:404.706667pt;}
.yf9{bottom:412.546667pt;}
.y7d{bottom:412.706667pt;}
.yb5{bottom:415.426667pt;}
.yf8{bottom:427.906667pt;}
.y7c{bottom:428.066667pt;}
.yb3{bottom:434.626667pt;}
.y1e{bottom:437.186667pt;}
.yf7{bottom:443.266667pt;}
.y7b{bottom:443.426667pt;}
.yaa{bottom:452.386667pt;}
.yf6{bottom:458.626667pt;}
.y7a{bottom:458.786667pt;}
.y79{bottom:473.986667pt;}
.yac{bottom:488.706667pt;}
.y78{bottom:489.346667pt;}
.yf5{bottom:501.826667pt;}
.y77{bottom:504.706667pt;}
.ya9{bottom:514.306667pt;}
.y76{bottom:520.066667pt;}
.ya8{bottom:529.666667pt;}
.y75{bottom:535.426667pt;}
.ya7{bottom:545.053333pt;}
.yd9{bottom:546.013333pt;}
.y74{bottom:550.813333pt;}
.ya6{bottom:560.413333pt;}
.yd8{bottom:561.373333pt;}
.y73{bottom:566.013333pt;}
.yd7{bottom:573.853333pt;}
.ydc{bottom:573.920000pt;}
.ya5{bottom:575.773333pt;}
.y72{bottom:581.373333pt;}
.ya4{bottom:591.133333pt;}
.y71{bottom:596.733333pt;}
.ya3{bottom:606.333333pt;}
.y70{bottom:612.093333pt;}
.ya2{bottom:619.453333pt;}
.y6f{bottom:627.453333pt;}
.y96{bottom:635.453333pt;}
.y6e{bottom:642.813333pt;}
.ya1{bottom:651.453333pt;}
.y6d{bottom:658.013333pt;}
.yf0{bottom:662.880000pt;}
.y9e{bottom:673.213333pt;}
.y6c{bottom:673.373333pt;}
.y1c{bottom:682.493333pt;}
.y6b{bottom:688.733333pt;}
.y9f{bottom:694.813333pt;}
.y6a{bottom:704.093333pt;}
.yf{bottom:708.733333pt;}
.y99{bottom:716.573333pt;}
.y69{bottom:719.453333pt;}
.y68{bottom:734.653333pt;}
.y9b{bottom:738.173333pt;}
.y67{bottom:750.013333pt;}
.y93{bottom:759.773333pt;}
.yf4{bottom:760.413333pt;}
.y66{bottom:765.373333pt;}
.yf3{bottom:772.893333pt;}
.y95{bottom:775.813333pt;}
.y65{bottom:780.773333pt;}
.y92{bottom:791.813333pt;}
.y64{bottom:796.133333pt;}
.y91{bottom:807.813333pt;}
.y63{bottom:811.493333pt;}
.y62{bottom:826.693333pt;}
.y61{bottom:842.053333pt;}
.y60{bottom:857.413333pt;}
.y5f{bottom:872.773333pt;}
.yd6{bottom:876.773333pt;}
.y5e{bottom:888.133333pt;}
.yd5{bottom:892.133333pt;}
.y5d{bottom:903.493333pt;}
.yd4{bottom:907.493333pt;}
.yd{bottom:907.973333pt;}
.y5c{bottom:918.693333pt;}
.yd3{bottom:922.693333pt;}
.y6{bottom:930.533333pt;}
.y5b{bottom:934.053333pt;}
.yd2{bottom:938.053333pt;}
.y5a{bottom:949.413333pt;}
.yd1{bottom:953.413333pt;}
.y59{bottom:964.773333pt;}
.yd0{bottom:968.773333pt;}
.y58{bottom:980.133333pt;}
.ycf{bottom:984.133333pt;}
.y57{bottom:995.493333pt;}
.yce{bottom:997.253333pt;}
.y56{bottom:1010.693333pt;}
.ycd{bottom:1017.920000pt;}
.y55{bottom:1026.080000pt;}
.h23{height:15.360000pt;}
.h25{height:15.392000pt;}
.h2f{height:17.120000pt;}
.h30{height:18.400000pt;}
.h38{height:18.560000pt;}
.h35{height:18.720000pt;}
.h33{height:19.360000pt;}
.h36{height:20.000000pt;}
.h39{height:20.032000pt;}
.h28{height:20.960000pt;}
.h2a{height:21.120000pt;}
.h2c{height:22.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h24{height:31.392000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h1c{height:34.505000pt;}
.h37{height:34.560000pt;}
.h32{height:34.720000pt;}
.h2d{height:35.680000pt;}
.h19{height:35.772188pt;}
.h29{height:37.120000pt;}
.h20{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h1d{height:38.413438pt;}
.h22{height:38.672812pt;}
.he{height:39.113750pt;}
.h34{height:39.360000pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h27{height:42.560000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h21{height:43.551875pt;}
.h4{height:47.742188pt;}
.h3b{height:47.869500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h31{height:55.200000pt;}
.h2e{height:55.360000pt;}
.h2b{height:58.400000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3c{height:62.240000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.h26{height:123.680000pt;}
.hd{height:199.226667pt;}
.h16{height:245.306667pt;}
.h3a{height:300.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:57.120000pt;}
.w3{width:66.560000pt;}
.w11{width:66.720000pt;}
.wd{width:88.000000pt;}
.we{width:90.912000pt;}
.w1a{width:95.840000pt;}
.w19{width:97.792000pt;}
.w1c{width:99.552000pt;}
.w18{width:103.552000pt;}
.w1b{width:110.880000pt;}
.w5{width:135.066667pt;}
.wb{width:136.666667pt;}
.wc{width:138.906667pt;}
.w10{width:146.266667pt;}
.w17{width:157.306667pt;}
.w13{width:159.546667pt;}
.w16{width:159.866667pt;}
.w14{width:182.746667pt;}
.w8{width:198.466667pt;}
.wf{width:213.626667pt;}
.w21{width:270.080000pt;}
.wa{width:305.186667pt;}
.w15{width:320.066667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w1f{width:576.960000pt;}
.w20{width:577.120000pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w1e{width:666.693333pt;}
.w12{width:670.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.720000pt;}
.x2{left:7.680000pt;}
.x17{left:11.200000pt;}
.x38{left:27.040000pt;}
.x11{left:29.792000pt;}
.x14{left:32.032000pt;}
.xd{left:35.872000pt;}
.x32{left:39.226667pt;}
.xf{left:44.192000pt;}
.x31{left:45.306667pt;}
.x30{left:51.386667pt;}
.x13{left:59.872000pt;}
.x1a{left:61.600000pt;}
.x12{left:63.072000pt;}
.x1{left:64.320000pt;}
.x10{left:67.072000pt;}
.x4{left:71.999988pt;}
.x40{left:74.879988pt;}
.x33{left:78.533333pt;}
.x5{left:87.226667pt;}
.x18{left:96.031988pt;}
.x2f{left:98.906667pt;}
.x24{left:100.991988pt;}
.x2e{left:108.320000pt;}
.x39{left:112.800000pt;}
.x19{left:114.591988pt;}
.x20{left:140.666655pt;}
.x1e{left:153.146667pt;}
.x2a{left:163.706667pt;}
.xe{left:170.906667pt;}
.x3d{left:178.053333pt;}
.x34{left:179.173333pt;}
.x35{left:187.973333pt;}
.x15{left:191.266667pt;}
.x6{left:199.866667pt;}
.x25{left:221.626667pt;}
.x21{left:225.306667pt;}
.x9{left:256.386667pt;}
.x16{left:263.266667pt;}
.x36{left:264.413333pt;}
.x37{left:297.533333pt;}
.x1f{left:300.066667pt;}
.x7{left:307.906667pt;}
.x8{left:326.786667pt;}
.xb{left:328.866667pt;}
.xc{left:332.066667pt;}
.x41{left:345.666655pt;}
.x42{left:352.066655pt;}
.x1b{left:367.426667pt;}
.x2c{left:396.866655pt;}
.xa{left:405.066667pt;}
.x22{left:408.706667pt;}
.x3c{left:415.360000pt;}
.x27{left:424.413333pt;}
.x3b{left:477.733333pt;}
.x3a{left:496.093333pt;}
.x1c{left:504.733333pt;}
.x28{left:520.893333pt;}
.x23{left:568.893333pt;}
.x29{left:619.333333pt;}
.x1d{left:644.293333pt;}
.x3{left:663.013333pt;}
.x2b{left:685.413322pt;}
.x3f{left:689.573322pt;}
.x2d{left:697.893322pt;}
.x3e{left:699.173322pt;}
}




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