
    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_d6bfe02d6dbe494e8cd22ecd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_8fd2e6a48680546dea32edea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_680a20bdd04741e279e1a662.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_e6a34df849f4eb74d79a6d4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_8e7d27271680449a639f162d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935000;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_8654e6a05ddab6e748fd6bfd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962000;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_e9c69c6706ee0136ff5b96d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_dd805cfd5b27930ded17ef8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.157000;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_d25d914926538304daf205fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.157000;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_e4921e44799a01b6a9914270.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.066000;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c227d7f686dfd4095577aa39.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.167000;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_a7e6d9b6f726f28b78db1f23.woff2')format("woff");}.fff{font-family:fff;line-height:1.166000;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;}
.v1{vertical-align:18.000000px;}
.ls12{letter-spacing:-1.267200px;}
.ls14{letter-spacing:-0.990000px;}
.ls33{letter-spacing:-0.738000px;}
.ls13{letter-spacing:-0.396000px;}
.ls25{letter-spacing:-0.306000px;}
.ls7{letter-spacing:-0.268800px;}
.lsd{letter-spacing:-0.254400px;}
.ls1e{letter-spacing:-0.252000px;}
.ls36{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.225600px;}
.ls23{letter-spacing:-0.216600px;}
.ls2e{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.215400px;}
.ls1c{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.192000px;}
.ls5{letter-spacing:-0.168000px;}
.ls21{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.134400px;}
.ls35{letter-spacing:-0.133200px;}
.ls1a{letter-spacing:-0.115200px;}
.lsf{letter-spacing:-0.110400px;}
.ls11{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.100800px;}
.ls29{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.072001px;}
.ls37{letter-spacing:0.078000px;}
.ls34{letter-spacing:0.117360px;}
.lsc{letter-spacing:0.124800px;}
.ls2{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.165600px;}
.ls6{letter-spacing:0.192000px;}
.ls2a{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.228000px;}
.ls22{letter-spacing:0.234000px;}
.ls2b{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.259200px;}
.ls9{letter-spacing:0.278400px;}
.lsb{letter-spacing:0.340800px;}
.ls2f{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.414000px;}
.ls28{letter-spacing:0.432000px;}
.ls32{letter-spacing:0.522000px;}
.ls4{letter-spacing:9.960002px;}
.ls3{letter-spacing:11.898001px;}
.ls30{letter-spacing:65.801280px;}
.ls24{letter-spacing:65.825280px;}
.ls1f{letter-spacing:113.160000px;}
.ls1b{letter-spacing:113.184000px;}
.ls31{letter-spacing:849.168000px;}
.ls26{letter-spacing:849.264000px;}
.ls2d{letter-spacing:849.288000px;}
.ls1d{letter-spacing:850.865280px;}
.ls17{letter-spacing:850.889280px;}
.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;}
}
.wsc{word-spacing:-48.240000px;}
.wsf{word-spacing:-14.400000px;}
.ws13{word-spacing:-13.248000px;}
.ws18{word-spacing:-11.052000px;}
.ws16{word-spacing:-11.016000px;}
.ws1c{word-spacing:-10.998000px;}
.ws1a{word-spacing:-10.944000px;}
.ws19{word-spacing:-10.872000px;}
.ws14{word-spacing:-10.800000px;}
.ws17{word-spacing:-10.782000px;}
.ws11{word-spacing:-10.656000px;}
.wse{word-spacing:-10.602000px;}
.ws1b{word-spacing:-10.584000px;}
.ws10{word-spacing:-10.548000px;}
.ws15{word-spacing:-10.368000px;}
.ws1d{word-spacing:-10.062000px;}
.ws7{word-spacing:-9.940799px;}
.ws8{word-spacing:-9.878399px;}
.ws5{word-spacing:-9.743999px;}
.ws1f{word-spacing:-9.726000px;}
.ws4{word-spacing:-9.672001px;}
.wsd{word-spacing:-9.648000px;}
.ws6{word-spacing:-9.489599px;}
.ws9{word-spacing:-9.465599px;}
.wsa{word-spacing:-9.432600px;}
.ws12{word-spacing:-9.431400px;}
.ws1e{word-spacing:-9.421800px;}
.wsb{word-spacing:-6.359040px;}
.ws2{word-spacing:-0.511184px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.888009px;}
.ws1{word-spacing:0.894021px;}
._b{margin-left:-3.665999px;}
._7{margin-left:-2.267473px;}
._1{margin-left:-1.066743px;}
._0{width:1.008000px;}
._2{width:2.100000px;}
._3{width:3.398416px;}
._8{width:4.496880px;}
._9{width:5.713574px;}
._6{width:7.091376px;}
._e{width:8.316000px;}
._f{width:9.629473px;}
._a{width:11.384302px;}
._10{width:12.969698px;}
._16{width:14.862000px;}
._11{width:19.440575px;}
._12{width:41.341825px;}
._14{width:52.774849px;}
._15{width:59.914273px;}
._13{width:61.650672px;}
._4{width:85.145647px;}
._5{width:177.346263px;}
._c{width:487.596000px;}
._d{width:566.562000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.120000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.999995px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:131.999990px;}
.y0{bottom:0.000000px;}
.y12c{bottom:4.500000px;}
.y8e{bottom:5.400000px;}
.ya6{bottom:5.580000px;}
.yef{bottom:6.120000px;}
.y11f{bottom:6.300000px;}
.y2f{bottom:7.620000px;}
.y28{bottom:11.580000px;}
.y107{bottom:12.240000px;}
.ydb{bottom:12.600000px;}
.y118{bottom:12.630000px;}
.ya1{bottom:13.320000px;}
.ydd{bottom:15.120000px;}
.y8d{bottom:22.860000px;}
.y100{bottom:25.560000px;}
.yee{bottom:25.740000px;}
.y27{bottom:26.340000px;}
.yb1{bottom:26.820000px;}
.ya0{bottom:30.600000px;}
.y8a{bottom:31.500000px;}
.ybf{bottom:36.000000px;}
.ya2{bottom:39.240000px;}
.y26{bottom:40.020000px;}
.y88{bottom:40.140000px;}
.yb0{bottom:44.280000px;}
.yb9{bottom:44.640000px;}
.yed{bottom:45.180000px;}
.y9f{bottom:48.105000px;}
.y89{bottom:48.780000px;}
.ya7{bottom:48.960000px;}
.y9b{bottom:51.480000px;}
.ybd{bottom:53.460000px;}
.y8c{bottom:57.420000px;}
.ya4{bottom:57.600000px;}
.y98{bottom:60.165000px;}
.yaf{bottom:61.560000px;}
.yb8{bottom:62.100000px;}
.yff{bottom:64.620000px;}
.yec{bottom:64.800000px;}
.y109{bottom:64.830000px;}
.y9e{bottom:65.385000px;}
.y6{bottom:66.525004px;}
.y99{bottom:68.805000px;}
.yaa{bottom:70.200000px;}
.ybc{bottom:70.740000px;}
.y8b{bottom:74.880000px;}
.y97{bottom:77.445000px;}
.yae{bottom:79.020000px;}
.yb5{bottom:79.380000px;}
.y95{bottom:83.520000px;}
.yeb{bottom:84.240000px;}
.yfe{bottom:84.270000px;}
.y9a{bottom:86.265000px;}
.ya9{bottom:87.660000px;}
.yb3{bottom:88.020000px;}
.y94{bottom:92.190000px;}
.ya5{bottom:92.340000px;}
.yad{bottom:96.300000px;}
.yb4{bottom:96.840000px;}
.y5{bottom:97.125005px;}
.yfd{bottom:103.710000px;}
.y11e{bottom:103.860000px;}
.yea{bottom:103.890000px;}
.ybb{bottom:105.480000px;}
.y93{bottom:109.650000px;}
.yac{bottom:113.580000px;}
.yb7{bottom:114.120000px;}
.yba{bottom:122.760000px;}
.ye9{bottom:123.330000px;}
.y92{bottom:126.930000px;}
.yab{bottom:131.040000px;}
.yb6{bottom:131.400000px;}
.y25{bottom:139.264499px;}
.ybe{bottom:140.085000px;}
.ye8{bottom:142.770000px;}
.y11d{bottom:142.950000px;}
.y91{bottom:144.210000px;}
.y50{bottom:155.370000px;}
.y31{bottom:156.270000px;}
.y90{bottom:161.670000px;}
.yfc{bottom:162.210000px;}
.ye7{bottom:162.390000px;}
.y12f{bottom:168.330000px;}
.y83{bottom:169.410000px;}
.y85{bottom:173.910000px;}
.y158{bottom:177.510000px;}
.y96{bottom:179.490000px;}
.ye6{bottom:181.830000px;}
.y139{bottom:183.630000px;}
.y4e{bottom:184.710000px;}
.y12b{bottom:186.690000px;}
.y12e{bottom:190.830000px;}
.y82{bottom:191.910000px;}
.yf4{bottom:193.710000px;}
.yd9{bottom:194.250000px;}
.y157{bottom:195.510000px;}
.y69{bottom:196.410000px;}
.y1c{bottom:196.933500px;}
.yfb{bottom:201.270000px;}
.ye5{bottom:201.450000px;}
.y4d{bottom:202.710000px;}
.y10f{bottom:205.590000px;}
.y138{bottom:206.130000px;}
.y24{bottom:209.518500px;}
.y1b{bottom:209.533503px;}
.y156{bottom:213.510000px;}
.y81{bottom:214.410000px;}
.yf3{bottom:216.210000px;}
.yd8{bottom:216.750000px;}
.y68{bottom:218.910000px;}
.y4c{bottom:220.710000px;}
.ye4{bottom:220.890000px;}
.y23{bottom:222.118502px;}
.y1a{bottom:222.133505px;}
.y12d{bottom:222.330000px;}
.y13a{bottom:223.410000px;}
.y173{bottom:227.010000px;}
.y10e{bottom:228.090000px;}
.y137{bottom:228.630000px;}
.y155{bottom:231.510000px;}
.ycd{bottom:232.410000px;}
.y22{bottom:234.718504px;}
.y19{bottom:234.733496px;}
.y80{bottom:236.910000px;}
.y4b{bottom:238.755000px;}
.yd7{bottom:239.295000px;}
.ye3{bottom:240.330000px;}
.y11c{bottom:240.510000px;}
.y67{bottom:241.455000px;}
.y105{bottom:241.815000px;}
.y172{bottom:245.055000px;}
.y154{bottom:249.555000px;}
.y10d{bottom:250.635000px;}
.ycc{bottom:254.955000px;}
.y4a{bottom:256.755000px;}
.y136{bottom:257.475000px;}
.y130{bottom:258.375000px;}
.y7f{bottom:259.455000px;}
.yfa{bottom:259.815000px;}
.y21{bottom:259.918497px;}
.y18{bottom:259.933500px;}
.ye2{bottom:259.950000px;}
.yf2{bottom:261.255000px;}
.yd6{bottom:261.795000px;}
.y171{bottom:263.055000px;}
.y66{bottom:263.955000px;}
.y104{bottom:264.315000px;}
.y153{bottom:267.555000px;}
.yc1{bottom:268.455000px;}
.ya8{bottom:270.795000px;}
.y20{bottom:272.518500px;}
.y17{bottom:272.533503px;}
.y10c{bottom:273.135000px;}
.y49{bottom:274.755000px;}
.ycb{bottom:277.455000px;}
.ye1{bottom:279.390000px;}
.yf9{bottom:279.435000px;}
.y7e{bottom:281.955000px;}
.yf1{bottom:283.755000px;}
.y170{bottom:284.115000px;}
.yd5{bottom:284.295000px;}
.y1f{bottom:285.118502px;}
.y16{bottom:285.133499px;}
.y65{bottom:286.455000px;}
.y103{bottom:286.815000px;}
.y152{bottom:288.615000px;}
.y120{bottom:289.875000px;}
.y48{bottom:292.755000px;}
.y10b{bottom:295.635000px;}
.y135{bottom:296.895000px;}
.yf8{bottom:298.875000px;}
.ye0{bottom:299.055000px;}
.yca{bottom:299.955000px;}
.y16f{bottom:302.115000px;}
.y7d{bottom:304.455000px;}
.yf0{bottom:306.255000px;}
.y151{bottom:306.615000px;}
.yd4{bottom:306.795000px;}
.y84{bottom:308.055000px;}
.y64{bottom:308.955000px;}
.y102{bottom:309.315000px;}
.y1e{bottom:310.318501px;}
.y15{bottom:310.333501px;}
.y47{bottom:310.755000px;}
.y116{bottom:316.335000px;}
.y10a{bottom:318.135000px;}
.ydf{bottom:318.495000px;}
.yc9{bottom:322.455000px;}
.y1d{bottom:322.918500px;}
.y14{bottom:322.933500px;}
.y16e{bottom:323.175000px;}
.y150{bottom:324.615000px;}
.y7c{bottom:326.955000px;}
.y46{bottom:328.755000px;}
.yd3{bottom:329.295000px;}
.y63{bottom:331.455000px;}
.y101{bottom:331.815000px;}
.yde{bottom:335.055000px;}
.y134{bottom:336.315000px;}
.yf7{bottom:337.935000px;}
.y11b{bottom:338.115000px;}
.y115{bottom:338.835000px;}
.y8f{bottom:340.635000px;}
.y14f{bottom:342.615000px;}
.y16d{bottom:344.055000px;}
.yc8{bottom:344.955000px;}
.y45{bottom:346.755000px;}
.y13{bottom:348.133500px;}
.y7b{bottom:349.455000px;}
.yd2{bottom:351.795000px;}
.y62{bottom:353.955000px;}
.y11a{bottom:357.555000px;}
.yf6{bottom:360.615000px;}
.y114{bottom:361.335000px;}
.y16c{bottom:362.055000px;}
.y14e{bottom:363.675000px;}
.y44{bottom:364.755000px;}
.yc7{bottom:367.455000px;}
.y108{bottom:369.435000px;}
.y7a{bottom:371.955000px;}
.yd1{bottom:374.295000px;}
.y133{bottom:375.915000px;}
.y61{bottom:376.455000px;}
.y14d{bottom:381.675000px;}
.y43{bottom:382.755000px;}
.y16b{bottom:383.115000px;}
.y113{bottom:383.835000px;}
.y12{bottom:386.785499px;}
.yc6{bottom:389.955000px;}
.y79{bottom:394.455000px;}
.yd0{bottom:396.795000px;}
.y60{bottom:398.955000px;}
.y14c{bottom:399.675000px;}
.y42{bottom:400.755000px;}
.y16a{bottom:401.115000px;}
.y112{bottom:406.335000px;}
.y11{bottom:408.044999px;}
.yc5{bottom:412.455000px;}
.y132{bottom:415.335000px;}
.y78{bottom:416.955000px;}
.y14b{bottom:417.675000px;}
.y41{bottom:418.755000px;}
.y169{bottom:419.115000px;}
.ycf{bottom:419.295000px;}
.y5f{bottom:421.455000px;}
.y178{bottom:422.175000px;}
.y117{bottom:424.335000px;}
.yc4{bottom:434.985000px;}
.y14a{bottom:435.705000px;}
.y40{bottom:436.785000px;}
.y77{bottom:439.485000px;}
.y168{bottom:440.205000px;}
.yce{bottom:441.825000px;}
.y5e{bottom:443.985000px;}
.yc0{bottom:446.685000px;}
.y10{bottom:448.864502px;}
.ya3{bottom:451.905000px;}
.y3f{bottom:454.785000px;}
.y149{bottom:456.585000px;}
.yc3{bottom:457.485000px;}
.y167{bottom:458.205000px;}
.y12a{bottom:459.285000px;}
.yda{bottom:459.825000px;}
.y131{bottom:461.085000px;}
.y76{bottom:461.985000px;}
.y5d{bottom:466.485000px;}
.yf{bottom:466.864502px;}
.y3e{bottom:472.785000px;}
.y148{bottom:474.585000px;}
.yb2{bottom:475.485000px;}
.y166{bottom:476.205000px;}
.yc2{bottom:479.985000px;}
.y129{bottom:481.785000px;}
.y75{bottom:484.485000px;}
.ye{bottom:484.864502px;}
.y5c{bottom:488.985000px;}
.y3d{bottom:490.785000px;}
.y147{bottom:492.585000px;}
.y165{bottom:494.205000px;}
.y177{bottom:497.085000px;}
.y111{bottom:502.485000px;}
.yd{bottom:502.864502px;}
.y128{bottom:504.285000px;}
.y74{bottom:506.985000px;}
.y3c{bottom:508.785000px;}
.y5b{bottom:511.485000px;}
.y164{bottom:512.205000px;}
.y146{bottom:513.645000px;}
.y2d{bottom:514.140000px;}
.y176{bottom:515.085000px;}
.yc{bottom:520.864502px;}
.y110{bottom:524.985000px;}
.y3b{bottom:526.785000px;}
.y73{bottom:529.485000px;}
.y87{bottom:531.105000px;}
.y145{bottom:531.645000px;}
.y127{bottom:532.905000px;}
.y163{bottom:533.085000px;}
.y5a{bottom:533.985000px;}
.yb{bottom:538.864499px;}
.y3a{bottom:544.785000px;}
.y144{bottom:549.645000px;}
.y162{bottom:551.085000px;}
.y72{bottom:551.985000px;}
.y2c{bottom:553.020000px;}
.y59{bottom:556.485000px;}
.ya{bottom:556.864499px;}
.y39{bottom:562.785000px;}
.y143{bottom:567.645000px;}
.y126{bottom:569.445000px;}
.y161{bottom:572.145000px;}
.y9d{bottom:573.045000px;}
.y71{bottom:574.485000px;}
.y58{bottom:578.985000px;}
.y121{bottom:583.485000px;}
.y142{bottom:588.705000px;}
.y160{bottom:590.145000px;}
.y2b{bottom:592.260000px;}
.y70{bottom:596.985000px;}
.y38{bottom:599.685000px;}
.y57{bottom:601.485000px;}
.y125{bottom:605.985000px;}
.y141{bottom:606.705000px;}
.y15f{bottom:608.145000px;}
.y6f{bottom:619.530000px;}
.y37{bottom:622.230000px;}
.y56{bottom:624.030000px;}
.y9{bottom:626.610001px;}
.y140{bottom:627.630000px;}
.y2a{bottom:628.980000px;}
.y15e{bottom:629.250000px;}
.y86{bottom:641.130000px;}
.y6e{bottom:642.030000px;}
.y106{bottom:642.390000px;}
.y36{bottom:644.730000px;}
.y8{bottom:645.510000px;}
.y13f{bottom:645.630000px;}
.y55{bottom:646.530000px;}
.y15d{bottom:647.250000px;}
.y29{bottom:651.660000px;}
.y13e{bottom:663.630000px;}
.y6d{bottom:664.530000px;}
.y15c{bottom:665.250000px;}
.y7{bottom:666.771000px;}
.y35{bottom:667.230000px;}
.y54{bottom:669.030000px;}
.y9c{bottom:675.150000px;}
.y124{bottom:678.930000px;}
.y13d{bottom:681.630000px;}
.y175{bottom:683.250000px;}
.ydc{bottom:686.130000px;}
.y6c{bottom:687.030000px;}
.y34{bottom:689.730000px;}
.y53{bottom:691.530000px;}
.y13c{bottom:699.630000px;}
.y174{bottom:701.250000px;}
.y15b{bottom:704.130000px;}
.y119{bottom:708.630000px;}
.y6b{bottom:709.530000px;}
.y52{bottom:714.030000px;}
.y123{bottom:715.290000px;}
.y13b{bottom:717.630000px;}
.y15a{bottom:722.130000px;}
.y33{bottom:725.550000px;}
.yf5{bottom:731.130000px;}
.y6a{bottom:732.030000px;}
.y159{bottom:740.130000px;}
.y32{bottom:752.010000px;}
.y4{bottom:752.599495px;}
.y51{bottom:754.530000px;}
.y122{bottom:758.130000px;}
.y4f{bottom:821.880000px;}
.y30{bottom:826.560000px;}
.y2e{bottom:828.060015px;}
.y3{bottom:879.369000px;}
.y2{bottom:945.126001px;}
.y1{bottom:966.726000px;}
.h29{height:19.440000px;}
.h2a{height:19.476000px;}
.h28{height:19.620000px;}
.h2d{height:22.500000px;}
.h2c{height:22.536000px;}
.h2b{height:23.400000px;}
.h1f{height:31.500000px;}
.h26{height:31.536000px;}
.h24{height:31.680000px;}
.h7{height:32.130000px;}
.h20{height:32.940000px;}
.hc{height:35.087996px;}
.h9{height:35.135996px;}
.h1c{height:41.245200px;}
.h10{height:42.161760px;}
.h6{height:45.900000px;}
.h22{height:46.170000px;}
.hf{height:47.196000px;}
.h12{height:47.980898px;}
.h3{height:48.195000px;}
.ha{height:52.632000px;}
.h1e{height:53.709961px;}
.h2{height:55.080000px;}
.h1d{height:57.165120px;}
.h13{height:62.136000px;}
.h11{height:73.625760px;}
.h5{height:78.030000px;}
.h18{height:85.176000px;}
.h17{height:86.760000px;}
.h14{height:86.796000px;}
.hb{height:94.775993px;}
.h19{height:104.220000px;}
.h4{height:119.055004px;}
.h16{height:144.216000px;}
.h1a{height:164.190000px;}
.h15{height:173.550000px;}
.h1b{height:182.730000px;}
.h25{height:253.695000px;}
.h21{height:331.815000px;}
.h23{height:351.255000px;}
.h27{height:370.875000px;}
.h8{height:892.500000px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:50.220000px;}
.wd{width:50.256000px;}
.w9{width:64.800000px;}
.wf{width:65.016000px;}
.wb{width:73.800000px;}
.wa{width:73.836000px;}
.we{width:75.780000px;}
.w8{width:75.996000px;}
.wc{width:86.580000px;}
.w6{width:86.616000px;}
.w14{width:101.196000px;}
.w15{width:147.636000px;}
.w16{width:277.815000px;}
.w13{width:324.255000px;}
.w10{width:418.425000px;}
.w12{width:418.605000px;}
.w11{width:425.445000px;}
.w5{width:629.250000px;}
.w4{width:629.460000px;}
.w3{width:630.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:40.729845px;}
.xa{left:71.202165px;}
.x19{left:93.996000px;}
.xd{left:97.416000px;}
.x1c{left:99.936000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:110.196000px;}
.xc{left:113.616000px;}
.x1f{left:116.496000px;}
.x1e{left:132.696000px;}
.x18{left:139.896000px;}
.x13{left:183.990000px;}
.x9{left:198.391200px;}
.xe{left:200.235000px;}
.x4{left:203.484001px;}
.x14{left:234.255000px;}
.x1d{left:241.635000px;}
.xf{left:250.455000px;}
.x5{left:260.737500px;}
.x6{left:290.737500px;}
.x15{left:310.035000px;}
.xb{left:322.845000px;}
.x10{left:326.445000px;}
.x7{left:368.062500px;}
.x16{left:375.045000px;}
.x11{left:391.245000px;}
.x1b{left:418.245000px;}
.x17{left:448.890000px;}
.x3{left:454.959000px;}
.x12{left:465.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls12{letter-spacing:-1.126400pt;}
.ls14{letter-spacing:-0.880000pt;}
.ls33{letter-spacing:-0.656000pt;}
.ls13{letter-spacing:-0.352000pt;}
.ls25{letter-spacing:-0.272000pt;}
.ls7{letter-spacing:-0.238933pt;}
.lsd{letter-spacing:-0.226133pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls36{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.200533pt;}
.ls23{letter-spacing:-0.192533pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.191467pt;}
.ls1c{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.170667pt;}
.ls5{letter-spacing:-0.149333pt;}
.ls21{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.119467pt;}
.ls35{letter-spacing:-0.118400pt;}
.ls1a{letter-spacing:-0.102400pt;}
.lsf{letter-spacing:-0.098133pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.089600pt;}
.ls29{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.064001pt;}
.ls37{letter-spacing:0.069333pt;}
.ls34{letter-spacing:0.104320pt;}
.lsc{letter-spacing:0.110933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.147200pt;}
.ls6{letter-spacing:0.170667pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.202667pt;}
.ls22{letter-spacing:0.208000pt;}
.ls2b{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.230400pt;}
.ls9{letter-spacing:0.247467pt;}
.lsb{letter-spacing:0.302933pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.368000pt;}
.ls28{letter-spacing:0.384000pt;}
.ls32{letter-spacing:0.464000pt;}
.ls4{letter-spacing:8.853335pt;}
.ls3{letter-spacing:10.576001pt;}
.ls30{letter-spacing:58.490027pt;}
.ls24{letter-spacing:58.511360pt;}
.ls1f{letter-spacing:100.586667pt;}
.ls1b{letter-spacing:100.608000pt;}
.ls31{letter-spacing:754.816000pt;}
.ls26{letter-spacing:754.901333pt;}
.ls2d{letter-spacing:754.922667pt;}
.ls1d{letter-spacing:756.324693pt;}
.ls17{letter-spacing:756.346027pt;}
.wsc{word-spacing:-42.880000pt;}
.wsf{word-spacing:-12.800000pt;}
.ws13{word-spacing:-11.776000pt;}
.ws18{word-spacing:-9.824000pt;}
.ws16{word-spacing:-9.792000pt;}
.ws1c{word-spacing:-9.776000pt;}
.ws1a{word-spacing:-9.728000pt;}
.ws19{word-spacing:-9.664000pt;}
.ws14{word-spacing:-9.600000pt;}
.ws17{word-spacing:-9.584000pt;}
.ws11{word-spacing:-9.472000pt;}
.wse{word-spacing:-9.424000pt;}
.ws1b{word-spacing:-9.408000pt;}
.ws10{word-spacing:-9.376000pt;}
.ws15{word-spacing:-9.216000pt;}
.ws1d{word-spacing:-8.944000pt;}
.ws7{word-spacing:-8.836266pt;}
.ws8{word-spacing:-8.780799pt;}
.ws5{word-spacing:-8.661332pt;}
.ws1f{word-spacing:-8.645333pt;}
.ws4{word-spacing:-8.597334pt;}
.wsd{word-spacing:-8.576000pt;}
.ws6{word-spacing:-8.435199pt;}
.ws9{word-spacing:-8.413866pt;}
.wsa{word-spacing:-8.384533pt;}
.ws12{word-spacing:-8.383467pt;}
.ws1e{word-spacing:-8.374933pt;}
.wsb{word-spacing:-5.652480pt;}
.ws2{word-spacing:-0.454386pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.789341pt;}
.ws1{word-spacing:0.794685pt;}
._b{margin-left:-3.258666pt;}
._7{margin-left:-2.015532pt;}
._1{margin-left:-0.948216pt;}
._0{width:0.896000pt;}
._2{width:1.866667pt;}
._3{width:3.020814pt;}
._8{width:3.997227pt;}
._9{width:5.078732pt;}
._6{width:6.303446pt;}
._e{width:7.392000pt;}
._f{width:8.559532pt;}
._a{width:10.119380pt;}
._10{width:11.528620pt;}
._16{width:13.210667pt;}
._11{width:17.280511pt;}
._12{width:36.748289pt;}
._14{width:46.910977pt;}
._15{width:53.257132pt;}
._13{width:54.800597pt;}
._4{width:75.685019pt;}
._5{width:157.641123pt;}
._c{width:433.418667pt;}
._d{width:503.610667pt;}
.fsa{font-size:29.440000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666662pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:117.333325pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:4.000000pt;}
.y8e{bottom:4.800000pt;}
.ya6{bottom:4.960000pt;}
.yef{bottom:5.440000pt;}
.y11f{bottom:5.600000pt;}
.y2f{bottom:6.773333pt;}
.y28{bottom:10.293333pt;}
.y107{bottom:10.880000pt;}
.ydb{bottom:11.200000pt;}
.y118{bottom:11.226667pt;}
.ya1{bottom:11.840000pt;}
.ydd{bottom:13.440000pt;}
.y8d{bottom:20.320000pt;}
.y100{bottom:22.720000pt;}
.yee{bottom:22.880000pt;}
.y27{bottom:23.413333pt;}
.yb1{bottom:23.840000pt;}
.ya0{bottom:27.200000pt;}
.y8a{bottom:28.000000pt;}
.ybf{bottom:32.000000pt;}
.ya2{bottom:34.880000pt;}
.y26{bottom:35.573333pt;}
.y88{bottom:35.680000pt;}
.yb0{bottom:39.360000pt;}
.yb9{bottom:39.680000pt;}
.yed{bottom:40.160000pt;}
.y9f{bottom:42.760000pt;}
.y89{bottom:43.360000pt;}
.ya7{bottom:43.520000pt;}
.y9b{bottom:45.760000pt;}
.ybd{bottom:47.520000pt;}
.y8c{bottom:51.040000pt;}
.ya4{bottom:51.200000pt;}
.y98{bottom:53.480000pt;}
.yaf{bottom:54.720000pt;}
.yb8{bottom:55.200000pt;}
.yff{bottom:57.440000pt;}
.yec{bottom:57.600000pt;}
.y109{bottom:57.626667pt;}
.y9e{bottom:58.120000pt;}
.y6{bottom:59.133337pt;}
.y99{bottom:61.160000pt;}
.yaa{bottom:62.400000pt;}
.ybc{bottom:62.880000pt;}
.y8b{bottom:66.560000pt;}
.y97{bottom:68.840000pt;}
.yae{bottom:70.240000pt;}
.yb5{bottom:70.560000pt;}
.y95{bottom:74.240000pt;}
.yeb{bottom:74.880000pt;}
.yfe{bottom:74.906667pt;}
.y9a{bottom:76.680000pt;}
.ya9{bottom:77.920000pt;}
.yb3{bottom:78.240000pt;}
.y94{bottom:81.946667pt;}
.ya5{bottom:82.080000pt;}
.yad{bottom:85.600000pt;}
.yb4{bottom:86.080000pt;}
.y5{bottom:86.333337pt;}
.yfd{bottom:92.186667pt;}
.y11e{bottom:92.320000pt;}
.yea{bottom:92.346667pt;}
.ybb{bottom:93.760000pt;}
.y93{bottom:97.466667pt;}
.yac{bottom:100.960000pt;}
.yb7{bottom:101.440000pt;}
.yba{bottom:109.120000pt;}
.ye9{bottom:109.626667pt;}
.y92{bottom:112.826667pt;}
.yab{bottom:116.480000pt;}
.yb6{bottom:116.800000pt;}
.y25{bottom:123.790666pt;}
.ybe{bottom:124.520000pt;}
.ye8{bottom:126.906667pt;}
.y11d{bottom:127.066667pt;}
.y91{bottom:128.186667pt;}
.y50{bottom:138.106667pt;}
.y31{bottom:138.906667pt;}
.y90{bottom:143.706667pt;}
.yfc{bottom:144.186667pt;}
.ye7{bottom:144.346667pt;}
.y12f{bottom:149.626667pt;}
.y83{bottom:150.586667pt;}
.y85{bottom:154.586667pt;}
.y158{bottom:157.786667pt;}
.y96{bottom:159.546667pt;}
.ye6{bottom:161.626667pt;}
.y139{bottom:163.226667pt;}
.y4e{bottom:164.186667pt;}
.y12b{bottom:165.946667pt;}
.y12e{bottom:169.626667pt;}
.y82{bottom:170.586667pt;}
.yf4{bottom:172.186667pt;}
.yd9{bottom:172.666667pt;}
.y157{bottom:173.786667pt;}
.y69{bottom:174.586667pt;}
.y1c{bottom:175.052000pt;}
.yfb{bottom:178.906667pt;}
.ye5{bottom:179.066667pt;}
.y4d{bottom:180.186667pt;}
.y10f{bottom:182.746667pt;}
.y138{bottom:183.226667pt;}
.y24{bottom:186.238666pt;}
.y1b{bottom:186.252002pt;}
.y156{bottom:189.786667pt;}
.y81{bottom:190.586667pt;}
.yf3{bottom:192.186667pt;}
.yd8{bottom:192.666667pt;}
.y68{bottom:194.586667pt;}
.y4c{bottom:196.186667pt;}
.ye4{bottom:196.346667pt;}
.y23{bottom:197.438668pt;}
.y1a{bottom:197.452004pt;}
.y12d{bottom:197.626667pt;}
.y13a{bottom:198.586667pt;}
.y173{bottom:201.786667pt;}
.y10e{bottom:202.746667pt;}
.y137{bottom:203.226667pt;}
.y155{bottom:205.786667pt;}
.ycd{bottom:206.586667pt;}
.y22{bottom:208.638670pt;}
.y19{bottom:208.651996pt;}
.y80{bottom:210.586667pt;}
.y4b{bottom:212.226667pt;}
.yd7{bottom:212.706667pt;}
.ye3{bottom:213.626667pt;}
.y11c{bottom:213.786667pt;}
.y67{bottom:214.626667pt;}
.y105{bottom:214.946667pt;}
.y172{bottom:217.826667pt;}
.y154{bottom:221.826667pt;}
.y10d{bottom:222.786667pt;}
.ycc{bottom:226.626667pt;}
.y4a{bottom:228.226667pt;}
.y136{bottom:228.866667pt;}
.y130{bottom:229.666667pt;}
.y7f{bottom:230.626667pt;}
.yfa{bottom:230.946667pt;}
.y21{bottom:231.038664pt;}
.y18{bottom:231.052000pt;}
.ye2{bottom:231.066667pt;}
.yf2{bottom:232.226667pt;}
.yd6{bottom:232.706667pt;}
.y171{bottom:233.826667pt;}
.y66{bottom:234.626667pt;}
.y104{bottom:234.946667pt;}
.y153{bottom:237.826667pt;}
.yc1{bottom:238.626667pt;}
.ya8{bottom:240.706667pt;}
.y20{bottom:242.238666pt;}
.y17{bottom:242.252002pt;}
.y10c{bottom:242.786667pt;}
.y49{bottom:244.226667pt;}
.ycb{bottom:246.626667pt;}
.ye1{bottom:248.346667pt;}
.yf9{bottom:248.386667pt;}
.y7e{bottom:250.626667pt;}
.yf1{bottom:252.226667pt;}
.y170{bottom:252.546667pt;}
.yd5{bottom:252.706667pt;}
.y1f{bottom:253.438668pt;}
.y16{bottom:253.451999pt;}
.y65{bottom:254.626667pt;}
.y103{bottom:254.946667pt;}
.y152{bottom:256.546667pt;}
.y120{bottom:257.666667pt;}
.y48{bottom:260.226667pt;}
.y10b{bottom:262.786667pt;}
.y135{bottom:263.906667pt;}
.yf8{bottom:265.666667pt;}
.ye0{bottom:265.826667pt;}
.yca{bottom:266.626667pt;}
.y16f{bottom:268.546667pt;}
.y7d{bottom:270.626667pt;}
.yf0{bottom:272.226667pt;}
.y151{bottom:272.546667pt;}
.yd4{bottom:272.706667pt;}
.y84{bottom:273.826667pt;}
.y64{bottom:274.626667pt;}
.y102{bottom:274.946667pt;}
.y1e{bottom:275.838667pt;}
.y15{bottom:275.852001pt;}
.y47{bottom:276.226667pt;}
.y116{bottom:281.186667pt;}
.y10a{bottom:282.786667pt;}
.ydf{bottom:283.106667pt;}
.yc9{bottom:286.626667pt;}
.y1d{bottom:287.038667pt;}
.y14{bottom:287.052000pt;}
.y16e{bottom:287.266667pt;}
.y150{bottom:288.546667pt;}
.y7c{bottom:290.626667pt;}
.y46{bottom:292.226667pt;}
.yd3{bottom:292.706667pt;}
.y63{bottom:294.626667pt;}
.y101{bottom:294.946667pt;}
.yde{bottom:297.826667pt;}
.y134{bottom:298.946667pt;}
.yf7{bottom:300.386667pt;}
.y11b{bottom:300.546667pt;}
.y115{bottom:301.186667pt;}
.y8f{bottom:302.786667pt;}
.y14f{bottom:304.546667pt;}
.y16d{bottom:305.826667pt;}
.yc8{bottom:306.626667pt;}
.y45{bottom:308.226667pt;}
.y13{bottom:309.452000pt;}
.y7b{bottom:310.626667pt;}
.yd2{bottom:312.706667pt;}
.y62{bottom:314.626667pt;}
.y11a{bottom:317.826667pt;}
.yf6{bottom:320.546667pt;}
.y114{bottom:321.186667pt;}
.y16c{bottom:321.826667pt;}
.y14e{bottom:323.266667pt;}
.y44{bottom:324.226667pt;}
.yc7{bottom:326.626667pt;}
.y108{bottom:328.386667pt;}
.y7a{bottom:330.626667pt;}
.yd1{bottom:332.706667pt;}
.y133{bottom:334.146667pt;}
.y61{bottom:334.626667pt;}
.y14d{bottom:339.266667pt;}
.y43{bottom:340.226667pt;}
.y16b{bottom:340.546667pt;}
.y113{bottom:341.186667pt;}
.y12{bottom:343.809333pt;}
.yc6{bottom:346.626667pt;}
.y79{bottom:350.626667pt;}
.yd0{bottom:352.706667pt;}
.y60{bottom:354.626667pt;}
.y14c{bottom:355.266667pt;}
.y42{bottom:356.226667pt;}
.y16a{bottom:356.546667pt;}
.y112{bottom:361.186667pt;}
.y11{bottom:362.706666pt;}
.yc5{bottom:366.626667pt;}
.y132{bottom:369.186667pt;}
.y78{bottom:370.626667pt;}
.y14b{bottom:371.266667pt;}
.y41{bottom:372.226667pt;}
.y169{bottom:372.546667pt;}
.ycf{bottom:372.706667pt;}
.y5f{bottom:374.626667pt;}
.y178{bottom:375.266667pt;}
.y117{bottom:377.186667pt;}
.yc4{bottom:386.653333pt;}
.y14a{bottom:387.293333pt;}
.y40{bottom:388.253333pt;}
.y77{bottom:390.653333pt;}
.y168{bottom:391.293333pt;}
.yce{bottom:392.733333pt;}
.y5e{bottom:394.653333pt;}
.yc0{bottom:397.053333pt;}
.y10{bottom:398.990669pt;}
.ya3{bottom:401.693333pt;}
.y3f{bottom:404.253333pt;}
.y149{bottom:405.853333pt;}
.yc3{bottom:406.653333pt;}
.y167{bottom:407.293333pt;}
.y12a{bottom:408.253333pt;}
.yda{bottom:408.733333pt;}
.y131{bottom:409.853333pt;}
.y76{bottom:410.653333pt;}
.y5d{bottom:414.653333pt;}
.yf{bottom:414.990669pt;}
.y3e{bottom:420.253333pt;}
.y148{bottom:421.853333pt;}
.yb2{bottom:422.653333pt;}
.y166{bottom:423.293333pt;}
.yc2{bottom:426.653333pt;}
.y129{bottom:428.253333pt;}
.y75{bottom:430.653333pt;}
.ye{bottom:430.990669pt;}
.y5c{bottom:434.653333pt;}
.y3d{bottom:436.253333pt;}
.y147{bottom:437.853333pt;}
.y165{bottom:439.293333pt;}
.y177{bottom:441.853333pt;}
.y111{bottom:446.653333pt;}
.yd{bottom:446.990669pt;}
.y128{bottom:448.253333pt;}
.y74{bottom:450.653333pt;}
.y3c{bottom:452.253333pt;}
.y5b{bottom:454.653333pt;}
.y164{bottom:455.293333pt;}
.y146{bottom:456.573333pt;}
.y2d{bottom:457.013333pt;}
.y176{bottom:457.853333pt;}
.yc{bottom:462.990669pt;}
.y110{bottom:466.653333pt;}
.y3b{bottom:468.253333pt;}
.y73{bottom:470.653333pt;}
.y87{bottom:472.093333pt;}
.y145{bottom:472.573333pt;}
.y127{bottom:473.693333pt;}
.y163{bottom:473.853333pt;}
.y5a{bottom:474.653333pt;}
.yb{bottom:478.990666pt;}
.y3a{bottom:484.253333pt;}
.y144{bottom:488.573333pt;}
.y162{bottom:489.853333pt;}
.y72{bottom:490.653333pt;}
.y2c{bottom:491.573333pt;}
.y59{bottom:494.653333pt;}
.ya{bottom:494.990666pt;}
.y39{bottom:500.253333pt;}
.y143{bottom:504.573333pt;}
.y126{bottom:506.173333pt;}
.y161{bottom:508.573333pt;}
.y9d{bottom:509.373333pt;}
.y71{bottom:510.653333pt;}
.y58{bottom:514.653333pt;}
.y121{bottom:518.653333pt;}
.y142{bottom:523.293333pt;}
.y160{bottom:524.573333pt;}
.y2b{bottom:526.453333pt;}
.y70{bottom:530.653333pt;}
.y38{bottom:533.053333pt;}
.y57{bottom:534.653333pt;}
.y125{bottom:538.653333pt;}
.y141{bottom:539.293333pt;}
.y15f{bottom:540.573333pt;}
.y6f{bottom:550.693333pt;}
.y37{bottom:553.093333pt;}
.y56{bottom:554.693333pt;}
.y9{bottom:556.986668pt;}
.y140{bottom:557.893333pt;}
.y2a{bottom:559.093333pt;}
.y15e{bottom:559.333333pt;}
.y86{bottom:569.893333pt;}
.y6e{bottom:570.693333pt;}
.y106{bottom:571.013333pt;}
.y36{bottom:573.093333pt;}
.y8{bottom:573.786667pt;}
.y13f{bottom:573.893333pt;}
.y55{bottom:574.693333pt;}
.y15d{bottom:575.333333pt;}
.y29{bottom:579.253333pt;}
.y13e{bottom:589.893333pt;}
.y6d{bottom:590.693333pt;}
.y15c{bottom:591.333333pt;}
.y7{bottom:592.685334pt;}
.y35{bottom:593.093333pt;}
.y54{bottom:594.693333pt;}
.y9c{bottom:600.133333pt;}
.y124{bottom:603.493333pt;}
.y13d{bottom:605.893333pt;}
.y175{bottom:607.333333pt;}
.ydc{bottom:609.893333pt;}
.y6c{bottom:610.693333pt;}
.y34{bottom:613.093333pt;}
.y53{bottom:614.693333pt;}
.y13c{bottom:621.893333pt;}
.y174{bottom:623.333333pt;}
.y15b{bottom:625.893333pt;}
.y119{bottom:629.893333pt;}
.y6b{bottom:630.693333pt;}
.y52{bottom:634.693333pt;}
.y123{bottom:635.813333pt;}
.y13b{bottom:637.893333pt;}
.y15a{bottom:641.893333pt;}
.y33{bottom:644.933333pt;}
.yf5{bottom:649.893333pt;}
.y6a{bottom:650.693333pt;}
.y159{bottom:657.893333pt;}
.y32{bottom:668.453333pt;}
.y4{bottom:668.977329pt;}
.y51{bottom:670.693333pt;}
.y122{bottom:673.893333pt;}
.y4f{bottom:730.560000pt;}
.y30{bottom:734.720000pt;}
.y2e{bottom:736.053347pt;}
.y3{bottom:781.661334pt;}
.y2{bottom:840.112001pt;}
.y1{bottom:859.312000pt;}
.h29{height:17.280000pt;}
.h2a{height:17.312000pt;}
.h28{height:17.440000pt;}
.h2d{height:20.000000pt;}
.h2c{height:20.032000pt;}
.h2b{height:20.800000pt;}
.h1f{height:28.000000pt;}
.h26{height:28.032000pt;}
.h24{height:28.160000pt;}
.h7{height:28.560000pt;}
.h20{height:29.280000pt;}
.hc{height:31.189330pt;}
.h9{height:31.231997pt;}
.h1c{height:36.662400pt;}
.h10{height:37.477120pt;}
.h6{height:40.800000pt;}
.h22{height:41.040000pt;}
.hf{height:41.952000pt;}
.h12{height:42.649687pt;}
.h3{height:42.840000pt;}
.ha{height:46.784000pt;}
.h1e{height:47.742188pt;}
.h2{height:48.960000pt;}
.h1d{height:50.813440pt;}
.h13{height:55.232000pt;}
.h11{height:65.445120pt;}
.h5{height:69.360000pt;}
.h18{height:75.712000pt;}
.h17{height:77.120000pt;}
.h14{height:77.152000pt;}
.hb{height:84.245327pt;}
.h19{height:92.640000pt;}
.h4{height:105.826671pt;}
.h16{height:128.192000pt;}
.h1a{height:145.946667pt;}
.h15{height:154.266667pt;}
.h1b{height:162.426667pt;}
.h25{height:225.506667pt;}
.h21{height:294.946667pt;}
.h23{height:312.226667pt;}
.h27{height:329.666667pt;}
.h8{height:793.333333pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:44.640000pt;}
.wd{width:44.672000pt;}
.w9{width:57.600000pt;}
.wf{width:57.792000pt;}
.wb{width:65.600000pt;}
.wa{width:65.632000pt;}
.we{width:67.360000pt;}
.w8{width:67.552000pt;}
.wc{width:76.960000pt;}
.w6{width:76.992000pt;}
.w14{width:89.952000pt;}
.w15{width:131.232000pt;}
.w16{width:246.946667pt;}
.w13{width:288.226667pt;}
.w10{width:371.933333pt;}
.w12{width:372.093333pt;}
.w11{width:378.173333pt;}
.w5{width:559.333333pt;}
.w4{width:559.520000pt;}
.w3{width:560.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:36.204307pt;}
.xa{left:63.290813pt;}
.x19{left:83.552000pt;}
.xd{left:86.592000pt;}
.x1c{left:88.832000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:97.952000pt;}
.xc{left:100.992000pt;}
.x1f{left:103.552000pt;}
.x1e{left:117.952000pt;}
.x18{left:124.352000pt;}
.x13{left:163.546667pt;}
.x9{left:176.347733pt;}
.xe{left:177.986667pt;}
.x4{left:180.874667pt;}
.x14{left:208.226667pt;}
.x1d{left:214.786667pt;}
.xf{left:222.626667pt;}
.x5{left:231.766667pt;}
.x6{left:258.433333pt;}
.x15{left:275.586667pt;}
.xb{left:286.973333pt;}
.x10{left:290.173333pt;}
.x7{left:327.166667pt;}
.x16{left:333.373333pt;}
.x11{left:347.773333pt;}
.x1b{left:371.773333pt;}
.x17{left:399.013333pt;}
.x3{left:404.408000pt;}
.x12{left:413.413333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  