
    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_2b33105233691fa56b9951e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_d7a5b5d5c9e7ad72d9657c40.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_d4b2087125b8fcf554887a59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_bc5e8ce428d91f6ab9b761ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885254;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_869c86cb070122355ae13e6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_03918c1233cfa7881165faaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_b494d9773be721bda6004018.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_923a23ee13ebf86eefc02e3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_c0a1d0d9725298d3eabdf7d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_d3ff6a1fda5900177e15a3a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_4b2d2551d6a3917aa7e58c2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.784621;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_a920bbe5721526c23ec86591.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_9a8e9c9894026a0de437e5a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_f7667469ce23dd0c905e7f7c.woff2')format("woff");}.fff{font-family:fff;line-height:0.730957;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_d6a1a9943f7e9cd7781f4e3d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_4abc13d945664a3391e9ba7b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_833f11ffa3dde6997ec6c6de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_7832cceb07b7d5061656b0c0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.745605;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_010ef9e54ad576eb423bdb52.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.925781;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_1dcb466409d0ace06891c8f2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.737305;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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.481536px;}
.ls40{letter-spacing:-0.477792px;}
.ls3c{letter-spacing:-0.448704px;}
.lsc{letter-spacing:-0.399168px;}
.ls23{letter-spacing:-0.393984px;}
.lsa{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.320544px;}
.ls3d{letter-spacing:-0.198720px;}
.ls41{letter-spacing:-0.175392px;}
.ls10{letter-spacing:-0.158976px;}
.ls3e{letter-spacing:-0.157248px;}
.ls3f{letter-spacing:-0.145152px;}
.ls25{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.ls8{letter-spacing:0.073872px;}
.ls7{letter-spacing:0.097200px;}
.lsb{letter-spacing:0.123552px;}
.ls1e{letter-spacing:0.125280px;}
.ls4{letter-spacing:0.125424px;}
.ls21{letter-spacing:0.147312px;}
.ls12{letter-spacing:0.160128px;}
.ls2e{letter-spacing:0.160272px;}
.ls1f{letter-spacing:0.161280px;}
.ls1b{letter-spacing:0.161568px;}
.ls29{letter-spacing:0.176544px;}
.ls31{letter-spacing:0.194832px;}
.ls2f{letter-spacing:0.204336px;}
.ls2a{letter-spacing:0.213840px;}
.ls30{letter-spacing:0.218592px;}
.ls2d{letter-spacing:0.218736px;}
.ls17{letter-spacing:0.223344px;}
.ls26{letter-spacing:0.270864px;}
.ls16{letter-spacing:0.275616px;}
.ls1d{letter-spacing:0.285120px;}
.ls2c{letter-spacing:0.289872px;}
.ls1c{letter-spacing:0.294624px;}
.ls28{letter-spacing:0.304128px;}
.ls18{letter-spacing:0.308880px;}
.ls2b{letter-spacing:0.313632px;}
.ls11{letter-spacing:0.318384px;}
.ls20{letter-spacing:0.319680px;}
.lsf{letter-spacing:0.356400px;}
.ls27{letter-spacing:0.360288px;}
.lsd{letter-spacing:0.365904px;}
.ls1a{letter-spacing:0.446688px;}
.ls14{letter-spacing:0.479520px;}
.ls32{letter-spacing:0.479952px;}
.ls15{letter-spacing:0.480960px;}
.ls36{letter-spacing:0.538272px;}
.ls37{letter-spacing:0.541008px;}
.ls3b{letter-spacing:0.541440px;}
.ls35{letter-spacing:0.544320px;}
.ls3a{letter-spacing:0.861120px;}
.ls38{letter-spacing:0.876960px;}
.ls9{letter-spacing:1.785600px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:1.814400px;}
.ls39{letter-spacing:12.068640px;}
.ls5{letter-spacing:31.278672px;}
.ls24{letter-spacing:33.984000px;}
.ls13{letter-spacing:44.720496px;}
.ls33{letter-spacing:54.866880px;}
.ls22{letter-spacing:80.685360px;}
.ls34{letter-spacing:102.156768px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.830400px;}
.ws12{word-spacing:-18.255744px;}
.wsb{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.985600px;}
.ws15{word-spacing:-16.668288px;}
.ws13{word-spacing:-16.656192px;}
.ws10{word-spacing:-15.212160px;}
.ws9{word-spacing:-14.818176px;}
.ws11{word-spacing:-14.763456px;}
.ws8{word-spacing:-14.730624px;}
.ws4{word-spacing:-13.576464px;}
.ws5{word-spacing:-13.566960px;}
.ws2{word-spacing:-13.528944px;}
.ws6{word-spacing:-13.505184px;}
.ws7{word-spacing:-13.495680px;}
.ws3{word-spacing:-13.486176px;}
.wsd{word-spacing:-13.429152px;}
.wsc{word-spacing:-13.414896px;}
.wse{word-spacing:-2.345184px;}
.ws14{word-spacing:-0.604800px;}
.ws16{word-spacing:-0.598752px;}
.wsf{word-spacing:-0.527472px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.417312px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._2{width:2.496096px;}
._5{width:3.811104px;}
._7{width:5.313600px;}
._3{width:6.883200px;}
._6{width:7.948800px;}
._b{width:9.926064px;}
._4{width:11.361600px;}
._8{width:12.484800px;}
._d{width:13.708800px;}
._9{width:14.954400px;}
._c{width:16.084800px;}
._a{width:19.252800px;}
._f{width:20.260800px;}
._10{width:21.726720px;}
._e{width:23.227200px;}
._13{width:24.804000px;}
._11{width:41.437440px;}
._12{width:42.815520px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:70.588238px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.760000px;}
.yd4{bottom:2.820000px;}
.yc2{bottom:3.060000px;}
.y51{bottom:3.120000px;}
.y4a{bottom:3.240000px;}
.yc8{bottom:3.600000px;}
.yc7{bottom:4.080000px;}
.y4e{bottom:4.140000px;}
.ycd{bottom:4.200000px;}
.y48{bottom:4.440000px;}
.ycf{bottom:4.500000px;}
.yd3{bottom:17.220000px;}
.yc1{bottom:17.460000px;}
.y50{bottom:17.520000px;}
.ycc{bottom:18.600000px;}
.yc6{bottom:19.560000px;}
.yd2{bottom:31.620000px;}
.yc0{bottom:31.860000px;}
.ycb{bottom:33.000000px;}
.yc5{bottom:35.040000px;}
.yd1{bottom:46.020000px;}
.ybf{bottom:46.260000px;}
.yca{bottom:48.480000px;}
.yc4{bottom:49.440000px;}
.y2a{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y52{bottom:131.040000px;}
.y29{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y28{bottom:151.920000px;}
.y6e{bottom:156.240000px;}
.y25{bottom:162.360000px;}
.yfb{bottom:171.720000px;}
.y4f{bottom:174.000000px;}
.yb0{bottom:174.240000px;}
.y95{bottom:174.960000px;}
.y6d{bottom:176.760000px;}
.y24{bottom:182.520000px;}
.yfa{bottom:189.720000px;}
.y94{bottom:191.160000px;}
.yaf{bottom:195.120000px;}
.y6c{bottom:197.640000px;}
.y4d{bottom:202.500000px;}
.y93{bottom:203.040000px;}
.yf9{bottom:208.800000px;}
.yae{bottom:215.640000px;}
.y6b{bottom:218.160000px;}
.y4b{bottom:219.000000px;}
.yf8{bottom:231.120000px;}
.y49{bottom:234.000000px;}
.yad{bottom:236.520000px;}
.y6a{bottom:239.040000px;}
.y47{bottom:249.000000px;}
.yac{bottom:257.040000px;}
.yf7{bottom:258.120000px;}
.y69{bottom:259.560000px;}
.y23{bottom:263.880000px;}
.y46{bottom:268.560000px;}
.ydc{bottom:272.160000px;}
.y22{bottom:275.760000px;}
.yab{bottom:277.920000px;}
.y68{bottom:280.440000px;}
.y45{bottom:284.760000px;}
.ydb{bottom:293.040000px;}
.yf6{bottom:293.400000px;}
.yaa{bottom:298.440000px;}
.y67{bottom:300.960000px;}
.y44{bottom:305.280000px;}
.yda{bottom:313.560000px;}
.yf5{bottom:313.920000px;}
.ya9{bottom:319.320000px;}
.y7e{bottom:320.040000px;}
.y66{bottom:321.840000px;}
.y43{bottom:326.160000px;}
.yd9{bottom:334.440000px;}
.yf4{bottom:334.800000px;}
.ya8{bottom:339.840000px;}
.y7d{bottom:340.920000px;}
.y65{bottom:342.360000px;}
.y42{bottom:346.680000px;}
.yd8{bottom:354.960000px;}
.yf3{bottom:359.280000px;}
.ya7{bottom:360.720000px;}
.y7c{bottom:361.440000px;}
.y64{bottom:363.240000px;}
.y41{bottom:367.560000px;}
.yd7{bottom:375.840000px;}
.ya6{bottom:381.240000px;}
.y7b{bottom:382.320000px;}
.y63{bottom:383.760000px;}
.y40{bottom:388.080000px;}
.y92{bottom:391.680000px;}
.yd6{bottom:396.360000px;}
.yf2{bottom:396.720000px;}
.ya5{bottom:402.120000px;}
.y7a{bottom:402.840000px;}
.y62{bottom:407.880000px;}
.y3f{bottom:408.960000px;}
.y91{bottom:412.200000px;}
.yf1{bottom:417.240000px;}
.yd5{bottom:420.480000px;}
.y79{bottom:423.360000px;}
.ya4{bottom:425.880000px;}
.y3e{bottom:429.480000px;}
.y90{bottom:433.080000px;}
.yf0{bottom:439.200000px;}
.y61{bottom:441.000000px;}
.y78{bottom:444.240000px;}
.y3d{bottom:450.360000px;}
.yd0{bottom:451.500000px;}
.y60{bottom:452.880000px;}
.y8f{bottom:453.600000px;}
.ya3{bottom:460.800000px;}
.y77{bottom:464.760000px;}
.yef{bottom:465.480000px;}
.y3c{bottom:470.880000px;}
.y8e{bottom:474.120000px;}
.ya2{bottom:481.320000px;}
.y76{bottom:485.640000px;}
.y3b{bottom:495.000000px;}
.ya1{bottom:502.200000px;}
.yee{bottom:502.920000px;}
.y75{bottom:506.160000px;}
.yce{bottom:508.500000px;}
.y8d{bottom:515.520000px;}
.ya0{bottom:522.720000px;}
.yed{bottom:523.800000px;}
.yc9{bottom:525.000000px;}
.y3a{bottom:529.560000px;}
.y74{bottom:530.280000px;}
.y8c{bottom:536.400000px;}
.y21{bottom:540.000000px;}
.y9f{bottom:543.600000px;}
.yec{bottom:544.320000px;}
.y39{bottom:550.440000px;}
.y8b{bottom:555.480000px;}
.y20{bottom:560.520000px;}
.y73{bottom:563.400000px;}
.y9e{bottom:564.120000px;}
.yeb{bottom:565.200000px;}
.y8a{bottom:567.360000px;}
.y38{bottom:570.960000px;}
.y72{bottom:575.280000px;}
.y1f{bottom:581.400000px;}
.y9d{bottom:585.000000px;}
.yea{bottom:585.720000px;}
.y37{bottom:591.840000px;}
.yc3{bottom:600.000000px;}
.y1e{bottom:601.920000px;}
.y9c{bottom:605.520000px;}
.ye9{bottom:606.600000px;}
.y36{bottom:612.360000px;}
.y1d{bottom:622.800000px;}
.y9b{bottom:626.400000px;}
.ye8{bottom:627.120000px;}
.y35{bottom:633.240000px;}
.y1c{bottom:643.320000px;}
.y9a{bottom:646.920000px;}
.y89{bottom:648.000000px;}
.y34{bottom:653.760000px;}
.ybe{bottom:661.500000px;}
.y1b{bottom:664.200000px;}
.y99{bottom:667.800000px;}
.ye7{bottom:668.520000px;}
.y88{bottom:668.880000px;}
.y5f{bottom:673.560000px;}
.y33{bottom:674.640000px;}
.y1a{bottom:684.720000px;}
.y98{bottom:686.880000px;}
.y5e{bottom:687.960000px;}
.y87{bottom:689.400000px;}
.ye6{bottom:692.640000px;}
.y32{bottom:695.160000px;}
.y97{bottom:698.760000px;}
.y5d{bottom:699.840000px;}
.y19{bottom:705.600000px;}
.y86{bottom:710.280000px;}
.y31{bottom:716.040000px;}
.y18{bottom:726.120000px;}
.ye5{bottom:727.200000px;}
.ybd{bottom:727.920000px;}
.y85{bottom:730.800000px;}
.y30{bottom:736.560000px;}
.y17{bottom:747.000000px;}
.ybc{bottom:747.360000px;}
.ye4{bottom:748.080000px;}
.y84{bottom:751.680000px;}
.y2f{bottom:757.440000px;}
.y16{bottom:767.520000px;}
.ye3{bottom:768.600000px;}
.y83{bottom:775.440000px;}
.y2e{bottom:777.960000px;}
.ybb{bottom:785.160000px;}
.y15{bottom:788.400000px;}
.ye2{bottom:789.480000px;}
.y71{bottom:790.920000px;}
.y2d{bottom:798.840000px;}
.yba{bottom:805.680000px;}
.y70{bottom:806.760000px;}
.y14{bottom:808.920000px;}
.ye1{bottom:810.000000px;}
.y82{bottom:810.360000px;}
.y6f{bottom:818.640000px;}
.y2c{bottom:823.320000px;}
.yb9{bottom:826.560000px;}
.y13{bottom:829.800000px;}
.ye0{bottom:830.880000px;}
.y81{bottom:834.120000px;}
.yb8{bottom:847.080000px;}
.y12{bottom:850.320000px;}
.ydf{bottom:854.640000px;}
.y2b{bottom:859.320000px;}
.y80{bottom:867.240000px;}
.y11{bottom:871.200000px;}
.y7f{bottom:879.120000px;}
.y96{bottom:885.240000px;}
.yde{bottom:887.760000px;}
.y10{bottom:891.720000px;}
.ydd{bottom:902.520000px;}
.yb7{bottom:905.760000px;}
.yf{bottom:916.200000px;}
.y5c{bottom:923.040000px;}
.yb6{bottom:926.640000px;}
.y5b{bottom:943.920000px;}
.yb5{bottom:947.160000px;}
.ye{bottom:952.560000px;}
.y5a{bottom:964.440000px;}
.yd{bottom:968.040000px;}
.y59{bottom:985.320000px;}
.yc{bottom:986.040000px;}
.yb4{bottom:988.560000px;}
.yb{bottom:1004.040000px;}
.y58{bottom:1005.840000px;}
.yb3{bottom:1009.440000px;}
.ya{bottom:1022.040000px;}
.y57{bottom:1026.720000px;}
.yb2{bottom:1029.960000px;}
.y9{bottom:1040.040000px;}
.y56{bottom:1047.240000px;}
.yb1{bottom:1054.080000px;}
.y8{bottom:1058.040000px;}
.y55{bottom:1068.120000px;}
.y54{bottom:1088.640000px;}
.y6{bottom:1094.040000px;}
.y7{bottom:1094.304708px;}
.y53{bottom:1109.520000px;}
.y5{bottom:1116.720000px;}
.y27{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y26{bottom:1143.360000px;}
.hf{height:15.000000px;}
.hd{height:16.500000px;}
.h3{height:28.704375px;}
.h10{height:30.000000px;}
.hb{height:31.672266px;}
.ha{height:35.013516px;}
.h7{height:35.175938px;}
.he{height:35.995781px;}
.h11{height:36.443520px;}
.h12{height:39.330000px;}
.hc{height:39.837656px;}
.h16{height:44.149219px;}
.h6{height:44.562656px;}
.h9{height:44.592188px;}
.h5{height:47.047337px;}
.h17{height:48.159844px;}
.h8{height:48.224531px;}
.h13{height:48.796875px;}
.h18{height:49.848750px;}
.h2{height:50.027344px;}
.h4{height:52.347656px;}
.h14{height:58.500000px;}
.h15{height:61.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:135.000000px;}
.w3{width:237.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:7.560072px;}
.x1{left:80.640000px;}
.x4{left:89.816508px;}
.xb{left:99.406872px;}
.x22{left:107.640036px;}
.x25{left:128.715084px;}
.x7{left:134.640036px;}
.xd{left:261.000000px;}
.x21{left:262.895148px;}
.x1d{left:271.221300px;}
.xa{left:307.889280px;}
.xc{left:321.770124px;}
.x6{left:337.657860px;}
.x2{left:348.480000px;}
.x3{left:353.285892px;}
.x1b{left:362.097360px;}
.x15{left:363.107880px;}
.x13{left:373.991760px;}
.x19{left:383.317200px;}
.x17{left:388.004400px;}
.x24{left:391.651920px;}
.xf{left:396.000000px;}
.x11{left:446.114880px;}
.x1e{left:473.114880px;}
.x12{left:646.814880px;}
.x5{left:654.194880px;}
.x23{left:657.074880px;}
.x14{left:662.834880px;}
.x9{left:669.135240px;}
.x18{left:683.714880px;}
.x10{left:689.654880px;}
.x20{left:701.894880px;}
.x1f{left:717.014880px;}
.x1a{left:729.360000px;}
.x1c{left:743.474880px;}
.x16{left:785.954880px;}
.x8{left:811.590120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.428032pt;}
.ls40{letter-spacing:-0.424704pt;}
.ls3c{letter-spacing:-0.398848pt;}
.lsc{letter-spacing:-0.354816pt;}
.ls23{letter-spacing:-0.350208pt;}
.lsa{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.284928pt;}
.ls3d{letter-spacing:-0.176640pt;}
.ls41{letter-spacing:-0.155904pt;}
.ls10{letter-spacing:-0.141312pt;}
.ls3e{letter-spacing:-0.139776pt;}
.ls3f{letter-spacing:-0.129024pt;}
.ls25{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.ls8{letter-spacing:0.065664pt;}
.ls7{letter-spacing:0.086400pt;}
.lsb{letter-spacing:0.109824pt;}
.ls1e{letter-spacing:0.111360pt;}
.ls4{letter-spacing:0.111488pt;}
.ls21{letter-spacing:0.130944pt;}
.ls12{letter-spacing:0.142336pt;}
.ls2e{letter-spacing:0.142464pt;}
.ls1f{letter-spacing:0.143360pt;}
.ls1b{letter-spacing:0.143616pt;}
.ls29{letter-spacing:0.156928pt;}
.ls31{letter-spacing:0.173184pt;}
.ls2f{letter-spacing:0.181632pt;}
.ls2a{letter-spacing:0.190080pt;}
.ls30{letter-spacing:0.194304pt;}
.ls2d{letter-spacing:0.194432pt;}
.ls17{letter-spacing:0.198528pt;}
.ls26{letter-spacing:0.240768pt;}
.ls16{letter-spacing:0.244992pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls2c{letter-spacing:0.257664pt;}
.ls1c{letter-spacing:0.261888pt;}
.ls28{letter-spacing:0.270336pt;}
.ls18{letter-spacing:0.274560pt;}
.ls2b{letter-spacing:0.278784pt;}
.ls11{letter-spacing:0.283008pt;}
.ls20{letter-spacing:0.284160pt;}
.lsf{letter-spacing:0.316800pt;}
.ls27{letter-spacing:0.320256pt;}
.lsd{letter-spacing:0.325248pt;}
.ls1a{letter-spacing:0.397056pt;}
.ls14{letter-spacing:0.426240pt;}
.ls32{letter-spacing:0.426624pt;}
.ls15{letter-spacing:0.427520pt;}
.ls36{letter-spacing:0.478464pt;}
.ls37{letter-spacing:0.480896pt;}
.ls3b{letter-spacing:0.481280pt;}
.ls35{letter-spacing:0.483840pt;}
.ls3a{letter-spacing:0.765440pt;}
.ls38{letter-spacing:0.779520pt;}
.ls9{letter-spacing:1.587200pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.612800pt;}
.ls39{letter-spacing:10.727680pt;}
.ls5{letter-spacing:27.803264pt;}
.ls24{letter-spacing:30.208000pt;}
.ls13{letter-spacing:39.751552pt;}
.ls33{letter-spacing:48.770560pt;}
.ls22{letter-spacing:71.720320pt;}
.ls34{letter-spacing:90.806016pt;}
.ws0{word-spacing:-19.404800pt;}
.ws12{word-spacing:-16.227328pt;}
.wsb{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.987200pt;}
.ws15{word-spacing:-14.816256pt;}
.ws13{word-spacing:-14.805504pt;}
.ws10{word-spacing:-13.521920pt;}
.ws9{word-spacing:-13.171712pt;}
.ws11{word-spacing:-13.123072pt;}
.ws8{word-spacing:-13.093888pt;}
.ws4{word-spacing:-12.067968pt;}
.ws5{word-spacing:-12.059520pt;}
.ws2{word-spacing:-12.025728pt;}
.ws6{word-spacing:-12.004608pt;}
.ws7{word-spacing:-11.996160pt;}
.ws3{word-spacing:-11.987712pt;}
.wsd{word-spacing:-11.937024pt;}
.wsc{word-spacing:-11.924352pt;}
.wse{word-spacing:-2.084608pt;}
.ws14{word-spacing:-0.537600pt;}
.ws16{word-spacing:-0.532224pt;}
.wsf{word-spacing:-0.468864pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.370944pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._2{width:2.218752pt;}
._5{width:3.387648pt;}
._7{width:4.723200pt;}
._3{width:6.118400pt;}
._6{width:7.065600pt;}
._b{width:8.823168pt;}
._4{width:10.099200pt;}
._8{width:11.097600pt;}
._d{width:12.185600pt;}
._9{width:13.292800pt;}
._c{width:14.297600pt;}
._a{width:17.113600pt;}
._f{width:18.009600pt;}
._10{width:19.312640pt;}
._e{width:20.646400pt;}
._13{width:22.048000pt;}
._11{width:36.833280pt;}
._12{width:38.058240pt;}
.fs1{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:62.745101pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.453333pt;}
.yd4{bottom:2.506667pt;}
.yc2{bottom:2.720000pt;}
.y51{bottom:2.773333pt;}
.y4a{bottom:2.880000pt;}
.yc8{bottom:3.200000pt;}
.yc7{bottom:3.626667pt;}
.y4e{bottom:3.680000pt;}
.ycd{bottom:3.733333pt;}
.y48{bottom:3.946667pt;}
.ycf{bottom:4.000000pt;}
.yd3{bottom:15.306667pt;}
.yc1{bottom:15.520000pt;}
.y50{bottom:15.573333pt;}
.ycc{bottom:16.533333pt;}
.yc6{bottom:17.386667pt;}
.yd2{bottom:28.106667pt;}
.yc0{bottom:28.320000pt;}
.ycb{bottom:29.333333pt;}
.yc5{bottom:31.146667pt;}
.yd1{bottom:40.906667pt;}
.ybf{bottom:41.120000pt;}
.yca{bottom:43.093333pt;}
.yc4{bottom:43.946667pt;}
.y2a{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y52{bottom:116.480000pt;}
.y29{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y28{bottom:135.040000pt;}
.y6e{bottom:138.880000pt;}
.y25{bottom:144.320000pt;}
.yfb{bottom:152.640000pt;}
.y4f{bottom:154.666667pt;}
.yb0{bottom:154.880000pt;}
.y95{bottom:155.520000pt;}
.y6d{bottom:157.120000pt;}
.y24{bottom:162.240000pt;}
.yfa{bottom:168.640000pt;}
.y94{bottom:169.920000pt;}
.yaf{bottom:173.440000pt;}
.y6c{bottom:175.680000pt;}
.y4d{bottom:180.000000pt;}
.y93{bottom:180.480000pt;}
.yf9{bottom:185.600000pt;}
.yae{bottom:191.680000pt;}
.y6b{bottom:193.920000pt;}
.y4b{bottom:194.666667pt;}
.yf8{bottom:205.440000pt;}
.y49{bottom:208.000000pt;}
.yad{bottom:210.240000pt;}
.y6a{bottom:212.480000pt;}
.y47{bottom:221.333333pt;}
.yac{bottom:228.480000pt;}
.yf7{bottom:229.440000pt;}
.y69{bottom:230.720000pt;}
.y23{bottom:234.560000pt;}
.y46{bottom:238.720000pt;}
.ydc{bottom:241.920000pt;}
.y22{bottom:245.120000pt;}
.yab{bottom:247.040000pt;}
.y68{bottom:249.280000pt;}
.y45{bottom:253.120000pt;}
.ydb{bottom:260.480000pt;}
.yf6{bottom:260.800000pt;}
.yaa{bottom:265.280000pt;}
.y67{bottom:267.520000pt;}
.y44{bottom:271.360000pt;}
.yda{bottom:278.720000pt;}
.yf5{bottom:279.040000pt;}
.ya9{bottom:283.840000pt;}
.y7e{bottom:284.480000pt;}
.y66{bottom:286.080000pt;}
.y43{bottom:289.920000pt;}
.yd9{bottom:297.280000pt;}
.yf4{bottom:297.600000pt;}
.ya8{bottom:302.080000pt;}
.y7d{bottom:303.040000pt;}
.y65{bottom:304.320000pt;}
.y42{bottom:308.160000pt;}
.yd8{bottom:315.520000pt;}
.yf3{bottom:319.360000pt;}
.ya7{bottom:320.640000pt;}
.y7c{bottom:321.280000pt;}
.y64{bottom:322.880000pt;}
.y41{bottom:326.720000pt;}
.yd7{bottom:334.080000pt;}
.ya6{bottom:338.880000pt;}
.y7b{bottom:339.840000pt;}
.y63{bottom:341.120000pt;}
.y40{bottom:344.960000pt;}
.y92{bottom:348.160000pt;}
.yd6{bottom:352.320000pt;}
.yf2{bottom:352.640000pt;}
.ya5{bottom:357.440000pt;}
.y7a{bottom:358.080000pt;}
.y62{bottom:362.560000pt;}
.y3f{bottom:363.520000pt;}
.y91{bottom:366.400000pt;}
.yf1{bottom:370.880000pt;}
.yd5{bottom:373.760000pt;}
.y79{bottom:376.320000pt;}
.ya4{bottom:378.560000pt;}
.y3e{bottom:381.760000pt;}
.y90{bottom:384.960000pt;}
.yf0{bottom:390.400000pt;}
.y61{bottom:392.000000pt;}
.y78{bottom:394.880000pt;}
.y3d{bottom:400.320000pt;}
.yd0{bottom:401.333333pt;}
.y60{bottom:402.560000pt;}
.y8f{bottom:403.200000pt;}
.ya3{bottom:409.600000pt;}
.y77{bottom:413.120000pt;}
.yef{bottom:413.760000pt;}
.y3c{bottom:418.560000pt;}
.y8e{bottom:421.440000pt;}
.ya2{bottom:427.840000pt;}
.y76{bottom:431.680000pt;}
.y3b{bottom:440.000000pt;}
.ya1{bottom:446.400000pt;}
.yee{bottom:447.040000pt;}
.y75{bottom:449.920000pt;}
.yce{bottom:452.000000pt;}
.y8d{bottom:458.240000pt;}
.ya0{bottom:464.640000pt;}
.yed{bottom:465.600000pt;}
.yc9{bottom:466.666667pt;}
.y3a{bottom:470.720000pt;}
.y74{bottom:471.360000pt;}
.y8c{bottom:476.800000pt;}
.y21{bottom:480.000000pt;}
.y9f{bottom:483.200000pt;}
.yec{bottom:483.840000pt;}
.y39{bottom:489.280000pt;}
.y8b{bottom:493.760000pt;}
.y20{bottom:498.240000pt;}
.y73{bottom:500.800000pt;}
.y9e{bottom:501.440000pt;}
.yeb{bottom:502.400000pt;}
.y8a{bottom:504.320000pt;}
.y38{bottom:507.520000pt;}
.y72{bottom:511.360000pt;}
.y1f{bottom:516.800000pt;}
.y9d{bottom:520.000000pt;}
.yea{bottom:520.640000pt;}
.y37{bottom:526.080000pt;}
.yc3{bottom:533.333333pt;}
.y1e{bottom:535.040000pt;}
.y9c{bottom:538.240000pt;}
.ye9{bottom:539.200000pt;}
.y36{bottom:544.320000pt;}
.y1d{bottom:553.600000pt;}
.y9b{bottom:556.800000pt;}
.ye8{bottom:557.440000pt;}
.y35{bottom:562.880000pt;}
.y1c{bottom:571.840000pt;}
.y9a{bottom:575.040000pt;}
.y89{bottom:576.000000pt;}
.y34{bottom:581.120000pt;}
.ybe{bottom:588.000000pt;}
.y1b{bottom:590.400000pt;}
.y99{bottom:593.600000pt;}
.ye7{bottom:594.240000pt;}
.y88{bottom:594.560000pt;}
.y5f{bottom:598.720000pt;}
.y33{bottom:599.680000pt;}
.y1a{bottom:608.640000pt;}
.y98{bottom:610.560000pt;}
.y5e{bottom:611.520000pt;}
.y87{bottom:612.800000pt;}
.ye6{bottom:615.680000pt;}
.y32{bottom:617.920000pt;}
.y97{bottom:621.120000pt;}
.y5d{bottom:622.080000pt;}
.y19{bottom:627.200000pt;}
.y86{bottom:631.360000pt;}
.y31{bottom:636.480000pt;}
.y18{bottom:645.440000pt;}
.ye5{bottom:646.400000pt;}
.ybd{bottom:647.040000pt;}
.y85{bottom:649.600000pt;}
.y30{bottom:654.720000pt;}
.y17{bottom:664.000000pt;}
.ybc{bottom:664.320000pt;}
.ye4{bottom:664.960000pt;}
.y84{bottom:668.160000pt;}
.y2f{bottom:673.280000pt;}
.y16{bottom:682.240000pt;}
.ye3{bottom:683.200000pt;}
.y83{bottom:689.280000pt;}
.y2e{bottom:691.520000pt;}
.ybb{bottom:697.920000pt;}
.y15{bottom:700.800000pt;}
.ye2{bottom:701.760000pt;}
.y71{bottom:703.040000pt;}
.y2d{bottom:710.080000pt;}
.yba{bottom:716.160000pt;}
.y70{bottom:717.120000pt;}
.y14{bottom:719.040000pt;}
.ye1{bottom:720.000000pt;}
.y82{bottom:720.320000pt;}
.y6f{bottom:727.680000pt;}
.y2c{bottom:731.840000pt;}
.yb9{bottom:734.720000pt;}
.y13{bottom:737.600000pt;}
.ye0{bottom:738.560000pt;}
.y81{bottom:741.440000pt;}
.yb8{bottom:752.960000pt;}
.y12{bottom:755.840000pt;}
.ydf{bottom:759.680000pt;}
.y2b{bottom:763.840000pt;}
.y80{bottom:770.880000pt;}
.y11{bottom:774.400000pt;}
.y7f{bottom:781.440000pt;}
.y96{bottom:786.880000pt;}
.yde{bottom:789.120000pt;}
.y10{bottom:792.640000pt;}
.ydd{bottom:802.240000pt;}
.yb7{bottom:805.120000pt;}
.yf{bottom:814.400000pt;}
.y5c{bottom:820.480000pt;}
.yb6{bottom:823.680000pt;}
.y5b{bottom:839.040000pt;}
.yb5{bottom:841.920000pt;}
.ye{bottom:846.720000pt;}
.y5a{bottom:857.280000pt;}
.yd{bottom:860.480000pt;}
.y59{bottom:875.840000pt;}
.yc{bottom:876.480000pt;}
.yb4{bottom:878.720000pt;}
.yb{bottom:892.480000pt;}
.y58{bottom:894.080000pt;}
.yb3{bottom:897.280000pt;}
.ya{bottom:908.480000pt;}
.y57{bottom:912.640000pt;}
.yb2{bottom:915.520000pt;}
.y9{bottom:924.480000pt;}
.y56{bottom:930.880000pt;}
.yb1{bottom:936.960000pt;}
.y8{bottom:940.480000pt;}
.y55{bottom:949.440000pt;}
.y54{bottom:967.680000pt;}
.y6{bottom:972.480000pt;}
.y7{bottom:972.715296pt;}
.y53{bottom:986.240000pt;}
.y5{bottom:992.640000pt;}
.y27{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y26{bottom:1016.320000pt;}
.hf{height:13.333333pt;}
.hd{height:14.666667pt;}
.h3{height:25.515000pt;}
.h10{height:26.666667pt;}
.hb{height:28.153125pt;}
.ha{height:31.123125pt;}
.h7{height:31.267500pt;}
.he{height:31.996250pt;}
.h11{height:32.394240pt;}
.h12{height:34.960000pt;}
.hc{height:35.411250pt;}
.h16{height:39.243750pt;}
.h6{height:39.611250pt;}
.h9{height:39.637500pt;}
.h5{height:41.819855pt;}
.h17{height:42.808750pt;}
.h8{height:42.866250pt;}
.h13{height:43.375000pt;}
.h18{height:44.310000pt;}
.h2{height:44.468750pt;}
.h4{height:46.531250pt;}
.h14{height:52.000000pt;}
.h15{height:54.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:120.000000pt;}
.w3{width:210.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:6.720064pt;}
.x1{left:71.680000pt;}
.x4{left:79.836896pt;}
.xb{left:88.361664pt;}
.x22{left:95.680032pt;}
.x25{left:114.413408pt;}
.x7{left:119.680032pt;}
.xd{left:232.000000pt;}
.x21{left:233.684576pt;}
.x1d{left:241.085600pt;}
.xa{left:273.679360pt;}
.xc{left:286.017888pt;}
.x6{left:300.140320pt;}
.x2{left:309.760000pt;}
.x3{left:314.031904pt;}
.x1b{left:321.864320pt;}
.x15{left:322.762560pt;}
.x13{left:332.437120pt;}
.x19{left:340.726400pt;}
.x17{left:344.892800pt;}
.x24{left:348.135040pt;}
.xf{left:352.000000pt;}
.x11{left:396.546560pt;}
.x1e{left:420.546560pt;}
.x12{left:574.946560pt;}
.x5{left:581.506560pt;}
.x23{left:584.066560pt;}
.x14{left:589.186560pt;}
.x9{left:594.786880pt;}
.x18{left:607.746560pt;}
.x10{left:613.026560pt;}
.x20{left:623.906560pt;}
.x1f{left:637.346560pt;}
.x1a{left:648.320000pt;}
.x1c{left:660.866560pt;}
.x16{left:698.626560pt;}
.x8{left:721.413440pt;}
}




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