
    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_4812ac4d0a21ac20e36c2a1f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e8d7338722280d700f27b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_e0bf6d10b8748d6f61565c12.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ac3c809b6d293808455f9920.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_ff5433021ac95f0e6e6178a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.474000px;}
.ls20{letter-spacing:-1.914000px;}
.ls2f{letter-spacing:-1.650000px;}
.ls3e{letter-spacing:-1.584000px;}
.ls2b{letter-spacing:-1.518000px;}
.ls2a{letter-spacing:-1.452000px;}
.ls1e{letter-spacing:-1.386000px;}
.ls2c{letter-spacing:-1.254000px;}
.ls34{letter-spacing:-1.188000px;}
.ls1b{letter-spacing:-1.122000px;}
.lsb{letter-spacing:-1.083000px;}
.ls22{letter-spacing:-1.056000px;}
.lsc{letter-spacing:-1.026000px;}
.ls1f{letter-spacing:-0.990000px;}
.ls31{letter-spacing:-0.924000px;}
.ls3d{letter-spacing:-0.858000px;}
.lsa{letter-spacing:-0.798000px;}
.ls3c{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.660000px;}
.ls19{letter-spacing:-0.627000px;}
.ls30{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.570000px;}
.ls21{letter-spacing:-0.528000px;}
.ls6{letter-spacing:-0.513000px;}
.ls2d{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.456000px;}
.ls24{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.342000px;}
.ls23{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.285000px;}
.ls33{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.132000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.057000px;}
.lsd{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.066000px;}
.ls46{letter-spacing:0.099000px;}
.ls5{letter-spacing:0.114000px;}
.ls13{letter-spacing:0.132000px;}
.ls44{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.228000px;}
.lse{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.456000px;}
.ls35{letter-spacing:0.462000px;}
.ls43{letter-spacing:0.495000px;}
.ls27{letter-spacing:0.528000px;}
.ls2e{letter-spacing:0.594000px;}
.ls47{letter-spacing:0.643500px;}
.ls36{letter-spacing:0.660000px;}
.ls3a{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.688500px;}
.ls16{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.726000px;}
.ls17{letter-spacing:0.729000px;}
.ls3b{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.858000px;}
.ls2{letter-spacing:0.912000px;}
.ls37{letter-spacing:0.924000px;}
.ls39{letter-spacing:0.990000px;}
.ls3f{letter-spacing:1.056000px;}
.ls41{letter-spacing:1.122000px;}
.ls40{letter-spacing:1.188000px;}
.ls45{letter-spacing:1.254000px;}
.ls42{letter-spacing:1.980000px;}
.ls38{letter-spacing:2.244000px;}
.ls12{letter-spacing:13.578000px;}
.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;}
}
.ws57{word-spacing:-18.744000px;}
.ws6b{word-spacing:-18.084000px;}
.ws65{word-spacing:-17.688000px;}
.ws67{word-spacing:-17.622000px;}
.ws68{word-spacing:-17.424000px;}
.ws42{word-spacing:-17.358000px;}
.ws66{word-spacing:-17.292000px;}
.ws4d{word-spacing:-17.226000px;}
.ws5e{word-spacing:-17.160000px;}
.ws5f{word-spacing:-17.028000px;}
.ws55{word-spacing:-16.962000px;}
.ws1e{word-spacing:-16.896000px;}
.ws1f{word-spacing:-16.830000px;}
.ws3f{word-spacing:-16.764000px;}
.ws1c{word-spacing:-16.698000px;}
.ws6d{word-spacing:-16.632000px;}
.ws21{word-spacing:-16.566000px;}
.ws1b{word-spacing:-16.500000px;}
.ws1d{word-spacing:-16.434000px;}
.ws64{word-spacing:-16.368000px;}
.ws61{word-spacing:-16.170000px;}
.ws4f{word-spacing:-16.104000px;}
.ws6a{word-spacing:-16.038000px;}
.ws56{word-spacing:-15.840000px;}
.ws40{word-spacing:-15.774000px;}
.ws50{word-spacing:-15.576000px;}
.ws60{word-spacing:-15.510000px;}
.ws20{word-spacing:-15.444000px;}
.ws4e{word-spacing:-15.378000px;}
.ws51{word-spacing:-15.312000px;}
.ws41{word-spacing:-15.246000px;}
.ws3{word-spacing:-15.162000px;}
.ws5{word-spacing:-14.706000px;}
.ws2{word-spacing:-14.535000px;}
.ws4{word-spacing:-14.250000px;}
.ws27{word-spacing:-14.202000px;}
.ws1a{word-spacing:-14.193000px;}
.ws19{word-spacing:-13.737000px;}
.ws6{word-spacing:-13.167000px;}
.ws58{word-spacing:-12.672000px;}
.ws8{word-spacing:-12.192000px;}
.ws7{word-spacing:-12.000000px;}
.ws23{word-spacing:-11.952000px;}
.ws26{word-spacing:-10.854000px;}
.ws25{word-spacing:-10.813500px;}
.ws1{word-spacing:-7.392000px;}
.ws62{word-spacing:-0.858000px;}
.ws37{word-spacing:-0.792000px;}
.ws2e{word-spacing:-0.726000px;}
.ws29{word-spacing:-0.684000px;}
.ws3c{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.594000px;}
.ws3a{word-spacing:-0.528000px;}
.ws3b{word-spacing:-0.462000px;}
.ws11{word-spacing:-0.456000px;}
.ws53{word-spacing:-0.396000px;}
.ws13{word-spacing:-0.342000px;}
.ws39{word-spacing:-0.330000px;}
.wsc{word-spacing:-0.285000px;}
.ws38{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.228000px;}
.ws46{word-spacing:-0.198000px;}
.ws10{word-spacing:-0.171000px;}
.ws44{word-spacing:-0.132000px;}
.ws2a{word-spacing:-0.114000px;}
.ws3e{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:0.046200px;}
.ws14{word-spacing:0.057000px;}
.ws35{word-spacing:0.066000px;}
.ws32{word-spacing:0.132000px;}
.ws34{word-spacing:0.198000px;}
.ws2b{word-spacing:0.264000px;}
.wsa{word-spacing:0.285000px;}
.ws4c{word-spacing:0.330000px;}
.ws18{word-spacing:0.342000px;}
.ws47{word-spacing:0.396000px;}
.ws5d{word-spacing:0.462000px;}
.ws9{word-spacing:0.513000px;}
.ws30{word-spacing:0.594000px;}
.ws4a{word-spacing:0.660000px;}
.ws48{word-spacing:0.726000px;}
.ws54{word-spacing:0.792000px;}
.ws49{word-spacing:0.858000px;}
.ws5a{word-spacing:0.924000px;}
.ws16{word-spacing:0.969000px;}
.ws52{word-spacing:0.990000px;}
.ws45{word-spacing:1.056000px;}
.ws59{word-spacing:1.122000px;}
.ws33{word-spacing:1.188000px;}
.ws12{word-spacing:1.197000px;}
.ws5c{word-spacing:1.254000px;}
.ws17{word-spacing:1.311000px;}
.ws3d{word-spacing:1.320000px;}
.wsb{word-spacing:1.368000px;}
.ws2c{word-spacing:1.386000px;}
.wsd{word-spacing:1.425000px;}
.ws2d{word-spacing:1.452000px;}
.ws43{word-spacing:1.518000px;}
.ws31{word-spacing:1.584000px;}
.ws4b{word-spacing:1.650000px;}
.ws28{word-spacing:2.109000px;}
.ws5b{word-spacing:2.178000px;}
.ws15{word-spacing:3.591000px;}
.ws63{word-spacing:5.163000px;}
.ws6c{word-spacing:5.707500px;}
.ws69{word-spacing:5.742000px;}
.wse{word-spacing:5.928000px;}
.ws22{word-spacing:35.904000px;}
.ws24{word-spacing:36.018000px;}
._a{margin-left:-9.702000px;}
._8{margin-left:-8.184000px;}
._0{margin-left:-6.240000px;}
._7{margin-left:-5.229000px;}
._4{margin-left:-3.363000px;}
._1{margin-left:-1.632000px;}
._2{width:1.152000px;}
._d{width:2.178000px;}
._5{width:3.648000px;}
._3{width:5.343000px;}
._9{width:14.388000px;}
._e{width:17.028000px;}
._6{width:47.571000px;}
._f{width:48.963000px;}
._c{width:118.656000px;}
._b{width:581.523000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:40.500000px;}
.fs7{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:53.637000px;}
.y95{bottom:53.649000px;}
.ye9{bottom:53.665500px;}
.y77{bottom:53.682000px;}
.y4d{bottom:54.249000px;}
.y4c{bottom:68.505000px;}
.ybf{bottom:70.879500px;}
.y94{bottom:70.891500px;}
.ye8{bottom:70.908000px;}
.y76{bottom:70.924500px;}
.ybe{bottom:88.122000px;}
.y93{bottom:88.134000px;}
.ye7{bottom:88.150500px;}
.y75{bottom:88.167000px;}
.y1d{bottom:102.213000px;}
.ybd{bottom:105.364500px;}
.y92{bottom:105.376500px;}
.y74{bottom:105.409500px;}
.y1c{bottom:117.218250px;}
.y4b{bottom:117.243000px;}
.ye6{bottom:118.345500px;}
.ybc{bottom:122.607000px;}
.y91{bottom:122.619000px;}
.y73{bottom:122.652000px;}
.y4a{bottom:134.485500px;}
.y1b{bottom:138.222750px;}
.ybb{bottom:139.849500px;}
.y90{bottom:139.861500px;}
.y72{bottom:139.894500px;}
.y49{bottom:151.728000px;}
.y1a{bottom:153.228000px;}
.yba{bottom:157.092000px;}
.y8f{bottom:157.104000px;}
.y71{bottom:157.137000px;}
.ye5{bottom:161.476500px;}
.y19{bottom:168.233250px;}
.y48{bottom:168.970500px;}
.yb9{bottom:174.334500px;}
.y8e{bottom:174.346500px;}
.y70{bottom:174.379500px;}
.ye4{bottom:178.719000px;}
.y18{bottom:183.238500px;}
.y47{bottom:186.213000px;}
.yb8{bottom:191.577000px;}
.y8d{bottom:191.589000px;}
.y6f{bottom:191.622000px;}
.ye3{bottom:195.961500px;}
.y17{bottom:198.243750px;}
.y46{bottom:203.455500px;}
.yb7{bottom:208.819500px;}
.y8c{bottom:208.831500px;}
.y6e{bottom:208.864500px;}
.ye2{bottom:213.204000px;}
.y45{bottom:220.698000px;}
.yb6{bottom:226.062000px;}
.y8b{bottom:226.074000px;}
.y6d{bottom:226.107000px;}
.y16{bottom:228.240000px;}
.ye1{bottom:230.446500px;}
.y44{bottom:237.940500px;}
.y15{bottom:243.217500px;}
.yb5{bottom:243.304500px;}
.y8a{bottom:243.316500px;}
.y6c{bottom:243.349500px;}
.ye0{bottom:247.689000px;}
.y43{bottom:255.183000px;}
.yb4{bottom:260.547000px;}
.y89{bottom:260.559000px;}
.y6b{bottom:260.592000px;}
.ydf{bottom:264.931500px;}
.y42{bottom:272.425500px;}
.yb3{bottom:277.789500px;}
.y88{bottom:277.801500px;}
.y9c{bottom:277.834500px;}
.y14{bottom:279.213000px;}
.yde{bottom:282.174000px;}
.y6a{bottom:286.464000px;}
.y41{bottom:289.668000px;}
.y13{bottom:294.218250px;}
.yb2{bottom:295.032000px;}
.y9b{bottom:295.077000px;}
.ydd{bottom:299.416500px;}
.y87{bottom:303.673500px;}
.y69{bottom:303.706500px;}
.y40{bottom:306.910500px;}
.yb1{bottom:312.274500px;}
.y9a{bottom:312.319500px;}
.y12{bottom:315.222750px;}
.ydc{bottom:316.659000px;}
.y86{bottom:320.916000px;}
.yf3{bottom:329.407500px;}
.yb0{bottom:329.517000px;}
.y99{bottom:329.562000px;}
.y78{bottom:329.595000px;}
.y11{bottom:330.228000px;}
.y3f{bottom:332.782500px;}
.ydb{bottom:333.901500px;}
.y10{bottom:345.233250px;}
.yf2{bottom:346.650000px;}
.yaf{bottom:346.759500px;}
.y98{bottom:346.804500px;}
.y68{bottom:346.837500px;}
.y3e{bottom:350.025000px;}
.yda{bottom:351.144000px;}
.yf{bottom:360.238500px;}
.yf1{bottom:363.892500px;}
.yae{bottom:364.002000px;}
.y85{bottom:364.047000px;}
.y67{bottom:364.080000px;}
.y3d{bottom:367.267500px;}
.yd9{bottom:368.386500px;}
.ye{bottom:375.243750px;}
.yf0{bottom:381.135000px;}
.yad{bottom:381.244500px;}
.y84{bottom:381.289500px;}
.y66{bottom:381.322500px;}
.y3c{bottom:384.586500px;}
.yd8{bottom:385.629000px;}
.yef{bottom:398.418000px;}
.yac{bottom:398.487000px;}
.y83{bottom:398.532000px;}
.y65{bottom:398.565000px;}
.yd7{bottom:402.871500px;}
.yd{bottom:405.240000px;}
.y97{bottom:407.161500px;}
.yee{bottom:415.660500px;}
.yab{bottom:415.729500px;}
.y82{bottom:415.774500px;}
.y64{bottom:415.807500px;}
.yd6{bottom:420.114000px;}
.yc{bottom:420.217500px;}
.y96{bottom:424.404000px;}
.y3b{bottom:427.717500px;}
.yed{bottom:432.903000px;}
.yaa{bottom:432.972000px;}
.y81{bottom:433.017000px;}
.y63{bottom:433.050000px;}
.yd5{bottom:437.356500px;}
.y3a{bottom:444.960000px;}
.ya9{bottom:450.214500px;}
.y80{bottom:450.259500px;}
.y62{bottom:450.292500px;}
.yd4{bottom:454.599000px;}
.yb{bottom:456.213000px;}
.yec{bottom:458.775000px;}
.y39{bottom:462.202500px;}
.ya8{bottom:467.457000px;}
.y7f{bottom:467.502000px;}
.y61{bottom:467.535000px;}
.ya{bottom:471.218250px;}
.yd3{bottom:471.841500px;}
.yeb{bottom:476.017500px;}
.y38{bottom:479.445000px;}
.ya7{bottom:484.699500px;}
.y7e{bottom:484.744500px;}
.y60{bottom:484.777500px;}
.yd2{bottom:489.084000px;}
.y9{bottom:492.222750px;}
.yea{bottom:493.374000px;}
.y37{bottom:496.687500px;}
.ya6{bottom:501.942000px;}
.y7d{bottom:501.987000px;}
.y5f{bottom:502.020000px;}
.yd1{bottom:506.326500px;}
.y8{bottom:507.228000px;}
.y36{bottom:513.930000px;}
.ya5{bottom:519.184500px;}
.y7c{bottom:519.229500px;}
.y5e{bottom:519.262500px;}
.y7{bottom:522.233250px;}
.yd0{bottom:523.569000px;}
.y35{bottom:531.172500px;}
.ya4{bottom:536.427000px;}
.y7b{bottom:536.472000px;}
.y5d{bottom:536.505000px;}
.y6{bottom:537.238500px;}
.ycf{bottom:540.811500px;}
.y34{bottom:548.415000px;}
.y5{bottom:552.243750px;}
.ya3{bottom:553.669500px;}
.y7a{bottom:553.714500px;}
.y5c{bottom:553.747500px;}
.yce{bottom:558.054000px;}
.y33{bottom:565.657500px;}
.ya2{bottom:570.912000px;}
.y5b{bottom:570.990000px;}
.ycd{bottom:575.296500px;}
.y79{bottom:579.586500px;}
.y4{bottom:582.240000px;}
.y32{bottom:582.900000px;}
.y5a{bottom:588.232500px;}
.ycc{bottom:592.539000px;}
.ya1{bottom:596.784000px;}
.y31{bottom:600.142500px;}
.y59{bottom:605.475000px;}
.ycb{bottom:609.781500px;}
.ya0{bottom:614.026500px;}
.y30{bottom:617.385000px;}
.y58{bottom:622.717500px;}
.y27{bottom:622.884000px;}
.yca{bottom:627.024000px;}
.y26{bottom:637.140000px;}
.y57{bottom:639.960000px;}
.yc9{bottom:644.266500px;}
.y9f{bottom:657.157500px;}
.y56{bottom:657.202500px;}
.yc8{bottom:661.509000px;}
.y25{bottom:665.349000px;}
.y9e{bottom:674.400000px;}
.y55{bottom:674.445000px;}
.yc7{bottom:678.751500px;}
.y24{bottom:679.605000px;}
.y2f{bottom:686.385000px;}
.y9d{bottom:691.642500px;}
.y54{bottom:691.687500px;}
.yc6{bottom:695.994000px;}
.y23{bottom:697.605000px;}
.y2e{bottom:701.368500px;}
.y53{bottom:708.930000px;}
.yc5{bottom:713.236500px;}
.y22{bottom:715.605000px;}
.y2d{bottom:722.373000px;}
.y52{bottom:726.172500px;}
.yc4{bottom:730.479000px;}
.y2c{bottom:737.378250px;}
.y51{bottom:743.415000px;}
.yc3{bottom:747.721500px;}
.y2b{bottom:752.383500px;}
.y21{bottom:760.605000px;}
.y50{bottom:760.657500px;}
.yc2{bottom:764.964000px;}
.y2a{bottom:767.388750px;}
.y2{bottom:769.605000px;}
.y4f{bottom:777.900000px;}
.yc1{bottom:782.206500px;}
.y20{bottom:784.605000px;}
.y4e{bottom:795.142500px;}
.y29{bottom:797.385000px;}
.y1{bottom:805.605000px;}
.y1f{bottom:808.605000px;}
.y28{bottom:812.385000px;}
.y1e{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.h2{height:47.085938px;}
.h6{height:51.216000px;}
.h9{height:57.618000px;}
.hd{height:58.536000px;}
.h3{height:60.819000px;}
.h5{height:61.788000px;}
.h4{height:61.878000px;}
.ha{height:70.422000px;}
.hc{height:70.769400px;}
.he{height:71.088000px;}
.hb{height:71.544000px;}
.h8{height:76.824000px;}
.h7{height:89.628000px;}
.h1{height:102.432000px;}
.h0{height:891.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x3{left:6.000000px;}
.x4{left:76.200000px;}
.x8{left:77.415000px;}
.xb{left:93.426000px;}
.x9{left:94.689000px;}
.xa{left:99.916500px;}
.x1{left:187.620000px;}
.x2{left:213.396000px;}
.x5{left:378.885000px;}
.x7{left:406.881000px;}
.x6{left:411.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.088000pt;}
.ls20{letter-spacing:-1.701333pt;}
.ls2f{letter-spacing:-1.466667pt;}
.ls3e{letter-spacing:-1.408000pt;}
.ls2b{letter-spacing:-1.349333pt;}
.ls2a{letter-spacing:-1.290667pt;}
.ls1e{letter-spacing:-1.232000pt;}
.ls2c{letter-spacing:-1.114667pt;}
.ls34{letter-spacing:-1.056000pt;}
.ls1b{letter-spacing:-0.997333pt;}
.lsb{letter-spacing:-0.962667pt;}
.ls22{letter-spacing:-0.938667pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls1f{letter-spacing:-0.880000pt;}
.ls31{letter-spacing:-0.821333pt;}
.ls3d{letter-spacing:-0.762667pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls3c{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls19{letter-spacing:-0.557333pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls21{letter-spacing:-0.469333pt;}
.ls6{letter-spacing:-0.456000pt;}
.ls2d{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.405333pt;}
.ls24{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls23{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.253333pt;}
.ls33{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.050667pt;}
.lsd{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.058667pt;}
.ls46{letter-spacing:0.088000pt;}
.ls5{letter-spacing:0.101333pt;}
.ls13{letter-spacing:0.117333pt;}
.ls44{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.202667pt;}
.lse{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls35{letter-spacing:0.410667pt;}
.ls43{letter-spacing:0.440000pt;}
.ls27{letter-spacing:0.469333pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls47{letter-spacing:0.572000pt;}
.ls36{letter-spacing:0.586667pt;}
.ls3a{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.612000pt;}
.ls16{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.645333pt;}
.ls17{letter-spacing:0.648000pt;}
.ls3b{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.762667pt;}
.ls2{letter-spacing:0.810667pt;}
.ls37{letter-spacing:0.821333pt;}
.ls39{letter-spacing:0.880000pt;}
.ls3f{letter-spacing:0.938667pt;}
.ls41{letter-spacing:0.997333pt;}
.ls40{letter-spacing:1.056000pt;}
.ls45{letter-spacing:1.114667pt;}
.ls42{letter-spacing:1.760000pt;}
.ls38{letter-spacing:1.994667pt;}
.ls12{letter-spacing:12.069333pt;}
.ws57{word-spacing:-16.661333pt;}
.ws6b{word-spacing:-16.074667pt;}
.ws65{word-spacing:-15.722667pt;}
.ws67{word-spacing:-15.664000pt;}
.ws68{word-spacing:-15.488000pt;}
.ws42{word-spacing:-15.429333pt;}
.ws66{word-spacing:-15.370667pt;}
.ws4d{word-spacing:-15.312000pt;}
.ws5e{word-spacing:-15.253333pt;}
.ws5f{word-spacing:-15.136000pt;}
.ws55{word-spacing:-15.077333pt;}
.ws1e{word-spacing:-15.018667pt;}
.ws1f{word-spacing:-14.960000pt;}
.ws3f{word-spacing:-14.901333pt;}
.ws1c{word-spacing:-14.842667pt;}
.ws6d{word-spacing:-14.784000pt;}
.ws21{word-spacing:-14.725333pt;}
.ws1b{word-spacing:-14.666667pt;}
.ws1d{word-spacing:-14.608000pt;}
.ws64{word-spacing:-14.549333pt;}
.ws61{word-spacing:-14.373333pt;}
.ws4f{word-spacing:-14.314667pt;}
.ws6a{word-spacing:-14.256000pt;}
.ws56{word-spacing:-14.080000pt;}
.ws40{word-spacing:-14.021333pt;}
.ws50{word-spacing:-13.845333pt;}
.ws60{word-spacing:-13.786667pt;}
.ws20{word-spacing:-13.728000pt;}
.ws4e{word-spacing:-13.669333pt;}
.ws51{word-spacing:-13.610667pt;}
.ws41{word-spacing:-13.552000pt;}
.ws3{word-spacing:-13.477333pt;}
.ws5{word-spacing:-13.072000pt;}
.ws2{word-spacing:-12.920000pt;}
.ws4{word-spacing:-12.666667pt;}
.ws27{word-spacing:-12.624000pt;}
.ws1a{word-spacing:-12.616000pt;}
.ws19{word-spacing:-12.210667pt;}
.ws6{word-spacing:-11.704000pt;}
.ws58{word-spacing:-11.264000pt;}
.ws8{word-spacing:-10.837333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws23{word-spacing:-10.624000pt;}
.ws26{word-spacing:-9.648000pt;}
.ws25{word-spacing:-9.612000pt;}
.ws1{word-spacing:-6.570667pt;}
.ws62{word-spacing:-0.762667pt;}
.ws37{word-spacing:-0.704000pt;}
.ws2e{word-spacing:-0.645333pt;}
.ws29{word-spacing:-0.608000pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.528000pt;}
.ws3a{word-spacing:-0.469333pt;}
.ws3b{word-spacing:-0.410667pt;}
.ws11{word-spacing:-0.405333pt;}
.ws53{word-spacing:-0.352000pt;}
.ws13{word-spacing:-0.304000pt;}
.ws39{word-spacing:-0.293333pt;}
.wsc{word-spacing:-0.253333pt;}
.ws38{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.202667pt;}
.ws46{word-spacing:-0.176000pt;}
.ws10{word-spacing:-0.152000pt;}
.ws44{word-spacing:-0.117333pt;}
.ws2a{word-spacing:-0.101333pt;}
.ws3e{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:0.041067pt;}
.ws14{word-spacing:0.050667pt;}
.ws35{word-spacing:0.058667pt;}
.ws32{word-spacing:0.117333pt;}
.ws34{word-spacing:0.176000pt;}
.ws2b{word-spacing:0.234667pt;}
.wsa{word-spacing:0.253333pt;}
.ws4c{word-spacing:0.293333pt;}
.ws18{word-spacing:0.304000pt;}
.ws47{word-spacing:0.352000pt;}
.ws5d{word-spacing:0.410667pt;}
.ws9{word-spacing:0.456000pt;}
.ws30{word-spacing:0.528000pt;}
.ws4a{word-spacing:0.586667pt;}
.ws48{word-spacing:0.645333pt;}
.ws54{word-spacing:0.704000pt;}
.ws49{word-spacing:0.762667pt;}
.ws5a{word-spacing:0.821333pt;}
.ws16{word-spacing:0.861333pt;}
.ws52{word-spacing:0.880000pt;}
.ws45{word-spacing:0.938667pt;}
.ws59{word-spacing:0.997333pt;}
.ws33{word-spacing:1.056000pt;}
.ws12{word-spacing:1.064000pt;}
.ws5c{word-spacing:1.114667pt;}
.ws17{word-spacing:1.165333pt;}
.ws3d{word-spacing:1.173333pt;}
.wsb{word-spacing:1.216000pt;}
.ws2c{word-spacing:1.232000pt;}
.wsd{word-spacing:1.266667pt;}
.ws2d{word-spacing:1.290667pt;}
.ws43{word-spacing:1.349333pt;}
.ws31{word-spacing:1.408000pt;}
.ws4b{word-spacing:1.466667pt;}
.ws28{word-spacing:1.874667pt;}
.ws5b{word-spacing:1.936000pt;}
.ws15{word-spacing:3.192000pt;}
.ws63{word-spacing:4.589333pt;}
.ws6c{word-spacing:5.073333pt;}
.ws69{word-spacing:5.104000pt;}
.wse{word-spacing:5.269333pt;}
.ws22{word-spacing:31.914667pt;}
.ws24{word-spacing:32.016000pt;}
._a{margin-left:-8.624000pt;}
._8{margin-left:-7.274667pt;}
._0{margin-left:-5.546667pt;}
._7{margin-left:-4.648000pt;}
._4{margin-left:-2.989333pt;}
._1{margin-left:-1.450667pt;}
._2{width:1.024000pt;}
._d{width:1.936000pt;}
._5{width:3.242667pt;}
._3{width:4.749333pt;}
._9{width:12.789333pt;}
._e{width:15.136000pt;}
._6{width:42.285333pt;}
._f{width:43.522667pt;}
._c{width:105.472000pt;}
._b{width:516.909333pt;}
.fs8{font-size:36.000000pt;}
.fs7{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:47.677333pt;}
.y95{bottom:47.688000pt;}
.ye9{bottom:47.702667pt;}
.y77{bottom:47.717333pt;}
.y4d{bottom:48.221333pt;}
.y4c{bottom:60.893333pt;}
.ybf{bottom:63.004000pt;}
.y94{bottom:63.014667pt;}
.ye8{bottom:63.029333pt;}
.y76{bottom:63.044000pt;}
.ybe{bottom:78.330667pt;}
.y93{bottom:78.341333pt;}
.ye7{bottom:78.356000pt;}
.y75{bottom:78.370667pt;}
.y1d{bottom:90.856000pt;}
.ybd{bottom:93.657333pt;}
.y92{bottom:93.668000pt;}
.y74{bottom:93.697333pt;}
.y1c{bottom:104.194000pt;}
.y4b{bottom:104.216000pt;}
.ye6{bottom:105.196000pt;}
.ybc{bottom:108.984000pt;}
.y91{bottom:108.994667pt;}
.y73{bottom:109.024000pt;}
.y4a{bottom:119.542667pt;}
.y1b{bottom:122.864667pt;}
.ybb{bottom:124.310667pt;}
.y90{bottom:124.321333pt;}
.y72{bottom:124.350667pt;}
.y49{bottom:134.869333pt;}
.y1a{bottom:136.202667pt;}
.yba{bottom:139.637333pt;}
.y8f{bottom:139.648000pt;}
.y71{bottom:139.677333pt;}
.ye5{bottom:143.534667pt;}
.y19{bottom:149.540667pt;}
.y48{bottom:150.196000pt;}
.yb9{bottom:154.964000pt;}
.y8e{bottom:154.974667pt;}
.y70{bottom:155.004000pt;}
.ye4{bottom:158.861333pt;}
.y18{bottom:162.878667pt;}
.y47{bottom:165.522667pt;}
.yb8{bottom:170.290667pt;}
.y8d{bottom:170.301333pt;}
.y6f{bottom:170.330667pt;}
.ye3{bottom:174.188000pt;}
.y17{bottom:176.216667pt;}
.y46{bottom:180.849333pt;}
.yb7{bottom:185.617333pt;}
.y8c{bottom:185.628000pt;}
.y6e{bottom:185.657333pt;}
.ye2{bottom:189.514667pt;}
.y45{bottom:196.176000pt;}
.yb6{bottom:200.944000pt;}
.y8b{bottom:200.954667pt;}
.y6d{bottom:200.984000pt;}
.y16{bottom:202.880000pt;}
.ye1{bottom:204.841333pt;}
.y44{bottom:211.502667pt;}
.y15{bottom:216.193333pt;}
.yb5{bottom:216.270667pt;}
.y8a{bottom:216.281333pt;}
.y6c{bottom:216.310667pt;}
.ye0{bottom:220.168000pt;}
.y43{bottom:226.829333pt;}
.yb4{bottom:231.597333pt;}
.y89{bottom:231.608000pt;}
.y6b{bottom:231.637333pt;}
.ydf{bottom:235.494667pt;}
.y42{bottom:242.156000pt;}
.yb3{bottom:246.924000pt;}
.y88{bottom:246.934667pt;}
.y9c{bottom:246.964000pt;}
.y14{bottom:248.189333pt;}
.yde{bottom:250.821333pt;}
.y6a{bottom:254.634667pt;}
.y41{bottom:257.482667pt;}
.y13{bottom:261.527333pt;}
.yb2{bottom:262.250667pt;}
.y9b{bottom:262.290667pt;}
.ydd{bottom:266.148000pt;}
.y87{bottom:269.932000pt;}
.y69{bottom:269.961333pt;}
.y40{bottom:272.809333pt;}
.yb1{bottom:277.577333pt;}
.y9a{bottom:277.617333pt;}
.y12{bottom:280.198000pt;}
.ydc{bottom:281.474667pt;}
.y86{bottom:285.258667pt;}
.yf3{bottom:292.806667pt;}
.yb0{bottom:292.904000pt;}
.y99{bottom:292.944000pt;}
.y78{bottom:292.973333pt;}
.y11{bottom:293.536000pt;}
.y3f{bottom:295.806667pt;}
.ydb{bottom:296.801333pt;}
.y10{bottom:306.874000pt;}
.yf2{bottom:308.133333pt;}
.yaf{bottom:308.230667pt;}
.y98{bottom:308.270667pt;}
.y68{bottom:308.300000pt;}
.y3e{bottom:311.133333pt;}
.yda{bottom:312.128000pt;}
.yf{bottom:320.212000pt;}
.yf1{bottom:323.460000pt;}
.yae{bottom:323.557333pt;}
.y85{bottom:323.597333pt;}
.y67{bottom:323.626667pt;}
.y3d{bottom:326.460000pt;}
.yd9{bottom:327.454667pt;}
.ye{bottom:333.550000pt;}
.yf0{bottom:338.786667pt;}
.yad{bottom:338.884000pt;}
.y84{bottom:338.924000pt;}
.y66{bottom:338.953333pt;}
.y3c{bottom:341.854667pt;}
.yd8{bottom:342.781333pt;}
.yef{bottom:354.149333pt;}
.yac{bottom:354.210667pt;}
.y83{bottom:354.250667pt;}
.y65{bottom:354.280000pt;}
.yd7{bottom:358.108000pt;}
.yd{bottom:360.213333pt;}
.y97{bottom:361.921333pt;}
.yee{bottom:369.476000pt;}
.yab{bottom:369.537333pt;}
.y82{bottom:369.577333pt;}
.y64{bottom:369.606667pt;}
.yd6{bottom:373.434667pt;}
.yc{bottom:373.526667pt;}
.y96{bottom:377.248000pt;}
.y3b{bottom:380.193333pt;}
.yed{bottom:384.802667pt;}
.yaa{bottom:384.864000pt;}
.y81{bottom:384.904000pt;}
.y63{bottom:384.933333pt;}
.yd5{bottom:388.761333pt;}
.y3a{bottom:395.520000pt;}
.ya9{bottom:400.190667pt;}
.y80{bottom:400.230667pt;}
.y62{bottom:400.260000pt;}
.yd4{bottom:404.088000pt;}
.yb{bottom:405.522667pt;}
.yec{bottom:407.800000pt;}
.y39{bottom:410.846667pt;}
.ya8{bottom:415.517333pt;}
.y7f{bottom:415.557333pt;}
.y61{bottom:415.586667pt;}
.ya{bottom:418.860667pt;}
.yd3{bottom:419.414667pt;}
.yeb{bottom:423.126667pt;}
.y38{bottom:426.173333pt;}
.ya7{bottom:430.844000pt;}
.y7e{bottom:430.884000pt;}
.y60{bottom:430.913333pt;}
.yd2{bottom:434.741333pt;}
.y9{bottom:437.531333pt;}
.yea{bottom:438.554667pt;}
.y37{bottom:441.500000pt;}
.ya6{bottom:446.170667pt;}
.y7d{bottom:446.210667pt;}
.y5f{bottom:446.240000pt;}
.yd1{bottom:450.068000pt;}
.y8{bottom:450.869333pt;}
.y36{bottom:456.826667pt;}
.ya5{bottom:461.497333pt;}
.y7c{bottom:461.537333pt;}
.y5e{bottom:461.566667pt;}
.y7{bottom:464.207333pt;}
.yd0{bottom:465.394667pt;}
.y35{bottom:472.153333pt;}
.ya4{bottom:476.824000pt;}
.y7b{bottom:476.864000pt;}
.y5d{bottom:476.893333pt;}
.y6{bottom:477.545333pt;}
.ycf{bottom:480.721333pt;}
.y34{bottom:487.480000pt;}
.y5{bottom:490.883333pt;}
.ya3{bottom:492.150667pt;}
.y7a{bottom:492.190667pt;}
.y5c{bottom:492.220000pt;}
.yce{bottom:496.048000pt;}
.y33{bottom:502.806667pt;}
.ya2{bottom:507.477333pt;}
.y5b{bottom:507.546667pt;}
.ycd{bottom:511.374667pt;}
.y79{bottom:515.188000pt;}
.y4{bottom:517.546667pt;}
.y32{bottom:518.133333pt;}
.y5a{bottom:522.873333pt;}
.ycc{bottom:526.701333pt;}
.ya1{bottom:530.474667pt;}
.y31{bottom:533.460000pt;}
.y59{bottom:538.200000pt;}
.ycb{bottom:542.028000pt;}
.ya0{bottom:545.801333pt;}
.y30{bottom:548.786667pt;}
.y58{bottom:553.526667pt;}
.y27{bottom:553.674667pt;}
.yca{bottom:557.354667pt;}
.y26{bottom:566.346667pt;}
.y57{bottom:568.853333pt;}
.yc9{bottom:572.681333pt;}
.y9f{bottom:584.140000pt;}
.y56{bottom:584.180000pt;}
.yc8{bottom:588.008000pt;}
.y25{bottom:591.421333pt;}
.y9e{bottom:599.466667pt;}
.y55{bottom:599.506667pt;}
.yc7{bottom:603.334667pt;}
.y24{bottom:604.093333pt;}
.y2f{bottom:610.120000pt;}
.y9d{bottom:614.793333pt;}
.y54{bottom:614.833333pt;}
.yc6{bottom:618.661333pt;}
.y23{bottom:620.093333pt;}
.y2e{bottom:623.438667pt;}
.y53{bottom:630.160000pt;}
.yc5{bottom:633.988000pt;}
.y22{bottom:636.093333pt;}
.y2d{bottom:642.109333pt;}
.y52{bottom:645.486667pt;}
.yc4{bottom:649.314667pt;}
.y2c{bottom:655.447333pt;}
.y51{bottom:660.813333pt;}
.yc3{bottom:664.641333pt;}
.y2b{bottom:668.785333pt;}
.y21{bottom:676.093333pt;}
.y50{bottom:676.140000pt;}
.yc2{bottom:679.968000pt;}
.y2a{bottom:682.123333pt;}
.y2{bottom:684.093333pt;}
.y4f{bottom:691.466667pt;}
.yc1{bottom:695.294667pt;}
.y20{bottom:697.426667pt;}
.y4e{bottom:706.793333pt;}
.y29{bottom:708.786667pt;}
.y1{bottom:716.093333pt;}
.y1f{bottom:718.760000pt;}
.y28{bottom:722.120000pt;}
.y1e{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.h2{height:41.854167pt;}
.h6{height:45.525333pt;}
.h9{height:51.216000pt;}
.hd{height:52.032000pt;}
.h3{height:54.061333pt;}
.h5{height:54.922667pt;}
.h4{height:55.002667pt;}
.ha{height:62.597333pt;}
.hc{height:62.906133pt;}
.he{height:63.189333pt;}
.hb{height:63.594667pt;}
.h8{height:68.288000pt;}
.h7{height:79.669333pt;}
.h1{height:91.050667pt;}
.h0{height:792.000000pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x3{left:5.333333pt;}
.x4{left:67.733333pt;}
.x8{left:68.813333pt;}
.xb{left:83.045333pt;}
.x9{left:84.168000pt;}
.xa{left:88.814667pt;}
.x1{left:166.773333pt;}
.x2{left:189.685333pt;}
.x5{left:336.786667pt;}
.x7{left:361.672000pt;}
.x6{left:366.160000pt;}
}




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