
    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_811459205609570a67e54b0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_01df9c8ce9660cb30eb722de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_a09431c3fa58af3781a33222.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ac632f55dcd5b1669bbf644a.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_3dee47cbb6180d929c55456c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c19ea4a9bfab3182d50e9d98.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91c9f075c9a40255a4588731.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_066c32d2abc6fa11af1ac66a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5a43b0af8fd77234e21af328.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_91ec51b143a018d95098f77d.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_c7d1932b3c14f1aa60e1fa14.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ea8c73a00d57bb4001d3eb87.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_9788654210770d85fd254c4c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952148;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_be02f6c56264f3296bcc744b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_97703f2a87addaea931b3544.woff2')format("woff");}.fff{font-family:fff;line-height:0.681152;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_5d5305a5fd966a7c9be841db.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4fff01a5865bf460dd402c00.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940430;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_b16acdb92a1bf2fdcf2a0d4c.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;}
.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;}
.ls5e{letter-spacing:-1.548288px;}
.ls49{letter-spacing:-0.675648px;}
.ls3b{letter-spacing:-0.648000px;}
.ls54{letter-spacing:-0.426816px;}
.ls19{letter-spacing:-0.399168px;}
.ls5c{letter-spacing:-0.338688px;}
.ls37{letter-spacing:-0.320544px;}
.ls5d{letter-spacing:-0.302400px;}
.ls53{letter-spacing:-0.284256px;}
.ls16{letter-spacing:-0.260064px;}
.ls17{letter-spacing:-0.241920px;}
.ls28{letter-spacing:-0.238464px;}
.ls75{letter-spacing:-0.209088px;}
.ls21{letter-spacing:-0.198720px;}
.ls5a{letter-spacing:-0.179568px;}
.ls13{letter-spacing:-0.158976px;}
.ls72{letter-spacing:-0.139104px;}
.ls14{letter-spacing:-0.125856px;}
.ls15{letter-spacing:-0.119232px;}
.ls18{letter-spacing:-0.096768px;}
.ls12{letter-spacing:-0.079488px;}
.ls3a{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.039744px;}
.ls5b{letter-spacing:-0.015552px;}
.ls38{letter-spacing:-0.007200px;}
.ls11{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.123552px;}
.ls9{letter-spacing:0.125280px;}
.ls42{letter-spacing:0.125424px;}
.lsb{letter-spacing:0.159840px;}
.ls8{letter-spacing:0.161280px;}
.ls1a{letter-spacing:0.237600px;}
.lse{letter-spacing:0.261360px;}
.ls10{letter-spacing:0.266112px;}
.lsa{letter-spacing:0.275616px;}
.ls6{letter-spacing:0.285120px;}
.ls39{letter-spacing:0.313632px;}
.lsf{letter-spacing:0.318384px;}
.lsd{letter-spacing:0.356400px;}
.ls1b{letter-spacing:0.494208px;}
.ls3d{letter-spacing:0.576000px;}
.ls64{letter-spacing:0.632592px;}
.ls63{letter-spacing:0.632736px;}
.ls3c{letter-spacing:0.720000px;}
.ls57{letter-spacing:1.154880px;}
.ls76{letter-spacing:1.473120px;}
.ls20{letter-spacing:2.220480px;}
.ls1e{letter-spacing:2.260080px;}
.ls65{letter-spacing:2.824128px;}
.ls1f{letter-spacing:2.845440px;}
.ls2a{letter-spacing:3.270240px;}
.ls5f{letter-spacing:4.114080px;}
.ls4e{letter-spacing:4.370976px;}
.ls62{letter-spacing:4.667040px;}
.ls2b{letter-spacing:4.693248px;}
.ls6e{letter-spacing:4.825152px;}
.ls0{letter-spacing:4.870512px;}
.ls60{letter-spacing:4.910400px;}
.ls41{letter-spacing:6.412320px;}
.ls34{letter-spacing:6.417216px;}
.ls35{letter-spacing:6.419520px;}
.ls44{letter-spacing:6.603840px;}
.ls4a{letter-spacing:6.714720px;}
.ls58{letter-spacing:6.821280px;}
.ls46{letter-spacing:6.865920px;}
.ls36{letter-spacing:6.868512px;}
.ls74{letter-spacing:8.616960px;}
.ls4f{letter-spacing:8.663040px;}
.ls32{letter-spacing:9.275184px;}
.ls31{letter-spacing:9.360000px;}
.ls4d{letter-spacing:9.620640px;}
.ls43{letter-spacing:9.742464px;}
.ls73{letter-spacing:10.266912px;}
.ls59{letter-spacing:10.471680px;}
.ls55{letter-spacing:10.625760px;}
.ls2d{letter-spacing:10.986192px;}
.ls29{letter-spacing:11.390400px;}
.ls4{letter-spacing:12.408480px;}
.ls70{letter-spacing:12.754224px;}
.ls2{letter-spacing:13.209120px;}
.ls1{letter-spacing:13.209840px;}
.ls2f{letter-spacing:14.627664px;}
.ls66{letter-spacing:15.176160px;}
.ls56{letter-spacing:15.209280px;}
.ls47{letter-spacing:15.988464px;}
.ls2e{letter-spacing:17.294400px;}
.ls27{letter-spacing:18.743040px;}
.ls40{letter-spacing:19.791360px;}
.ls2c{letter-spacing:19.914480px;}
.ls61{letter-spacing:21.957408px;}
.ls50{letter-spacing:22.019472px;}
.ls6c{letter-spacing:22.026240px;}
.ls6b{letter-spacing:22.026672px;}
.ls23{letter-spacing:22.568832px;}
.ls4c{letter-spacing:23.574960px;}
.ls3{letter-spacing:23.798880px;}
.ls30{letter-spacing:27.277920px;}
.ls48{letter-spacing:27.493920px;}
.ls68{letter-spacing:27.937440px;}
.ls67{letter-spacing:29.836800px;}
.ls6d{letter-spacing:31.366080px;}
.ls24{letter-spacing:31.910400px;}
.ls51{letter-spacing:33.013440px;}
.ls45{letter-spacing:34.528320px;}
.ls1c{letter-spacing:34.781760px;}
.ls7{letter-spacing:34.789392px;}
.ls52{letter-spacing:35.948592px;}
.ls71{letter-spacing:41.986800px;}
.ls3e{letter-spacing:45.709920px;}
.ls3f{letter-spacing:45.711360px;}
.ls25{letter-spacing:48.540384px;}
.ls26{letter-spacing:48.541824px;}
.ls33{letter-spacing:60.969600px;}
.ls5{letter-spacing:63.585936px;}
.ls6f{letter-spacing:66.467520px;}
.ls1d{letter-spacing:72.074880px;}
.ls69{letter-spacing:73.261440px;}
.ls6a{letter-spacing:83.299680px;}
.ls4b{letter-spacing:103.955040px;}
.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;}
}
.ws19{word-spacing:-32.832000px;}
.ws1f{word-spacing:-32.405184px;}
.ws2{word-spacing:-18.414720px;}
.ws17{word-spacing:-18.374976px;}
.ws11{word-spacing:-18.335232px;}
.ws5{word-spacing:-18.295488px;}
.ws4{word-spacing:-18.288864px;}
.ws1c{word-spacing:-18.275616px;}
.ws3{word-spacing:-18.255744px;}
.ws12{word-spacing:-18.216000px;}
.ws1d{word-spacing:-18.176256px;}
.ws7{word-spacing:-16.813440px;}
.ws9{word-spacing:-16.716672px;}
.ws8{word-spacing:-16.571520px;}
.ws6{word-spacing:-16.553376px;}
.ws13{word-spacing:-16.492896px;}
.wsa{word-spacing:-16.414272px;}
.wsc{word-spacing:-13.704768px;}
.wse{word-spacing:-13.566960px;}
.wsd{word-spacing:-13.528944px;}
.ws1{word-spacing:-13.486176px;}
.wsb{word-spacing:-13.448160px;}
.wsf{word-spacing:-13.334112px;}
.ws0{word-spacing:-13.210560px;}
.ws16{word-spacing:-10.728000px;}
.ws14{word-spacing:-9.936000px;}
.ws15{word-spacing:-9.360000px;}
.ws1b{word-spacing:-0.054720px;}
.ws10{word-spacing:0.000000px;}
.ws1e{word-spacing:0.145728px;}
.ws18{word-spacing:0.223776px;}
.ws1a{word-spacing:0.372096px;}
._3a{margin-left:-5.232960px;}
._18{margin-left:-4.173120px;}
._1{margin-left:-2.914560px;}
._8{margin-left:-1.059840px;}
._0{width:1.059840px;}
._b{width:2.218032px;}
._4{width:3.312000px;}
._3{width:4.968000px;}
._c{width:6.491520px;}
._2b{width:7.617600px;}
._19{width:9.008640px;}
._14{width:10.768896px;}
._6{width:12.460176px;}
._5{width:13.645440px;}
._17{width:15.632640px;}
._15{width:16.692480px;}
._e{width:19.408320px;}
._1a{width:20.600640px;}
._1c{width:22.491648px;}
._9{width:24.077088px;}
._7{width:25.369920px;}
._23{width:26.893440px;}
._24{width:28.284480px;}
._3d{width:29.284704px;}
._2d{width:30.346416px;}
._20{width:31.505328px;}
._1f{width:32.722560px;}
._25{width:34.047360px;}
._f{width:35.239680px;}
._a{width:36.299520px;}
._3b{width:38.352960px;}
._3c{width:39.677760px;}
._28{width:40.737600px;}
._2{width:41.863680px;}
._37{width:42.923520px;}
._27{width:45.043200px;}
._26{width:46.434240px;}
._13{width:47.579904px;}
._12{width:48.676608px;}
._16{width:49.775616px;}
._30{width:51.071040px;}
._36{width:52.197120px;}
._35{width:53.256960px;}
._1e{width:54.435600px;}
._1d{width:55.972800px;}
._29{width:57.032640px;}
._2a{width:58.423680px;}
._d{width:59.483520px;}
._1b{width:60.874560px;}
._2f{width:62.795520px;}
._33{width:64.517760px;}
._2c{width:66.438720px;}
._34{width:67.962240px;}
._2e{width:70.308288px;}
._11{width:71.648208px;}
._10{width:72.930240px;}
._44{width:74.286864px;}
._41{width:75.977280px;}
._40{width:77.235840px;}
._45{width:83.462400px;}
._22{width:87.569280px;}
._21{width:88.761600px;}
._46{width:95.054400px;}
._3e{width:98.697600px;}
._42{width:100.154880px;}
._31{width:103.798080px;}
._38{width:104.857920px;}
._39{width:137.580480px;}
._32{width:161.161920px;}
._43{width:195.076800px;}
._3f{width:413.205120px;}
.fc6{color:rgb(151,157,180);}
.fc7{color:transparent;}
.fc5{color:rgb(255,64,0);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(42,96,153);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:5.248800px;}
.y8b{bottom:13.319985px;}
.y8a{bottom:21.959985px;}
.y4{bottom:23.668800px;}
.y3b{bottom:24.688800px;}
.y88{bottom:30.599985px;}
.y7f{bottom:30.959985px;}
.y2{bottom:36.328800px;}
.y3a{bottom:43.768800px;}
.y87{bottom:48.959985px;}
.y7e{bottom:55.439984px;}
.y86{bottom:59.399984px;}
.y39{bottom:62.848800px;}
.y85{bottom:78.119982px;}
.y38{bottom:81.928800px;}
.y89{bottom:87.119985px;}
.y84{bottom:88.199985px;}
.y80{bottom:89.639985px;}
.y27{bottom:97.528800px;}
.y74{bottom:99.328800px;}
.y7c{bottom:102.928800px;}
.y104{bottom:109.768800px;}
.y26{bottom:114.808800px;}
.y8d{bottom:115.168800px;}
.y83{bottom:117.359985px;}
.y63{bottom:118.408800px;}
.yba{bottom:119.488800px;}
.y25{bottom:120.208800px;}
.y81{bottom:122.039985px;}
.y73{bottom:123.448800px;}
.yda{bottom:130.288800px;}
.y78{bottom:132.088800px;}
.y24{bottom:132.448800px;}
.yb0{bottom:132.808800px;}
.y77{bottom:137.488800px;}
.y62{bottom:142.168800px;}
.yb9{bottom:143.608800px;}
.y72{bottom:147.208800px;}
.y82{bottom:147.599985px;}
.yc9{bottom:149.368800px;}
.y76{bottom:149.728800px;}
.y103{bottom:150.448800px;}
.yd9{bottom:151.888800px;}
.yc8{bottom:154.768800px;}
.yaf{bottom:156.928800px;}
.y6{bottom:158.248800px;}
.y37{bottom:165.000000px;}
.y61{bottom:166.288800px;}
.yc7{bottom:166.648800px;}
.yb8{bottom:167.368800px;}
.y102{bottom:170.608800px;}
.y71{bottom:171.328800px;}
.y23{bottom:173.128800px;}
.yae{bottom:180.688800px;}
.yc6{bottom:183.568800px;}
.yd8{bottom:184.288800px;}
.y7b{bottom:188.248800px;}
.y60{bottom:190.408800px;}
.y101{bottom:190.768800px;}
.yb7{bottom:191.488800px;}
.y70{bottom:195.448800px;}
.y22{bottom:197.248800px;}
.yc5{bottom:200.848800px;}
.ycc{bottom:204.088800px;}
.yd7{bottom:206.248800px;}
.y100{bottom:211.288800px;}
.y7a{bottom:212.368800px;}
.y5f{bottom:214.168800px;}
.yb6{bottom:215.608800px;}
.yc4{bottom:218.128800px;}
.y6f{bottom:219.208800px;}
.y21{bottom:221.368800px;}
.yad{bottom:226.408800px;}
.yd6{bottom:229.288800px;}
.yff{bottom:231.448800px;}
.y7d{bottom:232.528800px;}
.y79{bottom:232.888800px;}
.yc3{bottom:235.408800px;}
.y5e{bottom:238.288800px;}
.yb5{bottom:239.368800px;}
.yac{bottom:241.888800px;}
.y6e{bottom:243.328800px;}
.y20{bottom:245.128800px;}
.y36{bottom:246.748800px;}
.yc2{bottom:252.688800px;}
.yab{bottom:257.008800px;}
.yc1{bottom:258.088800px;}
.y5d{bottom:262.408800px;}
.yb4{bottom:263.488800px;}
.y35{bottom:266.188800px;}
.y6d{bottom:267.448800px;}
.y1f{bottom:269.248800px;}
.yc0{bottom:269.968800px;}
.yfe{bottom:271.768800px;}
.yaa{bottom:272.488800px;}
.y34{bottom:285.268800px;}
.y5c{bottom:286.168800px;}
.ybf{bottom:287.248800px;}
.ya9{bottom:287.608800px;}
.y6c{bottom:291.208800px;}
.yfd{bottom:292.288800px;}
.y1e{bottom:293.368800px;}
.y33{bottom:304.348800px;}
.ybe{bottom:304.528800px;}
.ybd{bottom:309.928800px;}
.y5b{bottom:310.288800px;}
.yb3{bottom:311.368800px;}
.yfc{bottom:312.448800px;}
.y6b{bottom:315.328800px;}
.y1d{bottom:317.128800px;}
.ybc{bottom:322.168800px;}
.y32{bottom:323.428800px;}
.ya8{bottom:324.328800px;}
.yfb{bottom:332.608800px;}
.y5a{bottom:334.408800px;}
.yb2{bottom:335.488800px;}
.ya7{bottom:339.088800px;}
.y6a{bottom:339.448800px;}
.y1c{bottom:341.248800px;}
.y31{bottom:342.508800px;}
.yfa{bottom:352.768800px;}
.y59{bottom:358.168800px;}
.yb1{bottom:359.608800px;}
.y30{bottom:361.588800px;}
.ya6{bottom:362.848800px;}
.y69{bottom:363.208800px;}
.y1b{bottom:365.368800px;}
.yf9{bottom:373.288800px;}
.y2f{bottom:380.668800px;}
.y58{bottom:382.288800px;}
.ya5{bottom:386.968800px;}
.y68{bottom:387.328800px;}
.y1a{bottom:389.128800px;}
.yf8{bottom:393.448800px;}
.y2e{bottom:399.748800px;}
.y57{bottom:406.408800px;}
.y67{bottom:411.448800px;}
.y19{bottom:413.248800px;}
.yf7{bottom:413.608800px;}
.y2d{bottom:419.188800px;}
.ya4{bottom:426.208800px;}
.y56{bottom:430.168800px;}
.y66{bottom:435.208800px;}
.y18{bottom:437.368800px;}
.y2c{bottom:438.268800px;}
.ya3{bottom:450.328800px;}
.y55{bottom:454.288800px;}
.yf6{bottom:456.088800px;}
.y2b{bottom:457.348800px;}
.y65{bottom:459.328800px;}
.y17{bottom:461.128800px;}
.ya2{bottom:474.088800px;}
.yf5{bottom:475.528800px;}
.y2a{bottom:476.428800px;}
.y54{bottom:478.408800px;}
.yd5{bottom:483.448800px;}
.y16{bottom:485.248800px;}
.y64{bottom:492.088800px;}
.y29{bottom:495.508800px;}
.yf4{bottom:495.688800px;}
.ya1{bottom:498.208800px;}
.y53{bottom:502.168800px;}
.yd4{bottom:507.208800px;}
.y15{bottom:509.368800px;}
.yf3{bottom:515.848800px;}
.ya0{bottom:522.328800px;}
.y52{bottom:526.288800px;}
.yd3{bottom:531.328800px;}
.y14{bottom:533.128800px;}
.yf2{bottom:536.008800px;}
.y28{bottom:544.500000px;}
.y9f{bottom:546.088800px;}
.y51{bottom:550.408800px;}
.yd2{bottom:555.448800px;}
.yf1{bottom:556.528800px;}
.y13{bottom:557.248800px;}
.y9e{bottom:570.208800px;}
.ycb{bottom:570.568800px;}
.y50{bottom:574.168800px;}
.yf0{bottom:576.688800px;}
.yd1{bottom:579.208800px;}
.y12{bottom:581.368800px;}
.y9d{bottom:594.328800px;}
.yef{bottom:596.848800px;}
.y4f{bottom:598.288800px;}
.yca{bottom:603.328800px;}
.y11{bottom:605.128800px;}
.yee{bottom:617.008800px;}
.y9c{bottom:618.088800px;}
.y4e{bottom:622.408800px;}
.yd0{bottom:627.448800px;}
.yf{bottom:629.248800px;}
.y10{bottom:636.088800px;}
.yed{bottom:637.528800px;}
.y9b{bottom:641.848800px;}
.y4d{bottom:646.168800px;}
.ycf{bottom:651.208800px;}
.ye{bottom:653.368800px;}
.yec{bottom:658.768800px;}
.y4c{bottom:670.288800px;}
.yce{bottom:675.328800px;}
.yd{bottom:677.128800px;}
.yeb{bottom:677.848800px;}
.y9a{bottom:681.808800px;}
.y4b{bottom:694.408800px;}
.yea{bottom:698.008800px;}
.yc{bottom:701.248800px;}
.ycd{bottom:708.088800px;}
.y99{bottom:716.368800px;}
.y4a{bottom:718.168800px;}
.ye9{bottom:719.608800px;}
.yb{bottom:725.368800px;}
.y98{bottom:731.848800px;}
.ye8{bottom:738.688800px;}
.y49{bottom:742.288800px;}
.y97{bottom:746.968800px;}
.ya{bottom:749.128800px;}
.ye7{bottom:758.848800px;}
.y96{bottom:762.448800px;}
.y48{bottom:766.408800px;}
.y9{bottom:773.248800px;}
.y95{bottom:777.568800px;}
.ye6{bottom:779.008800px;}
.y47{bottom:790.168800px;}
.y94{bottom:793.048800px;}
.y8{bottom:797.368800px;}
.ye5{bottom:799.528800px;}
.y93{bottom:808.168800px;}
.y46{bottom:814.288800px;}
.ye4{bottom:819.688800px;}
.y7{bottom:821.128800px;}
.y92{bottom:822.928800px;}
.y45{bottom:838.408800px;}
.ye3{bottom:839.848800px;}
.y5{bottom:840.000000px;}
.y91{bottom:847.048800px;}
.ye2{bottom:860.008800px;}
.y44{bottom:862.168800px;}
.y90{bottom:870.808800px;}
.ye1{bottom:880.528800px;}
.y43{bottom:886.288800px;}
.ybb{bottom:893.128800px;}
.y8f{bottom:895.648800px;}
.ye0{bottom:900.688800px;}
.y42{bottom:910.408800px;}
.y41{bottom:934.168800px;}
.y8e{bottom:935.248800px;}
.ydf{bottom:937.408800px;}
.y40{bottom:958.288800px;}
.yde{bottom:959.368800px;}
.ydd{bottom:980.968800px;}
.y3f{bottom:982.408800px;}
.y75{bottom:989.248800px;}
.y107{bottom:993.928800px;}
.y3e{bottom:1006.168800px;}
.ydc{bottom:1013.368800px;}
.y106{bottom:1014.088800px;}
.y3{bottom:1018.500000px;}
.y3d{bottom:1030.288800px;}
.y105{bottom:1034.608800px;}
.ydb{bottom:1035.328800px;}
.y8c{bottom:1037.128800px;}
.y1{bottom:1193.008800px;}
.h5{height:26.208984px;}
.ha{height:27.945000px;}
.h9{height:30.015000px;}
.h4{height:33.000000px;}
.hd{height:34.595859px;}
.h3{height:34.642266px;}
.h11{height:36.471094px;}
.h10{height:37.112344px;}
.h12{height:42.229688px;}
.hb{height:44.060625px;}
.h13{height:44.149219px;}
.h7{height:48.224531px;}
.h2{height:56.957344px;}
.hf{height:170.280000px;}
.h6{height:180.000000px;}
.he{height:246.000000px;}
.hc{height:511.500000px;}
.h8{height:1245.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:171.000000px;}
.w4{width:198.000000px;}
.w6{width:255.600000px;}
.w7{width:289.440000px;}
.w2{width:363.000000px;}
.w3{width:874.913400px;}
.w8{width:876.413400px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:16.500000px;}
.x2{left:18.000000px;}
.x15{left:21.112560px;}
.x14{left:34.541325px;}
.x19{left:71.047500px;}
.x6{left:85.665900px;}
.x1{left:103.666080px;}
.x7{left:109.066224px;}
.x2d{left:114.466008px;}
.x13{left:121.475550px;}
.x18{left:126.650100px;}
.x8{left:129.166068px;}
.x23{left:134.274000px;}
.x17{left:144.361800px;}
.xa{left:156.765936px;}
.x24{left:182.881884px;}
.x1a{left:199.934250px;}
.x3{left:207.705900px;}
.x25{left:223.388472px;}
.x12{left:227.357850px;}
.x4{left:231.395664px;}
.x27{left:265.395096px;}
.x2b{left:283.305900px;}
.x29{left:289.065900px;}
.xd{left:291.585900px;}
.x28{left:294.130560px;}
.x2a{left:312.935484px;}
.xe{left:315.265692px;}
.x5{left:319.666080px;}
.x21{left:335.865900px;}
.x16{left:358.545900px;}
.x22{left:359.712336px;}
.x1f{left:421.545900px;}
.x20{left:445.452060px;}
.xf{left:464.745900px;}
.x10{left:488.560260px;}
.x1d{left:516.945900px;}
.x1e{left:540.678900px;}
.x2c{left:566.625900px;}
.xb{left:571.665900px;}
.x1b{left:574.905900px;}
.xc{left:595.324380px;}
.x1c{left:598.501020px;}
.x2e{left:618.105900px;}
.x11{left:647.625900px;}
.x9{left:664.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5e{letter-spacing:-1.376256pt;}
.ls49{letter-spacing:-0.600576pt;}
.ls3b{letter-spacing:-0.576000pt;}
.ls54{letter-spacing:-0.379392pt;}
.ls19{letter-spacing:-0.354816pt;}
.ls5c{letter-spacing:-0.301056pt;}
.ls37{letter-spacing:-0.284928pt;}
.ls5d{letter-spacing:-0.268800pt;}
.ls53{letter-spacing:-0.252672pt;}
.ls16{letter-spacing:-0.231168pt;}
.ls17{letter-spacing:-0.215040pt;}
.ls28{letter-spacing:-0.211968pt;}
.ls75{letter-spacing:-0.185856pt;}
.ls21{letter-spacing:-0.176640pt;}
.ls5a{letter-spacing:-0.159616pt;}
.ls13{letter-spacing:-0.141312pt;}
.ls72{letter-spacing:-0.123648pt;}
.ls14{letter-spacing:-0.111872pt;}
.ls15{letter-spacing:-0.105984pt;}
.ls18{letter-spacing:-0.086016pt;}
.ls12{letter-spacing:-0.070656pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.035328pt;}
.ls5b{letter-spacing:-0.013824pt;}
.ls38{letter-spacing:-0.006400pt;}
.ls11{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.109824pt;}
.ls9{letter-spacing:0.111360pt;}
.ls42{letter-spacing:0.111488pt;}
.lsb{letter-spacing:0.142080pt;}
.ls8{letter-spacing:0.143360pt;}
.ls1a{letter-spacing:0.211200pt;}
.lse{letter-spacing:0.232320pt;}
.ls10{letter-spacing:0.236544pt;}
.lsa{letter-spacing:0.244992pt;}
.ls6{letter-spacing:0.253440pt;}
.ls39{letter-spacing:0.278784pt;}
.lsf{letter-spacing:0.283008pt;}
.lsd{letter-spacing:0.316800pt;}
.ls1b{letter-spacing:0.439296pt;}
.ls3d{letter-spacing:0.512000pt;}
.ls64{letter-spacing:0.562304pt;}
.ls63{letter-spacing:0.562432pt;}
.ls3c{letter-spacing:0.640000pt;}
.ls57{letter-spacing:1.026560pt;}
.ls76{letter-spacing:1.309440pt;}
.ls20{letter-spacing:1.973760pt;}
.ls1e{letter-spacing:2.008960pt;}
.ls65{letter-spacing:2.510336pt;}
.ls1f{letter-spacing:2.529280pt;}
.ls2a{letter-spacing:2.906880pt;}
.ls5f{letter-spacing:3.656960pt;}
.ls4e{letter-spacing:3.885312pt;}
.ls62{letter-spacing:4.148480pt;}
.ls2b{letter-spacing:4.171776pt;}
.ls6e{letter-spacing:4.289024pt;}
.ls0{letter-spacing:4.329344pt;}
.ls60{letter-spacing:4.364800pt;}
.ls41{letter-spacing:5.699840pt;}
.ls34{letter-spacing:5.704192pt;}
.ls35{letter-spacing:5.706240pt;}
.ls44{letter-spacing:5.870080pt;}
.ls4a{letter-spacing:5.968640pt;}
.ls58{letter-spacing:6.063360pt;}
.ls46{letter-spacing:6.103040pt;}
.ls36{letter-spacing:6.105344pt;}
.ls74{letter-spacing:7.659520pt;}
.ls4f{letter-spacing:7.700480pt;}
.ls32{letter-spacing:8.244608pt;}
.ls31{letter-spacing:8.320000pt;}
.ls4d{letter-spacing:8.551680pt;}
.ls43{letter-spacing:8.659968pt;}
.ls73{letter-spacing:9.126144pt;}
.ls59{letter-spacing:9.308160pt;}
.ls55{letter-spacing:9.445120pt;}
.ls2d{letter-spacing:9.765504pt;}
.ls29{letter-spacing:10.124800pt;}
.ls4{letter-spacing:11.029760pt;}
.ls70{letter-spacing:11.337088pt;}
.ls2{letter-spacing:11.741440pt;}
.ls1{letter-spacing:11.742080pt;}
.ls2f{letter-spacing:13.002368pt;}
.ls66{letter-spacing:13.489920pt;}
.ls56{letter-spacing:13.519360pt;}
.ls47{letter-spacing:14.211968pt;}
.ls2e{letter-spacing:15.372800pt;}
.ls27{letter-spacing:16.660480pt;}
.ls40{letter-spacing:17.592320pt;}
.ls2c{letter-spacing:17.701760pt;}
.ls61{letter-spacing:19.517696pt;}
.ls50{letter-spacing:19.572864pt;}
.ls6c{letter-spacing:19.578880pt;}
.ls6b{letter-spacing:19.579264pt;}
.ls23{letter-spacing:20.061184pt;}
.ls4c{letter-spacing:20.955520pt;}
.ls3{letter-spacing:21.154560pt;}
.ls30{letter-spacing:24.247040pt;}
.ls48{letter-spacing:24.439040pt;}
.ls68{letter-spacing:24.833280pt;}
.ls67{letter-spacing:26.521600pt;}
.ls6d{letter-spacing:27.880960pt;}
.ls24{letter-spacing:28.364800pt;}
.ls51{letter-spacing:29.345280pt;}
.ls45{letter-spacing:30.691840pt;}
.ls1c{letter-spacing:30.917120pt;}
.ls7{letter-spacing:30.923904pt;}
.ls52{letter-spacing:31.954304pt;}
.ls71{letter-spacing:37.321600pt;}
.ls3e{letter-spacing:40.631040pt;}
.ls3f{letter-spacing:40.632320pt;}
.ls25{letter-spacing:43.147008pt;}
.ls26{letter-spacing:43.148288pt;}
.ls33{letter-spacing:54.195200pt;}
.ls5{letter-spacing:56.520832pt;}
.ls6f{letter-spacing:59.082240pt;}
.ls1d{letter-spacing:64.066560pt;}
.ls69{letter-spacing:65.121280pt;}
.ls6a{letter-spacing:74.044160pt;}
.ls4b{letter-spacing:92.404480pt;}
.ws19{word-spacing:-29.184000pt;}
.ws1f{word-spacing:-28.804608pt;}
.ws2{word-spacing:-16.368640pt;}
.ws17{word-spacing:-16.333312pt;}
.ws11{word-spacing:-16.297984pt;}
.ws5{word-spacing:-16.262656pt;}
.ws4{word-spacing:-16.256768pt;}
.ws1c{word-spacing:-16.244992pt;}
.ws3{word-spacing:-16.227328pt;}
.ws12{word-spacing:-16.192000pt;}
.ws1d{word-spacing:-16.156672pt;}
.ws7{word-spacing:-14.945280pt;}
.ws9{word-spacing:-14.859264pt;}
.ws8{word-spacing:-14.730240pt;}
.ws6{word-spacing:-14.714112pt;}
.ws13{word-spacing:-14.660352pt;}
.wsa{word-spacing:-14.590464pt;}
.wsc{word-spacing:-12.182016pt;}
.wse{word-spacing:-12.059520pt;}
.wsd{word-spacing:-12.025728pt;}
.ws1{word-spacing:-11.987712pt;}
.wsb{word-spacing:-11.953920pt;}
.wsf{word-spacing:-11.852544pt;}
.ws0{word-spacing:-11.742720pt;}
.ws16{word-spacing:-9.536000pt;}
.ws14{word-spacing:-8.832000pt;}
.ws15{word-spacing:-8.320000pt;}
.ws1b{word-spacing:-0.048640pt;}
.ws10{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.129536pt;}
.ws18{word-spacing:0.198912pt;}
.ws1a{word-spacing:0.330752pt;}
._3a{margin-left:-4.651520pt;}
._18{margin-left:-3.709440pt;}
._1{margin-left:-2.590720pt;}
._8{margin-left:-0.942080pt;}
._0{width:0.942080pt;}
._b{width:1.971584pt;}
._4{width:2.944000pt;}
._3{width:4.416000pt;}
._c{width:5.770240pt;}
._2b{width:6.771200pt;}
._19{width:8.007680pt;}
._14{width:9.572352pt;}
._6{width:11.075712pt;}
._5{width:12.129280pt;}
._17{width:13.895680pt;}
._15{width:14.837760pt;}
._e{width:17.251840pt;}
._1a{width:18.311680pt;}
._1c{width:19.992576pt;}
._9{width:21.401856pt;}
._7{width:22.551040pt;}
._23{width:23.905280pt;}
._24{width:25.141760pt;}
._3d{width:26.030848pt;}
._2d{width:26.974592pt;}
._20{width:28.004736pt;}
._1f{width:29.086720pt;}
._25{width:30.264320pt;}
._f{width:31.324160pt;}
._a{width:32.266240pt;}
._3b{width:34.091520pt;}
._3c{width:35.269120pt;}
._28{width:36.211200pt;}
._2{width:37.212160pt;}
._37{width:38.154240pt;}
._27{width:40.038400pt;}
._26{width:41.274880pt;}
._13{width:42.293248pt;}
._12{width:43.268096pt;}
._16{width:44.244992pt;}
._30{width:45.396480pt;}
._36{width:46.397440pt;}
._35{width:47.339520pt;}
._1e{width:48.387200pt;}
._1d{width:49.753600pt;}
._29{width:50.695680pt;}
._2a{width:51.932160pt;}
._d{width:52.874240pt;}
._1b{width:54.110720pt;}
._2f{width:55.818240pt;}
._33{width:57.349120pt;}
._2c{width:59.056640pt;}
._34{width:60.410880pt;}
._2e{width:62.496256pt;}
._11{width:63.687296pt;}
._10{width:64.826880pt;}
._44{width:66.032768pt;}
._41{width:67.535360pt;}
._40{width:68.654080pt;}
._45{width:74.188800pt;}
._22{width:77.839360pt;}
._21{width:78.899200pt;}
._46{width:84.492800pt;}
._3e{width:87.731200pt;}
._42{width:89.026560pt;}
._31{width:92.264960pt;}
._38{width:93.207040pt;}
._39{width:122.293760pt;}
._32{width:143.255040pt;}
._43{width:173.401600pt;}
._3f{width:367.293440pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.665600pt;}
.y8b{bottom:11.839987pt;}
.y8a{bottom:19.519987pt;}
.y4{bottom:21.038933pt;}
.y3b{bottom:21.945600pt;}
.y88{bottom:27.199987pt;}
.y7f{bottom:27.519987pt;}
.y2{bottom:32.292267pt;}
.y3a{bottom:38.905600pt;}
.y87{bottom:43.519987pt;}
.y7e{bottom:49.279985pt;}
.y86{bottom:52.799985pt;}
.y39{bottom:55.865600pt;}
.y85{bottom:69.439984pt;}
.y38{bottom:72.825600pt;}
.y89{bottom:77.439987pt;}
.y84{bottom:78.399987pt;}
.y80{bottom:79.679987pt;}
.y27{bottom:86.692267pt;}
.y74{bottom:88.292267pt;}
.y7c{bottom:91.492267pt;}
.y104{bottom:97.572267pt;}
.y26{bottom:102.052267pt;}
.y8d{bottom:102.372267pt;}
.y83{bottom:104.319987pt;}
.y63{bottom:105.252267pt;}
.yba{bottom:106.212267pt;}
.y25{bottom:106.852267pt;}
.y81{bottom:108.479987pt;}
.y73{bottom:109.732267pt;}
.yda{bottom:115.812267pt;}
.y78{bottom:117.412267pt;}
.y24{bottom:117.732267pt;}
.yb0{bottom:118.052267pt;}
.y77{bottom:122.212267pt;}
.y62{bottom:126.372267pt;}
.yb9{bottom:127.652267pt;}
.y72{bottom:130.852267pt;}
.y82{bottom:131.199987pt;}
.yc9{bottom:132.772267pt;}
.y76{bottom:133.092267pt;}
.y103{bottom:133.732267pt;}
.yd9{bottom:135.012267pt;}
.yc8{bottom:137.572267pt;}
.yaf{bottom:139.492267pt;}
.y6{bottom:140.665600pt;}
.y37{bottom:146.666667pt;}
.y61{bottom:147.812267pt;}
.yc7{bottom:148.132267pt;}
.yb8{bottom:148.772267pt;}
.y102{bottom:151.652267pt;}
.y71{bottom:152.292267pt;}
.y23{bottom:153.892267pt;}
.yae{bottom:160.612267pt;}
.yc6{bottom:163.172267pt;}
.yd8{bottom:163.812267pt;}
.y7b{bottom:167.332267pt;}
.y60{bottom:169.252267pt;}
.y101{bottom:169.572267pt;}
.yb7{bottom:170.212267pt;}
.y70{bottom:173.732267pt;}
.y22{bottom:175.332267pt;}
.yc5{bottom:178.532267pt;}
.ycc{bottom:181.412267pt;}
.yd7{bottom:183.332267pt;}
.y100{bottom:187.812267pt;}
.y7a{bottom:188.772267pt;}
.y5f{bottom:190.372267pt;}
.yb6{bottom:191.652267pt;}
.yc4{bottom:193.892267pt;}
.y6f{bottom:194.852267pt;}
.y21{bottom:196.772267pt;}
.yad{bottom:201.252267pt;}
.yd6{bottom:203.812267pt;}
.yff{bottom:205.732267pt;}
.y7d{bottom:206.692267pt;}
.y79{bottom:207.012267pt;}
.yc3{bottom:209.252267pt;}
.y5e{bottom:211.812267pt;}
.yb5{bottom:212.772267pt;}
.yac{bottom:215.012267pt;}
.y6e{bottom:216.292267pt;}
.y20{bottom:217.892267pt;}
.y36{bottom:219.332267pt;}
.yc2{bottom:224.612267pt;}
.yab{bottom:228.452267pt;}
.yc1{bottom:229.412267pt;}
.y5d{bottom:233.252267pt;}
.yb4{bottom:234.212267pt;}
.y35{bottom:236.612267pt;}
.y6d{bottom:237.732267pt;}
.y1f{bottom:239.332267pt;}
.yc0{bottom:239.972267pt;}
.yfe{bottom:241.572267pt;}
.yaa{bottom:242.212267pt;}
.y34{bottom:253.572267pt;}
.y5c{bottom:254.372267pt;}
.ybf{bottom:255.332267pt;}
.ya9{bottom:255.652267pt;}
.y6c{bottom:258.852267pt;}
.yfd{bottom:259.812267pt;}
.y1e{bottom:260.772267pt;}
.y33{bottom:270.532267pt;}
.ybe{bottom:270.692267pt;}
.ybd{bottom:275.492267pt;}
.y5b{bottom:275.812267pt;}
.yb3{bottom:276.772267pt;}
.yfc{bottom:277.732267pt;}
.y6b{bottom:280.292267pt;}
.y1d{bottom:281.892267pt;}
.ybc{bottom:286.372267pt;}
.y32{bottom:287.492267pt;}
.ya8{bottom:288.292267pt;}
.yfb{bottom:295.652267pt;}
.y5a{bottom:297.252267pt;}
.yb2{bottom:298.212267pt;}
.ya7{bottom:301.412267pt;}
.y6a{bottom:301.732267pt;}
.y1c{bottom:303.332267pt;}
.y31{bottom:304.452267pt;}
.yfa{bottom:313.572267pt;}
.y59{bottom:318.372267pt;}
.yb1{bottom:319.652267pt;}
.y30{bottom:321.412267pt;}
.ya6{bottom:322.532267pt;}
.y69{bottom:322.852267pt;}
.y1b{bottom:324.772267pt;}
.yf9{bottom:331.812267pt;}
.y2f{bottom:338.372267pt;}
.y58{bottom:339.812267pt;}
.ya5{bottom:343.972267pt;}
.y68{bottom:344.292267pt;}
.y1a{bottom:345.892267pt;}
.yf8{bottom:349.732267pt;}
.y2e{bottom:355.332267pt;}
.y57{bottom:361.252267pt;}
.y67{bottom:365.732267pt;}
.y19{bottom:367.332267pt;}
.yf7{bottom:367.652267pt;}
.y2d{bottom:372.612267pt;}
.ya4{bottom:378.852267pt;}
.y56{bottom:382.372267pt;}
.y66{bottom:386.852267pt;}
.y18{bottom:388.772267pt;}
.y2c{bottom:389.572267pt;}
.ya3{bottom:400.292267pt;}
.y55{bottom:403.812267pt;}
.yf6{bottom:405.412267pt;}
.y2b{bottom:406.532267pt;}
.y65{bottom:408.292267pt;}
.y17{bottom:409.892267pt;}
.ya2{bottom:421.412267pt;}
.yf5{bottom:422.692267pt;}
.y2a{bottom:423.492267pt;}
.y54{bottom:425.252267pt;}
.yd5{bottom:429.732267pt;}
.y16{bottom:431.332267pt;}
.y64{bottom:437.412267pt;}
.y29{bottom:440.452267pt;}
.yf4{bottom:440.612267pt;}
.ya1{bottom:442.852267pt;}
.y53{bottom:446.372267pt;}
.yd4{bottom:450.852267pt;}
.y15{bottom:452.772267pt;}
.yf3{bottom:458.532267pt;}
.ya0{bottom:464.292267pt;}
.y52{bottom:467.812267pt;}
.yd3{bottom:472.292267pt;}
.y14{bottom:473.892267pt;}
.yf2{bottom:476.452267pt;}
.y28{bottom:484.000000pt;}
.y9f{bottom:485.412267pt;}
.y51{bottom:489.252267pt;}
.yd2{bottom:493.732267pt;}
.yf1{bottom:494.692267pt;}
.y13{bottom:495.332267pt;}
.y9e{bottom:506.852267pt;}
.ycb{bottom:507.172267pt;}
.y50{bottom:510.372267pt;}
.yf0{bottom:512.612267pt;}
.yd1{bottom:514.852267pt;}
.y12{bottom:516.772267pt;}
.y9d{bottom:528.292267pt;}
.yef{bottom:530.532267pt;}
.y4f{bottom:531.812267pt;}
.yca{bottom:536.292267pt;}
.y11{bottom:537.892267pt;}
.yee{bottom:548.452267pt;}
.y9c{bottom:549.412267pt;}
.y4e{bottom:553.252267pt;}
.yd0{bottom:557.732267pt;}
.yf{bottom:559.332267pt;}
.y10{bottom:565.412267pt;}
.yed{bottom:566.692267pt;}
.y9b{bottom:570.532267pt;}
.y4d{bottom:574.372267pt;}
.ycf{bottom:578.852267pt;}
.ye{bottom:580.772267pt;}
.yec{bottom:585.572267pt;}
.y4c{bottom:595.812267pt;}
.yce{bottom:600.292267pt;}
.yd{bottom:601.892267pt;}
.yeb{bottom:602.532267pt;}
.y9a{bottom:606.052267pt;}
.y4b{bottom:617.252267pt;}
.yea{bottom:620.452267pt;}
.yc{bottom:623.332267pt;}
.ycd{bottom:629.412267pt;}
.y99{bottom:636.772267pt;}
.y4a{bottom:638.372267pt;}
.ye9{bottom:639.652267pt;}
.yb{bottom:644.772267pt;}
.y98{bottom:650.532267pt;}
.ye8{bottom:656.612267pt;}
.y49{bottom:659.812267pt;}
.y97{bottom:663.972267pt;}
.ya{bottom:665.892267pt;}
.ye7{bottom:674.532267pt;}
.y96{bottom:677.732267pt;}
.y48{bottom:681.252267pt;}
.y9{bottom:687.332267pt;}
.y95{bottom:691.172267pt;}
.ye6{bottom:692.452267pt;}
.y47{bottom:702.372267pt;}
.y94{bottom:704.932267pt;}
.y8{bottom:708.772267pt;}
.ye5{bottom:710.692267pt;}
.y93{bottom:718.372267pt;}
.y46{bottom:723.812267pt;}
.ye4{bottom:728.612267pt;}
.y7{bottom:729.892267pt;}
.y92{bottom:731.492267pt;}
.y45{bottom:745.252267pt;}
.ye3{bottom:746.532267pt;}
.y5{bottom:746.666667pt;}
.y91{bottom:752.932267pt;}
.ye2{bottom:764.452267pt;}
.y44{bottom:766.372267pt;}
.y90{bottom:774.052267pt;}
.ye1{bottom:782.692267pt;}
.y43{bottom:787.812267pt;}
.ybb{bottom:793.892267pt;}
.y8f{bottom:796.132267pt;}
.ye0{bottom:800.612267pt;}
.y42{bottom:809.252267pt;}
.y41{bottom:830.372267pt;}
.y8e{bottom:831.332267pt;}
.ydf{bottom:833.252267pt;}
.y40{bottom:851.812267pt;}
.yde{bottom:852.772267pt;}
.ydd{bottom:871.972267pt;}
.y3f{bottom:873.252267pt;}
.y75{bottom:879.332267pt;}
.y107{bottom:883.492267pt;}
.y3e{bottom:894.372267pt;}
.ydc{bottom:900.772267pt;}
.y106{bottom:901.412267pt;}
.y3{bottom:905.333333pt;}
.y3d{bottom:915.812267pt;}
.y105{bottom:919.652267pt;}
.ydb{bottom:920.292267pt;}
.y8c{bottom:921.892267pt;}
.y1{bottom:1060.452267pt;}
.h5{height:23.296875pt;}
.ha{height:24.840000pt;}
.h9{height:26.680000pt;}
.h4{height:29.333333pt;}
.hd{height:30.751875pt;}
.h3{height:30.793125pt;}
.h11{height:32.418750pt;}
.h10{height:32.988750pt;}
.h12{height:37.537500pt;}
.hb{height:39.165000pt;}
.h13{height:39.243750pt;}
.h7{height:42.866250pt;}
.h2{height:50.628750pt;}
.hf{height:151.360000pt;}
.h6{height:160.000000pt;}
.he{height:218.666667pt;}
.hc{height:454.666667pt;}
.h8{height:1106.666667pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:152.000000pt;}
.w4{width:176.000000pt;}
.w6{width:227.200000pt;}
.w7{width:257.280000pt;}
.w2{width:322.666667pt;}
.w3{width:777.700800pt;}
.w8{width:779.034133pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:14.666667pt;}
.x2{left:16.000000pt;}
.x15{left:18.766720pt;}
.x14{left:30.703400pt;}
.x19{left:63.153333pt;}
.x6{left:76.147467pt;}
.x1{left:92.147627pt;}
.x7{left:96.947755pt;}
.x2d{left:101.747563pt;}
.x13{left:107.978267pt;}
.x18{left:112.577867pt;}
.x8{left:114.814283pt;}
.x23{left:119.354667pt;}
.x17{left:128.321600pt;}
.xa{left:139.347499pt;}
.x24{left:162.561675pt;}
.x1a{left:177.719333pt;}
.x3{left:184.627467pt;}
.x25{left:198.567531pt;}
.x12{left:202.095867pt;}
.x4{left:205.685035pt;}
.x27{left:235.906752pt;}
.x2b{left:251.827467pt;}
.x29{left:256.947467pt;}
.xd{left:259.187467pt;}
.x28{left:261.449387pt;}
.x2a{left:278.164875pt;}
.xe{left:280.236171pt;}
.x5{left:284.147627pt;}
.x21{left:298.547467pt;}
.x16{left:318.707467pt;}
.x22{left:319.744299pt;}
.x1f{left:374.707467pt;}
.x20{left:395.957387pt;}
.xf{left:413.107467pt;}
.x10{left:434.275787pt;}
.x1d{left:459.507467pt;}
.x1e{left:480.603467pt;}
.x2c{left:503.667467pt;}
.xb{left:508.147467pt;}
.x1b{left:511.027467pt;}
.xc{left:529.177227pt;}
.x1c{left:532.000907pt;}
.x2e{left:549.427467pt;}
.x11{left:575.667467pt;}
.x9{left:590.666667pt;}
}




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