
    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_c95d23e5da8307a58f5c2445.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e535a53f0c7554f3dc7473a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710449;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_b916bd7bf1e03602159dee7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c97a6f3f029b82008c0bc354.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ee0283c57cf86ab0b247fd36.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6843290774e4ff14221b0084.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bf5261aeccfa7091a0e6fd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_97a7df211f1efc9701fe1b88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_74307747ad879445cba243c8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c5fcfd5d3a44dbdb8684f77c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_57d663b4f92d0cfea93fad25.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.669922;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_cb81f970c9630d7d0297f2a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931152;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_3d0e5f611680fbbf25398892.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.875488;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_51468557dfe2b4b777f0d065.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_69b12047e23aff86db7a3133.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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_ee047b8e5b2c3e00b418f438.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_7dd1f5e20da3dc7bb51b2645.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.731445;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_3a486788814a9c54c4a81c65.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_877313e9d9d17845bf0efef8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919434;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_b7483399614e7160f43301cc.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6c92c193afc51ab97f47f3ff.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_45e5eb0dcb2cac5c893fb10a.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.v7{vertical-align:-24.480000px;}
.v6{vertical-align:-21.600000px;}
.v9{vertical-align:-18.720000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v8{vertical-align:18.720000px;}
.v1{vertical-align:24.480000px;}
.v5{vertical-align:36.000000px;}
.v3{vertical-align:41.760000px;}
.ls32{letter-spacing:-0.629280px;}
.ls2e{letter-spacing:-0.569088px;}
.ls2c{letter-spacing:-0.508896px;}
.ls2b{letter-spacing:-0.481536px;}
.ls30{letter-spacing:-0.404928px;}
.lsd{letter-spacing:-0.381024px;}
.ls31{letter-spacing:-0.361152px;}
.ls28{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.320544px;}
.ls2a{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.241920px;}
.ls2d{letter-spacing:-0.240768px;}
.ls2f{letter-spacing:-0.202464px;}
.ls29{letter-spacing:-0.139104px;}
.ls3b{letter-spacing:-0.028800px;}
.ls26{letter-spacing:-0.021600px;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000432px;}
.ls3a{letter-spacing:0.000576px;}
.ls16{letter-spacing:0.001440px;}
.ls23{letter-spacing:0.004320px;}
.ls21{letter-spacing:0.005616px;}
.ls22{letter-spacing:0.005760px;}
.ls41{letter-spacing:0.010080px;}
.ls15{letter-spacing:0.010944px;}
.ls39{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.051840px;}
.ls1f{letter-spacing:0.060480px;}
.ls1a{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.072576px;}
.ls20{letter-spacing:0.080640px;}
.ls44{letter-spacing:0.102240px;}
.ls8{letter-spacing:0.123552px;}
.ls18{letter-spacing:0.125280px;}
.ls36{letter-spacing:0.133056px;}
.ls24{letter-spacing:0.147312px;}
.ls37{letter-spacing:0.159840px;}
.ls12{letter-spacing:0.160128px;}
.ls11{letter-spacing:0.161280px;}
.ls34{letter-spacing:0.166320px;}
.ls10{letter-spacing:0.205920px;}
.ls35{letter-spacing:0.223344px;}
.ls19{letter-spacing:0.237600px;}
.ls33{letter-spacing:0.242352px;}
.lsc{letter-spacing:0.261360px;}
.lsf{letter-spacing:0.273600px;}
.ls7{letter-spacing:0.274176px;}
.ls6{letter-spacing:0.275040px;}
.ls4{letter-spacing:0.275616px;}
.ls14{letter-spacing:0.285120px;}
.ls38{letter-spacing:0.319680px;}
.ls25{letter-spacing:0.327600px;}
.ls9{letter-spacing:0.420480px;}
.ls43{letter-spacing:0.596592px;}
.ls46{letter-spacing:0.671040px;}
.ls42{letter-spacing:1.710720px;}
.ls5{letter-spacing:3.679200px;}
.ls13{letter-spacing:4.394160px;}
.lsa{letter-spacing:6.594336px;}
.ls17{letter-spacing:10.249920px;}
.ls3c{letter-spacing:11.329920px;}
.ls3e{letter-spacing:13.802688px;}
.ls1c{letter-spacing:14.247360px;}
.ls45{letter-spacing:18.003888px;}
.lsb{letter-spacing:27.555984px;}
.ls40{letter-spacing:30.796272px;}
.ls3f{letter-spacing:35.362224px;}
.ls1b{letter-spacing:39.851136px;}
.ls1d{letter-spacing:151.074720px;}
.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;}
}
.ws2{word-spacing:-20.030400px;}
.ws7{word-spacing:-20.016000px;}
.ws1{word-spacing:-20.001600px;}
.wsf{word-spacing:-16.813440px;}
.ws11{word-spacing:-16.674336px;}
.wsd{word-spacing:-16.571520px;}
.ws8{word-spacing:-16.492896px;}
.wse{word-spacing:-16.474752px;}
.ws10{word-spacing:-16.432416px;}
.ws12{word-spacing:-15.212160px;}
.ws17{word-spacing:-15.009696px;}
.ws14{word-spacing:-14.971392px;}
.ws13{word-spacing:-14.703264px;}
.ws15{word-spacing:-14.643072px;}
.ws9{word-spacing:-13.495680px;}
.ws4{word-spacing:-13.486176px;}
.ws6{word-spacing:-13.484736px;}
.ws1c{word-spacing:-13.471920px;}
.wsa{word-spacing:-13.448160px;}
.ws3{word-spacing:-13.210560px;}
.ws16{word-spacing:-10.008000px;}
.wsc{word-spacing:-0.378000px;}
.ws1a{word-spacing:-0.270864px;}
.ws19{word-spacing:-0.213840px;}
.ws1b{word-spacing:-0.180576px;}
.ws0{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.050400px;}
.ws18{word-spacing:-0.030240px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-1.007712px;}
._3{width:1.526400px;}
._10{width:2.592000px;}
._b{width:4.492800px;}
._f{width:5.781600px;}
._2{width:6.984000px;}
._11{width:8.784000px;}
._13{width:9.921600px;}
._12{width:11.125440px;}
._6{width:12.146400px;}
._16{width:13.197600px;}
._5{width:14.421600px;}
._1{width:16.128000px;}
._14{width:17.203536px;}
._18{width:18.535680px;}
._0{width:21.189600px;}
._9{width:22.766400px;}
._a{width:23.797728px;}
._e{width:24.854688px;}
._15{width:26.564256px;}
._20{width:27.570528px;}
._19{width:28.656000px;}
._17{width:29.671200px;}
._1a{width:31.454928px;}
._1f{width:32.488560px;}
._1c{width:34.106400px;}
._1e{width:35.503200px;}
._1d{width:37.461600px;}
._8{width:38.815200px;}
._c{width:39.945600px;}
._24{width:41.500800px;}
._d{width:48.520800px;}
._7{width:55.202400px;}
._26{width:56.358720px;}
._25{width:57.445344px;}
._4{width:61.092000px;}
._23{width:79.184160px;}
._28{width:85.828320px;}
._21{width:132.720480px;}
._27{width:150.876000px;}
._22{width:195.984000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:108.000000px;}
.y6b{bottom:-18.720000px;}
.y0{bottom:0.000000px;}
.y43{bottom:0.990000px;}
.y6a{bottom:2.520000px;}
.y40{bottom:3.090000px;}
.y3e{bottom:3.270000px;}
.y44{bottom:3.870000px;}
.y41{bottom:4.410000px;}
.y84{bottom:9.750000px;}
.y90{bottom:10.050000px;}
.y86{bottom:10.230000px;}
.y92{bottom:10.530000px;}
.y94{bottom:10.650000px;}
.y8a{bottom:10.830000px;}
.y8c{bottom:10.950000px;}
.y98{bottom:11.970000px;}
.y81{bottom:12.210000px;}
.y3a{bottom:12.810000px;}
.y47{bottom:15.030000px;}
.y38{bottom:15.390000px;}
.y82{bottom:16.890000px;}
.y8e{bottom:20.490000px;}
.y88{bottom:21.270000px;}
.y7f{bottom:23.730000px;}
.y97{bottom:26.010000px;}
.y3c{bottom:28.890000px;}
.y8f{bottom:30.930000px;}
.y89{bottom:31.350000px;}
.y80{bottom:35.610000px;}
.y96{bottom:40.050000px;}
.y42{bottom:112.500000px;}
.y22{bottom:112.770000px;}
.y3b{bottom:126.000000px;}
.y68{bottom:135.810000px;}
.y7d{bottom:138.330000px;}
.y3f{bottom:141.000000px;}
.yb8{bottom:141.210000px;}
.y21{bottom:143.730000px;}
.y3d{bottom:154.500000px;}
.y67{bottom:166.770000px;}
.y39{bottom:168.000000px;}
.yb7{bottom:172.530000px;}
.y20{bottom:174.690000px;}
.y7c{bottom:184.770000px;}
.y37{bottom:193.500000px;}
.yd4{bottom:197.730000px;}
.y66{bottom:198.090000px;}
.y7b{bottom:202.050000px;}
.yb6{bottom:203.490000px;}
.yb9{bottom:204.930000px;}
.y1f{bottom:206.010000px;}
.y93{bottom:222.000000px;}
.yd3{bottom:228.690000px;}
.y65{bottom:229.050000px;}
.yb5{bottom:234.450000px;}
.y1e{bottom:236.970000px;}
.y36{bottom:237.690000px;}
.y91{bottom:243.000000px;}
.y64{bottom:260.010000px;}
.y8d{bottom:264.000000px;}
.yb4{bottom:265.410000px;}
.y35{bottom:266.130000px;}
.y1d{bottom:267.930000px;}
.y63{bottom:290.970000px;}
.y34{bottom:297.090000px;}
.yb3{bottom:297.450000px;}
.y1c{bottom:298.890000px;}
.y8b{bottom:304.500000px;}
.yd2{bottom:321.930000px;}
.y62{bottom:322.290000px;}
.y87{bottom:325.500000px;}
.y33{bottom:328.050000px;}
.yb2{bottom:329.490000px;}
.y1b{bottom:330.210000px;}
.y61{bottom:353.250000px;}
.yd1{bottom:353.970000px;}
.y32{bottom:359.010000px;}
.yb1{bottom:360.810000px;}
.y1a{bottom:361.170000px;}
.y85{bottom:367.500000px;}
.y60{bottom:384.210000px;}
.yd0{bottom:386.010000px;}
.y83{bottom:388.500000px;}
.y31{bottom:390.330000px;}
.yb0{bottom:391.770000px;}
.y19{bottom:392.130000px;}
.y7e{bottom:408.000000px;}
.y5f{bottom:415.170000px;}
.ycf{bottom:418.050000px;}
.y30{bottom:421.290000px;}
.yaf{bottom:422.730000px;}
.y18{bottom:423.090000px;}
.y5e{bottom:446.490000px;}
.yce{bottom:450.090000px;}
.y2f{bottom:452.250000px;}
.yae{bottom:453.690000px;}
.y17{bottom:454.410000px;}
.y7a{bottom:471.690000px;}
.y5d{bottom:477.450000px;}
.ycd{bottom:481.410000px;}
.y2e{bottom:483.210000px;}
.yad{bottom:485.010000px;}
.y16{bottom:485.370000px;}
.y5c{bottom:508.410000px;}
.ycc{bottom:512.370000px;}
.y2d{bottom:514.530000px;}
.yac{bottom:515.970000px;}
.y15{bottom:516.330000px;}
.y79{bottom:523.530000px;}
.y5b{bottom:539.370000px;}
.ycb{bottom:543.330000px;}
.y2c{bottom:545.490000px;}
.yab{bottom:546.930000px;}
.y14{bottom:547.290000px;}
.y78{bottom:554.490000px;}
.y5a{bottom:570.690000px;}
.yca{bottom:574.290000px;}
.y2b{bottom:576.450000px;}
.yaa{bottom:577.890000px;}
.y13{bottom:578.610000px;}
.y77{bottom:585.450000px;}
.y59{bottom:601.650000px;}
.yc9{bottom:605.610000px;}
.y2a{bottom:607.410000px;}
.ya9{bottom:609.210000px;}
.y12{bottom:609.570000px;}
.y76{bottom:616.770000px;}
.y58{bottom:632.610000px;}
.yc8{bottom:636.570000px;}
.y29{bottom:638.370000px;}
.ya8{bottom:640.170000px;}
.y11{bottom:640.530000px;}
.y75{bottom:647.730000px;}
.y57{bottom:663.570000px;}
.yc7{bottom:667.530000px;}
.y28{bottom:669.690000px;}
.ya7{bottom:671.130000px;}
.y10{bottom:671.490000px;}
.y56{bottom:694.890000px;}
.yc6{bottom:698.490000px;}
.y27{bottom:700.650000px;}
.y74{bottom:701.730000px;}
.ya6{bottom:702.090000px;}
.yf{bottom:702.810000px;}
.y72{bottom:710.730000px;}
.y73{bottom:711.810000px;}
.y55{bottom:725.850000px;}
.yc5{bottom:729.810000px;}
.y26{bottom:731.610000px;}
.ya5{bottom:733.410000px;}
.ye{bottom:733.770000px;}
.y71{bottom:738.810000px;}
.y54{bottom:756.810000px;}
.yc4{bottom:760.770000px;}
.y25{bottom:762.570000px;}
.ya4{bottom:764.370000px;}
.yd{bottom:764.730000px;}
.y70{bottom:769.770000px;}
.y53{bottom:787.770000px;}
.yc3{bottom:791.730000px;}
.y24{bottom:793.890000px;}
.ya3{bottom:795.330000px;}
.yc{bottom:795.690000px;}
.y6f{bottom:801.090000px;}
.y52{bottom:818.730000px;}
.yc2{bottom:822.690000px;}
.y6e{bottom:824.850000px;}
.y23{bottom:825.930000px;}
.ya2{bottom:826.650000px;}
.yb{bottom:827.010000px;}
.y51{bottom:850.050000px;}
.yc1{bottom:854.010000px;}
.y6d{bottom:855.810000px;}
.ya1{bottom:857.610000px;}
.ya{bottom:857.970000px;}
.y50{bottom:881.010000px;}
.y6c{bottom:883.170000px;}
.yc0{bottom:884.970000px;}
.ya0{bottom:888.570000px;}
.y9{bottom:888.930000px;}
.y69{bottom:896.850000px;}
.y4f{bottom:911.970000px;}
.ybf{bottom:915.930000px;}
.y9f{bottom:919.530000px;}
.y8{bottom:919.890000px;}
.y4e{bottom:942.930000px;}
.ybe{bottom:947.970000px;}
.y9e{bottom:950.850000px;}
.y7{bottom:951.210000px;}
.y4d{bottom:974.250000px;}
.ybd{bottom:980.010000px;}
.y9d{bottom:981.810000px;}
.y6{bottom:982.170000px;}
.y4c{bottom:1006.290000px;}
.y95{bottom:1008.000000px;}
.ybc{bottom:1010.970000px;}
.y9c{bottom:1012.770000px;}
.y5{bottom:1013.130000px;}
.y4b{bottom:1038.330000px;}
.ybb{bottom:1042.290000px;}
.y9b{bottom:1043.730000px;}
.y4{bottom:1044.090000px;}
.y4a{bottom:1069.290000px;}
.yba{bottom:1074.330000px;}
.y9a{bottom:1074.690000px;}
.y3{bottom:1075.410000px;}
.y49{bottom:1098.090000px;}
.y99{bottom:1106.010000px;}
.y2{bottom:1106.370000px;}
.y46{bottom:1111.500000px;}
.y48{bottom:1125.000000px;}
.y1{bottom:1137.330000px;}
.y45{bottom:1140.000000px;}
.h8{height:15.000000px;}
.ha{height:16.500000px;}
.hd{height:19.800000px;}
.h18{height:21.000000px;}
.h1a{height:22.500000px;}
.h17{height:25.875000px;}
.h6{height:27.000000px;}
.h13{height:27.831094px;}
.hb{height:30.000000px;}
.h5{height:33.000000px;}
.h1d{height:33.319688px;}
.h9{height:34.595859px;}
.h15{height:39.864375px;}
.h19{height:40.455000px;}
.h1b{height:42.000000px;}
.h7{height:43.500000px;}
.h4{height:44.060625px;}
.h16{height:44.595000px;}
.hc{height:47.988281px;}
.he{height:48.234375px;}
.h14{height:49.500000px;}
.h10{height:50.941406px;}
.h1{height:52.417969px;}
.h2{height:52.453125px;}
.h1c{height:52.500000px;}
.h3{height:59.075859px;}
.h1e{height:71.982422px;}
.h11{height:75.351797px;}
.h12{height:86.941406px;}
.hf{height:1245.000000px;}
.h0{height:1263.000000px;}
.w4{width:49.320000px;}
.w7{width:57.000000px;}
.wb{width:88.500000px;}
.w8{width:90.000000px;}
.w9{width:100.500000px;}
.wa{width:102.000000px;}
.wc{width:112.500000px;}
.w2{width:136.500000px;}
.w3{width:153.000000px;}
.w6{width:214.500000px;}
.w1{width:288.000000px;}
.w5{width:874.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.xb{left:10.800000px;}
.x1c{left:13.576800px;}
.x3{left:15.931644px;}
.xd{left:18.000000px;}
.x1d{left:19.040520px;}
.x21{left:20.687520px;}
.x17{left:23.622060px;}
.x1f{left:26.122176px;}
.x19{left:33.613440px;}
.x20{left:37.912440px;}
.x16{left:43.740216px;}
.x22{left:49.590120px;}
.x5{left:62.797560px;}
.x4{left:119.898960px;}
.x15{left:124.500000px;}
.x1{left:135.750000px;}
.xe{left:272.967780px;}
.x10{left:299.247060px;}
.xa{left:307.110000px;}
.xf{left:311.070000px;}
.x2{left:316.500000px;}
.x9{left:338.185560px;}
.x12{left:344.650296px;}
.x11{left:351.390000px;}
.x13{left:363.097560px;}
.x18{left:393.000000px;}
.x8{left:446.999880px;}
.x6{left:451.500000px;}
.x14{left:464.195280px;}
.x1a{left:481.500000px;}
.x1b{left:580.500000px;}
.xc{left:626.752560px;}
.x1e{left:681.000000px;}
@media print{
.v7{vertical-align:-21.760000pt;}
.v6{vertical-align:-19.200000pt;}
.v9{vertical-align:-16.640000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v8{vertical-align:16.640000pt;}
.v1{vertical-align:21.760000pt;}
.v5{vertical-align:32.000000pt;}
.v3{vertical-align:37.120000pt;}
.ls32{letter-spacing:-0.559360pt;}
.ls2e{letter-spacing:-0.505856pt;}
.ls2c{letter-spacing:-0.452352pt;}
.ls2b{letter-spacing:-0.428032pt;}
.ls30{letter-spacing:-0.359936pt;}
.lsd{letter-spacing:-0.338688pt;}
.ls31{letter-spacing:-0.321024pt;}
.ls28{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.284928pt;}
.ls2a{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.215040pt;}
.ls2d{letter-spacing:-0.214016pt;}
.ls2f{letter-spacing:-0.179968pt;}
.ls29{letter-spacing:-0.123648pt;}
.ls3b{letter-spacing:-0.025600pt;}
.ls26{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000384pt;}
.ls3a{letter-spacing:0.000512pt;}
.ls16{letter-spacing:0.001280pt;}
.ls23{letter-spacing:0.003840pt;}
.ls21{letter-spacing:0.004992pt;}
.ls22{letter-spacing:0.005120pt;}
.ls41{letter-spacing:0.008960pt;}
.ls15{letter-spacing:0.009728pt;}
.ls39{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.046080pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.064512pt;}
.ls20{letter-spacing:0.071680pt;}
.ls44{letter-spacing:0.090880pt;}
.ls8{letter-spacing:0.109824pt;}
.ls18{letter-spacing:0.111360pt;}
.ls36{letter-spacing:0.118272pt;}
.ls24{letter-spacing:0.130944pt;}
.ls37{letter-spacing:0.142080pt;}
.ls12{letter-spacing:0.142336pt;}
.ls11{letter-spacing:0.143360pt;}
.ls34{letter-spacing:0.147840pt;}
.ls10{letter-spacing:0.183040pt;}
.ls35{letter-spacing:0.198528pt;}
.ls19{letter-spacing:0.211200pt;}
.ls33{letter-spacing:0.215424pt;}
.lsc{letter-spacing:0.232320pt;}
.lsf{letter-spacing:0.243200pt;}
.ls7{letter-spacing:0.243712pt;}
.ls6{letter-spacing:0.244480pt;}
.ls4{letter-spacing:0.244992pt;}
.ls14{letter-spacing:0.253440pt;}
.ls38{letter-spacing:0.284160pt;}
.ls25{letter-spacing:0.291200pt;}
.ls9{letter-spacing:0.373760pt;}
.ls43{letter-spacing:0.530304pt;}
.ls46{letter-spacing:0.596480pt;}
.ls42{letter-spacing:1.520640pt;}
.ls5{letter-spacing:3.270400pt;}
.ls13{letter-spacing:3.905920pt;}
.lsa{letter-spacing:5.861632pt;}
.ls17{letter-spacing:9.111040pt;}
.ls3c{letter-spacing:10.071040pt;}
.ls3e{letter-spacing:12.269056pt;}
.ls1c{letter-spacing:12.664320pt;}
.ls45{letter-spacing:16.003456pt;}
.lsb{letter-spacing:24.494208pt;}
.ls40{letter-spacing:27.374464pt;}
.ls3f{letter-spacing:31.433088pt;}
.ls1b{letter-spacing:35.423232pt;}
.ls1d{letter-spacing:134.288640pt;}
.ws2{word-spacing:-17.804800pt;}
.ws7{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.779200pt;}
.wsf{word-spacing:-14.945280pt;}
.ws11{word-spacing:-14.821632pt;}
.wsd{word-spacing:-14.730240pt;}
.ws8{word-spacing:-14.660352pt;}
.wse{word-spacing:-14.644224pt;}
.ws10{word-spacing:-14.606592pt;}
.ws12{word-spacing:-13.521920pt;}
.ws17{word-spacing:-13.341952pt;}
.ws14{word-spacing:-13.307904pt;}
.ws13{word-spacing:-13.069568pt;}
.ws15{word-spacing:-13.016064pt;}
.ws9{word-spacing:-11.996160pt;}
.ws4{word-spacing:-11.987712pt;}
.ws6{word-spacing:-11.986432pt;}
.ws1c{word-spacing:-11.975040pt;}
.wsa{word-spacing:-11.953920pt;}
.ws3{word-spacing:-11.742720pt;}
.ws16{word-spacing:-8.896000pt;}
.wsc{word-spacing:-0.336000pt;}
.ws1a{word-spacing:-0.240768pt;}
.ws19{word-spacing:-0.190080pt;}
.ws1b{word-spacing:-0.160512pt;}
.ws0{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.044800pt;}
.ws18{word-spacing:-0.026880pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-0.895744pt;}
._3{width:1.356800pt;}
._10{width:2.304000pt;}
._b{width:3.993600pt;}
._f{width:5.139200pt;}
._2{width:6.208000pt;}
._11{width:7.808000pt;}
._13{width:8.819200pt;}
._12{width:9.889280pt;}
._6{width:10.796800pt;}
._16{width:11.731200pt;}
._5{width:12.819200pt;}
._1{width:14.336000pt;}
._14{width:15.292032pt;}
._18{width:16.476160pt;}
._0{width:18.835200pt;}
._9{width:20.236800pt;}
._a{width:21.153536pt;}
._e{width:22.093056pt;}
._15{width:23.612672pt;}
._20{width:24.507136pt;}
._19{width:25.472000pt;}
._17{width:26.374400pt;}
._1a{width:27.959936pt;}
._1f{width:28.878720pt;}
._1c{width:30.316800pt;}
._1e{width:31.558400pt;}
._1d{width:33.299200pt;}
._8{width:34.502400pt;}
._c{width:35.507200pt;}
._24{width:36.889600pt;}
._d{width:43.129600pt;}
._7{width:49.068800pt;}
._26{width:50.096640pt;}
._25{width:51.062528pt;}
._4{width:54.304000pt;}
._23{width:70.385920pt;}
._28{width:76.291840pt;}
._21{width:117.973760pt;}
._27{width:134.112000pt;}
._22{width:174.208000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:96.000000pt;}
.y6b{bottom:-16.640000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:0.880000pt;}
.y6a{bottom:2.240000pt;}
.y40{bottom:2.746667pt;}
.y3e{bottom:2.906667pt;}
.y44{bottom:3.440000pt;}
.y41{bottom:3.920000pt;}
.y84{bottom:8.666667pt;}
.y90{bottom:8.933333pt;}
.y86{bottom:9.093333pt;}
.y92{bottom:9.360000pt;}
.y94{bottom:9.466667pt;}
.y8a{bottom:9.626667pt;}
.y8c{bottom:9.733333pt;}
.y98{bottom:10.640000pt;}
.y81{bottom:10.853333pt;}
.y3a{bottom:11.386667pt;}
.y47{bottom:13.360000pt;}
.y38{bottom:13.680000pt;}
.y82{bottom:15.013333pt;}
.y8e{bottom:18.213333pt;}
.y88{bottom:18.906667pt;}
.y7f{bottom:21.093333pt;}
.y97{bottom:23.120000pt;}
.y3c{bottom:25.680000pt;}
.y8f{bottom:27.493333pt;}
.y89{bottom:27.866667pt;}
.y80{bottom:31.653333pt;}
.y96{bottom:35.600000pt;}
.y42{bottom:100.000000pt;}
.y22{bottom:100.240000pt;}
.y3b{bottom:112.000000pt;}
.y68{bottom:120.720000pt;}
.y7d{bottom:122.960000pt;}
.y3f{bottom:125.333333pt;}
.yb8{bottom:125.520000pt;}
.y21{bottom:127.760000pt;}
.y3d{bottom:137.333333pt;}
.y67{bottom:148.240000pt;}
.y39{bottom:149.333333pt;}
.yb7{bottom:153.360000pt;}
.y20{bottom:155.280000pt;}
.y7c{bottom:164.240000pt;}
.y37{bottom:172.000000pt;}
.yd4{bottom:175.760000pt;}
.y66{bottom:176.080000pt;}
.y7b{bottom:179.600000pt;}
.yb6{bottom:180.880000pt;}
.yb9{bottom:182.160000pt;}
.y1f{bottom:183.120000pt;}
.y93{bottom:197.333333pt;}
.yd3{bottom:203.280000pt;}
.y65{bottom:203.600000pt;}
.yb5{bottom:208.400000pt;}
.y1e{bottom:210.640000pt;}
.y36{bottom:211.280000pt;}
.y91{bottom:216.000000pt;}
.y64{bottom:231.120000pt;}
.y8d{bottom:234.666667pt;}
.yb4{bottom:235.920000pt;}
.y35{bottom:236.560000pt;}
.y1d{bottom:238.160000pt;}
.y63{bottom:258.640000pt;}
.y34{bottom:264.080000pt;}
.yb3{bottom:264.400000pt;}
.y1c{bottom:265.680000pt;}
.y8b{bottom:270.666667pt;}
.yd2{bottom:286.160000pt;}
.y62{bottom:286.480000pt;}
.y87{bottom:289.333333pt;}
.y33{bottom:291.600000pt;}
.yb2{bottom:292.880000pt;}
.y1b{bottom:293.520000pt;}
.y61{bottom:314.000000pt;}
.yd1{bottom:314.640000pt;}
.y32{bottom:319.120000pt;}
.yb1{bottom:320.720000pt;}
.y1a{bottom:321.040000pt;}
.y85{bottom:326.666667pt;}
.y60{bottom:341.520000pt;}
.yd0{bottom:343.120000pt;}
.y83{bottom:345.333333pt;}
.y31{bottom:346.960000pt;}
.yb0{bottom:348.240000pt;}
.y19{bottom:348.560000pt;}
.y7e{bottom:362.666667pt;}
.y5f{bottom:369.040000pt;}
.ycf{bottom:371.600000pt;}
.y30{bottom:374.480000pt;}
.yaf{bottom:375.760000pt;}
.y18{bottom:376.080000pt;}
.y5e{bottom:396.880000pt;}
.yce{bottom:400.080000pt;}
.y2f{bottom:402.000000pt;}
.yae{bottom:403.280000pt;}
.y17{bottom:403.920000pt;}
.y7a{bottom:419.280000pt;}
.y5d{bottom:424.400000pt;}
.ycd{bottom:427.920000pt;}
.y2e{bottom:429.520000pt;}
.yad{bottom:431.120000pt;}
.y16{bottom:431.440000pt;}
.y5c{bottom:451.920000pt;}
.ycc{bottom:455.440000pt;}
.y2d{bottom:457.360000pt;}
.yac{bottom:458.640000pt;}
.y15{bottom:458.960000pt;}
.y79{bottom:465.360000pt;}
.y5b{bottom:479.440000pt;}
.ycb{bottom:482.960000pt;}
.y2c{bottom:484.880000pt;}
.yab{bottom:486.160000pt;}
.y14{bottom:486.480000pt;}
.y78{bottom:492.880000pt;}
.y5a{bottom:507.280000pt;}
.yca{bottom:510.480000pt;}
.y2b{bottom:512.400000pt;}
.yaa{bottom:513.680000pt;}
.y13{bottom:514.320000pt;}
.y77{bottom:520.400000pt;}
.y59{bottom:534.800000pt;}
.yc9{bottom:538.320000pt;}
.y2a{bottom:539.920000pt;}
.ya9{bottom:541.520000pt;}
.y12{bottom:541.840000pt;}
.y76{bottom:548.240000pt;}
.y58{bottom:562.320000pt;}
.yc8{bottom:565.840000pt;}
.y29{bottom:567.440000pt;}
.ya8{bottom:569.040000pt;}
.y11{bottom:569.360000pt;}
.y75{bottom:575.760000pt;}
.y57{bottom:589.840000pt;}
.yc7{bottom:593.360000pt;}
.y28{bottom:595.280000pt;}
.ya7{bottom:596.560000pt;}
.y10{bottom:596.880000pt;}
.y56{bottom:617.680000pt;}
.yc6{bottom:620.880000pt;}
.y27{bottom:622.800000pt;}
.y74{bottom:623.760000pt;}
.ya6{bottom:624.080000pt;}
.yf{bottom:624.720000pt;}
.y72{bottom:631.760000pt;}
.y73{bottom:632.720000pt;}
.y55{bottom:645.200000pt;}
.yc5{bottom:648.720000pt;}
.y26{bottom:650.320000pt;}
.ya5{bottom:651.920000pt;}
.ye{bottom:652.240000pt;}
.y71{bottom:656.720000pt;}
.y54{bottom:672.720000pt;}
.yc4{bottom:676.240000pt;}
.y25{bottom:677.840000pt;}
.ya4{bottom:679.440000pt;}
.yd{bottom:679.760000pt;}
.y70{bottom:684.240000pt;}
.y53{bottom:700.240000pt;}
.yc3{bottom:703.760000pt;}
.y24{bottom:705.680000pt;}
.ya3{bottom:706.960000pt;}
.yc{bottom:707.280000pt;}
.y6f{bottom:712.080000pt;}
.y52{bottom:727.760000pt;}
.yc2{bottom:731.280000pt;}
.y6e{bottom:733.200000pt;}
.y23{bottom:734.160000pt;}
.ya2{bottom:734.800000pt;}
.yb{bottom:735.120000pt;}
.y51{bottom:755.600000pt;}
.yc1{bottom:759.120000pt;}
.y6d{bottom:760.720000pt;}
.ya1{bottom:762.320000pt;}
.ya{bottom:762.640000pt;}
.y50{bottom:783.120000pt;}
.y6c{bottom:785.040000pt;}
.yc0{bottom:786.640000pt;}
.ya0{bottom:789.840000pt;}
.y9{bottom:790.160000pt;}
.y69{bottom:797.200000pt;}
.y4f{bottom:810.640000pt;}
.ybf{bottom:814.160000pt;}
.y9f{bottom:817.360000pt;}
.y8{bottom:817.680000pt;}
.y4e{bottom:838.160000pt;}
.ybe{bottom:842.640000pt;}
.y9e{bottom:845.200000pt;}
.y7{bottom:845.520000pt;}
.y4d{bottom:866.000000pt;}
.ybd{bottom:871.120000pt;}
.y9d{bottom:872.720000pt;}
.y6{bottom:873.040000pt;}
.y4c{bottom:894.480000pt;}
.y95{bottom:896.000000pt;}
.ybc{bottom:898.640000pt;}
.y9c{bottom:900.240000pt;}
.y5{bottom:900.560000pt;}
.y4b{bottom:922.960000pt;}
.ybb{bottom:926.480000pt;}
.y9b{bottom:927.760000pt;}
.y4{bottom:928.080000pt;}
.y4a{bottom:950.480000pt;}
.yba{bottom:954.960000pt;}
.y9a{bottom:955.280000pt;}
.y3{bottom:955.920000pt;}
.y49{bottom:976.080000pt;}
.y99{bottom:983.120000pt;}
.y2{bottom:983.440000pt;}
.y46{bottom:988.000000pt;}
.y48{bottom:1000.000000pt;}
.y1{bottom:1010.960000pt;}
.y45{bottom:1013.333333pt;}
.h8{height:13.333333pt;}
.ha{height:14.666667pt;}
.hd{height:17.600000pt;}
.h18{height:18.666667pt;}
.h1a{height:20.000000pt;}
.h17{height:23.000000pt;}
.h6{height:24.000000pt;}
.h13{height:24.738750pt;}
.hb{height:26.666667pt;}
.h5{height:29.333333pt;}
.h1d{height:29.617500pt;}
.h9{height:30.751875pt;}
.h15{height:35.435000pt;}
.h19{height:35.960000pt;}
.h1b{height:37.333333pt;}
.h7{height:38.666667pt;}
.h4{height:39.165000pt;}
.h16{height:39.640000pt;}
.hc{height:42.656250pt;}
.he{height:42.875000pt;}
.h14{height:44.000000pt;}
.h10{height:45.281250pt;}
.h1{height:46.593750pt;}
.h2{height:46.625000pt;}
.h1c{height:46.666667pt;}
.h3{height:52.511875pt;}
.h1e{height:63.984375pt;}
.h11{height:66.979375pt;}
.h12{height:77.281250pt;}
.hf{height:1106.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:43.840000pt;}
.w7{width:50.666667pt;}
.wb{width:78.666667pt;}
.w8{width:80.000000pt;}
.w9{width:89.333333pt;}
.wa{width:90.666667pt;}
.wc{width:100.000000pt;}
.w2{width:121.333333pt;}
.w3{width:136.000000pt;}
.w6{width:190.666667pt;}
.w1{width:256.000000pt;}
.w5{width:777.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.xb{left:9.600000pt;}
.x1c{left:12.068267pt;}
.x3{left:14.161461pt;}
.xd{left:16.000000pt;}
.x1d{left:16.924907pt;}
.x21{left:18.388907pt;}
.x17{left:20.997387pt;}
.x1f{left:23.219712pt;}
.x19{left:29.878613pt;}
.x20{left:33.699947pt;}
.x16{left:38.880192pt;}
.x22{left:44.080107pt;}
.x5{left:55.820053pt;}
.x4{left:106.576853pt;}
.x15{left:110.666667pt;}
.x1{left:120.666667pt;}
.xe{left:242.638027pt;}
.x10{left:265.997387pt;}
.xa{left:272.986667pt;}
.xf{left:276.506667pt;}
.x2{left:281.333333pt;}
.x9{left:300.609387pt;}
.x12{left:306.355819pt;}
.x11{left:312.346667pt;}
.x13{left:322.753387pt;}
.x18{left:349.333333pt;}
.x8{left:397.333227pt;}
.x6{left:401.333333pt;}
.x14{left:412.618027pt;}
.x1a{left:428.000000pt;}
.x1b{left:516.000000pt;}
.xc{left:557.113387pt;}
.x1e{left:605.333333pt;}
}




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