
    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_cf62881a35a638096d074f64.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_3b5d9fc9f3d28cecf8bfda01.woff')format("woff");}.ff2{font-family:ff2;line-height:0.707000;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_b4d169296ac03c6f474a43c3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cc73eaf4c166359cb0fe5128.woff')format("woff");}.ff4{font-family:ff4;line-height:0.719069;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_2041505405280cb519386749.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_99b63466a998fe1e18fc9b31.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_75efb5787fb64b485e0cf726.woff')format("woff");}.ff7{font-family:ff7;line-height:0.686000;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_dd2acb249d1428f5b984dbf0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_863e988120a24fdc56a38a54.woff')format("woff");}.ff9{font-family:ff9;line-height:0.764000;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_1367e4b558b1a850b62caa02.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_560000fd3f1e698d87ce6d57.woff')format("woff");}.ffb{font-family:ffb;line-height:0.931641;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_012f89f0c8d0e6d86d3d8154.woff')format("woff");}.ffc{font-family:ffc;line-height:0.931641;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_709ae7df583b8b56118f3d42.woff')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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_271d4a4f1a738e2a512530f8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.959000;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_396b5a272f73427039a0f2e0.woff')format("woff");}.fff{font-family:fff;line-height:0.984000;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_3b2b627160fbafb1a953531c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959000;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_fb29d895e84e7bbd137de5da.woff')format("woff");}.ff11{font-family:ff11;line-height:0.901000;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_232a505930149349ea52c145.woff')format("woff");}.ff12{font-family:ff12;line-height:0.856934;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_251376a7b758d6eaea1c9852.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_ad1316c321de3f1d48cdf3f2.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_98faf971016a1743df26e932.woff')format("woff");}.ff15{font-family:ff15;line-height:0.895996;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_5192fd954dabac72bbdbf59f.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_37890e809e430b12ac422abd.woff')format("woff");}.ff17{font-family:ff17;line-height:0.871094;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_68c91a921d5f29f83c8b969a.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_cfcbf44238931ad32aa8d221.woff')format("woff");}.ff19{font-family:ff19;line-height:1.083496;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:ff1a;src:url('chunks/assets/font_cc620b62f47c571fc5d74ff5.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.857910;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:ff1b;src:url('chunks/assets/font_61f85af0e1074b6e58ded527.woff')format("woff");}.ff1b{font-family:ff1b;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;}
.m4{transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-ms-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-webkit-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232782,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);}
.m5{transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v6{vertical-align:-12.312000px;}
.v3{vertical-align:-11.021184px;}
.v5{vertical-align:-8.572032px;}
.v1{vertical-align:-7.476000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:11.994372px;}
.v4{vertical-align:14.286720px;}
.v2{vertical-align:18.368640px;}
.v7{vertical-align:44.898000px;}
.ls43{letter-spacing:-0.828012px;}
.ls3d{letter-spacing:-0.759681px;}
.ls40{letter-spacing:-0.667233px;}
.ls4f{letter-spacing:-0.663213px;}
.ls49{letter-spacing:-0.586843px;}
.ls50{letter-spacing:-0.526551px;}
.ls38{letter-spacing:-0.498415px;}
.ls48{letter-spacing:-0.478318px;}
.ls4d{letter-spacing:-0.333616px;}
.ls3c{letter-spacing:-0.289402px;}
.ls51{letter-spacing:-0.248705px;}
.ls4c{letter-spacing:-0.172837px;}
.ls47{letter-spacing:-0.108526px;}
.ls52{letter-spacing:-0.080389px;}
.ls44{letter-spacing:-0.072351px;}
.ls3a{letter-spacing:-0.064312px;}
.ls3e{letter-spacing:-0.052253px;}
.ls39{letter-spacing:-0.048234px;}
.ls41{letter-spacing:-0.044214px;}
.ls4e{letter-spacing:-0.042788px;}
.ls34{letter-spacing:-0.040195px;}
.ls33{letter-spacing:-0.036175px;}
.ls45{letter-spacing:-0.032156px;}
.ls4b{letter-spacing:-0.032091px;}
.ls3f{letter-spacing:-0.028136px;}
.ls3b{letter-spacing:-0.024117px;}
.ls42{letter-spacing:-0.020097px;}
.ls36{letter-spacing:-0.016078px;}
.ls37{letter-spacing:-0.012058px;}
.ls35{letter-spacing:-0.008039px;}
.ls46{letter-spacing:-0.004019px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000061px;}
.ls20{letter-spacing:0.000485px;}
.ls1a{letter-spacing:0.002700px;}
.ls17{letter-spacing:0.002706px;}
.lsd{letter-spacing:0.003242px;}
.ls2e{letter-spacing:0.004019px;}
.ls29{letter-spacing:0.008039px;}
.ls1d{letter-spacing:0.011042px;}
.ls2b{letter-spacing:0.012058px;}
.ls25{letter-spacing:0.016078px;}
.ls27{letter-spacing:0.020097px;}
.ls2d{letter-spacing:0.024117px;}
.ls8{letter-spacing:0.031863px;}
.ls9{letter-spacing:0.033198px;}
.ls30{letter-spacing:0.036175px;}
.ls53{letter-spacing:0.040114px;}
.ls2f{letter-spacing:0.044214px;}
.ls31{letter-spacing:0.048234px;}
.ls4a{letter-spacing:0.052253px;}
.lsb{letter-spacing:0.054578px;}
.ls2c{letter-spacing:0.064312px;}
.lsa{letter-spacing:0.073880px;}
.ls2a{letter-spacing:0.080389px;}
.ls28{letter-spacing:0.152740px;}
.ls26{letter-spacing:0.317539px;}
.ls32{letter-spacing:0.478318px;}
.ls16{letter-spacing:1.402321px;}
.ls1b{letter-spacing:5.193462px;}
.ls18{letter-spacing:5.887621px;}
.ls1e{letter-spacing:5.893621px;}
.ls19{letter-spacing:11.198706px;}
.ls1c{letter-spacing:16.269239px;}
.ls54{letter-spacing:17.283742px;}
.ls14{letter-spacing:18.276389px;}
.ls15{letter-spacing:18.277001px;}
.ls1f{letter-spacing:22.845486px;}
.ls10{letter-spacing:32.718178px;}
.ls4{letter-spacing:32.724178px;}
.ls3{letter-spacing:32.724476px;}
.ls23{letter-spacing:32.726131px;}
.ls21{letter-spacing:32.727227px;}
.ls2{letter-spacing:32.727236px;}
.ls1{letter-spacing:32.727777px;}
.ls22{letter-spacing:32.728326px;}
.ls24{letter-spacing:32.728858px;}
.lsf{letter-spacing:32.730476px;}
.ls13{letter-spacing:36.134789px;}
.ls12{letter-spacing:36.135401px;}
.ls11{letter-spacing:36.236837px;}
.ls6{letter-spacing:53.017712px;}
.ls5{letter-spacing:53.018936px;}
.lsc{letter-spacing:117.512682px;}
.lse{letter-spacing:117.518682px;}
.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;}
}
.ws1c{word-spacing:-40.194749px;}
.ws2b{word-spacing:-40.182690px;}
.ws44{word-spacing:-39.861132px;}
.ws45{word-spacing:-31.118775px;}
.ws4a{word-spacing:-30.929859px;}
.ws43{word-spacing:-30.753002px;}
.ws3{word-spacing:-18.196379px;}
.ws53{word-spacing:-17.693728px;}
.ws5{word-spacing:-10.212964px;}
.ws17{word-spacing:-9.929270px;}
.ws6{word-spacing:-9.184320px;}
.ws13{word-spacing:-7.943416px;}
.ws14{word-spacing:-6.354733px;}
.ws51{word-spacing:-0.647135px;}
.ws4{word-spacing:-0.597756px;}
.ws52{word-spacing:-0.458220px;}
.ws4f{word-spacing:-0.369792px;}
.ws50{word-spacing:-0.140682px;}
.ws1{word-spacing:-0.122200px;}
.ws31{word-spacing:-0.120584px;}
.ws33{word-spacing:-0.104506px;}
.ws41{word-spacing:-0.092448px;}
.ws3f{word-spacing:-0.088428px;}
.ws2f{word-spacing:-0.076370px;}
.ws16{word-spacing:-0.065455px;}
.ws37{word-spacing:-0.064312px;}
.ws36{word-spacing:-0.060292px;}
.ws7{word-spacing:-0.060218px;}
.ws1e{word-spacing:-0.056273px;}
.ws9{word-spacing:-0.056125px;}
.ws30{word-spacing:-0.052253px;}
.ws22{word-spacing:-0.048234px;}
.ws12{word-spacing:-0.047565px;}
.ws15{word-spacing:-0.045645px;}
.ws2{word-spacing:-0.044801px;}
.ws3b{word-spacing:-0.044214px;}
.ws1b{word-spacing:-0.040195px;}
.wsa{word-spacing:-0.039299px;}
.ws39{word-spacing:-0.036175px;}
.ws1f{word-spacing:-0.032156px;}
.ws21{word-spacing:-0.028136px;}
.ws20{word-spacing:-0.024117px;}
.ws2e{word-spacing:-0.020097px;}
.ws26{word-spacing:-0.016078px;}
.ws2a{word-spacing:-0.012058px;}
.ws3e{word-spacing:-0.008039px;}
.ws1d{word-spacing:-0.004019px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.004019px;}
.ws42{word-spacing:0.005348px;}
.ws24{word-spacing:0.008039px;}
.ws29{word-spacing:0.012058px;}
.ws46{word-spacing:0.016045px;}
.ws25{word-spacing:0.024117px;}
.ws35{word-spacing:0.032156px;}
.ws3c{word-spacing:0.068331px;}
.ws49{word-spacing:0.221963px;}
.ws27{word-spacing:0.249207px;}
.ws3d{word-spacing:0.438123px;}
.ws23{word-spacing:0.458220px;}
.ws48{word-spacing:0.486356px;}
.ws40{word-spacing:0.546649px;}
.ws47{word-spacing:0.623019px;}
.ws2c{word-spacing:0.627038px;}
.ws28{word-spacing:0.719486px;}
.ws34{word-spacing:0.787817px;}
.wsb{word-spacing:4.320004px;}
.ws4b{word-spacing:5.277587px;}
.ws18{word-spacing:5.387114px;}
.ws4c{word-spacing:5.439662px;}
.ws4d{word-spacing:8.702163px;}
.ws4e{word-spacing:8.883039px;}
.ws38{word-spacing:8.899117px;}
.ws32{word-spacing:8.939312px;}
.ws3a{word-spacing:9.132247px;}
.ws19{word-spacing:10.145357px;}
.ws8{word-spacing:14.530921px;}
.ws1a{word-spacing:23.843384px;}
.wsd{word-spacing:57.732367px;}
.wse{word-spacing:79.244594px;}
.ws10{word-spacing:83.185933px;}
.wsf{word-spacing:88.615397px;}
.ws11{word-spacing:90.450854px;}
.wsc{word-spacing:103.251718px;}
._17{margin-left:-17.615025px;}
._18{margin-left:-16.560885px;}
._16{margin-left:-10.329264px;}
._b{margin-left:-6.993792px;}
._5{margin-left:-5.574081px;}
._6{margin-left:-4.303860px;}
._3{margin-left:-3.272730px;}
._0{margin-left:-2.151936px;}
._9{margin-left:-1.075968px;}
._2{width:1.075968px;}
._7{width:2.151936px;}
._15{width:3.805950px;}
._4{width:4.842881px;}
._c{width:12.427370px;}
._8{width:19.666172px;}
._13{width:21.220352px;}
._a{width:22.495574px;}
._1{width:25.392845px;}
._14{width:30.040949px;}
._e{width:101.382427px;}
._10{width:119.574427px;}
._11{width:125.012533px;}
._12{width:126.841991px;}
._f{width:137.772427px;}
._d{width:181.460048px;}
.fc9{color:rgb(0,176,240);}
.fc8{color:rgb(21,164,63);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,128,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,255);}
.fs10{font-size:22.858752px;}
.fs15{font-size:26.742474px;}
.fsf{font-size:28.573440px;}
.fsa{font-size:29.389824px;}
.fs13{font-size:35.716800px;}
.fs5{font-size:35.865600px;}
.fse{font-size:36.034204px;}
.fs9{font-size:36.737280px;}
.fsc{font-size:39.298579px;}
.fs14{font-size:40.194749px;}
.fs4{font-size:44.800560px;}
.fs12{font-size:45.645000px;}
.fsd{font-size:47.564993px;}
.fs2{font-size:47.820600px;}
.fs11{font-size:49.614000px;}
.fsb{font-size:56.124590px;}
.fs7{font-size:59.775600px;}
.fs8{font-size:60.218400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs3{font-size:122.200320px;}
.y0{bottom:0.000000px;}
.y91{bottom:3.334500px;}
.ya5{bottom:4.168125px;}
.y27{bottom:4.286016px;}
.y42{bottom:7.776294px;}
.y8f{bottom:9.763544px;}
.y24{bottom:11.633472px;}
.y9{bottom:11.774976px;}
.ya3{bottom:12.204431px;}
.y6c{bottom:14.987045px;}
.y89{bottom:17.621240px;}
.y1c{bottom:20.817792px;}
.y9e{bottom:21.133631px;}
.yaa{bottom:28.500221px;}
.y2f{bottom:28.739268px;}
.yb{bottom:33.529797px;}
.y92{bottom:36.831756px;}
.y8a{bottom:36.831776px;}
.ya9{bottom:37.429421px;}
.y2e{bottom:37.923588px;}
.y70{bottom:42.211580px;}
.y26{bottom:44.040498px;}
.y1d{bottom:44.161272px;}
.y25{bottom:45.079704px;}
.ya8{bottom:46.358621px;}
.y9d{bottom:46.738500px;}
.y2d{bottom:47.107908px;}
.y81{bottom:50.724000px;}
.y9f{bottom:51.843701px;}
.ya7{bottom:55.287821px;}
.y8b{bottom:56.067722px;}
.yd1{bottom:56.120863px;}
.y2c{bottom:56.292228px;}
.y47{bottom:56.883000px;}
.y6b{bottom:59.509500px;}
.y96{bottom:59.554500px;}
.yd{bottom:61.038000px;}
.y2b{bottom:65.476548px;}
.y30{bottom:66.741000px;}
.y1e{bottom:67.504752px;}
.y95{bottom:67.644000px;}
.yd0{bottom:68.154977px;}
.y34{bottom:68.571000px;}
.y5e{bottom:70.405500px;}
.y90{bottom:70.458531px;}
.y80{bottom:71.047500px;}
.y3e{bottom:73.307721px;}
.y2a{bottom:74.660868px;}
.y8c{bottom:75.278258px;}
.y6a{bottom:77.442000px;}
.ya4{bottom:77.648323px;}
.y52{bottom:78.915000px;}
.y43{bottom:78.956032px;}
.ycf{bottom:80.189284px;}
.y46{bottom:81.690000px;}
.ya0{bottom:82.585533px;}
.y29{bottom:83.845188px;}
.y1b{bottom:87.064500px;}
.y33{bottom:88.894500px;}
.y1f{bottom:90.848232px;}
.y5d{bottom:91.327500px;}
.y28{bottom:93.029508px;}
.y87{bottom:93.631500px;}
.y8d{bottom:94.488794px;}
.yc9{bottom:94.815829px;}
.ya{bottom:94.819211px;}
.y7d{bottom:95.613830px;}
.y7f{bottom:95.854500px;}
.y3f{bottom:96.179154px;}
.y69{bottom:98.362500px;}
.y51{bottom:99.238500px;}
.y18{bottom:101.466000px;}
.yba{bottom:103.147500px;}
.y45{bottom:106.497000px;}
.yc8{bottom:106.850137px;}
.y94{bottom:111.709394px;}
.y5c{bottom:112.249500px;}
.ya1{bottom:113.295603px;}
.ya6{bottom:113.295705px;}
.y8e{bottom:113.699330px;}
.y86{bottom:113.955000px;}
.y20{bottom:114.229980px;}
.y7e{bottom:116.178000px;}
.y93{bottom:118.138418px;}
.yc7{bottom:118.884445px;}
.y40{bottom:119.269140px;}
.y17{bottom:119.398500px;}
.y68{bottom:120.778500px;}
.y8{bottom:121.102500px;}
.yb9{bottom:123.471000px;}
.y50{bottom:124.045500px;}
.yc6{bottom:130.918753px;}
.y44{bottom:131.304000px;}
.y5b{bottom:133.170000px;}
.y7a{bottom:133.819203px;}
.y7{bottom:135.298500px;}
.yb1{bottom:135.840000px;}
.y85{bottom:136.147500px;}
.y16{bottom:137.331000px;}
.y21{bottom:137.573460px;}
.y6f{bottom:139.608779px;}
.y67{bottom:141.103500px;}
.yc5{bottom:142.951699px;}
.y7b{bottom:143.380363px;}
.y41{bottom:143.403471px;}
.yb8{bottom:143.794500px;}
.ya2{bottom:144.005673px;}
.y4f{bottom:144.369000px;}
.y6{bottom:149.496000px;}
.y79{bottom:151.323000px;}
.y5a{bottom:154.092000px;}
.yc4{bottom:154.986007px;}
.y15{bottom:155.263500px;}
.y84{bottom:159.085500px;}
.yb0{bottom:160.647000px;}
.y22{bottom:160.916940px;}
.yb7{bottom:164.118000px;}
.yc{bottom:165.003574px;}
.y66{bottom:165.910500px;}
.yc3{bottom:167.020315px;}
.y4e{bottom:169.176000px;}
.y78{bottom:169.255500px;}
.y3c{bottom:170.863500px;}
.yd7{bottom:172.410431px;}
.y3d{bottom:173.687323px;}
.y59{bottom:175.014000px;}
.y14{bottom:176.185500px;}
.yc2{bottom:179.054623px;}
.y83{bottom:179.410500px;}
.yaf{bottom:180.972000px;}
.y65{bottom:183.843000px;}
.y23{bottom:184.260420px;}
.y77{bottom:187.188000px;}
.y5{bottom:187.335000px;}
.yb6{bottom:188.925000px;}
.y4d{bottom:189.501000px;}
.yc1{bottom:191.088930px;}
.y13{bottom:194.118000px;}
.y3b{bottom:195.670500px;}
.y58{bottom:195.934500px;}
.y88{bottom:197.719500px;}
.ycd{bottom:201.421833px;}
.y82{bottom:201.601500px;}
.y64{bottom:201.775500px;}
.y7c{bottom:202.827883px;}
.y76{bottom:205.122000px;}
.yae{bottom:205.779000px;}
.yc0{bottom:205.958978px;}
.y4{bottom:207.658500px;}
.yb5{bottom:209.248500px;}
.ycc{bottom:213.454650px;}
.y4c{bottom:214.308000px;}
.y3a{bottom:215.994000px;}
.y57{bottom:216.258000px;}
.y12{bottom:216.534000px;}
.ybf{bottom:217.993285px;}
.y63{bottom:219.708000px;}
.ycb{bottom:225.488958px;}
.y9c{bottom:225.852000px;}
.y75{bottom:226.042500px;}
.yad{bottom:226.102500px;}
.ybe{bottom:230.027593px;}
.yb4{bottom:234.055500px;}
.y11{bottom:236.857500px;}
.yca{bottom:237.523266px;}
.y4b{bottom:239.115000px;}
.y62{bottom:240.630000px;}
.y39{bottom:240.801000px;}
.ybd{bottom:242.061901px;}
.y6e{bottom:243.906907px;}
.y9b{bottom:248.044500px;}
.y74{bottom:248.458500px;}
.yac{bottom:250.909500px;}
.ybc{bottom:254.096209px;}
.y56{bottom:254.800500px;}
.yb3{bottom:258.862500px;}
.y38{bottom:261.124500px;}
.y10{bottom:261.664500px;}
.y61{bottom:263.046000px;}
.y4a{bottom:263.922000px;}
.y3{bottom:265.729500px;}
.ybb{bottom:266.130517px;}
.y73{bottom:269.380500px;}
.yab{bottom:271.233000px;}
.y9a{bottom:278.845500px;}
.y55{bottom:279.607500px;}
.yce{bottom:280.920012px;}
.y37{bottom:281.448000px;}
.y60{bottom:283.369500px;}
.yf{bottom:286.471500px;}
.y2{bottom:286.651500px;}
.y49{bottom:288.729000px;}
.y98{bottom:290.070000px;}
.y72{bottom:291.796500px;}
.y32{bottom:297.949500px;}
.yd5{bottom:298.787810px;}
.y1a{bottom:299.169000px;}
.y99{bottom:301.149000px;}
.yd6{bottom:301.787149px;}
.y54{bottom:302.545500px;}
.y5f{bottom:303.693000px;}
.y36{bottom:306.255000px;}
.y1{bottom:307.573500px;}
.y48{bottom:309.052500px;}
.yd4{bottom:310.822118px;}
.y71{bottom:312.120000px;}
.yb2{bottom:315.052500px;}
.y31{bottom:322.756500px;}
.yd3{bottom:322.856426px;}
.y19{bottom:323.976000px;}
.y53{bottom:324.738000px;}
.y6d{bottom:329.428174px;}
.y35{bottom:331.062000px;}
.yd2{bottom:334.890733px;}
.y97{bottom:336.052500px;}
.ye{bottom:378.105000px;}
.h1a{height:21.172919px;}
.h29{height:21.388756px;}
.h18{height:26.110722px;}
.h1f{height:26.466149px;}
.ha{height:26.576410px;}
.h10{height:27.222324px;}
.h22{height:27.319868px;}
.h26{height:27.849780px;}
.h13{height:28.476119px;}
.h24{height:28.850723px;}
.h25{height:28.856169px;}
.h1b{height:31.225055px;}
.h27{height:32.147949px;}
.h9{height:32.462906px;}
.h28{height:33.386111px;}
.h16{height:34.466040px;}
.h5{height:35.435065px;}
.h1e{height:39.031319px;}
.hf{height:40.146500px;}
.h12{height:40.668404px;}
.h23{height:41.921867px;}
.hd{height:42.694846px;}
.hc{height:44.293720px;}
.h4{height:48.501859px;}
.h14{height:49.090950px;}
.h3{height:49.479859px;}
.h21{height:49.485859px;}
.h2{height:53.152819px;}
.h20{height:58.790728px;}
.hb{height:63.783205px;}
.h7{height:85.295823px;}
.h1c{height:93.988950px;}
.h19{height:128.580480px;}
.h1d{height:160.725600px;}
.h11{height:163.152389px;}
.he{height:192.870720px;}
.h17{height:217.466384px;}
.h8{height:262.973687px;}
.h15{height:354.707010px;}
.h1{height:408.000000px;}
.h6{height:408.162264px;}
.h0{height:408.189000px;}
.w6{width:151.530480px;}
.w8{width:183.686400px;}
.w7{width:229.572811px;}
.w5{width:229.588542px;}
.w9{width:229.608000px;}
.w4{width:275.529600px;}
.w3{width:367.355570px;}
.w2{width:544.223700px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x2a{left:3.641921px;}
.x2b{left:5.169254px;}
.x32{left:10.149013px;}
.xe{left:12.756000px;}
.x38{left:13.809544px;}
.x2f{left:14.871000px;}
.x13{left:16.010413px;}
.x41{left:19.940689px;}
.x36{left:21.901644px;}
.x37{left:26.584882px;}
.x1c{left:28.347000px;}
.x1d{left:31.080000px;}
.xf{left:40.537500px;}
.xd{left:42.519000px;}
.x14{left:44.053662px;}
.x2d{left:45.766500px;}
.x3c{left:47.835204px;}
.x3a{left:52.325316px;}
.x45{left:53.467500px;}
.x8{left:55.387500px;}
.x2{left:56.874000px;}
.x2e{left:57.892500px;}
.x1{left:61.450500px;}
.x7{left:64.497000px;}
.x4{left:65.521500px;}
.x2c{left:68.818633px;}
.x44{left:71.122354px;}
.x10{left:73.201500px;}
.x1f{left:74.759703px;}
.x30{left:78.493500px;}
.x15{left:81.893520px;}
.xb{left:88.440000px;}
.x16{left:90.100475px;}
.x11{left:93.801000px;}
.x39{left:94.993932px;}
.x22{left:99.729301px;}
.x3d{left:107.908617px;}
.x3b{left:111.880325px;}
.xa{left:115.529550px;}
.x42{left:118.742415px;}
.x20{left:121.874568px;}
.x33{left:125.261029px;}
.x34{left:126.984556px;}
.x5{left:128.209500px;}
.x12{left:134.361000px;}
.x26{left:142.078500px;}
.x25{left:143.437500px;}
.x28{left:146.628000px;}
.x27{left:147.985500px;}
.x43{left:155.942355px;}
.x23{left:157.084500px;}
.x49{left:166.205148px;}
.x9{left:171.877500px;}
.x1a{left:176.638965px;}
.x19{left:178.677119px;}
.x21{left:183.080569px;}
.x18{left:186.851929px;}
.x17{left:188.889922px;}
.x3e{left:194.736000px;}
.x1b{left:196.917000px;}
.x3{left:200.217000px;}
.x48{left:211.683911px;}
.x6{left:215.287500px;}
.x24{left:230.644500px;}
.x40{left:244.792500px;}
.x3f{left:253.260000px;}
.x1e{left:286.299000px;}
.x46{left:289.378500px;}
.x4a{left:292.167826px;}
.x31{left:301.608000px;}
.x35{left:309.259500px;}
.xc{left:322.528876px;}
.x29{left:378.141000px;}
.x47{left:384.725703px;}
.x4b{left:388.897625px;}
@media print{
.v6{vertical-align:-10.944000pt;}
.v3{vertical-align:-9.796608pt;}
.v5{vertical-align:-7.619584pt;}
.v1{vertical-align:-6.645333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.661664pt;}
.v4{vertical-align:12.699307pt;}
.v2{vertical-align:16.327680pt;}
.v7{vertical-align:39.909333pt;}
.ls43{letter-spacing:-0.736011pt;}
.ls3d{letter-spacing:-0.675272pt;}
.ls40{letter-spacing:-0.593096pt;}
.ls4f{letter-spacing:-0.589523pt;}
.ls49{letter-spacing:-0.521639pt;}
.ls50{letter-spacing:-0.468046pt;}
.ls38{letter-spacing:-0.443035pt;}
.ls48{letter-spacing:-0.425171pt;}
.ls4d{letter-spacing:-0.296548pt;}
.ls3c{letter-spacing:-0.257246pt;}
.ls51{letter-spacing:-0.221071pt;}
.ls4c{letter-spacing:-0.153633pt;}
.ls47{letter-spacing:-0.096467pt;}
.ls52{letter-spacing:-0.071457pt;}
.ls44{letter-spacing:-0.064312pt;}
.ls3a{letter-spacing:-0.057166pt;}
.ls3e{letter-spacing:-0.046447pt;}
.ls39{letter-spacing:-0.042874pt;}
.ls41{letter-spacing:-0.039302pt;}
.ls4e{letter-spacing:-0.038034pt;}
.ls34{letter-spacing:-0.035729pt;}
.ls33{letter-spacing:-0.032156pt;}
.ls45{letter-spacing:-0.028583pt;}
.ls4b{letter-spacing:-0.028525pt;}
.ls3f{letter-spacing:-0.025010pt;}
.ls3b{letter-spacing:-0.021437pt;}
.ls42{letter-spacing:-0.017864pt;}
.ls36{letter-spacing:-0.014291pt;}
.ls37{letter-spacing:-0.010719pt;}
.ls35{letter-spacing:-0.007146pt;}
.ls46{letter-spacing:-0.003573pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000054pt;}
.ls20{letter-spacing:0.000431pt;}
.ls1a{letter-spacing:0.002400pt;}
.ls17{letter-spacing:0.002405pt;}
.lsd{letter-spacing:0.002882pt;}
.ls2e{letter-spacing:0.003573pt;}
.ls29{letter-spacing:0.007146pt;}
.ls1d{letter-spacing:0.009815pt;}
.ls2b{letter-spacing:0.010719pt;}
.ls25{letter-spacing:0.014291pt;}
.ls27{letter-spacing:0.017864pt;}
.ls2d{letter-spacing:0.021437pt;}
.ls8{letter-spacing:0.028322pt;}
.ls9{letter-spacing:0.029509pt;}
.ls30{letter-spacing:0.032156pt;}
.ls53{letter-spacing:0.035657pt;}
.ls2f{letter-spacing:0.039302pt;}
.ls31{letter-spacing:0.042874pt;}
.ls4a{letter-spacing:0.046447pt;}
.lsb{letter-spacing:0.048514pt;}
.ls2c{letter-spacing:0.057166pt;}
.lsa{letter-spacing:0.065672pt;}
.ls2a{letter-spacing:0.071457pt;}
.ls28{letter-spacing:0.135769pt;}
.ls26{letter-spacing:0.282256pt;}
.ls32{letter-spacing:0.425171pt;}
.ls16{letter-spacing:1.246508pt;}
.ls1b{letter-spacing:4.616411pt;}
.ls18{letter-spacing:5.233441pt;}
.ls1e{letter-spacing:5.238774pt;}
.ls19{letter-spacing:9.954405pt;}
.ls1c{letter-spacing:14.461546pt;}
.ls54{letter-spacing:15.363326pt;}
.ls14{letter-spacing:16.245679pt;}
.ls15{letter-spacing:16.246223pt;}
.ls1f{letter-spacing:20.307098pt;}
.ls10{letter-spacing:29.082825pt;}
.ls4{letter-spacing:29.088158pt;}
.ls3{letter-spacing:29.088423pt;}
.ls23{letter-spacing:29.089894pt;}
.ls21{letter-spacing:29.090869pt;}
.ls2{letter-spacing:29.090876pt;}
.ls1{letter-spacing:29.091357pt;}
.ls22{letter-spacing:29.091845pt;}
.ls24{letter-spacing:29.092318pt;}
.lsf{letter-spacing:29.093757pt;}
.ls13{letter-spacing:32.119812pt;}
.ls12{letter-spacing:32.120356pt;}
.ls11{letter-spacing:32.210521pt;}
.ls6{letter-spacing:47.126855pt;}
.ls5{letter-spacing:47.127943pt;}
.lsc{letter-spacing:104.455717pt;}
.lse{letter-spacing:104.461051pt;}
.ws1c{word-spacing:-35.728666pt;}
.ws2b{word-spacing:-35.717947pt;}
.ws44{word-spacing:-35.432118pt;}
.ws45{word-spacing:-27.661133pt;}
.ws4a{word-spacing:-27.493208pt;}
.ws43{word-spacing:-27.336002pt;}
.ws3{word-spacing:-16.174559pt;}
.ws53{word-spacing:-15.727759pt;}
.ws5{word-spacing:-9.078190pt;}
.ws17{word-spacing:-8.826018pt;}
.ws6{word-spacing:-8.163840pt;}
.ws13{word-spacing:-7.060815pt;}
.ws14{word-spacing:-5.648652pt;}
.ws51{word-spacing:-0.575232pt;}
.ws4{word-spacing:-0.531339pt;}
.ws52{word-spacing:-0.407307pt;}
.ws4f{word-spacing:-0.328704pt;}
.ws50{word-spacing:-0.125050pt;}
.ws1{word-spacing:-0.108623pt;}
.ws31{word-spacing:-0.107186pt;}
.ws33{word-spacing:-0.092895pt;}
.ws41{word-spacing:-0.082176pt;}
.ws3f{word-spacing:-0.078603pt;}
.ws2f{word-spacing:-0.067884pt;}
.ws16{word-spacing:-0.058182pt;}
.ws37{word-spacing:-0.057166pt;}
.ws36{word-spacing:-0.053593pt;}
.ws7{word-spacing:-0.053527pt;}
.ws1e{word-spacing:-0.050020pt;}
.ws9{word-spacing:-0.049889pt;}
.ws30{word-spacing:-0.046447pt;}
.ws22{word-spacing:-0.042874pt;}
.ws12{word-spacing:-0.042280pt;}
.ws15{word-spacing:-0.040573pt;}
.ws2{word-spacing:-0.039823pt;}
.ws3b{word-spacing:-0.039302pt;}
.ws1b{word-spacing:-0.035729pt;}
.wsa{word-spacing:-0.034932pt;}
.ws39{word-spacing:-0.032156pt;}
.ws1f{word-spacing:-0.028583pt;}
.ws21{word-spacing:-0.025010pt;}
.ws20{word-spacing:-0.021437pt;}
.ws2e{word-spacing:-0.017864pt;}
.ws26{word-spacing:-0.014291pt;}
.ws2a{word-spacing:-0.010719pt;}
.ws3e{word-spacing:-0.007146pt;}
.ws1d{word-spacing:-0.003573pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.003573pt;}
.ws42{word-spacing:0.004754pt;}
.ws24{word-spacing:0.007146pt;}
.ws29{word-spacing:0.010719pt;}
.ws46{word-spacing:0.014263pt;}
.ws25{word-spacing:0.021437pt;}
.ws35{word-spacing:0.028583pt;}
.ws3c{word-spacing:0.060739pt;}
.ws49{word-spacing:0.197300pt;}
.ws27{word-spacing:0.221518pt;}
.ws3d{word-spacing:0.389442pt;}
.ws23{word-spacing:0.407307pt;}
.ws48{word-spacing:0.432317pt;}
.ws40{word-spacing:0.485910pt;}
.ws47{word-spacing:0.553794pt;}
.ws2c{word-spacing:0.557367pt;}
.ws28{word-spacing:0.639543pt;}
.ws34{word-spacing:0.700282pt;}
.wsb{word-spacing:3.840003pt;}
.ws4b{word-spacing:4.691188pt;}
.ws18{word-spacing:4.788546pt;}
.ws4c{word-spacing:4.835255pt;}
.ws4d{word-spacing:7.735256pt;}
.ws4e{word-spacing:7.896035pt;}
.ws38{word-spacing:7.910327pt;}
.ws32{word-spacing:7.946055pt;}
.ws3a{word-spacing:8.117553pt;}
.ws19{word-spacing:9.018095pt;}
.ws8{word-spacing:12.916374pt;}
.ws1a{word-spacing:21.194119pt;}
.wsd{word-spacing:51.317659pt;}
.wse{word-spacing:70.439639pt;}
.ws10{word-spacing:73.943052pt;}
.wsf{word-spacing:78.769242pt;}
.ws11{word-spacing:80.400759pt;}
.wsc{word-spacing:91.779305pt;}
._17{margin-left:-15.657800pt;}
._18{margin-left:-14.720786pt;}
._16{margin-left:-9.181568pt;}
._b{margin-left:-6.216704pt;}
._5{margin-left:-4.954739pt;}
._6{margin-left:-3.825653pt;}
._3{margin-left:-2.909093pt;}
._0{margin-left:-1.912832pt;}
._9{margin-left:-0.956416pt;}
._2{width:0.956416pt;}
._7{width:1.912832pt;}
._15{width:3.383067pt;}
._4{width:4.304783pt;}
._c{width:11.046551pt;}
._8{width:17.481042pt;}
._13{width:18.862535pt;}
._a{width:19.996066pt;}
._1{width:22.571418pt;}
._14{width:26.703066pt;}
._e{width:90.117713pt;}
._10{width:106.288380pt;}
._11{width:111.122252pt;}
._12{width:112.748436pt;}
._f{width:122.464380pt;}
._d{width:161.297821pt;}
.fs10{font-size:20.318891pt;}
.fs15{font-size:23.771088pt;}
.fsf{font-size:25.398613pt;}
.fsa{font-size:26.124288pt;}
.fs13{font-size:31.748267pt;}
.fs5{font-size:31.880533pt;}
.fse{font-size:32.030404pt;}
.fs9{font-size:32.655360pt;}
.fsc{font-size:34.932071pt;}
.fs14{font-size:35.728666pt;}
.fs4{font-size:39.822720pt;}
.fs12{font-size:40.573333pt;}
.fsd{font-size:42.279994pt;}
.fs2{font-size:42.507200pt;}
.fs11{font-size:44.101333pt;}
.fsb{font-size:49.888525pt;}
.fs7{font-size:53.133867pt;}
.fs8{font-size:53.527467pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs3{font-size:108.622507pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:2.964000pt;}
.ya5{bottom:3.705000pt;}
.y27{bottom:3.809792pt;}
.y42{bottom:6.912262pt;}
.y8f{bottom:8.678706pt;}
.y24{bottom:10.340864pt;}
.y9{bottom:10.466645pt;}
.ya3{bottom:10.848383pt;}
.y6c{bottom:13.321818pt;}
.y89{bottom:15.663325pt;}
.y1c{bottom:18.504704pt;}
.y9e{bottom:18.785449pt;}
.yaa{bottom:25.333529pt;}
.y2f{bottom:25.546016pt;}
.yb{bottom:29.804264pt;}
.y92{bottom:32.739339pt;}
.y8a{bottom:32.739357pt;}
.ya9{bottom:33.270596pt;}
.y2e{bottom:33.709856pt;}
.y70{bottom:37.521404pt;}
.y26{bottom:39.147110pt;}
.y1d{bottom:39.254464pt;}
.y25{bottom:40.070848pt;}
.ya8{bottom:41.207663pt;}
.y9d{bottom:41.545333pt;}
.y2d{bottom:41.873696pt;}
.y81{bottom:45.088000pt;}
.y9f{bottom:46.083289pt;}
.ya7{bottom:49.144729pt;}
.y8b{bottom:49.837975pt;}
.yd1{bottom:49.885212pt;}
.y2c{bottom:50.037536pt;}
.y47{bottom:50.562667pt;}
.y6b{bottom:52.897333pt;}
.y96{bottom:52.937333pt;}
.yd{bottom:54.256000pt;}
.y2b{bottom:58.201376pt;}
.y30{bottom:59.325333pt;}
.y1e{bottom:60.004224pt;}
.y95{bottom:60.128000pt;}
.yd0{bottom:60.582202pt;}
.y34{bottom:60.952000pt;}
.y5e{bottom:62.582667pt;}
.y90{bottom:62.629806pt;}
.y80{bottom:63.153333pt;}
.y3e{bottom:65.162419pt;}
.y2a{bottom:66.365216pt;}
.y8c{bottom:66.914007pt;}
.y6a{bottom:68.837333pt;}
.ya4{bottom:69.020732pt;}
.y52{bottom:70.146667pt;}
.y43{bottom:70.183140pt;}
.ycf{bottom:71.279364pt;}
.y46{bottom:72.613333pt;}
.ya0{bottom:73.409363pt;}
.y29{bottom:74.529056pt;}
.y1b{bottom:77.390667pt;}
.y33{bottom:79.017333pt;}
.y1f{bottom:80.753984pt;}
.y5d{bottom:81.180000pt;}
.y28{bottom:82.692896pt;}
.y87{bottom:83.228000pt;}
.y8d{bottom:83.990039pt;}
.yc9{bottom:84.280737pt;}
.ya{bottom:84.283743pt;}
.y7d{bottom:84.990071pt;}
.y7f{bottom:85.204000pt;}
.y3f{bottom:85.492582pt;}
.y69{bottom:87.433333pt;}
.y51{bottom:88.212000pt;}
.y18{bottom:90.192000pt;}
.yba{bottom:91.686667pt;}
.y45{bottom:94.664000pt;}
.yc8{bottom:94.977900pt;}
.y94{bottom:99.297239pt;}
.y5c{bottom:99.777333pt;}
.ya1{bottom:100.707203pt;}
.ya6{bottom:100.707293pt;}
.y8e{bottom:101.066071pt;}
.y86{bottom:101.293333pt;}
.y20{bottom:101.537760pt;}
.y7e{bottom:103.269333pt;}
.y93{bottom:105.011927pt;}
.yc7{bottom:105.675062pt;}
.y40{bottom:106.017013pt;}
.y17{bottom:106.132000pt;}
.y68{bottom:107.358667pt;}
.y8{bottom:107.646667pt;}
.yb9{bottom:109.752000pt;}
.y50{bottom:110.262667pt;}
.yc6{bottom:116.372225pt;}
.y44{bottom:116.714667pt;}
.y5b{bottom:118.373333pt;}
.y7a{bottom:118.950403pt;}
.y7{bottom:120.265333pt;}
.yb1{bottom:120.746667pt;}
.y85{bottom:121.020000pt;}
.y16{bottom:122.072000pt;}
.y21{bottom:122.287520pt;}
.y6f{bottom:124.096693pt;}
.y67{bottom:125.425333pt;}
.yc5{bottom:127.068177pt;}
.y7b{bottom:127.449211pt;}
.y41{bottom:127.469752pt;}
.yb8{bottom:127.817333pt;}
.ya2{bottom:128.005043pt;}
.y4f{bottom:128.328000pt;}
.y6{bottom:132.885333pt;}
.y79{bottom:134.509333pt;}
.y5a{bottom:136.970667pt;}
.yc4{bottom:137.765340pt;}
.y15{bottom:138.012000pt;}
.y84{bottom:141.409333pt;}
.yb0{bottom:142.797333pt;}
.y22{bottom:143.037280pt;}
.yb7{bottom:145.882667pt;}
.yc{bottom:146.669843pt;}
.y66{bottom:147.476000pt;}
.yc3{bottom:148.462502pt;}
.y4e{bottom:150.378667pt;}
.y78{bottom:150.449333pt;}
.y3c{bottom:151.878667pt;}
.yd7{bottom:153.253716pt;}
.y3d{bottom:154.388731pt;}
.y59{bottom:155.568000pt;}
.y14{bottom:156.609333pt;}
.yc2{bottom:159.159664pt;}
.y83{bottom:159.476000pt;}
.yaf{bottom:160.864000pt;}
.y65{bottom:163.416000pt;}
.y23{bottom:163.787040pt;}
.y77{bottom:166.389333pt;}
.y5{bottom:166.520000pt;}
.yb6{bottom:167.933333pt;}
.y4d{bottom:168.445333pt;}
.yc1{bottom:169.856827pt;}
.y13{bottom:172.549333pt;}
.y3b{bottom:173.929333pt;}
.y58{bottom:174.164000pt;}
.y88{bottom:175.750667pt;}
.ycd{bottom:179.041630pt;}
.y82{bottom:179.201333pt;}
.y64{bottom:179.356000pt;}
.y7c{bottom:180.291451pt;}
.y76{bottom:182.330667pt;}
.yae{bottom:182.914667pt;}
.yc0{bottom:183.074647pt;}
.y4{bottom:184.585333pt;}
.yb5{bottom:185.998667pt;}
.ycc{bottom:189.737467pt;}
.y4c{bottom:190.496000pt;}
.y3a{bottom:191.994667pt;}
.y57{bottom:192.229333pt;}
.y12{bottom:192.474667pt;}
.ybf{bottom:193.771809pt;}
.y63{bottom:195.296000pt;}
.ycb{bottom:200.434629pt;}
.y9c{bottom:200.757333pt;}
.y75{bottom:200.926667pt;}
.yad{bottom:200.980000pt;}
.ybe{bottom:204.468972pt;}
.yb4{bottom:208.049333pt;}
.y11{bottom:210.540000pt;}
.yca{bottom:211.131792pt;}
.y4b{bottom:212.546667pt;}
.y62{bottom:213.893333pt;}
.y39{bottom:214.045333pt;}
.ybd{bottom:215.166134pt;}
.y6e{bottom:216.806139pt;}
.y9b{bottom:220.484000pt;}
.y74{bottom:220.852000pt;}
.yac{bottom:223.030667pt;}
.ybc{bottom:225.863297pt;}
.y56{bottom:226.489333pt;}
.yb3{bottom:230.100000pt;}
.y38{bottom:232.110667pt;}
.y10{bottom:232.590667pt;}
.y61{bottom:233.818667pt;}
.y4a{bottom:234.597333pt;}
.y3{bottom:236.204000pt;}
.ybb{bottom:236.560459pt;}
.y73{bottom:239.449333pt;}
.yab{bottom:241.096000pt;}
.y9a{bottom:247.862667pt;}
.y55{bottom:248.540000pt;}
.yce{bottom:249.706678pt;}
.y37{bottom:250.176000pt;}
.y60{bottom:251.884000pt;}
.yf{bottom:254.641333pt;}
.y2{bottom:254.801333pt;}
.y49{bottom:256.648000pt;}
.y98{bottom:257.840000pt;}
.y72{bottom:259.374667pt;}
.y32{bottom:264.844000pt;}
.yd5{bottom:265.589164pt;}
.y1a{bottom:265.928000pt;}
.y99{bottom:267.688000pt;}
.yd6{bottom:268.255243pt;}
.y54{bottom:268.929333pt;}
.y5f{bottom:269.949333pt;}
.y36{bottom:272.226667pt;}
.y1{bottom:273.398667pt;}
.y48{bottom:274.713333pt;}
.yd4{bottom:276.286327pt;}
.y71{bottom:277.440000pt;}
.yb2{bottom:280.046667pt;}
.y31{bottom:286.894667pt;}
.yd3{bottom:286.983489pt;}
.y19{bottom:287.978667pt;}
.y53{bottom:288.656000pt;}
.y6d{bottom:292.825044pt;}
.y35{bottom:294.277333pt;}
.yd2{bottom:297.680652pt;}
.y97{bottom:298.713333pt;}
.ye{bottom:336.093333pt;}
.h1a{height:18.820372pt;}
.h29{height:19.012228pt;}
.h18{height:23.209531pt;}
.h1f{height:23.525466pt;}
.ha{height:23.623475pt;}
.h10{height:24.197622pt;}
.h22{height:24.284327pt;}
.h26{height:24.755360pt;}
.h13{height:25.312106pt;}
.h24{height:25.645087pt;}
.h25{height:25.649928pt;}
.h1b{height:27.755605pt;}
.h27{height:28.575954pt;}
.h9{height:28.855916pt;}
.h28{height:29.676543pt;}
.h16{height:30.636480pt;}
.h5{height:31.497835pt;}
.h1e{height:34.694506pt;}
.hf{height:35.685777pt;}
.h12{height:36.149693pt;}
.h23{height:37.263882pt;}
.hd{height:37.950974pt;}
.hc{height:39.372195pt;}
.h4{height:43.112763pt;}
.h14{height:43.636400pt;}
.h3{height:43.982097pt;}
.h21{height:43.987430pt;}
.h2{height:47.246950pt;}
.h20{height:52.258425pt;}
.hb{height:56.696182pt;}
.h7{height:75.818510pt;}
.h1c{height:83.545733pt;}
.h19{height:114.293760pt;}
.h1d{height:142.867200pt;}
.h11{height:145.024346pt;}
.he{height:171.440640pt;}
.h17{height:193.303452pt;}
.h8{height:233.754389pt;}
.h15{height:315.295120pt;}
.h1{height:362.666667pt;}
.h6{height:362.810901pt;}
.h0{height:362.834667pt;}
.w6{width:134.693760pt;}
.w8{width:163.276800pt;}
.w7{width:204.064721pt;}
.w5{width:204.078704pt;}
.w9{width:204.096000pt;}
.w4{width:244.915200pt;}
.w3{width:326.538284pt;}
.w2{width:483.754400pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:3.237263pt;}
.x2b{left:4.594892pt;}
.x32{left:9.021345pt;}
.xe{left:11.338667pt;}
.x38{left:12.275150pt;}
.x2f{left:13.218667pt;}
.x13{left:14.231478pt;}
.x41{left:17.725057pt;}
.x36{left:19.468128pt;}
.x37{left:23.631006pt;}
.x1c{left:25.197333pt;}
.x1d{left:27.626667pt;}
.xf{left:36.033333pt;}
.xd{left:37.794667pt;}
.x14{left:39.158811pt;}
.x2d{left:40.681333pt;}
.x3c{left:42.520181pt;}
.x3a{left:46.511392pt;}
.x45{left:47.526667pt;}
.x8{left:49.233333pt;}
.x2{left:50.554667pt;}
.x2e{left:51.460000pt;}
.x1{left:54.622667pt;}
.x7{left:57.330667pt;}
.x4{left:58.241333pt;}
.x2c{left:61.172118pt;}
.x44{left:63.219870pt;}
.x10{left:65.068000pt;}
.x1f{left:66.453069pt;}
.x30{left:69.772000pt;}
.x15{left:72.794240pt;}
.xb{left:78.613333pt;}
.x16{left:80.089311pt;}
.x11{left:83.378667pt;}
.x39{left:84.439051pt;}
.x22{left:88.648268pt;}
.x3d{left:95.918770pt;}
.x3b{left:99.449178pt;}
.xa{left:102.692933pt;}
.x42{left:105.548813pt;}
.x20{left:108.332950pt;}
.x33{left:111.343137pt;}
.x34{left:112.875161pt;}
.x5{left:113.964000pt;}
.x12{left:119.432000pt;}
.x26{left:126.292000pt;}
.x25{left:127.500000pt;}
.x28{left:130.336000pt;}
.x27{left:131.542667pt;}
.x43{left:138.615427pt;}
.x23{left:139.630667pt;}
.x49{left:147.737909pt;}
.x9{left:152.780000pt;}
.x1a{left:157.012413pt;}
.x19{left:158.824106pt;}
.x21{left:162.738284pt;}
.x18{left:166.090604pt;}
.x17{left:167.902153pt;}
.x3e{left:173.098667pt;}
.x1b{left:175.037333pt;}
.x3{left:177.970667pt;}
.x48{left:188.163476pt;}
.x6{left:191.366667pt;}
.x24{left:205.017333pt;}
.x40{left:217.593333pt;}
.x3f{left:225.120000pt;}
.x1e{left:254.488000pt;}
.x46{left:257.225333pt;}
.x4a{left:259.704734pt;}
.x31{left:268.096000pt;}
.x35{left:274.897333pt;}
.xc{left:286.692334pt;}
.x29{left:336.125333pt;}
.x47{left:341.978403pt;}
.x4b{left:345.686778pt;}
}




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