
    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_629f7a8f65162aa706e9bcfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd147c8fe804ebc5d71a5a8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c4517f97e2a93ecdcb24da52.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_818f3ed782579847c13d647e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1c3c32169082cdeffb5d09c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b7e5a247e34a696435ca4b81.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4144cadaee0b9d97b0089cd6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1035b1f0950da79ddbfa3efb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_31d2c9a98fef426dfe52f86b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_62222040ad2bb35c185ac462.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_62319f825d5bd2e47f4d9763.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0715557679e1cc61965f6084.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6ba5c6e651c50e51101eb629.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_98286226a46b2a1de69a04ce.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9ff199acbfbddb60853d1958.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_af71a52936803241056e023a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9412fd1d5e830aab57b949cc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b840afbf41eed5270f228dd2.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m10{transform:matrix(0.127365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127365,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.195779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195779,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.226829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226829,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.228531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228531,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.230183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230183,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.230628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230628,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232506,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,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);}
.me{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.352188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352188,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.491947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491947,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-47.571480px;}
.v3{vertical-align:-43.140000px;}
.v2{vertical-align:-35.964000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:157.356000px;}
.ls20{letter-spacing:-4.599000px;}
.ls21{letter-spacing:-4.515000px;}
.ls33{letter-spacing:-1.367460px;}
.ls26{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.140976px;}
.ls27{letter-spacing:-0.129600px;}
.ls28{letter-spacing:-0.115200px;}
.ls29{letter-spacing:-0.100800px;}
.ls1a{letter-spacing:-0.096120px;}
.ls23{letter-spacing:-0.095940px;}
.ls4c{letter-spacing:-0.086400px;}
.ls24{letter-spacing:-0.076752px;}
.lse{letter-spacing:-0.059940px;}
.ls25{letter-spacing:-0.057600px;}
.lsd{letter-spacing:-0.050436px;}
.ls19{letter-spacing:-0.048060px;}
.ls1c{letter-spacing:-0.047952px;}
.ls4d{letter-spacing:-0.043200px;}
.ls9{letter-spacing:-0.038376px;}
.ls39{letter-spacing:-0.035964px;}
.ls1d{letter-spacing:-0.028836px;}
.ls4b{letter-spacing:-0.028800px;}
.ls48{letter-spacing:-0.024960px;}
.ls2c{letter-spacing:-0.023976px;}
.ls13{letter-spacing:-0.021600px;}
.lsa{letter-spacing:-0.019188px;}
.ls2b{letter-spacing:-0.014400px;}
.ls4a{letter-spacing:-0.011988px;}
.ls18{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.011988px;}
.ls4{letter-spacing:0.012240px;}
.ls15{letter-spacing:0.019224px;}
.ls17{letter-spacing:0.021600px;}
.ls38{letter-spacing:0.023976px;}
.ls5{letter-spacing:0.026388px;}
.ls14{letter-spacing:0.028800px;}
.ls1b{letter-spacing:0.033552px;}
.ls2a{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.047952px;}
.lsf{letter-spacing:0.050328px;}
.ls0{letter-spacing:0.055800px;}
.ls8{letter-spacing:0.057564px;}
.ls10{letter-spacing:0.059940px;}
.ls16{letter-spacing:0.064800px;}
.ls22{letter-spacing:0.076752px;}
.ls6{letter-spacing:0.079164px;}
.ls3{letter-spacing:0.081360px;}
.ls2{letter-spacing:0.158400px;}
.ls1{letter-spacing:0.212400px;}
.lsc{letter-spacing:0.217872px;}
.ls30{letter-spacing:0.282720px;}
.ls41{letter-spacing:0.460800px;}
.ls3c{letter-spacing:0.767520px;}
.ls3f{letter-spacing:0.811200px;}
.ls2f{letter-spacing:1.093680px;}
.ls3d{letter-spacing:1.123200px;}
.ls2e{letter-spacing:1.376400px;}
.ls31{letter-spacing:1.624260px;}
.ls49{letter-spacing:1.817640px;}
.ls3e{letter-spacing:2.052960px;}
.ls1e{letter-spacing:2.061000px;}
.ls32{letter-spacing:2.098080px;}
.ls1f{letter-spacing:2.241000px;}
.ls3b{letter-spacing:2.264400px;}
.ls37{letter-spacing:2.276640px;}
.ls43{letter-spacing:2.350080px;}
.ls40{letter-spacing:2.374560px;}
.ls44{letter-spacing:2.400000px;}
.ls46{letter-spacing:2.570880px;}
.ls35{letter-spacing:2.670720px;}
.ls45{letter-spacing:3.060000px;}
.ls47{letter-spacing:3.120000px;}
.ls36{letter-spacing:3.210000px;}
.ls3a{letter-spacing:3.304800px;}
.ls42{letter-spacing:3.840000px;}
.ls34{letter-spacing:6.210030px;}
.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:-53.783964px;}
.ws1b{word-spacing:-40.320000px;}
.ws4{word-spacing:-36.102672px;}
.ws1{word-spacing:-35.884800px;}
.ws3{word-spacing:-35.743824px;}
.ws1e{word-spacing:-26.932824px;}
.ws1c{word-spacing:-26.913600px;}
.ws1d{word-spacing:-26.865540px;}
.ws39{word-spacing:-20.965920px;}
.ws3e{word-spacing:-19.400160px;}
.ws0{word-spacing:-6.120000px;}
.ws49{word-spacing:-1.414800px;}
.ws44{word-spacing:-1.047600px;}
.ws3d{word-spacing:-0.935064px;}
.ws2c{word-spacing:-0.874800px;}
.ws36{word-spacing:-0.806400px;}
.ws25{word-spacing:-0.702000px;}
.ws45{word-spacing:-0.691200px;}
.ws17{word-spacing:-0.496800px;}
.ws27{word-spacing:-0.345600px;}
.ws2b{word-spacing:-0.324000px;}
.ws47{word-spacing:-0.313200px;}
.ws48{word-spacing:-0.291600px;}
.ws2f{word-spacing:-0.287820px;}
.ws35{word-spacing:-0.244800px;}
.ws1a{word-spacing:-0.241200px;}
.ws41{word-spacing:-0.158400px;}
.ws6{word-spacing:-0.158328px;}
.ws2e{word-spacing:-0.115128px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:0.028800px;}
.ws5{word-spacing:0.052776px;}
.ws33{word-spacing:0.072000px;}
.ws46{word-spacing:0.151200px;}
.wse{word-spacing:0.168120px;}
.ws28{word-spacing:0.173016px;}
.ws15{word-spacing:0.239760px;}
.ws12{word-spacing:0.259200px;}
.ws22{word-spacing:0.287712px;}
.ws20{word-spacing:0.324000px;}
.ws9{word-spacing:0.326196px;}
.ws26{word-spacing:0.347652px;}
.ws30{word-spacing:0.360000px;}
.ws7{word-spacing:0.479700px;}
.ws43{word-spacing:0.518400px;}
.ws31{word-spacing:0.547200px;}
.ws16{word-spacing:0.647352px;}
.ws1f{word-spacing:0.691200px;}
.wsf{word-spacing:0.719280px;}
.ws23{word-spacing:0.720000px;}
.ws11{word-spacing:0.748800px;}
.ws19{word-spacing:0.756000px;}
.ws34{word-spacing:0.777600px;}
.ws32{word-spacing:0.806400px;}
.ws40{word-spacing:0.827172px;}
.ws2a{word-spacing:0.855468px;}
.ws14{word-spacing:0.939456px;}
.ws3a{word-spacing:0.947052px;}
.ws2d{word-spacing:0.956232px;}
.ws38{word-spacing:0.983016px;}
.wsd{word-spacing:1.055340px;}
.ws3b{word-spacing:1.210788px;}
.ws29{word-spacing:1.230336px;}
.ws37{word-spacing:1.318680px;}
.ws3f{word-spacing:1.354644px;}
.ws3c{word-spacing:1.378620px;}
.ws18{word-spacing:1.438560px;}
.ws24{word-spacing:1.440000px;}
.ws21{word-spacing:1.468800px;}
.wsc{word-spacing:1.765296px;}
.wsa{word-spacing:2.110680px;}
.wsb{word-spacing:2.129868px;}
.ws13{word-spacing:172.756800px;}
.ws42{word-spacing:236.325600px;}
._1c{margin-left:-66.870450px;}
._1b{margin-left:-14.381640px;}
._14{margin-left:-11.390400px;}
._15{margin-left:-10.209600px;}
._17{margin-left:-9.013680px;}
._18{margin-left:-7.792200px;}
._16{margin-left:-5.254920px;}
._13{margin-left:-3.453840px;}
._1{margin-left:-1.458360px;}
._0{width:1.765224px;}
._a{width:5.534400px;}
._1a{width:7.722720px;}
._e{width:9.828000px;}
._1d{width:19.418400px;}
._d{width:20.520000px;}
._19{width:23.748480px;}
._2{width:39.579696px;}
._10{width:40.800000px;}
._11{width:42.179808px;}
._9{width:57.936000px;}
._4{width:60.770400px;}
._f{width:62.222400px;}
._c{width:65.943600px;}
._12{width:67.470000px;}
._7{width:68.822400px;}
._8{width:70.560000px;}
._6{width:71.743200px;}
._5{width:73.737600px;}
._3{width:74.906400px;}
._b{width:76.099200px;}
._1e{width:291.264000px;}
.fc6{color:rgb(0,101,255);}
.fc5{color:rgb(255,154,0);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc8{color:transparent;}
.fc7{color:rgb(255,51,0);}
.fc2{color:rgb(228,108,10);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(255,0,0);}
.fs1a{font-size:42.600000px;}
.fs23{font-size:48.000000px;}
.fsf{font-size:50.400000px;}
.fsb{font-size:55.200000px;}
.fse{font-size:55.800000px;}
.fsc{font-size:57.600000px;}
.fsd{font-size:58.800000px;}
.fs16{font-size:61.200000px;}
.fs24{font-size:62.400000px;}
.fs1b{font-size:64.200000px;}
.fs1c{font-size:69.120000px;}
.fs9{font-size:72.000000px;}
.fs19{font-size:74.400000px;}
.fs20{font-size:76.800000px;}
.fs1f{font-size:78.600000px;}
.fs1e{font-size:83.400000px;}
.fs7{font-size:83.880000px;}
.fs10{font-size:90.000000px;}
.fs21{font-size:96.000000px;}
.fsa{font-size:96.120000px;}
.fs22{font-size:105.120600px;}
.fs13{font-size:106.800000px;}
.fs8{font-size:108.000000px;}
.fs12{font-size:108.600000px;}
.fs14{font-size:109.200600px;}
.fs11{font-size:114.600000px;}
.fs5{font-size:119.880000px;}
.fs1d{font-size:124.200600px;}
.fs15{font-size:126.000000px;}
.fs3{font-size:128.160000px;}
.fs18{font-size:129.000000px;}
.fs17{font-size:131.400000px;}
.fs6{font-size:144.000000px;}
.fs4{font-size:168.120000px;}
.fs2{font-size:191.880000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y22{bottom:1.800000px;}
.y59{bottom:3.690000px;}
.y21{bottom:41.610000px;}
.y23{bottom:43.410000px;}
.y58{bottom:45.318000px;}
.y5d{bottom:47.370000px;}
.y51{bottom:50.160000px;}
.y1a{bottom:51.150000px;}
.y20{bottom:72.210000px;}
.yd{bottom:72.808680px;}
.y57{bottom:77.718000px;}
.y5c{bottom:79.770000px;}
.y55{bottom:103.179000px;}
.y19{bottom:104.893380px;}
.y56{bottom:110.118000px;}
.y5b{bottom:112.170000px;}
.y41{bottom:112.875000px;}
.y40{bottom:125.475000px;}
.yc{bottom:130.420650px;}
.y54{bottom:135.579000px;}
.y3f{bottom:143.115000px;}
.y5a{bottom:144.570000px;}
.ya{bottom:147.437850px;}
.y18{bottom:148.080150px;}
.y25{bottom:148.170000px;}
.y26{bottom:159.870000px;}
.y4d{bottom:163.080000px;}
.y4f{bottom:163.386030px;}
.y30{bottom:167.400015px;}
.y49{bottom:174.600000px;}
.y24{bottom:180.570000px;}
.y4a{bottom:183.960000px;}
.y4c{bottom:191.160000px;}
.y48{bottom:191.520000px;}
.y4b{bottom:191.880000px;}
.y4e{bottom:199.380000px;}
.y3e{bottom:202.530000px;}
.y13{bottom:213.870000px;}
.y47{bottom:217.455000px;}
.y9{bottom:223.957200px;}
.y46{bottom:240.495000px;}
.y45{bottom:260.640000px;}
.y8{bottom:283.441260px;}
.y44{bottom:290.895000px;}
.y2f{bottom:308.175015px;}
.y2e{bottom:324.375015px;}
.yb{bottom:325.994340px;}
.y2d{bottom:331.575015px;}
.y7{bottom:343.027200px;}
.y43{bottom:345.975000px;}
.y2c{bottom:349.935015px;}
.y2b{bottom:362.535015px;}
.y2a{bottom:385.215015px;}
.y6{bottom:402.528540px;}
.y29{bottom:411.480015px;}
.y39{bottom:422.310000px;}
.y28{bottom:425.880015px;}
.y27{bottom:438.480015px;}
.y1f{bottom:450.570000px;}
.y38{bottom:465.510000px;}
.y5{bottom:470.551260px;}
.y50{bottom:508.440000px;}
.y37{bottom:508.710000px;}
.y4{bottom:530.142870px;}
.y36{bottom:551.910000px;}
.y42{bottom:570.435000px;}
.y12{bottom:573.960000px;}
.y1e{bottom:594.750000px;}
.y35{bottom:595.110000px;}
.y16{bottom:603.570000px;}
.y3{bottom:617.880000px;}
.y34{bottom:638.310000px;}
.y11{bottom:638.760000px;}
.y1d{bottom:663.510000px;}
.y33{bottom:684.186060px;}
.y2{bottom:703.326000px;}
.y10{bottom:703.560000px;}
.y53{bottom:706.170000px;}
.y1c{bottom:728.310000px;}
.y52{bottom:738.570000px;}
.y32{bottom:741.798030px;}
.yf{bottom:751.530000px;}
.y15{bottom:762.684060px;}
.y3b{bottom:767.910000px;}
.y3d{bottom:780.966030px;}
.y1{bottom:782.490000px;}
.y1b{bottom:793.110000px;}
.y31{bottom:799.410000px;}
.ye{bottom:808.140000px;}
.y3a{bottom:811.110000px;}
.y14{bottom:816.690000px;}
.y3c{bottom:816.960000px;}
.y17{bottom:828.570000px;}
.hf{height:25.650000px;}
.h2a{height:30.510000px;}
.h1f{height:46.033920px;}
.h26{height:50.062500px;}
.h11{height:54.175781px;}
.h12{height:56.531250px;}
.h14{height:58.197656px;}
.h13{height:61.326563px;}
.h17{height:63.829687px;}
.h27{height:65.081250px;}
.h1e{height:66.958594px;}
.h25{height:70.010320px;}
.hd{height:76.824000px;}
.h22{height:77.141602px;}
.h1d{height:77.596875px;}
.h23{height:80.100000px;}
.h21{height:81.852539px;}
.hb{height:84.535312px;}
.h15{height:93.867188px;}
.h24{height:100.125000px;}
.he{height:102.560040px;}
.hc{height:115.236000px;}
.h20{height:121.835452px;}
.h16{height:123.662109px;}
.h1c{height:125.031094px;}
.h9{height:127.911960px;}
.h19{height:134.542969px;}
.h18{height:137.046094px;}
.h28{height:145.125000px;}
.h1b{height:150.187500px;}
.ha{height:153.648000px;}
.h8{height:179.384040px;}
.h1a{height:200.124844px;}
.h6{height:204.735960px;}
.h7{height:204.784560px;}
.h5{height:230.472000px;}
.h4{height:265.941562px;}
.h29{height:272.592000px;}
.h3{height:892.500000px;}
.h2{height:892.830000px;}
.h0{height:893.160000px;}
.h10{height:893.160015px;}
.h1{height:893.250000px;}
.w4{width:154.350000px;}
.w2{width:480.060000px;}
.w1{width:1263.000000px;}
.w3{width:1263.239985px;}
.w0{width:1263.240000px;}
.x0{left:0.000000px;}
.xa{left:102.315750px;}
.x36{left:104.745750px;}
.x14{left:113.385750px;}
.x23{left:115.664985px;}
.x2e{left:127.245750px;}
.x11{left:132.825750px;}
.x4a{left:145.709250px;}
.x46{left:155.595750px;}
.x5{left:166.019550px;}
.x6{left:174.498810px;}
.x12{left:178.185750px;}
.x45{left:181.605900px;}
.x3{left:183.135750px;}
.x38{left:185.865000px;}
.x33{left:194.295000px;}
.x4{left:196.645200px;}
.x44{left:197.715750px;}
.x3d{left:199.095000px;}
.x17{left:201.779250px;}
.x24{left:206.639985px;}
.x3c{left:218.595000px;}
.x19{left:222.389250px;}
.x7{left:234.142800px;}
.x32{left:248.640000px;}
.x31{left:251.190000px;}
.x3e{left:258.225000px;}
.x25{left:277.349985px;}
.x1{left:301.665750px;}
.x34{left:324.165000px;}
.x47{left:353.586750px;}
.xe{left:361.605750px;}
.xf{left:370.057290px;}
.x15{left:391.486500px;}
.x26{left:398.939985px;}
.x16{left:407.325750px;}
.x30{left:417.590070px;}
.x10{left:425.145750px;}
.x37{left:442.597560px;}
.x2{left:448.119150px;}
.x2f{left:459.813750px;}
.x3f{left:461.925000px;}
.x1f{left:490.604985px;}
.x1e{left:503.774985px;}
.xb{left:507.315750px;}
.x21{left:517.334985px;}
.x48{left:523.227750px;}
.x20{left:530.429985px;}
.x1d{left:534.315750px;}
.x27{left:540.134985px;}
.x22{left:543.734985px;}
.x9{left:548.732850px;}
.x40{left:583.155000px;}
.x28{left:589.889985px;}
.x18{left:607.215750px;}
.x1a{left:629.715750px;}
.xd{left:687.315750px;}
.x29{left:709.289985px;}
.x35{left:735.690000px;}
.x3a{left:737.880000px;}
.x43{left:773.445000px;}
.x3b{left:774.825000px;}
.x2a{left:793.259985px;}
.x1b{left:794.865750px;}
.x13{left:803.955750px;}
.x1c{left:831.234750px;}
.x49{left:846.498750px;}
.xc{left:867.315750px;}
.x41{left:889.950000px;}
.x2b{left:925.514985px;}
.x42{left:934.890000px;}
.x2c{left:952.994985px;}
.x8{left:956.957550px;}
.x39{left:1033.350000px;}
.x2d{left:1085.894985px;}
@media print{
.v1{vertical-align:-42.285760pt;}
.v3{vertical-align:-38.346667pt;}
.v2{vertical-align:-31.968000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:139.872000pt;}
.ls20{letter-spacing:-4.088000pt;}
.ls21{letter-spacing:-4.013333pt;}
.ls33{letter-spacing:-1.215520pt;}
.ls26{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.125312pt;}
.ls27{letter-spacing:-0.115200pt;}
.ls28{letter-spacing:-0.102400pt;}
.ls29{letter-spacing:-0.089600pt;}
.ls1a{letter-spacing:-0.085440pt;}
.ls23{letter-spacing:-0.085280pt;}
.ls4c{letter-spacing:-0.076800pt;}
.ls24{letter-spacing:-0.068224pt;}
.lse{letter-spacing:-0.053280pt;}
.ls25{letter-spacing:-0.051200pt;}
.lsd{letter-spacing:-0.044832pt;}
.ls19{letter-spacing:-0.042720pt;}
.ls1c{letter-spacing:-0.042624pt;}
.ls4d{letter-spacing:-0.038400pt;}
.ls9{letter-spacing:-0.034112pt;}
.ls39{letter-spacing:-0.031968pt;}
.ls1d{letter-spacing:-0.025632pt;}
.ls4b{letter-spacing:-0.025600pt;}
.ls48{letter-spacing:-0.022187pt;}
.ls2c{letter-spacing:-0.021312pt;}
.ls13{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:-0.017056pt;}
.ls2b{letter-spacing:-0.012800pt;}
.ls4a{letter-spacing:-0.010656pt;}
.ls18{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.010656pt;}
.ls4{letter-spacing:0.010880pt;}
.ls15{letter-spacing:0.017088pt;}
.ls17{letter-spacing:0.019200pt;}
.ls38{letter-spacing:0.021312pt;}
.ls5{letter-spacing:0.023456pt;}
.ls14{letter-spacing:0.025600pt;}
.ls1b{letter-spacing:0.029824pt;}
.ls2a{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.042624pt;}
.lsf{letter-spacing:0.044736pt;}
.ls0{letter-spacing:0.049600pt;}
.ls8{letter-spacing:0.051168pt;}
.ls10{letter-spacing:0.053280pt;}
.ls16{letter-spacing:0.057600pt;}
.ls22{letter-spacing:0.068224pt;}
.ls6{letter-spacing:0.070368pt;}
.ls3{letter-spacing:0.072320pt;}
.ls2{letter-spacing:0.140800pt;}
.ls1{letter-spacing:0.188800pt;}
.lsc{letter-spacing:0.193664pt;}
.ls30{letter-spacing:0.251307pt;}
.ls41{letter-spacing:0.409600pt;}
.ls3c{letter-spacing:0.682240pt;}
.ls3f{letter-spacing:0.721067pt;}
.ls2f{letter-spacing:0.972160pt;}
.ls3d{letter-spacing:0.998400pt;}
.ls2e{letter-spacing:1.223467pt;}
.ls31{letter-spacing:1.443787pt;}
.ls49{letter-spacing:1.615680pt;}
.ls3e{letter-spacing:1.824853pt;}
.ls1e{letter-spacing:1.832000pt;}
.ls32{letter-spacing:1.864960pt;}
.ls1f{letter-spacing:1.992000pt;}
.ls3b{letter-spacing:2.012800pt;}
.ls37{letter-spacing:2.023680pt;}
.ls43{letter-spacing:2.088960pt;}
.ls40{letter-spacing:2.110720pt;}
.ls44{letter-spacing:2.133333pt;}
.ls46{letter-spacing:2.285227pt;}
.ls35{letter-spacing:2.373973pt;}
.ls45{letter-spacing:2.720000pt;}
.ls47{letter-spacing:2.773333pt;}
.ls36{letter-spacing:2.853333pt;}
.ls3a{letter-spacing:2.937600pt;}
.ls42{letter-spacing:3.413333pt;}
.ls34{letter-spacing:5.520027pt;}
.ws2{word-spacing:-47.807968pt;}
.ws1b{word-spacing:-35.840000pt;}
.ws4{word-spacing:-32.091264pt;}
.ws1{word-spacing:-31.897600pt;}
.ws3{word-spacing:-31.772288pt;}
.ws1e{word-spacing:-23.940288pt;}
.ws1c{word-spacing:-23.923200pt;}
.ws1d{word-spacing:-23.880480pt;}
.ws39{word-spacing:-18.636373pt;}
.ws3e{word-spacing:-17.244587pt;}
.ws0{word-spacing:-5.440000pt;}
.ws49{word-spacing:-1.257600pt;}
.ws44{word-spacing:-0.931200pt;}
.ws3d{word-spacing:-0.831168pt;}
.ws2c{word-spacing:-0.777600pt;}
.ws36{word-spacing:-0.716800pt;}
.ws25{word-spacing:-0.624000pt;}
.ws45{word-spacing:-0.614400pt;}
.ws17{word-spacing:-0.441600pt;}
.ws27{word-spacing:-0.307200pt;}
.ws2b{word-spacing:-0.288000pt;}
.ws47{word-spacing:-0.278400pt;}
.ws48{word-spacing:-0.259200pt;}
.ws2f{word-spacing:-0.255840pt;}
.ws35{word-spacing:-0.217600pt;}
.ws1a{word-spacing:-0.214400pt;}
.ws41{word-spacing:-0.140800pt;}
.ws6{word-spacing:-0.140736pt;}
.ws2e{word-spacing:-0.102336pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:0.025600pt;}
.ws5{word-spacing:0.046912pt;}
.ws33{word-spacing:0.064000pt;}
.ws46{word-spacing:0.134400pt;}
.wse{word-spacing:0.149440pt;}
.ws28{word-spacing:0.153792pt;}
.ws15{word-spacing:0.213120pt;}
.ws12{word-spacing:0.230400pt;}
.ws22{word-spacing:0.255744pt;}
.ws20{word-spacing:0.288000pt;}
.ws9{word-spacing:0.289952pt;}
.ws26{word-spacing:0.309024pt;}
.ws30{word-spacing:0.320000pt;}
.ws7{word-spacing:0.426400pt;}
.ws43{word-spacing:0.460800pt;}
.ws31{word-spacing:0.486400pt;}
.ws16{word-spacing:0.575424pt;}
.ws1f{word-spacing:0.614400pt;}
.wsf{word-spacing:0.639360pt;}
.ws23{word-spacing:0.640000pt;}
.ws11{word-spacing:0.665600pt;}
.ws19{word-spacing:0.672000pt;}
.ws34{word-spacing:0.691200pt;}
.ws32{word-spacing:0.716800pt;}
.ws40{word-spacing:0.735264pt;}
.ws2a{word-spacing:0.760416pt;}
.ws14{word-spacing:0.835072pt;}
.ws3a{word-spacing:0.841824pt;}
.ws2d{word-spacing:0.849984pt;}
.ws38{word-spacing:0.873792pt;}
.wsd{word-spacing:0.938080pt;}
.ws3b{word-spacing:1.076256pt;}
.ws29{word-spacing:1.093632pt;}
.ws37{word-spacing:1.172160pt;}
.ws3f{word-spacing:1.204128pt;}
.ws3c{word-spacing:1.225440pt;}
.ws18{word-spacing:1.278720pt;}
.ws24{word-spacing:1.280000pt;}
.ws21{word-spacing:1.305600pt;}
.wsc{word-spacing:1.569152pt;}
.wsa{word-spacing:1.876160pt;}
.wsb{word-spacing:1.893216pt;}
.ws13{word-spacing:153.561600pt;}
.ws42{word-spacing:210.067200pt;}
._1c{margin-left:-59.440400pt;}
._1b{margin-left:-12.783680pt;}
._14{margin-left:-10.124800pt;}
._15{margin-left:-9.075200pt;}
._17{margin-left:-8.012160pt;}
._18{margin-left:-6.926400pt;}
._16{margin-left:-4.671040pt;}
._13{margin-left:-3.070080pt;}
._1{margin-left:-1.296320pt;}
._0{width:1.569088pt;}
._a{width:4.919467pt;}
._1a{width:6.864640pt;}
._e{width:8.736000pt;}
._1d{width:17.260800pt;}
._d{width:18.240000pt;}
._19{width:21.109760pt;}
._2{width:35.181952pt;}
._10{width:36.266667pt;}
._11{width:37.493163pt;}
._9{width:51.498667pt;}
._4{width:54.018133pt;}
._f{width:55.308800pt;}
._c{width:58.616533pt;}
._12{width:59.973333pt;}
._7{width:61.175467pt;}
._8{width:62.720000pt;}
._6{width:63.771733pt;}
._5{width:65.544533pt;}
._3{width:66.583467pt;}
._b{width:67.643733pt;}
._1e{width:258.901333pt;}
.fs1a{font-size:37.866667pt;}
.fs23{font-size:42.666667pt;}
.fsf{font-size:44.800000pt;}
.fsb{font-size:49.066667pt;}
.fse{font-size:49.600000pt;}
.fsc{font-size:51.200000pt;}
.fsd{font-size:52.266667pt;}
.fs16{font-size:54.400000pt;}
.fs24{font-size:55.466667pt;}
.fs1b{font-size:57.066667pt;}
.fs1c{font-size:61.440000pt;}
.fs9{font-size:64.000000pt;}
.fs19{font-size:66.133333pt;}
.fs20{font-size:68.266667pt;}
.fs1f{font-size:69.866667pt;}
.fs1e{font-size:74.133333pt;}
.fs7{font-size:74.560000pt;}
.fs10{font-size:80.000000pt;}
.fs21{font-size:85.333333pt;}
.fsa{font-size:85.440000pt;}
.fs22{font-size:93.440533pt;}
.fs13{font-size:94.933333pt;}
.fs8{font-size:96.000000pt;}
.fs12{font-size:96.533333pt;}
.fs14{font-size:97.067200pt;}
.fs11{font-size:101.866667pt;}
.fs5{font-size:106.560000pt;}
.fs1d{font-size:110.400533pt;}
.fs15{font-size:112.000000pt;}
.fs3{font-size:113.920000pt;}
.fs18{font-size:114.666667pt;}
.fs17{font-size:116.800000pt;}
.fs6{font-size:128.000000pt;}
.fs4{font-size:149.440000pt;}
.fs2{font-size:170.560000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:1.600000pt;}
.y59{bottom:3.280000pt;}
.y21{bottom:36.986667pt;}
.y23{bottom:38.586667pt;}
.y58{bottom:40.282667pt;}
.y5d{bottom:42.106667pt;}
.y51{bottom:44.586667pt;}
.y1a{bottom:45.466667pt;}
.y20{bottom:64.186667pt;}
.yd{bottom:64.718827pt;}
.y57{bottom:69.082667pt;}
.y5c{bottom:70.906667pt;}
.y55{bottom:91.714667pt;}
.y19{bottom:93.238560pt;}
.y56{bottom:97.882667pt;}
.y5b{bottom:99.706667pt;}
.y41{bottom:100.333333pt;}
.y40{bottom:111.533333pt;}
.yc{bottom:115.929467pt;}
.y54{bottom:120.514667pt;}
.y3f{bottom:127.213333pt;}
.y5a{bottom:128.506667pt;}
.ya{bottom:131.055867pt;}
.y18{bottom:131.626800pt;}
.y25{bottom:131.706667pt;}
.y26{bottom:142.106667pt;}
.y4d{bottom:144.960000pt;}
.y4f{bottom:145.232027pt;}
.y30{bottom:148.800013pt;}
.y49{bottom:155.200000pt;}
.y24{bottom:160.506667pt;}
.y4a{bottom:163.520000pt;}
.y4c{bottom:169.920000pt;}
.y48{bottom:170.240000pt;}
.y4b{bottom:170.560000pt;}
.y4e{bottom:177.226667pt;}
.y3e{bottom:180.026667pt;}
.y13{bottom:190.106667pt;}
.y47{bottom:193.293333pt;}
.y9{bottom:199.073067pt;}
.y46{bottom:213.773333pt;}
.y45{bottom:231.680000pt;}
.y8{bottom:251.947787pt;}
.y44{bottom:258.573333pt;}
.y2f{bottom:273.933347pt;}
.y2e{bottom:288.333347pt;}
.yb{bottom:289.772747pt;}
.y2d{bottom:294.733347pt;}
.y7{bottom:304.913067pt;}
.y43{bottom:307.533333pt;}
.y2c{bottom:311.053347pt;}
.y2b{bottom:322.253347pt;}
.y2a{bottom:342.413347pt;}
.y6{bottom:357.803147pt;}
.y29{bottom:365.760013pt;}
.y39{bottom:375.386667pt;}
.y28{bottom:378.560013pt;}
.y27{bottom:389.760013pt;}
.y1f{bottom:400.506667pt;}
.y38{bottom:413.786667pt;}
.y5{bottom:418.267787pt;}
.y50{bottom:451.946667pt;}
.y37{bottom:452.186667pt;}
.y4{bottom:471.238107pt;}
.y36{bottom:490.586667pt;}
.y42{bottom:507.053333pt;}
.y12{bottom:510.186667pt;}
.y1e{bottom:528.666667pt;}
.y35{bottom:528.986667pt;}
.y16{bottom:536.506667pt;}
.y3{bottom:549.226667pt;}
.y34{bottom:567.386667pt;}
.y11{bottom:567.786667pt;}
.y1d{bottom:589.786667pt;}
.y33{bottom:608.165387pt;}
.y2{bottom:625.178667pt;}
.y10{bottom:625.386667pt;}
.y53{bottom:627.706667pt;}
.y1c{bottom:647.386667pt;}
.y52{bottom:656.506667pt;}
.y32{bottom:659.376027pt;}
.yf{bottom:668.026667pt;}
.y15{bottom:677.941387pt;}
.y3b{bottom:682.586667pt;}
.y3d{bottom:694.192027pt;}
.y1{bottom:695.546667pt;}
.y1b{bottom:704.986667pt;}
.y31{bottom:710.586667pt;}
.ye{bottom:718.346667pt;}
.y3a{bottom:720.986667pt;}
.y14{bottom:725.946667pt;}
.y3c{bottom:726.186667pt;}
.y17{bottom:736.506667pt;}
.hf{height:22.800000pt;}
.h2a{height:27.120000pt;}
.h1f{height:40.919040pt;}
.h26{height:44.500000pt;}
.h11{height:48.156250pt;}
.h12{height:50.250000pt;}
.h14{height:51.731250pt;}
.h13{height:54.512500pt;}
.h17{height:56.737500pt;}
.h27{height:57.850000pt;}
.h1e{height:59.518750pt;}
.h25{height:62.231395pt;}
.hd{height:68.288000pt;}
.h22{height:68.570312pt;}
.h1d{height:68.975000pt;}
.h23{height:71.200000pt;}
.h21{height:72.757812pt;}
.hb{height:75.142500pt;}
.h15{height:83.437500pt;}
.h24{height:89.000000pt;}
.he{height:91.164480pt;}
.hc{height:102.432000pt;}
.h20{height:108.298179pt;}
.h16{height:109.921875pt;}
.h1c{height:111.138750pt;}
.h9{height:113.699520pt;}
.h19{height:119.593750pt;}
.h18{height:121.818750pt;}
.h28{height:129.000000pt;}
.h1b{height:133.500000pt;}
.ha{height:136.576000pt;}
.h8{height:159.452480pt;}
.h1a{height:177.888750pt;}
.h6{height:181.987520pt;}
.h7{height:182.030720pt;}
.h5{height:204.864000pt;}
.h4{height:236.392500pt;}
.h29{height:242.304000pt;}
.h3{height:793.333333pt;}
.h2{height:793.626667pt;}
.h0{height:793.920000pt;}
.h10{height:793.920013pt;}
.h1{height:794.000000pt;}
.w4{width:137.200000pt;}
.w2{width:426.720000pt;}
.w1{width:1122.666667pt;}
.w3{width:1122.879987pt;}
.w0{width:1122.880000pt;}
.x0{left:0.000000pt;}
.xa{left:90.947333pt;}
.x36{left:93.107333pt;}
.x14{left:100.787333pt;}
.x23{left:102.813320pt;}
.x2e{left:113.107333pt;}
.x11{left:118.067333pt;}
.x4a{left:129.519333pt;}
.x46{left:138.307333pt;}
.x5{left:147.572933pt;}
.x6{left:155.110053pt;}
.x12{left:158.387333pt;}
.x45{left:161.427467pt;}
.x3{left:162.787333pt;}
.x38{left:165.213333pt;}
.x33{left:172.706667pt;}
.x4{left:174.795733pt;}
.x44{left:175.747333pt;}
.x3d{left:176.973333pt;}
.x17{left:179.359333pt;}
.x24{left:183.679987pt;}
.x3c{left:194.306667pt;}
.x19{left:197.679333pt;}
.x7{left:208.126933pt;}
.x32{left:221.013333pt;}
.x31{left:223.280000pt;}
.x3e{left:229.533333pt;}
.x25{left:246.533320pt;}
.x1{left:268.147333pt;}
.x34{left:288.146667pt;}
.x47{left:314.299333pt;}
.xe{left:321.427333pt;}
.xf{left:328.939813pt;}
.x15{left:347.988000pt;}
.x26{left:354.613320pt;}
.x16{left:362.067333pt;}
.x30{left:371.191173pt;}
.x10{left:377.907333pt;}
.x37{left:393.420053pt;}
.x2{left:398.328133pt;}
.x2f{left:408.723333pt;}
.x3f{left:410.600000pt;}
.x1f{left:436.093320pt;}
.x1e{left:447.799987pt;}
.xb{left:450.947333pt;}
.x21{left:459.853320pt;}
.x48{left:465.091333pt;}
.x20{left:471.493320pt;}
.x1d{left:474.947333pt;}
.x27{left:480.119987pt;}
.x22{left:483.319987pt;}
.x9{left:487.762533pt;}
.x40{left:518.360000pt;}
.x28{left:524.346653pt;}
.x18{left:539.747333pt;}
.x1a{left:559.747333pt;}
.xd{left:610.947333pt;}
.x29{left:630.479987pt;}
.x35{left:653.946667pt;}
.x3a{left:655.893333pt;}
.x43{left:687.506667pt;}
.x3b{left:688.733333pt;}
.x2a{left:705.119987pt;}
.x1b{left:706.547333pt;}
.x13{left:714.627333pt;}
.x1c{left:738.875333pt;}
.x49{left:752.443333pt;}
.xc{left:770.947333pt;}
.x41{left:791.066667pt;}
.x2b{left:822.679987pt;}
.x42{left:831.013333pt;}
.x2c{left:847.106653pt;}
.x8{left:850.628933pt;}
.x39{left:918.533333pt;}
.x2d{left:965.239987pt;}
}




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