
    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_2d8ec5262f3343903f65a022.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_34fad82eb0a71337eb804e06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_6726f306c3aa52d927f687d8.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_bd8f9232456d98110dd3a9fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_addf1f1648d0676896763633.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_3b0e29dc74386c9f5da61d46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_c5cb26775887eb2575734edb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_ae03e9dba298a9531048d0f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.569000;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_ae5e0dcf6e2a044a8dda8408.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1bc20e2d62be223d335790bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_4c6ad176b289a17c7a815dc1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_67a0615f1c65d997df3575bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_5c20fd3eea5b9121923ac1a5.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_5ede8c65f7da5eaee5355087.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_01b90f389d30f52da6756904.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_dd8ae167ecd466a717b3cc0f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c5cb26775887eb2575734edb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.859000;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_ceb9e43ec874ddf504aa66d3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.724000;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_d665e1cf9d291e91b2c0e024.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.723000;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_4a16122a9b7cfdb6b0ebee4c.woff2')format("woff");}.ff14{font-family:ff14;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.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);}
.m9{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);}
.m3{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);}
.m8{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);}
.mb{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);}
.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);}
.m6{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);}
.mc{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);}
.m4{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.m5{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);}
.v1{vertical-align:-22.854000px;}
.v4{vertical-align:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v2{vertical-align:27.024000px;}
.v5{vertical-align:46.254000px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000502px;}
.ls11{letter-spacing:0.001993px;}
.ls2f{letter-spacing:0.002698px;}
.ls24{letter-spacing:0.004322px;}
.ls22{letter-spacing:0.011232px;}
.ls13{letter-spacing:0.017275px;}
.ls31{letter-spacing:0.327273px;}
.ls7{letter-spacing:0.589091px;}
.lsb{letter-spacing:0.654546px;}
.ls34{letter-spacing:1.816322px;}
.ls8{letter-spacing:1.832729px;}
.ls1e{letter-spacing:2.984915px;}
.ls18{letter-spacing:2.986613px;}
.ls2c{letter-spacing:2.987971px;}
.ls12{letter-spacing:2.988103px;}
.ls30{letter-spacing:2.989289px;}
.ls17{letter-spacing:4.654754px;}
.ls19{letter-spacing:7.134551px;}
.ls1b{letter-spacing:10.043429px;}
.ls21{letter-spacing:10.049429px;}
.ls9{letter-spacing:10.865464px;}
.ls2e{letter-spacing:10.904877px;}
.ls6{letter-spacing:10.930918px;}
.ls35{letter-spacing:12.043646px;}
.lsf{letter-spacing:12.088872px;}
.ls2b{letter-spacing:12.094509px;}
.lsa{letter-spacing:12.109101px;}
.ls1a{letter-spacing:14.530921px;}
.ls28{letter-spacing:14.596376px;}
.ls2a{letter-spacing:16.363650px;}
.ls2d{letter-spacing:18.185232px;}
.lse{letter-spacing:18.196379px;}
.ls1d{letter-spacing:18.785470px;}
.ls1f{letter-spacing:19.963653px;}
.ls10{letter-spacing:21.164915px;}
.ls29{letter-spacing:21.176367px;}
.ls3{letter-spacing:21.419468px;}
.lsc{letter-spacing:21.796382px;}
.ls20{letter-spacing:22.627860px;}
.ls27{letter-spacing:28.223429px;}
.ls36{letter-spacing:29.454570px;}
.ls15{letter-spacing:29.847298px;}
.ls5{letter-spacing:29.912752px;}
.ls23{letter-spacing:30.240025px;}
.lsd{letter-spacing:30.305480px;}
.ls33{letter-spacing:30.567298px;}
.ls25{letter-spacing:31.865429px;}
.ls32{letter-spacing:32.596391px;}
.ls0{letter-spacing:33.839194px;}
.ls16{letter-spacing:33.905483px;}
.ls4{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls14{letter-spacing:77.563701px;}
.ls1c{letter-spacing:141.840118px;}
.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;}
}
.ws20{word-spacing:-65.454600px;}
.ws24{word-spacing:-53.410954px;}
.ws23{word-spacing:-53.345499px;}
.ws34{word-spacing:-50.923679px;}
.ws32{word-spacing:-50.858224px;}
.ws26{word-spacing:-50.809387px;}
.ws22{word-spacing:-47.258221px;}
.ws31{word-spacing:-33.453846px;}
.ws28{word-spacing:-29.641181px;}
.ws1a{word-spacing:-27.646998px;}
.ws2d{word-spacing:-14.596376px;}
.ws4{word-spacing:-14.197398px;}
.ws1f{word-spacing:-12.501829px;}
.ws8{word-spacing:-12.206857px;}
.ws2e{word-spacing:-11.788373px;}
.ws3e{word-spacing:-11.650919px;}
.ws1b{word-spacing:-11.476915px;}
.ws30{word-spacing:-11.417140px;}
.ws1e{word-spacing:-11.258191px;}
.ws10{word-spacing:-11.237813px;}
.ws2c{word-spacing:-11.192737px;}
.ws44{word-spacing:-11.127282px;}
.ws21{word-spacing:-10.996373px;}
.ws17{word-spacing:-10.930918px;}
.ws18{word-spacing:-10.865464px;}
.ws43{word-spacing:-10.734554px;}
.ws37{word-spacing:-10.603645px;}
.ws40{word-spacing:-10.472736px;}
.ws13{word-spacing:-10.281403px;}
.ws42{word-spacing:-10.145463px;}
.ws1c{word-spacing:-10.086554px;}
.ws2f{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.ws47{word-spacing:-9.922750px;}
.ws46{word-spacing:-9.862974px;}
.ws11{word-spacing:-9.803198px;}
.ws12{word-spacing:-9.623872px;}
.ws14{word-spacing:-9.384769px;}
.ws6{word-spacing:-9.247945px;}
.wsa{word-spacing:-9.194147px;}
.ws45{word-spacing:-9.151644px;}
.ws3c{word-spacing:-9.032735px;}
.ws1d{word-spacing:-8.901826px;}
.ws3d{word-spacing:-8.509098px;}
.ws3f{word-spacing:-7.985461px;}
.ws35{word-spacing:-7.252370px;}
.ws41{word-spacing:-5.962914px;}
.ws2b{word-spacing:-5.504732px;}
.ws29{word-spacing:-5.439277px;}
.ws3a{word-spacing:-5.301823px;}
.ws36{word-spacing:-5.112004px;}
.wsf{word-spacing:-5.027128px;}
.ws3b{word-spacing:-3.868367px;}
.ws38{word-spacing:-3.652367px;}
.wsb{word-spacing:-3.383919px;}
.ws39{word-spacing:-0.464728px;}
.ws33{word-spacing:-0.065455px;}
.ws25{word-spacing:-0.052364px;}
.wsc{word-spacing:0.000000px;}
.ws16{word-spacing:1.505456px;}
.wsd{word-spacing:2.683639px;}
.ws15{word-spacing:7.985461px;}
.ws2a{word-spacing:10.800009px;}
.ws27{word-spacing:10.865464px;}
.wse{word-spacing:11.429123px;}
.ws9{word-spacing:15.386342px;}
.ws5{word-spacing:15.440141px;}
.ws7{word-spacing:18.399053px;}
.ws1{word-spacing:23.384371px;}
.ws2{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws19{word-spacing:2261.856812px;}
._1c{margin-left:-11.861537px;}
._2{margin-left:-10.759650px;}
._0{margin-left:-8.091257px;}
._4{margin-left:-5.881958px;}
._c{margin-left:-3.890165px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._7{width:1.560154px;}
._3{width:2.668393px;}
._1b{width:4.617839px;}
._1a{width:5.984712px;}
._8{width:13.772390px;}
._a{width:17.968666px;}
._5{width:20.959727px;}
._9{width:22.810522px;}
._b{width:25.608038px;}
._d{width:26.659918px;}
._e{width:28.811839px;}
._f{width:30.617507px;}
._1e{width:35.865360px;}
._1d{width:46.948535px;}
._19{width:68.741940px;}
._14{width:1181.970028px;}
._12{width:1398.177329px;}
._10{width:1445.828278px;}
._17{width:1523.130160px;}
._16{width:1537.574113px;}
._15{width:1540.519570px;}
._13{width:1639.133650px;}
._11{width:1993.646168px;}
._18{width:2031.232706px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y44{bottom:160.314000px;}
.y2c{bottom:171.250500px;}
.y43{bottom:190.800000px;}
.y59{bottom:202.921500px;}
.y2b{bottom:207.178500px;}
.y42{bottom:227.278500px;}
.y58{bottom:245.527500px;}
.y2a{bottom:254.026500px;}
.y6d{bottom:254.461500px;}
.y41{bottom:279.024000px;}
.y6c{bottom:284.946000px;}
.y57{bottom:297.273000px;}
.y29{bottom:300.876000px;}
.y11{bottom:309.396000px;}
.y6b{bottom:336.691500px;}
.y10{bottom:337.042500px;}
.y40{bottom:339.474000px;}
.y28{bottom:347.725500px;}
.y56{bottom:357.510000px;}
.yf{bottom:361.699500px;}
.y3f{bottom:381.946500px;}
.ye{bottom:389.346000px;}
.y27{bottom:394.575000px;}
.y6a{bottom:397.267500px;}
.y55{bottom:398.622000px;}
.yd{bottom:414.004500px;}
.y3e{bottom:425.913000px;}
.y69{bottom:427.753500px;}
.y26{bottom:441.424500px;}
.yc{bottom:441.651000px;}
.y54{bottom:442.612500px;}
.y3d{bottom:460.882500px;}
.yb{bottom:469.297500px;}
.y68{bottom:471.024000px;}
.y53{bottom:486.603000px;}
.y25{bottom:488.274000px;}
.ya{bottom:493.954500px;}
.y3c{bottom:495.850500px;}
.y67{bottom:515.733000px;}
.y52{bottom:527.716500px;}
.y24{bottom:535.123500px;}
.y3b{bottom:539.817000px;}
.y66{bottom:560.443500px;}
.y51{bottom:563.515500px;}
.y3a{bottom:570.303000px;}
.y23{bottom:581.973000px;}
.y65{bottom:603.714000px;}
.y50{bottom:606.121500px;}
.y39{bottom:614.269500px;}
.y22{bottom:628.822500px;}
.y64{bottom:634.198500px;}
.y4f{bottom:648.729000px;}
.y38{bottom:658.236000px;}
.y9{bottom:665.079000px;}
.y21{bottom:680.568000px;}
.y63{bottom:685.944000px;}
.y4e{bottom:691.335000px;}
.y37{bottom:709.981500px;}
.y8{bottom:717.490500px;}
.y4d{bottom:733.942500px;}
.y20{bottom:740.073000px;}
.y7{bottom:744.390000px;}
.y62{bottom:746.520000px;}
.y36{bottom:770.431500px;}
.y1f{bottom:770.559000px;}
.y6{bottom:771.288000px;}
.y61{bottom:777.006000px;}
.y4c{bottom:785.688000px;}
.y35{bottom:800.917500px;}
.y60{bottom:824.038500px;}
.y1e{bottom:827.113500px;}
.y4b{bottom:845.925000px;}
.y34{bottom:851.370000px;}
.y1d{bottom:854.013000px;}
.y5f{bottom:854.524500px;}
.y5{bottom:862.198500px;}
.y4a{bottom:876.409500px;}
.y1c{bottom:880.912500px;}
.y4{bottom:893.580000px;}
.y33{bottom:895.813500px;}
.y5e{bottom:899.235000px;}
.y1b{bottom:907.810500px;}
.y49{bottom:912.208500px;}
.y5d{bottom:929.721000px;}
.y1a{bottom:934.710000px;}
.y32{bottom:940.258500px;}
.y48{bottom:954.816000px;}
.y3{bottom:959.440500px;}
.y19{bottom:961.609500px;}
.y5c{bottom:981.466500px;}
.y31{bottom:984.702000px;}
.y47{bottom:997.423500px;}
.y2{bottom:999.790500px;}
.y18{bottom:1000.314000px;}
.y30{bottom:1027.174500px;}
.y17{bottom:1027.213500px;}
.y16{bottom:1032.636000px;}
.y1{bottom:1040.139000px;}
.y5b{bottom:1042.041000px;}
.y46{bottom:1049.169000px;}
.y2f{bottom:1057.659000px;}
.y14{bottom:1059.342000px;}
.y15{bottom:1065.280500px;}
.y5a{bottom:1072.527000px;}
.y6f{bottom:1086.093000px;}
.y2e{bottom:1088.145000px;}
.y13{bottom:1108.509000px;}
.y45{bottom:1109.404500px;}
.y6e{bottom:1112.991000px;}
.y12{bottom:1139.890500px;}
.y2d{bottom:1192.194000px;}
.hc{height:16.677504px;}
.h9{height:27.783619px;}
.h8{height:31.800699px;}
.h6{height:38.519654px;}
.hb{height:41.842920px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h10{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.hf{height:50.485715px;}
.he{height:53.755715px;}
.h3{height:53.798400px;}
.h11{height:55.548699px;}
.hd{height:58.824699px;}
.h2{height:60.254040px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x15{left:108.000000px;}
.x1b{left:110.739000px;}
.x19{left:114.363000px;}
.x18{left:120.273000px;}
.xb{left:125.932500px;}
.xc{left:127.977000px;}
.x1e{left:130.416000px;}
.x17{left:132.999000px;}
.x1a{left:150.178500px;}
.x2f{left:152.832000px;}
.x14{left:158.809500px;}
.x1{left:169.173000px;}
.x2a{left:170.650500px;}
.x13{left:173.754000px;}
.x28{left:185.526000px;}
.x10{left:214.422000px;}
.x11{left:221.125500px;}
.x22{left:224.014500px;}
.x1d{left:236.020500px;}
.x2c{left:245.071500px;}
.x34{left:248.226000px;}
.x2e{left:249.669000px;}
.x2{left:250.741500px;}
.x27{left:267.433500px;}
.x4{left:274.819500px;}
.x30{left:296.601000px;}
.x3{left:300.654000px;}
.x31{left:309.679500px;}
.xd{left:325.845000px;}
.x21{left:327.820500px;}
.x7{left:329.793000px;}
.x20{left:330.949500px;}
.x2d{left:347.385000px;}
.x5{left:353.085000px;}
.x12{left:364.890000px;}
.x2b{left:376.666500px;}
.x6{left:381.384000px;}
.xe{left:382.602000px;}
.x8{left:392.640000px;}
.x9{left:405.966000px;}
.x16{left:409.203000px;}
.x1f{left:411.025500px;}
.x23{left:430.471500px;}
.x29{left:439.158000px;}
.x24{left:448.843500px;}
.x25{left:471.360000px;}
.x26{left:485.337000px;}
.x32{left:501.121500px;}
.xf{left:511.759500px;}
.x33{left:521.298000px;}
.x1c{left:799.195500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v2{vertical-align:24.021333pt;}
.v5{vertical-align:41.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000446pt;}
.ls11{letter-spacing:0.001772pt;}
.ls2f{letter-spacing:0.002399pt;}
.ls24{letter-spacing:0.003841pt;}
.ls22{letter-spacing:0.009984pt;}
.ls13{letter-spacing:0.015356pt;}
.ls31{letter-spacing:0.290909pt;}
.ls7{letter-spacing:0.523637pt;}
.lsb{letter-spacing:0.581819pt;}
.ls34{letter-spacing:1.614508pt;}
.ls8{letter-spacing:1.629092pt;}
.ls1e{letter-spacing:2.653258pt;}
.ls18{letter-spacing:2.654767pt;}
.ls2c{letter-spacing:2.655975pt;}
.ls12{letter-spacing:2.656092pt;}
.ls30{letter-spacing:2.657146pt;}
.ls17{letter-spacing:4.137559pt;}
.ls19{letter-spacing:6.341823pt;}
.ls1b{letter-spacing:8.927492pt;}
.ls21{letter-spacing:8.932825pt;}
.ls9{letter-spacing:9.658190pt;}
.ls2e{letter-spacing:9.693224pt;}
.ls6{letter-spacing:9.716372pt;}
.ls35{letter-spacing:10.705463pt;}
.lsf{letter-spacing:10.745664pt;}
.ls2b{letter-spacing:10.750674pt;}
.lsa{letter-spacing:10.763645pt;}
.ls1a{letter-spacing:12.916374pt;}
.ls28{letter-spacing:12.974556pt;}
.ls2a{letter-spacing:14.545467pt;}
.ls2d{letter-spacing:16.164651pt;}
.lse{letter-spacing:16.174559pt;}
.ls1d{letter-spacing:16.698196pt;}
.ls1f{letter-spacing:17.745469pt;}
.ls10{letter-spacing:18.813258pt;}
.ls29{letter-spacing:18.823437pt;}
.ls3{letter-spacing:19.039527pt;}
.lsc{letter-spacing:19.374562pt;}
.ls20{letter-spacing:20.113653pt;}
.ls27{letter-spacing:25.087492pt;}
.ls36{letter-spacing:26.181840pt;}
.ls15{letter-spacing:26.530931pt;}
.ls5{letter-spacing:26.589113pt;}
.ls23{letter-spacing:26.880022pt;}
.lsd{letter-spacing:26.938204pt;}
.ls33{letter-spacing:27.170932pt;}
.ls25{letter-spacing:28.324825pt;}
.ls32{letter-spacing:28.974570pt;}
.ls0{letter-spacing:30.079283pt;}
.ls16{letter-spacing:30.138207pt;}
.ls4{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls14{letter-spacing:68.945512pt;}
.ls1c{letter-spacing:126.080105pt;}
.ws20{word-spacing:-58.181867pt;}
.ws24{word-spacing:-47.476403pt;}
.ws23{word-spacing:-47.418221pt;}
.ws34{word-spacing:-45.265492pt;}
.ws32{word-spacing:-45.207310pt;}
.ws26{word-spacing:-45.163900pt;}
.ws22{word-spacing:-42.007308pt;}
.ws31{word-spacing:-29.736752pt;}
.ws28{word-spacing:-26.347717pt;}
.ws1a{word-spacing:-24.575109pt;}
.ws2d{word-spacing:-12.974556pt;}
.ws4{word-spacing:-12.619909pt;}
.ws1f{word-spacing:-11.112737pt;}
.ws8{word-spacing:-10.850540pt;}
.ws2e{word-spacing:-10.478554pt;}
.ws3e{word-spacing:-10.356372pt;}
.ws1b{word-spacing:-10.201702pt;}
.ws30{word-spacing:-10.148569pt;}
.ws1e{word-spacing:-10.007281pt;}
.ws10{word-spacing:-9.989167pt;}
.ws2c{word-spacing:-9.949099pt;}
.ws44{word-spacing:-9.890917pt;}
.ws21{word-spacing:-9.774554pt;}
.ws17{word-spacing:-9.716372pt;}
.ws18{word-spacing:-9.658190pt;}
.ws43{word-spacing:-9.541826pt;}
.ws37{word-spacing:-9.425462pt;}
.ws40{word-spacing:-9.309099pt;}
.ws13{word-spacing:-9.139025pt;}
.ws42{word-spacing:-9.018189pt;}
.ws1c{word-spacing:-8.965826pt;}
.ws2f{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.ws47{word-spacing:-8.820222pt;}
.ws46{word-spacing:-8.767088pt;}
.ws11{word-spacing:-8.713954pt;}
.ws12{word-spacing:-8.554553pt;}
.ws14{word-spacing:-8.342017pt;}
.ws6{word-spacing:-8.220396pt;}
.wsa{word-spacing:-8.172575pt;}
.ws45{word-spacing:-8.134795pt;}
.ws3c{word-spacing:-8.029098pt;}
.ws1d{word-spacing:-7.912734pt;}
.ws3d{word-spacing:-7.563643pt;}
.ws3f{word-spacing:-7.098188pt;}
.ws35{word-spacing:-6.446551pt;}
.ws41{word-spacing:-5.300368pt;}
.ws2b{word-spacing:-4.893095pt;}
.ws29{word-spacing:-4.834913pt;}
.ws3a{word-spacing:-4.712731pt;}
.ws36{word-spacing:-4.544004pt;}
.wsf{word-spacing:-4.468558pt;}
.ws3b{word-spacing:-3.438548pt;}
.ws38{word-spacing:-3.246548pt;}
.wsb{word-spacing:-3.007928pt;}
.ws39{word-spacing:-0.413091pt;}
.ws33{word-spacing:-0.058182pt;}
.ws25{word-spacing:-0.046545pt;}
.wsc{word-spacing:0.000000pt;}
.ws16{word-spacing:1.338183pt;}
.wsd{word-spacing:2.385457pt;}
.ws15{word-spacing:7.098188pt;}
.ws2a{word-spacing:9.600008pt;}
.ws27{word-spacing:9.658190pt;}
.wse{word-spacing:10.159221pt;}
.ws9{word-spacing:13.676749pt;}
.ws5{word-spacing:13.724570pt;}
.ws7{word-spacing:16.354714pt;}
.ws1{word-spacing:20.786108pt;}
.ws2{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws19{word-spacing:2010.539389pt;}
._1c{margin-left:-10.543589pt;}
._2{margin-left:-9.564133pt;}
._0{margin-left:-7.192228pt;}
._4{margin-left:-5.228407pt;}
._c{margin-left:-3.457924pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._7{width:1.386803pt;}
._3{width:2.371905pt;}
._1b{width:4.104746pt;}
._1a{width:5.319744pt;}
._8{width:12.242125pt;}
._a{width:15.972147pt;}
._5{width:18.630868pt;}
._9{width:20.276019pt;}
._b{width:22.762701pt;}
._d{width:23.697705pt;}
._e{width:25.610524pt;}
._f{width:27.215562pt;}
._1e{width:31.880320pt;}
._1d{width:41.732031pt;}
._19{width:61.103947pt;}
._14{width:1050.640025pt;}
._12{width:1242.824292pt;}
._10{width:1285.180691pt;}
._17{width:1353.893476pt;}
._16{width:1366.732545pt;}
._15{width:1369.350729pt;}
._13{width:1457.007689pt;}
._11{width:1772.129927pt;}
._18{width:1805.540183pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:142.501333pt;}
.y2c{bottom:152.222667pt;}
.y43{bottom:169.600000pt;}
.y59{bottom:180.374667pt;}
.y2b{bottom:184.158667pt;}
.y42{bottom:202.025333pt;}
.y58{bottom:218.246667pt;}
.y2a{bottom:225.801333pt;}
.y6d{bottom:226.188000pt;}
.y41{bottom:248.021333pt;}
.y6c{bottom:253.285333pt;}
.y57{bottom:264.242667pt;}
.y29{bottom:267.445333pt;}
.y11{bottom:275.018667pt;}
.y6b{bottom:299.281333pt;}
.y10{bottom:299.593333pt;}
.y40{bottom:301.754667pt;}
.y28{bottom:309.089333pt;}
.y56{bottom:317.786667pt;}
.yf{bottom:321.510667pt;}
.y3f{bottom:339.508000pt;}
.ye{bottom:346.085333pt;}
.y27{bottom:350.733333pt;}
.y6a{bottom:353.126667pt;}
.y55{bottom:354.330667pt;}
.yd{bottom:368.004000pt;}
.y3e{bottom:378.589333pt;}
.y69{bottom:380.225333pt;}
.y26{bottom:392.377333pt;}
.yc{bottom:392.578667pt;}
.y54{bottom:393.433333pt;}
.y3d{bottom:409.673333pt;}
.yb{bottom:417.153333pt;}
.y68{bottom:418.688000pt;}
.y53{bottom:432.536000pt;}
.y25{bottom:434.021333pt;}
.ya{bottom:439.070667pt;}
.y3c{bottom:440.756000pt;}
.y67{bottom:458.429333pt;}
.y52{bottom:469.081333pt;}
.y24{bottom:475.665333pt;}
.y3b{bottom:479.837333pt;}
.y66{bottom:498.172000pt;}
.y51{bottom:500.902667pt;}
.y3a{bottom:506.936000pt;}
.y23{bottom:517.309333pt;}
.y65{bottom:536.634667pt;}
.y50{bottom:538.774667pt;}
.y39{bottom:546.017333pt;}
.y22{bottom:558.953333pt;}
.y64{bottom:563.732000pt;}
.y4f{bottom:576.648000pt;}
.y38{bottom:585.098667pt;}
.y9{bottom:591.181333pt;}
.y21{bottom:604.949333pt;}
.y63{bottom:609.728000pt;}
.y4e{bottom:614.520000pt;}
.y37{bottom:631.094667pt;}
.y8{bottom:637.769333pt;}
.y4d{bottom:652.393333pt;}
.y20{bottom:657.842667pt;}
.y7{bottom:661.680000pt;}
.y62{bottom:663.573333pt;}
.y36{bottom:684.828000pt;}
.y1f{bottom:684.941333pt;}
.y6{bottom:685.589333pt;}
.y61{bottom:690.672000pt;}
.y4c{bottom:698.389333pt;}
.y35{bottom:711.926667pt;}
.y60{bottom:732.478667pt;}
.y1e{bottom:735.212000pt;}
.y4b{bottom:751.933333pt;}
.y34{bottom:756.773333pt;}
.y1d{bottom:759.122667pt;}
.y5f{bottom:759.577333pt;}
.y5{bottom:766.398667pt;}
.y4a{bottom:779.030667pt;}
.y1c{bottom:783.033333pt;}
.y4{bottom:794.293333pt;}
.y33{bottom:796.278667pt;}
.y5e{bottom:799.320000pt;}
.y1b{bottom:806.942667pt;}
.y49{bottom:810.852000pt;}
.y5d{bottom:826.418667pt;}
.y1a{bottom:830.853333pt;}
.y32{bottom:835.785333pt;}
.y48{bottom:848.725333pt;}
.y3{bottom:852.836000pt;}
.y19{bottom:854.764000pt;}
.y5c{bottom:872.414667pt;}
.y31{bottom:875.290667pt;}
.y47{bottom:886.598667pt;}
.y2{bottom:888.702667pt;}
.y18{bottom:889.168000pt;}
.y30{bottom:913.044000pt;}
.y17{bottom:913.078667pt;}
.y16{bottom:917.898667pt;}
.y1{bottom:924.568000pt;}
.y5b{bottom:926.258667pt;}
.y46{bottom:932.594667pt;}
.y2f{bottom:940.141333pt;}
.y14{bottom:941.637333pt;}
.y15{bottom:946.916000pt;}
.y5a{bottom:953.357333pt;}
.y6f{bottom:965.416000pt;}
.y2e{bottom:967.240000pt;}
.y13{bottom:985.341333pt;}
.y45{bottom:986.137333pt;}
.y6e{bottom:989.325333pt;}
.y12{bottom:1013.236000pt;}
.y2d{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.h9{height:24.696550pt;}
.h8{height:28.267288pt;}
.h6{height:34.239693pt;}
.hb{height:37.193707pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h10{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.hf{height:44.876191pt;}
.he{height:47.782858pt;}
.h3{height:47.820800pt;}
.h11{height:49.376621pt;}
.hd{height:52.288621pt;}
.h2{height:53.559147pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x15{left:96.000000pt;}
.x1b{left:98.434667pt;}
.x19{left:101.656000pt;}
.x18{left:106.909333pt;}
.xb{left:111.940000pt;}
.xc{left:113.757333pt;}
.x1e{left:115.925333pt;}
.x17{left:118.221333pt;}
.x1a{left:133.492000pt;}
.x2f{left:135.850667pt;}
.x14{left:141.164000pt;}
.x1{left:150.376000pt;}
.x2a{left:151.689333pt;}
.x13{left:154.448000pt;}
.x28{left:164.912000pt;}
.x10{left:190.597333pt;}
.x11{left:196.556000pt;}
.x22{left:199.124000pt;}
.x1d{left:209.796000pt;}
.x2c{left:217.841333pt;}
.x34{left:220.645333pt;}
.x2e{left:221.928000pt;}
.x2{left:222.881333pt;}
.x27{left:237.718667pt;}
.x4{left:244.284000pt;}
.x30{left:263.645333pt;}
.x3{left:267.248000pt;}
.x31{left:275.270667pt;}
.xd{left:289.640000pt;}
.x21{left:291.396000pt;}
.x7{left:293.149333pt;}
.x20{left:294.177333pt;}
.x2d{left:308.786667pt;}
.x5{left:313.853333pt;}
.x12{left:324.346667pt;}
.x2b{left:334.814667pt;}
.x6{left:339.008000pt;}
.xe{left:340.090667pt;}
.x8{left:349.013333pt;}
.x9{left:360.858667pt;}
.x16{left:363.736000pt;}
.x1f{left:365.356000pt;}
.x23{left:382.641333pt;}
.x29{left:390.362667pt;}
.x24{left:398.972000pt;}
.x25{left:418.986667pt;}
.x26{left:431.410667pt;}
.x32{left:445.441333pt;}
.xf{left:454.897333pt;}
.x33{left:463.376000pt;}
.x1c{left:710.396000pt;}
}




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