
    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_aa1faf8ddcaf7b9794e79a1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_858bdf1a5960cfa19ed156d2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3b72e8c56c9cf5ffb7ba8726.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_01feee428a4e019f1ceebb4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_8354c577bf40e4a71e6b48bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.754395;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_7df4e377a344a9a92198c086.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_52d2c13c18f5b33f6949ed5a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ec268bcf2ed4ce019ab26c75.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_db31ca08707739b8742706be.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_ca91a81810ac8e25654a4994.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_6b4237f0e3be22b5124fe81a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_23eb90ca44225345fc5bbef7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5b9714818c116193c7c4c309.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3a87b94b38fa0803f2f73db8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_cdffd9c4bdb006f980b33e4e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8041ea0dd52454d1980ef141.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.914062;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:ff15;src:url('chunks/assets/font_5346f675452b6b286429aa96.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.914062;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:ff16;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_957dee8e0a99a21645d79d9e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.934082;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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls13{letter-spacing:-4.116000px;}
.ls25{letter-spacing:-1.698000px;}
.ls14{letter-spacing:-1.494000px;}
.ls20{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.386000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.298200px;}
.ls1f{letter-spacing:-0.259800px;}
.ls2a{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.127200px;}
.ls1b{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.018000px;}
.lsd{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000003px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.087600px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsc{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.439920px;}
.ls5{letter-spacing:0.447840px;}
.ls12{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.786240px;}
.ls26{letter-spacing:6.660000px;}
.ls16{letter-spacing:13.860000px;}
.ls28{letter-spacing:16.506720px;}
.lsa{letter-spacing:16.740000px;}
.ls8{letter-spacing:25.380000px;}
.lsb{letter-spacing:36.180000px;}
.ls27{letter-spacing:46.026720px;}
.ls17{letter-spacing:54.864000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.686800px;}
.ws13{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.328000px;}
.ws19{word-spacing:-14.166000px;}
.ws11{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.554000px;}
.wsa{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.242000px;}
.ws16{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.824000px;}
.wsb{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.786880px;}
.ws14{word-spacing:-8.280000px;}
.ws3{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._25{margin-left:-8.178240px;}
._f{margin-left:-7.134480px;}
._22{margin-left:-5.857200px;}
._3{margin-left:-4.635360px;}
._4{margin-left:-3.406320px;}
._b{margin-left:-2.188080px;}
._1{margin-left:-1.152000px;}
._0{width:1.146000px;}
._2{width:2.155440px;}
._5{width:3.466080px;}
._7{width:5.433840px;}
._6{width:6.812640px;}
._a{width:8.584800px;}
._9{width:9.681120px;}
._8{width:11.480160px;}
._1f{width:12.657840px;}
._e{width:13.722720px;}
._10{width:14.763600px;}
._1b{width:15.941760px;}
._15{width:17.214000px;}
._d{width:18.266880px;}
._c{width:19.313280px;}
._1e{width:21.274560px;}
._1d{width:22.469760px;}
._21{width:23.568240px;}
._14{width:24.960480px;}
._13{width:26.240640px;}
._12{width:27.872400px;}
._16{width:29.096640px;}
._11{width:30.455520px;}
._1c{width:31.863600px;}
._17{width:37.779840px;}
._20{width:38.847840px;}
._19{width:40.845360px;}
._18{width:42.727440px;}
._1a{width:63.793680px;}
._23{width:240.403920px;}
._24{width:241.500720px;}
.fc8{color:rgb(32,36,41);}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fca{color:rgb(34,34,34);}
.fc9{color:rgb(89,89,89);}
.fc6{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y57{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.y55{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.ye1{bottom:17.280000px;}
.y5{bottom:17.316000px;}
.y9b{bottom:17.460000px;}
.y3{bottom:20.016000px;}
.y9a{bottom:20.160000px;}
.y51{bottom:20.340000px;}
.yea{bottom:21.240000px;}
.y56{bottom:22.320000px;}
.y18{bottom:23.805000px;}
.y54{bottom:25.380000px;}
.yc{bottom:30.240000px;}
.y6{bottom:36.900000px;}
.y50{bottom:37.620000px;}
.yef{bottom:38.340000px;}
.ye6{bottom:39.240000px;}
.y17{bottom:39.645000px;}
.yb{bottom:46.440000px;}
.y16{bottom:52.785000px;}
.y4f{bottom:54.900000px;}
.ye2{bottom:58.680000px;}
.y2{bottom:59.400000px;}
.y15{bottom:62.685000px;}
.y4e{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y14{bottom:77.265000px;}
.y9c{bottom:80.676000px;}
.ye0{bottom:81.216000px;}
.y4d{bottom:89.460000px;}
.y9{bottom:93.090000px;}
.y99{bottom:103.176000px;}
.y13{bottom:103.545000px;}
.y4c{bottom:106.785000px;}
.y8{bottom:111.270000px;}
.y5c{bottom:112.536000px;}
.y98{bottom:115.056000px;}
.y4b{bottom:123.885000px;}
.y5b{bottom:129.816000px;}
.y97{bottom:132.336000px;}
.y157{bottom:136.296000px;}
.y12{bottom:136.665000px;}
.y120{bottom:139.896000px;}
.y4a{bottom:141.165000px;}
.y5a{bottom:147.096000px;}
.y96{bottom:153.570000px;}
.y11f{bottom:157.170000px;}
.y11{bottom:158.085000px;}
.y49{bottom:158.445000px;}
.yc1{bottom:160.410000px;}
.y59{bottom:164.190000px;}
.y156{bottom:170.670000px;}
.y95{bottom:170.850000px;}
.y11e{bottom:174.450000px;}
.y48{bottom:175.725000px;}
.y58{bottom:181.470000px;}
.y155{bottom:187.950000px;}
.y94{bottom:188.130000px;}
.y11d{bottom:191.550000px;}
.y47{bottom:193.005000px;}
.y53{bottom:195.510000px;}
.y154{bottom:205.230000px;}
.y93{bottom:205.410000px;}
.y11c{bottom:208.830000px;}
.y46{bottom:210.285000px;}
.y30{bottom:218.385000px;}
.y92{bottom:222.510000px;}
.y11b{bottom:226.110000px;}
.y45{bottom:227.385000px;}
.y1b{bottom:232.230000px;}
.y2f{bottom:233.685000px;}
.y91{bottom:239.790000px;}
.y11a{bottom:243.390000px;}
.y44{bottom:244.665000px;}
.y2e{bottom:251.325000px;}
.y153{bottom:256.890000px;}
.y119{bottom:260.670000px;}
.y43{bottom:261.945000px;}
.y2d{bottom:268.605000px;}
.y90{bottom:271.830000px;}
.y152{bottom:274.170000px;}
.y118{bottom:277.950000px;}
.y42{bottom:279.225000px;}
.y2c{bottom:285.885000px;}
.y8f{bottom:289.110000px;}
.y151{bottom:291.450000px;}
.y117{bottom:295.050000px;}
.yde{bottom:295.410000px;}
.y41{bottom:296.505000px;}
.y2b{bottom:303.705000px;}
.y8e{bottom:306.390000px;}
.y150{bottom:308.730000px;}
.y116{bottom:312.330000px;}
.y40{bottom:313.605000px;}
.y2a{bottom:320.985000px;}
.y8d{bottom:323.490000px;}
.y14f{bottom:326.010000px;}
.y115{bottom:329.610000px;}
.y3f{bottom:330.885000px;}
.y29{bottom:338.445000px;}
.y8c{bottom:340.815000px;}
.y14e{bottom:343.335000px;}
.y114{bottom:346.935000px;}
.y3e{bottom:348.165000px;}
.y28{bottom:355.905000px;}
.y8b{bottom:358.095000px;}
.y14d{bottom:360.435000px;}
.y113{bottom:364.215000px;}
.y3d{bottom:365.445000px;}
.y27{bottom:373.215000px;}
.y8a{bottom:375.375000px;}
.y14c{bottom:377.715000px;}
.y112{bottom:381.315000px;}
.y3c{bottom:382.755000px;}
.y26{bottom:390.675000px;}
.y89{bottom:392.655000px;}
.y14b{bottom:394.995000px;}
.y111{bottom:398.595000px;}
.y3b{bottom:400.035000px;}
.y25{bottom:407.955000px;}
.y88{bottom:409.935000px;}
.y14a{bottom:412.275000px;}
.y110{bottom:415.875000px;}
.y3a{bottom:417.135000px;}
.y24{bottom:425.415000px;}
.y149{bottom:429.555000px;}
.y87{bottom:429.735000px;}
.y10f{bottom:433.155000px;}
.y39{bottom:434.415000px;}
.y23{bottom:442.875000px;}
.y148{bottom:446.835000px;}
.y86{bottom:447.015000px;}
.y10e{bottom:450.435000px;}
.y38{bottom:451.695000px;}
.yc0{bottom:459.975000px;}
.y22{bottom:460.155000px;}
.y147{bottom:463.935000px;}
.y85{bottom:464.295000px;}
.y10d{bottom:467.715000px;}
.y37{bottom:468.975000px;}
.ybf{bottom:477.255000px;}
.y21{bottom:477.615000px;}
.y146{bottom:481.215000px;}
.y84{bottom:481.575000px;}
.y10c{bottom:484.815000px;}
.y36{bottom:486.255000px;}
.y20{bottom:495.075000px;}
.ybe{bottom:497.955000px;}
.y145{bottom:498.495000px;}
.y83{bottom:498.855000px;}
.y10b{bottom:502.095000px;}
.y35{bottom:503.535000px;}
.y1f{bottom:512.355000px;}
.ybd{bottom:515.595000px;}
.y144{bottom:515.775000px;}
.y82{bottom:516.135000px;}
.y10a{bottom:519.375000px;}
.y34{bottom:520.635000px;}
.y1e{bottom:529.995000px;}
.ybc{bottom:532.875000px;}
.y143{bottom:533.055000px;}
.y81{bottom:533.235000px;}
.y109{bottom:536.655000px;}
.y33{bottom:537.915000px;}
.ybb{bottom:550.155000px;}
.y142{bottom:550.335000px;}
.y80{bottom:550.515000px;}
.y108{bottom:553.935000px;}
.y32{bottom:555.195000px;}
.y1d{bottom:557.355000px;}
.yba{bottom:567.435000px;}
.y7f{bottom:567.795000px;}
.y141{bottom:570.135000px;}
.y107{bottom:571.215000px;}
.y31{bottom:572.475000px;}
.y1c{bottom:575.175000px;}
.yb9{bottom:584.715000px;}
.y7e{bottom:585.075000px;}
.y106{bottom:588.315000px;}
.y140{bottom:590.115000px;}
.y7d{bottom:602.355000px;}
.y105{bottom:605.625000px;}
.y13f{bottom:607.425000px;}
.yb8{bottom:617.685000px;}
.y7c{bottom:619.665000px;}
.y104{bottom:622.905000px;}
.y13e{bottom:624.705000px;}
.yb7{bottom:635.145000px;}
.y7b{bottom:636.765000px;}
.y103{bottom:640.185000px;}
.ydd{bottom:640.545000px;}
.y13d{bottom:641.985000px;}
.yb6{bottom:652.425000px;}
.y7a{bottom:654.045000px;}
.y16d{bottom:655.305000px;}
.y102{bottom:657.465000px;}
.ydc{bottom:657.825000px;}
.y13c{bottom:659.265000px;}
.yb5{bottom:669.705000px;}
.y79{bottom:671.325000px;}
.y16c{bottom:672.585000px;}
.y101{bottom:674.565000px;}
.ydb{bottom:675.105000px;}
.y13b{bottom:676.545000px;}
.yb4{bottom:686.985000px;}
.y78{bottom:688.605000px;}
.y16b{bottom:689.865000px;}
.y100{bottom:691.845000px;}
.yda{bottom:692.385000px;}
.y13a{bottom:693.645000px;}
.yb3{bottom:704.085000px;}
.y77{bottom:705.885000px;}
.y16a{bottom:707.145000px;}
.yd9{bottom:709.665000px;}
.y139{bottom:710.925000px;}
.yff{bottom:712.725000px;}
.yb2{bottom:721.365000px;}
.y76{bottom:723.165000px;}
.y169{bottom:724.425000px;}
.yd8{bottom:726.765000px;}
.y138{bottom:728.205000px;}
.yfe{bottom:730.365000px;}
.yb1{bottom:738.645000px;}
.y75{bottom:740.265000px;}
.y168{bottom:741.525000px;}
.yd7{bottom:744.045000px;}
.yfd{bottom:747.645000px;}
.y137{bottom:748.185000px;}
.yb0{bottom:755.925000px;}
.y74{bottom:757.545000px;}
.y167{bottom:758.805000px;}
.yd6{bottom:761.325000px;}
.yfc{bottom:762.405000px;}
.y136{bottom:769.065000px;}
.yaf{bottom:773.205000px;}
.y73{bottom:774.825000px;}
.y166{bottom:776.085000px;}
.yd5{bottom:778.605000px;}
.yfb{bottom:780.405000px;}
.y135{bottom:786.705000px;}
.yae{bottom:790.485000px;}
.y72{bottom:792.105000px;}
.y165{bottom:793.365000px;}
.yd4{bottom:795.885000px;}
.yfa{bottom:798.405000px;}
.y134{bottom:803.985000px;}
.yad{bottom:807.585000px;}
.y71{bottom:809.385000px;}
.y164{bottom:810.645000px;}
.yd3{bottom:812.985000px;}
.yf9{bottom:816.405000px;}
.y19{bottom:818.745000px;}
.y133{bottom:821.085000px;}
.y70{bottom:826.485000px;}
.y163{bottom:827.925000px;}
.yac{bottom:828.465000px;}
.yd2{bottom:830.265000px;}
.yf8{bottom:837.645000px;}
.y132{bottom:838.365000px;}
.y6f{bottom:843.765000px;}
.y162{bottom:845.025000px;}
.yab{bottom:846.105000px;}
.yd1{bottom:847.545000px;}
.y10{bottom:848.265000px;}
.yf7{bottom:854.925000px;}
.y131{bottom:855.645000px;}
.y6e{bottom:861.045000px;}
.y161{bottom:862.305000px;}
.yd0{bottom:864.825000px;}
.yaa{bottom:867.525000px;}
.yf6{bottom:872.070000px;}
.y130{bottom:872.970000px;}
.y6d{bottom:878.370000px;}
.y160{bottom:879.630000px;}
.ycf{bottom:882.150000px;}
.ya9{bottom:888.810000px;}
.yf5{bottom:889.350000px;}
.y12f{bottom:890.250000px;}
.y6c{bottom:895.650000px;}
.y15f{bottom:896.910000px;}
.yce{bottom:899.430000px;}
.yf4{bottom:906.630000px;}
.y12e{bottom:907.530000px;}
.ya8{bottom:910.230000px;}
.y6b{bottom:912.930000px;}
.y15e{bottom:914.190000px;}
.ycd{bottom:916.530000px;}
.yf3{bottom:923.910000px;}
.y12d{bottom:924.630000px;}
.y6a{bottom:930.030000px;}
.ya7{bottom:931.470000px;}
.ycc{bottom:933.810000px;}
.yf2{bottom:941.190000px;}
.y12c{bottom:941.910000px;}
.y69{bottom:947.310000px;}
.y15d{bottom:948.570000px;}
.ycb{bottom:951.090000px;}
.ya6{bottom:952.890000px;}
.yf1{bottom:958.470000px;}
.y12b{bottom:959.190000px;}
.y68{bottom:964.590000px;}
.y15c{bottom:965.850000px;}
.yca{bottom:968.370000px;}
.yee{bottom:973.230000px;}
.ya5{bottom:974.130000px;}
.y12a{bottom:976.470000px;}
.y67{bottom:981.870000px;}
.y15b{bottom:983.130000px;}
.yc9{bottom:985.650000px;}
.y129{bottom:993.750000px;}
.ya4{bottom:995.550000px;}
.y66{bottom:999.150000px;}
.y15a{bottom:1000.410000px;}
.yc8{bottom:1002.930000px;}
.yf0{bottom:1008.330000px;}
.y128{bottom:1013.550000px;}
.y65{bottom:1016.430000px;}
.ya3{bottom:1016.970000px;}
.y159{bottom:1017.690000px;}
.yc7{bottom:1020.030000px;}
.ye{bottom:1021.470000px;}
.yec{bottom:1026.330000px;}
.y64{bottom:1033.530000px;}
.y127{bottom:1034.430000px;}
.y158{bottom:1034.970000px;}
.yc6{bottom:1037.310000px;}
.ya2{bottom:1038.210000px;}
.yed{bottom:1044.330000px;}
.y7{bottom:1046.850000px;}
.y63{bottom:1050.810000px;}
.y126{bottom:1052.070000px;}
.yc5{bottom:1054.590000px;}
.ya1{bottom:1059.630000px;}
.ye9{bottom:1062.330000px;}
.y62{bottom:1068.090000px;}
.y125{bottom:1069.350000px;}
.yc4{bottom:1071.870000px;}
.yeb{bottom:1080.330000px;}
.ya0{bottom:1080.870000px;}
.y61{bottom:1085.370000px;}
.y124{bottom:1086.630000px;}
.yc3{bottom:1089.150000px;}
.ye5{bottom:1098.330000px;}
.y9f{bottom:1102.290000px;}
.y60{bottom:1102.650000px;}
.y123{bottom:1103.910000px;}
.yc2{bottom:1106.430000px;}
.ye8{bottom:1116.330000px;}
.y5f{bottom:1119.930000px;}
.y122{bottom:1121.190000px;}
.y9e{bottom:1123.530000px;}
.ye7{bottom:1134.330000px;}
.y5e{bottom:1137.030000px;}
.y121{bottom:1138.320000px;}
.y9d{bottom:1140.840000px;}
.y5d{bottom:1154.340000px;}
.ye4{bottom:1155.600000px;}
.ye3{bottom:1172.880000px;}
.ydf{bottom:1191.780000px;}
.y1{bottom:1245.780000px;}
.h25{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:25.020000px;}
.h10{height:28.968750px;}
.h11{height:29.520000px;}
.h20{height:32.940000px;}
.h3{height:32.976000px;}
.h28{height:34.380000px;}
.h26{height:35.280000px;}
.h8{height:36.180000px;}
.h1b{height:36.720000px;}
.h19{height:38.818125px;}
.h1f{height:41.843672px;}
.h1d{height:42.164648px;}
.h17{height:42.281367px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h21{height:45.170156px;}
.h16{height:45.770625px;}
.h14{height:47.980898px;}
.h1c{height:48.088125px;}
.h22{height:48.103594px;}
.h27{height:52.380000px;}
.he{height:53.015625px;}
.h23{height:53.316000px;}
.h1a{height:53.573906px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h1e{height:55.735312px;}
.h15{height:56.574492px;}
.h18{height:59.439023px;}
.hf{height:61.189805px;}
.h6{height:67.824844px;}
.h2{height:71.613281px;}
.h12{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:173.190000px;}
.h13{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:55.440000px;}
.wf{width:72.576000px;}
.w4{width:74.880000px;}
.wc{width:82.260000px;}
.w12{width:92.016000px;}
.w10{width:115.380000px;}
.w14{width:124.776000px;}
.we{width:148.176000px;}
.w5{width:151.950000px;}
.w17{width:170.850000px;}
.wd{width:188.670000px;}
.w13{width:199.830000px;}
.w8{width:223.275000px;}
.w16{width:250.050000px;}
.w15{width:308.775000px;}
.wa{width:325.335000px;}
.wb{width:337.575000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w3{width:673.530000px;}
.w7{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x13{left:12.600000px;}
.x1c{left:20.160000px;}
.xc{left:62.136000px;}
.x2{left:72.360000px;}
.x1{left:80.999987px;}
.x14{left:85.499987px;}
.x5{left:98.130000px;}
.xf{left:101.370000px;}
.x24{left:102.635987px;}
.x15{left:113.435987px;}
.x25{left:129.635987px;}
.x10{left:130.890000px;}
.x16{left:140.435987px;}
.x11{left:148.350000px;}
.xe{left:171.210000px;}
.xd{left:214.455000px;}
.x6{left:224.850000px;}
.x19{left:255.089987px;}
.x18{left:270.929987px;}
.x20{left:273.810000px;}
.x9{left:288.615000px;}
.x12{left:296.175000px;}
.x7{left:348.375000px;}
.x17{left:360.434987px;}
.x8{left:367.635000px;}
.xb{left:373.575000px;}
.x21{left:381.674987px;}
.x22{left:390.495000px;}
.x1a{left:399.315000px;}
.xa{left:455.880000px;}
.x1e{left:472.605000px;}
.x1d{left:588.705000px;}
.x23{left:641.265000px;}
.x1f{left:644.865000px;}
.x1b{left:737.610000px;}
.x4{left:745.890000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls13{letter-spacing:-3.658667pt;}
.ls25{letter-spacing:-1.509333pt;}
.ls14{letter-spacing:-1.328000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.232000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.265067pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls2a{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.113067pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000003pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.077867pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsc{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.391040pt;}
.ls5{letter-spacing:0.398080pt;}
.ls12{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls26{letter-spacing:5.920000pt;}
.ls16{letter-spacing:12.320000pt;}
.ls28{letter-spacing:14.672640pt;}
.lsa{letter-spacing:14.880000pt;}
.ls8{letter-spacing:22.560000pt;}
.lsb{letter-spacing:32.160000pt;}
.ls27{letter-spacing:40.912640pt;}
.ls17{letter-spacing:48.768000pt;}
.ws12{word-spacing:-64.000000pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.054933pt;}
.ws13{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.736000pt;}
.ws19{word-spacing:-12.592000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.048000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws18{word-spacing:-11.770667pt;}
.ws16{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.621333pt;}
.wsb{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws14{word-spacing:-7.360000pt;}
.ws3{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._25{margin-left:-7.269547pt;}
._f{margin-left:-6.341760pt;}
._22{margin-left:-5.206400pt;}
._3{margin-left:-4.120320pt;}
._4{margin-left:-3.027840pt;}
._b{margin-left:-1.944960pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.018667pt;}
._2{width:1.915947pt;}
._5{width:3.080960pt;}
._7{width:4.830080pt;}
._6{width:6.055680pt;}
._a{width:7.630933pt;}
._9{width:8.605440pt;}
._8{width:10.204587pt;}
._1f{width:11.251413pt;}
._e{width:12.197973pt;}
._10{width:13.123200pt;}
._1b{width:14.170453pt;}
._15{width:15.301333pt;}
._d{width:16.237227pt;}
._c{width:17.167360pt;}
._1e{width:18.910720pt;}
._1d{width:19.973120pt;}
._21{width:20.949547pt;}
._14{width:22.187093pt;}
._13{width:23.325013pt;}
._12{width:24.775467pt;}
._16{width:25.863680pt;}
._11{width:27.071573pt;}
._1c{width:28.323200pt;}
._17{width:33.582080pt;}
._20{width:34.531413pt;}
._19{width:36.306987pt;}
._18{width:37.979947pt;}
._1a{width:56.705493pt;}
._23{width:213.692373pt;}
._24{width:214.667307pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y57{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.y55{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.ye1{bottom:15.360000pt;}
.y5{bottom:15.392000pt;}
.y9b{bottom:15.520000pt;}
.y3{bottom:17.792000pt;}
.y9a{bottom:17.920000pt;}
.y51{bottom:18.080000pt;}
.yea{bottom:18.880000pt;}
.y56{bottom:19.840000pt;}
.y18{bottom:21.160000pt;}
.y54{bottom:22.560000pt;}
.yc{bottom:26.880000pt;}
.y6{bottom:32.800000pt;}
.y50{bottom:33.440000pt;}
.yef{bottom:34.080000pt;}
.ye6{bottom:34.880000pt;}
.y17{bottom:35.240000pt;}
.yb{bottom:41.280000pt;}
.y16{bottom:46.920000pt;}
.y4f{bottom:48.800000pt;}
.ye2{bottom:52.160000pt;}
.y2{bottom:52.800000pt;}
.y15{bottom:55.720000pt;}
.y4e{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y14{bottom:68.680000pt;}
.y9c{bottom:71.712000pt;}
.ye0{bottom:72.192000pt;}
.y4d{bottom:79.520000pt;}
.y9{bottom:82.746667pt;}
.y99{bottom:91.712000pt;}
.y13{bottom:92.040000pt;}
.y4c{bottom:94.920000pt;}
.y8{bottom:98.906667pt;}
.y5c{bottom:100.032000pt;}
.y98{bottom:102.272000pt;}
.y4b{bottom:110.120000pt;}
.y5b{bottom:115.392000pt;}
.y97{bottom:117.632000pt;}
.y157{bottom:121.152000pt;}
.y12{bottom:121.480000pt;}
.y120{bottom:124.352000pt;}
.y4a{bottom:125.480000pt;}
.y5a{bottom:130.752000pt;}
.y96{bottom:136.506667pt;}
.y11f{bottom:139.706667pt;}
.y11{bottom:140.520000pt;}
.y49{bottom:140.840000pt;}
.yc1{bottom:142.586667pt;}
.y59{bottom:145.946667pt;}
.y156{bottom:151.706667pt;}
.y95{bottom:151.866667pt;}
.y11e{bottom:155.066667pt;}
.y48{bottom:156.200000pt;}
.y58{bottom:161.306667pt;}
.y155{bottom:167.066667pt;}
.y94{bottom:167.226667pt;}
.y11d{bottom:170.266667pt;}
.y47{bottom:171.560000pt;}
.y53{bottom:173.786667pt;}
.y154{bottom:182.426667pt;}
.y93{bottom:182.586667pt;}
.y11c{bottom:185.626667pt;}
.y46{bottom:186.920000pt;}
.y30{bottom:194.120000pt;}
.y92{bottom:197.786667pt;}
.y11b{bottom:200.986667pt;}
.y45{bottom:202.120000pt;}
.y1b{bottom:206.426667pt;}
.y2f{bottom:207.720000pt;}
.y91{bottom:213.146667pt;}
.y11a{bottom:216.346667pt;}
.y44{bottom:217.480000pt;}
.y2e{bottom:223.400000pt;}
.y153{bottom:228.346667pt;}
.y119{bottom:231.706667pt;}
.y43{bottom:232.840000pt;}
.y2d{bottom:238.760000pt;}
.y90{bottom:241.626667pt;}
.y152{bottom:243.706667pt;}
.y118{bottom:247.066667pt;}
.y42{bottom:248.200000pt;}
.y2c{bottom:254.120000pt;}
.y8f{bottom:256.986667pt;}
.y151{bottom:259.066667pt;}
.y117{bottom:262.266667pt;}
.yde{bottom:262.586667pt;}
.y41{bottom:263.560000pt;}
.y2b{bottom:269.960000pt;}
.y8e{bottom:272.346667pt;}
.y150{bottom:274.426667pt;}
.y116{bottom:277.626667pt;}
.y40{bottom:278.760000pt;}
.y2a{bottom:285.320000pt;}
.y8d{bottom:287.546667pt;}
.y14f{bottom:289.786667pt;}
.y115{bottom:292.986667pt;}
.y3f{bottom:294.120000pt;}
.y29{bottom:300.840000pt;}
.y8c{bottom:302.946667pt;}
.y14e{bottom:305.186667pt;}
.y114{bottom:308.386667pt;}
.y3e{bottom:309.480000pt;}
.y28{bottom:316.360000pt;}
.y8b{bottom:318.306667pt;}
.y14d{bottom:320.386667pt;}
.y113{bottom:323.746667pt;}
.y3d{bottom:324.840000pt;}
.y27{bottom:331.746667pt;}
.y8a{bottom:333.666667pt;}
.y14c{bottom:335.746667pt;}
.y112{bottom:338.946667pt;}
.y3c{bottom:340.226667pt;}
.y26{bottom:347.266667pt;}
.y89{bottom:349.026667pt;}
.y14b{bottom:351.106667pt;}
.y111{bottom:354.306667pt;}
.y3b{bottom:355.586667pt;}
.y25{bottom:362.626667pt;}
.y88{bottom:364.386667pt;}
.y14a{bottom:366.466667pt;}
.y110{bottom:369.666667pt;}
.y3a{bottom:370.786667pt;}
.y24{bottom:378.146667pt;}
.y149{bottom:381.826667pt;}
.y87{bottom:381.986667pt;}
.y10f{bottom:385.026667pt;}
.y39{bottom:386.146667pt;}
.y23{bottom:393.666667pt;}
.y148{bottom:397.186667pt;}
.y86{bottom:397.346667pt;}
.y10e{bottom:400.386667pt;}
.y38{bottom:401.506667pt;}
.yc0{bottom:408.866667pt;}
.y22{bottom:409.026667pt;}
.y147{bottom:412.386667pt;}
.y85{bottom:412.706667pt;}
.y10d{bottom:415.746667pt;}
.y37{bottom:416.866667pt;}
.ybf{bottom:424.226667pt;}
.y21{bottom:424.546667pt;}
.y146{bottom:427.746667pt;}
.y84{bottom:428.066667pt;}
.y10c{bottom:430.946667pt;}
.y36{bottom:432.226667pt;}
.y20{bottom:440.066667pt;}
.ybe{bottom:442.626667pt;}
.y145{bottom:443.106667pt;}
.y83{bottom:443.426667pt;}
.y10b{bottom:446.306667pt;}
.y35{bottom:447.586667pt;}
.y1f{bottom:455.426667pt;}
.ybd{bottom:458.306667pt;}
.y144{bottom:458.466667pt;}
.y82{bottom:458.786667pt;}
.y10a{bottom:461.666667pt;}
.y34{bottom:462.786667pt;}
.y1e{bottom:471.106667pt;}
.ybc{bottom:473.666667pt;}
.y143{bottom:473.826667pt;}
.y81{bottom:473.986667pt;}
.y109{bottom:477.026667pt;}
.y33{bottom:478.146667pt;}
.ybb{bottom:489.026667pt;}
.y142{bottom:489.186667pt;}
.y80{bottom:489.346667pt;}
.y108{bottom:492.386667pt;}
.y32{bottom:493.506667pt;}
.y1d{bottom:495.426667pt;}
.yba{bottom:504.386667pt;}
.y7f{bottom:504.706667pt;}
.y141{bottom:506.786667pt;}
.y107{bottom:507.746667pt;}
.y31{bottom:508.866667pt;}
.y1c{bottom:511.266667pt;}
.yb9{bottom:519.746667pt;}
.y7e{bottom:520.066667pt;}
.y106{bottom:522.946667pt;}
.y140{bottom:524.546667pt;}
.y7d{bottom:535.426667pt;}
.y105{bottom:538.333333pt;}
.y13f{bottom:539.933333pt;}
.yb8{bottom:549.053333pt;}
.y7c{bottom:550.813333pt;}
.y104{bottom:553.693333pt;}
.y13e{bottom:555.293333pt;}
.yb7{bottom:564.573333pt;}
.y7b{bottom:566.013333pt;}
.y103{bottom:569.053333pt;}
.ydd{bottom:569.373333pt;}
.y13d{bottom:570.653333pt;}
.yb6{bottom:579.933333pt;}
.y7a{bottom:581.373333pt;}
.y16d{bottom:582.493333pt;}
.y102{bottom:584.413333pt;}
.ydc{bottom:584.733333pt;}
.y13c{bottom:586.013333pt;}
.yb5{bottom:595.293333pt;}
.y79{bottom:596.733333pt;}
.y16c{bottom:597.853333pt;}
.y101{bottom:599.613333pt;}
.ydb{bottom:600.093333pt;}
.y13b{bottom:601.373333pt;}
.yb4{bottom:610.653333pt;}
.y78{bottom:612.093333pt;}
.y16b{bottom:613.213333pt;}
.y100{bottom:614.973333pt;}
.yda{bottom:615.453333pt;}
.y13a{bottom:616.573333pt;}
.yb3{bottom:625.853333pt;}
.y77{bottom:627.453333pt;}
.y16a{bottom:628.573333pt;}
.yd9{bottom:630.813333pt;}
.y139{bottom:631.933333pt;}
.yff{bottom:633.533333pt;}
.yb2{bottom:641.213333pt;}
.y76{bottom:642.813333pt;}
.y169{bottom:643.933333pt;}
.yd8{bottom:646.013333pt;}
.y138{bottom:647.293333pt;}
.yfe{bottom:649.213333pt;}
.yb1{bottom:656.573333pt;}
.y75{bottom:658.013333pt;}
.y168{bottom:659.133333pt;}
.yd7{bottom:661.373333pt;}
.yfd{bottom:664.573333pt;}
.y137{bottom:665.053333pt;}
.yb0{bottom:671.933333pt;}
.y74{bottom:673.373333pt;}
.y167{bottom:674.493333pt;}
.yd6{bottom:676.733333pt;}
.yfc{bottom:677.693333pt;}
.y136{bottom:683.613333pt;}
.yaf{bottom:687.293333pt;}
.y73{bottom:688.733333pt;}
.y166{bottom:689.853333pt;}
.yd5{bottom:692.093333pt;}
.yfb{bottom:693.693333pt;}
.y135{bottom:699.293333pt;}
.yae{bottom:702.653333pt;}
.y72{bottom:704.093333pt;}
.y165{bottom:705.213333pt;}
.yd4{bottom:707.453333pt;}
.yfa{bottom:709.693333pt;}
.y134{bottom:714.653333pt;}
.yad{bottom:717.853333pt;}
.y71{bottom:719.453333pt;}
.y164{bottom:720.573333pt;}
.yd3{bottom:722.653333pt;}
.yf9{bottom:725.693333pt;}
.y19{bottom:727.773333pt;}
.y133{bottom:729.853333pt;}
.y70{bottom:734.653333pt;}
.y163{bottom:735.933333pt;}
.yac{bottom:736.413333pt;}
.yd2{bottom:738.013333pt;}
.yf8{bottom:744.573333pt;}
.y132{bottom:745.213333pt;}
.y6f{bottom:750.013333pt;}
.y162{bottom:751.133333pt;}
.yab{bottom:752.093333pt;}
.yd1{bottom:753.373333pt;}
.y10{bottom:754.013333pt;}
.yf7{bottom:759.933333pt;}
.y131{bottom:760.573333pt;}
.y6e{bottom:765.373333pt;}
.y161{bottom:766.493333pt;}
.yd0{bottom:768.733333pt;}
.yaa{bottom:771.133333pt;}
.yf6{bottom:775.173333pt;}
.y130{bottom:775.973333pt;}
.y6d{bottom:780.773333pt;}
.y160{bottom:781.893333pt;}
.ycf{bottom:784.133333pt;}
.ya9{bottom:790.053333pt;}
.yf5{bottom:790.533333pt;}
.y12f{bottom:791.333333pt;}
.y6c{bottom:796.133333pt;}
.y15f{bottom:797.253333pt;}
.yce{bottom:799.493333pt;}
.yf4{bottom:805.893333pt;}
.y12e{bottom:806.693333pt;}
.ya8{bottom:809.093333pt;}
.y6b{bottom:811.493333pt;}
.y15e{bottom:812.613333pt;}
.ycd{bottom:814.693333pt;}
.yf3{bottom:821.253333pt;}
.y12d{bottom:821.893333pt;}
.y6a{bottom:826.693333pt;}
.ya7{bottom:827.973333pt;}
.ycc{bottom:830.053333pt;}
.yf2{bottom:836.613333pt;}
.y12c{bottom:837.253333pt;}
.y69{bottom:842.053333pt;}
.y15d{bottom:843.173333pt;}
.ycb{bottom:845.413333pt;}
.ya6{bottom:847.013333pt;}
.yf1{bottom:851.973333pt;}
.y12b{bottom:852.613333pt;}
.y68{bottom:857.413333pt;}
.y15c{bottom:858.533333pt;}
.yca{bottom:860.773333pt;}
.yee{bottom:865.093333pt;}
.ya5{bottom:865.893333pt;}
.y12a{bottom:867.973333pt;}
.y67{bottom:872.773333pt;}
.y15b{bottom:873.893333pt;}
.yc9{bottom:876.133333pt;}
.y129{bottom:883.333333pt;}
.ya4{bottom:884.933333pt;}
.y66{bottom:888.133333pt;}
.y15a{bottom:889.253333pt;}
.yc8{bottom:891.493333pt;}
.yf0{bottom:896.293333pt;}
.y128{bottom:900.933333pt;}
.y65{bottom:903.493333pt;}
.ya3{bottom:903.973333pt;}
.y159{bottom:904.613333pt;}
.yc7{bottom:906.693333pt;}
.ye{bottom:907.973333pt;}
.yec{bottom:912.293333pt;}
.y64{bottom:918.693333pt;}
.y127{bottom:919.493333pt;}
.y158{bottom:919.973333pt;}
.yc6{bottom:922.053333pt;}
.ya2{bottom:922.853333pt;}
.yed{bottom:928.293333pt;}
.y7{bottom:930.533333pt;}
.y63{bottom:934.053333pt;}
.y126{bottom:935.173333pt;}
.yc5{bottom:937.413333pt;}
.ya1{bottom:941.893333pt;}
.ye9{bottom:944.293333pt;}
.y62{bottom:949.413333pt;}
.y125{bottom:950.533333pt;}
.yc4{bottom:952.773333pt;}
.yeb{bottom:960.293333pt;}
.ya0{bottom:960.773333pt;}
.y61{bottom:964.773333pt;}
.y124{bottom:965.893333pt;}
.yc3{bottom:968.133333pt;}
.ye5{bottom:976.293333pt;}
.y9f{bottom:979.813333pt;}
.y60{bottom:980.133333pt;}
.y123{bottom:981.253333pt;}
.yc2{bottom:983.493333pt;}
.ye8{bottom:992.293333pt;}
.y5f{bottom:995.493333pt;}
.y122{bottom:996.613333pt;}
.y9e{bottom:998.693333pt;}
.ye7{bottom:1008.293333pt;}
.y5e{bottom:1010.693333pt;}
.y121{bottom:1011.840000pt;}
.y9d{bottom:1014.080000pt;}
.y5d{bottom:1026.080000pt;}
.ye4{bottom:1027.200000pt;}
.ye3{bottom:1042.560000pt;}
.ydf{bottom:1059.360000pt;}
.y1{bottom:1107.360000pt;}
.h25{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:22.240000pt;}
.h10{height:25.750000pt;}
.h11{height:26.240000pt;}
.h20{height:29.280000pt;}
.h3{height:29.312000pt;}
.h28{height:30.560000pt;}
.h26{height:31.360000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.640000pt;}
.h19{height:34.505000pt;}
.h1f{height:37.194375pt;}
.h1d{height:37.479688pt;}
.h17{height:37.583438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h21{height:40.151250pt;}
.h16{height:40.685000pt;}
.h14{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h22{height:42.758750pt;}
.h27{height:46.560000pt;}
.he{height:47.125000pt;}
.h23{height:47.392000pt;}
.h1a{height:47.621250pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h1e{height:49.542500pt;}
.h15{height:50.288438pt;}
.h18{height:52.834688pt;}
.hf{height:54.390938pt;}
.h6{height:60.288750pt;}
.h2{height:63.656250pt;}
.h12{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:153.946667pt;}
.h13{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:49.280000pt;}
.wf{width:64.512000pt;}
.w4{width:66.560000pt;}
.wc{width:73.120000pt;}
.w12{width:81.792000pt;}
.w10{width:102.560000pt;}
.w14{width:110.912000pt;}
.we{width:131.712000pt;}
.w5{width:135.066667pt;}
.w17{width:151.866667pt;}
.wd{width:167.706667pt;}
.w13{width:177.626667pt;}
.w8{width:198.466667pt;}
.w16{width:222.266667pt;}
.w15{width:274.466667pt;}
.wa{width:289.186667pt;}
.wb{width:300.066667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w3{width:598.693333pt;}
.w7{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x13{left:11.200000pt;}
.x1c{left:17.920000pt;}
.xc{left:55.232000pt;}
.x2{left:64.320000pt;}
.x1{left:71.999988pt;}
.x14{left:75.999988pt;}
.x5{left:87.226667pt;}
.xf{left:90.106667pt;}
.x24{left:91.231988pt;}
.x15{left:100.831988pt;}
.x25{left:115.231988pt;}
.x10{left:116.346667pt;}
.x16{left:124.831988pt;}
.x11{left:131.866667pt;}
.xe{left:152.186667pt;}
.xd{left:190.626667pt;}
.x6{left:199.866667pt;}
.x19{left:226.746655pt;}
.x18{left:240.826655pt;}
.x20{left:243.386667pt;}
.x9{left:256.546667pt;}
.x12{left:263.266667pt;}
.x7{left:309.666667pt;}
.x17{left:320.386655pt;}
.x8{left:326.786667pt;}
.xb{left:332.066667pt;}
.x21{left:339.266655pt;}
.x22{left:347.106667pt;}
.x1a{left:354.946667pt;}
.xa{left:405.226667pt;}
.x1e{left:420.093333pt;}
.x1d{left:523.293333pt;}
.x23{left:570.013333pt;}
.x1f{left:573.213333pt;}
.x1b{left:655.653333pt;}
.x4{left:663.013333pt;}
}




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