
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_18f1a46ea1d55a3f42389e4c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a7b564c3f8eb22e348c10297.woff')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_da4f22eacd0eb6f68f9264c7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3efdd094e0869def59bb51d2.woff')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_758db57c0a703639462f7319.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_51615e9850433601e2ad9041.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_3c656a89b3d988a0b0a8a69a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_44eb24668e976d94b8f7cf11.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_4f8a4453a9c8167e1de38736.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_54b5c674df91ad2bac12291e.woff')format("woff");}.fff{font-family:fff;line-height:0.933594;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);}
.v1{vertical-align:-77.760000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsf{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.lse{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls10{letter-spacing:16.306560px;}
.ls8{letter-spacing:46.546560px;}
.ls9{letter-spacing:63.826560px;}
.lsc{letter-spacing:63.970560px;}
.ls1{letter-spacing:201.060000px;}
.lsa{letter-spacing:287.436000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws9{word-spacing:-54.720000px;}
.wsf{word-spacing:-34.110720px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.wse{word-spacing:-14.613000px;}
.ws5{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._18{margin-left:-3.876480px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._e{width:4.536960px;}
._f{width:5.835840px;}
._11{width:7.263360px;}
._12{width:8.431680px;}
._13{width:9.841920px;}
._a{width:11.586240px;}
._b{width:12.651360px;}
._1a{width:13.979520px;}
._10{width:15.814080px;}
._9{width:17.026560px;}
._7{width:18.550080px;}
._17{width:20.404320px;}
._16{width:21.444960px;}
._15{width:22.953600px;}
._19{width:24.421920px;}
._c{width:25.430400px;}
._d{width:26.873280px;}
._14{width:28.969920px;}
._1b{width:31.412160px;}
._6{width:69.989760px;}
._1e{width:199.440000px;}
._1d{width:326.581440px;}
._1c{width:729.636000px;}
._5{width:980.525760px;}
._8{width:1047.337920px;}
.fc4{color:rgb(52,152,219);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsc{font-size:11.520000px;}
.fsd{font-size:18.720000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fse{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.240000px;}
.yb2{bottom:3.585000px;}
.y7d{bottom:3.600000px;}
.ydd{bottom:3.945000px;}
.y4b{bottom:3.955500px;}
.y33{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y4d{bottom:5.370000px;}
.y75{bottom:6.105000px;}
.y93{bottom:6.120000px;}
.yc2{bottom:6.465000px;}
.yc6{bottom:6.480000px;}
.ycb{bottom:6.840000px;}
.y2{bottom:10.080000px;}
.y3d{bottom:10.795500px;}
.yb0{bottom:11.865000px;}
.y99{bottom:11.880000px;}
.ye6{bottom:12.225000px;}
.y7b{bottom:12.240000px;}
.yb8{bottom:12.270000px;}
.ydb{bottom:12.585000px;}
.y7f{bottom:12.600000px;}
.y84{bottom:12.645000px;}
.y3c{bottom:18.715500px;}
.yb1{bottom:19.785000px;}
.yb6{bottom:20.160000px;}
.yb4{bottom:20.190000px;}
.y4a{bottom:20.515500px;}
.y9a{bottom:20.520000px;}
.ye3{bottom:20.865000px;}
.y7c{bottom:20.880000px;}
.yd8{bottom:21.225000px;}
.y32{bottom:21.240000px;}
.y80{bottom:21.270000px;}
.y83{bottom:21.285000px;}
.y4{bottom:23.400000px;}
.ye5{bottom:29.505000px;}
.ye9{bottom:29.520000px;}
.yda{bottom:29.865000px;}
.yd5{bottom:29.880000px;}
.ydf{bottom:29.910000px;}
.y31{bottom:34.920000px;}
.y49{bottom:36.034500px;}
.ye2{bottom:38.145000px;}
.yea{bottom:38.160000px;}
.yd7{bottom:38.505000px;}
.yd4{bottom:38.520000px;}
.ye0{bottom:38.550000px;}
.ye4{bottom:46.785000px;}
.yd9{bottom:47.145000px;}
.y3{bottom:47.880000px;}
.y3b{bottom:48.274500px;}
.y48{bottom:53.314500px;}
.ye7{bottom:55.425000px;}
.ydc{bottom:55.785000px;}
.y3a{bottom:60.154500px;}
.y47{bottom:69.154500px;}
.y8{bottom:71.676000px;}
.y39{bottom:73.114500px;}
.y46{bottom:84.634500px;}
.y38{bottom:86.074500px;}
.y7{bottom:91.476000px;}
.y45{bottom:100.474500px;}
.y37{bottom:107.674500px;}
.yd1{bottom:111.276000px;}
.y44{bottom:113.074500px;}
.ybd{bottom:115.236000px;}
.y34{bottom:118.840500px;}
.y43{bottom:119.554500px;}
.y101{bottom:119.916000px;}
.yab{bottom:120.996000px;}
.y8f{bottom:121.716000px;}
.yd0{bottom:125.316000px;}
.ybc{bottom:128.916000px;}
.y131{bottom:133.236000px;}
.y42{bottom:135.394500px;}
.y100{bottom:136.836000px;}
.y8e{bottom:140.796000px;}
.yaa{bottom:147.312000px;}
.y130{bottom:150.555000px;}
.y41{bottom:150.874500px;}
.y76{bottom:151.635000px;}
.yff{bottom:154.515000px;}
.y74{bottom:156.330000px;}
.y8d{bottom:159.555000px;}
.y40{bottom:166.384500px;}
.y12f{bottom:167.835000px;}
.y36{bottom:169.984500px;}
.yfe{bottom:172.875000px;}
.ya9{bottom:173.595000px;}
.y8c{bottom:178.635000px;}
.y73{bottom:180.435000px;}
.y35{bottom:180.784500px;}
.y3f{bottom:181.864500px;}
.y12e{bottom:185.115000px;}
.y72{bottom:186.915000px;}
.yfd{bottom:191.235000px;}
.y3e{bottom:196.984500px;}
.y8b{bottom:197.355000px;}
.ya8{bottom:200.235000px;}
.y12d{bottom:202.395000px;}
.y71{bottom:203.835000px;}
.yfc{bottom:209.595000px;}
.ya7{bottom:217.515000px;}
.y12c{bottom:219.675000px;}
.y8a{bottom:223.995000px;}
.yfb{bottom:227.595000px;}
.y70{bottom:230.475000px;}
.ya6{bottom:234.435000px;}
.y12b{bottom:236.955000px;}
.y89{bottom:241.275000px;}
.yfa{bottom:245.235000px;}
.y6f{bottom:247.395000px;}
.ya5{bottom:251.715000px;}
.y20{bottom:253.875000px;}
.y88{bottom:258.555000px;}
.yf9{bottom:263.595000px;}
.y6e{bottom:264.675000px;}
.y12a{bottom:271.155000px;}
.y87{bottom:275.865000px;}
.y1f{bottom:277.995000px;}
.ya4{bottom:278.385000px;}
.y6d{bottom:281.985000px;}
.y129{bottom:288.465000px;}
.y86{bottom:292.425000px;}
.ya3{bottom:296.385000px;}
.y6c{bottom:298.905000px;}
.yf8{bottom:300.345000px;}
.y1e{bottom:302.115000px;}
.y128{bottom:305.745000px;}
.y30{bottom:306.075000px;}
.ya2{bottom:314.745000px;}
.yf7{bottom:318.345000px;}
.y6b{bottom:323.025000px;}
.y1d{bottom:326.235000px;}
.y12{bottom:329.145000px;}
.y85{bottom:329.865000px;}
.y2f{bottom:331.995000px;}
.ya1{bottom:333.105000px;}
.yf6{bottom:335.625000px;}
.y127{bottom:340.305000px;}
.y2e{bottom:347.505000px;}
.y1c{bottom:350.385000px;}
.ya0{bottom:351.105000px;}
.yf5{bottom:353.985000px;}
.y126{bottom:357.585000px;}
.ycf{bottom:357.945000px;}
.y2d{bottom:362.985000px;}
.yce{bottom:365.145000px;}
.yf4{bottom:372.345000px;}
.y1b{bottom:374.505000px;}
.y125{bottom:374.865000px;}
.y2c{bottom:378.465000px;}
.y9f{bottom:388.545000px;}
.yf3{bottom:390.705000px;}
.y124{bottom:392.145000px;}
.y82{bottom:392.505000px;}
.y2b{bottom:394.305000px;}
.y1a{bottom:398.625000px;}
.ycd{bottom:407.310000px;}
.yf2{bottom:408.750000px;}
.y123{bottom:409.470000px;}
.y2a{bottom:409.785000px;}
.y19{bottom:422.745000px;}
.y29{bottom:425.265000px;}
.yf1{bottom:426.030000px;}
.y122{bottom:426.750000px;}
.y28{bottom:440.745000px;}
.ybb{bottom:440.790000px;}
.y121{bottom:443.310000px;}
.y18{bottom:446.865000px;}
.y9e{bottom:451.230000px;}
.yf0{bottom:452.670000px;}
.y81{bottom:455.190000px;}
.y27{bottom:456.225000px;}
.yba{bottom:458.070000px;}
.yef{bottom:469.950000px;}
.y17{bottom:471.345000px;}
.y26{bottom:471.750000px;}
.yb9{bottom:486.510000px;}
.y25{bottom:487.230000px;}
.y16{bottom:495.510000px;}
.y24{bottom:502.710000px;}
.yee{bottom:504.510000px;}
.y9d{bottom:513.870000px;}
.y7e{bottom:517.830000px;}
.y23{bottom:518.550000px;}
.y15{bottom:519.630000px;}
.y120{bottom:521.430000px;}
.yed{bottom:521.790000px;}
.yb7{bottom:530.790000px;}
.ycc{bottom:532.230000px;}
.y22{bottom:534.030000px;}
.yec{bottom:538.740000px;}
.y11f{bottom:539.100000px;}
.y14{bottom:543.750000px;}
.yca{bottom:555.660000px;}
.y11e{bottom:557.460000px;}
.y21{bottom:564.630000px;}
.y13{bottom:567.870000px;}
.y6a{bottom:572.580000px;}
.yeb{bottom:573.660000px;}
.y11d{bottom:575.820000px;}
.y9c{bottom:576.540000px;}
.yc9{bottom:579.060000px;}
.y7a{bottom:580.500000px;}
.yb5{bottom:592.020000px;}
.y11c{bottom:594.180000px;}
.y69{bottom:599.220000px;}
.yc8{bottom:602.460000px;}
.ye8{bottom:603.180000px;}
.y11b{bottom:612.180000px;}
.y68{bottom:616.500000px;}
.yc7{bottom:625.500000px;}
.y11a{bottom:629.460000px;}
.y79{bottom:633.420000px;}
.y67{bottom:635.580000px;}
.y98{bottom:639.180000px;}
.y119{bottom:646.380000px;}
.yc5{bottom:648.900000px;}
.y78{bottom:650.340000px;}
.y66{bottom:652.860000px;}
.y77{bottom:664.020000px;}
.y65{bottom:671.970000px;}
.yc4{bottom:671.985000px;}
.y118{bottom:682.410000px;}
.ye1{bottom:683.145000px;}
.y142{bottom:683.850000px;}
.y64{bottom:688.890000px;}
.y97{bottom:692.130000px;}
.yc3{bottom:695.385000px;}
.y117{bottom:700.770000px;}
.y63{bottom:707.970000px;}
.y96{bottom:710.130000px;}
.y141{bottom:710.490000px;}
.yb3{bottom:713.745000px;}
.yc1{bottom:718.425000px;}
.y116{bottom:719.130000px;}
.y95{bottom:723.810000px;}
.y62{bottom:725.250000px;}
.y140{bottom:727.770000px;}
.y115{bottom:737.130000px;}
.y61{bottom:744.330000px;}
.y13f{bottom:745.050000px;}
.yc0{bottom:745.410000px;}
.y114{bottom:754.770000px;}
.yaf{bottom:758.025000px;}
.ybf{bottom:759.090000px;}
.y60{bottom:761.250000px;}
.y13e{bottom:762.330000px;}
.y113{bottom:773.130000px;}
.y13d{bottom:779.610000px;}
.yde{bottom:779.985000px;}
.y5f{bottom:787.890000px;}
.y112{bottom:791.490000px;}
.y13c{bottom:796.890000px;}
.y5e{bottom:805.215000px;}
.yae{bottom:809.175000px;}
.y111{bottom:809.535000px;}
.y13b{bottom:814.215000px;}
.y5d{bottom:822.495000px;}
.yad{bottom:822.855000px;}
.y110{bottom:827.175000px;}
.y13a{bottom:831.495000px;}
.y5c{bottom:839.415000px;}
.y10f{bottom:844.095000px;}
.y139{bottom:848.415000px;}
.y5b{bottom:856.695000px;}
.yd6{bottom:859.950000px;}
.y10e{bottom:861.375000px;}
.y138{bottom:865.695000px;}
.y5a{bottom:873.975000px;}
.y10d{bottom:878.655000px;}
.y137{bottom:882.975000px;}
.y59{bottom:891.255000px;}
.y10c{bottom:895.575000px;}
.y136{bottom:900.255000px;}
.y58{bottom:908.535000px;}
.y11{bottom:909.255000px;}
.y10b{bottom:912.855000px;}
.y10{bottom:914.655000px;}
.y135{bottom:917.535000px;}
.y57{bottom:925.815000px;}
.y10a{bottom:930.135000px;}
.yf{bottom:931.935000px;}
.y134{bottom:934.845000px;}
.y56{bottom:943.125000px;}
.y109{bottom:947.445000px;}
.y133{bottom:952.125000px;}
.ye{bottom:955.725000px;}
.yd3{bottom:957.165000px;}
.y55{bottom:960.045000px;}
.y108{bottom:964.725000px;}
.yd{bottom:966.165000px;}
.y132{bottom:969.405000px;}
.y107{bottom:982.005000px;}
.y54{bottom:986.685000px;}
.yc{bottom:990.285000px;}
.y106{bottom:999.645000px;}
.y53{bottom:1003.965000px;}
.y105{bottom:1018.005000px;}
.yb{bottom:1019.805000px;}
.y52{bottom:1021.245000px;}
.y94{bottom:1028.445000px;}
.y104{bottom:1036.005000px;}
.yd2{bottom:1037.085000px;}
.y51{bottom:1038.165000px;}
.y92{bottom:1043.925000px;}
.ya{bottom:1044.285000px;}
.y103{bottom:1054.365000px;}
.ybe{bottom:1055.085000px;}
.y50{bottom:1055.445000px;}
.y91{bottom:1070.970000px;}
.y9{bottom:1072.050000px;}
.y102{bottom:1072.410000px;}
.y4f{bottom:1072.770000px;}
.y4c{bottom:1075.320000px;}
.y90{bottom:1088.250000px;}
.yac{bottom:1089.690000px;}
.y4e{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.165313px;}
.h14{height:5.650313px;}
.h1a{height:11.306250px;}
.h25{height:16.185000px;}
.h1b{height:22.305000px;}
.h2d{height:22.320000px;}
.h1f{height:22.350000px;}
.h2b{height:22.356000px;}
.h2a{height:22.665000px;}
.h2c{height:22.680000px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h2f{height:30.476250px;}
.h23{height:32.745000px;}
.h28{height:32.760000px;}
.h29{height:32.790000px;}
.h27{height:32.796000px;}
.h21{height:34.200000px;}
.h22{height:34.230000px;}
.h20{height:34.236000px;}
.h1e{height:34.545000px;}
.h1c{height:34.560000px;}
.h1d{height:34.590000px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h34{height:51.480000px;}
.h30{height:51.825000px;}
.h32{height:51.861000px;}
.hf{height:53.677969px;}
.h13{height:55.147500px;}
.h26{height:56.531250px;}
.h24{height:58.050000px;}
.h15{height:59.328281px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h18{height:62.163910px;}
.h2e{height:62.960625px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h19{height:66.757500px;}
.h33{height:68.745000px;}
.h31{height:69.105000px;}
.h11{height:70.664062px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h10{height:209.565000px;}
.hc{height:577.230000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:79.956000px;}
.w9{width:96.150000px;}
.w1b{width:97.956000px;}
.w1c{width:99.021000px;}
.wf{width:100.110000px;}
.w2{width:103.702500px;}
.w19{width:107.325000px;}
.we{width:113.790000px;}
.w13{width:120.630000px;}
.w14{width:120.672000px;}
.w15{width:127.101000px;}
.w16{width:128.565000px;}
.w4{width:132.502500px;}
.w12{width:133.965000px;}
.wd{width:140.805000px;}
.w8{width:151.605000px;}
.w1d{width:154.125000px;}
.w6{width:163.080000px;}
.wb{width:187.965000px;}
.w1a{width:199.515000px;}
.wa{width:216.105000px;}
.w11{width:228.330000px;}
.w17{width:396.510000px;}
.wc{width:445.125000px;}
.w18{width:480.060000px;}
.w7{width:561.420000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x1c{left:8.295000px;}
.x4{left:13.305000px;}
.x1a{left:16.546500px;}
.x17{left:17.626500px;}
.x19{left:19.786500px;}
.x18{left:26.266500px;}
.x20{left:29.146500px;}
.x6{left:35.265000px;}
.x3e{left:39.600000px;}
.x3f{left:42.480000px;}
.x11{left:43.906500px;}
.x1f{left:47.542500px;}
.x12{left:50.782500px;}
.x10{left:55.102500px;}
.x22{left:57.262500px;}
.x21{left:66.265500px;}
.x41{left:72.045000px;}
.x15{left:73.105500px;}
.x1{left:78.529500px;}
.x16{left:80.305500px;}
.x7{left:86.436000px;}
.x42{left:88.965000px;}
.x14{left:92.905500px;}
.x2{left:95.425500px;}
.x23{left:102.985500px;}
.x46{left:105.540000px;}
.x1e{left:106.945500px;}
.x25{left:113.436000px;}
.x48{left:115.609500px;}
.x29{left:119.209500px;}
.x13{left:124.585500px;}
.x2e{left:126.045000px;}
.x36{left:129.289500px;}
.xa{left:137.952000px;}
.x5{left:141.540000px;}
.x27{left:166.050000px;}
.x3{left:182.250000px;}
.xc{left:184.035000px;}
.x40{left:185.115000px;}
.x45{left:206.730000px;}
.x1b{left:218.970000px;}
.x2d{left:224.385000px;}
.xb{left:233.745000px;}
.x3d{left:248.505000px;}
.x30{left:254.985000px;}
.xd{left:263.625000px;}
.x34{left:265.065000px;}
.x2a{left:271.905000px;}
.x3a{left:302.865000px;}
.x2b{left:369.150000px;}
.x37{left:385.710000px;}
.x44{left:419.580000px;}
.x49{left:424.620000px;}
.x33{left:446.580000px;}
.x31{left:471.060000px;}
.x38{left:507.465000px;}
.x4a{left:523.665000px;}
.x32{left:552.105000px;}
.xe{left:554.610000px;}
.x1d{left:567.960000px;}
.x2c{left:586.350000px;}
.x3b{left:614.775000px;}
.x4b{left:623.790000px;}
.x39{left:635.670000px;}
.x28{left:665.925000px;}
.x35{left:704.805000px;}
.x26{left:705.885000px;}
.x47{left:719.925000px;}
.x3c{left:731.445000px;}
.x43{left:733.605000px;}
.x2f{left:742.605000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.lse{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls10{letter-spacing:14.494720pt;}
.ls8{letter-spacing:41.374720pt;}
.ls9{letter-spacing:56.734720pt;}
.lsc{letter-spacing:56.862720pt;}
.ls1{letter-spacing:178.720000pt;}
.lsa{letter-spacing:255.498667pt;}
.wsb{word-spacing:-53.760000pt;}
.ws9{word-spacing:-48.640000pt;}
.wsf{word-spacing:-30.320640pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.wse{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._18{margin-left:-3.445760pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._e{width:4.032853pt;}
._f{width:5.187413pt;}
._11{width:6.456320pt;}
._12{width:7.494827pt;}
._13{width:8.748373pt;}
._a{width:10.298880pt;}
._b{width:11.245653pt;}
._1a{width:12.426240pt;}
._10{width:14.056960pt;}
._9{width:15.134720pt;}
._7{width:16.488960pt;}
._17{width:18.137173pt;}
._16{width:19.062187pt;}
._15{width:20.403200pt;}
._19{width:21.708373pt;}
._c{width:22.604800pt;}
._d{width:23.887360pt;}
._14{width:25.751040pt;}
._1b{width:27.921920pt;}
._6{width:62.213120pt;}
._1e{width:177.280000pt;}
._1d{width:290.294613pt;}
._1c{width:648.565333pt;}
._5{width:871.578453pt;}
._8{width:930.967040pt;}
.fs5{font-size:5.120000pt;}
.fsc{font-size:10.240000pt;}
.fsd{font-size:16.640000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fse{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.880000pt;}
.yb2{bottom:3.186667pt;}
.y7d{bottom:3.200000pt;}
.ydd{bottom:3.506667pt;}
.y4b{bottom:3.516000pt;}
.y33{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y4d{bottom:4.773333pt;}
.y75{bottom:5.426667pt;}
.y93{bottom:5.440000pt;}
.yc2{bottom:5.746667pt;}
.yc6{bottom:5.760000pt;}
.ycb{bottom:6.080000pt;}
.y2{bottom:8.960000pt;}
.y3d{bottom:9.596000pt;}
.yb0{bottom:10.546667pt;}
.y99{bottom:10.560000pt;}
.ye6{bottom:10.866667pt;}
.y7b{bottom:10.880000pt;}
.yb8{bottom:10.906667pt;}
.ydb{bottom:11.186667pt;}
.y7f{bottom:11.200000pt;}
.y84{bottom:11.240000pt;}
.y3c{bottom:16.636000pt;}
.yb1{bottom:17.586667pt;}
.yb6{bottom:17.920000pt;}
.yb4{bottom:17.946667pt;}
.y4a{bottom:18.236000pt;}
.y9a{bottom:18.240000pt;}
.ye3{bottom:18.546667pt;}
.y7c{bottom:18.560000pt;}
.yd8{bottom:18.866667pt;}
.y32{bottom:18.880000pt;}
.y80{bottom:18.906667pt;}
.y83{bottom:18.920000pt;}
.y4{bottom:20.800000pt;}
.ye5{bottom:26.226667pt;}
.ye9{bottom:26.240000pt;}
.yda{bottom:26.546667pt;}
.yd5{bottom:26.560000pt;}
.ydf{bottom:26.586667pt;}
.y31{bottom:31.040000pt;}
.y49{bottom:32.030667pt;}
.ye2{bottom:33.906667pt;}
.yea{bottom:33.920000pt;}
.yd7{bottom:34.226667pt;}
.yd4{bottom:34.240000pt;}
.ye0{bottom:34.266667pt;}
.ye4{bottom:41.586667pt;}
.yd9{bottom:41.906667pt;}
.y3{bottom:42.560000pt;}
.y3b{bottom:42.910667pt;}
.y48{bottom:47.390667pt;}
.ye7{bottom:49.266667pt;}
.ydc{bottom:49.586667pt;}
.y3a{bottom:53.470667pt;}
.y47{bottom:61.470667pt;}
.y8{bottom:63.712000pt;}
.y39{bottom:64.990667pt;}
.y46{bottom:75.230667pt;}
.y38{bottom:76.510667pt;}
.y7{bottom:81.312000pt;}
.y45{bottom:89.310667pt;}
.y37{bottom:95.710667pt;}
.yd1{bottom:98.912000pt;}
.y44{bottom:100.510667pt;}
.ybd{bottom:102.432000pt;}
.y34{bottom:105.636000pt;}
.y43{bottom:106.270667pt;}
.y101{bottom:106.592000pt;}
.yab{bottom:107.552000pt;}
.y8f{bottom:108.192000pt;}
.yd0{bottom:111.392000pt;}
.ybc{bottom:114.592000pt;}
.y131{bottom:118.432000pt;}
.y42{bottom:120.350667pt;}
.y100{bottom:121.632000pt;}
.y8e{bottom:125.152000pt;}
.yaa{bottom:130.944000pt;}
.y130{bottom:133.826667pt;}
.y41{bottom:134.110667pt;}
.y76{bottom:134.786667pt;}
.yff{bottom:137.346667pt;}
.y74{bottom:138.960000pt;}
.y8d{bottom:141.826667pt;}
.y40{bottom:147.897333pt;}
.y12f{bottom:149.186667pt;}
.y36{bottom:151.097333pt;}
.yfe{bottom:153.666667pt;}
.ya9{bottom:154.306667pt;}
.y8c{bottom:158.786667pt;}
.y73{bottom:160.386667pt;}
.y35{bottom:160.697333pt;}
.y3f{bottom:161.657333pt;}
.y12e{bottom:164.546667pt;}
.y72{bottom:166.146667pt;}
.yfd{bottom:169.986667pt;}
.y3e{bottom:175.097333pt;}
.y8b{bottom:175.426667pt;}
.ya8{bottom:177.986667pt;}
.y12d{bottom:179.906667pt;}
.y71{bottom:181.186667pt;}
.yfc{bottom:186.306667pt;}
.ya7{bottom:193.346667pt;}
.y12c{bottom:195.266667pt;}
.y8a{bottom:199.106667pt;}
.yfb{bottom:202.306667pt;}
.y70{bottom:204.866667pt;}
.ya6{bottom:208.386667pt;}
.y12b{bottom:210.626667pt;}
.y89{bottom:214.466667pt;}
.yfa{bottom:217.986667pt;}
.y6f{bottom:219.906667pt;}
.ya5{bottom:223.746667pt;}
.y20{bottom:225.666667pt;}
.y88{bottom:229.826667pt;}
.yf9{bottom:234.306667pt;}
.y6e{bottom:235.266667pt;}
.y12a{bottom:241.026667pt;}
.y87{bottom:245.213333pt;}
.y1f{bottom:247.106667pt;}
.ya4{bottom:247.453333pt;}
.y6d{bottom:250.653333pt;}
.y129{bottom:256.413333pt;}
.y86{bottom:259.933333pt;}
.ya3{bottom:263.453333pt;}
.y6c{bottom:265.693333pt;}
.yf8{bottom:266.973333pt;}
.y1e{bottom:268.546667pt;}
.y128{bottom:271.773333pt;}
.y30{bottom:272.066667pt;}
.ya2{bottom:279.773333pt;}
.yf7{bottom:282.973333pt;}
.y6b{bottom:287.133333pt;}
.y1d{bottom:289.986667pt;}
.y12{bottom:292.573333pt;}
.y85{bottom:293.213333pt;}
.y2f{bottom:295.106667pt;}
.ya1{bottom:296.093333pt;}
.yf6{bottom:298.333333pt;}
.y127{bottom:302.493333pt;}
.y2e{bottom:308.893333pt;}
.y1c{bottom:311.453333pt;}
.ya0{bottom:312.093333pt;}
.yf5{bottom:314.653333pt;}
.y126{bottom:317.853333pt;}
.ycf{bottom:318.173333pt;}
.y2d{bottom:322.653333pt;}
.yce{bottom:324.573333pt;}
.yf4{bottom:330.973333pt;}
.y1b{bottom:332.893333pt;}
.y125{bottom:333.213333pt;}
.y2c{bottom:336.413333pt;}
.y9f{bottom:345.373333pt;}
.yf3{bottom:347.293333pt;}
.y124{bottom:348.573333pt;}
.y82{bottom:348.893333pt;}
.y2b{bottom:350.493333pt;}
.y1a{bottom:354.333333pt;}
.ycd{bottom:362.053333pt;}
.yf2{bottom:363.333333pt;}
.y123{bottom:363.973333pt;}
.y2a{bottom:364.253333pt;}
.y19{bottom:375.773333pt;}
.y29{bottom:378.013333pt;}
.yf1{bottom:378.693333pt;}
.y122{bottom:379.333333pt;}
.y28{bottom:391.773333pt;}
.ybb{bottom:391.813333pt;}
.y121{bottom:394.053333pt;}
.y18{bottom:397.213333pt;}
.y9e{bottom:401.093333pt;}
.yf0{bottom:402.373333pt;}
.y81{bottom:404.613333pt;}
.y27{bottom:405.533333pt;}
.yba{bottom:407.173333pt;}
.yef{bottom:417.733333pt;}
.y17{bottom:418.973333pt;}
.y26{bottom:419.333333pt;}
.yb9{bottom:432.453333pt;}
.y25{bottom:433.093333pt;}
.y16{bottom:440.453333pt;}
.y24{bottom:446.853333pt;}
.yee{bottom:448.453333pt;}
.y9d{bottom:456.773333pt;}
.y7e{bottom:460.293333pt;}
.y23{bottom:460.933333pt;}
.y15{bottom:461.893333pt;}
.y120{bottom:463.493333pt;}
.yed{bottom:463.813333pt;}
.yb7{bottom:471.813333pt;}
.ycc{bottom:473.093333pt;}
.y22{bottom:474.693333pt;}
.yec{bottom:478.880000pt;}
.y11f{bottom:479.200000pt;}
.y14{bottom:483.333333pt;}
.yca{bottom:493.920000pt;}
.y11e{bottom:495.520000pt;}
.y21{bottom:501.893333pt;}
.y13{bottom:504.773333pt;}
.y6a{bottom:508.960000pt;}
.yeb{bottom:509.920000pt;}
.y11d{bottom:511.840000pt;}
.y9c{bottom:512.480000pt;}
.yc9{bottom:514.720000pt;}
.y7a{bottom:516.000000pt;}
.yb5{bottom:526.240000pt;}
.y11c{bottom:528.160000pt;}
.y69{bottom:532.640000pt;}
.yc8{bottom:535.520000pt;}
.ye8{bottom:536.160000pt;}
.y11b{bottom:544.160000pt;}
.y68{bottom:548.000000pt;}
.yc7{bottom:556.000000pt;}
.y11a{bottom:559.520000pt;}
.y79{bottom:563.040000pt;}
.y67{bottom:564.960000pt;}
.y98{bottom:568.160000pt;}
.y119{bottom:574.560000pt;}
.yc5{bottom:576.800000pt;}
.y78{bottom:578.080000pt;}
.y66{bottom:580.320000pt;}
.y77{bottom:590.240000pt;}
.y65{bottom:597.306667pt;}
.yc4{bottom:597.320000pt;}
.y118{bottom:606.586667pt;}
.ye1{bottom:607.240000pt;}
.y142{bottom:607.866667pt;}
.y64{bottom:612.346667pt;}
.y97{bottom:615.226667pt;}
.yc3{bottom:618.120000pt;}
.y117{bottom:622.906667pt;}
.y63{bottom:629.306667pt;}
.y96{bottom:631.226667pt;}
.y141{bottom:631.546667pt;}
.yb3{bottom:634.440000pt;}
.yc1{bottom:638.600000pt;}
.y116{bottom:639.226667pt;}
.y95{bottom:643.386667pt;}
.y62{bottom:644.666667pt;}
.y140{bottom:646.906667pt;}
.y115{bottom:655.226667pt;}
.y61{bottom:661.626667pt;}
.y13f{bottom:662.266667pt;}
.yc0{bottom:662.586667pt;}
.y114{bottom:670.906667pt;}
.yaf{bottom:673.800000pt;}
.ybf{bottom:674.746667pt;}
.y60{bottom:676.666667pt;}
.y13e{bottom:677.626667pt;}
.y113{bottom:687.226667pt;}
.y13d{bottom:692.986667pt;}
.yde{bottom:693.320000pt;}
.y5f{bottom:700.346667pt;}
.y112{bottom:703.546667pt;}
.y13c{bottom:708.346667pt;}
.y5e{bottom:715.746667pt;}
.yae{bottom:719.266667pt;}
.y111{bottom:719.586667pt;}
.y13b{bottom:723.746667pt;}
.y5d{bottom:731.106667pt;}
.yad{bottom:731.426667pt;}
.y110{bottom:735.266667pt;}
.y13a{bottom:739.106667pt;}
.y5c{bottom:746.146667pt;}
.y10f{bottom:750.306667pt;}
.y139{bottom:754.146667pt;}
.y5b{bottom:761.506667pt;}
.yd6{bottom:764.400000pt;}
.y10e{bottom:765.666667pt;}
.y138{bottom:769.506667pt;}
.y5a{bottom:776.866667pt;}
.y10d{bottom:781.026667pt;}
.y137{bottom:784.866667pt;}
.y59{bottom:792.226667pt;}
.y10c{bottom:796.066667pt;}
.y136{bottom:800.226667pt;}
.y58{bottom:807.586667pt;}
.y11{bottom:808.226667pt;}
.y10b{bottom:811.426667pt;}
.y10{bottom:813.026667pt;}
.y135{bottom:815.586667pt;}
.y57{bottom:822.946667pt;}
.y10a{bottom:826.786667pt;}
.yf{bottom:828.386667pt;}
.y134{bottom:830.973333pt;}
.y56{bottom:838.333333pt;}
.y109{bottom:842.173333pt;}
.y133{bottom:846.333333pt;}
.ye{bottom:849.533333pt;}
.yd3{bottom:850.813333pt;}
.y55{bottom:853.373333pt;}
.y108{bottom:857.533333pt;}
.yd{bottom:858.813333pt;}
.y132{bottom:861.693333pt;}
.y107{bottom:872.893333pt;}
.y54{bottom:877.053333pt;}
.yc{bottom:880.253333pt;}
.y106{bottom:888.573333pt;}
.y53{bottom:892.413333pt;}
.y105{bottom:904.893333pt;}
.yb{bottom:906.493333pt;}
.y52{bottom:907.773333pt;}
.y94{bottom:914.173333pt;}
.y104{bottom:920.893333pt;}
.yd2{bottom:921.853333pt;}
.y51{bottom:922.813333pt;}
.y92{bottom:927.933333pt;}
.ya{bottom:928.253333pt;}
.y103{bottom:937.213333pt;}
.ybe{bottom:937.853333pt;}
.y50{bottom:938.173333pt;}
.y91{bottom:951.973333pt;}
.y9{bottom:952.933333pt;}
.y102{bottom:953.253333pt;}
.y4f{bottom:953.573333pt;}
.y4c{bottom:955.840000pt;}
.y90{bottom:967.333333pt;}
.yac{bottom:968.613333pt;}
.y4e{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.702500pt;}
.h14{height:5.022500pt;}
.h1a{height:10.050000pt;}
.h25{height:14.386667pt;}
.h1b{height:19.826667pt;}
.h2d{height:19.840000pt;}
.h1f{height:19.866667pt;}
.h2b{height:19.872000pt;}
.h2a{height:20.146667pt;}
.h2c{height:20.160000pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h2f{height:27.090000pt;}
.h23{height:29.106667pt;}
.h28{height:29.120000pt;}
.h29{height:29.146667pt;}
.h27{height:29.152000pt;}
.h21{height:30.400000pt;}
.h22{height:30.426667pt;}
.h20{height:30.432000pt;}
.h1e{height:30.706667pt;}
.h1c{height:30.720000pt;}
.h1d{height:30.746667pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h34{height:45.760000pt;}
.h30{height:46.066667pt;}
.h32{height:46.098667pt;}
.hf{height:47.713750pt;}
.h13{height:49.020000pt;}
.h26{height:50.250000pt;}
.h24{height:51.600000pt;}
.h15{height:52.736250pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h18{height:55.256809pt;}
.h2e{height:55.965000pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h19{height:59.340000pt;}
.h33{height:61.106667pt;}
.h31{height:61.426667pt;}
.h11{height:62.812500pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h10{height:186.280000pt;}
.hc{height:513.093333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:71.072000pt;}
.w9{width:85.466667pt;}
.w1b{width:87.072000pt;}
.w1c{width:88.018667pt;}
.wf{width:88.986667pt;}
.w2{width:92.180000pt;}
.w19{width:95.400000pt;}
.we{width:101.146667pt;}
.w13{width:107.226667pt;}
.w14{width:107.264000pt;}
.w15{width:112.978667pt;}
.w16{width:114.280000pt;}
.w4{width:117.780000pt;}
.w12{width:119.080000pt;}
.wd{width:125.160000pt;}
.w8{width:134.760000pt;}
.w1d{width:137.000000pt;}
.w6{width:144.960000pt;}
.wb{width:167.080000pt;}
.w1a{width:177.346667pt;}
.wa{width:192.093333pt;}
.w11{width:202.960000pt;}
.w17{width:352.453333pt;}
.wc{width:395.666667pt;}
.w18{width:426.720000pt;}
.w7{width:499.040000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x1c{left:7.373333pt;}
.x4{left:11.826667pt;}
.x1a{left:14.708000pt;}
.x17{left:15.668000pt;}
.x19{left:17.588000pt;}
.x18{left:23.348000pt;}
.x20{left:25.908000pt;}
.x6{left:31.346667pt;}
.x3e{left:35.200000pt;}
.x3f{left:37.760000pt;}
.x11{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x12{left:45.140000pt;}
.x10{left:48.980000pt;}
.x22{left:50.900000pt;}
.x21{left:58.902667pt;}
.x41{left:64.040000pt;}
.x15{left:64.982667pt;}
.x1{left:69.804000pt;}
.x16{left:71.382667pt;}
.x7{left:76.832000pt;}
.x42{left:79.080000pt;}
.x14{left:82.582667pt;}
.x2{left:84.822667pt;}
.x23{left:91.542667pt;}
.x46{left:93.813333pt;}
.x1e{left:95.062667pt;}
.x25{left:100.832000pt;}
.x48{left:102.764000pt;}
.x29{left:105.964000pt;}
.x13{left:110.742667pt;}
.x2e{left:112.040000pt;}
.x36{left:114.924000pt;}
.xa{left:122.624000pt;}
.x5{left:125.813333pt;}
.x27{left:147.600000pt;}
.x3{left:162.000000pt;}
.xc{left:163.586667pt;}
.x40{left:164.546667pt;}
.x45{left:183.760000pt;}
.x1b{left:194.640000pt;}
.x2d{left:199.453333pt;}
.xb{left:207.773333pt;}
.x3d{left:220.893333pt;}
.x30{left:226.653333pt;}
.xd{left:234.333333pt;}
.x34{left:235.613333pt;}
.x2a{left:241.693333pt;}
.x3a{left:269.213333pt;}
.x2b{left:328.133333pt;}
.x37{left:342.853333pt;}
.x44{left:372.960000pt;}
.x49{left:377.440000pt;}
.x33{left:396.960000pt;}
.x31{left:418.720000pt;}
.x38{left:451.080000pt;}
.x4a{left:465.480000pt;}
.x32{left:490.760000pt;}
.xe{left:492.986667pt;}
.x1d{left:504.853333pt;}
.x2c{left:521.200000pt;}
.x3b{left:546.466667pt;}
.x4b{left:554.480000pt;}
.x39{left:565.040000pt;}
.x28{left:591.933333pt;}
.x35{left:626.493333pt;}
.x26{left:627.453333pt;}
.x47{left:639.933333pt;}
.x3c{left:650.173333pt;}
.x43{left:652.093333pt;}
.x2f{left:660.093333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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