
    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_afc389654fdb4dc96a751431.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7066bee93269ccdc3c00aa99.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921875;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_86b3a52f60f35e6ff46d2708.woff')format("woff");}.ff3{font-family:ff3;line-height:0.710938;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_1cf8b004342d1d11e0d481fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.710938;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_f2edc4c3a78b7c3b53fb2cee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920898;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_c5aef1ee0efa698469b79a04.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920898;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_3671f3f104d40a636e29b2c0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.689941;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_889e40404cd63d7dfa3e2953.woff')format("woff");}.ff8{font-family:ff8;line-height:0.699707;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_75d8a7aa6633e71fd342d475.woff')format("woff");}.ff9{font-family:ff9;line-height:0.920898;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_b9db66361e052e7d37342ecd.woff')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_b5df45dd710974c37ec910b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_7f97da77a9a39e19aa3c498d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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_b59570f1d446075664d71d83.woff')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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_6cbf8aa5eb4c3bfe9b548e35.woff')format("woff");}.ffe{font-family:ffe;line-height:0.710938;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_523c3693af2b342ab780d48c.woff')format("woff");}.fff{font-family:fff;line-height:1.111816;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_5747a40846e9c4d7eb829460.woff')format("woff");}.ff10{font-family:ff10;line-height:0.920898;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_37b5eeaed84e35f4dbeb45ef.woff')format("woff");}.ff11{font-family:ff11;line-height:0.713867;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_41e0145c2ca202d0d9ef8455.woff')format("woff");}.ff12{font-family:ff12;line-height:0.919922;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_6f98ce6ed64ccadfcdd476fa.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_30c94a8908c973a038a0dd1a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7dd1abfbb77b7d0807c5a1a9.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_b706ffe36df1d78c4faf8c51.woff')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_246cb638f1b83963ea3fa8fd.woff')format("woff");}.ff17{font-family:ff17;line-height:0.979980;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:ff18;src:url('chunks/assets/font_005be39cdb3edb615567f7fd.woff')format("woff");}.ff18{font-family:ff18;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.183504px;}
.ls30{letter-spacing:-0.547200px;}
.ls10{letter-spacing:-0.415872px;}
.ls2a{letter-spacing:-0.388512px;}
.ls33{letter-spacing:-0.372096px;}
.ls39{letter-spacing:-0.362880px;}
.ls11{letter-spacing:-0.361152px;}
.ls2f{letter-spacing:-0.350208px;}
.ls31{letter-spacing:-0.333792px;}
.ls38{letter-spacing:-0.308448px;}
.ls2c{letter-spacing:-0.306432px;}
.ls32{letter-spacing:-0.300960px;}
.ls13{letter-spacing:-0.296352px;}
.ls34{letter-spacing:-0.284544px;}
.ls35{letter-spacing:-0.284256px;}
.ls7d{letter-spacing:-0.264960px;}
.ls17{letter-spacing:-0.247968px;}
.ls14{letter-spacing:-0.241920px;}
.ls36{letter-spacing:-0.235872px;}
.ls37{letter-spacing:-0.223776px;}
.ls76{letter-spacing:-0.211968px;}
.ls67{letter-spacing:-0.205344px;}
.ls2d{letter-spacing:-0.196992px;}
.ls4a{letter-spacing:-0.185472px;}
.ls21{letter-spacing:-0.178848px;}
.ls56{letter-spacing:-0.165600px;}
.ls60{letter-spacing:-0.158976px;}
.ls49{letter-spacing:-0.152352px;}
.ls57{letter-spacing:-0.145728px;}
.ls12{letter-spacing:-0.145152px;}
.ls48{letter-spacing:-0.139104px;}
.ls3f{letter-spacing:-0.132480px;}
.ls46{letter-spacing:-0.125856px;}
.ls2b{letter-spacing:-0.120384px;}
.ls1f{letter-spacing:-0.119232px;}
.ls25{letter-spacing:-0.112608px;}
.ls27{letter-spacing:-0.105984px;}
.ls28{letter-spacing:-0.099360px;}
.ls15{letter-spacing:-0.096768px;}
.ls24{letter-spacing:-0.092736px;}
.ls20{letter-spacing:-0.086112px;}
.ls47{letter-spacing:-0.079488px;}
.ls40{letter-spacing:-0.072864px;}
.ls26{letter-spacing:-0.059616px;}
.ls3e{letter-spacing:-0.046368px;}
.ls22{letter-spacing:-0.039744px;}
.ls23{letter-spacing:-0.033120px;}
.ls1d{letter-spacing:-0.014400px;}
.ls1b{letter-spacing:-0.014118px;}
.lsf{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.346896px;}
.ls69{letter-spacing:0.617760px;}
.ls68{letter-spacing:0.619200px;}
.ls66{letter-spacing:0.672480px;}
.ls2e{letter-spacing:0.761788px;}
.ls72{letter-spacing:1.110494px;}
.ls73{letter-spacing:1.136471px;}
.ls1e{letter-spacing:1.149459px;}
.ls3c{letter-spacing:1.155953px;}
.ls29{letter-spacing:1.168941px;}
.ls41{letter-spacing:1.175435px;}
.ls58{letter-spacing:1.177694px;}
.ls6e{letter-spacing:1.177835px;}
.ls45{letter-spacing:1.181929px;}
.ls44{letter-spacing:1.182918px;}
.ls5b{letter-spacing:1.183059px;}
.ls4e{letter-spacing:1.184471px;}
.ls5d{letter-spacing:1.188424px;}
.ls4c{letter-spacing:1.194918px;}
.ls4f{letter-spacing:1.196753px;}
.ls5a{letter-spacing:1.197176px;}
.ls62{letter-spacing:1.201412px;}
.ls5f{letter-spacing:1.207059px;}
.ls4b{letter-spacing:1.207341px;}
.ls63{letter-spacing:1.207906px;}
.ls3a{letter-spacing:1.214400px;}
.ls50{letter-spacing:1.233882px;}
.ls51{letter-spacing:1.240376px;}
.ls71{letter-spacing:1.259859px;}
.ls59{letter-spacing:1.262541px;}
.ls5e{letter-spacing:1.262682px;}
.ls6b{letter-spacing:1.308960px;}
.lsb{letter-spacing:1.404706px;}
.ls1c{letter-spacing:1.411765px;}
.lsc{letter-spacing:1.418824px;}
.ls7c{letter-spacing:1.703376px;}
.ls6{letter-spacing:1.746353px;}
.lsa{letter-spacing:1.842353px;}
.ls8{letter-spacing:1.850824px;}
.ls1a{letter-spacing:1.858730px;}
.ls18{letter-spacing:1.866918px;}
.ls43{letter-spacing:1.877760px;}
.ls7{letter-spacing:1.888377px;}
.ls9{letter-spacing:2.018824px;}
.ls19{letter-spacing:2.022494px;}
.ls42{letter-spacing:2.156112px;}
.ls3d{letter-spacing:3.402720px;}
.ls74{letter-spacing:3.411360px;}
.ls6a{letter-spacing:3.523680px;}
.ls79{letter-spacing:3.588480px;}
.ls4d{letter-spacing:3.781440px;}
.lsd{letter-spacing:4.083840px;}
.ls6d{letter-spacing:4.261104px;}
.lse{letter-spacing:4.475232px;}
.ls65{letter-spacing:5.241600px;}
.ls6f{letter-spacing:5.548320px;}
.ls61{letter-spacing:5.688000px;}
.ls3{letter-spacing:7.443072px;}
.ls1{letter-spacing:7.444800px;}
.ls4{letter-spacing:7.460928px;}
.ls2{letter-spacing:7.461216px;}
.ls5{letter-spacing:7.532784px;}
.ls0{letter-spacing:7.538112px;}
.ls53{letter-spacing:8.909280px;}
.ls52{letter-spacing:11.381760px;}
.ls78{letter-spacing:11.514240px;}
.ls77{letter-spacing:12.172608px;}
.ls7a{letter-spacing:12.905136px;}
.ls7b{letter-spacing:12.905280px;}
.ls5c{letter-spacing:13.999680px;}
.ls64{letter-spacing:14.990976px;}
.ls6c{letter-spacing:18.396000px;}
.ls70{letter-spacing:19.325520px;}
.ls3b{letter-spacing:21.367584px;}
.ls54{letter-spacing:24.877440px;}
.ls55{letter-spacing:49.978800px;}
.ls75{letter-spacing:179.138448px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-40.393152px;}
.ws8{word-spacing:-24.605649px;}
.ws23{word-spacing:-19.294024px;}
.ws24{word-spacing:-19.287530px;}
.ws19{word-spacing:-19.268047px;}
.ws20{word-spacing:-19.248565px;}
.ws1e{word-spacing:-19.235577px;}
.ws26{word-spacing:-19.229083px;}
.ws1b{word-spacing:-19.209600px;}
.wsa{word-spacing:-19.203106px;}
.ws2a{word-spacing:-19.190118px;}
.wsc{word-spacing:-18.414720px;}
.ws27{word-spacing:-18.381600px;}
.ws31{word-spacing:-18.374976px;}
.ws2d{word-spacing:-18.368352px;}
.ws1c{word-spacing:-18.355104px;}
.ws21{word-spacing:-18.341856px;}
.ws2e{word-spacing:-18.335232px;}
.wsb{word-spacing:-18.328608px;}
.wsf{word-spacing:-18.321984px;}
.ws1a{word-spacing:-18.315360px;}
.wsd{word-spacing:-18.302112px;}
.wse{word-spacing:-18.295488px;}
.ws2c{word-spacing:-18.288864px;}
.ws1d{word-spacing:-18.282240px;}
.ws22{word-spacing:-18.275616px;}
.ws30{word-spacing:-18.268992px;}
.ws2b{word-spacing:-18.262368px;}
.ws28{word-spacing:-18.255744px;}
.ws10{word-spacing:-18.235872px;}
.ws29{word-spacing:-18.229248px;}
.ws2f{word-spacing:-18.209376px;}
.ws1f{word-spacing:-18.053647px;}
.ws4{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.716672px;}
.ws15{word-spacing:-16.589664px;}
.ws16{word-spacing:-16.577568px;}
.ws3{word-spacing:-16.571520px;}
.ws7{word-spacing:-16.565472px;}
.ws17{word-spacing:-16.450560px;}
.ws0{word-spacing:-15.212160px;}
.ws13{word-spacing:-15.015168px;}
.ws14{word-spacing:-14.911200px;}
.ws12{word-spacing:-14.905728px;}
.ws1{word-spacing:-14.851008px;}
.ws11{word-spacing:-14.823648px;}
.ws6{word-spacing:-13.557456px;}
.ws25{word-spacing:-0.066240px;}
.ws18{word-spacing:0.000000px;}
.ws9{word-spacing:86.161416px;}
._1{margin-left:-6.303024px;}
._9{margin-left:-5.079024px;}
._8{margin-left:-3.954240px;}
._11{margin-left:-2.926869px;}
._4{margin-left:-1.868753px;}
._0{width:1.039680px;}
._d{width:2.053440px;}
._b{width:3.378240px;}
._c{width:5.034240px;}
._1b{width:6.094080px;}
._5{width:7.220160px;}
._19{width:8.275433px;}
._16{width:9.883793px;}
._6{width:10.995840px;}
._7{width:12.121920px;}
._a{width:13.446720px;}
._17{width:14.598144px;}
._1e{width:15.954048px;}
._1a{width:17.089920px;}
._1f{width:19.342080px;}
._15{width:20.835360px;}
._14{width:22.154400px;}
._18{width:24.014880px;}
._13{width:25.369920px;}
._e{width:26.496000px;}
._20{width:28.042848px;}
._1d{width:29.145600px;}
._1c{width:30.205440px;}
._2d{width:34.650864px;}
._2e{width:35.768448px;}
._12{width:37.359360px;}
._10{width:43.239744px;}
._f{width:44.249328px;}
._2f{width:48.651984px;}
._26{width:49.680000px;}
._21{width:94.067712px;}
._27{width:103.003200px;}
._28{width:104.080896px;}
._30{width:113.535360px;}
._24{width:126.717120px;}
._25{width:127.804176px;}
._2{width:140.665104px;}
._2b{width:157.512240px;}
._2a{width:158.648976px;}
._2c{width:160.499520px;}
._3{width:195.585120px;}
._29{width:196.865280px;}
._23{width:210.974400px;}
._22{width:276.684480px;}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(5,44,76);}
.fc8{color:rgb(4,44,74);}
.fc3{color:rgb(249,165,44);}
.fc2{color:rgb(14,177,232);}
.fc1{color:rgb(5,44,74);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(237,88,161);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:40.941173px;}
.fs8{font-size:44.640000px;}
.fs5{font-size:47.520000px;}
.fse{font-size:53.647056px;}
.fs1{font-size:54.720000px;}
.fs4{font-size:59.294117px;}
.fs3{font-size:60.480000px;}
.fsd{font-size:63.360000px;}
.fsb{font-size:64.941178px;}
.fsc{font-size:66.240000px;}
.fs9{font-size:70.588238px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:81.882360px;}
.fs7{font-size:83.520000px;}
.fs2{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.920000px;}
.y2{bottom:5.040000px;}
.y6{bottom:5.400000px;}
.y37{bottom:5.580000px;}
.y36{bottom:25.380000px;}
.y5{bottom:54.000000px;}
.y4{bottom:59.760000px;}
.y3b{bottom:75.000000px;}
.y3a{bottom:79.920000px;}
.y34{bottom:109.800000px;}
.y82{bottom:111.960000px;}
.y33{bottom:125.640000px;}
.yc4{bottom:129.240000px;}
.y66{bottom:134.640000px;}
.y81{bottom:137.520000px;}
.y32{bottom:141.480000px;}
.y31{bottom:141.702480px;}
.yc3{bottom:151.920000px;}
.y96{bottom:156.240000px;}
.y30{bottom:157.542480px;}
.y65{bottom:160.560000px;}
.y80{bottom:163.440000px;}
.y2f{bottom:173.520000px;}
.yc2{bottom:174.240000px;}
.y95{bottom:178.560000px;}
.y64{bottom:186.480000px;}
.y7f{bottom:189.000000px;}
.y2e{bottom:191.160000px;}
.yc1{bottom:196.920000px;}
.y94{bottom:201.240000px;}
.y2d{bottom:208.800000px;}
.y63{bottom:212.040000px;}
.y7e{bottom:214.920000px;}
.yc0{bottom:219.240000px;}
.y93{bottom:223.560000px;}
.y62{bottom:237.960000px;}
.y7d{bottom:240.840000px;}
.ybf{bottom:241.920000px;}
.y92{bottom:246.240000px;}
.y2c{bottom:249.480000px;}
.y61{bottom:263.520000px;}
.ybe{bottom:264.240000px;}
.y7c{bottom:266.400000px;}
.y91{bottom:268.560000px;}
.y2b{bottom:275.040000px;}
.y2a{bottom:275.290560px;}
.ybd{bottom:286.920000px;}
.y60{bottom:289.440000px;}
.y86{bottom:289.690560px;}
.y90{bottom:291.240000px;}
.y7b{bottom:292.320000px;}
.y29{bottom:300.960000px;}
.ybc{bottom:309.240000px;}
.y5f{bottom:315.360000px;}
.y8f{bottom:315.610560px;}
.y7a{bottom:317.880000px;}
.y28{bottom:326.520000px;}
.ybb{bottom:331.920000px;}
.y5e{bottom:340.920000px;}
.y8e{bottom:341.170560px;}
.y79{bottom:343.800000px;}
.y27{bottom:352.440000px;}
.yba{bottom:354.240000px;}
.y5d{bottom:366.840000px;}
.y8d{bottom:367.090560px;}
.y78{bottom:369.720000px;}
.yb9{bottom:376.920000px;}
.y26{bottom:378.360000px;}
.y5c{bottom:392.400000px;}
.y77{bottom:395.280000px;}
.yb8{bottom:399.240000px;}
.y25{bottom:403.920000px;}
.y5b{bottom:418.320000px;}
.y76{bottom:421.200000px;}
.yb7{bottom:421.920000px;}
.y24{bottom:429.840000px;}
.y5a{bottom:443.880000px;}
.yb6{bottom:444.240000px;}
.y75{bottom:446.760000px;}
.y23{bottom:455.400000px;}
.yb5{bottom:466.920000px;}
.y59{bottom:469.800000px;}
.y8a{bottom:470.050560px;}
.y74{bottom:472.680000px;}
.y22{bottom:481.320000px;}
.yb4{bottom:489.240000px;}
.y58{bottom:495.720000px;}
.y73{bottom:498.600000px;}
.y21{bottom:507.240000px;}
.yb3{bottom:511.920000px;}
.y57{bottom:521.280000px;}
.y72{bottom:524.160000px;}
.y20{bottom:532.800000px;}
.yb2{bottom:534.240000px;}
.y56{bottom:547.200000px;}
.y71{bottom:550.330560px;}
.yb1{bottom:556.920000px;}
.y1f{bottom:558.720000px;}
.y55{bottom:572.760000px;}
.y70{bottom:575.640000px;}
.yb0{bottom:579.240000px;}
.y1e{bottom:584.280000px;}
.y54{bottom:598.680000px;}
.y89{bottom:598.930560px;}
.y6f{bottom:601.560000px;}
.yaf{bottom:601.920000px;}
.y1d{bottom:610.200000px;}
.yae{bottom:624.240000px;}
.y53{bottom:624.600000px;}
.y85{bottom:624.850596px;}
.y6e{bottom:627.480000px;}
.y1c{bottom:636.120000px;}
.yad{bottom:646.920000px;}
.y52{bottom:650.160000px;}
.y8c{bottom:650.410596px;}
.y6d{bottom:653.040000px;}
.y1b{bottom:661.930596px;}
.yac{bottom:669.240000px;}
.y84{bottom:676.080000px;}
.y51{bottom:676.330596px;}
.y6c{bottom:678.960000px;}
.y1a{bottom:687.240000px;}
.yab{bottom:691.920000px;}
.y83{bottom:701.640000px;}
.y50{bottom:701.890596px;}
.y6b{bottom:704.520000px;}
.y19{bottom:712.440000px;}
.yaa{bottom:714.240000px;}
.y4f{bottom:727.560000px;}
.y6a{bottom:730.440000px;}
.ya9{bottom:736.920000px;}
.y18{bottom:737.280000px;}
.y4e{bottom:753.480000px;}
.y4d{bottom:753.730596px;}
.y69{bottom:756.360000px;}
.ya8{bottom:759.240000px;}
.y17{bottom:763.920000px;}
.y4c{bottom:779.040000px;}
.ya7{bottom:781.920000px;}
.y68{bottom:782.170596px;}
.y16{bottom:792.000000px;}
.y15{bottom:792.264708px;}
.ya6{bottom:804.240000px;}
.y4b{bottom:804.960000px;}
.y87{bottom:805.210596px;}
.y67{bottom:806.400000px;}
.yc5{bottom:825.120000px;}
.ya5{bottom:826.920000px;}
.y4a{bottom:830.520000px;}
.y8b{bottom:830.770596px;}
.y14{bottom:836.280000px;}
.ya4{bottom:849.240000px;}
.y49{bottom:856.440000px;}
.y13{bottom:858.240000px;}
.ya3{bottom:871.920000px;}
.y12{bottom:881.640000px;}
.y48{bottom:882.360000px;}
.ya2{bottom:894.240000px;}
.y11{bottom:903.892932px;}
.y47{bottom:907.920000px;}
.ya1{bottom:916.920000px;}
.y46{bottom:933.840000px;}
.y10{bottom:936.652943px;}
.ya0{bottom:939.240000px;}
.y45{bottom:959.400000px;}
.y9f{bottom:961.920000px;}
.yf{bottom:966.960000px;}
.y9e{bottom:984.240000px;}
.y44{bottom:985.320000px;}
.ye{bottom:989.932943px;}
.y9d{bottom:1006.920000px;}
.y43{bottom:1011.240000px;}
.y35{bottom:1012.500000px;}
.yd{bottom:1017.000000px;}
.y9c{bottom:1029.240000px;}
.yc{bottom:1036.440000px;}
.y42{bottom:1036.800000px;}
.y88{bottom:1037.050596px;}
.y9b{bottom:1051.920000px;}
.yb{bottom:1056.240000px;}
.y41{bottom:1062.720000px;}
.y9a{bottom:1074.240000px;}
.y9{bottom:1076.760000px;}
.ya{bottom:1076.996484px;}
.y40{bottom:1088.280000px;}
.y99{bottom:1096.920000px;}
.y8{bottom:1101.240000px;}
.y3f{bottom:1114.200000px;}
.y98{bottom:1119.240000px;}
.y7{bottom:1132.200000px;}
.y3e{bottom:1140.120000px;}
.y3d{bottom:1140.370596px;}
.y97{bottom:1141.920000px;}
.y3{bottom:1172.520000px;}
.y39{bottom:1175.400000px;}
.y1{bottom:1188.000000px;}
.y38{bottom:1195.920000px;}
.h5{height:19.500000px;}
.h2{height:22.500000px;}
.hd{height:32.832422px;}
.hc{height:33.480000px;}
.h14{height:37.118105px;}
.h4{height:37.860469px;}
.h15{height:40.500000px;}
.h8{height:40.909466px;}
.h9{height:41.786719px;}
.h13{height:45.230625px;}
.h17{height:45.766406px;}
.h3{height:47.988281px;}
.h16{height:49.680000px;}
.h7{height:49.746094px;}
.h10{height:51.187500px;}
.he{height:52.470496px;}
.hf{height:54.000000px;}
.hb{height:55.666406px;}
.ha{height:56.573994px;}
.h11{height:57.267464px;}
.h12{height:58.412813px;}
.h6{height:94.185000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:15.000000px;}
.w3{width:184.500000px;}
.w2{width:186.000000px;}
.w5{width:255.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:40.847760px;}
.x13{left:50.076360px;}
.x3{left:91.574880px;}
.x1{left:169.500000px;}
.x5{left:184.935000px;}
.x17{left:196.920036px;}
.xb{left:212.296140px;}
.x18{left:223.920036px;}
.x16{left:231.311628px;}
.x9{left:235.799928px;}
.xc{left:260.409672px;}
.xf{left:263.856456px;}
.x6{left:287.926380px;}
.xd{left:326.750616px;}
.x11{left:327.929472px;}
.x2{left:354.000000px;}
.x15{left:357.891732px;}
.x10{left:385.920000px;}
.xa{left:446.069880px;}
.x12{left:490.500000px;}
.x8{left:519.846480px;}
.x4{left:537.000000px;}
.xe{left:618.489000px;}
.x7{left:708.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.496448pt;}
.ls30{letter-spacing:-0.486400pt;}
.ls10{letter-spacing:-0.369664pt;}
.ls2a{letter-spacing:-0.345344pt;}
.ls33{letter-spacing:-0.330752pt;}
.ls39{letter-spacing:-0.322560pt;}
.ls11{letter-spacing:-0.321024pt;}
.ls2f{letter-spacing:-0.311296pt;}
.ls31{letter-spacing:-0.296704pt;}
.ls38{letter-spacing:-0.274176pt;}
.ls2c{letter-spacing:-0.272384pt;}
.ls32{letter-spacing:-0.267520pt;}
.ls13{letter-spacing:-0.263424pt;}
.ls34{letter-spacing:-0.252928pt;}
.ls35{letter-spacing:-0.252672pt;}
.ls7d{letter-spacing:-0.235520pt;}
.ls17{letter-spacing:-0.220416pt;}
.ls14{letter-spacing:-0.215040pt;}
.ls36{letter-spacing:-0.209664pt;}
.ls37{letter-spacing:-0.198912pt;}
.ls76{letter-spacing:-0.188416pt;}
.ls67{letter-spacing:-0.182528pt;}
.ls2d{letter-spacing:-0.175104pt;}
.ls4a{letter-spacing:-0.164864pt;}
.ls21{letter-spacing:-0.158976pt;}
.ls56{letter-spacing:-0.147200pt;}
.ls60{letter-spacing:-0.141312pt;}
.ls49{letter-spacing:-0.135424pt;}
.ls57{letter-spacing:-0.129536pt;}
.ls12{letter-spacing:-0.129024pt;}
.ls48{letter-spacing:-0.123648pt;}
.ls3f{letter-spacing:-0.117760pt;}
.ls46{letter-spacing:-0.111872pt;}
.ls2b{letter-spacing:-0.107008pt;}
.ls1f{letter-spacing:-0.105984pt;}
.ls25{letter-spacing:-0.100096pt;}
.ls27{letter-spacing:-0.094208pt;}
.ls28{letter-spacing:-0.088320pt;}
.ls15{letter-spacing:-0.086016pt;}
.ls24{letter-spacing:-0.082432pt;}
.ls20{letter-spacing:-0.076544pt;}
.ls47{letter-spacing:-0.070656pt;}
.ls40{letter-spacing:-0.064768pt;}
.ls26{letter-spacing:-0.052992pt;}
.ls3e{letter-spacing:-0.041216pt;}
.ls22{letter-spacing:-0.035328pt;}
.ls23{letter-spacing:-0.029440pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls1b{letter-spacing:-0.012549pt;}
.lsf{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.308352pt;}
.ls69{letter-spacing:0.549120pt;}
.ls68{letter-spacing:0.550400pt;}
.ls66{letter-spacing:0.597760pt;}
.ls2e{letter-spacing:0.677145pt;}
.ls72{letter-spacing:0.987106pt;}
.ls73{letter-spacing:1.010196pt;}
.ls1e{letter-spacing:1.021741pt;}
.ls3c{letter-spacing:1.027514pt;}
.ls29{letter-spacing:1.039059pt;}
.ls41{letter-spacing:1.044831pt;}
.ls58{letter-spacing:1.046839pt;}
.ls6e{letter-spacing:1.046965pt;}
.ls45{letter-spacing:1.050604pt;}
.ls44{letter-spacing:1.051482pt;}
.ls5b{letter-spacing:1.051608pt;}
.ls4e{letter-spacing:1.052863pt;}
.ls5d{letter-spacing:1.056376pt;}
.ls4c{letter-spacing:1.062149pt;}
.ls4f{letter-spacing:1.063780pt;}
.ls5a{letter-spacing:1.064157pt;}
.ls62{letter-spacing:1.067922pt;}
.ls5f{letter-spacing:1.072941pt;}
.ls4b{letter-spacing:1.073192pt;}
.ls63{letter-spacing:1.073694pt;}
.ls3a{letter-spacing:1.079467pt;}
.ls50{letter-spacing:1.096784pt;}
.ls51{letter-spacing:1.102557pt;}
.ls71{letter-spacing:1.119875pt;}
.ls59{letter-spacing:1.122259pt;}
.ls5e{letter-spacing:1.122384pt;}
.ls6b{letter-spacing:1.163520pt;}
.lsb{letter-spacing:1.248628pt;}
.ls1c{letter-spacing:1.254902pt;}
.lsc{letter-spacing:1.261177pt;}
.ls7c{letter-spacing:1.514112pt;}
.ls6{letter-spacing:1.552314pt;}
.lsa{letter-spacing:1.637647pt;}
.ls8{letter-spacing:1.645177pt;}
.ls1a{letter-spacing:1.652204pt;}
.ls18{letter-spacing:1.659482pt;}
.ls43{letter-spacing:1.669120pt;}
.ls7{letter-spacing:1.678557pt;}
.ls9{letter-spacing:1.794510pt;}
.ls19{letter-spacing:1.797773pt;}
.ls42{letter-spacing:1.916544pt;}
.ls3d{letter-spacing:3.024640pt;}
.ls74{letter-spacing:3.032320pt;}
.ls6a{letter-spacing:3.132160pt;}
.ls79{letter-spacing:3.189760pt;}
.ls4d{letter-spacing:3.361280pt;}
.lsd{letter-spacing:3.630080pt;}
.ls6d{letter-spacing:3.787648pt;}
.lse{letter-spacing:3.977984pt;}
.ls65{letter-spacing:4.659200pt;}
.ls6f{letter-spacing:4.931840pt;}
.ls61{letter-spacing:5.056000pt;}
.ls3{letter-spacing:6.616064pt;}
.ls1{letter-spacing:6.617600pt;}
.ls4{letter-spacing:6.631936pt;}
.ls2{letter-spacing:6.632192pt;}
.ls5{letter-spacing:6.695808pt;}
.ls0{letter-spacing:6.700544pt;}
.ls53{letter-spacing:7.919360pt;}
.ls52{letter-spacing:10.117120pt;}
.ls78{letter-spacing:10.234880pt;}
.ls77{letter-spacing:10.820096pt;}
.ls7a{letter-spacing:11.471232pt;}
.ls7b{letter-spacing:11.471360pt;}
.ls5c{letter-spacing:12.444160pt;}
.ls64{letter-spacing:13.325312pt;}
.ls6c{letter-spacing:16.352000pt;}
.ls70{letter-spacing:17.178240pt;}
.ls3b{letter-spacing:18.993408pt;}
.ls54{letter-spacing:22.113280pt;}
.ls55{letter-spacing:44.425600pt;}
.ls75{letter-spacing:159.234176pt;}
.ws2{word-spacing:-35.905024pt;}
.ws8{word-spacing:-21.871688pt;}
.ws23{word-spacing:-17.150243pt;}
.ws24{word-spacing:-17.144471pt;}
.ws19{word-spacing:-17.127153pt;}
.ws20{word-spacing:-17.109836pt;}
.ws1e{word-spacing:-17.098290pt;}
.ws26{word-spacing:-17.092518pt;}
.ws1b{word-spacing:-17.075200pt;}
.wsa{word-spacing:-17.069428pt;}
.ws2a{word-spacing:-17.057883pt;}
.wsc{word-spacing:-16.368640pt;}
.ws27{word-spacing:-16.339200pt;}
.ws31{word-spacing:-16.333312pt;}
.ws2d{word-spacing:-16.327424pt;}
.ws1c{word-spacing:-16.315648pt;}
.ws21{word-spacing:-16.303872pt;}
.ws2e{word-spacing:-16.297984pt;}
.wsb{word-spacing:-16.292096pt;}
.wsf{word-spacing:-16.286208pt;}
.ws1a{word-spacing:-16.280320pt;}
.wsd{word-spacing:-16.268544pt;}
.wse{word-spacing:-16.262656pt;}
.ws2c{word-spacing:-16.256768pt;}
.ws1d{word-spacing:-16.250880pt;}
.ws22{word-spacing:-16.244992pt;}
.ws30{word-spacing:-16.239104pt;}
.ws2b{word-spacing:-16.233216pt;}
.ws28{word-spacing:-16.227328pt;}
.ws10{word-spacing:-16.209664pt;}
.ws29{word-spacing:-16.203776pt;}
.ws2f{word-spacing:-16.186112pt;}
.ws1f{word-spacing:-16.047687pt;}
.ws4{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.859264pt;}
.ws15{word-spacing:-14.746368pt;}
.ws16{word-spacing:-14.735616pt;}
.ws3{word-spacing:-14.730240pt;}
.ws7{word-spacing:-14.724864pt;}
.ws17{word-spacing:-14.622720pt;}
.ws0{word-spacing:-13.521920pt;}
.ws13{word-spacing:-13.346816pt;}
.ws14{word-spacing:-13.254400pt;}
.ws12{word-spacing:-13.249536pt;}
.ws1{word-spacing:-13.200896pt;}
.ws11{word-spacing:-13.176576pt;}
.ws6{word-spacing:-12.051072pt;}
.ws25{word-spacing:-0.058880pt;}
.ws18{word-spacing:0.000000pt;}
.ws9{word-spacing:76.587925pt;}
._1{margin-left:-5.602688pt;}
._9{margin-left:-4.514688pt;}
._8{margin-left:-3.514880pt;}
._11{margin-left:-2.601661pt;}
._4{margin-left:-1.661114pt;}
._0{width:0.924160pt;}
._d{width:1.825280pt;}
._b{width:3.002880pt;}
._c{width:4.474880pt;}
._1b{width:5.416960pt;}
._5{width:6.417920pt;}
._19{width:7.355941pt;}
._16{width:8.785594pt;}
._6{width:9.774080pt;}
._7{width:10.775040pt;}
._a{width:11.952640pt;}
._17{width:12.976128pt;}
._1e{width:14.181376pt;}
._1a{width:15.191040pt;}
._1f{width:17.192960pt;}
._15{width:18.520320pt;}
._14{width:19.692800pt;}
._18{width:21.346560pt;}
._13{width:22.551040pt;}
._e{width:23.552000pt;}
._20{width:24.926976pt;}
._1d{width:25.907200pt;}
._1c{width:26.849280pt;}
._2d{width:30.800768pt;}
._2e{width:31.794176pt;}
._12{width:33.208320pt;}
._10{width:38.435328pt;}
._f{width:39.332736pt;}
._2f{width:43.246208pt;}
._26{width:44.160000pt;}
._21{width:83.615744pt;}
._27{width:91.558400pt;}
._28{width:92.516352pt;}
._30{width:100.920320pt;}
._24{width:112.637440pt;}
._25{width:113.603712pt;}
._2{width:125.035648pt;}
._2b{width:140.010880pt;}
._2a{width:141.021312pt;}
._2c{width:142.666240pt;}
._3{width:173.853440pt;}
._29{width:174.991360pt;}
._23{width:187.532800pt;}
._22{width:245.941760pt;}
.fsa{font-size:36.392154pt;}
.fs8{font-size:39.680000pt;}
.fs5{font-size:42.240000pt;}
.fse{font-size:47.686272pt;}
.fs1{font-size:48.640000pt;}
.fs4{font-size:52.705882pt;}
.fs3{font-size:53.760000pt;}
.fsd{font-size:56.320000pt;}
.fsb{font-size:57.725491pt;}
.fsc{font-size:58.880000pt;}
.fs9{font-size:62.745101pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:72.784320pt;}
.fs7{font-size:74.240000pt;}
.fs2{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.373333pt;}
.y2{bottom:4.480000pt;}
.y6{bottom:4.800000pt;}
.y37{bottom:4.960000pt;}
.y36{bottom:22.560000pt;}
.y5{bottom:48.000000pt;}
.y4{bottom:53.120000pt;}
.y3b{bottom:66.666667pt;}
.y3a{bottom:71.040000pt;}
.y34{bottom:97.600000pt;}
.y82{bottom:99.520000pt;}
.y33{bottom:111.680000pt;}
.yc4{bottom:114.880000pt;}
.y66{bottom:119.680000pt;}
.y81{bottom:122.240000pt;}
.y32{bottom:125.760000pt;}
.y31{bottom:125.957760pt;}
.yc3{bottom:135.040000pt;}
.y96{bottom:138.880000pt;}
.y30{bottom:140.037760pt;}
.y65{bottom:142.720000pt;}
.y80{bottom:145.280000pt;}
.y2f{bottom:154.240000pt;}
.yc2{bottom:154.880000pt;}
.y95{bottom:158.720000pt;}
.y64{bottom:165.760000pt;}
.y7f{bottom:168.000000pt;}
.y2e{bottom:169.920000pt;}
.yc1{bottom:175.040000pt;}
.y94{bottom:178.880000pt;}
.y2d{bottom:185.600000pt;}
.y63{bottom:188.480000pt;}
.y7e{bottom:191.040000pt;}
.yc0{bottom:194.880000pt;}
.y93{bottom:198.720000pt;}
.y62{bottom:211.520000pt;}
.y7d{bottom:214.080000pt;}
.ybf{bottom:215.040000pt;}
.y92{bottom:218.880000pt;}
.y2c{bottom:221.760000pt;}
.y61{bottom:234.240000pt;}
.ybe{bottom:234.880000pt;}
.y7c{bottom:236.800000pt;}
.y91{bottom:238.720000pt;}
.y2b{bottom:244.480000pt;}
.y2a{bottom:244.702720pt;}
.ybd{bottom:255.040000pt;}
.y60{bottom:257.280000pt;}
.y86{bottom:257.502720pt;}
.y90{bottom:258.880000pt;}
.y7b{bottom:259.840000pt;}
.y29{bottom:267.520000pt;}
.ybc{bottom:274.880000pt;}
.y5f{bottom:280.320000pt;}
.y8f{bottom:280.542720pt;}
.y7a{bottom:282.560000pt;}
.y28{bottom:290.240000pt;}
.ybb{bottom:295.040000pt;}
.y5e{bottom:303.040000pt;}
.y8e{bottom:303.262720pt;}
.y79{bottom:305.600000pt;}
.y27{bottom:313.280000pt;}
.yba{bottom:314.880000pt;}
.y5d{bottom:326.080000pt;}
.y8d{bottom:326.302720pt;}
.y78{bottom:328.640000pt;}
.yb9{bottom:335.040000pt;}
.y26{bottom:336.320000pt;}
.y5c{bottom:348.800000pt;}
.y77{bottom:351.360000pt;}
.yb8{bottom:354.880000pt;}
.y25{bottom:359.040000pt;}
.y5b{bottom:371.840000pt;}
.y76{bottom:374.400000pt;}
.yb7{bottom:375.040000pt;}
.y24{bottom:382.080000pt;}
.y5a{bottom:394.560000pt;}
.yb6{bottom:394.880000pt;}
.y75{bottom:397.120000pt;}
.y23{bottom:404.800000pt;}
.yb5{bottom:415.040000pt;}
.y59{bottom:417.600000pt;}
.y8a{bottom:417.822720pt;}
.y74{bottom:420.160000pt;}
.y22{bottom:427.840000pt;}
.yb4{bottom:434.880000pt;}
.y58{bottom:440.640000pt;}
.y73{bottom:443.200000pt;}
.y21{bottom:450.880000pt;}
.yb3{bottom:455.040000pt;}
.y57{bottom:463.360000pt;}
.y72{bottom:465.920000pt;}
.y20{bottom:473.600000pt;}
.yb2{bottom:474.880000pt;}
.y56{bottom:486.400000pt;}
.y71{bottom:489.182720pt;}
.yb1{bottom:495.040000pt;}
.y1f{bottom:496.640000pt;}
.y55{bottom:509.120000pt;}
.y70{bottom:511.680000pt;}
.yb0{bottom:514.880000pt;}
.y1e{bottom:519.360000pt;}
.y54{bottom:532.160000pt;}
.y89{bottom:532.382720pt;}
.y6f{bottom:534.720000pt;}
.yaf{bottom:535.040000pt;}
.y1d{bottom:542.400000pt;}
.yae{bottom:554.880000pt;}
.y53{bottom:555.200000pt;}
.y85{bottom:555.422752pt;}
.y6e{bottom:557.760000pt;}
.y1c{bottom:565.440000pt;}
.yad{bottom:575.040000pt;}
.y52{bottom:577.920000pt;}
.y8c{bottom:578.142752pt;}
.y6d{bottom:580.480000pt;}
.y1b{bottom:588.382752pt;}
.yac{bottom:594.880000pt;}
.y84{bottom:600.960000pt;}
.y51{bottom:601.182752pt;}
.y6c{bottom:603.520000pt;}
.y1a{bottom:610.880000pt;}
.yab{bottom:615.040000pt;}
.y83{bottom:623.680000pt;}
.y50{bottom:623.902752pt;}
.y6b{bottom:626.240000pt;}
.y19{bottom:633.280000pt;}
.yaa{bottom:634.880000pt;}
.y4f{bottom:646.720000pt;}
.y6a{bottom:649.280000pt;}
.ya9{bottom:655.040000pt;}
.y18{bottom:655.360000pt;}
.y4e{bottom:669.760000pt;}
.y4d{bottom:669.982752pt;}
.y69{bottom:672.320000pt;}
.ya8{bottom:674.880000pt;}
.y17{bottom:679.040000pt;}
.y4c{bottom:692.480000pt;}
.ya7{bottom:695.040000pt;}
.y68{bottom:695.262752pt;}
.y16{bottom:704.000000pt;}
.y15{bottom:704.235296pt;}
.ya6{bottom:714.880000pt;}
.y4b{bottom:715.520000pt;}
.y87{bottom:715.742752pt;}
.y67{bottom:716.800000pt;}
.yc5{bottom:733.440000pt;}
.ya5{bottom:735.040000pt;}
.y4a{bottom:738.240000pt;}
.y8b{bottom:738.462752pt;}
.y14{bottom:743.360000pt;}
.ya4{bottom:754.880000pt;}
.y49{bottom:761.280000pt;}
.y13{bottom:762.880000pt;}
.ya3{bottom:775.040000pt;}
.y12{bottom:783.680000pt;}
.y48{bottom:784.320000pt;}
.ya2{bottom:794.880000pt;}
.y11{bottom:803.460384pt;}
.y47{bottom:807.040000pt;}
.ya1{bottom:815.040000pt;}
.y46{bottom:830.080000pt;}
.y10{bottom:832.580394pt;}
.ya0{bottom:834.880000pt;}
.y45{bottom:852.800000pt;}
.y9f{bottom:855.040000pt;}
.yf{bottom:859.520000pt;}
.y9e{bottom:874.880000pt;}
.y44{bottom:875.840000pt;}
.ye{bottom:879.940394pt;}
.y9d{bottom:895.040000pt;}
.y43{bottom:898.880000pt;}
.y35{bottom:900.000000pt;}
.yd{bottom:904.000000pt;}
.y9c{bottom:914.880000pt;}
.yc{bottom:921.280000pt;}
.y42{bottom:921.600000pt;}
.y88{bottom:921.822752pt;}
.y9b{bottom:935.040000pt;}
.yb{bottom:938.880000pt;}
.y41{bottom:944.640000pt;}
.y9a{bottom:954.880000pt;}
.y9{bottom:957.120000pt;}
.ya{bottom:957.330208pt;}
.y40{bottom:967.360000pt;}
.y99{bottom:975.040000pt;}
.y8{bottom:978.880000pt;}
.y3f{bottom:990.400000pt;}
.y98{bottom:994.880000pt;}
.y7{bottom:1006.400000pt;}
.y3e{bottom:1013.440000pt;}
.y3d{bottom:1013.662752pt;}
.y97{bottom:1015.040000pt;}
.y3{bottom:1042.240000pt;}
.y39{bottom:1044.800000pt;}
.y1{bottom:1056.000000pt;}
.y38{bottom:1063.040000pt;}
.h5{height:17.333333pt;}
.h2{height:20.000000pt;}
.hd{height:29.184375pt;}
.hc{height:29.760000pt;}
.h14{height:32.993871pt;}
.h4{height:33.653750pt;}
.h15{height:36.000000pt;}
.h8{height:36.363970pt;}
.h9{height:37.143750pt;}
.h13{height:40.205000pt;}
.h17{height:40.681250pt;}
.h3{height:42.656250pt;}
.h16{height:44.160000pt;}
.h7{height:44.218750pt;}
.h10{height:45.500000pt;}
.he{height:46.640441pt;}
.hf{height:48.000000pt;}
.hb{height:49.481250pt;}
.ha{height:50.287995pt;}
.h11{height:50.904413pt;}
.h12{height:51.922500pt;}
.h6{height:83.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.333333pt;}
.w3{width:164.000000pt;}
.w2{width:165.333333pt;}
.w5{width:226.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:36.309120pt;}
.x13{left:44.512320pt;}
.x3{left:81.399893pt;}
.x1{left:150.666667pt;}
.x5{left:164.386667pt;}
.x17{left:175.040032pt;}
.xb{left:188.707680pt;}
.x18{left:199.040032pt;}
.x16{left:205.610336pt;}
.x9{left:209.599936pt;}
.xc{left:231.475264pt;}
.xf{left:234.539072pt;}
.x6{left:255.934560pt;}
.xd{left:290.444992pt;}
.x11{left:291.492864pt;}
.x2{left:314.666667pt;}
.x15{left:318.125984pt;}
.x10{left:343.040000pt;}
.xa{left:396.506560pt;}
.x12{left:436.000000pt;}
.x8{left:462.085760pt;}
.x4{left:477.333333pt;}
.xe{left:549.768000pt;}
.x7{left:629.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  