
    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_1dc629aa65b86a72d4f5862b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_701ab4dc125c44768381875c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.770000;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_deac307e88a0a86112c5e6f0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_9b190c9d35c8c558cde763c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000488;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_6c203cc7534902ea7d69fb22.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_629c6ecd624888b02d1eac06.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_a66ec713147b6c73c5835a04.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_aefa1d276697f87a1141eadb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_2f6dd516f73fcf28dc5ec0f7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_987a7ca2371c6f76d262639a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.785000;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_9cd7cae2261d15d0b0084eeb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737000;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_8898352e2e224ee053f07b3d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.546000;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_e1a6211f2857534322967d10.woff')format("woff");}.ffd{font-family:ffd;line-height:0.772949;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_7dbcff5725f7fa6821f22c9a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.926000;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_5cc89e94012a8e5b13a80d88.woff')format("woff");}.fff{font-family:fff;line-height:1.005859;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_53f718193bfe3212a4f3dba4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.906738;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_9fc0bdc4e73d2ad0efbb1eaa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.966000;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_9606ba50218c5fdf125c58d6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.541000;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_4085d72d0de315df2bd289d9.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_f5b017e6ae3493202af2a995.woff')format("woff");}.ff14{font-family:ff14;line-height:0.770000;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_2718dcf4f7d0760f4ceb1114.woff')format("woff");}.ff15{font-family:ff15;line-height:0.549000;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_67ee4e8a11a905444bb2a4ce.woff')format("woff");}.ff16{font-family:ff16;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3da9217c553a342ee5e0acb8.woff')format("woff");}.ff17{font-family:ff17;line-height:1.008000;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_4b91a6915bacca64df4c3c83.woff')format("woff");}.ff18{font-family:ff18;line-height:0.951172;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_f1be7c2875042da79313997c.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_c8031b994065ae4470c35e11.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.951000;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_7e9d3d0270b137a0c5b57d30.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.549000;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:ff1c;src:url('chunks/assets/font_065d097b07932df400e18274.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.712000;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:ff1d;src:url('chunks/assets/font_eb2de6c45c21de3579fc3981.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.712000;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(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);}
.v2{vertical-align:-51.351000px;}
.v1{vertical-align:-5.578200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:122.576400px;}
.ls3e{letter-spacing:-24.000000px;}
.ls48{letter-spacing:-9.600000px;}
.ls1b{letter-spacing:-5.616000px;}
.ls1d{letter-spacing:-5.400000px;}
.lsa{letter-spacing:-4.800000px;}
.ls16{letter-spacing:-4.608000px;}
.ls46{letter-spacing:-4.176000px;}
.ls2f{letter-spacing:-3.600000px;}
.ls1e{letter-spacing:-2.475000px;}
.ls2{letter-spacing:-2.400000px;}
.ls1c{letter-spacing:-2.340000px;}
.ls36{letter-spacing:-1.800000px;}
.ls44{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.094080px;}
.ls28{letter-spacing:-0.090240px;}
.ls1a{letter-spacing:-0.076800px;}
.ls41{letter-spacing:-0.075840px;}
.ls35{letter-spacing:-0.075264px;}
.ls10{letter-spacing:-0.074250px;}
.ls25{letter-spacing:-0.072192px;}
.lsb{letter-spacing:-0.062370px;}
.ls43{letter-spacing:-0.060672px;}
.ls18{letter-spacing:-0.057600px;}
.ls31{letter-spacing:-0.056448px;}
.ls26{letter-spacing:-0.054144px;}
.ls42{letter-spacing:-0.045504px;}
.lsf{letter-spacing:-0.044550px;}
.lsc{letter-spacing:-0.041580px;}
.ls19{letter-spacing:-0.038400px;}
.ls30{letter-spacing:-0.037632px;}
.ls24{letter-spacing:-0.036096px;}
.ls3f{letter-spacing:-0.030336px;}
.ls45{letter-spacing:-0.019200px;}
.ls32{letter-spacing:-0.018816px;}
.ls23{letter-spacing:-0.018048px;}
.ls4{letter-spacing:-0.016800px;}
.lse{letter-spacing:-0.014850px;}
.ls1{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000360px;}
.ls7{letter-spacing:0.001158px;}
.ls1f{letter-spacing:0.001200px;}
.ls2c{letter-spacing:0.001320px;}
.ls8{letter-spacing:0.001500px;}
.ls3b{letter-spacing:0.001560px;}
.ls0{letter-spacing:0.001800px;}
.ls2b{letter-spacing:0.001920px;}
.ls3c{letter-spacing:0.008640px;}
.ls37{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.018048px;}
.ls12{letter-spacing:0.019200px;}
.ls5{letter-spacing:0.020790px;}
.ls9{letter-spacing:0.029700px;}
.ls2a{letter-spacing:0.030720px;}
.ls22{letter-spacing:0.036096px;}
.lsd{letter-spacing:0.044550px;}
.ls3d{letter-spacing:0.045504px;}
.ls3{letter-spacing:0.050400px;}
.ls27{letter-spacing:0.054144px;}
.ls34{letter-spacing:0.056448px;}
.ls17{letter-spacing:0.057600px;}
.ls11{letter-spacing:0.059400px;}
.ls40{letter-spacing:0.060672px;}
.ls14{letter-spacing:0.076800px;}
.ls13{letter-spacing:0.134400px;}
.ls2e{letter-spacing:0.150528px;}
.ls20{letter-spacing:0.153600px;}
.ls39{letter-spacing:79.480320px;}
.ls3a{letter-spacing:97.031520px;}
.ls2d{letter-spacing:98.595840px;}
.ls15{letter-spacing:100.608000px;}
.ls47{letter-spacing:110.976000px;}
.ls29{letter-spacing:124.866600px;}
.ls6{letter-spacing:158.004000px;}
.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;}
}
.ws27{word-spacing:-98.400000px;}
.ws3{word-spacing:-54.074790px;}
.ws5{word-spacing:-54.054000px;}
.wsc{word-spacing:-50.880000px;}
.ws1b{word-spacing:-49.996800px;}
.ws25{word-spacing:-49.977600px;}
.wse{word-spacing:-49.939200px;}
.ws1a{word-spacing:-49.920000px;}
.wsd{word-spacing:-49.862400px;}
.ws26{word-spacing:-49.843200px;}
.ws1e{word-spacing:-48.846336px;}
.ws19{word-spacing:-47.700000px;}
.ws14{word-spacing:-46.978944px;}
.ws17{word-spacing:-46.960896px;}
.ws15{word-spacing:-46.924800px;}
.ws16{word-spacing:-46.870656px;}
.ws12{word-spacing:-46.852608px;}
.ws20{word-spacing:-42.167040px;}
.ws24{word-spacing:-39.482304px;}
.ws23{word-spacing:-39.436800px;}
.ws21{word-spacing:-39.406464px;}
.ws8{word-spacing:-38.565450px;}
.ws9{word-spacing:-38.160000px;}
.ws10{word-spacing:-31.800000px;}
.ws1f{word-spacing:-28.368000px;}
.ws2{word-spacing:-24.960000px;}
.ws4{word-spacing:-0.207900px;}
.ws0{word-spacing:-0.198000px;}
.wsb{word-spacing:-0.192000px;}
.ws1c{word-spacing:-0.188160px;}
.ws11{word-spacing:-0.180480px;}
.ws18{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.151680px;}
.ws7{word-spacing:-0.148500px;}
.wsa{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:49.674240px;}
.ws13{word-spacing:50.642688px;}
.ws6{word-spacing:119.394000px;}
._1b{margin-left:-33.516000px;}
._2{margin-left:-22.770000px;}
._9{margin-left:-19.890000px;}
._f{margin-left:-18.330000px;}
._6{margin-left:-16.800000px;}
._b{margin-left:-13.860000px;}
._8{margin-left:-12.540000px;}
._3{margin-left:-10.890000px;}
._7{margin-left:-8.700000px;}
._a{margin-left:-7.200000px;}
._0{margin-left:-5.940000px;}
._4{margin-left:-3.960000px;}
._1{margin-left:-1.980000px;}
._5{width:1.980000px;}
._11{width:4.332000px;}
._1c{width:5.736000px;}
._18{width:9.600000px;}
._15{width:14.400000px;}
._17{width:16.800000px;}
._16{width:19.200000px;}
._19{width:79.480320px;}
._1a{width:97.031520px;}
._10{width:98.595840px;}
._d{width:100.608000px;}
._1d{width:110.976000px;}
._c{width:158.004000px;}
._e{width:261.660360px;}
._13{width:450.232800px;}
._12{width:1729.223400px;}
._14{width:2375.749200px;}
.fc11{color:rgb(107,141,173);}
.fcf{color:rgb(152,63,34);}
.fce{color:rgb(253,77,102);}
.fcd{color:rgb(74,74,74);}
.fc0{color:rgb(83,88,95);}
.fc1{color:rgb(83,88,95);}
.fc2{color:rgb(83,88,95);}
.fc3{color:rgb(83,88,95);}
.fc4{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc10{color:rgb(89,89,89);}
.fc6{color:rgb(4,51,255);}
.fc12{color:rgb(170,121,66);}
.fc7{color:rgb(0,144,81);}
.fcc{color:rgb(136,136,136);}
.fc9{color:rgb(255,147,0);}
.fc8{color:rgb(255,38,0);}
.fca{color:rgb(0,0,153);}
.fcb{color:rgb(227,131,0);}
.fsf{font-size:66.000000px;}
.fs15{font-size:66.360000px;}
.fs11{font-size:70.560000px;}
.fs12{font-size:84.000000px;}
.fs13{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:148.500000px;}
.fs14{font-size:151.680000px;}
.fs3{font-size:168.000000px;}
.fse{font-size:180.000000px;}
.fsd{font-size:180.480000px;}
.fs10{font-size:188.160000px;}
.fs2{font-size:192.000000px;}
.fs0{font-size:198.000000px;}
.fs5{font-size:207.900000px;}
.fsa{font-size:234.000000px;}
.fsc{font-size:247.500000px;}
.fsb{font-size:360.000000px;}
.fs9{font-size:374.400000px;}
.fs16{font-size:417.600000px;}
.fs8{font-size:460.800000px;}
.fs1{font-size:480.000000px;}
.y32{bottom:-53.940000px;}
.y0{bottom:0.000000px;}
.y28{bottom:9.060000px;}
.y2a{bottom:10.560000px;}
.y2c{bottom:12.060000px;}
.ya{bottom:14.430000px;}
.y26{bottom:16.560000px;}
.y50{bottom:19.800750px;}
.yc{bottom:33.013500px;}
.y9{bottom:55.278090px;}
.yb{bottom:55.278180px;}
.y97{bottom:123.649920px;}
.y73{bottom:124.945740px;}
.yac{bottom:132.743115px;}
.y3a{bottom:134.854785px;}
.y5b{bottom:135.862080px;}
.y95{bottom:136.264110px;}
.y8{bottom:138.186945px;}
.y51{bottom:148.221960px;}
.y4e{bottom:149.064510px;}
.y23{bottom:150.154950px;}
.y72{bottom:153.018750px;}
.y54{bottom:161.226300px;}
.y8a{bottom:169.192200px;}
.y3{bottom:170.968350px;}
.yab{bottom:173.191650px;}
.y5a{bottom:174.862050px;}
.y24{bottom:179.850000px;}
.y39{bottom:189.930000px;}
.y7{bottom:195.186900px;}
.y22{bottom:199.654950px;}
.y53{bottom:200.226300px;}
.y59{bottom:213.862050px;}
.y71{bottom:214.518750px;}
.yaa{bottom:224.191650px;}
.yb9{bottom:232.270650px;}
.y89{bottom:233.692200px;}
.y2{bottom:235.468350px;}
.y21{bottom:249.154950px;}
.y6{bottom:252.186900px;}
.y58{bottom:252.862050px;}
.y38{bottom:261.450000px;}
.y8d{bottom:274.323300px;}
.y5d{bottom:282.152700px;}
.y57{bottom:291.862050px;}
.yb8{bottom:296.770650px;}
.y88{bottom:298.192200px;}
.y20{bottom:298.654950px;}
.y1{bottom:299.968350px;}
.ya9{bottom:307.186650px;}
.y48{bottom:309.656250px;}
.y5{bottom:310.944750px;}
.y70{bottom:314.088750px;}
.y8c{bottom:329.823300px;}
.y37{bottom:331.470000px;}
.yc5{bottom:344.770650px;}
.y1f{bottom:348.154950px;}
.ya8{bottom:358.186650px;}
.yb7{bottom:361.270650px;}
.y47{bottom:374.156250px;}
.y8b{bottom:385.323300px;}
.y5e{bottom:387.152700px;}
.y1e{bottom:397.654950px;}
.y87{bottom:402.382200px;}
.y36{bottom:404.490000px;}
.ya7{bottom:409.186650px;}
.y6f{bottom:413.658750px;}
.yb6{bottom:425.770650px;}
.y46{bottom:438.656250px;}
.y1d{bottom:447.154950px;}
.y86{bottom:466.882200px;}
.y35{bottom:474.510000px;}
.y6e{bottom:475.158750px;}
.ya6{bottom:492.181650px;}
.y1c{bottom:496.654950px;}
.y45{bottom:503.156250px;}
.yb5{bottom:530.770650px;}
.y85{bottom:531.382200px;}
.ya5{bottom:543.181650px;}
.y34{bottom:546.030000px;}
.y1b{bottom:546.154950px;}
.yc4{bottom:554.770650px;}
.y44{bottom:567.656250px;}
.y6d{bottom:574.728750px;}
.yb4{bottom:595.270650px;}
.y1a{bottom:595.654950px;}
.y33{bottom:617.550000px;}
.ya4{bottom:626.176650px;}
.y93{bottom:627.060600px;}
.y43{bottom:632.156250px;}
.y84{bottom:635.572200px;}
.y19{bottom:645.154950px;}
.yc3{bottom:659.770650px;}
.y6c{bottom:674.298750px;}
.y31{bottom:690.570000px;}
.y18{bottom:694.654950px;}
.y42{bottom:696.656250px;}
.y4f{bottom:699.506100px;}
.y83{bottom:700.072200px;}
.yb3{bottom:700.270650px;}
.ya3{bottom:707.390550px;}
.y52{bottom:719.079450px;}
.y79{bottom:719.943750px;}
.yc2{bottom:724.270650px;}
.y17{bottom:744.154950px;}
.y41{bottom:761.156250px;}
.y30{bottom:762.090000px;}
.y82{bottom:764.572200px;}
.yb2{bottom:764.770650px;}
.y78{bottom:773.122200px;}
.y6b{bottom:773.868750px;}
.y92{bottom:780.523350px;}
.y16{bottom:793.654950px;}
.y4{bottom:796.248450px;}
.ya2{bottom:807.166650px;}
.y40{bottom:825.656250px;}
.y81{bottom:829.072200px;}
.yc1{bottom:829.270650px;}
.y2f{bottom:832.110000px;}
.y77{bottom:839.016750px;}
.yc0{bottom:839.525100px;}
.y15{bottom:843.154950px;}
.y7a{bottom:845.849550px;}
.ya1{bottom:858.166650px;}
.yb1{bottom:869.770650px;}
.y6a{bottom:873.438750px;}
.y14{bottom:892.654950px;}
.y80{bottom:893.572200px;}
.y2e{bottom:903.630000px;}
.ya0{bottom:909.166650px;}
.y3f{bottom:930.656250px;}
.yb0{bottom:934.270650px;}
.y69{bottom:934.938750px;}
.y13{bottom:942.154950px;}
.y76{bottom:942.622200px;}
.ybf{bottom:944.525100px;}
.y7f{bottom:958.072200px;}
.y2d{bottom:975.150000px;}
.y9f{bottom:990.380550px;}
.y12{bottom:991.654950px;}
.y3e{bottom:995.156250px;}
.y68{bottom:996.438750px;}
.y63{bottom:1007.122200px;}
.y75{bottom:1008.516750px;}
.ybe{bottom:1009.025100px;}
.y4b{bottom:1026.758250px;}
.yaf{bottom:1039.270650px;}
.y11{bottom:1041.154950px;}
.y2b{bottom:1046.670000px;}
.y3d{bottom:1059.656250px;}
.y7e{bottom:1062.262200px;}
.y9e{bottom:1070.656650px;}
.ybd{bottom:1073.525100px;}
.y94{bottom:1088.512050px;}
.y10{bottom:1095.005550px;}
.y67{bottom:1096.008750px;}
.y5f{bottom:1110.148500px;}
.y62{bottom:1112.122200px;}
.y29{bottom:1118.190000px;}
.y9d{bottom:1121.656650px;}
.y3c{bottom:1124.156250px;}
.y7d{bottom:1126.762200px;}
.y5c{bottom:1135.648500px;}
.ybc{bottom:1138.025100px;}
.yae{bottom:1144.270650px;}
.y66{bottom:1157.508750px;}
.y91{bottom:1173.024900px;}
.y61{bottom:1176.622200px;}
.y27{bottom:1191.210000px;}
.y7c{bottom:1191.262200px;}
.y96{bottom:1195.648200px;}
.y9c{bottom:1204.651650px;}
.yf{bottom:1205.600550px;}
.yad{bottom:1208.770650px;}
.y65{bottom:1219.008750px;}
.y4a{bottom:1227.434850px;}
.y60{bottom:1241.122200px;}
.y74{bottom:1242.516750px;}
.y99{bottom:1248.225000px;}
.y9b{bottom:1255.651650px;}
.y7b{bottom:1255.762200px;}
.y25{bottom:1262.730000px;}
.y8e{bottom:1273.496850px;}
.ye{bottom:1276.100550px;}
.y90{bottom:1278.024900px;}
.y49{bottom:1291.934850px;}
.y98{bottom:1294.725000px;}
.ybb{bottom:1312.967550px;}
.y64{bottom:1318.578750px;}
.y9a{bottom:1339.746600px;}
.y8f{bottom:1354.496400px;}
.y56{bottom:1376.900700px;}
.y4d{bottom:1378.003350px;}
.yd{bottom:1421.671950px;}
.y3b{bottom:1427.971950px;}
.yba{bottom:1437.271950px;}
.y4c{bottom:1449.571950px;}
.y55{bottom:1453.171950px;}
.h8{height:39.221820px;}
.h5{height:39.221910px;}
.h7{height:40.721910px;}
.h1e{height:43.989258px;}
.h17{height:58.860750px;}
.h22{height:62.302734px;}
.he{height:67.020000px;}
.h10{height:68.520000px;}
.h11{height:70.020000px;}
.h23{height:73.406250px;}
.hc{height:74.520000px;}
.h16{height:87.720000px;}
.h20{height:92.160000px;}
.h6{height:93.120000px;}
.h25{height:109.008000px;}
.h1d{height:109.152000px;}
.h27{height:110.878080px;}
.hb{height:111.744000px;}
.ha{height:113.622803px;}
.h26{height:116.055937px;}
.h4{height:128.542969px;}
.h21{height:129.024000px;}
.h1a{height:138.091875px;}
.hd{height:139.392000px;}
.h1b{height:139.680000px;}
.h1c{height:141.328050px;}
.h1f{height:143.968125px;}
.h3{height:145.875000px;}
.h13{height:146.906250px;}
.hf{height:148.992000px;}
.h1{height:153.648000px;}
.h9{height:159.071924px;}
.h15{height:181.584000px;}
.h19{height:192.060000px;}
.h24{height:231.584400px;}
.h18{height:279.360000px;}
.h14{height:290.534400px;}
.h28{height:324.057600px;}
.h12{height:357.580800px;}
.h2{height:372.480000px;}
.h0{height:1620.000000px;}
.w6{width:117.888810px;}
.w5{width:175.500000px;}
.w2{width:191.581500px;}
.w1{width:312.000000px;}
.w4{width:660.000000px;}
.w3{width:950.175000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x4{left:1.500000px;}
.x16{left:6.000000px;}
.x1e{left:8.940000px;}
.x13{left:11.454000px;}
.x25{left:14.653423px;}
.x11{left:20.334000px;}
.x24{left:26.533425px;}
.xf{left:33.870000px;}
.x15{left:42.822000px;}
.x23{left:61.273425px;}
.x27{left:96.521460px;}
.x20{left:120.156540px;}
.x1{left:147.900000px;}
.x40{left:176.910150px;}
.x3{left:180.000000px;}
.x8{left:183.000000px;}
.x2c{left:186.257850px;}
.x1a{left:197.269050px;}
.xd{left:206.496000px;}
.x2b{left:226.457850px;}
.x30{left:231.274500px;}
.x47{left:237.257850px;}
.x43{left:243.257850px;}
.x2d{left:268.757850px;}
.x48{left:280.457850px;}
.x44{left:297.257850px;}
.x26{left:304.588350px;}
.x3c{left:325.304550px;}
.x2e{left:330.797850px;}
.x45{left:335.098650px;}
.x49{left:393.257850px;}
.x21{left:406.641600px;}
.x3d{left:978.051600px;}
.x6{left:979.500000px;}
.x2f{left:1030.613850px;}
.x3a{left:1109.358150px;}
.xb{left:1160.954850px;}
.xc{left:1169.250000px;}
.x3b{left:1183.053300px;}
.x32{left:1323.745200px;}
.x28{left:1348.170000px;}
.x1b{left:1450.844250px;}
.x38{left:1651.140000px;}
.x1f{left:1658.370000px;}
.x2a{left:1736.056500px;}
.x3f{left:1740.243000px;}
.x2{left:1769.592000px;}
.xe{left:1833.750000px;}
.x37{left:1857.780000px;}
.xa{left:1860.003000px;}
.x41{left:1963.818000px;}
.x10{left:2013.750000px;}
.x18{left:2074.692000px;}
.x19{left:2117.892000px;}
.x31{left:2126.727000px;}
.x42{left:2158.830000px;}
.x12{left:2193.750000px;}
.x36{left:2197.824000px;}
.x1d{left:2236.222500px;}
.x1c{left:2241.663000px;}
.x17{left:2259.591000px;}
.x35{left:2290.074000px;}
.x34{left:2323.104000px;}
.x14{left:2373.750000px;}
.x5{left:2530.500000px;}
.x3e{left:2532.903000px;}
.x33{left:2593.305000px;}
.x46{left:2595.795000px;}
.x39{left:2599.185000px;}
.x22{left:2608.905000px;}
.x9{left:2610.045000px;}
.x7{left:2633.685000px;}
.x29{left:2665.800000px;}
@media print{
.v2{vertical-align:-45.645333pt;}
.v1{vertical-align:-4.958400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:108.956800pt;}
.ls3e{letter-spacing:-21.333333pt;}
.ls48{letter-spacing:-8.533333pt;}
.ls1b{letter-spacing:-4.992000pt;}
.ls1d{letter-spacing:-4.800000pt;}
.lsa{letter-spacing:-4.266667pt;}
.ls16{letter-spacing:-4.096000pt;}
.ls46{letter-spacing:-3.712000pt;}
.ls2f{letter-spacing:-3.200000pt;}
.ls1e{letter-spacing:-2.200000pt;}
.ls2{letter-spacing:-2.133333pt;}
.ls1c{letter-spacing:-2.080000pt;}
.ls36{letter-spacing:-1.600000pt;}
.ls44{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.083627pt;}
.ls28{letter-spacing:-0.080213pt;}
.ls1a{letter-spacing:-0.068267pt;}
.ls41{letter-spacing:-0.067413pt;}
.ls35{letter-spacing:-0.066901pt;}
.ls10{letter-spacing:-0.066000pt;}
.ls25{letter-spacing:-0.064171pt;}
.lsb{letter-spacing:-0.055440pt;}
.ls43{letter-spacing:-0.053931pt;}
.ls18{letter-spacing:-0.051200pt;}
.ls31{letter-spacing:-0.050176pt;}
.ls26{letter-spacing:-0.048128pt;}
.ls42{letter-spacing:-0.040448pt;}
.lsf{letter-spacing:-0.039600pt;}
.lsc{letter-spacing:-0.036960pt;}
.ls19{letter-spacing:-0.034133pt;}
.ls30{letter-spacing:-0.033451pt;}
.ls24{letter-spacing:-0.032085pt;}
.ls3f{letter-spacing:-0.026965pt;}
.ls45{letter-spacing:-0.017067pt;}
.ls32{letter-spacing:-0.016725pt;}
.ls23{letter-spacing:-0.016043pt;}
.ls4{letter-spacing:-0.014933pt;}
.lse{letter-spacing:-0.013200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000320pt;}
.ls7{letter-spacing:0.001029pt;}
.ls1f{letter-spacing:0.001067pt;}
.ls2c{letter-spacing:0.001173pt;}
.ls8{letter-spacing:0.001333pt;}
.ls3b{letter-spacing:0.001387pt;}
.ls0{letter-spacing:0.001600pt;}
.ls2b{letter-spacing:0.001707pt;}
.ls3c{letter-spacing:0.007680pt;}
.ls37{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.016043pt;}
.ls12{letter-spacing:0.017067pt;}
.ls5{letter-spacing:0.018480pt;}
.ls9{letter-spacing:0.026400pt;}
.ls2a{letter-spacing:0.027307pt;}
.ls22{letter-spacing:0.032085pt;}
.lsd{letter-spacing:0.039600pt;}
.ls3d{letter-spacing:0.040448pt;}
.ls3{letter-spacing:0.044800pt;}
.ls27{letter-spacing:0.048128pt;}
.ls34{letter-spacing:0.050176pt;}
.ls17{letter-spacing:0.051200pt;}
.ls11{letter-spacing:0.052800pt;}
.ls40{letter-spacing:0.053931pt;}
.ls14{letter-spacing:0.068267pt;}
.ls13{letter-spacing:0.119467pt;}
.ls2e{letter-spacing:0.133803pt;}
.ls20{letter-spacing:0.136533pt;}
.ls39{letter-spacing:70.649173pt;}
.ls3a{letter-spacing:86.250240pt;}
.ls2d{letter-spacing:87.640747pt;}
.ls15{letter-spacing:89.429333pt;}
.ls47{letter-spacing:98.645333pt;}
.ls29{letter-spacing:110.992533pt;}
.ls6{letter-spacing:140.448000pt;}
.ws27{word-spacing:-87.466667pt;}
.ws3{word-spacing:-48.066480pt;}
.ws5{word-spacing:-48.048000pt;}
.wsc{word-spacing:-45.226667pt;}
.ws1b{word-spacing:-44.441600pt;}
.ws25{word-spacing:-44.424533pt;}
.wse{word-spacing:-44.390400pt;}
.ws1a{word-spacing:-44.373333pt;}
.wsd{word-spacing:-44.322133pt;}
.ws26{word-spacing:-44.305067pt;}
.ws1e{word-spacing:-43.418965pt;}
.ws19{word-spacing:-42.400000pt;}
.ws14{word-spacing:-41.759061pt;}
.ws17{word-spacing:-41.743019pt;}
.ws15{word-spacing:-41.710933pt;}
.ws16{word-spacing:-41.662805pt;}
.ws12{word-spacing:-41.646763pt;}
.ws20{word-spacing:-37.481813pt;}
.ws24{word-spacing:-35.095381pt;}
.ws23{word-spacing:-35.054933pt;}
.ws21{word-spacing:-35.027968pt;}
.ws8{word-spacing:-34.280400pt;}
.ws9{word-spacing:-33.920000pt;}
.ws10{word-spacing:-28.266667pt;}
.ws1f{word-spacing:-25.216000pt;}
.ws2{word-spacing:-22.186667pt;}
.ws4{word-spacing:-0.184800pt;}
.ws0{word-spacing:-0.176000pt;}
.wsb{word-spacing:-0.170667pt;}
.ws1c{word-spacing:-0.167253pt;}
.ws11{word-spacing:-0.160427pt;}
.ws18{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.134827pt;}
.ws7{word-spacing:-0.132000pt;}
.wsa{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:44.154880pt;}
.ws13{word-spacing:45.015723pt;}
.ws6{word-spacing:106.128000pt;}
._1b{margin-left:-29.792000pt;}
._2{margin-left:-20.240000pt;}
._9{margin-left:-17.680000pt;}
._f{margin-left:-16.293333pt;}
._6{margin-left:-14.933333pt;}
._b{margin-left:-12.320000pt;}
._8{margin-left:-11.146667pt;}
._3{margin-left:-9.680000pt;}
._7{margin-left:-7.733333pt;}
._a{margin-left:-6.400000pt;}
._0{margin-left:-5.280000pt;}
._4{margin-left:-3.520000pt;}
._1{margin-left:-1.760000pt;}
._5{width:1.760000pt;}
._11{width:3.850667pt;}
._1c{width:5.098667pt;}
._18{width:8.533333pt;}
._15{width:12.800000pt;}
._17{width:14.933333pt;}
._16{width:17.066667pt;}
._19{width:70.649173pt;}
._1a{width:86.250240pt;}
._10{width:87.640747pt;}
._d{width:89.429333pt;}
._1d{width:98.645333pt;}
._c{width:140.448000pt;}
._e{width:232.586987pt;}
._13{width:400.206933pt;}
._12{width:1537.087467pt;}
._14{width:2111.777067pt;}
.fsf{font-size:58.666667pt;}
.fs15{font-size:58.986667pt;}
.fs11{font-size:62.720000pt;}
.fs12{font-size:74.666667pt;}
.fs13{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:132.000000pt;}
.fs14{font-size:134.826667pt;}
.fs3{font-size:149.333333pt;}
.fse{font-size:160.000000pt;}
.fsd{font-size:160.426667pt;}
.fs10{font-size:167.253333pt;}
.fs2{font-size:170.666667pt;}
.fs0{font-size:176.000000pt;}
.fs5{font-size:184.800000pt;}
.fsa{font-size:208.000000pt;}
.fsc{font-size:220.000000pt;}
.fsb{font-size:320.000000pt;}
.fs9{font-size:332.800000pt;}
.fs16{font-size:371.200000pt;}
.fs8{font-size:409.600000pt;}
.fs1{font-size:426.666667pt;}
.y32{bottom:-47.946667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:8.053333pt;}
.y2a{bottom:9.386667pt;}
.y2c{bottom:10.720000pt;}
.ya{bottom:12.826667pt;}
.y26{bottom:14.720000pt;}
.y50{bottom:17.600667pt;}
.yc{bottom:29.345333pt;}
.y9{bottom:49.136080pt;}
.yb{bottom:49.136160pt;}
.y97{bottom:109.911040pt;}
.y73{bottom:111.062880pt;}
.yac{bottom:117.993880pt;}
.y3a{bottom:119.870920pt;}
.y5b{bottom:120.766293pt;}
.y95{bottom:121.123653pt;}
.y8{bottom:122.832840pt;}
.y51{bottom:131.752853pt;}
.y4e{bottom:132.501787pt;}
.y23{bottom:133.471067pt;}
.y72{bottom:136.016667pt;}
.y54{bottom:143.312267pt;}
.y8a{bottom:150.393067pt;}
.y3{bottom:151.971867pt;}
.yab{bottom:153.948133pt;}
.y5a{bottom:155.432933pt;}
.y24{bottom:159.866667pt;}
.y39{bottom:168.826667pt;}
.y7{bottom:173.499467pt;}
.y22{bottom:177.471067pt;}
.y53{bottom:177.978933pt;}
.y59{bottom:190.099600pt;}
.y71{bottom:190.683333pt;}
.yaa{bottom:199.281467pt;}
.yb9{bottom:206.462800pt;}
.y89{bottom:207.726400pt;}
.y2{bottom:209.305200pt;}
.y21{bottom:221.471067pt;}
.y6{bottom:224.166133pt;}
.y58{bottom:224.766267pt;}
.y38{bottom:232.400000pt;}
.y8d{bottom:243.842933pt;}
.y5d{bottom:250.802400pt;}
.y57{bottom:259.432933pt;}
.yb8{bottom:263.796133pt;}
.y88{bottom:265.059733pt;}
.y20{bottom:265.471067pt;}
.y1{bottom:266.638533pt;}
.ya9{bottom:273.054800pt;}
.y48{bottom:275.250000pt;}
.y5{bottom:276.395333pt;}
.y70{bottom:279.190000pt;}
.y8c{bottom:293.176267pt;}
.y37{bottom:294.640000pt;}
.yc5{bottom:306.462800pt;}
.y1f{bottom:309.471067pt;}
.ya8{bottom:318.388133pt;}
.yb7{bottom:321.129467pt;}
.y47{bottom:332.583333pt;}
.y8b{bottom:342.509600pt;}
.y5e{bottom:344.135733pt;}
.y1e{bottom:353.471067pt;}
.y87{bottom:357.673067pt;}
.y36{bottom:359.546667pt;}
.ya7{bottom:363.721467pt;}
.y6f{bottom:367.696667pt;}
.yb6{bottom:378.462800pt;}
.y46{bottom:389.916667pt;}
.y1d{bottom:397.471067pt;}
.y86{bottom:415.006400pt;}
.y35{bottom:421.786667pt;}
.y6e{bottom:422.363333pt;}
.ya6{bottom:437.494800pt;}
.y1c{bottom:441.471067pt;}
.y45{bottom:447.250000pt;}
.yb5{bottom:471.796133pt;}
.y85{bottom:472.339733pt;}
.ya5{bottom:482.828133pt;}
.y34{bottom:485.360000pt;}
.y1b{bottom:485.471067pt;}
.yc4{bottom:493.129467pt;}
.y44{bottom:504.583333pt;}
.y6d{bottom:510.870000pt;}
.yb4{bottom:529.129467pt;}
.y1a{bottom:529.471067pt;}
.y33{bottom:548.933333pt;}
.ya4{bottom:556.601467pt;}
.y93{bottom:557.387200pt;}
.y43{bottom:561.916667pt;}
.y84{bottom:564.953067pt;}
.y19{bottom:573.471067pt;}
.yc3{bottom:586.462800pt;}
.y6c{bottom:599.376667pt;}
.y31{bottom:613.840000pt;}
.y18{bottom:617.471067pt;}
.y42{bottom:619.250000pt;}
.y4f{bottom:621.783200pt;}
.y83{bottom:622.286400pt;}
.yb3{bottom:622.462800pt;}
.ya3{bottom:628.791600pt;}
.y52{bottom:639.181733pt;}
.y79{bottom:639.950000pt;}
.yc2{bottom:643.796133pt;}
.y17{bottom:661.471067pt;}
.y41{bottom:676.583333pt;}
.y30{bottom:677.413333pt;}
.y82{bottom:679.619733pt;}
.yb2{bottom:679.796133pt;}
.y78{bottom:687.219733pt;}
.y6b{bottom:687.883333pt;}
.y92{bottom:693.798533pt;}
.y16{bottom:705.471067pt;}
.y4{bottom:707.776400pt;}
.ya2{bottom:717.481467pt;}
.y40{bottom:733.916667pt;}
.y81{bottom:736.953067pt;}
.yc1{bottom:737.129467pt;}
.y2f{bottom:739.653333pt;}
.y77{bottom:745.792667pt;}
.yc0{bottom:746.244533pt;}
.y15{bottom:749.471067pt;}
.y7a{bottom:751.866267pt;}
.ya1{bottom:762.814800pt;}
.yb1{bottom:773.129467pt;}
.y6a{bottom:776.390000pt;}
.y14{bottom:793.471067pt;}
.y80{bottom:794.286400pt;}
.y2e{bottom:803.226667pt;}
.ya0{bottom:808.148133pt;}
.y3f{bottom:827.250000pt;}
.yb0{bottom:830.462800pt;}
.y69{bottom:831.056667pt;}
.y13{bottom:837.471067pt;}
.y76{bottom:837.886400pt;}
.ybf{bottom:839.577867pt;}
.y7f{bottom:851.619733pt;}
.y2d{bottom:866.800000pt;}
.y9f{bottom:880.338267pt;}
.y12{bottom:881.471067pt;}
.y3e{bottom:884.583333pt;}
.y68{bottom:885.723333pt;}
.y63{bottom:895.219733pt;}
.y75{bottom:896.459333pt;}
.ybe{bottom:896.911200pt;}
.y4b{bottom:912.674000pt;}
.yaf{bottom:923.796133pt;}
.y11{bottom:925.471067pt;}
.y2b{bottom:930.373333pt;}
.y3d{bottom:941.916667pt;}
.y7e{bottom:944.233067pt;}
.y9e{bottom:951.694800pt;}
.ybd{bottom:954.244533pt;}
.y94{bottom:967.566267pt;}
.y10{bottom:973.338267pt;}
.y67{bottom:974.230000pt;}
.y5f{bottom:986.798667pt;}
.y62{bottom:988.553067pt;}
.y29{bottom:993.946667pt;}
.y9d{bottom:997.028133pt;}
.y3c{bottom:999.250000pt;}
.y7d{bottom:1001.566400pt;}
.y5c{bottom:1009.465333pt;}
.ybc{bottom:1011.577867pt;}
.yae{bottom:1017.129467pt;}
.y66{bottom:1028.896667pt;}
.y91{bottom:1042.688800pt;}
.y61{bottom:1045.886400pt;}
.y27{bottom:1058.853333pt;}
.y7c{bottom:1058.899733pt;}
.y96{bottom:1062.798400pt;}
.y9c{bottom:1070.801467pt;}
.yf{bottom:1071.644933pt;}
.yad{bottom:1074.462800pt;}
.y65{bottom:1083.563333pt;}
.y4a{bottom:1091.053200pt;}
.y60{bottom:1103.219733pt;}
.y74{bottom:1104.459333pt;}
.y99{bottom:1109.533333pt;}
.y9b{bottom:1116.134800pt;}
.y7b{bottom:1116.233067pt;}
.y25{bottom:1122.426667pt;}
.y8e{bottom:1131.997200pt;}
.ye{bottom:1134.311600pt;}
.y90{bottom:1136.022133pt;}
.y49{bottom:1148.386533pt;}
.y98{bottom:1150.866667pt;}
.ybb{bottom:1167.082267pt;}
.y64{bottom:1172.070000pt;}
.y9a{bottom:1190.885867pt;}
.y8f{bottom:1203.996800pt;}
.y56{bottom:1223.911733pt;}
.y4d{bottom:1224.891867pt;}
.yd{bottom:1263.708400pt;}
.y3b{bottom:1269.308400pt;}
.yba{bottom:1277.575067pt;}
.y4c{bottom:1288.508400pt;}
.y55{bottom:1291.708400pt;}
.h8{height:34.863840pt;}
.h5{height:34.863920pt;}
.h7{height:36.197253pt;}
.h1e{height:39.101562pt;}
.h17{height:52.320667pt;}
.h22{height:55.380208pt;}
.he{height:59.573333pt;}
.h10{height:60.906667pt;}
.h11{height:62.240000pt;}
.h23{height:65.250000pt;}
.hc{height:66.240000pt;}
.h16{height:77.973333pt;}
.h20{height:81.920000pt;}
.h6{height:82.773333pt;}
.h25{height:96.896000pt;}
.h1d{height:97.024000pt;}
.h27{height:98.558293pt;}
.hb{height:99.328000pt;}
.ha{height:100.998047pt;}
.h26{height:103.160833pt;}
.h4{height:114.260417pt;}
.h21{height:114.688000pt;}
.h1a{height:122.748333pt;}
.hd{height:123.904000pt;}
.h1b{height:124.160000pt;}
.h1c{height:125.624933pt;}
.h1f{height:127.971667pt;}
.h3{height:129.666667pt;}
.h13{height:130.583333pt;}
.hf{height:132.437333pt;}
.h1{height:136.576000pt;}
.h9{height:141.397266pt;}
.h15{height:161.408000pt;}
.h19{height:170.720000pt;}
.h24{height:205.852800pt;}
.h18{height:248.320000pt;}
.h14{height:258.252800pt;}
.h28{height:288.051200pt;}
.h12{height:317.849600pt;}
.h2{height:331.093333pt;}
.h0{height:1440.000000pt;}
.w6{width:104.790053pt;}
.w5{width:156.000000pt;}
.w2{width:170.294667pt;}
.w1{width:277.333333pt;}
.w4{width:586.666667pt;}
.w3{width:844.600000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.333333pt;}
.x16{left:5.333333pt;}
.x1e{left:7.946667pt;}
.x13{left:10.181333pt;}
.x25{left:13.025265pt;}
.x11{left:18.074667pt;}
.x24{left:23.585267pt;}
.xf{left:30.106667pt;}
.x15{left:38.064000pt;}
.x23{left:54.465267pt;}
.x27{left:85.796853pt;}
.x20{left:106.805813pt;}
.x1{left:131.466667pt;}
.x40{left:157.253467pt;}
.x3{left:160.000000pt;}
.x8{left:162.666667pt;}
.x2c{left:165.562533pt;}
.x1a{left:175.350267pt;}
.xd{left:183.552000pt;}
.x2b{left:201.295867pt;}
.x30{left:205.577333pt;}
.x47{left:210.895867pt;}
.x43{left:216.229200pt;}
.x2d{left:238.895867pt;}
.x48{left:249.295867pt;}
.x44{left:264.229200pt;}
.x26{left:270.745200pt;}
.x3c{left:289.159600pt;}
.x2e{left:294.042533pt;}
.x45{left:297.865467pt;}
.x49{left:349.562533pt;}
.x21{left:361.459200pt;}
.x3d{left:869.379200pt;}
.x6{left:870.666667pt;}
.x2f{left:916.101200pt;}
.x3a{left:986.096133pt;}
.xb{left:1031.959867pt;}
.xc{left:1039.333333pt;}
.x3b{left:1051.602933pt;}
.x32{left:1176.662400pt;}
.x28{left:1198.373333pt;}
.x1b{left:1289.639333pt;}
.x38{left:1467.680000pt;}
.x1f{left:1474.106667pt;}
.x2a{left:1543.161333pt;}
.x3f{left:1546.882667pt;}
.x2{left:1572.970667pt;}
.xe{left:1630.000000pt;}
.x37{left:1651.360000pt;}
.xa{left:1653.336000pt;}
.x41{left:1745.616000pt;}
.x10{left:1790.000000pt;}
.x18{left:1844.170667pt;}
.x19{left:1882.570667pt;}
.x31{left:1890.424000pt;}
.x42{left:1918.960000pt;}
.x12{left:1950.000000pt;}
.x36{left:1953.621333pt;}
.x1d{left:1987.753333pt;}
.x1c{left:1992.589333pt;}
.x17{left:2008.525333pt;}
.x35{left:2035.621333pt;}
.x34{left:2064.981333pt;}
.x14{left:2110.000000pt;}
.x5{left:2249.333333pt;}
.x3e{left:2251.469333pt;}
.x33{left:2305.160000pt;}
.x46{left:2307.373333pt;}
.x39{left:2310.386667pt;}
.x22{left:2319.026667pt;}
.x9{left:2320.040000pt;}
.x7{left:2341.053333pt;}
.x29{left:2369.600000pt;}
}




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