
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1053453d6eb943152efa0c2d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d8a9c08bca373fee7d283934.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_acefc529f3d02f6a2b579115.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c567245a966bfe4fad567d41.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_936c723e7de5146f4826a3db.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94539382bdad208ca31d254d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bdeaa41e74bf1c42ae397b67.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls20{letter-spacing:-0.444600px;}
.ls1f{letter-spacing:-0.339600px;}
.ls11{letter-spacing:-0.186600px;}
.ls21{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.037800px;}
.ls16{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.009000px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.020160px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.lsb{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls1d{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:47.726640px;}
.ls18{letter-spacing:48.446640px;}
.ls17{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.217400px;}
.wsf{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.188600px;}
.wsd{word-spacing:-13.162800px;}
.wsa{word-spacing:-13.101000px;}
.ws15{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._1{margin-left:-3.355200px;}
._3{margin-left:-2.239788px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._a{width:3.006000px;}
._10{width:4.256640px;}
._4{width:5.290800px;}
._5{width:6.853199px;}
._f{width:8.537040px;}
._8{width:9.559200px;}
._9{width:10.580865px;}
._7{width:12.199800px;}
._13{width:14.308560px;}
._14{width:15.330600px;}
._11{width:16.774200px;}
._12{width:17.849160px;}
._b{width:19.298400px;}
._2f{width:20.501281px;}
._e{width:21.523680px;}
._2e{width:23.206320px;}
._6{width:24.408600px;}
._79{width:25.467841px;}
._d{width:26.480640px;}
._c{width:27.655200px;}
._7d{width:29.038079px;}
._23{width:30.240360px;}
._24{width:31.382640px;}
._1f{width:32.464800px;}
._15{width:33.546960px;}
._1b{width:35.290440px;}
._3c{width:37.154160px;}
._6e{width:38.476800px;}
._5d{width:39.498840px;}
._5b{width:41.061960px;}
._38{width:42.444720px;}
._1d{width:44.067960px;}
._28{width:45.150120px;}
._45{width:46.292400px;}
._67{width:47.675160px;}
._65{width:50.140080px;}
._49{width:51.282360px;}
._2b{width:52.965720px;}
._4f{width:54.784668px;}
._3e{width:55.971720px;}
._57{width:56.978412px;}
._18{width:58.917600px;}
._29{width:60.540840px;}
._60{width:62.464680px;}
._4b{width:64.689120px;}
._55{width:66.793320px;}
._54{width:69.138000px;}
._3f{width:70.460640px;}
._1e{width:71.963640px;}
._1c{width:75.751200px;}
._72{width:77.614920px;}
._64{width:78.697080px;}
._63{width:80.921520px;}
._70{width:82.063800px;}
._47{width:84.168000px;}
._27{width:86.452560px;}
._35{width:88.677000px;}
._5e{width:90.300240px;}
._56{width:91.502640px;}
._25{width:92.644920px;}
._52{width:93.666960px;}
._5c{width:94.929480px;}
._61{width:97.306440px;}
._26{width:98.384160px;}
._19{width:99.558720px;}
._69{width:101.158200px;}
._32{width:102.291960px;}
._2c{width:103.346280px;}
._58{width:106.893360px;}
._4c{width:108.576720px;}
._6f{width:110.380320px;}
._1a{width:111.883320px;}
._62{width:113.025600px;}
._16{width:117.173880px;}
._7e{width:119.245800px;}
._4a{width:120.781080px;}
._4e{width:122.284080px;}
._22{width:123.306120px;}
._40{width:124.628760px;}
._68{width:127.514520px;}
._37{width:128.897280px;}
._71{width:130.460400px;}
._30{width:138.003240px;}
._48{width:140.500440px;}
._80{width:143.303520px;}
._31{width:144.496200px;}
._3b{width:146.299800px;}
._74{width:150.720840px;}
._77{width:151.923240px;}
._39{width:153.005400px;}
._44{width:157.361880px;}
._5f{width:160.640640px;}
._50{width:161.963280px;}
._7c{width:169.117560px;}
._59{width:173.085480px;}
._73{width:174.588480px;}
._7a{width:180.961200px;}
._7b{width:182.464200px;}
._6b{width:187.273800px;}
._33{width:188.383800px;}
._36{width:189.826680px;}
._41{width:206.572320px;}
._2d{width:208.796760px;}
._3d{width:220.788480px;}
._6c{width:223.947000px;}
._78{width:226.231560px;}
._3a{width:230.019120px;}
._75{width:240.720480px;}
._81{width:242.194080px;}
._42{width:243.786600px;}
._34{width:247.421640px;}
._21{width:250.940880px;}
._82{width:254.355228px;}
._6a{width:256.078920px;}
._76{width:257.554080px;}
._5a{width:267.954840px;}
._43{width:282.744360px;}
._53{width:289.117080px;}
._4d{width:299.906400px;}
._66{width:308.776320px;}
._17{width:312.707160px;}
._46{width:321.221160px;}
._6d{width:333.846360px;}
._51{width:343.192800px;}
._2a{width:347.373360px;}
._20{width:594.947520px;}
._7f{width:2189.695560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.420000px;}
.y10e{bottom:7.740000px;}
.yab{bottom:7.830000px;}
.ybd{bottom:7.860000px;}
.ya4{bottom:7.920000px;}
.yc9{bottom:12.330000px;}
.yba{bottom:12.360000px;}
.yc4{bottom:12.420000px;}
.yb2{bottom:20.880000px;}
.yad{bottom:20.970000px;}
.yb1{bottom:25.380000px;}
.y111{bottom:25.410000px;}
.yaa{bottom:25.470000px;}
.ybc{bottom:25.500000px;}
.yc8{bottom:29.880000px;}
.yc3{bottom:29.970000px;}
.yb9{bottom:30.000000px;}
.yac{bottom:38.520000px;}
.ya9{bottom:43.020000px;}
.ybb{bottom:43.050000px;}
.yd5{bottom:43.110000px;}
.yc2{bottom:47.520000px;}
.yb8{bottom:47.550000px;}
.yae{bottom:56.070000px;}
.ya8{bottom:60.570000px;}
.yd1{bottom:60.600000px;}
.yd3{bottom:60.660000px;}
.yc7{bottom:65.070000px;}
.ycb{bottom:65.100000px;}
.yc1{bottom:65.160000px;}
.yb7{bottom:65.190000px;}
.yda{bottom:69.570000px;}
.y2{bottom:73.380000px;}
.yb3{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.ya1{bottom:74.460000px;}
.ya7{bottom:78.210000px;}
.ycf{bottom:82.620000px;}
.yc0{bottom:82.710000px;}
.yb6{bottom:82.740000px;}
.yd9{bottom:87.120000px;}
.yd4{bottom:93.900000px;}
.ya6{bottom:95.760000px;}
.yc6{bottom:100.260000px;}
.yb5{bottom:100.290000px;}
.ybf{bottom:100.350000px;}
.ye1{bottom:100.380000px;}
.y1{bottom:101.640000px;}
.yd8{bottom:104.760000px;}
.yb0{bottom:113.310000px;}
.ydd{bottom:117.810000px;}
.ycd{bottom:117.900000px;}
.y6d{bottom:123.150000px;}
.y18f{bottom:123.420000px;}
.y15d{bottom:132.420000px;}
.y9f{bottom:134.940000px;}
.y29{bottom:139.440000px;}
.y18e{bottom:140.970000px;}
.y133{bottom:141.960000px;}
.yc5{bottom:142.230000px;}
.y15c{bottom:150.150000px;}
.y28{bottom:157.080000px;}
.y18d{bottom:158.520000px;}
.y6c{bottom:158.790000px;}
.y15b{bottom:167.700000px;}
.y9e{bottom:170.580000px;}
.y10c{bottom:172.200000px;}
.y27{bottom:174.630000px;}
.y6b{bottom:176.340000px;}
.y132{bottom:177.600000px;}
.y18c{bottom:183.540000px;}
.ydc{bottom:191.640000px;}
.y26{bottom:192.180000px;}
.y15a{bottom:192.720000px;}
.y6a{bottom:193.980000px;}
.y18b{bottom:201.180000px;}
.y9d{bottom:206.130000px;}
.y10b{bottom:207.840000px;}
.y25{bottom:209.820000px;}
.y159{bottom:210.360000px;}
.y69{bottom:211.530000px;}
.y131{bottom:213.150000px;}
.yd2{bottom:213.690000px;}
.y18a{bottom:218.820000px;}
.y9c{bottom:223.680000px;}
.y24{bottom:227.370000px;}
.y158{bottom:228.000000px;}
.y68{bottom:229.080000px;}
.y130{bottom:230.700000px;}
.y9b{bottom:241.320000px;}
.y10a{bottom:243.390000px;}
.y189{bottom:243.840000px;}
.y23{bottom:245.010000px;}
.y67{bottom:246.720000px;}
.y12f{bottom:248.340000px;}
.y157{bottom:252.930000px;}
.y9a{bottom:258.870000px;}
.y188{bottom:261.480000px;}
.ybe{bottom:261.930000px;}
.y22{bottom:262.560000px;}
.y66{bottom:264.270000px;}
.y12e{bottom:265.890000px;}
.y156{bottom:270.660000px;}
.y99{bottom:276.510000px;}
.y109{bottom:278.940000px;}
.y21{bottom:280.110000px;}
.y65{bottom:281.910000px;}
.y12d{bottom:283.440000px;}
.y187{bottom:286.500000px;}
.y155{bottom:288.210000px;}
.y20{bottom:297.750000px;}
.y64{bottom:299.460000px;}
.y12c{bottom:301.080000px;}
.y98{bottom:303.060000px;}
.y186{bottom:304.140000px;}
.y154{bottom:313.230000px;}
.y108{bottom:314.580000px;}
.y1f{bottom:315.300000px;}
.y63{bottom:317.010000px;}
.y12b{bottom:318.630000px;}
.y185{bottom:321.780000px;}
.ydb{bottom:328.980000px;}
.y153{bottom:330.870000px;}
.y1e{bottom:332.850000px;}
.yd0{bottom:333.480000px;}
.y12a{bottom:336.270000px;}
.y97{bottom:338.610000px;}
.y184{bottom:339.330000px;}
.y62{bottom:343.650000px;}
.y152{bottom:348.510000px;}
.y107{bottom:350.130000px;}
.y1d{bottom:350.490000px;}
.y129{bottom:353.820000px;}
.y96{bottom:356.250000px;}
.y183{bottom:364.350000px;}
.y106{bottom:367.770000px;}
.y128{bottom:371.370000px;}
.y151{bottom:373.440000px;}
.y95{bottom:373.800000px;}
.y1c{bottom:377.400000px;}
.y61{bottom:379.200000px;}
.yb4{bottom:381.720000px;}
.y182{bottom:381.990000px;}
.y105{bottom:385.320000px;}
.y150{bottom:391.170000px;}
.y94{bottom:391.440000px;}
.ye3{bottom:395.250000px;}
.y60{bottom:396.750000px;}
.y127{bottom:398.010000px;}
.y181{bottom:399.540000px;}
.y104{bottom:402.870000px;}
.y14f{bottom:408.720000px;}
.y93{bottom:408.990000px;}
.y5f{bottom:414.390000px;}
.y180{bottom:417.180000px;}
.y103{bottom:420.510000px;}
.y1b{bottom:426.000000px;}
.y92{bottom:426.540000px;}
.y5e{bottom:431.940000px;}
.y126{bottom:433.560000px;}
.y14e{bottom:433.740000px;}
.y17f{bottom:442.200000px;}
.y91{bottom:444.180000px;}
.y102{bottom:447.060000px;}
.yd7{bottom:448.800000px;}
.y50{bottom:449.130000px;}
.y5d{bottom:449.580000px;}
.y125{bottom:451.200000px;}
.y14d{bottom:451.380000px;}
.yce{bottom:453.300000px;}
.y17e{bottom:459.840000px;}
.y90{bottom:461.730000px;}
.y1a{bottom:462.990000px;}
.y4f{bottom:466.770000px;}
.y5c{bottom:467.130000px;}
.y124{bottom:468.750000px;}
.y14c{bottom:476.430000px;}
.y8f{bottom:479.400000px;}
.y19{bottom:480.660000px;}
.y101{bottom:482.730000px;}
.y4e{bottom:484.350000px;}
.y5b{bottom:484.710000px;}
.y17d{bottom:484.890000px;}
.y123{bottom:486.330000px;}
.y14b{bottom:494.070000px;}
.y8e{bottom:496.950000px;}
.y18{bottom:498.210000px;}
.y100{bottom:500.280000px;}
.yaf{bottom:501.540000px;}
.y4d{bottom:501.900000px;}
.y5a{bottom:502.350000px;}
.y17c{bottom:502.530000px;}
.y122{bottom:503.970000px;}
.y8d{bottom:514.500000px;}
.ye2{bottom:515.040000px;}
.y17{bottom:515.760000px;}
.yff{bottom:517.830000px;}
.y14a{bottom:519.090000px;}
.y4c{bottom:519.540000px;}
.y59{bottom:519.900000px;}
.y17b{bottom:520.080000px;}
.y121{bottom:521.520000px;}
.y8c{bottom:532.140000px;}
.y16{bottom:533.400000px;}
.yfe{bottom:535.470000px;}
.y149{bottom:536.730000px;}
.y4b{bottom:537.090000px;}
.y58{bottom:537.540000px;}
.y120{bottom:539.160000px;}
.y17a{bottom:545.100000px;}
.y8b{bottom:549.690000px;}
.y15{bottom:550.950000px;}
.yfd{bottom:553.020000px;}
.y148{bottom:554.370000px;}
.y57{bottom:555.090000px;}
.ycc{bottom:555.450000px;}
.y179{bottom:562.830000px;}
.y4a{bottom:563.730000px;}
.y11f{bottom:566.070000px;}
.y14{bottom:568.590000px;}
.y147{bottom:571.920000px;}
.yd6{bottom:573.000000px;}
.y8a{bottom:576.330000px;}
.y178{bottom:580.380000px;}
.y56{bottom:581.640000px;}
.y13{bottom:586.140000px;}
.yfc{bottom:588.660000px;}
.y146{bottom:596.940000px;}
.y177{bottom:597.930000px;}
.y49{bottom:599.640000px;}
.y12{bottom:603.690000px;}
.yfb{bottom:606.210000px;}
.y89{bottom:611.880000px;}
.y11e{bottom:614.310000px;}
.y145{bottom:614.580000px;}
.y55{bottom:617.280000px;}
.y11{bottom:621.330000px;}
.y176{bottom:622.950000px;}
.y88{bottom:629.430000px;}
.y11d{bottom:631.860000px;}
.y144{bottom:632.220000px;}
.yfa{bottom:632.760000px;}
.ya5{bottom:634.380000px;}
.ye0{bottom:634.740000px;}
.y54{bottom:634.830000px;}
.y175{bottom:640.590000px;}
.y87{bottom:647.070000px;}
.y48{bottom:647.880000px;}
.y10{bottom:648.240000px;}
.y11c{bottom:649.500000px;}
.y143{bottom:649.770000px;}
.y53{bottom:652.470000px;}
.y86{bottom:664.620000px;}
.y47{bottom:665.430000px;}
.y174{bottom:665.610000px;}
.y11b{bottom:667.050000px;}
.yf9{bottom:668.400000px;}
.y52{bottom:670.020000px;}
.y142{bottom:674.790000px;}
.y85{bottom:682.260000px;}
.y46{bottom:683.070000px;}
.y173{bottom:683.340000px;}
.y11a{bottom:684.690000px;}
.yf8{bottom:685.950000px;}
.y141{bottom:692.430000px;}
.yca{bottom:692.790000px;}
.yf{bottom:696.480000px;}
.y84{bottom:699.810000px;}
.y45{bottom:700.620000px;}
.y172{bottom:700.890000px;}
.y51{bottom:702.240000px;}
.yf7{bottom:703.590000px;}
.y140{bottom:710.070000px;}
.y83{bottom:717.360000px;}
.y44{bottom:718.260000px;}
.y119{bottom:719.790000px;}
.yf6{bottom:721.140000px;}
.y171{bottom:725.910000px;}
.ye{bottom:732.030000px;}
.y82{bottom:735.000000px;}
.y43{bottom:735.810000px;}
.y118{bottom:737.430000px;}
.yf5{bottom:738.690000px;}
.y170{bottom:743.550000px;}
.ya3{bottom:749.610000px;}
.y81{bottom:752.550000px;}
.y13f{bottom:752.730000px;}
.y42{bottom:753.360000px;}
.ydf{bottom:754.560000px;}
.yf4{bottom:756.330000px;}
.y16f{bottom:761.190000px;}
.yd{bottom:767.850000px;}
.y80{bottom:770.190000px;}
.y41{bottom:771.000000px;}
.y117{bottom:772.980000px;}
.yf3{bottom:773.880000px;}
.y13e{bottom:777.750000px;}
.y16e{bottom:778.740000px;}
.y7f{bottom:787.740000px;}
.y40{bottom:788.550000px;}
.yf2{bottom:791.520000px;}
.y13d{bottom:795.390000px;}
.ya2{bottom:798.390000px;}
.y116{bottom:799.530000px;}
.y16d{bottom:803.760000px;}
.y7e{bottom:805.290000px;}
.y3f{bottom:806.190000px;}
.yc{bottom:807.630000px;}
.yf1{bottom:809.070000px;}
.y13c{bottom:812.940000px;}
.y16c{bottom:821.400000px;}
.y7d{bottom:822.930000px;}
.y3e{bottom:823.740000px;}
.ya0{bottom:824.940000px;}
.yb{bottom:825.630000px;}
.yf0{bottom:826.620000px;}
.y13b{bottom:830.580000px;}
.y115{bottom:832.560000px;}
.y16b{bottom:838.950000px;}
.y3d{bottom:841.290000px;}
.ya{bottom:843.630000px;}
.yef{bottom:844.260000px;}
.y7c{bottom:849.480000px;}
.y13a{bottom:855.510000px;}
.y16a{bottom:856.590000px;}
.y3c{bottom:858.930000px;}
.y9{bottom:861.630000px;}
.yee{bottom:861.810000px;}
.y139{bottom:873.240000px;}
.y114{bottom:875.940000px;}
.y3b{bottom:876.480000px;}
.y8{bottom:879.630000px;}
.y169{bottom:881.610000px;}
.y7b{bottom:885.030000px;}
.yed{bottom:888.450000px;}
.y138{bottom:890.790000px;}
.y3a{bottom:894.030000px;}
.y7{bottom:897.630000px;}
.y168{bottom:899.250000px;}
.y7a{bottom:902.670000px;}
.y39{bottom:911.670000px;}
.y137{bottom:917.700000px;}
.y113{bottom:919.410000px;}
.y79{bottom:920.220000px;}
.yec{bottom:924.000000px;}
.y167{bottom:924.270000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y78{bottom:937.860000px;}
.yeb{bottom:941.550000px;}
.y166{bottom:941.910000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y77{bottom:955.410000px;}
.yea{bottom:959.190000px;}
.y165{bottom:959.460000px;}
.y112{bottom:962.790000px;}
.y36{bottom:964.410000px;}
.y136{bottom:966.030000px;}
.y76{bottom:972.960000px;}
.y35{bottom:981.960000px;}
.y164{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.y75{bottom:990.600000px;}
.y135{bottom:992.850000px;}
.ye9{bottom:994.740000px;}
.y34{bottom:999.600000px;}
.y163{bottom:1002.210000px;}
.y110{bottom:1006.260000px;}
.y74{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y33{bottom:1017.180000px;}
.y162{bottom:1019.790000px;}
.y73{bottom:1025.820000px;}
.ye8{bottom:1029.960000px;}
.y134{bottom:1030.230000px;}
.y32{bottom:1034.820000px;}
.y161{bottom:1037.340000px;}
.y72{bottom:1043.370000px;}
.ye7{bottom:1047.510000px;}
.y10f{bottom:1049.670000px;}
.y31{bottom:1052.370000px;}
.y71{bottom:1060.920000px;}
.y160{bottom:1062.360000px;}
.ye6{bottom:1065.150000px;}
.y30{bottom:1069.920000px;}
.y70{bottom:1078.560000px;}
.y15f{bottom:1080.000000px;}
.y2f{bottom:1087.560000px;}
.ye5{bottom:1091.700000px;}
.y10d{bottom:1093.140000px;}
.y6f{bottom:1096.110000px;}
.y15e{bottom:1105.020000px;}
.y2e{bottom:1105.110000px;}
.y6e{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.ye4{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h1a{height:25.020000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h1b{height:42.660000px;}
.h1c{height:42.690000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h18{height:57.240000px;}
.ha{height:59.973223px;}
.h1d{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h17{height:96.930000px;}
.h14{height:101.340000px;}
.he{height:114.510000px;}
.h12{height:118.980000px;}
.h10{height:119.010000px;}
.h11{height:119.070000px;}
.h19{height:119.100000px;}
.h15{height:123.480000px;}
.hf{height:132.030000px;}
.h16{height:136.530000px;}
.h13{height:136.620000px;}
.hb{height:893.160000px;}
.hc{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:144.840000px;}
.w6{width:166.440000px;}
.w8{width:201.060000px;}
.w7{width:215.820000px;}
.w9{width:220.440000px;}
.wa{width:238.320000px;}
.wd{width:303.930000px;}
.wc{width:305.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:69.749987px;}
.x5{left:77.759987px;}
.x7{left:82.709987px;}
.xb{left:107.999981px;}
.x13{left:111.419987px;}
.x2{left:202.799987px;}
.x11{left:214.320000px;}
.xd{left:275.880000px;}
.x8{left:292.079987px;}
.x9{left:387.389981px;}
.xe{left:492.510000px;}
.x12{left:520.530000px;}
.xf{left:694.290000px;}
.x4{left:716.639987px;}
.x3{left:792.059987px;}
.x10{left:915.540000px;}
.xa{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls20{letter-spacing:-0.395200pt;}
.ls1f{letter-spacing:-0.301867pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls21{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.033600pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.lsb{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls1d{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls18{letter-spacing:43.063680pt;}
.ls17{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.748800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.723200pt;}
.wsd{word-spacing:-11.700267pt;}
.wsa{word-spacing:-11.645333pt;}
.ws15{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._1{margin-left:-2.982400pt;}
._3{margin-left:-1.990923pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._a{width:2.672000pt;}
._10{width:3.783680pt;}
._4{width:4.702934pt;}
._5{width:6.091732pt;}
._f{width:7.588480pt;}
._8{width:8.497067pt;}
._9{width:9.405214pt;}
._7{width:10.844266pt;}
._13{width:12.718720pt;}
._14{width:13.627200pt;}
._11{width:14.910400pt;}
._12{width:15.865920pt;}
._b{width:17.154133pt;}
._2f{width:18.223361pt;}
._e{width:19.132160pt;}
._2e{width:20.627840pt;}
._6{width:21.696533pt;}
._79{width:22.638081pt;}
._d{width:23.538347pt;}
._c{width:24.582400pt;}
._7d{width:25.811625pt;}
._23{width:26.880320pt;}
._24{width:27.895680pt;}
._1f{width:28.857600pt;}
._15{width:29.819520pt;}
._1b{width:31.369280pt;}
._3c{width:33.025920pt;}
._6e{width:34.201600pt;}
._5d{width:35.110080pt;}
._5b{width:36.499520pt;}
._38{width:37.728640pt;}
._1d{width:39.171520pt;}
._28{width:40.133440pt;}
._45{width:41.148800pt;}
._67{width:42.377920pt;}
._65{width:44.568960pt;}
._49{width:45.584320pt;}
._2b{width:47.080640pt;}
._4f{width:48.697483pt;}
._3e{width:49.752640pt;}
._57{width:50.647477pt;}
._18{width:52.371200pt;}
._29{width:53.814080pt;}
._60{width:55.524160pt;}
._4b{width:57.501440pt;}
._55{width:59.371840pt;}
._54{width:61.456000pt;}
._3f{width:62.631680pt;}
._1e{width:63.967680pt;}
._1c{width:67.334400pt;}
._72{width:68.991040pt;}
._64{width:69.952960pt;}
._63{width:71.930240pt;}
._70{width:72.945600pt;}
._47{width:74.816000pt;}
._27{width:76.846720pt;}
._35{width:78.824000pt;}
._5e{width:80.266880pt;}
._56{width:81.335680pt;}
._25{width:82.351040pt;}
._52{width:83.259520pt;}
._5c{width:84.381760pt;}
._61{width:86.494613pt;}
._26{width:87.452587pt;}
._19{width:88.496640pt;}
._69{width:89.918400pt;}
._32{width:90.926187pt;}
._2c{width:91.863360pt;}
._58{width:95.016320pt;}
._4c{width:96.512640pt;}
._6f{width:98.115840pt;}
._1a{width:99.451840pt;}
._62{width:100.467200pt;}
._16{width:104.154560pt;}
._7e{width:105.996267pt;}
._4a{width:107.360960pt;}
._4e{width:108.696960pt;}
._22{width:109.605440pt;}
._40{width:110.781120pt;}
._68{width:113.346240pt;}
._37{width:114.575360pt;}
._71{width:115.964800pt;}
._30{width:122.669547pt;}
._48{width:124.889280pt;}
._80{width:127.380907pt;}
._31{width:128.441067pt;}
._3b{width:130.044267pt;}
._74{width:133.974080pt;}
._77{width:135.042880pt;}
._39{width:136.004800pt;}
._44{width:139.877227pt;}
._5f{width:142.791680pt;}
._50{width:143.967360pt;}
._7c{width:150.326720pt;}
._59{width:153.853760pt;}
._73{width:155.189760pt;}
._7a{width:160.854400pt;}
._7b{width:162.190400pt;}
._6b{width:166.465600pt;}
._33{width:167.452267pt;}
._36{width:168.734827pt;}
._41{width:183.619840pt;}
._2d{width:185.597120pt;}
._3d{width:196.256427pt;}
._6c{width:199.064000pt;}
._78{width:201.094720pt;}
._3a{width:204.461440pt;}
._75{width:213.973760pt;}
._81{width:215.283627pt;}
._42{width:216.699200pt;}
._34{width:219.930347pt;}
._21{width:223.058560pt;}
._82{width:226.093536pt;}
._6a{width:227.625707pt;}
._76{width:228.936960pt;}
._5a{width:238.182080pt;}
._43{width:251.328320pt;}
._53{width:256.992960pt;}
._4d{width:266.583467pt;}
._66{width:274.467840pt;}
._17{width:277.961920pt;}
._46{width:285.529920pt;}
._6d{width:296.752320pt;}
._51{width:305.060267pt;}
._2a{width:308.776320pt;}
._20{width:528.842240pt;}
._7f{width:1946.396053pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.040000pt;}
.y10e{bottom:6.880000pt;}
.yab{bottom:6.960000pt;}
.ybd{bottom:6.986667pt;}
.ya4{bottom:7.040000pt;}
.yc9{bottom:10.960000pt;}
.yba{bottom:10.986667pt;}
.yc4{bottom:11.040000pt;}
.yb2{bottom:18.560000pt;}
.yad{bottom:18.640000pt;}
.yb1{bottom:22.560000pt;}
.y111{bottom:22.586667pt;}
.yaa{bottom:22.640000pt;}
.ybc{bottom:22.666667pt;}
.yc8{bottom:26.560000pt;}
.yc3{bottom:26.640000pt;}
.yb9{bottom:26.666667pt;}
.yac{bottom:34.240000pt;}
.ya9{bottom:38.240000pt;}
.ybb{bottom:38.266667pt;}
.yd5{bottom:38.320000pt;}
.yc2{bottom:42.240000pt;}
.yb8{bottom:42.266667pt;}
.yae{bottom:49.840000pt;}
.ya8{bottom:53.840000pt;}
.yd1{bottom:53.866667pt;}
.yd3{bottom:53.920000pt;}
.yc7{bottom:57.840000pt;}
.ycb{bottom:57.866667pt;}
.yc1{bottom:57.920000pt;}
.yb7{bottom:57.946667pt;}
.yda{bottom:61.840000pt;}
.y2{bottom:65.226667pt;}
.yb3{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.ya1{bottom:66.186667pt;}
.ya7{bottom:69.520000pt;}
.ycf{bottom:73.440000pt;}
.yc0{bottom:73.520000pt;}
.yb6{bottom:73.546667pt;}
.yd9{bottom:77.440000pt;}
.yd4{bottom:83.466667pt;}
.ya6{bottom:85.120000pt;}
.yc6{bottom:89.120000pt;}
.yb5{bottom:89.146667pt;}
.ybf{bottom:89.200000pt;}
.ye1{bottom:89.226667pt;}
.y1{bottom:90.346667pt;}
.yd8{bottom:93.120000pt;}
.yb0{bottom:100.720000pt;}
.ydd{bottom:104.720000pt;}
.ycd{bottom:104.800000pt;}
.y6d{bottom:109.466667pt;}
.y18f{bottom:109.706667pt;}
.y15d{bottom:117.706667pt;}
.y9f{bottom:119.946667pt;}
.y29{bottom:123.946667pt;}
.y18e{bottom:125.306667pt;}
.y133{bottom:126.186667pt;}
.yc5{bottom:126.426667pt;}
.y15c{bottom:133.466667pt;}
.y28{bottom:139.626667pt;}
.y18d{bottom:140.906667pt;}
.y6c{bottom:141.146667pt;}
.y15b{bottom:149.066667pt;}
.y9e{bottom:151.626667pt;}
.y10c{bottom:153.066667pt;}
.y27{bottom:155.226667pt;}
.y6b{bottom:156.746667pt;}
.y132{bottom:157.866667pt;}
.y18c{bottom:163.146667pt;}
.ydc{bottom:170.346667pt;}
.y26{bottom:170.826667pt;}
.y15a{bottom:171.306667pt;}
.y6a{bottom:172.426667pt;}
.y18b{bottom:178.826667pt;}
.y9d{bottom:183.226667pt;}
.y10b{bottom:184.746667pt;}
.y25{bottom:186.506667pt;}
.y159{bottom:186.986667pt;}
.y69{bottom:188.026667pt;}
.y131{bottom:189.466667pt;}
.yd2{bottom:189.946667pt;}
.y18a{bottom:194.506667pt;}
.y9c{bottom:198.826667pt;}
.y24{bottom:202.106667pt;}
.y158{bottom:202.666667pt;}
.y68{bottom:203.626667pt;}
.y130{bottom:205.066667pt;}
.y9b{bottom:214.506667pt;}
.y10a{bottom:216.346667pt;}
.y189{bottom:216.746667pt;}
.y23{bottom:217.786667pt;}
.y67{bottom:219.306667pt;}
.y12f{bottom:220.746667pt;}
.y157{bottom:224.826667pt;}
.y9a{bottom:230.106667pt;}
.y188{bottom:232.426667pt;}
.ybe{bottom:232.826667pt;}
.y22{bottom:233.386667pt;}
.y66{bottom:234.906667pt;}
.y12e{bottom:236.346667pt;}
.y156{bottom:240.586667pt;}
.y99{bottom:245.786667pt;}
.y109{bottom:247.946667pt;}
.y21{bottom:248.986667pt;}
.y65{bottom:250.586667pt;}
.y12d{bottom:251.946667pt;}
.y187{bottom:254.666667pt;}
.y155{bottom:256.186667pt;}
.y20{bottom:264.666667pt;}
.y64{bottom:266.186667pt;}
.y12c{bottom:267.626667pt;}
.y98{bottom:269.386667pt;}
.y186{bottom:270.346667pt;}
.y154{bottom:278.426667pt;}
.y108{bottom:279.626667pt;}
.y1f{bottom:280.266667pt;}
.y63{bottom:281.786667pt;}
.y12b{bottom:283.226667pt;}
.y185{bottom:286.026667pt;}
.ydb{bottom:292.426667pt;}
.y153{bottom:294.106667pt;}
.y1e{bottom:295.866667pt;}
.yd0{bottom:296.426667pt;}
.y12a{bottom:298.906667pt;}
.y97{bottom:300.986667pt;}
.y184{bottom:301.626667pt;}
.y62{bottom:305.466667pt;}
.y152{bottom:309.786667pt;}
.y107{bottom:311.226667pt;}
.y1d{bottom:311.546667pt;}
.y129{bottom:314.506667pt;}
.y96{bottom:316.666667pt;}
.y183{bottom:323.866667pt;}
.y106{bottom:326.906667pt;}
.y128{bottom:330.106667pt;}
.y151{bottom:331.946667pt;}
.y95{bottom:332.266667pt;}
.y1c{bottom:335.466667pt;}
.y61{bottom:337.066667pt;}
.yb4{bottom:339.306667pt;}
.y182{bottom:339.546667pt;}
.y105{bottom:342.506667pt;}
.y150{bottom:347.706667pt;}
.y94{bottom:347.946667pt;}
.ye3{bottom:351.333333pt;}
.y60{bottom:352.666667pt;}
.y127{bottom:353.786667pt;}
.y181{bottom:355.146667pt;}
.y104{bottom:358.106667pt;}
.y14f{bottom:363.306667pt;}
.y93{bottom:363.546667pt;}
.y5f{bottom:368.346667pt;}
.y180{bottom:370.826667pt;}
.y103{bottom:373.786667pt;}
.y1b{bottom:378.666667pt;}
.y92{bottom:379.146667pt;}
.y5e{bottom:383.946667pt;}
.y126{bottom:385.386667pt;}
.y14e{bottom:385.546667pt;}
.y17f{bottom:393.066667pt;}
.y91{bottom:394.826667pt;}
.y102{bottom:397.386667pt;}
.yd7{bottom:398.933333pt;}
.y50{bottom:399.226667pt;}
.y5d{bottom:399.626667pt;}
.y125{bottom:401.066667pt;}
.y14d{bottom:401.226667pt;}
.yce{bottom:402.933333pt;}
.y17e{bottom:408.746667pt;}
.y90{bottom:410.426667pt;}
.y1a{bottom:411.546667pt;}
.y4f{bottom:414.906667pt;}
.y5c{bottom:415.226667pt;}
.y124{bottom:416.666667pt;}
.y14c{bottom:423.493333pt;}
.y8f{bottom:426.133333pt;}
.y19{bottom:427.253333pt;}
.y101{bottom:429.093333pt;}
.y4e{bottom:430.533333pt;}
.y5b{bottom:430.853333pt;}
.y17d{bottom:431.013333pt;}
.y123{bottom:432.293333pt;}
.y14b{bottom:439.173333pt;}
.y8e{bottom:441.733333pt;}
.y18{bottom:442.853333pt;}
.y100{bottom:444.693333pt;}
.yaf{bottom:445.813333pt;}
.y4d{bottom:446.133333pt;}
.y5a{bottom:446.533333pt;}
.y17c{bottom:446.693333pt;}
.y122{bottom:447.973333pt;}
.y8d{bottom:457.333333pt;}
.ye2{bottom:457.813333pt;}
.y17{bottom:458.453333pt;}
.yff{bottom:460.293333pt;}
.y14a{bottom:461.413333pt;}
.y4c{bottom:461.813333pt;}
.y59{bottom:462.133333pt;}
.y17b{bottom:462.293333pt;}
.y121{bottom:463.573333pt;}
.y8c{bottom:473.013333pt;}
.y16{bottom:474.133333pt;}
.yfe{bottom:475.973333pt;}
.y149{bottom:477.093333pt;}
.y4b{bottom:477.413333pt;}
.y58{bottom:477.813333pt;}
.y120{bottom:479.253333pt;}
.y17a{bottom:484.533333pt;}
.y8b{bottom:488.613333pt;}
.y15{bottom:489.733333pt;}
.yfd{bottom:491.573333pt;}
.y148{bottom:492.773333pt;}
.y57{bottom:493.413333pt;}
.ycc{bottom:493.733333pt;}
.y179{bottom:500.293333pt;}
.y4a{bottom:501.093333pt;}
.y11f{bottom:503.173333pt;}
.y14{bottom:505.413333pt;}
.y147{bottom:508.373333pt;}
.yd6{bottom:509.333333pt;}
.y8a{bottom:512.293333pt;}
.y178{bottom:515.893333pt;}
.y56{bottom:517.013333pt;}
.y13{bottom:521.013333pt;}
.yfc{bottom:523.253333pt;}
.y146{bottom:530.613333pt;}
.y177{bottom:531.493333pt;}
.y49{bottom:533.013333pt;}
.y12{bottom:536.613333pt;}
.yfb{bottom:538.853333pt;}
.y89{bottom:543.893333pt;}
.y11e{bottom:546.053333pt;}
.y145{bottom:546.293333pt;}
.y55{bottom:548.693333pt;}
.y11{bottom:552.293333pt;}
.y176{bottom:553.733333pt;}
.y88{bottom:559.493333pt;}
.y11d{bottom:561.653333pt;}
.y144{bottom:561.973333pt;}
.yfa{bottom:562.453333pt;}
.ya5{bottom:563.893333pt;}
.ye0{bottom:564.213333pt;}
.y54{bottom:564.293333pt;}
.y175{bottom:569.413333pt;}
.y87{bottom:575.173333pt;}
.y48{bottom:575.893333pt;}
.y10{bottom:576.213333pt;}
.y11c{bottom:577.333333pt;}
.y143{bottom:577.573333pt;}
.y53{bottom:579.973333pt;}
.y86{bottom:590.773333pt;}
.y47{bottom:591.493333pt;}
.y174{bottom:591.653333pt;}
.y11b{bottom:592.933333pt;}
.yf9{bottom:594.133333pt;}
.y52{bottom:595.573333pt;}
.y142{bottom:599.813333pt;}
.y85{bottom:606.453333pt;}
.y46{bottom:607.173333pt;}
.y173{bottom:607.413333pt;}
.y11a{bottom:608.613333pt;}
.yf8{bottom:609.733333pt;}
.y141{bottom:615.493333pt;}
.yca{bottom:615.813333pt;}
.yf{bottom:619.093333pt;}
.y84{bottom:622.053333pt;}
.y45{bottom:622.773333pt;}
.y172{bottom:623.013333pt;}
.y51{bottom:624.213333pt;}
.yf7{bottom:625.413333pt;}
.y140{bottom:631.173333pt;}
.y83{bottom:637.653333pt;}
.y44{bottom:638.453333pt;}
.y119{bottom:639.813333pt;}
.yf6{bottom:641.013333pt;}
.y171{bottom:645.253333pt;}
.ye{bottom:650.693333pt;}
.y82{bottom:653.333333pt;}
.y43{bottom:654.053333pt;}
.y118{bottom:655.493333pt;}
.yf5{bottom:656.613333pt;}
.y170{bottom:660.933333pt;}
.ya3{bottom:666.320000pt;}
.y81{bottom:668.933333pt;}
.y13f{bottom:669.093333pt;}
.y42{bottom:669.653333pt;}
.ydf{bottom:670.720000pt;}
.yf4{bottom:672.293333pt;}
.y16f{bottom:676.613333pt;}
.yd{bottom:682.533333pt;}
.y80{bottom:684.613333pt;}
.y41{bottom:685.333333pt;}
.y117{bottom:687.093333pt;}
.yf3{bottom:687.893333pt;}
.y13e{bottom:691.333333pt;}
.y16e{bottom:692.213333pt;}
.y7f{bottom:700.213333pt;}
.y40{bottom:700.933333pt;}
.yf2{bottom:703.573333pt;}
.y13d{bottom:707.013333pt;}
.ya2{bottom:709.680000pt;}
.y116{bottom:710.693333pt;}
.y16d{bottom:714.453333pt;}
.y7e{bottom:715.813333pt;}
.y3f{bottom:716.613333pt;}
.yc{bottom:717.893333pt;}
.yf1{bottom:719.173333pt;}
.y13c{bottom:722.613333pt;}
.y16c{bottom:730.133333pt;}
.y7d{bottom:731.493333pt;}
.y3e{bottom:732.213333pt;}
.ya0{bottom:733.280000pt;}
.yb{bottom:733.893333pt;}
.yf0{bottom:734.773333pt;}
.y13b{bottom:738.293333pt;}
.y115{bottom:740.053333pt;}
.y16b{bottom:745.733333pt;}
.y3d{bottom:747.813333pt;}
.ya{bottom:749.893333pt;}
.yef{bottom:750.453333pt;}
.y7c{bottom:755.093333pt;}
.y13a{bottom:760.453333pt;}
.y16a{bottom:761.413333pt;}
.y3c{bottom:763.493333pt;}
.y9{bottom:765.893333pt;}
.yee{bottom:766.053333pt;}
.y139{bottom:776.213333pt;}
.y114{bottom:778.613333pt;}
.y3b{bottom:779.093333pt;}
.y8{bottom:781.893333pt;}
.y169{bottom:783.653333pt;}
.y7b{bottom:786.693333pt;}
.yed{bottom:789.733333pt;}
.y138{bottom:791.813333pt;}
.y3a{bottom:794.693333pt;}
.y7{bottom:797.893333pt;}
.y168{bottom:799.333333pt;}
.y7a{bottom:802.373333pt;}
.y39{bottom:810.373333pt;}
.y137{bottom:815.733333pt;}
.y113{bottom:817.253333pt;}
.y79{bottom:817.973333pt;}
.yec{bottom:821.333333pt;}
.y167{bottom:821.573333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y78{bottom:833.653333pt;}
.yeb{bottom:836.933333pt;}
.y166{bottom:837.253333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y77{bottom:849.253333pt;}
.yea{bottom:852.613333pt;}
.y165{bottom:852.853333pt;}
.y112{bottom:855.813333pt;}
.y36{bottom:857.253333pt;}
.y136{bottom:858.693333pt;}
.y76{bottom:864.853333pt;}
.y35{bottom:872.853333pt;}
.y164{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.y75{bottom:880.533333pt;}
.y135{bottom:882.533333pt;}
.ye9{bottom:884.213333pt;}
.y34{bottom:888.533333pt;}
.y163{bottom:890.853333pt;}
.y110{bottom:894.453333pt;}
.y74{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y33{bottom:904.160000pt;}
.y162{bottom:906.480000pt;}
.y73{bottom:911.840000pt;}
.ye8{bottom:915.520000pt;}
.y134{bottom:915.760000pt;}
.y32{bottom:919.840000pt;}
.y161{bottom:922.080000pt;}
.y72{bottom:927.440000pt;}
.ye7{bottom:931.120000pt;}
.y10f{bottom:933.040000pt;}
.y31{bottom:935.440000pt;}
.y71{bottom:943.040000pt;}
.y160{bottom:944.320000pt;}
.ye6{bottom:946.800000pt;}
.y30{bottom:951.040000pt;}
.y70{bottom:958.720000pt;}
.y15f{bottom:960.000000pt;}
.y2f{bottom:966.720000pt;}
.ye5{bottom:970.400000pt;}
.y10d{bottom:971.680000pt;}
.y6f{bottom:974.320000pt;}
.y15e{bottom:982.240000pt;}
.y2e{bottom:982.320000pt;}
.y6e{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.ye4{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h1a{height:22.240000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h1b{height:37.920000pt;}
.h1c{height:37.946667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h18{height:50.880000pt;}
.ha{height:53.309531pt;}
.h1d{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h17{height:86.160000pt;}
.h14{height:90.080000pt;}
.he{height:101.786667pt;}
.h12{height:105.760000pt;}
.h10{height:105.786667pt;}
.h11{height:105.840000pt;}
.h19{height:105.866667pt;}
.h15{height:109.760000pt;}
.hf{height:117.360000pt;}
.h16{height:121.360000pt;}
.h13{height:121.440000pt;}
.hb{height:793.920000pt;}
.hc{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:128.746667pt;}
.w6{width:147.946667pt;}
.w8{width:178.720000pt;}
.w7{width:191.840000pt;}
.w9{width:195.946667pt;}
.wa{width:211.840000pt;}
.wd{width:270.160000pt;}
.wc{width:271.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:61.999988pt;}
.x5{left:69.119988pt;}
.x7{left:73.519988pt;}
.xb{left:95.999983pt;}
.x13{left:99.039988pt;}
.x2{left:180.266655pt;}
.x11{left:190.506667pt;}
.xd{left:245.226667pt;}
.x8{left:259.626655pt;}
.x9{left:344.346650pt;}
.xe{left:437.786667pt;}
.x12{left:462.693333pt;}
.xf{left:617.146667pt;}
.x4{left:637.013322pt;}
.x3{left:704.053322pt;}
.x10{left:813.813333pt;}
.xa{left:996.773317pt;}
}




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