
    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_6adc0f23c498b9f668fec756.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_8dcda6556e9d3be91f01eab5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975098;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_59d59057d7f20bc957f7e900.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_159f7f58c90717716951a12a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_8be0c888aaec7ca3d3797689.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fe8ea1113ed65e69717c5c10.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_78e09695cecfe87b08ffcca6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928223;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_c9445b01c7be380db176c117.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3842d700167b894215ba8ee4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915039;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_7bc40850d5f74bdedddbc856.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9566826ee73052ecd9aa8107.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_87d0228fc199cdbd454b6ba6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.928223;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_2eba17041b7ac9981e945bff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_824d04fe096a00b51edeee98.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928223;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_a6bb2662ad5ff300eee64d94.woff2')format("woff");}.fff{font-family:fff;line-height:0.927246;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_9634f6ad1a7a404093c09955.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.875000;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_59f0793fce7cfbb23c2a2898.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.907715;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_fe337b5e87f0e16cb02d601a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_81ca99944be4bdaf71e7bfa7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923340;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_264d3662946baaa4f7c88a3e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.923340;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_6995fea16f68cc6536781fed.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.867188;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_88e20be76fd6e657b45d098d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7d8c4b9f8730bc8a16698910.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fb78ffeecf50c6c6c93bc72c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.928223;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_80b7f06d107b6ff1dca0bd87.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_3d8bbca98ce516b085f96379.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_50555b91d8a5f4a82d551ae4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.928223;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_9da1a5cdd72420ed4333e522.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.925781;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_b9f957737a8e7f5ab4e68e84.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.928223;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:ff1e;src:url('chunks/assets/font_82b8b0887910560376bbbcf3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;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:ff1f;src:url('chunks/assets/font_99164c487ddcde7479708ac7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.927246;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:ff20;src:url('chunks/assets/font_d5ab67ec84f3eb1686701efe.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.927246;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.520000px;}
.v1{vertical-align:25.920000px;}
.v3{vertical-align:43.200000px;}
.ls3e{letter-spacing:-12.560400px;}
.ls20{letter-spacing:-7.161599px;}
.ls3d{letter-spacing:-4.536000px;}
.ls11{letter-spacing:-4.190400px;}
.ls3b{letter-spacing:-4.168800px;}
.ls44{letter-spacing:-3.877200px;}
.ls4d{letter-spacing:-3.466800px;}
.ls27{letter-spacing:-3.121200px;}
.ls45{letter-spacing:-2.138400px;}
.ls41{letter-spacing:-2.073600px;}
.ls22{letter-spacing:-1.795200px;}
.ls6{letter-spacing:-1.551000px;}
.ls43{letter-spacing:-1.501200px;}
.ls3f{letter-spacing:-0.648000px;}
.ls42{letter-spacing:-0.637200px;}
.ls3c{letter-spacing:-0.626400px;}
.ls48{letter-spacing:-0.615600px;}
.ls40{letter-spacing:-0.572400px;}
.ls7{letter-spacing:-0.402600px;}
.lsc{letter-spacing:-0.387600px;}
.ls2a{letter-spacing:-0.367200px;}
.ls28{letter-spacing:-0.334800px;}
.ls16{letter-spacing:-0.302400px;}
.lsd{letter-spacing:-0.291600px;}
.ls36{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.260400px;}
.ls37{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.210600px;}
.lse{letter-spacing:-0.064800px;}
.ls34{letter-spacing:-0.060000px;}
.ls21{letter-spacing:-0.048000px;}
.ls2e{letter-spacing:-0.043200px;}
.lsf{letter-spacing:-0.032400px;}
.ls17{letter-spacing:-0.028800px;}
.ls4c{letter-spacing:-0.021600px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.011976px;}
.ls4{letter-spacing:0.014400px;}
.ls4a{letter-spacing:0.018000px;}
.ls35{letter-spacing:0.024000px;}
.ls15{letter-spacing:0.028800px;}
.ls51{letter-spacing:0.043200px;}
.ls4b{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.057600px;}
.ls50{letter-spacing:0.086400px;}
.ls10{letter-spacing:0.097200px;}
.ls26{letter-spacing:0.210000px;}
.ls23{letter-spacing:0.211200px;}
.ls1f{letter-spacing:0.240002px;}
.ls1e{letter-spacing:0.259200px;}
.ls39{letter-spacing:0.260400px;}
.lsb{letter-spacing:0.319200px;}
.ls29{letter-spacing:0.334800px;}
.ls2b{letter-spacing:0.367200px;}
.ls4f{letter-spacing:1.476000px;}
.ls1b{letter-spacing:1.584000px;}
.ls4e{letter-spacing:1.692000px;}
.ls2{letter-spacing:1.785600px;}
.ls1c{letter-spacing:1.800000px;}
.ls1a{letter-spacing:1.836000px;}
.ls18{letter-spacing:1.872000px;}
.ls8{letter-spacing:1.896000px;}
.ls2f{letter-spacing:1.908000px;}
.ls30{letter-spacing:1.920000px;}
.ls2d{letter-spacing:1.944000px;}
.ls1{letter-spacing:1.987200px;}
.ls19{letter-spacing:2.016000px;}
.ls49{letter-spacing:2.129384px;}
.ls31{letter-spacing:2.129984px;}
.ls33{letter-spacing:2.136000px;}
.ls0{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.184000px;}
.ls3a{letter-spacing:5.124000px;}
.ls13{letter-spacing:21.600000px;}
.ls46{letter-spacing:27.774000px;}
.ls47{letter-spacing:29.724000px;}
.ls25{letter-spacing:43.200000px;}
.ls12{letter-spacing:49.199983px;}
.ls32{letter-spacing:66.000002px;}
.ls9{letter-spacing:68.100003px;}
.ls1d{letter-spacing:74.400003px;}
.ls2c{letter-spacing:111.600000px;}
.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;}
}
.ws12{word-spacing:-81.828000px;}
.ws13{word-spacing:-81.720000px;}
.ws11{word-spacing:-81.504000px;}
.ws14{word-spacing:-55.416011px;}
.ws15{word-spacing:-55.080011px;}
.ws9{word-spacing:-36.720000px;}
.ws17{word-spacing:-30.024000px;}
.ws1b{word-spacing:-29.451600px;}
.ws18{word-spacing:-29.397600px;}
.ws1d{word-spacing:-29.386800px;}
.ws1a{word-spacing:-29.376000px;}
.ws3{word-spacing:-28.682398px;}
.ws1c{word-spacing:-27.950400px;}
.ws1f{word-spacing:-27.885600px;}
.ws10{word-spacing:-27.874800px;}
.ws21{word-spacing:-27.594000px;}
.ws22{word-spacing:-27.518400px;}
.wsf{word-spacing:-27.119999px;}
.ws1e{word-spacing:-26.146800px;}
.ws16{word-spacing:-25.855200px;}
.wse{word-spacing:-24.691198px;}
.wsa{word-spacing:-24.508798px;}
.wsb{word-spacing:-24.451198px;}
.wsc{word-spacing:-24.431998px;}
.ws23{word-spacing:-24.073200px;}
.wsd{word-spacing:-22.684798px;}
.ws19{word-spacing:-17.463600px;}
.ws2{word-spacing:-16.862400px;}
.ws1{word-spacing:-13.100999px;}
.ws8{word-spacing:-0.205200px;}
.ws5{word-spacing:-0.168000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:683.403600px;}
.ws6{word-spacing:750.381000px;}
.ws4{word-spacing:775.177800px;}
.ws20{word-spacing:1195.689600px;}
._d{margin-left:-8.400000px;}
._f{margin-left:-6.480000px;}
._5{margin-left:-4.800000px;}
._3{margin-left:-3.750000px;}
._4{margin-left:-2.520000px;}
._0{margin-left:-1.152000px;}
._1{width:1.152000px;}
._6{width:2.316000px;}
._7{width:3.888000px;}
._8{width:4.968000px;}
._b{width:6.335999px;}
._a{width:7.487999px;}
._2{width:11.333999px;}
._10{width:12.408000px;}
._9{width:14.982000px;}
._c{width:30.165599px;}
._11{width:164.249580px;}
._12{width:4742.620395px;}
._e{width:4797.370395px;}
.fc5{color:rgb(255,0,0);}
.fc8{color:rgb(119,139,162);}
.fc2{color:transparent;}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(61,61,61);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,148);}
.fsc{font-size:54.000000px;}
.fse{font-size:59.999990px;}
.fs3{font-size:65.999995px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:83.999995px;}
.fsb{font-size:95.999990px;}
.fs7{font-size:108.000000px;}
.fs5{font-size:113.999990px;}
.fs1{font-size:119.999995px;}
.fs9{font-size:144.000000px;}
.fs6{font-size:168.000048px;}
.fs8{font-size:216.000000px;}
.fs2{font-size:240.000048px;}
.fs0{font-size:288.000000px;}
.fsa{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:17.640000px;}
.y7{bottom:21.960000px;}
.y6{bottom:32.040000px;}
.y25{bottom:37.440000px;}
.y41{bottom:43.200000px;}
.y24{bottom:77.760000px;}
.y3f{bottom:92.160000px;}
.y23{bottom:124.560000px;}
.y4b{bottom:141.120000px;}
.y40{bottom:141.480000px;}
.y5c{bottom:160.920000px;}
.y2e{bottom:164.880000px;}
.y22{bottom:171.000000px;}
.y64{bottom:176.040000px;}
.y56{bottom:186.480000px;}
.y4c{bottom:189.720000px;}
.y4d{bottom:190.440000px;}
.y4a{bottom:190.800000px;}
.y2d{bottom:191.160000px;}
.y9{bottom:216.360000px;}
.y21{bottom:217.440000px;}
.yb{bottom:217.800000px;}
.y2f{bottom:220.680000px;}
.y15{bottom:222.480000px;}
.y19{bottom:226.440000px;}
.yf{bottom:226.800000px;}
.y8{bottom:238.680000px;}
.y49{bottom:239.040000px;}
.y3e{bottom:239.400000px;}
.ya{bottom:240.480000px;}
.y4{bottom:244.440000px;}
.y36{bottom:246.960000px;}
.y20{bottom:265.320000px;}
.y5b{bottom:268.920000px;}
.y14{bottom:270.360000px;}
.y2c{bottom:276.840000px;}
.y63{bottom:278.280000px;}
.y3d{bottom:288.360000px;}
.y5e{bottom:291.600000px;}
.y17{bottom:299.160000px;}
.y1f{bottom:311.760000px;}
.y35{bottom:312.840000px;}
.y51{bottom:320.400000px;}
.y62{bottom:324.720000px;}
.y10{bottom:331.920000px;}
.y3c{bottom:337.320000px;}
.y13{bottom:340.920000px;}
.y34{bottom:348.840000px;}
.y1e{bottom:358.560000px;}
.y59{bottom:362.880000px;}
.y5d{bottom:363.600000px;}
.y2b{bottom:363.960000px;}
.y50{bottom:370.080000px;}
.y54{bottom:372.240000px;}
.y61{bottom:372.600000px;}
.y5a{bottom:376.920000px;}
.y12{bottom:387.360000px;}
.y1d{bottom:405.000000px;}
.y16{bottom:407.160000px;}
.y33{bottom:408.960000px;}
.y4f{bottom:418.320000px;}
.y48{bottom:419.400000px;}
.y60{bottom:420.480000px;}
.ye{bottom:424.800000px;}
.y32{bottom:444.960000px;}
.y2a{bottom:449.280000px;}
.y1c{bottom:451.440000px;}
.y3{bottom:457.920000px;}
.y11{bottom:459.360000px;}
.y4e{bottom:467.280000px;}
.y47{bottom:468.000000px;}
.y1b{bottom:499.320000px;}
.y31{bottom:504.720000px;}
.y18{bottom:515.160000px;}
.yd{bottom:516.600000px;}
.y45{bottom:517.320000px;}
.y29{bottom:536.400000px;}
.y2{bottom:543.600000px;}
.yc{bottom:547.920000px;}
.y5f{bottom:551.160000px;}
.y46{bottom:566.280000px;}
.y27{bottom:570.960000px;}
.y3a{bottom:572.040000px;}
.y39{bottom:597.600000px;}
.y26{bottom:606.960000px;}
.y57{bottom:611.280000px;}
.y55{bottom:613.440000px;}
.y28{bottom:615.240000px;}
.y44{bottom:615.960000px;}
.y30{bottom:626.040000px;}
.y1{bottom:630.360000px;}
.y5{bottom:638.640000px;}
.y38{bottom:644.400000px;}
.y58{bottom:656.640000px;}
.y1a{bottom:659.160000px;}
.y43{bottom:664.200015px;}
.y37{bottom:680.400015px;}
.y42{bottom:713.160015px;}
.y53{bottom:725.760015px;}
.y3b{bottom:762.120015px;}
.y52{bottom:768.960015px;}
.hd{height:38.522461px;}
.h15{height:42.744134px;}
.h4{height:48.855465px;}
.h5{height:51.257813px;}
.h13{height:59.923825px;}
.hc{height:68.484368px;}
.h17{height:76.939453px;}
.hf{height:77.044922px;}
.h14{height:78.626953px;}
.h6{height:81.325188px;}
.he{height:82.675778px;}
.h11{height:85.605465px;}
.h12{height:88.066403px;}
.h16{height:90.146953px;}
.h2{height:91.406246px;}
.ha{height:102.726563px;}
.h10{height:102.964922px;}
.h7{height:111.972688px;}
.h9{height:119.847690px;}
.h18{height:120.244922px;}
.h8{height:143.964844px;}
.h3{height:177.656286px;}
.h1{height:213.187500px;}
.hb{height:272.109375px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:90.929055px;}
.x2a{left:92.299725px;}
.x2{left:93.552165px;}
.x4{left:95.294055px;}
.xc{left:99.495585px;}
.x11{left:112.800000px;}
.x12{left:118.800000px;}
.x9{left:120.157680px;}
.x27{left:123.038970px;}
.x23{left:142.234485px;}
.xd{left:153.495600px;}
.xf{left:154.860450px;}
.x15{left:159.177000px;}
.xa{left:164.435850px;}
.xe{left:180.495600px;}
.x24{left:184.830000px;}
.x22{left:187.309500px;}
.x28{left:194.359350px;}
.x25{left:217.722000px;}
.x2b{left:349.979100px;}
.x5{left:436.194300px;}
.x6{left:457.381800px;}
.xb{left:499.083600px;}
.x16{left:549.240000px;}
.x17{left:580.890000px;}
.x19{left:592.484850px;}
.x18{left:594.779850px;}
.x26{left:596.804850px;}
.x1a{left:623.542350px;}
.x10{left:774.392100px;}
.x7{left:912.150300px;}
.x8{left:938.865150px;}
.x1b{left:967.290000px;}
.x1d{left:973.289850px;}
.x21{left:999.015000px;}
.x1f{left:1004.414850px;}
.x29{left:1011.797250px;}
.x1e{left:1015.815000px;}
.x1c{left:1018.289850px;}
.x20{left:1049.677350px;}
.x13{left:1058.453100px;}
.x14{left:1068.013650px;}
.x3{left:1219.629900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.240000pt;}
.v1{vertical-align:23.040000pt;}
.v3{vertical-align:38.400000pt;}
.ls3e{letter-spacing:-11.164800pt;}
.ls20{letter-spacing:-6.365866pt;}
.ls3d{letter-spacing:-4.032000pt;}
.ls11{letter-spacing:-3.724800pt;}
.ls3b{letter-spacing:-3.705600pt;}
.ls44{letter-spacing:-3.446400pt;}
.ls4d{letter-spacing:-3.081600pt;}
.ls27{letter-spacing:-2.774400pt;}
.ls45{letter-spacing:-1.900800pt;}
.ls41{letter-spacing:-1.843200pt;}
.ls22{letter-spacing:-1.595733pt;}
.ls6{letter-spacing:-1.378667pt;}
.ls43{letter-spacing:-1.334400pt;}
.ls3f{letter-spacing:-0.576000pt;}
.ls42{letter-spacing:-0.566400pt;}
.ls3c{letter-spacing:-0.556800pt;}
.ls48{letter-spacing:-0.547200pt;}
.ls40{letter-spacing:-0.508800pt;}
.ls7{letter-spacing:-0.357867pt;}
.lsc{letter-spacing:-0.344533pt;}
.ls2a{letter-spacing:-0.326400pt;}
.ls28{letter-spacing:-0.297600pt;}
.ls16{letter-spacing:-0.268800pt;}
.lsd{letter-spacing:-0.259200pt;}
.ls36{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.231467pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.187200pt;}
.lse{letter-spacing:-0.057600pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls21{letter-spacing:-0.042667pt;}
.ls2e{letter-spacing:-0.038400pt;}
.lsf{letter-spacing:-0.028800pt;}
.ls17{letter-spacing:-0.025600pt;}
.ls4c{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010646pt;}
.ls4{letter-spacing:0.012800pt;}
.ls4a{letter-spacing:0.016000pt;}
.ls35{letter-spacing:0.021333pt;}
.ls15{letter-spacing:0.025600pt;}
.ls51{letter-spacing:0.038400pt;}
.ls4b{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.051200pt;}
.ls50{letter-spacing:0.076800pt;}
.ls10{letter-spacing:0.086400pt;}
.ls26{letter-spacing:0.186667pt;}
.ls23{letter-spacing:0.187733pt;}
.ls1f{letter-spacing:0.213335pt;}
.ls1e{letter-spacing:0.230400pt;}
.ls39{letter-spacing:0.231467pt;}
.lsb{letter-spacing:0.283733pt;}
.ls29{letter-spacing:0.297600pt;}
.ls2b{letter-spacing:0.326400pt;}
.ls4f{letter-spacing:1.312000pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls4e{letter-spacing:1.504000pt;}
.ls2{letter-spacing:1.587200pt;}
.ls1c{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:1.632000pt;}
.ls18{letter-spacing:1.664000pt;}
.ls8{letter-spacing:1.685334pt;}
.ls2f{letter-spacing:1.696000pt;}
.ls30{letter-spacing:1.706667pt;}
.ls2d{letter-spacing:1.728000pt;}
.ls1{letter-spacing:1.766400pt;}
.ls19{letter-spacing:1.792000pt;}
.ls49{letter-spacing:1.892786pt;}
.ls31{letter-spacing:1.893319pt;}
.ls33{letter-spacing:1.898667pt;}
.ls0{letter-spacing:1.920000pt;}
.ls5{letter-spacing:1.941334pt;}
.ls3a{letter-spacing:4.554667pt;}
.ls13{letter-spacing:19.200000pt;}
.ls46{letter-spacing:24.688000pt;}
.ls47{letter-spacing:26.421333pt;}
.ls25{letter-spacing:38.400000pt;}
.ls12{letter-spacing:43.733318pt;}
.ls32{letter-spacing:58.666668pt;}
.ls9{letter-spacing:60.533336pt;}
.ls1d{letter-spacing:66.133336pt;}
.ls2c{letter-spacing:99.200000pt;}
.ws12{word-spacing:-72.736000pt;}
.ws13{word-spacing:-72.640000pt;}
.ws11{word-spacing:-72.448000pt;}
.ws14{word-spacing:-49.258677pt;}
.ws15{word-spacing:-48.960009pt;}
.ws9{word-spacing:-32.640000pt;}
.ws17{word-spacing:-26.688000pt;}
.ws1b{word-spacing:-26.179200pt;}
.ws18{word-spacing:-26.131200pt;}
.ws1d{word-spacing:-26.121600pt;}
.ws1a{word-spacing:-26.112000pt;}
.ws3{word-spacing:-25.495465pt;}
.ws1c{word-spacing:-24.844800pt;}
.ws1f{word-spacing:-24.787200pt;}
.ws10{word-spacing:-24.777600pt;}
.ws21{word-spacing:-24.528000pt;}
.ws22{word-spacing:-24.460800pt;}
.wsf{word-spacing:-24.106666pt;}
.ws1e{word-spacing:-23.241600pt;}
.ws16{word-spacing:-22.982400pt;}
.wse{word-spacing:-21.947731pt;}
.wsa{word-spacing:-21.785598pt;}
.wsb{word-spacing:-21.734398pt;}
.wsc{word-spacing:-21.717331pt;}
.ws23{word-spacing:-21.398400pt;}
.wsd{word-spacing:-20.164265pt;}
.ws19{word-spacing:-15.523200pt;}
.ws2{word-spacing:-14.988800pt;}
.ws1{word-spacing:-11.645332pt;}
.ws8{word-spacing:-0.182400pt;}
.ws5{word-spacing:-0.149333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:607.469867pt;}
.ws6{word-spacing:667.005333pt;}
.ws4{word-spacing:689.046933pt;}
.ws20{word-spacing:1062.835200pt;}
._d{margin-left:-7.466667pt;}
._f{margin-left:-5.760000pt;}
._5{margin-left:-4.266666pt;}
._3{margin-left:-3.333333pt;}
._4{margin-left:-2.240000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.024000pt;}
._6{width:2.058667pt;}
._7{width:3.456000pt;}
._8{width:4.416000pt;}
._b{width:5.631999pt;}
._a{width:6.655999pt;}
._2{width:10.074666pt;}
._10{width:11.029333pt;}
._9{width:13.317333pt;}
._c{width:26.813865pt;}
._11{width:145.999627pt;}
._12{width:4215.662573pt;}
._e{width:4264.329240pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:53.333325pt;}
.fs3{font-size:58.666662pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:74.666662pt;}
.fsb{font-size:85.333325pt;}
.fs7{font-size:96.000000pt;}
.fs5{font-size:101.333325pt;}
.fs1{font-size:106.666662pt;}
.fs9{font-size:128.000000pt;}
.fs6{font-size:149.333376pt;}
.fs8{font-size:192.000000pt;}
.fs2{font-size:213.333376pt;}
.fs0{font-size:256.000000pt;}
.fsa{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:15.680000pt;}
.y7{bottom:19.520000pt;}
.y6{bottom:28.480000pt;}
.y25{bottom:33.280000pt;}
.y41{bottom:38.400000pt;}
.y24{bottom:69.120000pt;}
.y3f{bottom:81.920000pt;}
.y23{bottom:110.720000pt;}
.y4b{bottom:125.440000pt;}
.y40{bottom:125.760000pt;}
.y5c{bottom:143.040000pt;}
.y2e{bottom:146.560000pt;}
.y22{bottom:152.000000pt;}
.y64{bottom:156.480000pt;}
.y56{bottom:165.760000pt;}
.y4c{bottom:168.640000pt;}
.y4d{bottom:169.280000pt;}
.y4a{bottom:169.600000pt;}
.y2d{bottom:169.920000pt;}
.y9{bottom:192.320000pt;}
.y21{bottom:193.280000pt;}
.yb{bottom:193.600000pt;}
.y2f{bottom:196.160000pt;}
.y15{bottom:197.760000pt;}
.y19{bottom:201.280000pt;}
.yf{bottom:201.600000pt;}
.y8{bottom:212.160000pt;}
.y49{bottom:212.480000pt;}
.y3e{bottom:212.800000pt;}
.ya{bottom:213.760000pt;}
.y4{bottom:217.280000pt;}
.y36{bottom:219.520000pt;}
.y20{bottom:235.840000pt;}
.y5b{bottom:239.040000pt;}
.y14{bottom:240.320000pt;}
.y2c{bottom:246.080000pt;}
.y63{bottom:247.360000pt;}
.y3d{bottom:256.320000pt;}
.y5e{bottom:259.200000pt;}
.y17{bottom:265.920000pt;}
.y1f{bottom:277.120000pt;}
.y35{bottom:278.080000pt;}
.y51{bottom:284.800000pt;}
.y62{bottom:288.640000pt;}
.y10{bottom:295.040000pt;}
.y3c{bottom:299.840000pt;}
.y13{bottom:303.040000pt;}
.y34{bottom:310.080000pt;}
.y1e{bottom:318.720000pt;}
.y59{bottom:322.560000pt;}
.y5d{bottom:323.200000pt;}
.y2b{bottom:323.520000pt;}
.y50{bottom:328.960000pt;}
.y54{bottom:330.880000pt;}
.y61{bottom:331.200000pt;}
.y5a{bottom:335.040000pt;}
.y12{bottom:344.320000pt;}
.y1d{bottom:360.000000pt;}
.y16{bottom:361.920000pt;}
.y33{bottom:363.520000pt;}
.y4f{bottom:371.840000pt;}
.y48{bottom:372.800000pt;}
.y60{bottom:373.760000pt;}
.ye{bottom:377.600000pt;}
.y32{bottom:395.520000pt;}
.y2a{bottom:399.360000pt;}
.y1c{bottom:401.280000pt;}
.y3{bottom:407.040000pt;}
.y11{bottom:408.320000pt;}
.y4e{bottom:415.360000pt;}
.y47{bottom:416.000000pt;}
.y1b{bottom:443.840000pt;}
.y31{bottom:448.640000pt;}
.y18{bottom:457.920000pt;}
.yd{bottom:459.200000pt;}
.y45{bottom:459.840000pt;}
.y29{bottom:476.800000pt;}
.y2{bottom:483.200000pt;}
.yc{bottom:487.040000pt;}
.y5f{bottom:489.920000pt;}
.y46{bottom:503.360000pt;}
.y27{bottom:507.520000pt;}
.y3a{bottom:508.480000pt;}
.y39{bottom:531.200000pt;}
.y26{bottom:539.520000pt;}
.y57{bottom:543.360000pt;}
.y55{bottom:545.280000pt;}
.y28{bottom:546.880000pt;}
.y44{bottom:547.520000pt;}
.y30{bottom:556.480000pt;}
.y1{bottom:560.320000pt;}
.y5{bottom:567.680000pt;}
.y38{bottom:572.800000pt;}
.y58{bottom:583.680000pt;}
.y1a{bottom:585.920000pt;}
.y43{bottom:590.400013pt;}
.y37{bottom:604.800013pt;}
.y42{bottom:633.920013pt;}
.y53{bottom:645.120013pt;}
.y3b{bottom:677.440013pt;}
.y52{bottom:683.520013pt;}
.hd{height:34.242188pt;}
.h15{height:37.994786pt;}
.h4{height:43.427080pt;}
.h5{height:45.562500pt;}
.h13{height:53.265622pt;}
.hc{height:60.874994pt;}
.h17{height:68.390625pt;}
.hf{height:68.484375pt;}
.h14{height:69.890625pt;}
.h6{height:72.289056pt;}
.he{height:73.489580pt;}
.h11{height:76.093747pt;}
.h12{height:78.281247pt;}
.h16{height:80.130625pt;}
.h2{height:81.249997pt;}
.ha{height:91.312500pt;}
.h10{height:91.524375pt;}
.h7{height:99.531278pt;}
.h9{height:106.531280pt;}
.h18{height:106.884375pt;}
.h8{height:127.968750pt;}
.h3{height:157.916698pt;}
.h1{height:189.500000pt;}
.hb{height:241.875000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:80.825827pt;}
.x2a{left:82.044200pt;}
.x2{left:83.157480pt;}
.x4{left:84.705827pt;}
.xc{left:88.440520pt;}
.x11{left:100.266667pt;}
.x12{left:105.600000pt;}
.x9{left:106.806827pt;}
.x27{left:109.367973pt;}
.x23{left:126.430653pt;}
.xd{left:136.440533pt;}
.xf{left:137.653733pt;}
.x15{left:141.490667pt;}
.xa{left:146.165200pt;}
.xe{left:160.440533pt;}
.x24{left:164.293333pt;}
.x22{left:166.497333pt;}
.x28{left:172.763867pt;}
.x25{left:193.530667pt;}
.x2b{left:311.092533pt;}
.x5{left:387.728267pt;}
.x6{left:406.561600pt;}
.xb{left:443.629867pt;}
.x16{left:488.213333pt;}
.x17{left:516.346667pt;}
.x19{left:526.653200pt;}
.x18{left:528.693200pt;}
.x26{left:530.493200pt;}
.x1a{left:554.259867pt;}
.x10{left:688.348533pt;}
.x7{left:810.800267pt;}
.x8{left:834.546800pt;}
.x1b{left:859.813333pt;}
.x1d{left:865.146533pt;}
.x21{left:888.013333pt;}
.x1f{left:892.813200pt;}
.x29{left:899.375333pt;}
.x1e{left:902.946667pt;}
.x1c{left:905.146533pt;}
.x20{left:933.046533pt;}
.x13{left:940.847200pt;}
.x14{left:949.345467pt;}
.x3{left:1084.115467pt;}
}




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