
    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_0b2bdc14683318bc8325fc00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_226944d92d7cc26e25531e70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920000;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_bef2dc3e6c669ca8c40580a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aef8a8bd9dc4143a60492548.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_50cf63b8a4e87ebf1cbd24fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.290000;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_cc978a9298becc0576af516c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_231a81dcc04a1e8544d89356.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_4d29e96809c0286ddda151aa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_26f3f5c0bdea53caa339f590.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.494000;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_70107f22e768e8c179582a2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e04d3519e523e9a4a0cde2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;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_2a104e92fddce6aaa1fa62a5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dcd49673a18adf6b61b4adfe.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf74baed302760e20494d898.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_25cad6c868a131879186eb05.woff2')format("woff");}.fff{font-family:fff;line-height:0.446000;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_9ebc34a124516747214b1469.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.917000;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_453ef96d2afd5ebf1dd4c894.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ba93c695cfabfbd624006f33.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.664000;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_4d317d6e90ebd02c63e3c357.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.859863;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_44cc45683f99f0856db743dd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.714000;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_89f3fe724ac09a9a83414833.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.454000;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_0edc3a164c6dff5bf9c7f624.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.049000;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_bb04a4637c5da15e35f53819.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_84382d31830a18107da2b766.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.917969;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_5b0d59895f7ff939d619ed2a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.683105;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_d5c8e644f6dcb1dbee2ea3d6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8b0b6b5a0e740726acb93985.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.914000;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_54fa7a776c68dd6ae3f41541.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v9{vertical-align:-80.248683px;}
.v2{vertical-align:-78.333913px;}
.v3{vertical-align:-30.724827px;}
.v7{vertical-align:-20.483218px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:22.601463px;}
.v5{vertical-align:53.326290px;}
.v4{vertical-align:74.364776px;}
.v8{vertical-align:78.333913px;}
.v1{vertical-align:125.778476px;}
.ls3a{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001845px;}
.ls2e{letter-spacing:0.001933px;}
.ls10{letter-spacing:0.007566px;}
.ls0{letter-spacing:0.008015px;}
.ls3{letter-spacing:0.011205px;}
.ls1b{letter-spacing:0.014396px;}
.ls33{letter-spacing:2.058687px;}
.ls25{letter-spacing:3.064362px;}
.ls32{letter-spacing:4.607669px;}
.ls1c{letter-spacing:5.673499px;}
.ls16{letter-spacing:5.694065px;}
.ls2d{letter-spacing:7.765948px;}
.ls34{letter-spacing:8.067246px;}
.ls27{letter-spacing:10.239786px;}
.ls2f{letter-spacing:10.244042px;}
.ls1e{letter-spacing:10.258235px;}
.lsf{letter-spacing:16.137731px;}
.ls15{letter-spacing:22.052591px;}
.ls21{letter-spacing:22.547781px;}
.ls20{letter-spacing:22.554199px;}
.ls19{letter-spacing:28.459674px;}
.lse{letter-spacing:39.832762px;}
.ls18{letter-spacing:45.533818px;}
.ls1{letter-spacing:49.168641px;}
.ls5{letter-spacing:49.227626px;}
.ls6{letter-spacing:49.241774px;}
.lsb{letter-spacing:52.632407px;}
.lsa{letter-spacing:52.646082px;}
.ls23{letter-spacing:56.816252px;}
.ls1f{letter-spacing:56.819073px;}
.ls1a{letter-spacing:56.895323px;}
.ls22{letter-spacing:56.896394px;}
.ls13{letter-spacing:56.904895px;}
.ls4{letter-spacing:56.906528px;}
.ls26{letter-spacing:57.917841px;}
.ls38{letter-spacing:59.582684px;}
.lsc{letter-spacing:63.180590px;}
.ls8{letter-spacing:66.160994px;}
.ls7{letter-spacing:66.171426px;}
.lsd{letter-spacing:67.160622px;}
.ls1d{letter-spacing:67.162918px;}
.ls24{letter-spacing:71.096918px;}
.ls36{letter-spacing:71.943498px;}
.ls39{letter-spacing:73.400251px;}
.ls2{letter-spacing:73.420587px;}
.ls11{letter-spacing:73.577052px;}
.ls37{letter-spacing:81.848787px;}
.ls9{letter-spacing:98.221983px;}
.ls35{letter-spacing:99.518411px;}
.ls14{letter-spacing:102.438501px;}
.ls12{letter-spacing:102.459066px;}
.ls28{letter-spacing:104.983427px;}
.ls2a{letter-spacing:112.885765px;}
.ls29{letter-spacing:120.649868px;}
.ls2c{letter-spacing:180.710718px;}
.ls2b{letter-spacing:180.737150px;}
.ls30{letter-spacing:198.330141px;}
.ls31{letter-spacing:1993.130364px;}
.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;}
}
.ws21{word-spacing:-133.462513px;}
.ws34{word-spacing:-123.639073px;}
.ws2d{word-spacing:-108.425176px;}
.ws1{word-spacing:-106.539549px;}
.ws0{word-spacing:-93.285826px;}
.ws2b{word-spacing:-82.306628px;}
.wsa{word-spacing:-77.543433px;}
.ws29{word-spacing:-76.504302px;}
.ws3{word-spacing:-56.917234px;}
.ws25{word-spacing:-48.762785px;}
.ws55{word-spacing:-48.353014px;}
.ws4{word-spacing:-48.267970px;}
.ws2{word-spacing:-47.972933px;}
.wsb{word-spacing:-46.509043px;}
.ws8{word-spacing:-46.099271px;}
.ws56{word-spacing:-45.894386px;}
.ws30{word-spacing:-45.689500px;}
.ws46{word-spacing:-42.902180px;}
.ws57{word-spacing:-39.338045px;}
.wsc{word-spacing:-38.928274px;}
.ws58{word-spacing:-38.723388px;}
.ws19{word-spacing:-38.313617px;}
.wsd{word-spacing:-36.059875px;}
.wse{word-spacing:-34.215904px;}
.ws32{word-spacing:-33.910851px;}
.ws3c{word-spacing:-32.781704px;}
.ws5{word-spacing:-31.698071px;}
.ws35{word-spacing:-31.635210px;}
.ws6{word-spacing:-31.513673px;}
.ws27{word-spacing:-30.323076px;}
.ws17{word-spacing:-29.708419px;}
.ws5b{word-spacing:-29.503534px;}
.ws1b{word-spacing:-29.116495px;}
.ws15{word-spacing:-28.683991px;}
.ws2f{word-spacing:-27.044906px;}
.ws4f{word-spacing:-26.081943px;}
.ws14{word-spacing:-24.791164px;}
.wsf{word-spacing:-23.971621px;}
.ws51{word-spacing:-23.315987px;}
.ws4c{word-spacing:-23.215748px;}
.ws4a{word-spacing:-23.197282px;}
.ws2a{word-spacing:-22.906216px;}
.ws18{word-spacing:-21.512993px;}
.ws54{word-spacing:-21.369573px;}
.ws26{word-spacing:-21.319962px;}
.ws52{word-spacing:-19.730488px;}
.ws50{word-spacing:-19.115831px;}
.ws37{word-spacing:-17.415280px;}
.ws16{word-spacing:-17.210395px;}
.ws1c{word-spacing:-16.393011px;}
.ws7{word-spacing:-16.108992px;}
.ws59{word-spacing:-14.546881px;}
.ws53{word-spacing:-13.993690px;}
.ws2c{word-spacing:-11.432619px;}
.ws38{word-spacing:-10.858940px;}
.ws13{word-spacing:-9.219854px;}
.ws1d{word-spacing:-9.027331px;}
.ws1f{word-spacing:-9.017078px;}
.ws11{word-spacing:-6.556341px;}
.ws48{word-spacing:-5.513510px;}
.ws4e{word-spacing:-3.749407px;}
.ws10{word-spacing:-2.048857px;}
.ws3e{word-spacing:-1.843971px;}
.ws40{word-spacing:-0.614657px;}
.ws36{word-spacing:-0.092199px;}
.ws33{word-spacing:-0.085480px;}
.ws5c{word-spacing:0.000000px;}
.ws2e{word-spacing:0.040977px;}
.ws9{word-spacing:1.373563px;}
.ws5a{word-spacing:1.843971px;}
.ws3a{word-spacing:2.450476px;}
.ws3b{word-spacing:2.458628px;}
.ws28{word-spacing:6.392432px;}
.ws3f{word-spacing:7.170998px;}
.ws20{word-spacing:10.449168px;}
.ws23{word-spacing:10.528680px;}
.ws4b{word-spacing:13.922073px;}
.ws22{word-spacing:14.788630px;}
.ws24{word-spacing:14.792437px;}
.ws39{word-spacing:19.873908px;}
.ws12{word-spacing:31.142619px;}
.ws1e{word-spacing:33.171093px;}
.ws41{word-spacing:40.126425px;}
.ws42{word-spacing:40.157588px;}
.ws49{word-spacing:43.425804px;}
.ws31{word-spacing:60.665665px;}
.ws1a{word-spacing:65.389836px;}
.ws47{word-spacing:89.037769px;}
.ws43{word-spacing:95.886485px;}
.ws4d{word-spacing:97.622958px;}
.ws44{word-spacing:119.038563px;}
.ws45{word-spacing:126.209561px;}
.ws3d{word-spacing:161.859664px;}
._29{margin-left:-19.669023px;}
._f{margin-left:-17.025922px;}
._0{margin-left:-15.802517px;}
._9{margin-left:-11.473596px;}
._27{margin-left:-10.449168px;}
._2{margin-left:-8.261022px;}
._5{margin-left:-6.269543px;}
._3{margin-left:-4.978755px;}
._23{margin-left:-3.319114px;}
._6{width:1.106390px;}
._21{width:3.124439px;}
._d{width:4.896842px;}
._b{width:6.556341px;}
._7{width:7.965985px;}
._1b{width:10.227059px;}
._1{width:15.802517px;}
._26{width:51.866803px;}
._a{width:58.371997px;}
._24{width:61.342697px;}
._2a{width:62.695009px;}
._4{width:64.170615px;}
._25{width:66.874610px;}
._28{width:70.521725px;}
._1a{width:73.175764px;}
._13{width:75.186864px;}
._1c{width:77.241890px;}
._2e{width:80.110290px;}
._17{width:82.426049px;}
._15{width:83.798231px;}
._8{width:87.404261px;}
._1e{width:88.695074px;}
._c{width:89.739915px;}
._e{width:91.092202px;}
._2b{width:92.608314px;}
._1d{width:96.071525px;}
._14{width:104.061497px;}
._16{width:105.475839px;}
._19{width:113.957249px;}
._2f{width:119.776194px;}
._10{width:128.340873px;}
._2c{width:149.156754px;}
._18{width:152.375079px;}
._1f{width:161.245007px;}
._12{width:166.285236px;}
._11{width:174.480662px;}
._22{width:187.164295px;}
._2d{width:199.476712px;}
._20{width:259.590120px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:95.259303px;}
.fsc{font-size:102.442826px;}
.fs3{font-size:122.932213px;}
.fs8{font-size:123.459512px;}
.fsb{font-size:131.688089px;}
.fs5{font-size:143.419544px;}
.fs7{font-size:154.324390px;}
.fsa{font-size:164.614741px;}
.fs4{font-size:184.398320px;}
.fs9{font-size:185.189268px;}
.fs2{font-size:204.885651px;}
.fs1{font-size:295.036489px;}
.fs0{font-size:509.758609px;}
.y26{bottom:-96.592934px;}
.y0{bottom:0.000000px;}
.y3a{bottom:2.118921px;}
.y39{bottom:53.354445px;}
.y4f{bottom:87.222806px;}
.y3b{bottom:95.022031px;}
.y4e{bottom:117.957916px;}
.y5c{bottom:130.518283px;}
.y4d{bottom:148.693026px;}
.y4c{bottom:179.422995px;}
.y5b{bottom:191.988503px;}
.y4b{bottom:210.158105px;}
.y44{bottom:225.356485px;}
.y4a{bottom:240.888073px;}
.y3c{bottom:244.716689px;}
.y5a{bottom:253.453581px;}
.y49{bottom:271.623183px;}
.y43{bottom:277.124811px;}
.y48{bottom:296.471424px;}
.y59{bottom:314.918660px;}
.y42{bottom:328.893137px;}
.y53{bottom:348.923681px;}
.y58{bottom:376.383738px;}
.y3d{bottom:394.411348px;}
.y40{bottom:401.549134px;}
.y52{bottom:410.388759px;}
.y57{bottom:437.848816px;}
.y51{bottom:471.858979px;}
.y56{bottom:499.313895px;}
.y3e{bottom:544.106006px;}
.y50{bottom:558.886949px;}
.y55{bottom:560.784114px;}
.y54{bottom:676.033064px;}
.y3f{bottom:693.800665px;}
.y41{bottom:749.357445px;}
.y47{bottom:754.809135px;}
.y37{bottom:794.012082px;}
.y46{bottom:811.153409px;}
.y36{bottom:855.477160px;}
.y45{bottom:867.497683px;}
.y1d{bottom:869.394849px;}
.y35{bottom:916.942238px;}
.y38{bottom:920.510349px;}
.y1c{bottom:930.859927px;}
.y34{bottom:978.407317px;}
.y1b{bottom:992.325005px;}
.y33{bottom:1039.872395px;}
.y1a{bottom:1053.790084px;}
.y32{bottom:1101.337473px;}
.y31{bottom:1162.807693px;}
.y30{bottom:1224.272772px;}
.y2f{bottom:1285.737850px;}
.y2e{bottom:1347.202928px;}
.y2d{bottom:1408.668007px;}
.y2c{bottom:1470.133085px;}
.y2b{bottom:1531.603305px;}
.y2a{bottom:1593.068383px;}
.y29{bottom:1758.245177px;}
.y28{bottom:1946.995152px;}
.y27{bottom:2003.339426px;}
.y25{bottom:2110.907169px;}
.y24{bottom:2911.068865px;}
.y23{bottom:2972.533944px;}
.y22{bottom:3082.132528px;}
.y21{bottom:3095.464100px;}
.y19{bottom:3115.952460px;}
.y20{bottom:3156.929179px;}
.y18{bottom:3177.417538px;}
.y17{bottom:3238.887758px;}
.y1f{bottom:3259.376117px;}
.y16{bottom:3300.352836px;}
.y1e{bottom:3320.841196px;}
.y15{bottom:3361.817915px;}
.y14{bottom:3423.282993px;}
.y13{bottom:3484.748071px;}
.y12{bottom:3546.213150px;}
.y11{bottom:3607.683369px;}
.y10{bottom:3669.148448px;}
.yf{bottom:3730.613526px;}
.ye{bottom:3792.078604px;}
.yd{bottom:3878.587296px;}
.yc{bottom:4042.211396px;}
.yb{bottom:4103.676475px;}
.ya{bottom:4165.141553px;}
.y9{bottom:4226.606631px;}
.y8{bottom:4288.076851px;}
.y7{bottom:4374.580401px;}
.y6{bottom:4501.824167px;}
.y5{bottom:4563.289246px;}
.y4{bottom:4624.754324px;}
.y3{bottom:4666.635924px;}
.y2{bottom:4810.306367px;}
.y1{bottom:4928.712118px;}
.hb{height:72.235204px;}
.h11{height:76.832119px;}
.h4{height:81.749922px;}
.hf{height:126.503802px;}
.he{height:132.019693px;}
.h7{height:138.298740px;}
.h12{height:143.419956px;}
.h6{height:153.664238px;}
.h8{height:169.595353px;}
.h10{height:171.688030px;}
.hd{height:202.840120px;}
.h9{height:206.990528px;}
.h5{height:210.951090px;}
.h3{height:279.442714px;}
.h2{height:359.379820px;}
.ha{height:728.733671px;}
.hc{height:779.338170px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w3{width:1116.279756px;}
.w2{width:1786.111910px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x18{left:31.628463px;}
.x16{left:56.526297px;}
.x17{left:65.785760px;}
.x1{left:67.384715px;}
.x6{left:87.873075px;}
.x1a{left:257.244268px;}
.x7{left:328.813097px;}
.x1f{left:416.951603px;}
.x1b{left:442.441119px;}
.x19{left:491.721077px;}
.x14{left:494.807565px;}
.x15{left:600.930192px;}
.x2{left:792.796032px;}
.x3{left:1224.311217px;}
.x9{left:1255.390798px;}
.x12{left:1316.855877px;}
.xa{left:1317.992119px;}
.xb{left:1383.446901px;}
.xf{left:1478.644536px;}
.x5{left:1559.857588px;}
.x10{left:1747.770040px;}
.x4{left:1793.887609px;}
.x11{left:2033.876478px;}
.x1d{left:2043.650223px;}
.x8{left:2070.308226px;}
.x1e{left:2151.901768px;}
.x13{left:2184.698567px;}
.x1c{left:2235.916895px;}
.xc{left:2459.900679px;}
.xd{left:2525.350319px;}
.xe{left:2548.460777px;}
@media print{
.v9{vertical-align:-71.332163pt;}
.v2{vertical-align:-69.630145pt;}
.v3{vertical-align:-27.310957pt;}
.v7{vertical-align:-18.207305pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:20.090189pt;}
.v5{vertical-align:47.401146pt;}
.v4{vertical-align:66.102023pt;}
.v8{vertical-align:69.630145pt;}
.v1{vertical-align:111.803089pt;}
.ls3a{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.001640pt;}
.ls2e{letter-spacing:0.001718pt;}
.ls10{letter-spacing:0.006725pt;}
.ls0{letter-spacing:0.007124pt;}
.ls3{letter-spacing:0.009960pt;}
.ls1b{letter-spacing:0.012796pt;}
.ls33{letter-spacing:1.829944pt;}
.ls25{letter-spacing:2.723877pt;}
.ls32{letter-spacing:4.095706pt;}
.ls1c{letter-spacing:5.043111pt;}
.ls16{letter-spacing:5.061391pt;}
.ls2d{letter-spacing:6.903065pt;}
.ls34{letter-spacing:7.170885pt;}
.ls27{letter-spacing:9.102032pt;}
.ls2f{letter-spacing:9.105815pt;}
.ls1e{letter-spacing:9.118431pt;}
.lsf{letter-spacing:14.344650pt;}
.ls15{letter-spacing:19.602303pt;}
.ls21{letter-spacing:20.042472pt;}
.ls20{letter-spacing:20.048177pt;}
.ls19{letter-spacing:25.297488pt;}
.lse{letter-spacing:35.406899pt;}
.ls18{letter-spacing:40.474505pt;}
.ls1{letter-spacing:43.705458pt;}
.ls5{letter-spacing:43.757890pt;}
.ls6{letter-spacing:43.770466pt;}
.lsb{letter-spacing:46.784362pt;}
.lsa{letter-spacing:46.796518pt;}
.ls23{letter-spacing:50.503335pt;}
.ls1f{letter-spacing:50.505843pt;}
.ls1a{letter-spacing:50.573620pt;}
.ls22{letter-spacing:50.574572pt;}
.ls13{letter-spacing:50.582129pt;}
.ls4{letter-spacing:50.583581pt;}
.ls26{letter-spacing:51.482525pt;}
.ls38{letter-spacing:52.962386pt;}
.lsc{letter-spacing:56.160524pt;}
.ls8{letter-spacing:58.809773pt;}
.ls7{letter-spacing:58.819045pt;}
.lsd{letter-spacing:59.698331pt;}
.ls1d{letter-spacing:59.700371pt;}
.ls24{letter-spacing:63.197260pt;}
.ls36{letter-spacing:63.949776pt;}
.ls39{letter-spacing:65.244668pt;}
.ls2{letter-spacing:65.262744pt;}
.ls11{letter-spacing:65.401824pt;}
.ls37{letter-spacing:72.754478pt;}
.ls9{letter-spacing:87.308429pt;}
.ls35{letter-spacing:88.460810pt;}
.ls14{letter-spacing:91.056445pt;}
.ls12{letter-spacing:91.074726pt;}
.ls28{letter-spacing:93.318602pt;}
.ls2a{letter-spacing:100.342902pt;}
.ls29{letter-spacing:107.244327pt;}
.ls2c{letter-spacing:160.631749pt;}
.ls2b{letter-spacing:160.655245pt;}
.ls30{letter-spacing:176.293459pt;}
.ls31{letter-spacing:1771.671435pt;}
.ws21{word-spacing:-118.633345pt;}
.ws34{word-spacing:-109.901399pt;}
.ws2d{word-spacing:-96.377934pt;}
.ws1{word-spacing:-94.701822pt;}
.ws0{word-spacing:-82.920734pt;}
.ws2b{word-spacing:-73.161447pt;}
.wsa{word-spacing:-68.927496pt;}
.ws29{word-spacing:-68.003824pt;}
.ws3{word-spacing:-50.593097pt;}
.ws25{word-spacing:-43.344698pt;}
.ws55{word-spacing:-42.980457pt;}
.ws4{word-spacing:-42.904862pt;}
.ws2{word-spacing:-42.642607pt;}
.wsb{word-spacing:-41.341371pt;}
.ws8{word-spacing:-40.977130pt;}
.ws56{word-spacing:-40.795010pt;}
.ws30{word-spacing:-40.612889pt;}
.ws46{word-spacing:-38.135272pt;}
.ws57{word-spacing:-34.967151pt;}
.wsc{word-spacing:-34.602910pt;}
.ws58{word-spacing:-34.420789pt;}
.ws19{word-spacing:-34.056548pt;}
.wsd{word-spacing:-32.053222pt;}
.wse{word-spacing:-30.414137pt;}
.ws32{word-spacing:-30.142979pt;}
.ws3c{word-spacing:-29.139293pt;}
.ws5{word-spacing:-28.176063pt;}
.ws35{word-spacing:-28.120187pt;}
.ws6{word-spacing:-28.012154pt;}
.ws27{word-spacing:-26.953846pt;}
.ws17{word-spacing:-26.407484pt;}
.ws5b{word-spacing:-26.225363pt;}
.ws1b{word-spacing:-25.881329pt;}
.ws15{word-spacing:-25.496881pt;}
.ws2f{word-spacing:-24.039916pt;}
.ws4f{word-spacing:-23.183950pt;}
.ws14{word-spacing:-22.036590pt;}
.wsf{word-spacing:-21.308108pt;}
.ws51{word-spacing:-20.725322pt;}
.ws4c{word-spacing:-20.636221pt;}
.ws4a{word-spacing:-20.619807pt;}
.ws2a{word-spacing:-20.361081pt;}
.ws18{word-spacing:-19.122661pt;}
.ws54{word-spacing:-18.995176pt;}
.ws26{word-spacing:-18.951077pt;}
.ws52{word-spacing:-17.538212pt;}
.ws50{word-spacing:-16.991850pt;}
.ws37{word-spacing:-15.480249pt;}
.ws16{word-spacing:-15.298129pt;}
.ws1c{word-spacing:-14.571565pt;}
.ws7{word-spacing:-14.319104pt;}
.ws59{word-spacing:-12.930561pt;}
.ws53{word-spacing:-12.438836pt;}
.ws2c{word-spacing:-10.162328pt;}
.ws38{word-spacing:-9.652391pt;}
.ws13{word-spacing:-8.195426pt;}
.ws1d{word-spacing:-8.024294pt;}
.ws1f{word-spacing:-8.015180pt;}
.ws11{word-spacing:-5.827859pt;}
.ws48{word-spacing:-4.900898pt;}
.ws4e{word-spacing:-3.332807pt;}
.ws10{word-spacing:-1.821206pt;}
.ws3e{word-spacing:-1.639085pt;}
.ws40{word-spacing:-0.546362pt;}
.ws36{word-spacing:-0.081955pt;}
.ws33{word-spacing:-0.075982pt;}
.ws5c{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.036424pt;}
.ws9{word-spacing:1.220945pt;}
.ws5a{word-spacing:1.639085pt;}
.ws3a{word-spacing:2.178201pt;}
.ws3b{word-spacing:2.185447pt;}
.ws28{word-spacing:5.682162pt;}
.ws3f{word-spacing:6.374220pt;}
.ws20{word-spacing:9.288150pt;}
.ws23{word-spacing:9.358827pt;}
.ws4b{word-spacing:12.375176pt;}
.ws22{word-spacing:13.145449pt;}
.ws24{word-spacing:13.148833pt;}
.ws39{word-spacing:17.665696pt;}
.ws12{word-spacing:27.682328pt;}
.ws1e{word-spacing:29.485416pt;}
.ws41{word-spacing:35.667933pt;}
.ws42{word-spacing:35.695633pt;}
.ws49{word-spacing:38.600715pt;}
.ws31{word-spacing:53.925036pt;}
.ws1a{word-spacing:58.124298pt;}
.ws47{word-spacing:79.144683pt;}
.ws43{word-spacing:85.232431pt;}
.ws4d{word-spacing:86.775963pt;}
.ws44{word-spacing:105.812056pt;}
.ws45{word-spacing:112.186276pt;}
.ws3d{word-spacing:143.875257pt;}
._29{margin-left:-17.483576pt;}
._f{margin-left:-15.134153pt;}
._0{margin-left:-14.046682pt;}
._9{margin-left:-10.198752pt;}
._27{margin-left:-9.288150pt;}
._2{margin-left:-7.343130pt;}
._5{margin-left:-5.572927pt;}
._3{margin-left:-4.425560pt;}
._23{margin-left:-2.950324pt;}
._6{width:0.983458pt;}
._21{width:2.777279pt;}
._d{width:4.352749pt;}
._b{width:5.827859pt;}
._7{width:7.080876pt;}
._1b{width:9.090719pt;}
._1{width:14.046682pt;}
._26{width:46.103825pt;}
._a{width:51.886220pt;}
._24{width:54.526842pt;}
._2a{width:55.728897pt;}
._4{width:57.040547pt;}
._25{width:59.444098pt;}
._28{width:62.685978pt;}
._1a{width:65.045123pt;}
._13{width:66.832768pt;}
._1c{width:68.659458pt;}
._2e{width:71.209146pt;}
._17{width:73.267599pt;}
._15{width:74.487317pt;}
._8{width:77.692676pt;}
._1e{width:78.840065pt;}
._c{width:79.768813pt;}
._e{width:80.970847pt;}
._2b{width:82.318502pt;}
._1d{width:85.396911pt;}
._14{width:92.499109pt;}
._16{width:93.756301pt;}
._19{width:101.295332pt;}
._2f{width:106.467728pt;}
._10{width:114.080776pt;}
._2c{width:132.583781pt;}
._18{width:135.444515pt;}
._1f{width:143.328895pt;}
._12{width:147.809099pt;}
._11{width:155.093922pt;}
._22{width:166.368262pt;}
._2d{width:177.312633pt;}
._20{width:230.746773pt;}
.fs6{font-size:84.674936pt;}
.fsc{font-size:91.060289pt;}
.fs3{font-size:109.273078pt;}
.fs8{font-size:109.741789pt;}
.fsb{font-size:117.056079pt;}
.fs5{font-size:127.484039pt;}
.fs7{font-size:137.177236pt;}
.fsa{font-size:146.324214pt;}
.fs4{font-size:163.909618pt;}
.fs9{font-size:164.612683pt;}
.fs2{font-size:182.120579pt;}
.fs1{font-size:262.254657pt;}
.fs0{font-size:453.118764pt;}
.y26{bottom:-85.860385pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:1.883485pt;}
.y39{bottom:47.426174pt;}
.y4f{bottom:77.531384pt;}
.y3b{bottom:84.464027pt;}
.y4e{bottom:104.851481pt;}
.y5c{bottom:116.016252pt;}
.y4d{bottom:132.171579pt;}
.y4c{bottom:159.487106pt;}
.y5b{bottom:170.656447pt;}
.y4b{bottom:186.807204pt;}
.y44{bottom:200.316876pt;}
.y4a{bottom:214.122732pt;}
.y3c{bottom:217.525946pt;}
.y5a{bottom:225.292072pt;}
.y49{bottom:241.442829pt;}
.y43{bottom:246.333165pt;}
.y48{bottom:263.530155pt;}
.y59{bottom:279.927697pt;}
.y42{bottom:292.349455pt;}
.y53{bottom:310.154383pt;}
.y58{bottom:334.563323pt;}
.y3d{bottom:350.587865pt;}
.y40{bottom:356.932564pt;}
.y52{bottom:364.790008pt;}
.y57{bottom:389.198948pt;}
.y51{bottom:419.430203pt;}
.y56{bottom:443.834573pt;}
.y3e{bottom:483.649783pt;}
.y50{bottom:496.788399pt;}
.y55{bottom:498.474768pt;}
.y54{bottom:600.918279pt;}
.y3f{bottom:616.711702pt;}
.y41{bottom:666.095507pt;}
.y47{bottom:670.941454pt;}
.y37{bottom:705.788517pt;}
.y46{bottom:721.025253pt;}
.y36{bottom:760.424142pt;}
.y45{bottom:771.109052pt;}
.y1d{bottom:772.795421pt;}
.y35{bottom:815.059768pt;}
.y38{bottom:818.231422pt;}
.y1c{bottom:827.431046pt;}
.y34{bottom:869.695393pt;}
.y1b{bottom:882.066671pt;}
.y33{bottom:924.331018pt;}
.y1a{bottom:936.702297pt;}
.y32{bottom:978.966643pt;}
.y31{bottom:1033.606838pt;}
.y30{bottom:1088.242464pt;}
.y2f{bottom:1142.878089pt;}
.y2e{bottom:1197.513714pt;}
.y2d{bottom:1252.149339pt;}
.y2c{bottom:1306.784964pt;}
.y2b{bottom:1361.425160pt;}
.y2a{bottom:1416.060785pt;}
.y29{bottom:1562.884602pt;}
.y28{bottom:1730.662358pt;}
.y27{bottom:1780.746157pt;}
.y25{bottom:1876.361928pt;}
.y24{bottom:2587.616769pt;}
.y23{bottom:2642.252394pt;}
.y22{bottom:2739.673358pt;}
.y21{bottom:2751.523645pt;}
.y19{bottom:2769.735520pt;}
.y20{bottom:2806.159270pt;}
.y18{bottom:2824.371145pt;}
.y17{bottom:2879.011340pt;}
.y1f{bottom:2897.223215pt;}
.y16{bottom:2933.646966pt;}
.y1e{bottom:2951.858841pt;}
.y15{bottom:2988.282591pt;}
.y14{bottom:3042.918216pt;}
.y13{bottom:3097.553841pt;}
.y12{bottom:3152.189466pt;}
.y11{bottom:3206.829662pt;}
.y10{bottom:3261.465287pt;}
.yf{bottom:3316.100912pt;}
.ye{bottom:3370.736537pt;}
.yd{bottom:3447.633152pt;}
.yc{bottom:3593.076797pt;}
.yb{bottom:3647.712422pt;}
.ya{bottom:3702.348047pt;}
.y9{bottom:3756.983672pt;}
.y8{bottom:3811.623868pt;}
.y7{bottom:3888.515912pt;}
.y6{bottom:4001.621482pt;}
.y5{bottom:4056.257107pt;}
.y4{bottom:4110.892733pt;}
.y3{bottom:4148.120821pt;}
.y2{bottom:4275.827882pt;}
.y1{bottom:4381.077439pt;}
.hb{height:64.209070pt;}
.h11{height:68.295217pt;}
.h4{height:72.666597pt;}
.hf{height:112.447824pt;}
.he{height:117.350838pt;}
.h7{height:122.932213pt;}
.h12{height:127.484405pt;}
.h6{height:136.590434pt;}
.h8{height:150.751425pt;}
.h10{height:152.611582pt;}
.hd{height:180.302329pt;}
.h9{height:183.991580pt;}
.h5{height:187.512080pt;}
.h3{height:248.393524pt;}
.h2{height:319.448728pt;}
.ha{height:647.763263pt;}
.hc{height:692.745040pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w3{width:992.248672pt;}
.w2{width:1587.655031pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x18{left:28.114189pt;}
.x16{left:50.245597pt;}
.x17{left:58.476231pt;}
.x1{left:59.897525pt;}
.x6{left:78.109400pt;}
.x1a{left:228.661572pt;}
.x7{left:292.278308pt;}
.x1f{left:370.623647pt;}
.x1b{left:393.280995pt;}
.x19{left:437.085402pt;}
.x14{left:439.828946pt;}
.x15{left:534.160171pt;}
.x2{left:704.707584pt;}
.x3{left:1088.276637pt;}
.x9{left:1115.902932pt;}
.x12{left:1170.538557pt;}
.xa{left:1171.548551pt;}
.xb{left:1229.730579pt;}
.xf{left:1314.350699pt;}
.x5{left:1386.540078pt;}
.x10{left:1553.573369pt;}
.x4{left:1594.566764pt;}
.x11{left:1807.890203pt;}
.x1d{left:1816.577976pt;}
.x8{left:1840.273979pt;}
.x1e{left:1912.801571pt;}
.x13{left:1941.954282pt;}
.x1c{left:1987.481684pt;}
.xc{left:2186.578381pt;}
.xd{left:2244.755839pt;}
.xe{left:2265.298469pt;}
}




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