
    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_47ee16aa1f53fe83c0d891fc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0efda6488e03283f69bcc5f0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b6e5d250c1aeb5e10d825d4d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.709000;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_6f8c0689c7e2e81e4ad72f43.woff')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_5c788d11257125395ecbc0f6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6a6d2a11523208a4f4c967bc.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_22fa6e3036e79e3b8a3b7f65.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_7b20d72389a453f71c76b912.woff')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_7b9b70ff55b9033176acce7f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fe9953531092fa94f91f058e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_3ee93588a6addbacfe449568.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f116b60203c59d3c4581851.woff')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_0c1ec2509437ee605d13bb05.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2b72bb641c0149334b236869.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_774e28da3c6e3c5f504cb5b6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1f570ebc82b223b191414133.woff')format("woff");}.ff10{font-family:ff10;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mf{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m16{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);}
.m1e{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);}
.m1{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);}
.m3{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);}
.m4{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);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m12{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);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,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);}
.mc{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);}
.m1c{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.mb{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);}
.ma{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);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,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);}
.m13{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);}
.v3{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.910000px;}
.v2{vertical-align:16.548000px;}
.v5{vertical-align:22.572000px;}
.v1{vertical-align:23.748000px;}
.v4{vertical-align:25.770000px;}
.v6{vertical-align:46.326000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.001597px;}
.lsf{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.986478px;}
.ls15{letter-spacing:2.991543px;}
.ls14{letter-spacing:7.166915px;}
.lse{letter-spacing:7.172915px;}
.ls19{letter-spacing:12.174556px;}
.ls18{letter-spacing:12.240010px;}
.ls2{letter-spacing:14.530921px;}
.ls3{letter-spacing:14.596376px;}
.ls9{letter-spacing:16.690923px;}
.lsa{letter-spacing:18.130924px;}
.ls1{letter-spacing:18.196379px;}
.ls1a{letter-spacing:19.374562px;}
.ls7{letter-spacing:19.505471px;}
.lsc{letter-spacing:21.172478px;}
.ls4{letter-spacing:21.665473px;}
.ls6{letter-spacing:21.730927px;}
.ls16{letter-spacing:24.021838px;}
.lsb{letter-spacing:24.414566px;}
.ls8{letter-spacing:24.690479px;}
.lsd{letter-spacing:25.349412px;}
.ls13{letter-spacing:25.378748px;}
.ls12{letter-spacing:27.229114px;}
.ls17{letter-spacing:30.763662px;}
.ls5{letter-spacing:904.975300px;}
.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;}
}
.ws37{word-spacing:-42.637126px;}
.ws39{word-spacing:-32.544027px;}
.ws31{word-spacing:-15.722195px;}
.ws32{word-spacing:-15.656740px;}
.ws25{word-spacing:-15.460377px;}
.ws36{word-spacing:-14.936740px;}
.ws1b{word-spacing:-14.413103px;}
.ws3f{word-spacing:-13.758557px;}
.ws1e{word-spacing:-13.693102px;}
.ws2b{word-spacing:-13.562193px;}
.ws35{word-spacing:-13.442427px;}
.ws2f{word-spacing:-13.300375px;}
.ws1f{word-spacing:-13.038556px;}
.ws3a{word-spacing:-12.973102px;}
.ws22{word-spacing:-12.514920px;}
.ws33{word-spacing:-12.449465px;}
.ws2a{word-spacing:-12.056737px;}
.ws45{word-spacing:-11.598555px;}
.ws46{word-spacing:-11.533101px;}
.ws27{word-spacing:-11.402191px;}
.ws20{word-spacing:-11.336737px;}
.ws1c{word-spacing:-11.271282px;}
.ws11{word-spacing:-11.205828px;}
.wsb{word-spacing:-11.172060px;}
.ws12{word-spacing:-11.140373px;}
.wse{word-spacing:-11.074918px;}
.ws48{word-spacing:-11.009464px;}
.wsf{word-spacing:-10.944009px;}
.ws10{word-spacing:-10.878555px;}
.ws13{word-spacing:-10.813100px;}
.ws3b{word-spacing:-10.747645px;}
.ws26{word-spacing:-10.682191px;}
.ws1d{word-spacing:-10.616736px;}
.ws17{word-spacing:-10.551282px;}
.ws29{word-spacing:-10.485827px;}
.ws16{word-spacing:-10.420372px;}
.ws2d{word-spacing:-10.354918px;}
.wsa{word-spacing:-10.335201px;}
.ws4a{word-spacing:-10.289463px;}
.wsd{word-spacing:-10.158554px;}
.ws6{word-spacing:-10.096099px;}
.ws4b{word-spacing:-10.093099px;}
.ws8{word-spacing:-9.976548px;}
.ws2{word-spacing:-9.916772px;}
.ws1a{word-spacing:-9.896736px;}
.ws5{word-spacing:-9.856996px;}
.ws38{word-spacing:-9.831281px;}
.ws4{word-spacing:-9.797221px;}
.ws28{word-spacing:-9.765826px;}
.ws7{word-spacing:-9.438567px;}
.ws23{word-spacing:-9.373099px;}
.ws44{word-spacing:-8.980371px;}
.ws34{word-spacing:-8.849462px;}
.ws41{word-spacing:-8.522189px;}
.ws3{word-spacing:-8.183280px;}
.ws4c{word-spacing:-8.129461px;}
.ws14{word-spacing:-8.064007px;}
.ws21{word-spacing:-7.802188px;}
.ws43{word-spacing:-7.605825px;}
.ws3d{word-spacing:-7.409461px;}
.ws3e{word-spacing:-6.951279px;}
.ws24{word-spacing:-6.820369px;}
.ws42{word-spacing:-6.754915px;}
.ws49{word-spacing:-6.624006px;}
.ws3c{word-spacing:-6.558551px;}
.ws2c{word-spacing:-6.493096px;}
.ws4d{word-spacing:-6.231278px;}
.ws47{word-spacing:-4.071276px;}
.ws40{word-spacing:-2.762184px;}
.ws15{word-spacing:0.000000px;}
.ws4f{word-spacing:22.974565px;}
.ws18{word-spacing:23.170928px;}
.ws50{word-spacing:23.301838px;}
.ws1{word-spacing:23.312640px;}
.ws4e{word-spacing:23.498201px;}
.ws19{word-spacing:23.956384px;}
.ws9{word-spacing:25.942610px;}
.ws30{word-spacing:26.509113px;}
.ws2e{word-spacing:31.418178px;}
.wsc{word-spacing:31.504255px;}
.ws0{word-spacing:37.081972px;}
._13{margin-left:-7.919102px;}
._15{margin-left:-6.742733px;}
._4{margin-left:-5.487414px;}
._3{margin-left:-4.255997px;}
._b{margin-left:-3.174993px;}
._0{margin-left:-1.936742px;}
._1{width:2.008474px;}
._20{width:3.174993px;}
._19{width:7.351534px;}
._1f{width:9.463830px;}
._16{width:18.770238px;}
._12{width:19.986053px;}
._d{width:21.834941px;}
._8{width:23.471306px;}
._11{width:25.134566px;}
._2{width:27.042494px;}
._6{width:28.800024px;}
._a{width:29.832956px;}
._5{width:31.947232px;}
._c{width:33.383294px;}
._f{width:34.742392px;}
._14{width:35.907680px;}
._7{width:37.526105px;}
._e{width:39.418012px;}
._10{width:40.840102px;}
._22{width:42.033517px;}
._23{width:44.042092px;}
._21{width:53.989273px;}
._1c{width:71.835979px;}
._1d{width:156.004791px;}
._1e{width:246.902308px;}
._18{width:281.992519px;}
._1a{width:321.971177px;}
._17{width:361.898483px;}
._1b{width:428.793085px;}
._9{width:2009.390765px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:60.180000px;}
.y1b{bottom:105.010500px;}
.y78{bottom:117.891000px;}
.y91{bottom:124.441500px;}
.y1a{bottom:133.464000px;}
.y3a{bottom:138.714000px;}
.y55{bottom:142.062000px;}
.y77{bottom:146.344500px;}
.y90{bottom:152.895000px;}
.y19{bottom:161.917500px;}
.ya1{bottom:161.929500px;}
.y39{bottom:167.167500px;}
.y54{bottom:170.514000px;}
.y8f{bottom:181.348500px;}
.y76{bottom:189.024000px;}
.y18{bottom:190.371000px;}
.ya0{bottom:190.383000px;}
.y38{bottom:195.621000px;}
.y53{bottom:198.967500px;}
.y75{bottom:217.477500px;}
.y8e{bottom:224.028000px;}
.y37{bottom:224.073000px;}
.y17{bottom:233.050500px;}
.y52{bottom:241.647000px;}
.y74{bottom:245.931000px;}
.y8d{bottom:252.481500px;}
.y36{bottom:252.526500px;}
.y9f{bottom:255.874500px;}
.y16{bottom:261.504000px;}
.y51{bottom:270.100500px;}
.y73{bottom:274.384500px;}
.y8c{bottom:280.935000px;}
.y35{bottom:280.980000px;}
.y9e{bottom:284.328000px;}
.y15{bottom:289.957500px;}
.y50{bottom:298.554000px;}
.y8b{bottom:309.388500px;}
.y34{bottom:309.433500px;}
.y9d{bottom:312.780000px;}
.y72{bottom:317.064000px;}
.y4f{bottom:327.007500px;}
.y14{bottom:332.637000px;}
.y8a{bottom:337.840500px;}
.y9c{bottom:341.233500px;}
.y71{bottom:345.517500px;}
.y33{bottom:352.113000px;}
.y4e{bottom:355.461000px;}
.y13{bottom:361.090500px;}
.y89{bottom:366.294000px;}
.y70{bottom:373.971000px;}
.y32{bottom:380.566500px;}
.y9b{bottom:383.913000px;}
.y12{bottom:389.542500px;}
.y88{bottom:394.747500px;}
.y4d{bottom:398.140500px;}
.y6f{bottom:402.423000px;}
.y31{bottom:409.018500px;}
.y9a{bottom:412.366500px;}
.y11{bottom:417.996000px;}
.y87{bottom:437.427000px;}
.y30{bottom:437.472000px;}
.y4c{bottom:440.820000px;}
.y6e{bottom:445.102500px;}
.y10{bottom:450.675000px;}
.y86{bottom:465.880500px;}
.y2f{bottom:465.925500px;}
.y4b{bottom:469.273500px;}
.y6d{bottom:473.556000px;}
.y85{bottom:494.334000px;}
.y4a{bottom:497.725500px;}
.y6c{bottom:502.009500px;}
.yf{bottom:502.578000px;}
.y2e{bottom:508.605000px;}
.y84{bottom:522.786000px;}
.y49{bottom:526.179000px;}
.ye{bottom:527.683500px;}
.y6b{bottom:533.985000px;}
.y2d{bottom:537.058500px;}
.y99{bottom:540.406500px;}
.y83{bottom:551.239500px;}
.yd{bottom:552.789000px;}
.y48{bottom:554.632500px;}
.y2c{bottom:565.512000px;}
.y98{bottom:568.858500px;}
.y6a{bottom:570.318000px;}
.yc{bottom:577.894500px;}
.y82{bottom:579.693000px;}
.y2b{bottom:593.965500px;}
.y47{bottom:597.312000px;}
.y69{bottom:598.771500px;}
.yb{bottom:606.285000px;}
.y81{bottom:608.146500px;}
.y68{bottom:627.225000px;}
.ya{bottom:631.390500px;}
.yae{bottom:633.853500px;}
.y2a{bottom:636.645000px;}
.y46{bottom:639.991500px;}
.y80{bottom:640.120500px;}
.y9{bottom:656.496000px;}
.yad{bottom:662.305500px;}
.y29{bottom:665.098500px;}
.y45{bottom:668.445000px;}
.y67{bottom:674.520000px;}
.y7f{bottom:676.455000px;}
.y8{bottom:681.601500px;}
.y28{bottom:693.550500px;}
.y66{bottom:694.843500px;}
.y44{bottom:696.898500px;}
.y7e{bottom:704.908500px;}
.yac{bottom:704.986500px;}
.y7{bottom:706.708500px;}
.y65{bottom:715.167000px;}
.y27{bottom:722.004000px;}
.y97{bottom:725.352000px;}
.y43{bottom:729.577500px;}
.y6{bottom:731.814000px;}
.yab{bottom:733.438500px;}
.y64{bottom:735.490500px;}
.y7d{bottom:747.588000px;}
.y63{bottom:755.815500px;}
.y5{bottom:756.919500px;}
.y96{bottom:768.031500px;}
.y26{bottom:773.470500px;}
.y42{bottom:776.041500px;}
.yaa{bottom:776.119500px;}
.y62{bottom:793.740000px;}
.y4{bottom:794.229000px;}
.y95{bottom:796.485000px;}
.y7c{bottom:804.495000px;}
.ya9{bottom:804.571500px;}
.y61{bottom:814.902000px;}
.y41{bottom:818.721000px;}
.y25{bottom:824.937000px;}
.y60{bottom:830.421000px;}
.y7b{bottom:832.947000px;}
.y5f{bottom:836.064000px;}
.y3f{bottom:847.174500px;}
.ya8{bottom:847.252500px;}
.y5e{bottom:850.744500px;}
.y40{bottom:853.113000px;}
.y94{bottom:853.390500px;}
.y5d{bottom:856.387500px;}
.y24{bottom:857.617500px;}
.y7a{bottom:861.400500px;}
.y3d{bottom:875.626500px;}
.ya7{bottom:875.704500px;}
.y5c{bottom:876.711000px;}
.y3e{bottom:881.565000px;}
.y3{bottom:884.791500px;}
.y93{bottom:896.070000px;}
.y5b{bottom:897.034500px;}
.y23{bottom:904.080000px;}
.ya6{bottom:918.385500px;}
.y5a{bottom:926.406000px;}
.y92{bottom:928.750500px;}
.y22{bottom:932.533500px;}
.y3c{bottom:946.759500px;}
.ya5{bottom:946.837500px;}
.y2{bottom:952.714500px;}
.y21{bottom:960.987000px;}
.y59{bottom:967.627500px;}
.y3b{bottom:975.213000px;}
.y1{bottom:982.003500px;}
.y79{bottom:989.440500px;}
.ya4{bottom:989.517000px;}
.y58{bottom:996.079500px;}
.y20{bottom:1003.666500px;}
.ya3{bottom:1017.970500px;}
.y57{bottom:1024.533000px;}
.y1f{bottom:1032.120000px;}
.ya2{bottom:1050.651000px;}
.y56{bottom:1056.508500px;}
.y1e{bottom:1060.573500px;}
.y1d{bottom:1120.468500px;}
.h7{height:31.848520px;}
.h3{height:41.783144px;}
.h4{height:44.891476px;}
.hb{height:49.090950px;}
.h6{height:49.156405px;}
.h9{height:50.283571px;}
.h2{height:50.642227px;}
.h8{height:55.596520px;}
.hf{height:56.026905px;}
.hc{height:58.048905px;}
.h5{height:60.426194px;}
.he{height:63.407494px;}
.ha{height:63.413494px;}
.h1{height:72.511265px;}
.hd{height:78.604905px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:106.722000px;}
.x6{left:108.000000px;}
.x35{left:116.136000px;}
.x37{left:140.352000px;}
.x36{left:141.496500px;}
.x5{left:148.909500px;}
.xc{left:152.646000px;}
.xd{left:160.782000px;}
.x28{left:174.616500px;}
.x12{left:183.708000px;}
.x29{left:188.559000px;}
.x20{left:189.562500px;}
.x13{left:196.248000px;}
.x14{left:200.683500px;}
.x21{left:205.497000px;}
.x15{left:208.819500px;}
.x2a{left:265.423500px;}
.x32{left:278.352000px;}
.x2b{left:289.824000px;}
.x1{left:294.054000px;}
.x16{left:296.422500px;}
.x2{left:317.130000px;}
.xa{left:329.290500px;}
.xb{left:337.426500px;}
.x34{left:350.551500px;}
.x9{left:353.137500px;}
.x33{left:363.961500px;}
.x22{left:368.127000px;}
.x23{left:386.926500px;}
.x3{left:409.092000px;}
.x2c{left:419.293500px;}
.x4{left:426.361500px;}
.x2d{left:443.553000px;}
.x7{left:454.932000px;}
.x17{left:478.419000px;}
.x1c{left:492.868500px;}
.x1d{left:507.693000px;}
.x19{left:514.809000px;}
.x18{left:519.835500px;}
.x24{left:554.962500px;}
.xe{left:563.829000px;}
.x25{left:572.626500px;}
.xf{left:576.351000px;}
.x2e{left:583.348500px;}
.x2f{left:599.301000px;}
.x1a{left:642.523500px;}
.x1b{left:660.217500px;}
.x10{left:673.615500px;}
.x11{left:681.751500px;}
.x1e{left:696.952500px;}
.x30{left:706.804500px;}
.x1f{left:714.577500px;}
.x31{left:725.094000px;}
.x26{left:759.529500px;}
.x27{left:772.786500px;}
@media print{
.v3{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.586667pt;}
.v2{vertical-align:14.709333pt;}
.v5{vertical-align:20.064000pt;}
.v1{vertical-align:21.109333pt;}
.v4{vertical-align:22.906667pt;}
.v6{vertical-align:41.178667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001420pt;}
.lsf{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.654647pt;}
.ls15{letter-spacing:2.659149pt;}
.ls14{letter-spacing:6.370591pt;}
.lse{letter-spacing:6.375925pt;}
.ls19{letter-spacing:10.821827pt;}
.ls18{letter-spacing:10.880009pt;}
.ls2{letter-spacing:12.916374pt;}
.ls3{letter-spacing:12.974556pt;}
.ls9{letter-spacing:14.836376pt;}
.lsa{letter-spacing:16.116377pt;}
.ls1{letter-spacing:16.174559pt;}
.ls1a{letter-spacing:17.221833pt;}
.ls7{letter-spacing:17.338196pt;}
.lsc{letter-spacing:18.819980pt;}
.ls4{letter-spacing:19.258198pt;}
.ls6{letter-spacing:19.316380pt;}
.ls16{letter-spacing:21.352745pt;}
.lsb{letter-spacing:21.701836pt;}
.ls8{letter-spacing:21.947093pt;}
.lsd{letter-spacing:22.532811pt;}
.ls13{letter-spacing:22.558887pt;}
.ls12{letter-spacing:24.203657pt;}
.ls17{letter-spacing:27.345477pt;}
.ls5{letter-spacing:804.422489pt;}
.ws37{word-spacing:-37.899668pt;}
.ws39{word-spacing:-28.928024pt;}
.ws31{word-spacing:-13.975284pt;}
.ws32{word-spacing:-13.917103pt;}
.ws25{word-spacing:-13.742557pt;}
.ws36{word-spacing:-13.277102pt;}
.ws1b{word-spacing:-12.811647pt;}
.ws3f{word-spacing:-12.229828pt;}
.ws1e{word-spacing:-12.171647pt;}
.ws2b{word-spacing:-12.055283pt;}
.ws35{word-spacing:-11.948824pt;}
.ws2f{word-spacing:-11.822555pt;}
.ws1f{word-spacing:-11.589828pt;}
.ws3a{word-spacing:-11.531646pt;}
.ws22{word-spacing:-11.124373pt;}
.ws33{word-spacing:-11.066191pt;}
.ws2a{word-spacing:-10.717100pt;}
.ws45{word-spacing:-10.309827pt;}
.ws46{word-spacing:-10.251645pt;}
.ws27{word-spacing:-10.135281pt;}
.ws20{word-spacing:-10.077099pt;}
.ws1c{word-spacing:-10.018917pt;}
.ws11{word-spacing:-9.960736pt;}
.wsb{word-spacing:-9.930720pt;}
.ws12{word-spacing:-9.902554pt;}
.wse{word-spacing:-9.844372pt;}
.ws48{word-spacing:-9.786190pt;}
.wsf{word-spacing:-9.728008pt;}
.ws10{word-spacing:-9.669826pt;}
.ws13{word-spacing:-9.611644pt;}
.ws3b{word-spacing:-9.553463pt;}
.ws26{word-spacing:-9.495281pt;}
.ws1d{word-spacing:-9.437099pt;}
.ws17{word-spacing:-9.378917pt;}
.ws29{word-spacing:-9.320735pt;}
.ws16{word-spacing:-9.262553pt;}
.ws2d{word-spacing:-9.204371pt;}
.wsa{word-spacing:-9.186846pt;}
.ws4a{word-spacing:-9.146189pt;}
.wsd{word-spacing:-9.029826pt;}
.ws6{word-spacing:-8.974310pt;}
.ws4b{word-spacing:-8.971644pt;}
.ws8{word-spacing:-8.868042pt;}
.ws2{word-spacing:-8.814908pt;}
.ws1a{word-spacing:-8.797098pt;}
.ws5{word-spacing:-8.761775pt;}
.ws38{word-spacing:-8.738916pt;}
.ws4{word-spacing:-8.708641pt;}
.ws28{word-spacing:-8.680735pt;}
.ws7{word-spacing:-8.389838pt;}
.ws23{word-spacing:-8.331643pt;}
.ws44{word-spacing:-7.982552pt;}
.ws34{word-spacing:-7.866188pt;}
.ws41{word-spacing:-7.575279pt;}
.ws3{word-spacing:-7.274026pt;}
.ws4c{word-spacing:-7.226188pt;}
.ws14{word-spacing:-7.168006pt;}
.ws21{word-spacing:-6.935279pt;}
.ws43{word-spacing:-6.760733pt;}
.ws3d{word-spacing:-6.586187pt;}
.ws3e{word-spacing:-6.178914pt;}
.ws24{word-spacing:-6.062551pt;}
.ws42{word-spacing:-6.004369pt;}
.ws49{word-spacing:-5.888005pt;}
.ws3c{word-spacing:-5.829823pt;}
.ws2c{word-spacing:-5.771641pt;}
.ws4d{word-spacing:-5.538914pt;}
.ws47{word-spacing:-3.618912pt;}
.ws40{word-spacing:-2.455275pt;}
.ws15{word-spacing:0.000000pt;}
.ws4f{word-spacing:20.421835pt;}
.ws18{word-spacing:20.596381pt;}
.ws50{word-spacing:20.712745pt;}
.ws1{word-spacing:20.722347pt;}
.ws4e{word-spacing:20.887290pt;}
.ws19{word-spacing:21.294563pt;}
.ws9{word-spacing:23.060098pt;}
.ws30{word-spacing:23.563656pt;}
.ws2e{word-spacing:27.927269pt;}
.wsc{word-spacing:28.003782pt;}
.ws0{word-spacing:32.961753pt;}
._13{margin-left:-7.039202pt;}
._15{margin-left:-5.993540pt;}
._4{margin-left:-4.877701pt;}
._3{margin-left:-3.783108pt;}
._b{margin-left:-2.822216pt;}
._0{margin-left:-1.721549pt;}
._1{width:1.785310pt;}
._20{width:2.822216pt;}
._19{width:6.534697pt;}
._1f{width:8.412293pt;}
._16{width:16.684656pt;}
._12{width:17.765380pt;}
._d{width:19.408836pt;}
._8{width:20.863383pt;}
._11{width:22.341837pt;}
._2{width:24.037773pt;}
._6{width:25.600021pt;}
._a{width:26.518183pt;}
._5{width:28.397539pt;}
._c{width:29.674039pt;}
._f{width:30.882126pt;}
._14{width:31.917938pt;}
._7{width:33.356538pt;}
._e{width:35.038233pt;}
._10{width:36.302313pt;}
._22{width:37.363126pt;}
._23{width:39.148526pt;}
._21{width:47.990465pt;}
._1c{width:63.854203pt;}
._1d{width:138.670925pt;}
._1e{width:219.468718pt;}
._18{width:250.660017pt;}
._1a{width:286.196602pt;}
._17{width:321.687541pt;}
._1b{width:381.149409pt;}
._9{width:1786.125125pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:53.493333pt;}
.y1b{bottom:93.342667pt;}
.y78{bottom:104.792000pt;}
.y91{bottom:110.614667pt;}
.y1a{bottom:118.634667pt;}
.y3a{bottom:123.301333pt;}
.y55{bottom:126.277333pt;}
.y77{bottom:130.084000pt;}
.y90{bottom:135.906667pt;}
.y19{bottom:143.926667pt;}
.ya1{bottom:143.937333pt;}
.y39{bottom:148.593333pt;}
.y54{bottom:151.568000pt;}
.y8f{bottom:161.198667pt;}
.y76{bottom:168.021333pt;}
.y18{bottom:169.218667pt;}
.ya0{bottom:169.229333pt;}
.y38{bottom:173.885333pt;}
.y53{bottom:176.860000pt;}
.y75{bottom:193.313333pt;}
.y8e{bottom:199.136000pt;}
.y37{bottom:199.176000pt;}
.y17{bottom:207.156000pt;}
.y52{bottom:214.797333pt;}
.y74{bottom:218.605333pt;}
.y8d{bottom:224.428000pt;}
.y36{bottom:224.468000pt;}
.y9f{bottom:227.444000pt;}
.y16{bottom:232.448000pt;}
.y51{bottom:240.089333pt;}
.y73{bottom:243.897333pt;}
.y8c{bottom:249.720000pt;}
.y35{bottom:249.760000pt;}
.y9e{bottom:252.736000pt;}
.y15{bottom:257.740000pt;}
.y50{bottom:265.381333pt;}
.y8b{bottom:275.012000pt;}
.y34{bottom:275.052000pt;}
.y9d{bottom:278.026667pt;}
.y72{bottom:281.834667pt;}
.y4f{bottom:290.673333pt;}
.y14{bottom:295.677333pt;}
.y8a{bottom:300.302667pt;}
.y9c{bottom:303.318667pt;}
.y71{bottom:307.126667pt;}
.y33{bottom:312.989333pt;}
.y4e{bottom:315.965333pt;}
.y13{bottom:320.969333pt;}
.y89{bottom:325.594667pt;}
.y70{bottom:332.418667pt;}
.y32{bottom:338.281333pt;}
.y9b{bottom:341.256000pt;}
.y12{bottom:346.260000pt;}
.y88{bottom:350.886667pt;}
.y4d{bottom:353.902667pt;}
.y6f{bottom:357.709333pt;}
.y31{bottom:363.572000pt;}
.y9a{bottom:366.548000pt;}
.y11{bottom:371.552000pt;}
.y87{bottom:388.824000pt;}
.y30{bottom:388.864000pt;}
.y4c{bottom:391.840000pt;}
.y6e{bottom:395.646667pt;}
.y10{bottom:400.600000pt;}
.y86{bottom:414.116000pt;}
.y2f{bottom:414.156000pt;}
.y4b{bottom:417.132000pt;}
.y6d{bottom:420.938667pt;}
.y85{bottom:439.408000pt;}
.y4a{bottom:442.422667pt;}
.y6c{bottom:446.230667pt;}
.yf{bottom:446.736000pt;}
.y2e{bottom:452.093333pt;}
.y84{bottom:464.698667pt;}
.y49{bottom:467.714667pt;}
.ye{bottom:469.052000pt;}
.y6b{bottom:474.653333pt;}
.y2d{bottom:477.385333pt;}
.y99{bottom:480.361333pt;}
.y83{bottom:489.990667pt;}
.yd{bottom:491.368000pt;}
.y48{bottom:493.006667pt;}
.y2c{bottom:502.677333pt;}
.y98{bottom:505.652000pt;}
.y6a{bottom:506.949333pt;}
.yc{bottom:513.684000pt;}
.y82{bottom:515.282667pt;}
.y2b{bottom:527.969333pt;}
.y47{bottom:530.944000pt;}
.y69{bottom:532.241333pt;}
.yb{bottom:538.920000pt;}
.y81{bottom:540.574667pt;}
.y68{bottom:557.533333pt;}
.ya{bottom:561.236000pt;}
.yae{bottom:563.425333pt;}
.y2a{bottom:565.906667pt;}
.y46{bottom:568.881333pt;}
.y80{bottom:568.996000pt;}
.y9{bottom:583.552000pt;}
.yad{bottom:588.716000pt;}
.y29{bottom:591.198667pt;}
.y45{bottom:594.173333pt;}
.y67{bottom:599.573333pt;}
.y7f{bottom:601.293333pt;}
.y8{bottom:605.868000pt;}
.y28{bottom:616.489333pt;}
.y66{bottom:617.638667pt;}
.y44{bottom:619.465333pt;}
.y7e{bottom:626.585333pt;}
.yac{bottom:626.654667pt;}
.y7{bottom:628.185333pt;}
.y65{bottom:635.704000pt;}
.y27{bottom:641.781333pt;}
.y97{bottom:644.757333pt;}
.y43{bottom:648.513333pt;}
.y6{bottom:650.501333pt;}
.yab{bottom:651.945333pt;}
.y64{bottom:653.769333pt;}
.y7d{bottom:664.522667pt;}
.y63{bottom:671.836000pt;}
.y5{bottom:672.817333pt;}
.y96{bottom:682.694667pt;}
.y26{bottom:687.529333pt;}
.y42{bottom:689.814667pt;}
.yaa{bottom:689.884000pt;}
.y62{bottom:705.546667pt;}
.y4{bottom:705.981333pt;}
.y95{bottom:707.986667pt;}
.y7c{bottom:715.106667pt;}
.ya9{bottom:715.174667pt;}
.y61{bottom:724.357333pt;}
.y41{bottom:727.752000pt;}
.y25{bottom:733.277333pt;}
.y60{bottom:738.152000pt;}
.y7b{bottom:740.397333pt;}
.y5f{bottom:743.168000pt;}
.y3f{bottom:753.044000pt;}
.ya8{bottom:753.113333pt;}
.y5e{bottom:756.217333pt;}
.y40{bottom:758.322667pt;}
.y94{bottom:758.569333pt;}
.y5d{bottom:761.233333pt;}
.y24{bottom:762.326667pt;}
.y7a{bottom:765.689333pt;}
.y3d{bottom:778.334667pt;}
.ya7{bottom:778.404000pt;}
.y5c{bottom:779.298667pt;}
.y3e{bottom:783.613333pt;}
.y3{bottom:786.481333pt;}
.y93{bottom:796.506667pt;}
.y5b{bottom:797.364000pt;}
.y23{bottom:803.626667pt;}
.ya6{bottom:816.342667pt;}
.y5a{bottom:823.472000pt;}
.y92{bottom:825.556000pt;}
.y22{bottom:828.918667pt;}
.y3c{bottom:841.564000pt;}
.ya5{bottom:841.633333pt;}
.y2{bottom:846.857333pt;}
.y21{bottom:854.210667pt;}
.y59{bottom:860.113333pt;}
.y3b{bottom:866.856000pt;}
.y1{bottom:872.892000pt;}
.y79{bottom:879.502667pt;}
.ya4{bottom:879.570667pt;}
.y58{bottom:885.404000pt;}
.y20{bottom:892.148000pt;}
.ya3{bottom:904.862667pt;}
.y57{bottom:910.696000pt;}
.y1f{bottom:917.440000pt;}
.ya2{bottom:933.912000pt;}
.y56{bottom:939.118667pt;}
.y1e{bottom:942.732000pt;}
.y1d{bottom:995.972000pt;}
.h7{height:28.309795pt;}
.h3{height:37.140573pt;}
.h4{height:39.903534pt;}
.hb{height:43.636400pt;}
.h6{height:43.694582pt;}
.h9{height:44.696508pt;}
.h2{height:45.015313pt;}
.h8{height:49.419129pt;}
.hf{height:49.801693pt;}
.hc{height:51.599027pt;}
.h5{height:53.712173pt;}
.he{height:56.362217pt;}
.ha{height:56.367550pt;}
.h1{height:64.454458pt;}
.hd{height:69.871027pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.864000pt;}
.x6{left:96.000000pt;}
.x35{left:103.232000pt;}
.x37{left:124.757333pt;}
.x36{left:125.774667pt;}
.x5{left:132.364000pt;}
.xc{left:135.685333pt;}
.xd{left:142.917333pt;}
.x28{left:155.214667pt;}
.x12{left:163.296000pt;}
.x29{left:167.608000pt;}
.x20{left:168.500000pt;}
.x13{left:174.442667pt;}
.x14{left:178.385333pt;}
.x21{left:182.664000pt;}
.x15{left:185.617333pt;}
.x2a{left:235.932000pt;}
.x32{left:247.424000pt;}
.x2b{left:257.621333pt;}
.x1{left:261.381333pt;}
.x16{left:263.486667pt;}
.x2{left:281.893333pt;}
.xa{left:292.702667pt;}
.xb{left:299.934667pt;}
.x34{left:311.601333pt;}
.x9{left:313.900000pt;}
.x33{left:323.521333pt;}
.x22{left:327.224000pt;}
.x23{left:343.934667pt;}
.x3{left:363.637333pt;}
.x2c{left:372.705333pt;}
.x4{left:378.988000pt;}
.x2d{left:394.269333pt;}
.x7{left:404.384000pt;}
.x17{left:425.261333pt;}
.x1c{left:438.105333pt;}
.x1d{left:451.282667pt;}
.x19{left:457.608000pt;}
.x18{left:462.076000pt;}
.x24{left:493.300000pt;}
.xe{left:501.181333pt;}
.x25{left:509.001333pt;}
.xf{left:512.312000pt;}
.x2e{left:518.532000pt;}
.x2f{left:532.712000pt;}
.x1a{left:571.132000pt;}
.x1b{left:586.860000pt;}
.x10{left:598.769333pt;}
.x11{left:606.001333pt;}
.x1e{left:619.513333pt;}
.x30{left:628.270667pt;}
.x1f{left:635.180000pt;}
.x31{left:644.528000pt;}
.x26{left:675.137333pt;}
.x27{left:686.921333pt;}
}




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