
    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_40d68549229a448ccdad9e8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_6b91086f111d584e2420bdc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_66a84ce360b46913a48e4ef7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_83ee552ef752caf984905eae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7859a9dd1c876755f2c463b8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9dd5b25289cc1af0d875f969.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_0735eb714fb4dab6fd6d1c02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.696000;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_f8a4f78fd294e6b93450ee03.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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_c3fe127a4f7868052dcbb6b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.839000;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_7ca59561edcb6d27bd7d034a.woff2')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_0e4fbc6bde67dff431a3a3ee.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_35e76d167bf5d7f1486ac3fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_b55d692273c26fba81f50993.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;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_f4acafdea1a5bda6147a1e0a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.451000;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_21bf884c856c519d3806ce27.woff2')format("woff");}.fff{font-family:fff;line-height:0.909000;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_d25b7e9f8481dc06d828bc85.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.904000;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_d5a36dccb26576cd59cbe4bc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.672000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,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);}
.m11{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.750000px;}
.v1{vertical-align:22.566000px;}
.v3{vertical-align:25.776000px;}
.v6{vertical-align:44.898000px;}
.v5{vertical-align:48.348000px;}
.v7{vertical-align:85.704000px;}
.v8{vertical-align:130.602000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002137px;}
.ls10{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.987971px;}
.ls1d{letter-spacing:2.990915px;}
.ls21{letter-spacing:4.647277px;}
.ls0{letter-spacing:7.166915px;}
.ls2{letter-spacing:7.172915px;}
.ls1e{letter-spacing:7.173181px;}
.ls25{letter-spacing:11.585464px;}
.ls5{letter-spacing:14.530921px;}
.ls7{letter-spacing:14.596376px;}
.ls6{letter-spacing:18.130924px;}
.ls1f{letter-spacing:18.183181px;}
.ls4{letter-spacing:18.196379px;}
.ls27{letter-spacing:19.309107px;}
.ls19{letter-spacing:21.141836px;}
.lsa{letter-spacing:21.164915px;}
.lsc{letter-spacing:21.167971px;}
.ls8{letter-spacing:21.666370px;}
.ls17{letter-spacing:23.432747px;}
.ls1c{letter-spacing:23.694565px;}
.ls14{letter-spacing:23.929462px;}
.ls18{letter-spacing:23.956384px;}
.ls1b{letter-spacing:24.470700px;}
.ls3{letter-spacing:24.803971px;}
.ls15{letter-spacing:25.069112px;}
.lsb{letter-spacing:25.352712px;}
.lsd{letter-spacing:25.355400px;}
.ls26{letter-spacing:25.658203px;}
.ls12{letter-spacing:25.880700px;}
.lse{letter-spacing:26.405971px;}
.ls20{letter-spacing:29.520025px;}
.ls16{letter-spacing:29.912752px;}
.ls1a{letter-spacing:30.305480px;}
.ls11{letter-spacing:65.876700px;}
.ls24{letter-spacing:77.702700px;}
.ls13{letter-spacing:82.244700px;}
.ls23{letter-spacing:133.789202px;}
.ls22{letter-spacing:211.514700px;}
.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;}
}
.ws18{word-spacing:-42.637126px;}
.ws43{word-spacing:-40.135410px;}
.ws42{word-spacing:-40.101999px;}
.ws35{word-spacing:-40.094363px;}
.ws3c{word-spacing:-40.090550px;}
.ws19{word-spacing:-33.453846px;}
.ws14{word-spacing:-32.727300px;}
.ws1b{word-spacing:-24.506202px;}
.ws1c{word-spacing:-24.440748px;}
.ws2f{word-spacing:-19.309107px;}
.ws24{word-spacing:-16.363650px;}
.ws10{word-spacing:-16.139475px;}
.ws4a{word-spacing:-15.643649px;}
.ws30{word-spacing:-15.584740px;}
.ws49{word-spacing:-14.530921px;}
.ws2{word-spacing:-14.166817px;}
.ws3f{word-spacing:-13.418193px;}
.ws50{word-spacing:-13.221829px;}
.ws53{word-spacing:-12.632738px;}
.ws2b{word-spacing:-12.567283px;}
.ws2d{word-spacing:-12.501829px;}
.ws38{word-spacing:-12.312010px;}
.ws16{word-spacing:-12.305465px;}
.ws45{word-spacing:-12.181101px;}
.ws39{word-spacing:-12.174556px;}
.ws21{word-spacing:-11.978192px;}
.ws40{word-spacing:-11.716373px;}
.wsf{word-spacing:-11.323646px;}
.wsa{word-spacing:-11.258191px;}
.ws12{word-spacing:-11.192737px;}
.ws4f{word-spacing:-11.061827px;}
.ws54{word-spacing:-10.996373px;}
.wsd{word-spacing:-10.930918px;}
.ws47{word-spacing:-10.865464px;}
.ws3{word-spacing:-10.819384px;}
.ws48{word-spacing:-10.800009px;}
.ws5{word-spacing:-10.759608px;}
.ws58{word-spacing:-10.734554px;}
.ws41{word-spacing:-10.675645px;}
.ws57{word-spacing:-10.669100px;}
.ws3a{word-spacing:-10.603645px;}
.ws28{word-spacing:-10.538191px;}
.ws26{word-spacing:-10.472736px;}
.ws13{word-spacing:-10.348372px;}
.ws33{word-spacing:-10.282918px;}
.ws23{word-spacing:-10.152008px;}
.ws34{word-spacing:-10.086554px;}
.ws17{word-spacing:-10.021099px;}
.ws55{word-spacing:-10.014554px;}
.ws7{word-spacing:-9.982525px;}
.ws44{word-spacing:-9.955645px;}
.ws22{word-spacing:-9.890190px;}
.ws4{word-spacing:-9.868952px;}
.ws3d{word-spacing:-9.759281px;}
.ws59{word-spacing:-9.752735px;}
.ws8{word-spacing:-9.743423px;}
.ws3b{word-spacing:-9.693826px;}
.ws20{word-spacing:-9.621826px;}
.ws1f{word-spacing:-9.556372px;}
.ws37{word-spacing:-9.497462px;}
.ws6{word-spacing:-8.727238px;}
.ws27{word-spacing:-8.646553px;}
.ws4d{word-spacing:-8.378189px;}
.ws4e{word-spacing:-8.247280px;}
.ws36{word-spacing:-7.795643px;}
.ws31{word-spacing:-7.599279px;}
.wsb{word-spacing:-7.592734px;}
.ws46{word-spacing:-7.265461px;}
.ws4c{word-spacing:-7.069097px;}
.ws3e{word-spacing:-7.010188px;}
.ws4b{word-spacing:-7.003642px;}
.ws25{word-spacing:-6.152732px;}
.ws52{word-spacing:-5.635641px;}
.ws51{word-spacing:-5.563641px;}
.wsc{word-spacing:-5.170913px;}
.ws1e{word-spacing:-4.974550px;}
.ws1d{word-spacing:-3.469094px;}
.ws5a{word-spacing:-2.618184px;}
.wse{word-spacing:-0.065455px;}
.ws15{word-spacing:0.000000px;}
.ws1a{word-spacing:14.465467px;}
.ws56{word-spacing:14.661830px;}
.ws2a{word-spacing:18.065470px;}
.ws11{word-spacing:18.130924px;}
.ws32{word-spacing:22.974565px;}
.ws1{word-spacing:23.312640px;}
.ws29{word-spacing:23.843384px;}
.ws0{word-spacing:31.091012px;}
.ws2c{word-spacing:37.905528px;}
.ws9{word-spacing:48.418425px;}
.ws2e{word-spacing:387.384348px;}
._14{margin-left:-10.930918px;}
._0{margin-left:-5.474497px;}
._5{margin-left:-4.407184px;}
._1{margin-left:-2.685602px;}
._2{margin-left:-1.673717px;}
._3{width:1.673717px;}
._4{width:2.685602px;}
._13{width:5.411006px;}
._15{width:16.020751px;}
._e{width:17.367194px;}
._d{width:22.145380px;}
._12{width:25.287201px;}
._7{width:28.081385px;}
._8{width:29.912752px;}
._f{width:32.278950px;}
._16{width:65.744521px;}
._9{width:66.960056px;}
._a{width:85.287344px;}
._6{width:96.836850px;}
._c{width:99.621901px;}
._b{width:179.607422px;}
._10{width:362.491964px;}
._11{width:378.853964px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:61.467000px;}
.y8d{bottom:106.299000px;}
.yb6{bottom:124.780500px;}
.y8c{bottom:126.622500px;}
.yb5{bottom:145.104000px;}
.y8b{bottom:146.947500px;}
.y1f{bottom:149.004000px;}
.yb4{bottom:165.427500px;}
.y8a{bottom:167.271000px;}
.y1e{bottom:169.327500px;}
.yb3{bottom:185.752500px;}
.y70{bottom:191.728500px;}
.y1d{bottom:199.413000px;}
.yb2{bottom:206.076000px;}
.y6f{bottom:212.052000px;}
.y89{bottom:220.594500px;}
.y6e{bottom:232.377000px;}
.y1c{bottom:237.306000px;}
.y88{bottom:240.918000px;}
.y1b{bottom:242.949000px;}
.yb1{bottom:252.366000px;}
.y87{bottom:261.241500px;}
.y6d{bottom:271.344000px;}
.y1a{bottom:276.723000px;}
.y86{bottom:281.565000px;}
.y67{bottom:287.941500px;}
.y66{bottom:292.425000px;}
.y6c{bottom:293.638500px;}
.y65{bottom:296.907000px;}
.y64{bottom:301.390500px;}
.y85{bottom:302.487000px;}
.y63{bottom:305.874000px;}
.y62{bottom:310.357500px;}
.y19{bottom:310.495500px;}
.y6b{bottom:311.991000px;}
.yb0{bottom:313.687500px;}
.y61{bottom:314.841000px;}
.y58{bottom:324.199500px;}
.yaf{bottom:334.011000px;}
.y6a{bottom:334.285500px;}
.y60{bottom:341.740500px;}
.y5f{bottom:346.224000px;}
.y18{bottom:348.390000px;}
.y5e{bottom:350.706000px;}
.y69{bottom:352.636500px;}
.y17{bottom:354.031500px;}
.yae{bottom:354.334500px;}
.y5d{bottom:355.189500px;}
.y5c{bottom:359.673000px;}
.y84{bottom:359.793000px;}
.y5b{bottom:364.156500px;}
.y5a{bottom:368.640000px;}
.yad{bottom:374.658000px;}
.y68{bottom:374.932500px;}
.y59{bottom:382.089000px;}
.y83{bottom:388.296000px;}
.yac{bottom:394.981500px;}
.y16{bottom:400.323000px;}
.y57{bottom:403.170000px;}
.y56{bottom:408.811500px;}
.y82{bottom:433.033500px;}
.yab{bottom:438.517500px;}
.y55{bottom:455.103000px;}
.yaa{bottom:458.841000px;}
.y15{bottom:461.643000px;}
.y81{bottom:475.393500px;}
.ya9{bottom:479.166000px;}
.y14{bottom:481.966500px;}
.ya8{bottom:499.489500px;}
.y80{bottom:503.895000px;}
.y13{bottom:513.087000px;}
.y54{bottom:516.423000px;}
.ya7{bottom:519.813000px;}
.y12{bottom:525.172500px;}
.y53{bottom:536.746500px;}
.y7f{bottom:548.634000px;}
.ya6{bottom:549.018000px;}
.y11{bottom:555.492000px;}
.y52{bottom:557.071500px;}
.ya5{bottom:560.242500px;}
.yd1{bottom:566.367000px;}
.y10{bottom:585.577500px;}
.yd0{bottom:586.692000px;}
.y51{bottom:590.844000px;}
.y7e{bottom:590.992500px;}
.ya4{bottom:602.731500px;}
.yf{bottom:605.901000px;}
.ycf{bottom:607.015500px;}
.y50{bottom:611.167500px;}
.y7d{bottom:619.494000px;}
.ya3{bottom:623.056500px;}
.ye{bottom:626.224500px;}
.yce{bottom:627.339000px;}
.yd{bottom:646.549500px;}
.ycd{bottom:647.662500px;}
.y4f{bottom:650.136000px;}
.ya2{bottom:656.829000px;}
.y7c{bottom:664.233000px;}
.y49{bottom:666.732000px;}
.ycc{bottom:667.986000px;}
.y48{bottom:671.215500px;}
.y4e{bottom:672.430500px;}
.y47{bottom:675.699000px;}
.ya1{bottom:677.152500px;}
.y46{bottom:680.182500px;}
.y45{bottom:684.666000px;}
.y44{bottom:689.149500px;}
.y4d{bottom:690.781500px;}
.ya0{bottom:691.834500px;}
.yc{bottom:692.839500px;}
.y43{bottom:693.631500px;}
.y9e{bottom:697.477500px;}
.ycb{bottom:698.073000px;}
.y3a{bottom:702.991500px;}
.y9f{bottom:703.920000px;}
.y7b{bottom:706.593000px;}
.y4c{bottom:713.077500px;}
.yca{bottom:718.396500px;}
.y42{bottom:720.531000px;}
.y41{bottom:725.014500px;}
.y9d{bottom:725.449500px;}
.y40{bottom:729.498000px;}
.y4b{bottom:731.428500px;}
.y7a{bottom:733.635000px;}
.y3f{bottom:733.981500px;}
.y9c{bottom:736.674000px;}
.y3e{bottom:738.465000px;}
.yc9{bottom:738.720000px;}
.y3d{bottom:742.947000px;}
.y3c{bottom:747.430500px;}
.y4a{bottom:753.723000px;}
.yb{bottom:754.159500px;}
.y79{bottom:758.442000px;}
.yc8{bottom:759.045000px;}
.y3b{bottom:760.881000px;}
.y9b{bottom:763.374000px;}
.ya{bottom:772.093500px;}
.yc7{bottom:773.725500px;}
.yc5{bottom:779.368500px;}
.y39{bottom:781.960500px;}
.y9a{bottom:783.697500px;}
.yc6{bottom:785.811000px;}
.y38{bottom:787.603500px;}
.y9{bottom:790.026000px;}
.y78{bottom:798.577500px;}
.yc4{bottom:799.692000px;}
.y8{bottom:807.958500px;}
.y99{bottom:812.902500px;}
.y98{bottom:824.128500px;}
.y7{bottom:825.891000px;}
.y37{bottom:833.893500px;}
.y6{bottom:843.823500px;}
.y77{bottom:844.867500px;}
.yc3{bottom:852.675000px;}
.y97{bottom:866.617500px;}
.yc2{bottom:873.000000px;}
.y5{bottom:876.376500px;}
.y96{bottom:886.941000px;}
.y36{bottom:895.215000px;}
.y76{bottom:905.706000px;}
.yc1{bottom:906.772500px;}
.y35{bottom:915.538500px;}
.y95{bottom:920.713500px;}
.y75{bottom:926.029500px;}
.yc0{bottom:927.096000px;}
.y34{bottom:935.862000px;}
.y4{bottom:939.937500px;}
.y94{bottom:941.038500px;}
.ybf{bottom:947.421000px;}
.y93{bottom:961.362000px;}
.y74{bottom:967.006500px;}
.ybe{bottom:967.744500px;}
.y92{bottom:981.685500px;}
.y33{bottom:982.146000px;}
.y3{bottom:986.386500px;}
.ybd{bottom:988.068000px;}
.y2f{bottom:991.147500px;}
.y2e{bottom:995.631000px;}
.y73{bottom:999.756000px;}
.y2d{bottom:1000.114500px;}
.y2c{bottom:1004.598000px;}
.y32{bottom:1007.265000px;}
.y2b{bottom:1009.080000px;}
.ybc{bottom:1018.155000px;}
.y24{bottom:1018.440000px;}
.y91{bottom:1018.447500px;}
.y31{bottom:1029.559500px;}
.y72{bottom:1032.505500px;}
.y2a{bottom:1035.979500px;}
.ybb{bottom:1038.478500px;}
.y29{bottom:1040.463000px;}
.y2{bottom:1041.616500px;}
.y28{bottom:1044.946500px;}
.y27{bottom:1049.430000px;}
.y30{bottom:1053.159000px;}
.y26{bottom:1053.913500px;}
.y90{bottom:1055.209500px;}
.yba{bottom:1058.802000px;}
.y25{bottom:1067.362500px;}
.y71{bottom:1073.482500px;}
.y1{bottom:1074.493500px;}
.yb9{bottom:1079.125500px;}
.y8f{bottom:1084.414500px;}
.y23{bottom:1088.163000px;}
.y22{bottom:1093.806000px;}
.y8e{bottom:1095.639000px;}
.yb8{bottom:1099.449000px;}
.yb7{bottom:1119.774000px;}
.y21{bottom:1140.097500px;}
.hd{height:2.391024px;}
.h8{height:32.278905px;}
.h13{height:41.629126px;}
.h4{height:42.082022px;}
.h5{height:44.831700px;}
.h18{height:44.836401px;}
.h12{height:46.080038px;}
.h7{height:49.090950px;}
.h3{height:50.498765px;}
.hf{height:58.048905px;}
.ha{height:58.054905px;}
.h6{height:60.598349px;}
.h19{height:67.408401px;}
.h9{height:71.656950px;}
.hb{height:71.662950px;}
.h2{height:72.201388px;}
.h10{height:80.620905px;}
.hc{height:80.626905px;}
.h15{height:93.370950px;}
.h14{height:93.376950px;}
.he{height:93.988950px;}
.h11{height:93.994950px;}
.h16{height:132.993024px;}
.h17{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:104.994000px;}
.x8{left:106.299000px;}
.x1{left:118.024500px;}
.x1c{left:131.913000px;}
.x1b{left:135.549000px;}
.x3f{left:142.153500px;}
.x7{left:147.208500px;}
.x40{left:150.499500px;}
.x41{left:164.073000px;}
.x6{left:169.624500px;}
.x1d{left:232.366500px;}
.x22{left:235.872000px;}
.x23{left:256.795500px;}
.x2e{left:264.943500px;}
.x2f{left:277.809000px;}
.x30{left:295.810500px;}
.x1e{left:310.093500px;}
.x31{left:314.034000px;}
.x2b{left:317.190000px;}
.x32{left:328.515000px;}
.x1f{left:330.619500px;}
.x13{left:342.699000px;}
.x15{left:347.793000px;}
.xf{left:349.587000px;}
.x3{left:352.593000px;}
.xb{left:369.018000px;}
.x14{left:370.804500px;}
.x27{left:372.103500px;}
.x4{left:375.831000px;}
.x2c{left:379.150500px;}
.x25{left:397.627500px;}
.x28{left:404.404500px;}
.x24{left:405.822000px;}
.x2{left:409.728000px;}
.x5{left:412.038000px;}
.x10{left:414.130500px;}
.xd{left:415.719000px;}
.x9{left:427.065000px;}
.x11{left:429.208500px;}
.x16{left:432.090000px;}
.xc{left:442.366500px;}
.x12{left:443.884500px;}
.x17{left:446.181000px;}
.x20{left:447.856500px;}
.xa{left:450.637500px;}
.x26{left:462.145500px;}
.x21{left:463.450500px;}
.xe{left:478.998000px;}
.x18{left:502.527000px;}
.x3c{left:524.700000px;}
.x19{left:529.180500px;}
.x3d{left:536.518500px;}
.x2d{left:543.571500px;}
.x3e{left:565.303500px;}
.x33{left:606.733500px;}
.x39{left:618.625500px;}
.x34{left:632.293500px;}
.x35{left:646.548000px;}
.x36{left:654.729000px;}
.x29{left:662.145000px;}
.x2a{left:670.288500px;}
.x3a{left:709.630500px;}
.x37{left:721.900500px;}
.x3b{left:730.276500px;}
.x38{left:738.732000px;}
@media print{
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.333333pt;}
.v1{vertical-align:20.058667pt;}
.v3{vertical-align:22.912000pt;}
.v6{vertical-align:39.909333pt;}
.v5{vertical-align:42.976000pt;}
.v7{vertical-align:76.181333pt;}
.v8{vertical-align:116.090667pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.001899pt;}
.ls10{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.655975pt;}
.ls1d{letter-spacing:2.658591pt;}
.ls21{letter-spacing:4.130913pt;}
.ls0{letter-spacing:6.370591pt;}
.ls2{letter-spacing:6.375925pt;}
.ls1e{letter-spacing:6.376161pt;}
.ls25{letter-spacing:10.298190pt;}
.ls5{letter-spacing:12.916374pt;}
.ls7{letter-spacing:12.974556pt;}
.ls6{letter-spacing:16.116377pt;}
.ls1f{letter-spacing:16.162827pt;}
.ls4{letter-spacing:16.174559pt;}
.ls27{letter-spacing:17.163651pt;}
.ls19{letter-spacing:18.792743pt;}
.lsa{letter-spacing:18.813258pt;}
.lsc{letter-spacing:18.815975pt;}
.ls8{letter-spacing:19.258995pt;}
.ls17{letter-spacing:20.829108pt;}
.ls1c{letter-spacing:21.061836pt;}
.ls14{letter-spacing:21.270633pt;}
.ls18{letter-spacing:21.294563pt;}
.ls1b{letter-spacing:21.751733pt;}
.ls3{letter-spacing:22.047975pt;}
.ls15{letter-spacing:22.283655pt;}
.lsb{letter-spacing:22.535744pt;}
.lsd{letter-spacing:22.538133pt;}
.ls26{letter-spacing:22.807292pt;}
.ls12{letter-spacing:23.005067pt;}
.lse{letter-spacing:23.471975pt;}
.ls20{letter-spacing:26.240022pt;}
.ls16{letter-spacing:26.589113pt;}
.ls1a{letter-spacing:26.938204pt;}
.ls11{letter-spacing:58.557067pt;}
.ls24{letter-spacing:69.069067pt;}
.ls13{letter-spacing:73.106400pt;}
.ls23{letter-spacing:118.923735pt;}
.ls22{letter-spacing:188.013067pt;}
.ws18{word-spacing:-37.899668pt;}
.ws43{word-spacing:-35.675920pt;}
.ws42{word-spacing:-35.646222pt;}
.ws35{word-spacing:-35.639434pt;}
.ws3c{word-spacing:-35.636044pt;}
.ws19{word-spacing:-29.736752pt;}
.ws14{word-spacing:-29.090933pt;}
.ws1b{word-spacing:-21.783291pt;}
.ws1c{word-spacing:-21.725109pt;}
.ws2f{word-spacing:-17.163651pt;}
.ws24{word-spacing:-14.545467pt;}
.ws10{word-spacing:-14.346200pt;}
.ws4a{word-spacing:-13.905466pt;}
.ws30{word-spacing:-13.853102pt;}
.ws49{word-spacing:-12.916374pt;}
.ws2{word-spacing:-12.592726pt;}
.ws3f{word-spacing:-11.927283pt;}
.ws50{word-spacing:-11.752737pt;}
.ws53{word-spacing:-11.229100pt;}
.ws2b{word-spacing:-11.170918pt;}
.ws2d{word-spacing:-11.112737pt;}
.ws38{word-spacing:-10.944009pt;}
.ws16{word-spacing:-10.938191pt;}
.ws45{word-spacing:-10.827645pt;}
.ws39{word-spacing:-10.821827pt;}
.ws21{word-spacing:-10.647282pt;}
.ws40{word-spacing:-10.414554pt;}
.wsf{word-spacing:-10.065463pt;}
.wsa{word-spacing:-10.007281pt;}
.ws12{word-spacing:-9.949099pt;}
.ws4f{word-spacing:-9.832735pt;}
.ws54{word-spacing:-9.774554pt;}
.wsd{word-spacing:-9.716372pt;}
.ws47{word-spacing:-9.658190pt;}
.ws3{word-spacing:-9.617230pt;}
.ws48{word-spacing:-9.600008pt;}
.ws5{word-spacing:-9.564096pt;}
.ws58{word-spacing:-9.541826pt;}
.ws41{word-spacing:-9.489462pt;}
.ws57{word-spacing:-9.483644pt;}
.ws3a{word-spacing:-9.425462pt;}
.ws28{word-spacing:-9.367281pt;}
.ws26{word-spacing:-9.309099pt;}
.ws13{word-spacing:-9.198553pt;}
.ws33{word-spacing:-9.140371pt;}
.ws23{word-spacing:-9.024008pt;}
.ws34{word-spacing:-8.965826pt;}
.ws17{word-spacing:-8.907644pt;}
.ws55{word-spacing:-8.901826pt;}
.ws7{word-spacing:-8.873356pt;}
.ws44{word-spacing:-8.849462pt;}
.ws22{word-spacing:-8.791280pt;}
.ws4{word-spacing:-8.772401pt;}
.ws3d{word-spacing:-8.674916pt;}
.ws59{word-spacing:-8.669098pt;}
.ws8{word-spacing:-8.660820pt;}
.ws3b{word-spacing:-8.616734pt;}
.ws20{word-spacing:-8.552734pt;}
.ws1f{word-spacing:-8.494553pt;}
.ws37{word-spacing:-8.442189pt;}
.ws6{word-spacing:-7.757545pt;}
.ws27{word-spacing:-7.685825pt;}
.ws4d{word-spacing:-7.447279pt;}
.ws4e{word-spacing:-7.330915pt;}
.ws36{word-spacing:-6.929460pt;}
.ws31{word-spacing:-6.754915pt;}
.wsb{word-spacing:-6.749097pt;}
.ws46{word-spacing:-6.458187pt;}
.ws4c{word-spacing:-6.283642pt;}
.ws3e{word-spacing:-6.231278pt;}
.ws4b{word-spacing:-6.225460pt;}
.ws25{word-spacing:-5.469095pt;}
.ws52{word-spacing:-5.009459pt;}
.ws51{word-spacing:-4.945459pt;}
.wsc{word-spacing:-4.596367pt;}
.ws1e{word-spacing:-4.421822pt;}
.ws1d{word-spacing:-3.083639pt;}
.ws5a{word-spacing:-2.327275pt;}
.wse{word-spacing:-0.058182pt;}
.ws15{word-spacing:0.000000pt;}
.ws1a{word-spacing:12.858193pt;}
.ws56{word-spacing:13.032738pt;}
.ws2a{word-spacing:16.058195pt;}
.ws11{word-spacing:16.116377pt;}
.ws32{word-spacing:20.421835pt;}
.ws1{word-spacing:20.722347pt;}
.ws29{word-spacing:21.194119pt;}
.ws0{word-spacing:27.636455pt;}
.ws2c{word-spacing:33.693803pt;}
.ws9{word-spacing:43.038600pt;}
.ws2e{word-spacing:344.341643pt;}
._14{margin-left:-9.716372pt;}
._0{margin-left:-4.866220pt;}
._5{margin-left:-3.917497pt;}
._1{margin-left:-2.387202pt;}
._2{margin-left:-1.487748pt;}
._3{width:1.487748pt;}
._4{width:2.387202pt;}
._13{width:4.809783pt;}
._15{width:14.240667pt;}
._e{width:15.437506pt;}
._d{width:19.684782pt;}
._12{width:22.477512pt;}
._7{width:24.961231pt;}
._8{width:26.589113pt;}
._f{width:28.692400pt;}
._16{width:58.439574pt;}
._9{width:59.520050pt;}
._a{width:75.810972pt;}
._6{width:86.077200pt;}
._c{width:88.552801pt;}
._b{width:159.651042pt;}
._10{width:322.215079pt;}
._11{width:336.759079pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:54.637333pt;}
.y8d{bottom:94.488000pt;}
.yb6{bottom:110.916000pt;}
.y8c{bottom:112.553333pt;}
.yb5{bottom:128.981333pt;}
.y8b{bottom:130.620000pt;}
.y1f{bottom:132.448000pt;}
.yb4{bottom:147.046667pt;}
.y8a{bottom:148.685333pt;}
.y1e{bottom:150.513333pt;}
.yb3{bottom:165.113333pt;}
.y70{bottom:170.425333pt;}
.y1d{bottom:177.256000pt;}
.yb2{bottom:183.178667pt;}
.y6f{bottom:188.490667pt;}
.y89{bottom:196.084000pt;}
.y6e{bottom:206.557333pt;}
.y1c{bottom:210.938667pt;}
.y88{bottom:214.149333pt;}
.y1b{bottom:215.954667pt;}
.yb1{bottom:224.325333pt;}
.y87{bottom:232.214667pt;}
.y6d{bottom:241.194667pt;}
.y1a{bottom:245.976000pt;}
.y86{bottom:250.280000pt;}
.y67{bottom:255.948000pt;}
.y66{bottom:259.933333pt;}
.y6c{bottom:261.012000pt;}
.y65{bottom:263.917333pt;}
.y64{bottom:267.902667pt;}
.y85{bottom:268.877333pt;}
.y63{bottom:271.888000pt;}
.y62{bottom:275.873333pt;}
.y19{bottom:275.996000pt;}
.y6b{bottom:277.325333pt;}
.yb0{bottom:278.833333pt;}
.y61{bottom:279.858667pt;}
.y58{bottom:288.177333pt;}
.yaf{bottom:296.898667pt;}
.y6a{bottom:297.142667pt;}
.y60{bottom:303.769333pt;}
.y5f{bottom:307.754667pt;}
.y18{bottom:309.680000pt;}
.y5e{bottom:311.738667pt;}
.y69{bottom:313.454667pt;}
.y17{bottom:314.694667pt;}
.yae{bottom:314.964000pt;}
.y5d{bottom:315.724000pt;}
.y5c{bottom:319.709333pt;}
.y84{bottom:319.816000pt;}
.y5b{bottom:323.694667pt;}
.y5a{bottom:327.680000pt;}
.yad{bottom:333.029333pt;}
.y68{bottom:333.273333pt;}
.y59{bottom:339.634667pt;}
.y83{bottom:345.152000pt;}
.yac{bottom:351.094667pt;}
.y16{bottom:355.842667pt;}
.y57{bottom:358.373333pt;}
.y56{bottom:363.388000pt;}
.y82{bottom:384.918667pt;}
.yab{bottom:389.793333pt;}
.y55{bottom:404.536000pt;}
.yaa{bottom:407.858667pt;}
.y15{bottom:410.349333pt;}
.y81{bottom:422.572000pt;}
.ya9{bottom:425.925333pt;}
.y14{bottom:428.414667pt;}
.ya8{bottom:443.990667pt;}
.y80{bottom:447.906667pt;}
.y13{bottom:456.077333pt;}
.y54{bottom:459.042667pt;}
.ya7{bottom:462.056000pt;}
.y12{bottom:466.820000pt;}
.y53{bottom:477.108000pt;}
.y7f{bottom:487.674667pt;}
.ya6{bottom:488.016000pt;}
.y11{bottom:493.770667pt;}
.y52{bottom:495.174667pt;}
.ya5{bottom:497.993333pt;}
.yd1{bottom:503.437333pt;}
.y10{bottom:520.513333pt;}
.yd0{bottom:521.504000pt;}
.y51{bottom:525.194667pt;}
.y7e{bottom:525.326667pt;}
.ya4{bottom:535.761333pt;}
.yf{bottom:538.578667pt;}
.ycf{bottom:539.569333pt;}
.y50{bottom:543.260000pt;}
.y7d{bottom:550.661333pt;}
.ya3{bottom:553.828000pt;}
.ye{bottom:556.644000pt;}
.yce{bottom:557.634667pt;}
.yd{bottom:574.710667pt;}
.ycd{bottom:575.700000pt;}
.y4f{bottom:577.898667pt;}
.ya2{bottom:583.848000pt;}
.y7c{bottom:590.429333pt;}
.y49{bottom:592.650667pt;}
.ycc{bottom:593.765333pt;}
.y48{bottom:596.636000pt;}
.y4e{bottom:597.716000pt;}
.y47{bottom:600.621333pt;}
.ya1{bottom:601.913333pt;}
.y46{bottom:604.606667pt;}
.y45{bottom:608.592000pt;}
.y44{bottom:612.577333pt;}
.y4d{bottom:614.028000pt;}
.ya0{bottom:614.964000pt;}
.yc{bottom:615.857333pt;}
.y43{bottom:616.561333pt;}
.y9e{bottom:619.980000pt;}
.ycb{bottom:620.509333pt;}
.y3a{bottom:624.881333pt;}
.y9f{bottom:625.706667pt;}
.y7b{bottom:628.082667pt;}
.y4c{bottom:633.846667pt;}
.yca{bottom:638.574667pt;}
.y42{bottom:640.472000pt;}
.y41{bottom:644.457333pt;}
.y9d{bottom:644.844000pt;}
.y40{bottom:648.442667pt;}
.y4b{bottom:650.158667pt;}
.y7a{bottom:652.120000pt;}
.y3f{bottom:652.428000pt;}
.y9c{bottom:654.821333pt;}
.y3e{bottom:656.413333pt;}
.yc9{bottom:656.640000pt;}
.y3d{bottom:660.397333pt;}
.y3c{bottom:664.382667pt;}
.y4a{bottom:669.976000pt;}
.yb{bottom:670.364000pt;}
.y79{bottom:674.170667pt;}
.yc8{bottom:674.706667pt;}
.y3b{bottom:676.338667pt;}
.y9b{bottom:678.554667pt;}
.ya{bottom:686.305333pt;}
.yc7{bottom:687.756000pt;}
.yc5{bottom:692.772000pt;}
.y39{bottom:695.076000pt;}
.y9a{bottom:696.620000pt;}
.yc6{bottom:698.498667pt;}
.y38{bottom:700.092000pt;}
.y9{bottom:702.245333pt;}
.y78{bottom:709.846667pt;}
.yc4{bottom:710.837333pt;}
.y8{bottom:718.185333pt;}
.y99{bottom:722.580000pt;}
.y98{bottom:732.558667pt;}
.y7{bottom:734.125333pt;}
.y37{bottom:741.238667pt;}
.y6{bottom:750.065333pt;}
.y77{bottom:750.993333pt;}
.yc3{bottom:757.933333pt;}
.y97{bottom:770.326667pt;}
.yc2{bottom:776.000000pt;}
.y5{bottom:779.001333pt;}
.y96{bottom:788.392000pt;}
.y36{bottom:795.746667pt;}
.y76{bottom:805.072000pt;}
.yc1{bottom:806.020000pt;}
.y35{bottom:813.812000pt;}
.y95{bottom:818.412000pt;}
.y75{bottom:823.137333pt;}
.yc0{bottom:824.085333pt;}
.y34{bottom:831.877333pt;}
.y4{bottom:835.500000pt;}
.y94{bottom:836.478667pt;}
.ybf{bottom:842.152000pt;}
.y93{bottom:854.544000pt;}
.y74{bottom:859.561333pt;}
.ybe{bottom:860.217333pt;}
.y92{bottom:872.609333pt;}
.y33{bottom:873.018667pt;}
.y3{bottom:876.788000pt;}
.ybd{bottom:878.282667pt;}
.y2f{bottom:881.020000pt;}
.y2e{bottom:885.005333pt;}
.y73{bottom:888.672000pt;}
.y2d{bottom:888.990667pt;}
.y2c{bottom:892.976000pt;}
.y32{bottom:895.346667pt;}
.y2b{bottom:896.960000pt;}
.ybc{bottom:905.026667pt;}
.y24{bottom:905.280000pt;}
.y91{bottom:905.286667pt;}
.y31{bottom:915.164000pt;}
.y72{bottom:917.782667pt;}
.y2a{bottom:920.870667pt;}
.ybb{bottom:923.092000pt;}
.y29{bottom:924.856000pt;}
.y2{bottom:925.881333pt;}
.y28{bottom:928.841333pt;}
.y27{bottom:932.826667pt;}
.y30{bottom:936.141333pt;}
.y26{bottom:936.812000pt;}
.y90{bottom:937.964000pt;}
.yba{bottom:941.157333pt;}
.y25{bottom:948.766667pt;}
.y71{bottom:954.206667pt;}
.y1{bottom:955.105333pt;}
.yb9{bottom:959.222667pt;}
.y8f{bottom:963.924000pt;}
.y23{bottom:967.256000pt;}
.y22{bottom:972.272000pt;}
.y8e{bottom:973.901333pt;}
.yb8{bottom:977.288000pt;}
.yb7{bottom:995.354667pt;}
.y21{bottom:1013.420000pt;}
.hd{height:2.125355pt;}
.h8{height:28.692360pt;}
.h13{height:37.003667pt;}
.h4{height:37.406242pt;}
.h5{height:39.850400pt;}
.h18{height:39.854579pt;}
.h12{height:40.960034pt;}
.h7{height:43.636400pt;}
.h3{height:44.887791pt;}
.hf{height:51.599027pt;}
.ha{height:51.604360pt;}
.h6{height:53.865199pt;}
.h19{height:59.918579pt;}
.h9{height:63.695067pt;}
.hb{height:63.700400pt;}
.h2{height:64.179011pt;}
.h10{height:71.663027pt;}
.hc{height:71.668360pt;}
.h15{height:82.996400pt;}
.h14{height:83.001733pt;}
.he{height:83.545733pt;}
.h11{height:83.551067pt;}
.h16{height:118.216021pt;}
.h17{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:93.328000pt;}
.x8{left:94.488000pt;}
.x1{left:104.910667pt;}
.x1c{left:117.256000pt;}
.x1b{left:120.488000pt;}
.x3f{left:126.358667pt;}
.x7{left:130.852000pt;}
.x40{left:133.777333pt;}
.x41{left:145.842667pt;}
.x6{left:150.777333pt;}
.x1d{left:206.548000pt;}
.x22{left:209.664000pt;}
.x23{left:228.262667pt;}
.x2e{left:235.505333pt;}
.x2f{left:246.941333pt;}
.x30{left:262.942667pt;}
.x1e{left:275.638667pt;}
.x31{left:279.141333pt;}
.x2b{left:281.946667pt;}
.x32{left:292.013333pt;}
.x1f{left:293.884000pt;}
.x13{left:304.621333pt;}
.x15{left:309.149333pt;}
.xf{left:310.744000pt;}
.x3{left:313.416000pt;}
.xb{left:328.016000pt;}
.x14{left:329.604000pt;}
.x27{left:330.758667pt;}
.x4{left:334.072000pt;}
.x2c{left:337.022667pt;}
.x25{left:353.446667pt;}
.x28{left:359.470667pt;}
.x24{left:360.730667pt;}
.x2{left:364.202667pt;}
.x5{left:366.256000pt;}
.x10{left:368.116000pt;}
.xd{left:369.528000pt;}
.x9{left:379.613333pt;}
.x11{left:381.518667pt;}
.x16{left:384.080000pt;}
.xc{left:393.214667pt;}
.x12{left:394.564000pt;}
.x17{left:396.605333pt;}
.x20{left:398.094667pt;}
.xa{left:400.566667pt;}
.x26{left:410.796000pt;}
.x21{left:411.956000pt;}
.xe{left:425.776000pt;}
.x18{left:446.690667pt;}
.x3c{left:466.400000pt;}
.x19{left:470.382667pt;}
.x3d{left:476.905333pt;}
.x2d{left:483.174667pt;}
.x3e{left:502.492000pt;}
.x33{left:539.318667pt;}
.x39{left:549.889333pt;}
.x34{left:562.038667pt;}
.x35{left:574.709333pt;}
.x36{left:581.981333pt;}
.x29{left:588.573333pt;}
.x2a{left:595.812000pt;}
.x3a{left:630.782667pt;}
.x37{left:641.689333pt;}
.x3b{left:649.134667pt;}
.x38{left:656.650667pt;}
}




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