
    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_aea1545388fb02f6f88bae3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.835938;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_f723bf1a17e173c68e166481.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_19285ad21abec6fed6ffd99f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_bb15c202725831842ca4c3d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_12c726dde4f664c51e895db2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_94d33df742e201a43910102e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_8ed7f4c1f215bef2bccd1782.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_179fd7a7b6dc93fdf9fa86ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_540fcfcc1ceb49b9d9135ec3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_cbfd10ac222298e62c16f00a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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);}
.v2{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:77.760000px;}
.ls40{letter-spacing:-1.457280px;}
.ls3b{letter-spacing:-0.993600px;}
.ls3e{letter-spacing:-0.861120px;}
.ls3d{letter-spacing:-0.728640px;}
.ls3f{letter-spacing:-0.673920px;}
.lsc{letter-spacing:-0.596160px;}
.ls2d{letter-spacing:-0.463680px;}
.ls1f{letter-spacing:-0.418320px;}
.ls2f{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.358560px;}
.ls39{letter-spacing:-0.336960px;}
.ls1e{letter-spacing:-0.298800px;}
.ls9{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.241200px;}
.ls11{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.179280px;}
.lsb{letter-spacing:-0.132480px;}
.ls24{letter-spacing:-0.119520px;}
.ls3a{letter-spacing:-0.084240px;}
.ls2c{letter-spacing:-0.066240px;}
.lsf{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.059760px;}
.ls2b{letter-spacing:0.066240px;}
.ls38{letter-spacing:0.084240px;}
.ls33{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.198720px;}
.ls22{letter-spacing:0.239040px;}
.ls2e{letter-spacing:0.264960px;}
.ls12{letter-spacing:0.298800px;}
.ls3c{letter-spacing:0.331200px;}
.ls36{letter-spacing:0.336960px;}
.ls1{letter-spacing:0.358560px;}
.ls2a{letter-spacing:0.478080px;}
.ls21{letter-spacing:0.537840px;}
.ls2{letter-spacing:0.717120px;}
.ls13{letter-spacing:1.015920px;}
.ls37{letter-spacing:1.347840px;}
.ls28{letter-spacing:2.151360px;}
.ls14{letter-spacing:2.868480px;}
.ls15{letter-spacing:3.585600px;}
.ls25{letter-spacing:3.612240px;}
.ls19{letter-spacing:4.302720px;}
.ls26{letter-spacing:5.796720px;}
.ls18{letter-spacing:6.513840px;}
.ls1c{letter-spacing:7.230960px;}
.ls16{letter-spacing:8.665200px;}
.ls1b{letter-spacing:10.816560px;}
.ls27{letter-spacing:11.533680px;}
.ls17{letter-spacing:13.266720px;}
.ls23{letter-spacing:15.119280px;}
.ls1a{letter-spacing:17.270640px;}
.ls29{letter-spacing:20.998080px;}
.ls1d{letter-spacing:28.812240px;}
.ls35{letter-spacing:59.351040px;}
.ls32{letter-spacing:67.233600px;}
.ls5{letter-spacing:168.463440px;}
.ls7{letter-spacing:179.280000px;}
.ls31{letter-spacing:195.871680px;}
.ls30{letter-spacing:242.789760px;}
.ls3{letter-spacing:365.039280px;}
.ls4{letter-spacing:491.797440px;}
.ls6{letter-spacing:507.601440px;}
.ls8{letter-spacing:605.088000px;}
.ls0{letter-spacing:1177.198560px;}
.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;}
}
.ws6a{word-spacing:-21.144240px;}
.ws6{word-spacing:-18.346320px;}
.ws46{word-spacing:-18.226800px;}
.ws4{word-spacing:-18.047520px;}
.ws7{word-spacing:-17.987760px;}
.ws3{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.808480px;}
.ws2{word-spacing:-17.748720px;}
.ws1e{word-spacing:-17.688960px;}
.ws6d{word-spacing:-16.891200px;}
.ws70{word-spacing:-16.824960px;}
.ws6f{word-spacing:-16.692480px;}
.ws6c{word-spacing:-16.560000px;}
.ws47{word-spacing:-16.493760px;}
.ws6b{word-spacing:-16.427520px;}
.ws73{word-spacing:-16.162560px;}
.ws6e{word-spacing:-15.963840px;}
.ws71{word-spacing:-15.831360px;}
.ws72{word-spacing:-15.698880px;}
.ws8a{word-spacing:-15.102720px;}
.ws59{word-spacing:-15.036480px;}
.ws5a{word-spacing:-14.904000px;}
.ws5b{word-spacing:-14.705280px;}
.ws5c{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.374080px;}
.ws78{word-spacing:-1.263600px;}
.ws81{word-spacing:-1.059840px;}
.ws68{word-spacing:-0.861120px;}
.ws82{word-spacing:-0.728640px;}
.ws62{word-spacing:-0.537840px;}
.ws74{word-spacing:-0.505440px;}
.ws5f{word-spacing:-0.478080px;}
.ws1{word-spacing:-0.418320px;}
.wsf{word-spacing:-0.358560px;}
.ws84{word-spacing:-0.331200px;}
.ws10{word-spacing:-0.298800px;}
.ws80{word-spacing:-0.264960px;}
.ws4d{word-spacing:-0.239040px;}
.ws75{word-spacing:-0.191520px;}
.ws69{word-spacing:-0.132480px;}
.ws76{word-spacing:-0.084240px;}
.wsb{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:0.059760px;}
.wse{word-spacing:0.096480px;}
.ws85{word-spacing:0.132480px;}
.ws77{word-spacing:0.168480px;}
.wsc{word-spacing:0.179280px;}
.ws12{word-spacing:0.239040px;}
.wsa{word-spacing:0.264960px;}
.ws7a{word-spacing:0.336960px;}
.ws25{word-spacing:0.358560px;}
.ws8{word-spacing:0.397440px;}
.ws23{word-spacing:0.418320px;}
.ws88{word-spacing:0.505440px;}
.ws67{word-spacing:0.596160px;}
.ws65{word-spacing:0.657360px;}
.ws83{word-spacing:0.728640px;}
.ws51{word-spacing:0.776880px;}
.ws13{word-spacing:0.896400px;}
.ws86{word-spacing:0.926640px;}
.ws7f{word-spacing:0.993600px;}
.ws24{word-spacing:1.075680px;}
.ws20{word-spacing:1.135440px;}
.ws87{word-spacing:1.179360px;}
.ws89{word-spacing:1.600560px;}
.ws4b{word-spacing:1.613520px;}
.ws4c{word-spacing:1.792800px;}
.ws39{word-spacing:1.852560px;}
.ws55{word-spacing:2.211120px;}
.ws1f{word-spacing:2.330640px;}
.ws61{word-spacing:2.390400px;}
.ws21{word-spacing:2.569680px;}
.ws22{word-spacing:3.047760px;}
.ws19{word-spacing:3.286800px;}
.ws26{word-spacing:3.764880px;}
.ws7c{word-spacing:3.790800px;}
.ws1a{word-spacing:3.824640px;}
.ws4e{word-spacing:3.944160px;}
.ws7b{word-spacing:4.212000px;}
.ws15{word-spacing:4.482000px;}
.ws27{word-spacing:4.541760px;}
.ws79{word-spacing:4.548960px;}
.ws28{word-spacing:4.721040px;}
.ws29{word-spacing:5.199120px;}
.ws5d{word-spacing:5.438160px;}
.ws5e{word-spacing:5.497920px;}
.ws52{word-spacing:5.856480px;}
.ws38{word-spacing:5.916240px;}
.ws50{word-spacing:6.095520px;}
.ws2c{word-spacing:6.155280px;}
.ws43{word-spacing:6.394320px;}
.ws1b{word-spacing:6.633360px;}
.ws2d{word-spacing:6.812640px;}
.ws37{word-spacing:6.872400px;}
.ws33{word-spacing:7.350480px;}
.ws42{word-spacing:7.529760px;}
.ws60{word-spacing:8.127360px;}
.ws2a{word-spacing:8.366400px;}
.ws30{word-spacing:8.844480px;}
.ws31{word-spacing:8.904240px;}
.ws3b{word-spacing:9.561600px;}
.ws53{word-spacing:10.159200px;}
.ws3e{word-spacing:10.278720px;}
.ws3d{word-spacing:10.517760px;}
.ws2e{word-spacing:10.995840px;}
.ws7e{word-spacing:11.709360px;}
.ws1c{word-spacing:11.712960px;}
.ws2f{word-spacing:11.892240px;}
.ws66{word-spacing:11.952000px;}
.ws7d{word-spacing:12.130560px;}
.ws3a{word-spacing:12.430080px;}
.ws32{word-spacing:12.669120px;}
.ws54{word-spacing:13.027680px;}
.ws1d{word-spacing:13.147200px;}
.ws57{word-spacing:13.744800px;}
.ws14{word-spacing:13.864320px;}
.ws2b{word-spacing:14.581440px;}
.ws48{word-spacing:14.880240px;}
.ws4a{word-spacing:15.298560px;}
.ws49{word-spacing:16.015680px;}
.ws4f{word-spacing:16.792560px;}
.ws3c{word-spacing:17.449920px;}
.ws40{word-spacing:19.063440px;}
.ws3f{word-spacing:19.123200px;}
.ws16{word-spacing:19.601280px;}
.ws58{word-spacing:20.318400px;}
.ws64{word-spacing:21.064320px;}
.ws63{word-spacing:21.263040px;}
.ws18{word-spacing:23.246640px;}
.ws17{word-spacing:23.306400px;}
.ws11{word-spacing:23.963760px;}
.ws35{word-spacing:24.262560px;}
.ws34{word-spacing:24.680880px;}
.ws36{word-spacing:24.740640px;}
.ws41{word-spacing:26.832240px;}
.ws45{word-spacing:28.505520px;}
.ws44{word-spacing:28.983600px;}
.ws56{word-spacing:33.943680px;}
._e{margin-left:-2.318400px;}
._1{margin-left:-1.126080px;}
._0{width:1.457280px;}
._2{width:2.895120px;}
._4{width:4.780080px;}
._5{width:6.200640px;}
._6{width:7.432560px;}
._8{width:9.860400px;}
._9{width:12.287520px;}
._c{width:16.135200px;}
._d{width:20.799360px;}
._a{width:23.476320px;}
._7{width:24.956640px;}
._b{width:28.638000px;}
._f{width:195.871680px;}
._3{width:656.951760px;}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y62{bottom:4.140000px;}
.y22{bottom:4.320000px;}
.yb3{bottom:22.500000px;}
.yb5{bottom:98.820000px;}
.y89{bottom:111.600000px;}
.y23{bottom:117.000000px;}
.y5c{bottom:117.720000px;}
.yba{bottom:121.500000px;}
.y21{bottom:122.220000px;}
.ye1{bottom:131.397840px;}
.y91{bottom:133.374420px;}
.yb9{bottom:137.880000px;}
.y61{bottom:138.590280px;}
.y20{bottom:143.779680px;}
.y90{bottom:150.660000px;}
.y60{bottom:156.055140px;}
.ye0{bottom:156.420000px;}
.y1f{bottom:161.244540px;}
.y5f{bottom:173.520000px;}
.yb8{bottom:176.760000px;}
.y8f{bottom:177.113340px;}
.y8a{bottom:178.200000px;}
.y1e{bottom:178.709400px;}
.ydf{bottom:182.350440px;}
.y97{bottom:188.100000px;}
.y1d{bottom:196.174260px;}
.y5e{bottom:199.795140px;}
.y8e{bottom:203.572080px;}
.yde{bottom:206.464140px;}
.y1c{bottom:213.459840px;}
.yb4{bottom:215.640000px;}
.y5d{bottom:217.260000px;}
.y8d{bottom:229.134420px;}
.ydd{bottom:230.577840px;}
.y1b{bottom:230.924700px;}
.y5b{bottom:234.679680px;}
.yb7{bottom:238.145760px;}
.y8c{bottom:246.420000px;}
.y1a{bottom:248.389560px;}
.y5a{bottom:252.144540px;}
.ydc{bottom:260.820000px;}
.y19{bottom:265.854420px;}
.y59{bottom:269.430120px;}
.y8b{bottom:272.520000px;}
.y52{bottom:274.500000px;}
.yb6{bottom:276.300000px;}
.y18{bottom:283.140000px;}
.y58{bottom:286.894980px;}
.y88{bottom:289.794420px;}
.ydb{bottom:290.017440px;}
.y57{bottom:304.359840px;}
.y87{bottom:307.080000px;}
.yda{bottom:318.285360px;}
.y93{bottom:318.960000px;}
.y17{bottom:319.320000px;}
.y56{bottom:321.824700px;}
.yb2{bottom:330.840000px;}
.y86{bottom:333.328680px;}
.y4f{bottom:335.700000px;}
.y16{bottom:336.780000px;}
.yd9{bottom:337.180320px;}
.y55{bottom:339.110280px;}
.y85{bottom:350.614260px;}
.y54{bottom:356.575140px;}
.yd8{bottom:365.266080px;}
.y84{bottom:367.720560px;}
.y4c{bottom:370.620000px;}
.y15{bottom:372.955320px;}
.y53{bottom:374.040000px;}
.yb1{bottom:383.011380px;}
.y83{bottom:385.006140px;}
.yd7{bottom:392.805360px;}
.yb0{bottom:400.476240px;}
.y51{bottom:408.780000px;}
.y14{bottom:409.140000px;}
.y82{bottom:411.285600px;}
.yd6{bottom:421.238880px;}
.yaf{bottom:426.934980px;}
.y81{bottom:428.571180px;}
.y50{bottom:435.240000px;}
.yd5{bottom:441.392400px;}
.yae{bottom:444.399840px;}
.y13{bottom:444.780000px;}
.y80{bottom:445.856760px;}
.y4e{bottom:452.695140px;}
.yd4{bottom:461.545920px;}
.yad{bottom:461.685420px;}
.y4d{bottom:470.160000px;}
.y7f{bottom:473.032620px;}
.y12{bottom:474.300000px;}
.yac{bottom:479.150280px;}
.y64{bottom:479.160000px;}
.y46{bottom:484.020000px;}
.yfb{bottom:484.585920px;}
.yd3{bottom:489.449520px;}
.yab{bottom:496.615140px;}
.y7e{bottom:499.312080px;}
.y4b{bottom:504.885420px;}
.yd2{bottom:508.344480px;}
.yfa{bottom:509.790240px;}
.yaa{bottom:514.080000px;}
.y4a{bottom:522.350280px;}
.y7d{bottom:525.770820px;}
.yd1{bottom:527.421600px;}
.yf9{bottom:530.125920px;}
.y49{bottom:539.815140px;}
.y7c{bottom:543.235680px;}
.yd0{bottom:546.316560px;}
.ya9{bottom:550.260000px;}
.yf8{bottom:556.224480px;}
.y48{bottom:557.280000px;}
.ycf{bottom:565.393680px;}
.y7b{bottom:569.694420px;}
.y11{bottom:579.780000px;}
.yf7{bottom:580.882320px;}
.y47{bottom:583.560000px;}
.ya8{bottom:586.443060px;}
.y7a{bottom:586.980000px;}
.yce{bottom:589.869360px;}
.y3f{bottom:597.600000px;}
.y45{bottom:601.004700px;}
.yf6{bottom:606.268800px;}
.y10{bottom:615.960000px;}
.ycd{bottom:617.955120px;}
.y44{bottom:618.469560px;}
.ya7{bottom:622.448460px;}
.y79{bottom:623.160000px;}
.yf5{bottom:625.163760px;}
.y43{bottom:635.934420px;}
.y78{bottom:640.620000px;}
.y3c{bottom:641.340000px;}
.yf4{bottom:644.058720px;}
.ycc{bottom:646.223040px;}
.yf{bottom:652.140000px;}
.y42{bottom:653.220000px;}
.ya6{bottom:657.542520px;}
.yf3{bottom:663.135840px;}
.y63{bottom:663.480000px;}
.ycb{bottom:665.300160px;}
.y39{bottom:676.260000px;}
.y77{bottom:676.795320px;}
.y41{bottom:679.675140px;}
.ya5{bottom:684.001260px;}
.yca{bottom:684.195120px;}
.yf2{bottom:687.793680px;}
.ye{bottom:688.320000px;}
.y40{bottom:697.140000px;}
.yc9{bottom:703.090080px;}
.y76{bottom:703.254060px;}
.ya4{bottom:710.460000px;}
.y36{bottom:711.000000px;}
.yf1{bottom:712.998000px;}
.y3e{bottom:714.600000px;}
.yc8{bottom:722.167200px;}
.yd{bottom:724.501260px;}
.y34{bottom:728.460000px;}
.y75{bottom:729.533520px;}
.yf0{bottom:732.075120px;}
.y3d{bottom:740.880000px;}
.ya3{bottom:746.110800px;}
.yc7{bottom:749.706480px;}
.yc{bottom:750.960000px;}
.yef{bottom:750.970080px;}
.y74{bottom:755.992260px;}
.y3b{bottom:758.335140px;}
.ya2{bottom:769.327920px;}
.y73{bottom:773.457120px;}
.y3a{bottom:775.800000px;}
.yee{bottom:775.992240px;}
.yc6{bottom:778.140000px;}
.yb{bottom:787.140000px;}
.y72{bottom:790.921980px;}
.y38{bottom:793.254420px;}
.yc5{bottom:797.034960px;}
.yed{bottom:800.650080px;}
.ya1{bottom:807.300000px;}
.y37{bottom:810.540000px;}
.y71{bottom:817.380720px;}
.ya{bottom:823.320000px;}
.y92{bottom:823.680000px;}
.yc4{bottom:824.756400px;}
.yec{bottom:825.490080px;}
.y35{bottom:828.000000px;}
.ya0{bottom:836.991540px;}
.y70{bottom:843.660180px;}
.y33{bottom:845.450280px;}
.yc3{bottom:852.660000px;}
.yeb{bottom:862.750080px;}
.y32{bottom:862.915140px;}
.y9f{bottom:863.450280px;}
.y9{bottom:868.680000px;}
.y6f{bottom:870.118920px;}
.y31{bottom:880.380000px;}
.y9e{bottom:880.915140px;}
.yc2{bottom:881.645040px;}
.yea{bottom:885.785040px;}
.y6e{bottom:896.577660px;}
.y8{bottom:898.200000px;}
.y9d{bottom:898.380000px;}
.yc1{bottom:905.758740px;}
.y30{bottom:906.637500px;}
.ye9{bottom:911.883600px;}
.y7{bottom:915.300000px;}
.y6d{bottom:923.036400px;}
.y9c{bottom:924.639840px;}
.yc0{bottom:929.872440px;}
.y2f{bottom:933.096240px;}
.ye8{bottom:936.905760px;}
.y9b{bottom:942.104700px;}
.y6c{bottom:949.315860px;}
.y2e{bottom:959.554980px;}
.y9a{bottom:959.569560px;}
.ybf{bottom:960.114600px;}
.ye7{bottom:961.927920px;}
.y6{bottom:968.401260px;}
.y6b{bottom:975.774600px;}
.y2d{bottom:977.019840px;}
.y99{bottom:977.034420px;}
.ye6{bottom:986.403600px;}
.ybe{bottom:993.600000px;}
.y2c{bottom:994.305420px;}
.y98{bottom:994.320000px;}
.y5{bottom:994.860000px;}
.y6a{bottom:1002.233340px;}
.y2b{bottom:1011.770280px;}
.y96{bottom:1011.780000px;}
.y24{bottom:1025.640000px;}
.ybd{bottom:1026.900000px;}
.y69{bottom:1028.692080px;}
.y2a{bottom:1029.235140px;}
.ye5{bottom:1029.790800px;}
.y4{bottom:1031.040000px;}
.y95{bottom:1038.214980px;}
.y29{bottom:1046.700000px;}
.ye4{bottom:1051.385040px;}
.ybc{bottom:1054.620000px;}
.y68{bottom:1054.971540px;}
.y94{bottom:1055.679840px;}
.y3{bottom:1067.220000px;}
.y28{bottom:1072.965420px;}
.ye3{bottom:1073.343600px;}
.y67{bottom:1081.430280px;}
.y27{bottom:1090.430280px;}
.ye2{bottom:1095.120000px;}
.y66{bottom:1098.895140px;}
.y2{bottom:1102.860000px;}
.y26{bottom:1107.895140px;}
.ybb{bottom:1110.060000px;}
.y65{bottom:1116.360000px;}
.y25{bottom:1125.360000px;}
.y1{bottom:1141.020000px;}
.hc{height:38.158500px;}
.he{height:38.160000px;}
.h5{height:45.895781px;}
.h2{height:54.628594px;}
.h9{height:62.327813px;}
.h3{height:63.763920px;}
.h12{height:65.010937px;}
.h11{height:66.757500px;}
.h13{height:69.086250px;}
.h14{height:70.678080px;}
.h10{height:84.898125px;}
.hf{height:96.508125px;}
.hd{height:114.480000px;}
.h4{height:129.232080px;}
.h6{height:183.060000px;}
.hb{height:332.100000px;}
.h8{height:492.298500px;}
.ha{height:497.520000px;}
.h7{height:1038.778500px;}
.h15{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:361.260000px;}
.w2{width:723.240000px;}
.w4{width:887.040000px;}
.w5{width:887.250000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.640000px;}
.xf{left:66.240000px;}
.x7{left:106.200000px;}
.x4{left:114.840000px;}
.x16{left:117.000000px;}
.x3{left:127.620000px;}
.x1d{left:132.840000px;}
.x11{left:141.851520px;}
.x1b{left:150.480000px;}
.x15{left:154.620000px;}
.x12{left:168.848100px;}
.x9{left:170.820000px;}
.x1f{left:180.562320px;}
.xc{left:183.060000px;}
.x1e{left:185.596560px;}
.x20{left:212.605920px;}
.x1a{left:260.280000px;}
.x14{left:273.060000px;}
.x2{left:278.640000px;}
.x19{left:308.160000px;}
.xd{left:333.360000px;}
.x1c{left:366.120000px;}
.x1{left:388.800000px;}
.x17{left:468.180000px;}
.x18{left:476.820000px;}
.xe{left:506.340000px;}
.x13{left:518.220000px;}
.x10{left:570.060000px;}
.xa{left:604.080000px;}
.x5{left:625.680000px;}
.xb{left:681.480000px;}
.x6{left:700.009920px;}
@media print{
.v2{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.120000pt;}
.ls40{letter-spacing:-1.295360pt;}
.ls3b{letter-spacing:-0.883200pt;}
.ls3e{letter-spacing:-0.765440pt;}
.ls3d{letter-spacing:-0.647680pt;}
.ls3f{letter-spacing:-0.599040pt;}
.lsc{letter-spacing:-0.529920pt;}
.ls2d{letter-spacing:-0.412160pt;}
.ls1f{letter-spacing:-0.371840pt;}
.ls2f{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.318720pt;}
.ls39{letter-spacing:-0.299520pt;}
.ls1e{letter-spacing:-0.265600pt;}
.ls9{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.214400pt;}
.ls11{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.159360pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls24{letter-spacing:-0.106240pt;}
.ls3a{letter-spacing:-0.074880pt;}
.ls2c{letter-spacing:-0.058880pt;}
.lsf{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053120pt;}
.ls2b{letter-spacing:0.058880pt;}
.ls38{letter-spacing:0.074880pt;}
.ls33{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.176640pt;}
.ls22{letter-spacing:0.212480pt;}
.ls2e{letter-spacing:0.235520pt;}
.ls12{letter-spacing:0.265600pt;}
.ls3c{letter-spacing:0.294400pt;}
.ls36{letter-spacing:0.299520pt;}
.ls1{letter-spacing:0.318720pt;}
.ls2a{letter-spacing:0.424960pt;}
.ls21{letter-spacing:0.478080pt;}
.ls2{letter-spacing:0.637440pt;}
.ls13{letter-spacing:0.903040pt;}
.ls37{letter-spacing:1.198080pt;}
.ls28{letter-spacing:1.912320pt;}
.ls14{letter-spacing:2.549760pt;}
.ls15{letter-spacing:3.187200pt;}
.ls25{letter-spacing:3.210880pt;}
.ls19{letter-spacing:3.824640pt;}
.ls26{letter-spacing:5.152640pt;}
.ls18{letter-spacing:5.790080pt;}
.ls1c{letter-spacing:6.427520pt;}
.ls16{letter-spacing:7.702400pt;}
.ls1b{letter-spacing:9.614720pt;}
.ls27{letter-spacing:10.252160pt;}
.ls17{letter-spacing:11.792640pt;}
.ls23{letter-spacing:13.439360pt;}
.ls1a{letter-spacing:15.351680pt;}
.ls29{letter-spacing:18.664960pt;}
.ls1d{letter-spacing:25.610880pt;}
.ls35{letter-spacing:52.756480pt;}
.ls32{letter-spacing:59.763200pt;}
.ls5{letter-spacing:149.745280pt;}
.ls7{letter-spacing:159.360000pt;}
.ls31{letter-spacing:174.108160pt;}
.ls30{letter-spacing:215.813120pt;}
.ls3{letter-spacing:324.479360pt;}
.ls4{letter-spacing:437.153280pt;}
.ls6{letter-spacing:451.201280pt;}
.ls8{letter-spacing:537.856000pt;}
.ls0{letter-spacing:1046.398720pt;}
.ws6a{word-spacing:-18.794880pt;}
.ws6{word-spacing:-16.307840pt;}
.ws46{word-spacing:-16.201600pt;}
.ws4{word-spacing:-16.042240pt;}
.ws7{word-spacing:-15.989120pt;}
.ws3{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.829760pt;}
.ws2{word-spacing:-15.776640pt;}
.ws1e{word-spacing:-15.723520pt;}
.ws6d{word-spacing:-15.014400pt;}
.ws70{word-spacing:-14.955520pt;}
.ws6f{word-spacing:-14.837760pt;}
.ws6c{word-spacing:-14.720000pt;}
.ws47{word-spacing:-14.661120pt;}
.ws6b{word-spacing:-14.602240pt;}
.ws73{word-spacing:-14.366720pt;}
.ws6e{word-spacing:-14.190080pt;}
.ws71{word-spacing:-14.072320pt;}
.ws72{word-spacing:-13.954560pt;}
.ws8a{word-spacing:-13.424640pt;}
.ws59{word-spacing:-13.365760pt;}
.ws5a{word-spacing:-13.248000pt;}
.ws5b{word-spacing:-13.071360pt;}
.ws5c{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.776960pt;}
.ws78{word-spacing:-1.123200pt;}
.ws81{word-spacing:-0.942080pt;}
.ws68{word-spacing:-0.765440pt;}
.ws82{word-spacing:-0.647680pt;}
.ws62{word-spacing:-0.478080pt;}
.ws74{word-spacing:-0.449280pt;}
.ws5f{word-spacing:-0.424960pt;}
.ws1{word-spacing:-0.371840pt;}
.wsf{word-spacing:-0.318720pt;}
.ws84{word-spacing:-0.294400pt;}
.ws10{word-spacing:-0.265600pt;}
.ws80{word-spacing:-0.235520pt;}
.ws4d{word-spacing:-0.212480pt;}
.ws75{word-spacing:-0.170240pt;}
.ws69{word-spacing:-0.117760pt;}
.ws76{word-spacing:-0.074880pt;}
.wsb{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053120pt;}
.wse{word-spacing:0.085760pt;}
.ws85{word-spacing:0.117760pt;}
.ws77{word-spacing:0.149760pt;}
.wsc{word-spacing:0.159360pt;}
.ws12{word-spacing:0.212480pt;}
.wsa{word-spacing:0.235520pt;}
.ws7a{word-spacing:0.299520pt;}
.ws25{word-spacing:0.318720pt;}
.ws8{word-spacing:0.353280pt;}
.ws23{word-spacing:0.371840pt;}
.ws88{word-spacing:0.449280pt;}
.ws67{word-spacing:0.529920pt;}
.ws65{word-spacing:0.584320pt;}
.ws83{word-spacing:0.647680pt;}
.ws51{word-spacing:0.690560pt;}
.ws13{word-spacing:0.796800pt;}
.ws86{word-spacing:0.823680pt;}
.ws7f{word-spacing:0.883200pt;}
.ws24{word-spacing:0.956160pt;}
.ws20{word-spacing:1.009280pt;}
.ws87{word-spacing:1.048320pt;}
.ws89{word-spacing:1.422720pt;}
.ws4b{word-spacing:1.434240pt;}
.ws4c{word-spacing:1.593600pt;}
.ws39{word-spacing:1.646720pt;}
.ws55{word-spacing:1.965440pt;}
.ws1f{word-spacing:2.071680pt;}
.ws61{word-spacing:2.124800pt;}
.ws21{word-spacing:2.284160pt;}
.ws22{word-spacing:2.709120pt;}
.ws19{word-spacing:2.921600pt;}
.ws26{word-spacing:3.346560pt;}
.ws7c{word-spacing:3.369600pt;}
.ws1a{word-spacing:3.399680pt;}
.ws4e{word-spacing:3.505920pt;}
.ws7b{word-spacing:3.744000pt;}
.ws15{word-spacing:3.984000pt;}
.ws27{word-spacing:4.037120pt;}
.ws79{word-spacing:4.043520pt;}
.ws28{word-spacing:4.196480pt;}
.ws29{word-spacing:4.621440pt;}
.ws5d{word-spacing:4.833920pt;}
.ws5e{word-spacing:4.887040pt;}
.ws52{word-spacing:5.205760pt;}
.ws38{word-spacing:5.258880pt;}
.ws50{word-spacing:5.418240pt;}
.ws2c{word-spacing:5.471360pt;}
.ws43{word-spacing:5.683840pt;}
.ws1b{word-spacing:5.896320pt;}
.ws2d{word-spacing:6.055680pt;}
.ws37{word-spacing:6.108800pt;}
.ws33{word-spacing:6.533760pt;}
.ws42{word-spacing:6.693120pt;}
.ws60{word-spacing:7.224320pt;}
.ws2a{word-spacing:7.436800pt;}
.ws30{word-spacing:7.861760pt;}
.ws31{word-spacing:7.914880pt;}
.ws3b{word-spacing:8.499200pt;}
.ws53{word-spacing:9.030400pt;}
.ws3e{word-spacing:9.136640pt;}
.ws3d{word-spacing:9.349120pt;}
.ws2e{word-spacing:9.774080pt;}
.ws7e{word-spacing:10.408320pt;}
.ws1c{word-spacing:10.411520pt;}
.ws2f{word-spacing:10.570880pt;}
.ws66{word-spacing:10.624000pt;}
.ws7d{word-spacing:10.782720pt;}
.ws3a{word-spacing:11.048960pt;}
.ws32{word-spacing:11.261440pt;}
.ws54{word-spacing:11.580160pt;}
.ws1d{word-spacing:11.686400pt;}
.ws57{word-spacing:12.217600pt;}
.ws14{word-spacing:12.323840pt;}
.ws2b{word-spacing:12.961280pt;}
.ws48{word-spacing:13.226880pt;}
.ws4a{word-spacing:13.598720pt;}
.ws49{word-spacing:14.236160pt;}
.ws4f{word-spacing:14.926720pt;}
.ws3c{word-spacing:15.511040pt;}
.ws40{word-spacing:16.945280pt;}
.ws3f{word-spacing:16.998400pt;}
.ws16{word-spacing:17.423360pt;}
.ws58{word-spacing:18.060800pt;}
.ws64{word-spacing:18.723840pt;}
.ws63{word-spacing:18.900480pt;}
.ws18{word-spacing:20.663680pt;}
.ws17{word-spacing:20.716800pt;}
.ws11{word-spacing:21.301120pt;}
.ws35{word-spacing:21.566720pt;}
.ws34{word-spacing:21.938560pt;}
.ws36{word-spacing:21.991680pt;}
.ws41{word-spacing:23.850880pt;}
.ws45{word-spacing:25.338240pt;}
.ws44{word-spacing:25.763200pt;}
.ws56{word-spacing:30.172160pt;}
._e{margin-left:-2.060800pt;}
._1{margin-left:-1.000960pt;}
._0{width:1.295360pt;}
._2{width:2.573440pt;}
._4{width:4.248960pt;}
._5{width:5.511680pt;}
._6{width:6.606720pt;}
._8{width:8.764800pt;}
._9{width:10.922240pt;}
._c{width:14.342400pt;}
._d{width:18.488320pt;}
._a{width:20.867840pt;}
._7{width:22.183680pt;}
._b{width:25.456000pt;}
._f{width:174.108160pt;}
._3{width:583.957120pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.680000pt;}
.y22{bottom:3.840000pt;}
.yb3{bottom:20.000000pt;}
.yb5{bottom:87.840000pt;}
.y89{bottom:99.200000pt;}
.y23{bottom:104.000000pt;}
.y5c{bottom:104.640000pt;}
.yba{bottom:108.000000pt;}
.y21{bottom:108.640000pt;}
.ye1{bottom:116.798080pt;}
.y91{bottom:118.555040pt;}
.yb9{bottom:122.560000pt;}
.y61{bottom:123.191360pt;}
.y20{bottom:127.804160pt;}
.y90{bottom:133.920000pt;}
.y60{bottom:138.715680pt;}
.ye0{bottom:139.040000pt;}
.y1f{bottom:143.328480pt;}
.y5f{bottom:154.240000pt;}
.yb8{bottom:157.120000pt;}
.y8f{bottom:157.434080pt;}
.y8a{bottom:158.400000pt;}
.y1e{bottom:158.852800pt;}
.ydf{bottom:162.089280pt;}
.y97{bottom:167.200000pt;}
.y1d{bottom:174.377120pt;}
.y5e{bottom:177.595680pt;}
.y8e{bottom:180.952960pt;}
.yde{bottom:183.523680pt;}
.y1c{bottom:189.742080pt;}
.yb4{bottom:191.680000pt;}
.y5d{bottom:193.120000pt;}
.y8d{bottom:203.675040pt;}
.ydd{bottom:204.958080pt;}
.y1b{bottom:205.266400pt;}
.y5b{bottom:208.604160pt;}
.yb7{bottom:211.685120pt;}
.y8c{bottom:219.040000pt;}
.y1a{bottom:220.790720pt;}
.y5a{bottom:224.128480pt;}
.ydc{bottom:231.840000pt;}
.y19{bottom:236.315040pt;}
.y59{bottom:239.493440pt;}
.y8b{bottom:242.240000pt;}
.y52{bottom:244.000000pt;}
.yb6{bottom:245.600000pt;}
.y18{bottom:251.680000pt;}
.y58{bottom:255.017760pt;}
.y88{bottom:257.595040pt;}
.ydb{bottom:257.793280pt;}
.y57{bottom:270.542080pt;}
.y87{bottom:272.960000pt;}
.yda{bottom:282.920320pt;}
.y93{bottom:283.520000pt;}
.y17{bottom:283.840000pt;}
.y56{bottom:286.066400pt;}
.yb2{bottom:294.080000pt;}
.y86{bottom:296.292160pt;}
.y4f{bottom:298.400000pt;}
.y16{bottom:299.360000pt;}
.yd9{bottom:299.715840pt;}
.y55{bottom:301.431360pt;}
.y85{bottom:311.657120pt;}
.y54{bottom:316.955680pt;}
.yd8{bottom:324.680960pt;}
.y84{bottom:326.862720pt;}
.y4c{bottom:329.440000pt;}
.y15{bottom:331.515840pt;}
.y53{bottom:332.480000pt;}
.yb1{bottom:340.454560pt;}
.y83{bottom:342.227680pt;}
.yd7{bottom:349.160320pt;}
.yb0{bottom:355.978880pt;}
.y51{bottom:363.360000pt;}
.y14{bottom:363.680000pt;}
.y82{bottom:365.587200pt;}
.yd6{bottom:374.434560pt;}
.yaf{bottom:379.497760pt;}
.y81{bottom:380.952160pt;}
.y50{bottom:386.880000pt;}
.yd5{bottom:392.348800pt;}
.yae{bottom:395.022080pt;}
.y13{bottom:395.360000pt;}
.y80{bottom:396.317120pt;}
.y4e{bottom:402.395680pt;}
.yd4{bottom:410.263040pt;}
.yad{bottom:410.387040pt;}
.y4d{bottom:417.920000pt;}
.y7f{bottom:420.473440pt;}
.y12{bottom:421.600000pt;}
.yac{bottom:425.911360pt;}
.y64{bottom:425.920000pt;}
.y46{bottom:430.240000pt;}
.yfb{bottom:430.743040pt;}
.yd3{bottom:435.066240pt;}
.yab{bottom:441.435680pt;}
.y7e{bottom:443.832960pt;}
.y4b{bottom:448.787040pt;}
.yd2{bottom:451.861760pt;}
.yfa{bottom:453.146880pt;}
.yaa{bottom:456.960000pt;}
.y4a{bottom:464.311360pt;}
.y7d{bottom:467.351840pt;}
.yd1{bottom:468.819200pt;}
.yf9{bottom:471.223040pt;}
.y49{bottom:479.835680pt;}
.y7c{bottom:482.876160pt;}
.yd0{bottom:485.614720pt;}
.ya9{bottom:489.120000pt;}
.yf8{bottom:494.421760pt;}
.y48{bottom:495.360000pt;}
.ycf{bottom:502.572160pt;}
.y7b{bottom:506.395040pt;}
.y11{bottom:515.360000pt;}
.yf7{bottom:516.339840pt;}
.y47{bottom:518.720000pt;}
.ya8{bottom:521.282720pt;}
.y7a{bottom:521.760000pt;}
.yce{bottom:524.328320pt;}
.y3f{bottom:531.200000pt;}
.y45{bottom:534.226400pt;}
.yf6{bottom:538.905600pt;}
.y10{bottom:547.520000pt;}
.ycd{bottom:549.293440pt;}
.y44{bottom:549.750720pt;}
.ya7{bottom:553.287520pt;}
.y79{bottom:553.920000pt;}
.yf5{bottom:555.701120pt;}
.y43{bottom:565.275040pt;}
.y78{bottom:569.440000pt;}
.y3c{bottom:570.080000pt;}
.yf4{bottom:572.496640pt;}
.ycc{bottom:574.420480pt;}
.yf{bottom:579.680000pt;}
.y42{bottom:580.640000pt;}
.ya6{bottom:584.482240pt;}
.yf3{bottom:589.454080pt;}
.y63{bottom:589.760000pt;}
.ycb{bottom:591.377920pt;}
.y39{bottom:601.120000pt;}
.y77{bottom:601.595840pt;}
.y41{bottom:604.155680pt;}
.ya5{bottom:608.001120pt;}
.yca{bottom:608.173440pt;}
.yf2{bottom:611.372160pt;}
.ye{bottom:611.840000pt;}
.y40{bottom:619.680000pt;}
.yc9{bottom:624.968960pt;}
.y76{bottom:625.114720pt;}
.ya4{bottom:631.520000pt;}
.y36{bottom:632.000000pt;}
.yf1{bottom:633.776000pt;}
.y3e{bottom:635.200000pt;}
.yc8{bottom:641.926400pt;}
.yd{bottom:644.001120pt;}
.y34{bottom:647.520000pt;}
.y75{bottom:648.474240pt;}
.yf0{bottom:650.733440pt;}
.y3d{bottom:658.560000pt;}
.ya3{bottom:663.209600pt;}
.yc7{bottom:666.405760pt;}
.yc{bottom:667.520000pt;}
.yef{bottom:667.528960pt;}
.y74{bottom:671.993120pt;}
.y3b{bottom:674.075680pt;}
.ya2{bottom:683.847040pt;}
.y73{bottom:687.517440pt;}
.y3a{bottom:689.600000pt;}
.yee{bottom:689.770880pt;}
.yc6{bottom:691.680000pt;}
.yb{bottom:699.680000pt;}
.y72{bottom:703.041760pt;}
.y38{bottom:705.115040pt;}
.yc5{bottom:708.475520pt;}
.yed{bottom:711.688960pt;}
.ya1{bottom:717.600000pt;}
.y37{bottom:720.480000pt;}
.y71{bottom:726.560640pt;}
.ya{bottom:731.840000pt;}
.y92{bottom:732.160000pt;}
.yc4{bottom:733.116800pt;}
.yec{bottom:733.768960pt;}
.y35{bottom:736.000000pt;}
.ya0{bottom:743.992480pt;}
.y70{bottom:749.920160pt;}
.y33{bottom:751.511360pt;}
.yc3{bottom:757.920000pt;}
.yeb{bottom:766.888960pt;}
.y32{bottom:767.035680pt;}
.y9f{bottom:767.511360pt;}
.y9{bottom:772.160000pt;}
.y6f{bottom:773.439040pt;}
.y31{bottom:782.560000pt;}
.y9e{bottom:783.035680pt;}
.yc2{bottom:783.684480pt;}
.yea{bottom:787.364480pt;}
.y6e{bottom:796.957920pt;}
.y8{bottom:798.400000pt;}
.y9d{bottom:798.560000pt;}
.yc1{bottom:805.118880pt;}
.y30{bottom:805.900000pt;}
.ye9{bottom:810.563200pt;}
.y7{bottom:813.600000pt;}
.y6d{bottom:820.476800pt;}
.y9c{bottom:821.902080pt;}
.yc0{bottom:826.553280pt;}
.y2f{bottom:829.418880pt;}
.ye8{bottom:832.805120pt;}
.y9b{bottom:837.426400pt;}
.y6c{bottom:843.836320pt;}
.y2e{bottom:852.937760pt;}
.y9a{bottom:852.950720pt;}
.ybf{bottom:853.435200pt;}
.ye7{bottom:855.047040pt;}
.y6{bottom:860.801120pt;}
.y6b{bottom:867.355200pt;}
.y2d{bottom:868.462080pt;}
.y99{bottom:868.475040pt;}
.ye6{bottom:876.803200pt;}
.ybe{bottom:883.200000pt;}
.y2c{bottom:883.827040pt;}
.y98{bottom:883.840000pt;}
.y5{bottom:884.320000pt;}
.y6a{bottom:890.874080pt;}
.y2b{bottom:899.351360pt;}
.y96{bottom:899.360000pt;}
.y24{bottom:911.680000pt;}
.ybd{bottom:912.800000pt;}
.y69{bottom:914.392960pt;}
.y2a{bottom:914.875680pt;}
.ye5{bottom:915.369600pt;}
.y4{bottom:916.480000pt;}
.y95{bottom:922.857760pt;}
.y29{bottom:930.400000pt;}
.ye4{bottom:934.564480pt;}
.ybc{bottom:937.440000pt;}
.y68{bottom:937.752480pt;}
.y94{bottom:938.382080pt;}
.y3{bottom:948.640000pt;}
.y28{bottom:953.747040pt;}
.ye3{bottom:954.083200pt;}
.y67{bottom:961.271360pt;}
.y27{bottom:969.271360pt;}
.ye2{bottom:973.440000pt;}
.y66{bottom:976.795680pt;}
.y2{bottom:980.320000pt;}
.y26{bottom:984.795680pt;}
.ybb{bottom:986.720000pt;}
.y65{bottom:992.320000pt;}
.y25{bottom:1000.320000pt;}
.y1{bottom:1014.240000pt;}
.hc{height:33.918667pt;}
.he{height:33.920000pt;}
.h5{height:40.796250pt;}
.h2{height:48.558750pt;}
.h9{height:55.402500pt;}
.h3{height:56.679040pt;}
.h12{height:57.787500pt;}
.h11{height:59.340000pt;}
.h13{height:61.410000pt;}
.h14{height:62.824960pt;}
.h10{height:75.465000pt;}
.hf{height:85.785000pt;}
.hd{height:101.760000pt;}
.h4{height:114.872960pt;}
.h6{height:162.720000pt;}
.hb{height:295.200000pt;}
.h8{height:437.598667pt;}
.ha{height:442.240000pt;}
.h7{height:923.358667pt;}
.h15{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:321.120000pt;}
.w2{width:642.880000pt;}
.w4{width:788.480000pt;}
.w5{width:788.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.680000pt;}
.xf{left:58.880000pt;}
.x7{left:94.400000pt;}
.x4{left:102.080000pt;}
.x16{left:104.000000pt;}
.x3{left:113.440000pt;}
.x1d{left:118.080000pt;}
.x11{left:126.090240pt;}
.x1b{left:133.760000pt;}
.x15{left:137.440000pt;}
.x12{left:150.087200pt;}
.x9{left:151.840000pt;}
.x1f{left:160.499840pt;}
.xc{left:162.720000pt;}
.x1e{left:164.974720pt;}
.x20{left:188.983040pt;}
.x1a{left:231.360000pt;}
.x14{left:242.720000pt;}
.x2{left:247.680000pt;}
.x19{left:273.920000pt;}
.xd{left:296.320000pt;}
.x1c{left:325.440000pt;}
.x1{left:345.600000pt;}
.x17{left:416.160000pt;}
.x18{left:423.840000pt;}
.xe{left:450.080000pt;}
.x13{left:460.640000pt;}
.x10{left:506.720000pt;}
.xa{left:536.960000pt;}
.x5{left:556.160000pt;}
.xb{left:605.760000pt;}
.x6{left:622.231040pt;}
}




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