
    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_09b8c2bc67c7b85f24aff04d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e6a1047bb3a3b15f521063a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_507214bfc70ba9af1d6e0500.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ddc953cf20a0dcf0d3c6e14.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_c7b553108ada418ce072110b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d96c11f14f28a06ef38d1a9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_4e8ddd778526d055608cc323.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f6c6607c02a6e532831e4d5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_f40b7a88eb461e8919ff7677.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dbe8193df18cc72a80c6d99d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_57247183e99db12c7a4151d0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eb1a4220b1ebb877cbc50f75.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;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_0db39fdb9a7f31e671959e21.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_109ebde73e2d56a9ed4b3c50.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.440000;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;}
.m4{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);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m6{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);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,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);}
.m3{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);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m12{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v6{vertical-align:-53.016000px;}
.v7{vertical-align:-25.992000px;}
.v5{vertical-align:-15.714000px;}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.572000px;}
.v2{vertical-align:25.770000px;}
.v1{vertical-align:33.888000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000062px;}
.ls14{letter-spacing:0.000141px;}
.ls2{letter-spacing:0.000502px;}
.lsd{letter-spacing:0.000544px;}
.ls8{letter-spacing:0.001046px;}
.ls1f{letter-spacing:0.002157px;}
.lsb{letter-spacing:0.002688px;}
.ls10{letter-spacing:0.002706px;}
.ls24{letter-spacing:0.003056px;}
.ls13{letter-spacing:0.003543px;}
.ls1b{letter-spacing:1.815231px;}
.ls5{letter-spacing:1.819593px;}
.ls18{letter-spacing:2.991543px;}
.ls17{letter-spacing:5.311591px;}
.ls22{letter-spacing:7.131229px;}
.ls1c{letter-spacing:13.898915px;}
.ls1a{letter-spacing:14.543412px;}
.ls21{letter-spacing:14.546712px;}
.ls20{letter-spacing:18.809644px;}
.ls19{letter-spacing:21.681229px;}
.lsf{letter-spacing:23.210712px;}
.lse{letter-spacing:23.216658px;}
.ls4{letter-spacing:23.418502px;}
.ls9{letter-spacing:23.913195px;}
.ls1e{letter-spacing:25.317229px;}
.ls12{letter-spacing:27.824706px;}
.ls16{letter-spacing:28.379412px;}
.ls15{letter-spacing:28.388149px;}
.ls6{letter-spacing:28.791780px;}
.ls3{letter-spacing:28.797780px;}
.ls1d{letter-spacing:28.953229px;}
.ls25{letter-spacing:28.988915px;}
.lsc{letter-spacing:29.889392px;}
.ls1{letter-spacing:30.202892px;}
.ls11{letter-spacing:30.584915px;}
.lsa{letter-spacing:31.079604px;}
.ls23{letter-spacing:32.319791px;}
.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;}
}
.ws3a{word-spacing:-50.809387px;}
.ws47{word-spacing:-47.275200px;}
.ws2b{word-spacing:-42.637126px;}
.ws25{word-spacing:-18.183288px;}
.ws14{word-spacing:-16.730196px;}
.ws9{word-spacing:-16.605662px;}
.ws41{word-spacing:-7.305933px;}
.ws3d{word-spacing:-7.293442px;}
.ws3f{word-spacing:-7.279152px;}
.ws22{word-spacing:-0.052364px;}
.ws3b{word-spacing:-0.047821px;}
.ws21{word-spacing:0.000000px;}
.ws2c{word-spacing:0.013091px;}
.ws27{word-spacing:0.274909px;}
.ws37{word-spacing:2.042184px;}
.ws33{word-spacing:2.238547px;}
.ws4c{word-spacing:2.565820px;}
.ws6{word-spacing:2.642082px;}
.wsf{word-spacing:3.024003px;}
.ws2{word-spacing:3.060511px;}
.ws2d{word-spacing:3.154912px;}
.ws3{word-spacing:3.180062px;}
.ws4b{word-spacing:3.220366px;}
.ws5{word-spacing:3.239838px;}
.ws4{word-spacing:3.299613px;}
.ws35{word-spacing:3.351276px;}
.wse{word-spacing:3.416730px;}
.ws7{word-spacing:3.419164px;}
.ws4f{word-spacing:3.482185px;}
.wsd{word-spacing:3.547639px;}
.ws11{word-spacing:3.613094px;}
.ws10{word-spacing:3.678549px;}
.ws4a{word-spacing:3.744003px;}
.ws2e{word-spacing:3.809458px;}
.ws1{word-spacing:3.873485px;}
.wsb{word-spacing:3.874912px;}
.ws23{word-spacing:3.940367px;}
.ws4e{word-spacing:4.005822px;}
.ws24{word-spacing:4.071276px;}
.ws2f{word-spacing:4.464004px;}
.ws20{word-spacing:5.053095px;}
.ws38{word-spacing:5.262550px;}
.ws45{word-spacing:5.314914px;}
.ws44{word-spacing:5.380368px;}
.ws1e{word-spacing:5.445823px;}
.ws4d{word-spacing:6.034914px;}
.ws3e{word-spacing:6.427642px;}
.ws29{word-spacing:6.440733px;}
.ws28{word-spacing:6.506187px;}
.ws2a{word-spacing:6.665264px;}
.ws1a{word-spacing:6.692034px;}
.ws16{word-spacing:6.702551px;}
.ws18{word-spacing:6.712061px;}
.ws1b{word-spacing:6.833460px;}
.ws15{word-spacing:6.964369px;}
.wsc{word-spacing:7.029824px;}
.ws32{word-spacing:7.213097px;}
.ws42{word-spacing:7.262944px;}
.ws31{word-spacing:7.278552px;}
.ws1f{word-spacing:7.946188px;}
.ws1d{word-spacing:8.273461px;}
.ws39{word-spacing:9.176735px;}
.ws30{word-spacing:9.307644px;}
.ws8{word-spacing:9.339872px;}
.ws19{word-spacing:9.844372px;}
.ws43{word-spacing:9.975281px;}
.ws34{word-spacing:10.354918px;}
.ws49{word-spacing:11.533101px;}
.ws17{word-spacing:15.997032px;}
.ws40{word-spacing:22.529473px;}
.ws36{word-spacing:23.757307px;}
.ws46{word-spacing:24.349111px;}
.ws26{word-spacing:24.977591px;}
.ws13{word-spacing:25.280231px;}
.ws1c{word-spacing:27.098204px;}
.ws3c{word-spacing:28.354933px;}
.ws0{word-spacing:31.091012px;}
.ws12{word-spacing:32.192873px;}
.ws48{word-spacing:64.091765px;}
.wsa{word-spacing:96.750773px;}
._5{margin-left:-33.139814px;}
._4{margin-left:-31.418266px;}
._12{margin-left:-8.822908px;}
._11{margin-left:-6.290222px;}
._6{margin-left:-4.901599px;}
._3{margin-left:-3.730022px;}
._2{margin-left:-1.936742px;}
._7{width:1.673717px;}
._0{width:2.685602px;}
._9{width:3.789786px;}
._1{width:5.371205px;}
._18{width:10.866361px;}
._19{width:14.530921px;}
._13{width:20.325916px;}
._15{width:22.637459px;}
._d{width:25.003657px;}
._8{width:27.082646px;}
._a{width:29.002969px;}
._c{width:30.794288px;}
._f{width:32.257020px;}
._1a{width:34.952756px;}
._e{width:37.242778px;}
._16{width:39.409027px;}
._14{width:41.250476px;}
._10{width:43.038600px;}
._17{width:46.669130px;}
._1b{width:66.379361px;}
._b{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y56{bottom:111.372000px;}
.y57{bottom:124.626000px;}
.y55{bottom:131.695500px;}
.y54{bottom:152.019000px;}
.y22{bottom:179.533500px;}
.y53{bottom:195.241500px;}
.y21{bottom:199.857000px;}
.y52{bottom:215.565000px;}
.y20{bottom:220.180500px;}
.y51{bottom:235.888500px;}
.y1f{bottom:253.954500px;}
.y4f{bottom:263.331000px;}
.y1e{bottom:274.278000px;}
.y50{bottom:283.227000px;}
.y4e{bottom:298.773000px;}
.y4d{bottom:305.085000px;}
.y1d{bottom:308.050500px;}
.y4c{bottom:322.078500px;}
.y4b{bottom:325.408500px;}
.y1c{bottom:328.375500px;}
.y4a{bottom:345.733500px;}
.y1b{bottom:362.148000px;}
.y49{bottom:382.261500px;}
.y1a{bottom:395.922000px;}
.y48{bottom:409.159500px;}
.y19{bottom:429.694500px;}
.y47{bottom:460.719000px;}
.y18{bottom:463.468500px;}
.y76{bottom:472.177500px;}
.y46{bottom:481.042500px;}
.y75{bottom:492.501000px;}
.y17{bottom:497.241000px;}
.y45{bottom:501.366000px;}
.y74{bottom:507.181500px;}
.y72{bottom:512.824500px;}
.y16{bottom:517.566000px;}
.y73{bottom:519.268500px;}
.y44{bottom:521.689500px;}
.y71{bottom:533.148000px;}
.y43{bottom:542.013000px;}
.y15{bottom:554.094000px;}
.y42{bottom:562.338000px;}
.y70{bottom:569.677500px;}
.y41{bottom:598.866000px;}
.y14{bottom:605.652000px;}
.y6f{bottom:621.235500px;}
.y13{bottom:625.975500px;}
.y6e{bottom:641.559000px;}
.y12{bottom:646.299000px;}
.y40{bottom:650.424000px;}
.y6d{bottom:661.882500px;}
.y11{bottom:666.624000px;}
.y3f{bottom:670.747500px;}
.y6c{bottom:682.206000px;}
.y3e{bottom:685.428000px;}
.y10{bottom:686.947500px;}
.y3c{bottom:691.071000px;}
.y3d{bottom:697.513500px;}
.y6b{bottom:702.531000px;}
.yf{bottom:707.271000px;}
.y3b{bottom:711.394500px;}
.y6a{bottom:722.854500px;}
.y3a{bottom:731.719500px;}
.y69{bottom:743.178000px;}
.ye{bottom:743.799000px;}
.y39{bottom:752.043000px;}
.y68{bottom:763.501500px;}
.y38{bottom:772.366500px;}
.y67{bottom:783.825000px;}
.y37{bottom:792.690000px;}
.yd{bottom:795.357000px;}
.y66{bottom:804.150000px;}
.y36{bottom:813.013500px;}
.yc{bottom:813.289500px;}
.y65{bottom:824.473500px;}
.yb{bottom:826.069500px;}
.y9{bottom:831.223500px;}
.ya{bottom:837.106500px;}
.y8{bottom:849.156000px;}
.y35{bottom:849.543000px;}
.y64{bottom:852.603000px;}
.y63{bottom:858.246000px;}
.y7{bottom:867.088500px;}
.y6{bottom:885.021000px;}
.y62{bottom:892.020000px;}
.y34{bottom:895.458000px;}
.y33{bottom:901.101000px;}
.y5{bottom:902.953500px;}
.y32{bottom:921.424500px;}
.y61{bottom:925.792500px;}
.y4{bottom:930.226500px;}
.y31{bottom:941.748000px;}
.y30{bottom:956.428500px;}
.y2e{bottom:962.071500px;}
.y60{bottom:962.322000px;}
.y2f{bottom:968.515500px;}
.y2d{bottom:982.396500px;}
.y3{bottom:990.637500px;}
.y5f{bottom:1013.880000px;}
.y2c{bottom:1016.169000px;}
.y2{bottom:1027.324500px;}
.y5e{bottom:1034.203500px;}
.y2b{bottom:1036.492500px;}
.y5d{bottom:1054.527000px;}
.y2a{bottom:1056.816000px;}
.y1{bottom:1072.792500px;}
.y5b{bottom:1074.850500px;}
.y29{bottom:1077.141000px;}
.y5c{bottom:1080.789000px;}
.y28{bottom:1091.821500px;}
.y59{bottom:1095.175500px;}
.y26{bottom:1097.464500px;}
.y5a{bottom:1101.112500px;}
.y27{bottom:1103.907000px;}
.y25{bottom:1129.311000px;}
.y24{bottom:1136.731500px;}
.y58{bottom:1138.396500px;}
.h11{height:2.618184px;}
.h12{height:7.195496px;}
.h7{height:27.783619px;}
.hd{height:31.800699px;}
.h10{height:35.865450px;}
.h4{height:41.723369px;}
.h6{height:43.157983px;}
.h5{height:44.831700px;}
.hb{height:46.145493px;}
.ha{height:47.258221px;}
.h9{height:49.090950px;}
.h3{height:51.216077px;}
.he{height:57.570699px;}
.h13{height:57.576699px;}
.h8{height:60.254040px;}
.hf{height:68.717493px;}
.h14{height:71.662950px;}
.h2{height:72.511265px;}
.hc{height:78.719700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:105.424500px;}
.xf{left:106.746000px;}
.xb{left:108.000000px;}
.x10{left:127.345500px;}
.x53{left:132.316500px;}
.xc{left:133.404000px;}
.x3b{left:144.313500px;}
.x15{left:145.881000px;}
.x12{left:147.036000px;}
.x6{left:148.909500px;}
.x54{left:151.918500px;}
.x1{left:159.177000px;}
.x5{left:171.325500px;}
.x2c{left:218.646000px;}
.x38{left:221.536500px;}
.x2d{left:227.013000px;}
.x2e{left:233.434500px;}
.x22{left:240.013500px;}
.x2f{left:241.104000px;}
.x23{left:251.832000px;}
.x24{left:258.100500px;}
.x25{left:265.771500px;}
.x51{left:269.386500px;}
.x52{left:272.976000px;}
.x30{left:274.849500px;}
.x31{left:283.216500px;}
.x32{left:289.636500px;}
.x4a{left:292.111500px;}
.x26{left:295.459500px;}
.x44{left:299.187000px;}
.x33{left:300.945000px;}
.x27{left:309.448500px;}
.x34{left:317.424000px;}
.x42{left:319.515000px;}
.x4c{left:321.244500px;}
.x35{left:326.458500px;}
.x1e{left:328.053000px;}
.x1f{left:336.420000px;}
.x20{left:342.655500px;}
.x13{left:346.585500px;}
.x43{left:347.875500px;}
.x21{left:350.326500px;}
.x14{left:366.430500px;}
.x45{left:372.261000px;}
.x2{left:375.274500px;}
.x46{left:382.083000px;}
.x3{left:385.707000px;}
.xd{left:399.697500px;}
.x4{left:413.811000px;}
.x7{left:417.766500px;}
.xe{left:419.040000px;}
.x4d{left:438.526500px;}
.x8{left:439.714500px;}
.x18{left:442.366500px;}
.x19{left:443.491500px;}
.x47{left:445.399500px;}
.x9{left:457.050000px;}
.x36{left:466.044000px;}
.xa{left:469.524000px;}
.x37{left:480.934500px;}
.x4b{left:482.320500px;}
.x16{left:492.418500px;}
.x48{left:495.658500px;}
.x17{left:505.146000px;}
.x49{left:549.810000px;}
.x3c{left:554.650500px;}
.x3d{left:582.444000px;}
.x1a{left:600.333000px;}
.x3e{left:612.118500px;}
.x1b{left:624.370500px;}
.x1c{left:643.579500px;}
.x3f{left:650.182500px;}
.x1d{left:657.180000px;}
.x40{left:677.149500px;}
.x4e{left:693.249000px;}
.x39{left:695.971500px;}
.x3a{left:710.602500px;}
.x41{left:728.821500px;}
.x4f{left:730.368000px;}
.x50{left:747.058500px;}
.x28{left:753.655500px;}
.x29{left:762.022500px;}
.x2a{left:768.289500px;}
.x2b{left:775.960500px;}
@media print{
.v6{vertical-align:-47.125333pt;}
.v7{vertical-align:-23.104000pt;}
.v5{vertical-align:-13.968000pt;}
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.064000pt;}
.v2{vertical-align:22.906667pt;}
.v1{vertical-align:30.122667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000055pt;}
.ls14{letter-spacing:0.000125pt;}
.ls2{letter-spacing:0.000446pt;}
.lsd{letter-spacing:0.000483pt;}
.ls8{letter-spacing:0.000930pt;}
.ls1f{letter-spacing:0.001917pt;}
.lsb{letter-spacing:0.002389pt;}
.ls10{letter-spacing:0.002405pt;}
.ls24{letter-spacing:0.002717pt;}
.ls13{letter-spacing:0.003149pt;}
.ls1b{letter-spacing:1.613539pt;}
.ls5{letter-spacing:1.617416pt;}
.ls18{letter-spacing:2.659149pt;}
.ls17{letter-spacing:4.721414pt;}
.ls22{letter-spacing:6.338870pt;}
.ls1c{letter-spacing:12.354591pt;}
.ls1a{letter-spacing:12.927477pt;}
.ls21{letter-spacing:12.930411pt;}
.ls20{letter-spacing:16.719684pt;}
.ls19{letter-spacing:19.272203pt;}
.lsf{letter-spacing:20.631744pt;}
.lse{letter-spacing:20.637030pt;}
.ls4{letter-spacing:20.816446pt;}
.ls9{letter-spacing:21.256174pt;}
.ls1e{letter-spacing:22.504203pt;}
.ls12{letter-spacing:24.733072pt;}
.ls16{letter-spacing:25.226144pt;}
.ls15{letter-spacing:25.233910pt;}
.ls6{letter-spacing:25.592694pt;}
.ls3{letter-spacing:25.598027pt;}
.ls1d{letter-spacing:25.736203pt;}
.ls25{letter-spacing:25.767925pt;}
.lsc{letter-spacing:26.568348pt;}
.ls1{letter-spacing:26.847015pt;}
.ls11{letter-spacing:27.186591pt;}
.lsa{letter-spacing:27.626315pt;}
.ls23{letter-spacing:28.728703pt;}
.ws3a{word-spacing:-45.163900pt;}
.ws47{word-spacing:-42.022400pt;}
.ws2b{word-spacing:-37.899668pt;}
.ws25{word-spacing:-16.162923pt;}
.ws14{word-spacing:-14.871285pt;}
.ws9{word-spacing:-14.760588pt;}
.ws41{word-spacing:-6.494163pt;}
.ws3d{word-spacing:-6.483060pt;}
.ws3f{word-spacing:-6.470357pt;}
.ws22{word-spacing:-0.046545pt;}
.ws3b{word-spacing:-0.042507pt;}
.ws21{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.011636pt;}
.ws27{word-spacing:0.244364pt;}
.ws37{word-spacing:1.815274pt;}
.ws33{word-spacing:1.989820pt;}
.ws4c{word-spacing:2.280729pt;}
.ws6{word-spacing:2.348517pt;}
.wsf{word-spacing:2.688002pt;}
.ws2{word-spacing:2.720454pt;}
.ws2d{word-spacing:2.804366pt;}
.ws3{word-spacing:2.826722pt;}
.ws4b{word-spacing:2.862548pt;}
.ws5{word-spacing:2.879856pt;}
.ws4{word-spacing:2.932989pt;}
.ws35{word-spacing:2.978912pt;}
.wse{word-spacing:3.037093pt;}
.ws7{word-spacing:3.039257pt;}
.ws4f{word-spacing:3.095275pt;}
.wsd{word-spacing:3.153457pt;}
.ws11{word-spacing:3.211639pt;}
.ws10{word-spacing:3.269821pt;}
.ws4a{word-spacing:3.328003pt;}
.ws2e{word-spacing:3.386185pt;}
.ws1{word-spacing:3.443098pt;}
.wsb{word-spacing:3.444367pt;}
.ws23{word-spacing:3.502548pt;}
.ws4e{word-spacing:3.560730pt;}
.ws24{word-spacing:3.618912pt;}
.ws2f{word-spacing:3.968003pt;}
.ws20{word-spacing:4.491640pt;}
.ws38{word-spacing:4.677822pt;}
.ws45{word-spacing:4.724368pt;}
.ws44{word-spacing:4.782549pt;}
.ws1e{word-spacing:4.840731pt;}
.ws4d{word-spacing:5.364368pt;}
.ws3e{word-spacing:5.713459pt;}
.ws29{word-spacing:5.725096pt;}
.ws28{word-spacing:5.783278pt;}
.ws2a{word-spacing:5.924679pt;}
.ws1a{word-spacing:5.948475pt;}
.ws16{word-spacing:5.957823pt;}
.ws18{word-spacing:5.966277pt;}
.ws1b{word-spacing:6.074187pt;}
.ws15{word-spacing:6.190551pt;}
.wsc{word-spacing:6.248732pt;}
.ws32{word-spacing:6.411642pt;}
.ws42{word-spacing:6.455950pt;}
.ws31{word-spacing:6.469824pt;}
.ws1f{word-spacing:7.063279pt;}
.ws1d{word-spacing:7.354188pt;}
.ws39{word-spacing:8.157098pt;}
.ws30{word-spacing:8.273461pt;}
.ws8{word-spacing:8.302108pt;}
.ws19{word-spacing:8.750553pt;}
.ws43{word-spacing:8.866916pt;}
.ws34{word-spacing:9.204371pt;}
.ws49{word-spacing:10.251645pt;}
.ws17{word-spacing:14.219584pt;}
.ws40{word-spacing:20.026199pt;}
.ws36{word-spacing:21.117606pt;}
.ws46{word-spacing:21.643654pt;}
.ws26{word-spacing:22.202303pt;}
.ws13{word-spacing:22.471316pt;}
.ws1c{word-spacing:24.087293pt;}
.ws3c{word-spacing:25.204385pt;}
.ws0{word-spacing:27.636455pt;}
.ws12{word-spacing:28.615887pt;}
.ws48{word-spacing:56.970458pt;}
.wsa{word-spacing:86.000687pt;}
._5{margin-left:-29.457613pt;}
._4{margin-left:-27.927347pt;}
._12{margin-left:-7.842585pt;}
._11{margin-left:-5.591309pt;}
._6{margin-left:-4.356977pt;}
._3{margin-left:-3.315575pt;}
._2{margin-left:-1.721549pt;}
._7{width:1.487748pt;}
._0{width:2.387202pt;}
._9{width:3.368699pt;}
._1{width:4.774404pt;}
._18{width:9.658987pt;}
._19{width:12.916374pt;}
._13{width:18.067481pt;}
._15{width:20.122186pt;}
._d{width:22.225473pt;}
._8{width:24.073463pt;}
._a{width:25.780417pt;}
._c{width:27.372700pt;}
._f{width:28.672907pt;}
._1a{width:31.069117pt;}
._e{width:33.104691pt;}
._16{width:35.030246pt;}
._14{width:36.667090pt;}
._10{width:38.256533pt;}
._17{width:41.483671pt;}
._1b{width:59.003877pt;}
._b{width:86.077200pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y56{bottom:98.997333pt;}
.y57{bottom:110.778667pt;}
.y55{bottom:117.062667pt;}
.y54{bottom:135.128000pt;}
.y22{bottom:159.585333pt;}
.y53{bottom:173.548000pt;}
.y21{bottom:177.650667pt;}
.y52{bottom:191.613333pt;}
.y20{bottom:195.716000pt;}
.y51{bottom:209.678667pt;}
.y1f{bottom:225.737333pt;}
.y4f{bottom:234.072000pt;}
.y1e{bottom:243.802667pt;}
.y50{bottom:251.757333pt;}
.y4e{bottom:265.576000pt;}
.y4d{bottom:271.186667pt;}
.y1d{bottom:273.822667pt;}
.y4c{bottom:286.292000pt;}
.y4b{bottom:289.252000pt;}
.y1c{bottom:291.889333pt;}
.y4a{bottom:307.318667pt;}
.y1b{bottom:321.909333pt;}
.y49{bottom:339.788000pt;}
.y1a{bottom:351.930667pt;}
.y48{bottom:363.697333pt;}
.y19{bottom:381.950667pt;}
.y47{bottom:409.528000pt;}
.y18{bottom:411.972000pt;}
.y76{bottom:419.713333pt;}
.y46{bottom:427.593333pt;}
.y75{bottom:437.778667pt;}
.y17{bottom:441.992000pt;}
.y45{bottom:445.658667pt;}
.y74{bottom:450.828000pt;}
.y72{bottom:455.844000pt;}
.y16{bottom:460.058667pt;}
.y73{bottom:461.572000pt;}
.y44{bottom:463.724000pt;}
.y71{bottom:473.909333pt;}
.y43{bottom:481.789333pt;}
.y15{bottom:492.528000pt;}
.y42{bottom:499.856000pt;}
.y70{bottom:506.380000pt;}
.y41{bottom:532.325333pt;}
.y14{bottom:538.357333pt;}
.y6f{bottom:552.209333pt;}
.y13{bottom:556.422667pt;}
.y6e{bottom:570.274667pt;}
.y12{bottom:574.488000pt;}
.y40{bottom:578.154667pt;}
.y6d{bottom:588.340000pt;}
.y11{bottom:592.554667pt;}
.y3f{bottom:596.220000pt;}
.y6c{bottom:606.405333pt;}
.y3e{bottom:609.269333pt;}
.y10{bottom:610.620000pt;}
.y3c{bottom:614.285333pt;}
.y3d{bottom:620.012000pt;}
.y6b{bottom:624.472000pt;}
.yf{bottom:628.685333pt;}
.y3b{bottom:632.350667pt;}
.y6a{bottom:642.537333pt;}
.y3a{bottom:650.417333pt;}
.y69{bottom:660.602667pt;}
.ye{bottom:661.154667pt;}
.y39{bottom:668.482667pt;}
.y68{bottom:678.668000pt;}
.y38{bottom:686.548000pt;}
.y67{bottom:696.733333pt;}
.y37{bottom:704.613333pt;}
.yd{bottom:706.984000pt;}
.y66{bottom:714.800000pt;}
.y36{bottom:722.678667pt;}
.yc{bottom:722.924000pt;}
.y65{bottom:732.865333pt;}
.yb{bottom:734.284000pt;}
.y9{bottom:738.865333pt;}
.ya{bottom:744.094667pt;}
.y8{bottom:754.805333pt;}
.y35{bottom:755.149333pt;}
.y64{bottom:757.869333pt;}
.y63{bottom:762.885333pt;}
.y7{bottom:770.745333pt;}
.y6{bottom:786.685333pt;}
.y62{bottom:792.906667pt;}
.y34{bottom:795.962667pt;}
.y33{bottom:800.978667pt;}
.y5{bottom:802.625333pt;}
.y32{bottom:819.044000pt;}
.y61{bottom:822.926667pt;}
.y4{bottom:826.868000pt;}
.y31{bottom:837.109333pt;}
.y30{bottom:850.158667pt;}
.y2e{bottom:855.174667pt;}
.y60{bottom:855.397333pt;}
.y2f{bottom:860.902667pt;}
.y2d{bottom:873.241333pt;}
.y3{bottom:880.566667pt;}
.y5f{bottom:901.226667pt;}
.y2c{bottom:903.261333pt;}
.y2{bottom:913.177333pt;}
.y5e{bottom:919.292000pt;}
.y2b{bottom:921.326667pt;}
.y5d{bottom:937.357333pt;}
.y2a{bottom:939.392000pt;}
.y1{bottom:953.593333pt;}
.y5b{bottom:955.422667pt;}
.y29{bottom:957.458667pt;}
.y5c{bottom:960.701333pt;}
.y28{bottom:970.508000pt;}
.y59{bottom:973.489333pt;}
.y26{bottom:975.524000pt;}
.y5a{bottom:978.766667pt;}
.y27{bottom:981.250667pt;}
.y25{bottom:1003.832000pt;}
.y24{bottom:1010.428000pt;}
.y58{bottom:1011.908000pt;}
.h11{height:2.327275pt;}
.h12{height:6.395997pt;}
.h7{height:24.696550pt;}
.hd{height:28.267288pt;}
.h10{height:31.880400pt;}
.h4{height:37.087439pt;}
.h6{height:38.362652pt;}
.h5{height:39.850400pt;}
.hb{height:41.018216pt;}
.ha{height:42.007308pt;}
.h9{height:43.636400pt;}
.h3{height:45.525402pt;}
.he{height:51.173955pt;}
.h13{height:51.179288pt;}
.h8{height:53.559147pt;}
.hf{height:61.082216pt;}
.h14{height:63.700400pt;}
.h2{height:64.454458pt;}
.hc{height:69.973067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:93.710667pt;}
.xf{left:94.885333pt;}
.xb{left:96.000000pt;}
.x10{left:113.196000pt;}
.x53{left:117.614667pt;}
.xc{left:118.581333pt;}
.x3b{left:128.278667pt;}
.x15{left:129.672000pt;}
.x12{left:130.698667pt;}
.x6{left:132.364000pt;}
.x54{left:135.038667pt;}
.x1{left:141.490667pt;}
.x5{left:152.289333pt;}
.x2c{left:194.352000pt;}
.x38{left:196.921333pt;}
.x2d{left:201.789333pt;}
.x2e{left:207.497333pt;}
.x22{left:213.345333pt;}
.x2f{left:214.314667pt;}
.x23{left:223.850667pt;}
.x24{left:229.422667pt;}
.x25{left:236.241333pt;}
.x51{left:239.454667pt;}
.x52{left:242.645333pt;}
.x30{left:244.310667pt;}
.x31{left:251.748000pt;}
.x32{left:257.454667pt;}
.x4a{left:259.654667pt;}
.x26{left:262.630667pt;}
.x44{left:265.944000pt;}
.x33{left:267.506667pt;}
.x27{left:275.065333pt;}
.x34{left:282.154667pt;}
.x42{left:284.013333pt;}
.x4c{left:285.550667pt;}
.x35{left:290.185333pt;}
.x1e{left:291.602667pt;}
.x1f{left:299.040000pt;}
.x20{left:304.582667pt;}
.x13{left:308.076000pt;}
.x43{left:309.222667pt;}
.x21{left:311.401333pt;}
.x14{left:325.716000pt;}
.x45{left:330.898667pt;}
.x2{left:333.577333pt;}
.x46{left:339.629333pt;}
.x3{left:342.850667pt;}
.xd{left:355.286667pt;}
.x4{left:367.832000pt;}
.x7{left:371.348000pt;}
.xe{left:372.480000pt;}
.x4d{left:389.801333pt;}
.x8{left:390.857333pt;}
.x18{left:393.214667pt;}
.x19{left:394.214667pt;}
.x47{left:395.910667pt;}
.x9{left:406.266667pt;}
.x36{left:414.261333pt;}
.xa{left:417.354667pt;}
.x37{left:427.497333pt;}
.x4b{left:428.729333pt;}
.x16{left:437.705333pt;}
.x48{left:440.585333pt;}
.x17{left:449.018667pt;}
.x49{left:488.720000pt;}
.x3c{left:493.022667pt;}
.x3d{left:517.728000pt;}
.x1a{left:533.629333pt;}
.x3e{left:544.105333pt;}
.x1b{left:554.996000pt;}
.x1c{left:572.070667pt;}
.x3f{left:577.940000pt;}
.x1d{left:584.160000pt;}
.x40{left:601.910667pt;}
.x4e{left:616.221333pt;}
.x39{left:618.641333pt;}
.x3a{left:631.646667pt;}
.x41{left:647.841333pt;}
.x4f{left:649.216000pt;}
.x50{left:664.052000pt;}
.x28{left:669.916000pt;}
.x29{left:677.353333pt;}
.x2a{left:682.924000pt;}
.x2b{left:689.742667pt;}
}




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