
    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_bdf2c186984bf293b5997310.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f0ac12d26d463ae7700c57c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7b0395b188f8b11c31a7630.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_1f7aa3975a60ed043fd43465.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_bbe6da984b8d1b9d3a9d2001.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4fdf47fe6ceb5c7d51889725.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f2d77081f238327081c59b86.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_12a0da07ce08a580f88564db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_029a3e6fdbc0c3bf83d2c49b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ba6aa1fa15f89219fcb63794.woff2')format("woff");}.fff{font-family:fff;line-height:0.940430;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;}
.ls4{letter-spacing:-1.842000px;}
.ls13{letter-spacing:-0.936000px;}
.ls30{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.466800px;}
.ls8{letter-spacing:-0.423600px;}
.ls3{letter-spacing:-0.403200px;}
.ls6{letter-spacing:-0.382800px;}
.ls7{letter-spacing:-0.368400px;}
.ls35{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.250800px;}
.ls12{letter-spacing:-0.219000px;}
.ls34{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.129600px;}
.ls26{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.213120px;}
.ls2f{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.345600px;}
.ls9{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.152000px;}
.lsb{letter-spacing:1.584000px;}
.ls15{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.376000px;}
.ls2a{letter-spacing:2.592000px;}
.ls16{letter-spacing:2.628000px;}
.ls21{letter-spacing:2.880000px;}
.ls2e{letter-spacing:3.024000px;}
.ls37{letter-spacing:3.168000px;}
.ls29{letter-spacing:3.600000px;}
.ls36{letter-spacing:3.672000px;}
.lse{letter-spacing:3.960000px;}
.ls27{letter-spacing:4.176000px;}
.ls1f{letter-spacing:4.320000px;}
.ls28{letter-spacing:4.608000px;}
.ls2d{letter-spacing:4.824000px;}
.ls10{letter-spacing:5.040000px;}
.ls1d{letter-spacing:6.480000px;}
.ls24{letter-spacing:7.920000px;}
.ls1c{letter-spacing:9.360000px;}
.ls1b{letter-spacing:10.800000px;}
.ls1a{letter-spacing:12.240000px;}
.ls1e{letter-spacing:13.680000px;}
.ls2b{letter-spacing:15.120000px;}
.ls23{letter-spacing:19.440000px;}
.ls3a{letter-spacing:22.320000px;}
.ls3b{letter-spacing:23.760000px;}
.ls39{letter-spacing:25.200000px;}
.ls22{letter-spacing:26.640000px;}
.ls38{letter-spacing:30.960000px;}
.ls20{letter-spacing:39.600000px;}
.lsa{letter-spacing:41.904000px;}
.ls33{letter-spacing:45.360000px;}
.ls31{letter-spacing:46.800000px;}
.ls32{letter-spacing:49.680000px;}
.ls19{letter-spacing:52.318560px;}
.ls18{letter-spacing:56.638560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-60.480000px;}
.ws14{word-spacing:-22.824000px;}
.ws11{word-spacing:-22.608000px;}
.ws19{word-spacing:-22.320000px;}
.ws10{word-spacing:-22.176000px;}
.ws1c{word-spacing:-21.672000px;}
.ws1d{word-spacing:-21.168000px;}
.ws16{word-spacing:-21.024000px;}
.ws15{word-spacing:-20.880000px;}
.ws12{word-spacing:-20.592000px;}
.ws13{word-spacing:-20.376000px;}
.ws17{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.352000px;}
.wsb{word-spacing:-16.920000px;}
.wsc{word-spacing:-15.140160px;}
.wsf{word-spacing:-15.099840px;}
.wse{word-spacing:-14.653200px;}
.ws4{word-spacing:-13.668480px;}
.ws2{word-spacing:-13.538880px;}
.ws5{word-spacing:-13.244880px;}
.ws0{word-spacing:-12.614400px;}
.ws8{word-spacing:-12.600000px;}
.ws3{word-spacing:-11.983920px;}
.wsa{word-spacing:-11.661000px;}
.ws9{word-spacing:-11.629200px;}
.ws1{word-spacing:-11.175600px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-5.846400px;}
._e{margin-left:-4.387200px;}
._a{margin-left:-3.028800px;}
._2{margin-left:-2.011200px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._5{width:3.379200px;}
._7{width:5.256000px;}
._13{width:6.408000px;}
._9{width:7.776000px;}
._8{width:8.779200px;}
._f{width:9.962400px;}
._b{width:11.196000px;}
._d{width:12.667200px;}
._c{width:14.184000px;}
._1e{width:15.192000px;}
._18{width:16.267200px;}
._22{width:19.000800px;}
._6{width:20.078400px;}
._1f{width:21.331200px;}
._15{width:22.819200px;}
._14{width:23.832000px;}
._17{width:25.416000px;}
._16{width:27.211200px;}
._20{width:28.572000px;}
._1a{width:30.297600px;}
._11{width:31.617600px;}
._10{width:33.115200px;}
._19{width:34.228800px;}
._27{width:36.266400px;}
._26{width:37.516800px;}
._28{width:39.796800px;}
._29{width:41.028000px;}
._25{width:42.343200px;}
._1c{width:44.635200px;}
._1b{width:46.296000px;}
._1d{width:47.438400px;}
._21{width:49.056480px;}
._24{width:57.475200px;}
._23{width:59.003520px;}
._2a{width:204.979200px;}
._2b{width:206.188800px;}
._4{width:951.293280px;}
._3{width:1478.585280px;}
.fca{color:rgb(9,80,127);}
.fc9{color:rgb(0,128,128);}
.fcb{color:rgb(31,41,76);}
.fc7{color:rgb(33,37,41);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(51,51,51);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(119,119,119);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:36.000000px;}
.fs4{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:57.600000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:2.520000px;}
.y7f{bottom:2.880000px;}
.yab{bottom:3.240000px;}
.y7e{bottom:16.560000px;}
.y7d{bottom:30.240000px;}
.y7c{bottom:44.280000px;}
.y9{bottom:57.240000px;}
.y8b{bottom:57.960000px;}
.y7b{bottom:58.005000px;}
.y8a{bottom:71.640000px;}
.y89{bottom:85.725000px;}
.y88{bottom:99.405000px;}
.y161{bottom:115.236000px;}
.ya9{bottom:119.196000px;}
.y77{bottom:122.436000px;}
.y62{bottom:123.876000px;}
.yd4{bottom:126.756000px;}
.yff{bottom:128.916000px;}
.y160{bottom:137.196000px;}
.y76{bottom:139.716000px;}
.y13d{bottom:144.036000px;}
.y61{bottom:144.396000px;}
.yd3{bottom:144.756000px;}
.y30{bottom:147.996000px;}
.yfe{bottom:149.436000px;}
.y6b{bottom:151.230000px;}
.y75{bottom:157.710000px;}
.y15f{bottom:159.150000px;}
.ya8{bottom:160.590000px;}
.y13c{bottom:164.910000px;}
.y60{bottom:165.270000px;}
.yd2{bottom:165.630000px;}
.y2f{bottom:168.510000px;}
.yfd{bottom:170.310000px;}
.y11e{bottom:171.030000px;}
.y6a{bottom:172.110000px;}
.y74{bottom:178.590000px;}
.ya7{bottom:181.110000px;}
.y13b{bottom:185.430000px;}
.y5f{bottom:185.790000px;}
.yd1{bottom:186.150000px;}
.y2e{bottom:189.390000px;}
.yfc{bottom:190.830000px;}
.y11d{bottom:191.190000px;}
.y69{bottom:192.630000px;}
.y73{bottom:199.155000px;}
.ya6{bottom:202.035000px;}
.y13a{bottom:206.355000px;}
.y5e{bottom:206.715000px;}
.yd0{bottom:207.075000px;}
.y15e{bottom:208.155000px;}
.y11c{bottom:209.595000px;}
.y2d{bottom:209.955000px;}
.yfb{bottom:211.755000px;}
.y68{bottom:213.555000px;}
.y72{bottom:220.035000px;}
.ya5{bottom:222.555000px;}
.y139{bottom:226.875000px;}
.y5d{bottom:227.235000px;}
.ycf{bottom:227.595000px;}
.y11b{bottom:230.115000px;}
.y2c{bottom:230.835000px;}
.yfa{bottom:232.275000px;}
.y67{bottom:234.075000px;}
.y71{bottom:240.555000px;}
.ya4{bottom:243.435000px;}
.y138{bottom:247.755000px;}
.y5c{bottom:248.115000px;}
.y11a{bottom:250.995000px;}
.y2b{bottom:251.355000px;}
.y15d{bottom:252.075000px;}
.yf9{bottom:253.155000px;}
.y66{bottom:254.955000px;}
.y70{bottom:261.435000px;}
.ya3{bottom:263.955000px;}
.y137{bottom:268.275000px;}
.y5b{bottom:268.635000px;}
.yce{bottom:268.995000px;}
.y119{bottom:271.515000px;}
.y2a{bottom:272.235000px;}
.yf8{bottom:273.675000px;}
.y15c{bottom:274.035000px;}
.y65{bottom:275.475000px;}
.y6f{bottom:281.955000px;}
.ya2{bottom:284.835000px;}
.ycd{bottom:289.155000px;}
.y5a{bottom:289.515000px;}
.y118{bottom:292.395000px;}
.y29{bottom:292.755000px;}
.y64{bottom:295.275000px;}
.y15b{bottom:299.595000px;}
.y6e{bottom:302.835000px;}
.ya1{bottom:305.355000px;}
.ycc{bottom:307.515000px;}
.y136{bottom:309.675000px;}
.y59{bottom:310.035000px;}
.y117{bottom:312.915000px;}
.y28{bottom:313.635000px;}
.yf7{bottom:315.075000px;}
.y15a{bottom:320.475000px;}
.y6d{bottom:321.555000px;}
.ya0{bottom:326.265000px;}
.ycb{bottom:328.065000px;}
.y135{bottom:330.585000px;}
.y58{bottom:330.945000px;}
.y63{bottom:333.465000px;}
.y116{bottom:333.825000px;}
.y27{bottom:334.185000px;}
.yf6{bottom:336.345000px;}
.y159{bottom:341.025000px;}
.y9f{bottom:346.785000px;}
.yca{bottom:348.945000px;}
.y134{bottom:351.105000px;}
.y57{bottom:351.465000px;}
.y115{bottom:354.345000px;}
.y26{bottom:355.065000px;}
.yf5{bottom:356.865000px;}
.y158{bottom:361.905000px;}
.y9e{bottom:367.665000px;}
.y133{bottom:371.985000px;}
.y56{bottom:372.345000px;}
.y114{bottom:375.225000px;}
.y25{bottom:375.585000px;}
.yf4{bottom:377.745000px;}
.y157{bottom:382.425000px;}
.y9d{bottom:388.185000px;}
.yc9{bottom:389.985000px;}
.y132{bottom:392.505000px;}
.y55{bottom:392.865000px;}
.y113{bottom:395.745000px;}
.y24{bottom:396.465000px;}
.yf3{bottom:398.265000px;}
.y156{bottom:403.305000px;}
.y9c{bottom:409.065000px;}
.yc8{bottom:411.225000px;}
.y131{bottom:413.385000px;}
.y54{bottom:413.745000px;}
.y112{bottom:416.625000px;}
.y23{bottom:416.985000px;}
.yf2{bottom:419.145000px;}
.y155{bottom:423.825000px;}
.y9b{bottom:429.585000px;}
.y6c{bottom:431.745000px;}
.y130{bottom:433.905000px;}
.y53{bottom:434.265000px;}
.y111{bottom:437.145000px;}
.y22{bottom:437.865000px;}
.yf1{bottom:439.665000px;}
.y154{bottom:444.705000px;}
.y9a{bottom:450.510000px;}
.y12f{bottom:454.830000px;}
.y52{bottom:455.190000px;}
.y110{bottom:458.070000px;}
.y21{bottom:458.430000px;}
.yf0{bottom:460.590000px;}
.y153{bottom:465.270000px;}
.y99{bottom:471.030000px;}
.yc7{bottom:473.190000px;}
.y12e{bottom:475.350000px;}
.y51{bottom:475.710000px;}
.y10f{bottom:478.590000px;}
.y20{bottom:479.310000px;}
.yef{bottom:481.110000px;}
.y152{bottom:486.150000px;}
.y98{bottom:491.910000px;}
.yc6{bottom:494.430000px;}
.y12d{bottom:496.230000px;}
.y50{bottom:496.590000px;}
.y10e{bottom:499.470000px;}
.y1f{bottom:499.830000px;}
.y151{bottom:506.670000px;}
.y97{bottom:512.430000px;}
.yc5{bottom:514.950000px;}
.y12c{bottom:516.750000px;}
.y4f{bottom:517.110000px;}
.y10d{bottom:519.990000px;}
.y1e{bottom:520.710000px;}
.yee{bottom:522.510000px;}
.y150{bottom:527.550000px;}
.y96{bottom:533.310000px;}
.yc4{bottom:535.830000px;}
.y12b{bottom:537.630000px;}
.y4e{bottom:537.990000px;}
.y10c{bottom:540.870000px;}
.y1d{bottom:541.230000px;}
.yed{bottom:543.390000px;}
.y14f{bottom:548.070000px;}
.y95{bottom:553.830000px;}
.yc3{bottom:556.350000px;}
.y12a{bottom:558.150000px;}
.y4d{bottom:558.510000px;}
.y10b{bottom:561.390000px;}
.y1c{bottom:562.110000px;}
.yec{bottom:564.270000px;}
.y14e{bottom:568.950000px;}
.y94{bottom:574.350000px;}
.yc2{bottom:577.260000px;}
.y129{bottom:579.060000px;}
.y4c{bottom:579.420000px;}
.y10a{bottom:582.300000px;}
.y1b{bottom:582.660000px;}
.yeb{bottom:584.820000px;}
.y14d{bottom:589.500000px;}
.y93{bottom:595.260000px;}
.yc1{bottom:597.780000px;}
.y177{bottom:599.220000px;}
.y128{bottom:599.580000px;}
.y4b{bottom:599.940000px;}
.y109{bottom:602.820000px;}
.y1a{bottom:603.540000px;}
.yea{bottom:605.700000px;}
.y14c{bottom:610.380000px;}
.y92{bottom:615.780000px;}
.yc0{bottom:618.660000px;}
.y127{bottom:620.460000px;}
.y4a{bottom:620.820000px;}
.y108{bottom:623.700000px;}
.y19{bottom:624.060000px;}
.ye9{bottom:626.220000px;}
.y14b{bottom:630.900000px;}
.y91{bottom:636.660000px;}
.ybf{bottom:639.180000px;}
.y126{bottom:640.980000px;}
.y49{bottom:641.340000px;}
.y176{bottom:642.780000px;}
.y107{bottom:644.220000px;}
.y18{bottom:644.580000px;}
.ye8{bottom:647.100000px;}
.y14a{bottom:651.780000px;}
.y90{bottom:657.180000px;}
.y125{bottom:661.860000px;}
.y48{bottom:662.220000px;}
.ye7{bottom:667.620000px;}
.y175{bottom:669.780000px;}
.y17{bottom:670.500000px;}
.y149{bottom:672.300000px;}
.y8f{bottom:678.060000px;}
.ybe{bottom:680.580000px;}
.y124{bottom:682.380000px;}
.y47{bottom:682.740000px;}
.y106{bottom:685.620000px;}
.ye6{bottom:688.500000px;}
.y16{bottom:691.020000px;}
.y148{bottom:693.180000px;}
.y174{bottom:696.420000px;}
.y8e{bottom:698.580000px;}
.ybd{bottom:701.850000px;}
.y123{bottom:703.290000px;}
.y46{bottom:703.650000px;}
.y105{bottom:705.810000px;}
.ye5{bottom:709.050000px;}
.y15{bottom:711.570000px;}
.y147{bottom:713.730000px;}
.y173{bottom:718.410000px;}
.y8d{bottom:719.490000px;}
.ybc{bottom:722.370000px;}
.y104{bottom:723.810000px;}
.y45{bottom:724.170000px;}
.y14{bottom:732.090000px;}
.y146{bottom:734.610000px;}
.y8c{bottom:738.570000px;}
.y172{bottom:740.370000px;}
.ybb{bottom:743.250000px;}
.y103{bottom:744.690000px;}
.y44{bottom:745.050000px;}
.y87{bottom:750.450000px;}
.y145{bottom:755.130000px;}
.y13{bottom:756.930000px;}
.y171{bottom:762.330000px;}
.yba{bottom:763.770000px;}
.y102{bottom:765.210000px;}
.y43{bottom:765.570000px;}
.ye4{bottom:771.690000px;}
.y12{bottom:775.290000px;}
.y144{bottom:776.010000px;}
.y170{bottom:784.290000px;}
.yb9{bottom:784.650000px;}
.y101{bottom:786.090000px;}
.y42{bottom:786.450000px;}
.ye3{bottom:792.210000px;}
.y11{bottom:795.090000px;}
.y143{bottom:796.530000px;}
.yb8{bottom:805.170000px;}
.y122{bottom:806.610000px;}
.y41{bottom:806.970000px;}
.y16f{bottom:810.930000px;}
.y10{bottom:812.730000px;}
.ye2{bottom:813.090000px;}
.y142{bottom:817.410000px;}
.yb7{bottom:826.050000px;}
.y100{bottom:827.535000px;}
.y40{bottom:827.895000px;}
.yf{bottom:830.415000px;}
.y16e{bottom:832.935000px;}
.ye1{bottom:833.655000px;}
.y141{bottom:837.975000px;}
.ye{bottom:847.695000px;}
.y121{bottom:848.055000px;}
.y3f{bottom:848.415000px;}
.ye0{bottom:854.535000px;}
.y140{bottom:858.855000px;}
.y16d{bottom:859.935000px;}
.y86{bottom:861.735000px;}
.yd{bottom:864.975000px;}
.yb6{bottom:867.135000px;}
.y120{bottom:868.935000px;}
.y3e{bottom:869.295000px;}
.y13f{bottom:879.375000px;}
.y85{bottom:880.455000px;}
.y16c{bottom:881.895000px;}
.yc{bottom:882.255000px;}
.y3d{bottom:889.815000px;}
.ydf{bottom:895.935000px;}
.y13e{bottom:897.735000px;}
.yb{bottom:900.255000px;}
.y84{bottom:901.335000px;}
.y16b{bottom:908.535000px;}
.y11f{bottom:910.335000px;}
.y3c{bottom:910.695000px;}
.yb5{bottom:911.775000px;}
.yde{bottom:916.095000px;}
.ya{bottom:921.135000px;}
.y83{bottom:921.855000px;}
.y16a{bottom:930.495000px;}
.y3b{bottom:931.215000px;}
.yb4{bottom:932.655000px;}
.ydd{bottom:934.095000px;}
.y8{bottom:941.295000px;}
.y82{bottom:942.375000px;}
.y3a{bottom:952.095000px;}
.y169{bottom:952.485000px;}
.yb3{bottom:953.205000px;}
.y7{bottom:954.285000px;}
.ydc{bottom:954.645000px;}
.y81{bottom:961.845000px;}
.y39{bottom:972.645000px;}
.y80{bottom:973.725000px;}
.y168{bottom:974.445000px;}
.ydb{bottom:975.525000px;}
.y38{bottom:993.525000px;}
.yb2{bottom:996.045000px;}
.y6{bottom:1000.725000px;}
.y167{bottom:1001.085000px;}
.yb1{bottom:1008.285000px;}
.y37{bottom:1014.045000px;}
.yda{bottom:1016.925000px;}
.y5{bottom:1019.085000px;}
.y166{bottom:1023.045000px;}
.yb0{bottom:1026.285000px;}
.y7a{bottom:1027.005000px;}
.y36{bottom:1034.925000px;}
.yd9{bottom:1037.085000px;}
.y4{bottom:1037.445000px;}
.yaf{bottom:1044.285000px;}
.y165{bottom:1045.365000px;}
.yd8{bottom:1055.085000px;}
.y35{bottom:1055.445000px;}
.y3{bottom:1059.405000px;}
.yae{bottom:1062.285000px;}
.y164{bottom:1067.325000px;}
.yd7{bottom:1075.965000px;}
.y34{bottom:1076.325000px;}
.yad{bottom:1080.330000px;}
.y2{bottom:1081.410000px;}
.y163{bottom:1094.010000px;}
.yd6{bottom:1096.530000px;}
.y33{bottom:1096.890000px;}
.yac{bottom:1098.330000px;}
.y1{bottom:1098.690000px;}
.y78{bottom:1108.410000px;}
.y162{bottom:1115.970000px;}
.yaa{bottom:1116.330000px;}
.y32{bottom:1117.770000px;}
.yd5{bottom:1137.930000px;}
.y31{bottom:1138.290000px;}
.h13{height:13.680000px;}
.h15{height:16.920000px;}
.h16{height:16.956000px;}
.he{height:24.840000px;}
.h17{height:32.273438px;}
.hf{height:34.410234px;}
.h11{height:42.600937px;}
.h9{height:43.794844px;}
.h5{height:45.921094px;}
.h7{height:52.136719px;}
.hb{height:52.417969px;}
.h12{height:52.560000px;}
.hd{height:52.628906px;}
.h8{height:54.219375px;}
.h6{height:54.426094px;}
.h2{height:56.029219px;}
.h4{height:57.290625px;}
.ha{height:61.927031px;}
.hc{height:64.546875px;}
.h3{height:73.722656px;}
.h10{height:80.676000px;}
.h14{height:110.556000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:95.076000px;}
.wa{width:115.596000px;}
.wb{width:115.632000px;}
.w7{width:133.272000px;}
.w5{width:135.792000px;}
.w9{width:212.475000px;}
.w6{width:219.315000px;}
.w3{width:235.515000px;}
.w4{width:385.020000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:7.920000px;}
.x20{left:17.280000px;}
.x1a{left:21.600000px;}
.x1c{left:26.643000px;}
.x1e{left:33.840000px;}
.xf{left:36.363000px;}
.x16{left:41.760000px;}
.x18{left:45.405000px;}
.x23{left:46.470000px;}
.x21{left:50.070000px;}
.x22{left:53.670000px;}
.x14{left:56.910000px;}
.x11{left:97.230000px;}
.x7{left:135.071987px;}
.x25{left:140.111987px;}
.xa{left:144.791987px;}
.x1b{left:160.274987px;}
.x24{left:166.754987px;}
.x13{left:171.795000px;}
.xd{left:189.074987px;}
.xc{left:234.824987px;}
.x2{left:260.384987px;}
.x6{left:277.304987px;}
.x15{left:308.310000px;}
.xb{left:317.669987px;}
.x1d{left:348.990000px;}
.x5{left:363.389987px;}
.x10{left:372.390000px;}
.x4{left:383.909987px;}
.x3{left:403.019987px;}
.x8{left:446.579987px;}
.x1f{left:465.300000px;}
.x17{left:528.330000px;}
.x19{left:662.325000px;}
.x9{left:730.724987px;}
.x1{left:815.729987px;}
.xe{left:834.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.637333pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.414933pt;}
.ls8{letter-spacing:-0.376533pt;}
.ls3{letter-spacing:-0.358400pt;}
.ls6{letter-spacing:-0.340267pt;}
.ls7{letter-spacing:-0.327467pt;}
.ls35{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.222933pt;}
.ls12{letter-spacing:-0.194667pt;}
.ls34{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.115200pt;}
.ls26{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.189440pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.307200pt;}
.ls9{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.024000pt;}
.lsb{letter-spacing:1.408000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:2.112000pt;}
.ls2a{letter-spacing:2.304000pt;}
.ls16{letter-spacing:2.336000pt;}
.ls21{letter-spacing:2.560000pt;}
.ls2e{letter-spacing:2.688000pt;}
.ls37{letter-spacing:2.816000pt;}
.ls29{letter-spacing:3.200000pt;}
.ls36{letter-spacing:3.264000pt;}
.lse{letter-spacing:3.520000pt;}
.ls27{letter-spacing:3.712000pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls28{letter-spacing:4.096000pt;}
.ls2d{letter-spacing:4.288000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls24{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:10.880000pt;}
.ls1e{letter-spacing:12.160000pt;}
.ls2b{letter-spacing:13.440000pt;}
.ls23{letter-spacing:17.280000pt;}
.ls3a{letter-spacing:19.840000pt;}
.ls3b{letter-spacing:21.120000pt;}
.ls39{letter-spacing:22.400000pt;}
.ls22{letter-spacing:23.680000pt;}
.ls38{letter-spacing:27.520000pt;}
.ls20{letter-spacing:35.200000pt;}
.lsa{letter-spacing:37.248000pt;}
.ls33{letter-spacing:40.320000pt;}
.ls31{letter-spacing:41.600000pt;}
.ls32{letter-spacing:44.160000pt;}
.ls19{letter-spacing:46.505387pt;}
.ls18{letter-spacing:50.345387pt;}
.wsd{word-spacing:-53.760000pt;}
.ws14{word-spacing:-20.288000pt;}
.ws11{word-spacing:-20.096000pt;}
.ws19{word-spacing:-19.840000pt;}
.ws10{word-spacing:-19.712000pt;}
.ws1c{word-spacing:-19.264000pt;}
.ws1d{word-spacing:-18.816000pt;}
.ws16{word-spacing:-18.688000pt;}
.ws15{word-spacing:-18.560000pt;}
.ws12{word-spacing:-18.304000pt;}
.ws13{word-spacing:-18.112000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.040000pt;}
.wsc{word-spacing:-13.457920pt;}
.wsf{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.025067pt;}
.ws4{word-spacing:-12.149760pt;}
.ws2{word-spacing:-12.034560pt;}
.ws5{word-spacing:-11.773227pt;}
.ws0{word-spacing:-11.212800pt;}
.ws8{word-spacing:-11.200000pt;}
.ws3{word-spacing:-10.652373pt;}
.wsa{word-spacing:-10.365333pt;}
.ws9{word-spacing:-10.337067pt;}
.ws1{word-spacing:-9.933867pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-5.196800pt;}
._e{margin-left:-3.899733pt;}
._a{margin-left:-2.692267pt;}
._2{margin-left:-1.787733pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._5{width:3.003733pt;}
._7{width:4.672000pt;}
._13{width:5.696000pt;}
._9{width:6.912000pt;}
._8{width:7.803733pt;}
._f{width:8.855467pt;}
._b{width:9.952000pt;}
._d{width:11.259733pt;}
._c{width:12.608000pt;}
._1e{width:13.504000pt;}
._18{width:14.459733pt;}
._22{width:16.889600pt;}
._6{width:17.847467pt;}
._1f{width:18.961067pt;}
._15{width:20.283733pt;}
._14{width:21.184000pt;}
._17{width:22.592000pt;}
._16{width:24.187733pt;}
._20{width:25.397333pt;}
._1a{width:26.931200pt;}
._11{width:28.104533pt;}
._10{width:29.435733pt;}
._19{width:30.425600pt;}
._27{width:32.236800pt;}
._26{width:33.348267pt;}
._28{width:35.374933pt;}
._29{width:36.469333pt;}
._25{width:37.638400pt;}
._1c{width:39.675733pt;}
._1b{width:41.152000pt;}
._1d{width:42.167467pt;}
._21{width:43.605760pt;}
._24{width:51.089067pt;}
._23{width:52.447573pt;}
._2a{width:182.203733pt;}
._2b{width:183.278933pt;}
._4{width:845.594027pt;}
._3{width:1314.298027pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:51.200000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.240000pt;}
.y7f{bottom:2.560000pt;}
.yab{bottom:2.880000pt;}
.y7e{bottom:14.720000pt;}
.y7d{bottom:26.880000pt;}
.y7c{bottom:39.360000pt;}
.y9{bottom:50.880000pt;}
.y8b{bottom:51.520000pt;}
.y7b{bottom:51.560000pt;}
.y8a{bottom:63.680000pt;}
.y89{bottom:76.200000pt;}
.y88{bottom:88.360000pt;}
.y161{bottom:102.432000pt;}
.ya9{bottom:105.952000pt;}
.y77{bottom:108.832000pt;}
.y62{bottom:110.112000pt;}
.yd4{bottom:112.672000pt;}
.yff{bottom:114.592000pt;}
.y160{bottom:121.952000pt;}
.y76{bottom:124.192000pt;}
.y13d{bottom:128.032000pt;}
.y61{bottom:128.352000pt;}
.yd3{bottom:128.672000pt;}
.y30{bottom:131.552000pt;}
.yfe{bottom:132.832000pt;}
.y6b{bottom:134.426667pt;}
.y75{bottom:140.186667pt;}
.y15f{bottom:141.466667pt;}
.ya8{bottom:142.746667pt;}
.y13c{bottom:146.586667pt;}
.y60{bottom:146.906667pt;}
.yd2{bottom:147.226667pt;}
.y2f{bottom:149.786667pt;}
.yfd{bottom:151.386667pt;}
.y11e{bottom:152.026667pt;}
.y6a{bottom:152.986667pt;}
.y74{bottom:158.746667pt;}
.ya7{bottom:160.986667pt;}
.y13b{bottom:164.826667pt;}
.y5f{bottom:165.146667pt;}
.yd1{bottom:165.466667pt;}
.y2e{bottom:168.346667pt;}
.yfc{bottom:169.626667pt;}
.y11d{bottom:169.946667pt;}
.y69{bottom:171.226667pt;}
.y73{bottom:177.026667pt;}
.ya6{bottom:179.586667pt;}
.y13a{bottom:183.426667pt;}
.y5e{bottom:183.746667pt;}
.yd0{bottom:184.066667pt;}
.y15e{bottom:185.026667pt;}
.y11c{bottom:186.306667pt;}
.y2d{bottom:186.626667pt;}
.yfb{bottom:188.226667pt;}
.y68{bottom:189.826667pt;}
.y72{bottom:195.586667pt;}
.ya5{bottom:197.826667pt;}
.y139{bottom:201.666667pt;}
.y5d{bottom:201.986667pt;}
.ycf{bottom:202.306667pt;}
.y11b{bottom:204.546667pt;}
.y2c{bottom:205.186667pt;}
.yfa{bottom:206.466667pt;}
.y67{bottom:208.066667pt;}
.y71{bottom:213.826667pt;}
.ya4{bottom:216.386667pt;}
.y138{bottom:220.226667pt;}
.y5c{bottom:220.546667pt;}
.y11a{bottom:223.106667pt;}
.y2b{bottom:223.426667pt;}
.y15d{bottom:224.066667pt;}
.yf9{bottom:225.026667pt;}
.y66{bottom:226.626667pt;}
.y70{bottom:232.386667pt;}
.ya3{bottom:234.626667pt;}
.y137{bottom:238.466667pt;}
.y5b{bottom:238.786667pt;}
.yce{bottom:239.106667pt;}
.y119{bottom:241.346667pt;}
.y2a{bottom:241.986667pt;}
.yf8{bottom:243.266667pt;}
.y15c{bottom:243.586667pt;}
.y65{bottom:244.866667pt;}
.y6f{bottom:250.626667pt;}
.ya2{bottom:253.186667pt;}
.ycd{bottom:257.026667pt;}
.y5a{bottom:257.346667pt;}
.y118{bottom:259.906667pt;}
.y29{bottom:260.226667pt;}
.y64{bottom:262.466667pt;}
.y15b{bottom:266.306667pt;}
.y6e{bottom:269.186667pt;}
.ya1{bottom:271.426667pt;}
.ycc{bottom:273.346667pt;}
.y136{bottom:275.266667pt;}
.y59{bottom:275.586667pt;}
.y117{bottom:278.146667pt;}
.y28{bottom:278.786667pt;}
.yf7{bottom:280.066667pt;}
.y15a{bottom:284.866667pt;}
.y6d{bottom:285.826667pt;}
.ya0{bottom:290.013333pt;}
.ycb{bottom:291.613333pt;}
.y135{bottom:293.853333pt;}
.y58{bottom:294.173333pt;}
.y63{bottom:296.413333pt;}
.y116{bottom:296.733333pt;}
.y27{bottom:297.053333pt;}
.yf6{bottom:298.973333pt;}
.y159{bottom:303.133333pt;}
.y9f{bottom:308.253333pt;}
.yca{bottom:310.173333pt;}
.y134{bottom:312.093333pt;}
.y57{bottom:312.413333pt;}
.y115{bottom:314.973333pt;}
.y26{bottom:315.613333pt;}
.yf5{bottom:317.213333pt;}
.y158{bottom:321.693333pt;}
.y9e{bottom:326.813333pt;}
.y133{bottom:330.653333pt;}
.y56{bottom:330.973333pt;}
.y114{bottom:333.533333pt;}
.y25{bottom:333.853333pt;}
.yf4{bottom:335.773333pt;}
.y157{bottom:339.933333pt;}
.y9d{bottom:345.053333pt;}
.yc9{bottom:346.653333pt;}
.y132{bottom:348.893333pt;}
.y55{bottom:349.213333pt;}
.y113{bottom:351.773333pt;}
.y24{bottom:352.413333pt;}
.yf3{bottom:354.013333pt;}
.y156{bottom:358.493333pt;}
.y9c{bottom:363.613333pt;}
.yc8{bottom:365.533333pt;}
.y131{bottom:367.453333pt;}
.y54{bottom:367.773333pt;}
.y112{bottom:370.333333pt;}
.y23{bottom:370.653333pt;}
.yf2{bottom:372.573333pt;}
.y155{bottom:376.733333pt;}
.y9b{bottom:381.853333pt;}
.y6c{bottom:383.773333pt;}
.y130{bottom:385.693333pt;}
.y53{bottom:386.013333pt;}
.y111{bottom:388.573333pt;}
.y22{bottom:389.213333pt;}
.yf1{bottom:390.813333pt;}
.y154{bottom:395.293333pt;}
.y9a{bottom:400.453333pt;}
.y12f{bottom:404.293333pt;}
.y52{bottom:404.613333pt;}
.y110{bottom:407.173333pt;}
.y21{bottom:407.493333pt;}
.yf0{bottom:409.413333pt;}
.y153{bottom:413.573333pt;}
.y99{bottom:418.693333pt;}
.yc7{bottom:420.613333pt;}
.y12e{bottom:422.533333pt;}
.y51{bottom:422.853333pt;}
.y10f{bottom:425.413333pt;}
.y20{bottom:426.053333pt;}
.yef{bottom:427.653333pt;}
.y152{bottom:432.133333pt;}
.y98{bottom:437.253333pt;}
.yc6{bottom:439.493333pt;}
.y12d{bottom:441.093333pt;}
.y50{bottom:441.413333pt;}
.y10e{bottom:443.973333pt;}
.y1f{bottom:444.293333pt;}
.y151{bottom:450.373333pt;}
.y97{bottom:455.493333pt;}
.yc5{bottom:457.733333pt;}
.y12c{bottom:459.333333pt;}
.y4f{bottom:459.653333pt;}
.y10d{bottom:462.213333pt;}
.y1e{bottom:462.853333pt;}
.yee{bottom:464.453333pt;}
.y150{bottom:468.933333pt;}
.y96{bottom:474.053333pt;}
.yc4{bottom:476.293333pt;}
.y12b{bottom:477.893333pt;}
.y4e{bottom:478.213333pt;}
.y10c{bottom:480.773333pt;}
.y1d{bottom:481.093333pt;}
.yed{bottom:483.013333pt;}
.y14f{bottom:487.173333pt;}
.y95{bottom:492.293333pt;}
.yc3{bottom:494.533333pt;}
.y12a{bottom:496.133333pt;}
.y4d{bottom:496.453333pt;}
.y10b{bottom:499.013333pt;}
.y1c{bottom:499.653333pt;}
.yec{bottom:501.573333pt;}
.y14e{bottom:505.733333pt;}
.y94{bottom:510.533333pt;}
.yc2{bottom:513.120000pt;}
.y129{bottom:514.720000pt;}
.y4c{bottom:515.040000pt;}
.y10a{bottom:517.600000pt;}
.y1b{bottom:517.920000pt;}
.yeb{bottom:519.840000pt;}
.y14d{bottom:524.000000pt;}
.y93{bottom:529.120000pt;}
.yc1{bottom:531.360000pt;}
.y177{bottom:532.640000pt;}
.y128{bottom:532.960000pt;}
.y4b{bottom:533.280000pt;}
.y109{bottom:535.840000pt;}
.y1a{bottom:536.480000pt;}
.yea{bottom:538.400000pt;}
.y14c{bottom:542.560000pt;}
.y92{bottom:547.360000pt;}
.yc0{bottom:549.920000pt;}
.y127{bottom:551.520000pt;}
.y4a{bottom:551.840000pt;}
.y108{bottom:554.400000pt;}
.y19{bottom:554.720000pt;}
.ye9{bottom:556.640000pt;}
.y14b{bottom:560.800000pt;}
.y91{bottom:565.920000pt;}
.ybf{bottom:568.160000pt;}
.y126{bottom:569.760000pt;}
.y49{bottom:570.080000pt;}
.y176{bottom:571.360000pt;}
.y107{bottom:572.640000pt;}
.y18{bottom:572.960000pt;}
.ye8{bottom:575.200000pt;}
.y14a{bottom:579.360000pt;}
.y90{bottom:584.160000pt;}
.y125{bottom:588.320000pt;}
.y48{bottom:588.640000pt;}
.ye7{bottom:593.440000pt;}
.y175{bottom:595.360000pt;}
.y17{bottom:596.000000pt;}
.y149{bottom:597.600000pt;}
.y8f{bottom:602.720000pt;}
.ybe{bottom:604.960000pt;}
.y124{bottom:606.560000pt;}
.y47{bottom:606.880000pt;}
.y106{bottom:609.440000pt;}
.ye6{bottom:612.000000pt;}
.y16{bottom:614.240000pt;}
.y148{bottom:616.160000pt;}
.y174{bottom:619.040000pt;}
.y8e{bottom:620.960000pt;}
.ybd{bottom:623.866667pt;}
.y123{bottom:625.146667pt;}
.y46{bottom:625.466667pt;}
.y105{bottom:627.386667pt;}
.ye5{bottom:630.266667pt;}
.y15{bottom:632.506667pt;}
.y147{bottom:634.426667pt;}
.y173{bottom:638.586667pt;}
.y8d{bottom:639.546667pt;}
.ybc{bottom:642.106667pt;}
.y104{bottom:643.386667pt;}
.y45{bottom:643.706667pt;}
.y14{bottom:650.746667pt;}
.y146{bottom:652.986667pt;}
.y8c{bottom:656.506667pt;}
.y172{bottom:658.106667pt;}
.ybb{bottom:660.666667pt;}
.y103{bottom:661.946667pt;}
.y44{bottom:662.266667pt;}
.y87{bottom:667.066667pt;}
.y145{bottom:671.226667pt;}
.y13{bottom:672.826667pt;}
.y171{bottom:677.626667pt;}
.yba{bottom:678.906667pt;}
.y102{bottom:680.186667pt;}
.y43{bottom:680.506667pt;}
.ye4{bottom:685.946667pt;}
.y12{bottom:689.146667pt;}
.y144{bottom:689.786667pt;}
.y170{bottom:697.146667pt;}
.yb9{bottom:697.466667pt;}
.y101{bottom:698.746667pt;}
.y42{bottom:699.066667pt;}
.ye3{bottom:704.186667pt;}
.y11{bottom:706.746667pt;}
.y143{bottom:708.026667pt;}
.yb8{bottom:715.706667pt;}
.y122{bottom:716.986667pt;}
.y41{bottom:717.306667pt;}
.y16f{bottom:720.826667pt;}
.y10{bottom:722.426667pt;}
.ye2{bottom:722.746667pt;}
.y142{bottom:726.586667pt;}
.yb7{bottom:734.266667pt;}
.y100{bottom:735.586667pt;}
.y40{bottom:735.906667pt;}
.yf{bottom:738.146667pt;}
.y16e{bottom:740.386667pt;}
.ye1{bottom:741.026667pt;}
.y141{bottom:744.866667pt;}
.ye{bottom:753.506667pt;}
.y121{bottom:753.826667pt;}
.y3f{bottom:754.146667pt;}
.ye0{bottom:759.586667pt;}
.y140{bottom:763.426667pt;}
.y16d{bottom:764.386667pt;}
.y86{bottom:765.986667pt;}
.yd{bottom:768.866667pt;}
.yb6{bottom:770.786667pt;}
.y120{bottom:772.386667pt;}
.y3e{bottom:772.706667pt;}
.y13f{bottom:781.666667pt;}
.y85{bottom:782.626667pt;}
.y16c{bottom:783.906667pt;}
.yc{bottom:784.226667pt;}
.y3d{bottom:790.946667pt;}
.ydf{bottom:796.386667pt;}
.y13e{bottom:797.986667pt;}
.yb{bottom:800.226667pt;}
.y84{bottom:801.186667pt;}
.y16b{bottom:807.586667pt;}
.y11f{bottom:809.186667pt;}
.y3c{bottom:809.506667pt;}
.yb5{bottom:810.466667pt;}
.yde{bottom:814.306667pt;}
.ya{bottom:818.786667pt;}
.y83{bottom:819.426667pt;}
.y16a{bottom:827.106667pt;}
.y3b{bottom:827.746667pt;}
.yb4{bottom:829.026667pt;}
.ydd{bottom:830.306667pt;}
.y8{bottom:836.706667pt;}
.y82{bottom:837.666667pt;}
.y3a{bottom:846.306667pt;}
.y169{bottom:846.653333pt;}
.yb3{bottom:847.293333pt;}
.y7{bottom:848.253333pt;}
.ydc{bottom:848.573333pt;}
.y81{bottom:854.973333pt;}
.y39{bottom:864.573333pt;}
.y80{bottom:865.533333pt;}
.y168{bottom:866.173333pt;}
.ydb{bottom:867.133333pt;}
.y38{bottom:883.133333pt;}
.yb2{bottom:885.373333pt;}
.y6{bottom:889.533333pt;}
.y167{bottom:889.853333pt;}
.yb1{bottom:896.253333pt;}
.y37{bottom:901.373333pt;}
.yda{bottom:903.933333pt;}
.y5{bottom:905.853333pt;}
.y166{bottom:909.373333pt;}
.yb0{bottom:912.253333pt;}
.y7a{bottom:912.893333pt;}
.y36{bottom:919.933333pt;}
.yd9{bottom:921.853333pt;}
.y4{bottom:922.173333pt;}
.yaf{bottom:928.253333pt;}
.y165{bottom:929.213333pt;}
.yd8{bottom:937.853333pt;}
.y35{bottom:938.173333pt;}
.y3{bottom:941.693333pt;}
.yae{bottom:944.253333pt;}
.y164{bottom:948.733333pt;}
.yd7{bottom:956.413333pt;}
.y34{bottom:956.733333pt;}
.yad{bottom:960.293333pt;}
.y2{bottom:961.253333pt;}
.y163{bottom:972.453333pt;}
.yd6{bottom:974.693333pt;}
.y33{bottom:975.013333pt;}
.yac{bottom:976.293333pt;}
.y1{bottom:976.613333pt;}
.y78{bottom:985.253333pt;}
.y162{bottom:991.973333pt;}
.yaa{bottom:992.293333pt;}
.y32{bottom:993.573333pt;}
.yd5{bottom:1011.493333pt;}
.y31{bottom:1011.813333pt;}
.h13{height:12.160000pt;}
.h15{height:15.040000pt;}
.h16{height:15.072000pt;}
.he{height:22.080000pt;}
.h17{height:28.687500pt;}
.hf{height:30.586875pt;}
.h11{height:37.867500pt;}
.h9{height:38.928750pt;}
.h5{height:40.818750pt;}
.h7{height:46.343750pt;}
.hb{height:46.593750pt;}
.h12{height:46.720000pt;}
.hd{height:46.781250pt;}
.h8{height:48.195000pt;}
.h6{height:48.378750pt;}
.h2{height:49.803750pt;}
.h4{height:50.925000pt;}
.ha{height:55.046250pt;}
.hc{height:57.375000pt;}
.h3{height:65.531250pt;}
.h10{height:71.712000pt;}
.h14{height:98.272000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:84.512000pt;}
.wa{width:102.752000pt;}
.wb{width:102.784000pt;}
.w7{width:118.464000pt;}
.w5{width:120.704000pt;}
.w9{width:188.866667pt;}
.w6{width:194.946667pt;}
.w3{width:209.346667pt;}
.w4{width:342.240000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:7.040000pt;}
.x20{left:15.360000pt;}
.x1a{left:19.200000pt;}
.x1c{left:23.682667pt;}
.x1e{left:30.080000pt;}
.xf{left:32.322667pt;}
.x16{left:37.120000pt;}
.x18{left:40.360000pt;}
.x23{left:41.306667pt;}
.x21{left:44.506667pt;}
.x22{left:47.706667pt;}
.x14{left:50.586667pt;}
.x11{left:86.426667pt;}
.x7{left:120.063988pt;}
.x25{left:124.543988pt;}
.xa{left:128.703988pt;}
.x1b{left:142.466655pt;}
.x24{left:148.226655pt;}
.x13{left:152.706667pt;}
.xd{left:168.066655pt;}
.xc{left:208.733322pt;}
.x2{left:231.453322pt;}
.x6{left:246.493322pt;}
.x15{left:274.053333pt;}
.xb{left:282.373322pt;}
.x1d{left:310.213333pt;}
.x5{left:323.013322pt;}
.x10{left:331.013333pt;}
.x4{left:341.253322pt;}
.x3{left:358.239988pt;}
.x8{left:396.959988pt;}
.x1f{left:413.600000pt;}
.x17{left:469.626667pt;}
.x19{left:588.733333pt;}
.x9{left:649.533322pt;}
.x1{left:725.093322pt;}
.xe{left:742.053322pt;}
}




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