
    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_6180e23980ba318d8b41512d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6012460463e0e77ce659bb9d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_b75a69813f0a61c5fec77f23.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48229730138d09e84b46f7af.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3291a6584adeef3308cea33e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2749ff34870fda07a0b3da33.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a76a065e726806902bd355d3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_fb2170ddbf80a3116289e93a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_aeef9002e53ff99fb01954f8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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;}
.lsb{letter-spacing:-1.308000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.630000px;}
.ls18{letter-spacing:-0.475200px;}
.ls1a{letter-spacing:-0.417600px;}
.ls20{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.229800px;}
.ls16{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.164400px;}
.ls4{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.115200px;}
.ls12{letter-spacing:-0.048960px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.069000px;}
.ls19{letter-spacing:0.089280px;}
.ls1c{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.185760px;}
.ls1{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.247800px;}
.ls6{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.337200px;}
.lse{letter-spacing:0.342000px;}
.ls17{letter-spacing:0.371400px;}
.lsa{letter-spacing:3.888000px;}
.ls7{letter-spacing:59.345280px;}
.ls0{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.240000px;}
.wsc{word-spacing:-27.174240px;}
.ws7{word-spacing:-24.408000px;}
.ws1{word-spacing:-19.038240px;}
.ws0{word-spacing:-18.808440px;}
.ws15{word-spacing:-17.910960px;}
.ws13{word-spacing:-15.341640px;}
.ws5{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.102840px;}
.wsf{word-spacing:-15.099840px;}
.ws14{word-spacing:-15.059640px;}
.ws12{word-spacing:-15.039240px;}
.ws8{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.855040px;}
.ws3{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.805840px;}
.wse{word-spacing:-14.754240px;}
.ws11{word-spacing:-14.552640px;}
.ws10{word-spacing:-14.495040px;}
.wsd{word-spacing:-13.505760px;}
.wsa{word-spacing:-12.546000px;}
.ws9{word-spacing:-12.204000px;}
.ws17{word-spacing:-11.934000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-14.167680px;}
._8{margin-left:-11.934240px;}
._2{margin-left:-9.928320px;}
._7{margin-left:-8.820960px;}
._6{margin-left:-7.628640px;}
._9{margin-left:-5.622720px;}
._5{margin-left:-4.032960px;}
._3{margin-left:-2.954280px;}
._1{margin-left:-1.192320px;}
._0{width:1.342080px;}
._11{width:2.465760px;}
._a{width:3.709440px;}
._16{width:5.120880px;}
._17{width:6.276000px;}
._19{width:7.700640px;}
._1a{width:9.058080px;}
._1b{width:10.399680px;}
._18{width:12.096000px;}
._b{width:13.181760px;}
._13{width:16.344000px;}
._14{width:17.619840px;}
._15{width:18.745920px;}
._10{width:20.004480px;}
._e{width:21.329280px;}
._d{width:22.786560px;}
._c{width:24.575040px;}
._f{width:25.966080px;}
._1d{width:29.746200px;}
._1c{width:238.472880px;}
._1f{width:301.403040px;}
._1e{width:371.303760px;}
._12{width:849.185760px;}
.fca{color:rgb(0,0,166);}
.fc9{color:rgb(175,171,171);}
.fc8{color:rgb(68,114,196);}
.fc7{color:transparent;}
.fc6{color:rgb(13,40,194);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(25,25,25);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.060000px;}
.y11{bottom:3.600000px;}
.y3e{bottom:4.500000px;}
.y8a{bottom:6.300000px;}
.y67{bottom:7.200000px;}
.y82{bottom:7.380000px;}
.ya7{bottom:8.100000px;}
.y84{bottom:9.360000px;}
.y93{bottom:10.080000px;}
.yc1{bottom:11.880000px;}
.y7{bottom:18.720000px;}
.y6b{bottom:20.160000px;}
.y4e{bottom:23.760000px;}
.y64{bottom:24.480000px;}
.y3d{bottom:24.660000px;}
.y89{bottom:25.200000px;}
.y81{bottom:30.600000px;}
.y6a{bottom:33.840000px;}
.y66{bottom:35.100000px;}
.yb5{bottom:36.000000px;}
.y69{bottom:36.540000px;}
.y4d{bottom:43.920000px;}
.y88{bottom:44.100000px;}
.yec{bottom:44.640000px;}
.y63{bottom:44.685000px;}
.yd9{bottom:45.720000px;}
.y3c{bottom:47.520000px;}
.y80{bottom:53.820000px;}
.yb4{bottom:56.160000px;}
.yf{bottom:57.456000px;}
.y6{bottom:62.490000px;}
.y4c{bottom:63.900000px;}
.yeb{bottom:64.800000px;}
.y62{bottom:64.845000px;}
.ybf{bottom:65.160000px;}
.y9b{bottom:65.385000px;}
.yd8{bottom:66.780000px;}
.yb3{bottom:76.320000px;}
.ye{bottom:77.616000px;}
.y3b{bottom:77.760000px;}
.ybe{bottom:83.340000px;}
.y9a{bottom:83.745000px;}
.y4b{bottom:84.060000px;}
.yea{bottom:84.990000px;}
.y61{bottom:85.005000px;}
.yd7{bottom:87.840000px;}
.ya{bottom:94.710000px;}
.yb2{bottom:96.480000px;}
.y3a{bottom:97.920000px;}
.ybd{bottom:101.700000px;}
.y7f{bottom:101.880000px;}
.y99{bottom:101.925000px;}
.y4a{bottom:104.220000px;}
.ye9{bottom:105.150000px;}
.y60{bottom:105.165000px;}
.yd6{bottom:108.720000px;}
.yb1{bottom:116.640000px;}
.y6d{bottom:119.556000px;}
.y98{bottom:120.285000px;}
.y39{bottom:120.780000px;}
.y9{bottom:121.890000px;}
.y49{bottom:124.380000px;}
.y7e{bottom:124.920000px;}
.ye8{bottom:125.310000px;}
.y5f{bottom:125.325000px;}
.y15d{bottom:126.936000px;}
.ybc{bottom:129.060000px;}
.y5{bottom:129.090000px;}
.yd5{bottom:129.825000px;}
.yfb{bottom:132.876000px;}
.y117{bottom:133.776000px;}
.y94{bottom:133.965000px;}
.yb0{bottom:136.800000px;}
.y13b{bottom:137.196000px;}
.y97{bottom:138.645000px;}
.yb{bottom:143.496000px;}
.y48{bottom:144.585000px;}
.ye7{bottom:145.470000px;}
.y5e{bottom:145.485000px;}
.ybb{bottom:147.465000px;}
.y15c{bottom:148.716000px;}
.y7d{bottom:149.040000px;}
.yda{bottom:149.076000px;}
.yd4{bottom:150.885000px;}
.y38{bottom:151.065000px;}
.y6c{bottom:153.210000px;}
.y116{bottom:153.930000px;}
.yfa{bottom:154.650000px;}
.y8{bottom:154.830000px;}
.yaf{bottom:156.825000px;}
.y13a{bottom:158.970000px;}
.y47{bottom:164.745000px;}
.y96{bottom:164.925000px;}
.yc2{bottom:165.450000px;}
.y5d{bottom:165.645000px;}
.yba{bottom:165.825000px;}
.y90{bottom:167.970000px;}
.y68{bottom:168.870000px;}
.y15b{bottom:170.490000px;}
.y37{bottom:171.225000px;}
.yd3{bottom:171.945000px;}
.y7c{bottom:173.160000px;}
.y115{bottom:174.090000px;}
.yf9{bottom:176.430000px;}
.yae{bottom:176.985000px;}
.y139{bottom:180.750000px;}
.yb9{bottom:184.185000px;}
.y46{bottom:184.905000px;}
.y5c{bottom:185.805000px;}
.y95{bottom:187.065000px;}
.y8f{bottom:191.190000px;}
.yd2{bottom:192.105000px;}
.y15a{bottom:192.270000px;}
.y36{bottom:194.085000px;}
.y114{bottom:194.250000px;}
.y4{bottom:195.870000px;}
.y7b{bottom:196.200000px;}
.yad{bottom:197.145000px;}
.y138{bottom:197.850000px;}
.yf8{bottom:198.210000px;}
.y45{bottom:205.065000px;}
.y5b{bottom:205.965000px;}
.yb8{bottom:210.465000px;}
.yd1{bottom:212.265000px;}
.y159{bottom:213.870000px;}
.y8e{bottom:214.230000px;}
.y113{bottom:214.410000px;}
.yac{bottom:217.305000px;}
.y65{bottom:218.370000px;}
.y7a{bottom:220.365000px;}
.yf7{bottom:220.710000px;}
.y35{bottom:224.325000px;}
.y44{bottom:225.225000px;}
.y5a{bottom:225.945000px;}
.yb6{bottom:230.265000px;}
.yd0{bottom:232.425000px;}
.yb7{bottom:232.605000px;}
.y158{bottom:235.650000px;}
.y8d{bottom:237.450000px;}
.yab{bottom:237.465000px;}
.y56{bottom:238.530000px;}
.y17a{bottom:242.130000px;}
.y79{bottom:243.585000px;}
.y34{bottom:244.305000px;}
.y43{bottom:245.385000px;}
.y59{bottom:246.105000px;}
.y112{bottom:246.450000px;}
.y137{bottom:247.350000px;}
.ycf{bottom:252.405000px;}
.y3{bottom:253.830000px;}
.yc{bottom:257.079000px;}
.y17b{bottom:257.430000px;}
.yf6{bottom:257.610000px;}
.y157{bottom:258.510000px;}
.y8c{bottom:260.670000px;}
.y33{bottom:264.465000px;}
.y42{bottom:265.365000px;}
.y58{bottom:266.265000px;}
.y111{bottom:266.610000px;}
.y78{bottom:270.945000px;}
.yce{bottom:272.565000px;}
.y179{bottom:275.970000px;}
.yf5{bottom:279.390000px;}
.y136{bottom:280.470000px;}
.y8b{bottom:283.755000px;}
.y32{bottom:284.625000px;}
.y41{bottom:285.525000px;}
.y156{bottom:286.095000px;}
.y57{bottom:286.425000px;}
.y110{bottom:286.815000px;}
.ycd{bottom:292.725000px;}
.y87{bottom:299.415000px;}
.yf4{bottom:301.035000px;}
.y135{bottom:302.295000px;}
.y155{bottom:303.375000px;}
.y31{bottom:304.785000px;}
.y40{bottom:305.685000px;}
.y10f{bottom:306.975000px;}
.y178{bottom:309.675000px;}
.ycc{bottom:312.885000px;}
.ya5{bottom:315.615000px;}
.yf3{bottom:322.815000px;}
.y30{bottom:324.945000px;}
.y134{bottom:324.975000px;}
.y3f{bottom:325.845000px;}
.ycb{bottom:333.045000px;}
.y10e{bottom:340.275000px;}
.y154{bottom:343.155000px;}
.y177{bottom:343.515000px;}
.ya4{bottom:344.775000px;}
.y2f{bottom:345.105000px;}
.yf2{bottom:345.495000px;}
.yca{bottom:353.205000px;}
.y85{bottom:356.295000px;}
.y133{bottom:361.695000px;}
.y153{bottom:364.935000px;}
.y10d{bottom:368.535000px;}
.yc9{bottom:373.365000px;}
.y132{bottom:378.795000px;}
.y176{bottom:379.875000px;}
.yf1{bottom:382.215000px;}
.y10c{bottom:385.815000px;}
.y152{bottom:386.715000px;}
.yc8{bottom:393.525000px;}
.yf0{bottom:403.995000px;}
.yc7{bottom:413.715000px;}
.y131{bottom:416.775000px;}
.y175{bottom:420.735000px;}
.ya3{bottom:423.795000px;}
.yef{bottom:425.775000px;}
.yc6{bottom:433.695000px;}
.y130{bottom:438.555000px;}
.y10b{bottom:447.555000px;}
.yee{bottom:448.455000px;}
.yc5{bottom:453.855000px;}
.y174{bottom:454.575000px;}
.ya2{bottom:457.455000px;}
.y12f{bottom:461.235000px;}
.y10a{bottom:469.155000px;}
.y151{bottom:471.135000px;}
.yc4{bottom:474.015000px;}
.yed{bottom:476.715000px;}
.ya1{bottom:486.615000px;}
.y173{bottom:488.235000px;}
.y109{bottom:490.935000px;}
.y150{bottom:493.815000px;}
.yc3{bottom:495.435000px;}
.ye6{bottom:496.875000px;}
.y12e{bottom:500.655000px;}
.y108{bottom:512.715000px;}
.y2{bottom:513.435000px;}
.y14f{bottom:521.535000px;}
.y172{bottom:522.075000px;}
.y12d{bottom:530.175000px;}
.y107{bottom:534.495000px;}
.y171{bottom:555.735000px;}
.y14e{bottom:555.915000px;}
.y106{bottom:556.095000px;}
.y55{bottom:558.615000px;}
.y2d{bottom:563.115000px;}
.y12c{bottom:566.025000px;}
.y14d{bottom:576.105000px;}
.y105{bottom:577.905000px;}
.y54{bottom:580.425000px;}
.y170{bottom:589.605000px;}
.y2c{bottom:590.505000px;}
.y163{bottom:591.225000px;}
.y14c{bottom:596.265000px;}
.y12b{bottom:598.065000px;}
.y104{bottom:599.685000px;}
.y53{bottom:602.205000px;}
.y83{bottom:604.725000px;}
.y2b{bottom:610.665000px;}
.y12a{bottom:618.225000px;}
.y103{bottom:621.465000px;}
.y16f{bottom:623.265000px;}
.y52{bottom:623.985000px;}
.y14b{bottom:629.385000px;}
.y2a{bottom:630.825000px;}
.y77{bottom:634.245000px;}
.y129{bottom:638.385000px;}
.y102{bottom:638.565000px;}
.y51{bottom:645.765000px;}
.y29{bottom:650.985000px;}
.ya0{bottom:651.165000px;}
.y16e{bottom:656.925000px;}
.y128{bottom:658.545000px;}
.y14a{bottom:659.265000px;}
.y28{bottom:670.965000px;}
.ye5{bottom:671.685000px;}
.y50{bottom:679.425000px;}
.yc0{bottom:681.585000px;}
.y149{bottom:682.485000px;}
.y9f{bottom:684.825000px;}
.y127{bottom:690.765000px;}
.y27{bottom:691.125000px;}
.y4f{bottom:695.085000px;}
.y148{bottom:705.525000px;}
.yaa{bottom:706.245000px;}
.y126{bottom:710.925000px;}
.y26{bottom:711.285000px;}
.y9e{bottom:714.165000px;}
.y2e{bottom:715.245000px;}
.y16d{bottom:727.125000px;}
.y147{bottom:728.745000px;}
.y125{bottom:731.085000px;}
.y25{bottom:731.445000px;}
.y24{bottom:751.605000px;}
.y146{bottom:758.625000px;}
.y9d{bottom:759.885000px;}
.y124{bottom:763.125000px;}
.y16c{bottom:768.165000px;}
.y23{bottom:771.765000px;}
.y9c{bottom:781.665000px;}
.y145{bottom:786.345000px;}
.ye4{bottom:788.865000px;}
.y22{bottom:791.925000px;}
.y123{bottom:795.345000px;}
.y92{bottom:797.325000px;}
.y16b{bottom:801.825000px;}
.ye3{bottom:810.645000px;}
.y21{bottom:812.085000px;}
.y144{bottom:814.065000px;}
.y16a{bottom:823.605000px;}
.y122{bottom:828.465000px;}
.y20{bottom:832.245000px;}
.ye2{bottom:832.425000px;}
.y143{bottom:837.285000px;}
.y1f{bottom:852.450000px;}
.y169{bottom:852.990000px;}
.ye1{bottom:854.250000px;}
.y121{bottom:856.950000px;}
.y142{bottom:860.370000px;}
.y1e{bottom:872.430000px;}
.ye0{bottom:875.850000px;}
.y120{bottom:878.730000px;}
.y141{bottom:883.050000px;}
.y1d{bottom:892.590000px;}
.ydf{bottom:897.630000px;}
.y11f{bottom:900.330000px;}
.y168{bottom:905.730000px;}
.y1c{bottom:912.750000px;}
.y140{bottom:919.950000px;}
.yde{bottom:920.310000px;}
.y11e{bottom:922.110000px;}
.y167{bottom:927.510000px;}
.y1b{bottom:932.910000px;}
.y76{bottom:935.430000px;}
.y11d{bottom:943.890000px;}
.y166{bottom:949.110000px;}
.y1a{bottom:953.070000px;}
.y13f{bottom:953.610000px;}
.y75{bottom:958.650000px;}
.ydd{bottom:959.730000px;}
.y162{bottom:961.890000px;}
.y11c{bottom:965.670000px;}
.y19{bottom:973.230000px;}
.y13e{bottom:975.390000px;}
.ya9{bottom:980.070000px;}
.y74{bottom:981.870000px;}
.y161{bottom:984.570000px;}
.y11b{bottom:987.270000px;}
.y18{bottom:993.390000px;}
.y165{bottom:995.010000px;}
.y13d{bottom:997.890000px;}
.ydc{bottom:1000.770000px;}
.y73{bottom:1004.910000px;}
.y160{bottom:1006.170000px;}
.ya8{bottom:1006.350000px;}
.y11a{bottom:1009.050000px;}
.y17{bottom:1013.550000px;}
.ydb{bottom:1018.050000px;}
.y101{bottom:1025.070000px;}
.y15f{bottom:1028.850000px;}
.y119{bottom:1030.830000px;}
.y16{bottom:1033.710000px;}
.y13c{bottom:1034.790000px;}
.y72{bottom:1038.750000px;}
.y100{bottom:1046.850000px;}
.y15e{bottom:1050.630000px;}
.y118{bottom:1053.510000px;}
.y15{bottom:1053.870000px;}
.y71{bottom:1060.530000px;}
.yff{bottom:1068.450000px;}
.y91{bottom:1072.230000px;}
.y14{bottom:1073.850000px;}
.ya6{bottom:1083.030000px;}
.yfe{bottom:1090.230000px;}
.y13{bottom:1094.010000px;}
.y70{bottom:1094.190000px;}
.y164{bottom:1108.770000px;}
.yfd{bottom:1112.010000px;}
.y6f{bottom:1115.970000px;}
.y12{bottom:1130.580000px;}
.y1{bottom:1133.820000px;}
.yfc{bottom:1134.720000px;}
.y6e{bottom:1137.780000px;}
.yd{bottom:1157.940000px;}
.y10{bottom:1179.540000px;}
.hf{height:20.160000px;}
.hb{height:20.340000px;}
.h20{height:24.660000px;}
.h17{height:29.520000px;}
.h1c{height:36.540000px;}
.h13{height:49.500000px;}
.h12{height:53.709961px;}
.h19{height:56.880000px;}
.h1b{height:59.439023px;}
.h4{height:65.884219px;}
.h24{height:66.027445px;}
.hc{height:67.824844px;}
.h14{height:68.554688px;}
.h7{height:71.613281px;}
.h1e{height:73.260000px;}
.h22{height:74.039062px;}
.h9{height:83.787539px;}
.h2{height:91.177734px;}
.h16{height:95.245664px;}
.he{height:107.419922px;}
.h8{height:110.583984px;}
.h1d{height:119.594180px;}
.h23{height:161.130000px;}
.h5{height:166.858945px;}
.h6{height:214.839844px;}
.h18{height:248.430000px;}
.h1f{height:253.110000px;}
.h1a{height:268.950000px;}
.h3{height:269.490000px;}
.h15{height:293.790000px;}
.h10{height:302.070000px;}
.h11{height:322.230000px;}
.hd{height:360.750000px;}
.h21{height:515.415000px;}
.ha{height:975.705000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:17.100000px;}
.w8{width:18.180000px;}
.w16{width:21.240000px;}
.wf{width:43.380000px;}
.w13{width:209.010000px;}
.w12{width:210.630000px;}
.w14{width:210.810000px;}
.w17{width:233.490000px;}
.we{width:247.890000px;}
.wa{width:267.690000px;}
.w9{width:307.875000px;}
.w7{width:311.070000px;}
.w10{width:318.135000px;}
.wc{width:357.195000px;}
.w15{width:382.395000px;}
.w4{width:407.235000px;}
.w3{width:430.095000px;}
.w19{width:482.295000px;}
.w6{width:636.405000px;}
.w18{width:636.765000px;}
.w11{width:637.125000px;}
.wd{width:646.305000px;}
.w5{width:839.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.300000px;}
.xd{left:8.100000px;}
.x1b{left:17.280000px;}
.x14{left:23.214000px;}
.x2{left:26.640000px;}
.xe{left:35.094000px;}
.x6{left:42.660000px;}
.x4{left:48.600000px;}
.x12{left:57.810000px;}
.x2e{left:60.834000px;}
.xf{left:62.094000px;}
.x5{left:69.876000px;}
.x16{left:88.014000px;}
.xa{left:90.354000px;}
.x15{left:92.334000px;}
.x17{left:97.734000px;}
.x1c{left:110.550000px;}
.x20{left:116.994000px;}
.x1d{left:119.196000px;}
.x1{left:127.655987px;}
.xb{left:144.215987px;}
.x2a{left:147.594000px;}
.x1e{left:149.754000px;}
.x13{left:153.930000px;}
.xc{left:160.769987px;}
.x33{left:181.649987px;}
.x7{left:183.630000px;}
.x2f{left:205.410000px;}
.x21{left:236.739000px;}
.x22{left:239.805000px;}
.x30{left:262.649987px;}
.x32{left:265.709987px;}
.x31{left:267.149987px;}
.x1a{left:326.415000px;}
.x27{left:341.715000px;}
.x18{left:395.355000px;}
.x23{left:402.555000px;}
.x3{left:404.175000px;}
.x19{left:412.455000px;}
.x35{left:426.494987px;}
.x10{left:439.095000px;}
.x9{left:442.334987px;}
.x24{left:445.935000px;}
.x11{left:457.275000px;}
.x8{left:459.075000px;}
.x2b{left:510.045000px;}
.x2c{left:531.285000px;}
.x29{left:553.965000px;}
.x26{left:573.584987px;}
.x2d{left:629.214000px;}
.x1f{left:645.954000px;}
.x34{left:696.929987px;}
.x25{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.162667pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.560000pt;}
.ls18{letter-spacing:-0.422400pt;}
.ls1a{letter-spacing:-0.371200pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.204267pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.146133pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.102400pt;}
.ls12{letter-spacing:-0.043520pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.061333pt;}
.ls19{letter-spacing:0.079360pt;}
.ls1c{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.165120pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.220267pt;}
.ls6{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.299733pt;}
.lse{letter-spacing:0.304000pt;}
.ls17{letter-spacing:0.330133pt;}
.lsa{letter-spacing:3.456000pt;}
.ls7{letter-spacing:52.751360pt;}
.ls0{letter-spacing:754.831787pt;}
.ws6{word-spacing:-58.880000pt;}
.wsc{word-spacing:-24.154880pt;}
.ws7{word-spacing:-21.696000pt;}
.ws1{word-spacing:-16.922880pt;}
.ws0{word-spacing:-16.718613pt;}
.ws15{word-spacing:-15.920853pt;}
.ws13{word-spacing:-13.637013pt;}
.ws5{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.424747pt;}
.wsf{word-spacing:-13.422080pt;}
.ws14{word-spacing:-13.386347pt;}
.ws12{word-spacing:-13.368213pt;}
.ws8{word-spacing:-13.306880pt;}
.ws16{word-spacing:-13.204480pt;}
.ws3{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.160747pt;}
.wse{word-spacing:-13.114880pt;}
.ws11{word-spacing:-12.935680pt;}
.ws10{word-spacing:-12.884480pt;}
.wsd{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.152000pt;}
.ws9{word-spacing:-10.848000pt;}
.ws17{word-spacing:-10.608000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-12.593493pt;}
._8{margin-left:-10.608213pt;}
._2{margin-left:-8.825173pt;}
._7{margin-left:-7.840853pt;}
._6{margin-left:-6.781013pt;}
._9{margin-left:-4.997973pt;}
._5{margin-left:-3.584853pt;}
._3{margin-left:-2.626027pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.192960pt;}
._11{width:2.191787pt;}
._a{width:3.297280pt;}
._16{width:4.551893pt;}
._17{width:5.578667pt;}
._19{width:6.845013pt;}
._1a{width:8.051627pt;}
._1b{width:9.244160pt;}
._18{width:10.752000pt;}
._b{width:11.717120pt;}
._13{width:14.528000pt;}
._14{width:15.662080pt;}
._15{width:16.663040pt;}
._10{width:17.781760pt;}
._e{width:18.959360pt;}
._d{width:20.254720pt;}
._c{width:21.844480pt;}
._f{width:23.080960pt;}
._1d{width:26.441067pt;}
._1c{width:211.975893pt;}
._1f{width:267.913813pt;}
._1e{width:330.047787pt;}
._12{width:754.831787pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.720000pt;}
.y11{bottom:3.200000pt;}
.y3e{bottom:4.000000pt;}
.y8a{bottom:5.600000pt;}
.y67{bottom:6.400000pt;}
.y82{bottom:6.560000pt;}
.ya7{bottom:7.200000pt;}
.y84{bottom:8.320000pt;}
.y93{bottom:8.960000pt;}
.yc1{bottom:10.560000pt;}
.y7{bottom:16.640000pt;}
.y6b{bottom:17.920000pt;}
.y4e{bottom:21.120000pt;}
.y64{bottom:21.760000pt;}
.y3d{bottom:21.920000pt;}
.y89{bottom:22.400000pt;}
.y81{bottom:27.200000pt;}
.y6a{bottom:30.080000pt;}
.y66{bottom:31.200000pt;}
.yb5{bottom:32.000000pt;}
.y69{bottom:32.480000pt;}
.y4d{bottom:39.040000pt;}
.y88{bottom:39.200000pt;}
.yec{bottom:39.680000pt;}
.y63{bottom:39.720000pt;}
.yd9{bottom:40.640000pt;}
.y3c{bottom:42.240000pt;}
.y80{bottom:47.840000pt;}
.yb4{bottom:49.920000pt;}
.yf{bottom:51.072000pt;}
.y6{bottom:55.546667pt;}
.y4c{bottom:56.800000pt;}
.yeb{bottom:57.600000pt;}
.y62{bottom:57.640000pt;}
.ybf{bottom:57.920000pt;}
.y9b{bottom:58.120000pt;}
.yd8{bottom:59.360000pt;}
.yb3{bottom:67.840000pt;}
.ye{bottom:68.992000pt;}
.y3b{bottom:69.120000pt;}
.ybe{bottom:74.080000pt;}
.y9a{bottom:74.440000pt;}
.y4b{bottom:74.720000pt;}
.yea{bottom:75.546667pt;}
.y61{bottom:75.560000pt;}
.yd7{bottom:78.080000pt;}
.ya{bottom:84.186667pt;}
.yb2{bottom:85.760000pt;}
.y3a{bottom:87.040000pt;}
.ybd{bottom:90.400000pt;}
.y7f{bottom:90.560000pt;}
.y99{bottom:90.600000pt;}
.y4a{bottom:92.640000pt;}
.ye9{bottom:93.466667pt;}
.y60{bottom:93.480000pt;}
.yd6{bottom:96.640000pt;}
.yb1{bottom:103.680000pt;}
.y6d{bottom:106.272000pt;}
.y98{bottom:106.920000pt;}
.y39{bottom:107.360000pt;}
.y9{bottom:108.346667pt;}
.y49{bottom:110.560000pt;}
.y7e{bottom:111.040000pt;}
.ye8{bottom:111.386667pt;}
.y5f{bottom:111.400000pt;}
.y15d{bottom:112.832000pt;}
.ybc{bottom:114.720000pt;}
.y5{bottom:114.746667pt;}
.yd5{bottom:115.400000pt;}
.yfb{bottom:118.112000pt;}
.y117{bottom:118.912000pt;}
.y94{bottom:119.080000pt;}
.yb0{bottom:121.600000pt;}
.y13b{bottom:121.952000pt;}
.y97{bottom:123.240000pt;}
.yb{bottom:127.552000pt;}
.y48{bottom:128.520000pt;}
.ye7{bottom:129.306667pt;}
.y5e{bottom:129.320000pt;}
.ybb{bottom:131.080000pt;}
.y15c{bottom:132.192000pt;}
.y7d{bottom:132.480000pt;}
.yda{bottom:132.512000pt;}
.yd4{bottom:134.120000pt;}
.y38{bottom:134.280000pt;}
.y6c{bottom:136.186667pt;}
.y116{bottom:136.826667pt;}
.yfa{bottom:137.466667pt;}
.y8{bottom:137.626667pt;}
.yaf{bottom:139.400000pt;}
.y13a{bottom:141.306667pt;}
.y47{bottom:146.440000pt;}
.y96{bottom:146.600000pt;}
.yc2{bottom:147.066667pt;}
.y5d{bottom:147.240000pt;}
.yba{bottom:147.400000pt;}
.y90{bottom:149.306667pt;}
.y68{bottom:150.106667pt;}
.y15b{bottom:151.546667pt;}
.y37{bottom:152.200000pt;}
.yd3{bottom:152.840000pt;}
.y7c{bottom:153.920000pt;}
.y115{bottom:154.746667pt;}
.yf9{bottom:156.826667pt;}
.yae{bottom:157.320000pt;}
.y139{bottom:160.666667pt;}
.yb9{bottom:163.720000pt;}
.y46{bottom:164.360000pt;}
.y5c{bottom:165.160000pt;}
.y95{bottom:166.280000pt;}
.y8f{bottom:169.946667pt;}
.yd2{bottom:170.760000pt;}
.y15a{bottom:170.906667pt;}
.y36{bottom:172.520000pt;}
.y114{bottom:172.666667pt;}
.y4{bottom:174.106667pt;}
.y7b{bottom:174.400000pt;}
.yad{bottom:175.240000pt;}
.y138{bottom:175.866667pt;}
.yf8{bottom:176.186667pt;}
.y45{bottom:182.280000pt;}
.y5b{bottom:183.080000pt;}
.yb8{bottom:187.080000pt;}
.yd1{bottom:188.680000pt;}
.y159{bottom:190.106667pt;}
.y8e{bottom:190.426667pt;}
.y113{bottom:190.586667pt;}
.yac{bottom:193.160000pt;}
.y65{bottom:194.106667pt;}
.y7a{bottom:195.880000pt;}
.yf7{bottom:196.186667pt;}
.y35{bottom:199.400000pt;}
.y44{bottom:200.200000pt;}
.y5a{bottom:200.840000pt;}
.yb6{bottom:204.680000pt;}
.yd0{bottom:206.600000pt;}
.yb7{bottom:206.760000pt;}
.y158{bottom:209.466667pt;}
.y8d{bottom:211.066667pt;}
.yab{bottom:211.080000pt;}
.y56{bottom:212.026667pt;}
.y17a{bottom:215.226667pt;}
.y79{bottom:216.520000pt;}
.y34{bottom:217.160000pt;}
.y43{bottom:218.120000pt;}
.y59{bottom:218.760000pt;}
.y112{bottom:219.066667pt;}
.y137{bottom:219.866667pt;}
.ycf{bottom:224.360000pt;}
.y3{bottom:225.626667pt;}
.yc{bottom:228.514667pt;}
.y17b{bottom:228.826667pt;}
.yf6{bottom:228.986667pt;}
.y157{bottom:229.786667pt;}
.y8c{bottom:231.706667pt;}
.y33{bottom:235.080000pt;}
.y42{bottom:235.880000pt;}
.y58{bottom:236.680000pt;}
.y111{bottom:236.986667pt;}
.y78{bottom:240.840000pt;}
.yce{bottom:242.280000pt;}
.y179{bottom:245.306667pt;}
.yf5{bottom:248.346667pt;}
.y136{bottom:249.306667pt;}
.y8b{bottom:252.226667pt;}
.y32{bottom:253.000000pt;}
.y41{bottom:253.800000pt;}
.y156{bottom:254.306667pt;}
.y57{bottom:254.600000pt;}
.y110{bottom:254.946667pt;}
.ycd{bottom:260.200000pt;}
.y87{bottom:266.146667pt;}
.yf4{bottom:267.586667pt;}
.y135{bottom:268.706667pt;}
.y155{bottom:269.666667pt;}
.y31{bottom:270.920000pt;}
.y40{bottom:271.720000pt;}
.y10f{bottom:272.866667pt;}
.y178{bottom:275.266667pt;}
.ycc{bottom:278.120000pt;}
.ya5{bottom:280.546667pt;}
.yf3{bottom:286.946667pt;}
.y30{bottom:288.840000pt;}
.y134{bottom:288.866667pt;}
.y3f{bottom:289.640000pt;}
.ycb{bottom:296.040000pt;}
.y10e{bottom:302.466667pt;}
.y154{bottom:305.026667pt;}
.y177{bottom:305.346667pt;}
.ya4{bottom:306.466667pt;}
.y2f{bottom:306.760000pt;}
.yf2{bottom:307.106667pt;}
.yca{bottom:313.960000pt;}
.y85{bottom:316.706667pt;}
.y133{bottom:321.506667pt;}
.y153{bottom:324.386667pt;}
.y10d{bottom:327.586667pt;}
.yc9{bottom:331.880000pt;}
.y132{bottom:336.706667pt;}
.y176{bottom:337.666667pt;}
.yf1{bottom:339.746667pt;}
.y10c{bottom:342.946667pt;}
.y152{bottom:343.746667pt;}
.yc8{bottom:349.800000pt;}
.yf0{bottom:359.106667pt;}
.yc7{bottom:367.746667pt;}
.y131{bottom:370.466667pt;}
.y175{bottom:373.986667pt;}
.ya3{bottom:376.706667pt;}
.yef{bottom:378.466667pt;}
.yc6{bottom:385.506667pt;}
.y130{bottom:389.826667pt;}
.y10b{bottom:397.826667pt;}
.yee{bottom:398.626667pt;}
.yc5{bottom:403.426667pt;}
.y174{bottom:404.066667pt;}
.ya2{bottom:406.626667pt;}
.y12f{bottom:409.986667pt;}
.y10a{bottom:417.026667pt;}
.y151{bottom:418.786667pt;}
.yc4{bottom:421.346667pt;}
.yed{bottom:423.746667pt;}
.ya1{bottom:432.546667pt;}
.y173{bottom:433.986667pt;}
.y109{bottom:436.386667pt;}
.y150{bottom:438.946667pt;}
.yc3{bottom:440.386667pt;}
.ye6{bottom:441.666667pt;}
.y12e{bottom:445.026667pt;}
.y108{bottom:455.746667pt;}
.y2{bottom:456.386667pt;}
.y14f{bottom:463.586667pt;}
.y172{bottom:464.066667pt;}
.y12d{bottom:471.266667pt;}
.y107{bottom:475.106667pt;}
.y171{bottom:493.986667pt;}
.y14e{bottom:494.146667pt;}
.y106{bottom:494.306667pt;}
.y55{bottom:496.546667pt;}
.y2d{bottom:500.546667pt;}
.y12c{bottom:503.133333pt;}
.y14d{bottom:512.093333pt;}
.y105{bottom:513.693333pt;}
.y54{bottom:515.933333pt;}
.y170{bottom:524.093333pt;}
.y2c{bottom:524.893333pt;}
.y163{bottom:525.533333pt;}
.y14c{bottom:530.013333pt;}
.y12b{bottom:531.613333pt;}
.y104{bottom:533.053333pt;}
.y53{bottom:535.293333pt;}
.y83{bottom:537.533333pt;}
.y2b{bottom:542.813333pt;}
.y12a{bottom:549.533333pt;}
.y103{bottom:552.413333pt;}
.y16f{bottom:554.013333pt;}
.y52{bottom:554.653333pt;}
.y14b{bottom:559.453333pt;}
.y2a{bottom:560.733333pt;}
.y77{bottom:563.773333pt;}
.y129{bottom:567.453333pt;}
.y102{bottom:567.613333pt;}
.y51{bottom:574.013333pt;}
.y29{bottom:578.653333pt;}
.ya0{bottom:578.813333pt;}
.y16e{bottom:583.933333pt;}
.y128{bottom:585.373333pt;}
.y14a{bottom:586.013333pt;}
.y28{bottom:596.413333pt;}
.ye5{bottom:597.053333pt;}
.y50{bottom:603.933333pt;}
.yc0{bottom:605.853333pt;}
.y149{bottom:606.653333pt;}
.y9f{bottom:608.733333pt;}
.y127{bottom:614.013333pt;}
.y27{bottom:614.333333pt;}
.y4f{bottom:617.853333pt;}
.y148{bottom:627.133333pt;}
.yaa{bottom:627.773333pt;}
.y126{bottom:631.933333pt;}
.y26{bottom:632.253333pt;}
.y9e{bottom:634.813333pt;}
.y2e{bottom:635.773333pt;}
.y16d{bottom:646.333333pt;}
.y147{bottom:647.773333pt;}
.y125{bottom:649.853333pt;}
.y25{bottom:650.173333pt;}
.y24{bottom:668.093333pt;}
.y146{bottom:674.333333pt;}
.y9d{bottom:675.453333pt;}
.y124{bottom:678.333333pt;}
.y16c{bottom:682.813333pt;}
.y23{bottom:686.013333pt;}
.y9c{bottom:694.813333pt;}
.y145{bottom:698.973333pt;}
.ye4{bottom:701.213333pt;}
.y22{bottom:703.933333pt;}
.y123{bottom:706.973333pt;}
.y92{bottom:708.733333pt;}
.y16b{bottom:712.733333pt;}
.ye3{bottom:720.573333pt;}
.y21{bottom:721.853333pt;}
.y144{bottom:723.613333pt;}
.y16a{bottom:732.093333pt;}
.y122{bottom:736.413333pt;}
.y20{bottom:739.773333pt;}
.ye2{bottom:739.933333pt;}
.y143{bottom:744.253333pt;}
.y1f{bottom:757.733333pt;}
.y169{bottom:758.213333pt;}
.ye1{bottom:759.333333pt;}
.y121{bottom:761.733333pt;}
.y142{bottom:764.773333pt;}
.y1e{bottom:775.493333pt;}
.ye0{bottom:778.533333pt;}
.y120{bottom:781.093333pt;}
.y141{bottom:784.933333pt;}
.y1d{bottom:793.413333pt;}
.ydf{bottom:797.893333pt;}
.y11f{bottom:800.293333pt;}
.y168{bottom:805.093333pt;}
.y1c{bottom:811.333333pt;}
.y140{bottom:817.733333pt;}
.yde{bottom:818.053333pt;}
.y11e{bottom:819.653333pt;}
.y167{bottom:824.453333pt;}
.y1b{bottom:829.253333pt;}
.y76{bottom:831.493333pt;}
.y11d{bottom:839.013333pt;}
.y166{bottom:843.653333pt;}
.y1a{bottom:847.173333pt;}
.y13f{bottom:847.653333pt;}
.y75{bottom:852.133333pt;}
.ydd{bottom:853.093333pt;}
.y162{bottom:855.013333pt;}
.y11c{bottom:858.373333pt;}
.y19{bottom:865.093333pt;}
.y13e{bottom:867.013333pt;}
.ya9{bottom:871.173333pt;}
.y74{bottom:872.773333pt;}
.y161{bottom:875.173333pt;}
.y11b{bottom:877.573333pt;}
.y18{bottom:883.013333pt;}
.y165{bottom:884.453333pt;}
.y13d{bottom:887.013333pt;}
.ydc{bottom:889.573333pt;}
.y73{bottom:893.253333pt;}
.y160{bottom:894.373333pt;}
.ya8{bottom:894.533333pt;}
.y11a{bottom:896.933333pt;}
.y17{bottom:900.933333pt;}
.ydb{bottom:904.933333pt;}
.y101{bottom:911.173333pt;}
.y15f{bottom:914.533333pt;}
.y119{bottom:916.293333pt;}
.y16{bottom:918.853333pt;}
.y13c{bottom:919.813333pt;}
.y72{bottom:923.333333pt;}
.y100{bottom:930.533333pt;}
.y15e{bottom:933.893333pt;}
.y118{bottom:936.453333pt;}
.y15{bottom:936.773333pt;}
.y71{bottom:942.693333pt;}
.yff{bottom:949.733333pt;}
.y91{bottom:953.093333pt;}
.y14{bottom:954.533333pt;}
.ya6{bottom:962.693333pt;}
.yfe{bottom:969.093333pt;}
.y13{bottom:972.453333pt;}
.y70{bottom:972.613333pt;}
.y164{bottom:985.573333pt;}
.yfd{bottom:988.453333pt;}
.y6f{bottom:991.973333pt;}
.y12{bottom:1004.960000pt;}
.y1{bottom:1007.840000pt;}
.yfc{bottom:1008.640000pt;}
.y6e{bottom:1011.360000pt;}
.yd{bottom:1029.280000pt;}
.y10{bottom:1048.480000pt;}
.hf{height:17.920000pt;}
.hb{height:18.080000pt;}
.h20{height:21.920000pt;}
.h17{height:26.240000pt;}
.h1c{height:32.480000pt;}
.h13{height:44.000000pt;}
.h12{height:47.742188pt;}
.h19{height:50.560000pt;}
.h1b{height:52.834688pt;}
.h4{height:58.563750pt;}
.h24{height:58.691063pt;}
.hc{height:60.288750pt;}
.h14{height:60.937500pt;}
.h7{height:63.656250pt;}
.h1e{height:65.120000pt;}
.h22{height:65.812500pt;}
.h9{height:74.477812pt;}
.h2{height:81.046875pt;}
.h16{height:84.662813pt;}
.he{height:95.484375pt;}
.h8{height:98.296875pt;}
.h1d{height:106.305937pt;}
.h23{height:143.226667pt;}
.h5{height:148.319063pt;}
.h6{height:190.968750pt;}
.h18{height:220.826667pt;}
.h1f{height:224.986667pt;}
.h1a{height:239.066667pt;}
.h3{height:239.546667pt;}
.h15{height:261.146667pt;}
.h10{height:268.506667pt;}
.h11{height:286.426667pt;}
.hd{height:320.666667pt;}
.h21{height:458.146667pt;}
.ha{height:867.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:15.200000pt;}
.w8{width:16.160000pt;}
.w16{width:18.880000pt;}
.wf{width:38.560000pt;}
.w13{width:185.786667pt;}
.w12{width:187.226667pt;}
.w14{width:187.386667pt;}
.w17{width:207.546667pt;}
.we{width:220.346667pt;}
.wa{width:237.946667pt;}
.w9{width:273.666667pt;}
.w7{width:276.506667pt;}
.w10{width:282.786667pt;}
.wc{width:317.506667pt;}
.w15{width:339.906667pt;}
.w4{width:361.986667pt;}
.w3{width:382.306667pt;}
.w19{width:428.706667pt;}
.w6{width:565.693333pt;}
.w18{width:566.013333pt;}
.w11{width:566.333333pt;}
.wd{width:574.493333pt;}
.w5{width:746.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:5.600000pt;}
.xd{left:7.200000pt;}
.x1b{left:15.360000pt;}
.x14{left:20.634667pt;}
.x2{left:23.680000pt;}
.xe{left:31.194667pt;}
.x6{left:37.920000pt;}
.x4{left:43.200000pt;}
.x12{left:51.386667pt;}
.x2e{left:54.074667pt;}
.xf{left:55.194667pt;}
.x5{left:62.112000pt;}
.x16{left:78.234667pt;}
.xa{left:80.314667pt;}
.x15{left:82.074667pt;}
.x17{left:86.874667pt;}
.x1c{left:98.266667pt;}
.x20{left:103.994667pt;}
.x1d{left:105.952000pt;}
.x1{left:113.471988pt;}
.xb{left:128.191988pt;}
.x2a{left:131.194667pt;}
.x1e{left:133.114667pt;}
.x13{left:136.826667pt;}
.xc{left:142.906655pt;}
.x33{left:161.466655pt;}
.x7{left:163.226667pt;}
.x2f{left:182.586667pt;}
.x21{left:210.434667pt;}
.x22{left:213.160000pt;}
.x30{left:233.466655pt;}
.x32{left:236.186655pt;}
.x31{left:237.466655pt;}
.x1a{left:290.146667pt;}
.x27{left:303.746667pt;}
.x18{left:351.426667pt;}
.x23{left:357.826667pt;}
.x3{left:359.266667pt;}
.x19{left:366.626667pt;}
.x35{left:379.106655pt;}
.x10{left:390.306667pt;}
.x9{left:393.186655pt;}
.x24{left:396.386667pt;}
.x11{left:406.466667pt;}
.x8{left:408.066667pt;}
.x2b{left:453.373333pt;}
.x2c{left:472.253333pt;}
.x29{left:492.413333pt;}
.x26{left:509.853322pt;}
.x2d{left:559.301333pt;}
.x1f{left:574.181333pt;}
.x34{left:619.493322pt;}
.x25{left:680.453322pt;}
}




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