
    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_21485d85ad0fc1871eb25211.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_4f21628234caad4285441ad8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_955055999783622c27c2fde1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e3dd7f254993612306b1290.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_dfc72c956061667f036bbcdd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cad4eb0f8f6d05316f78ba06.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_0f120e15a4348adf29ab0ae7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5cf477ab1ab2c5bc84ac12cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f707406cdf4d9d7427490a18.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_67c21b3d2317c190cc902d43.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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_e5290fa72ed005dc6d228c46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cad4eb0f8f6d05316f78ba06.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.239258;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_e5290fa72ed005dc6d228c46.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cad4eb0f8f6d05316f78ba06.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.239258;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_88a83c754b0b1f98fdafac4d.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_74affd99d679fac7e0e05cbf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.239258;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_dfc72c956061667f036bbcdd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_74affd99d679fac7e0e05cbf.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.239258;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_ca90c416a631878cd182ea5b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_74affd99d679fac7e0e05cbf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fea72cfef226fe319baacdda.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_74affd99d679fac7e0e05cbf.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_517d2a9a832ccf29c72c8bff.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_74affd99d679fac7e0e05cbf.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_aaa29d8412ba66bb7f356209.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b00611521035d395aa355f84.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_517d2a9a832ccf29c72c8bff.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_eedbc15f244ccdbdbd699710.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_aaa29d8412ba66bb7f356209.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_89a52e7b76251633a529835f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_436a746c98d8212829adcd80.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_b90c84ff18cbeef24af83737.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.239258;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:ff21;src:url('chunks/assets/font_374c525188767cfaec5e90b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_b90c84ff18cbeef24af83737.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.002222px;}
.ls3{letter-spacing:0.002338px;}
.ls16{letter-spacing:0.003269px;}
.ls5{letter-spacing:0.004200px;}
.ls8{letter-spacing:0.004379px;}
.ls9{letter-spacing:0.004893px;}
.ls12{letter-spacing:2.985954px;}
.ls30{letter-spacing:2.991954px;}
.ls4{letter-spacing:9.956338px;}
.ls6{letter-spacing:9.962338px;}
.ls1{letter-spacing:11.088000px;}
.lsd{letter-spacing:16.599223px;}
.ls20{letter-spacing:16.603084px;}
.lsc{letter-spacing:16.604685px;}
.ls1a{letter-spacing:16.610685px;}
.ls14{letter-spacing:16.807084px;}
.ls10{letter-spacing:16.823549px;}
.lsb{letter-spacing:16.829549px;}
.ls22{letter-spacing:17.541031px;}
.ls1e{letter-spacing:17.633549px;}
.ls7{letter-spacing:17.653084px;}
.lse{letter-spacing:17.875084px;}
.ls28{letter-spacing:18.289084px;}
.ls2{letter-spacing:19.065223px;}
.ls19{letter-spacing:19.586525px;}
.lsf{letter-spacing:19.592525px;}
.ls1d{letter-spacing:20.402525px;}
.ls29{letter-spacing:21.410525px;}
.ls24{letter-spacing:21.621223px;}
.ls2a{letter-spacing:21.945223px;}
.ls1f{letter-spacing:23.565223px;}
.ls13{letter-spacing:23.625223px;}
.ls23{letter-spacing:23.852525px;}
.ls2d{letter-spacing:23.917084px;}
.lsa{letter-spacing:24.032525px;}
.ls1c{letter-spacing:24.043084px;}
.ls26{letter-spacing:24.837223px;}
.ls2e{letter-spacing:24.951223px;}
.ls17{letter-spacing:25.533223px;}
.ls18{letter-spacing:25.537084px;}
.ls15{letter-spacing:26.499031px;}
.ls27{letter-spacing:27.483223px;}
.ls25{letter-spacing:27.985084px;}
.ls2f{letter-spacing:28.069084px;}
.ls2c{letter-spacing:28.359223px;}
.ls21{letter-spacing:28.857223px;}
.ls1b{letter-spacing:29.199223px;}
.ls2b{letter-spacing:32.593084px;}
.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;}
}
.ws9{word-spacing:-38.937826px;}
.ws10{word-spacing:-28.955301px;}
.ws8{word-spacing:-16.605662px;}
.ws38{word-spacing:-1.123781px;}
.ws28{word-spacing:-0.466250px;}
.ws1b{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.011955px;}
.ws1f{word-spacing:0.191282px;}
.ws60{word-spacing:0.251058px;}
.ws7f{word-spacing:0.310833px;}
.ws6c{word-spacing:0.370609px;}
.ws46{word-spacing:0.789038px;}
.ws4a{word-spacing:0.848814px;}
.ws65{word-spacing:0.908589px;}
.ws4f{word-spacing:0.968365px;}
.ws47{word-spacing:1.028140px;}
.ws56{word-spacing:1.087916px;}
.ws3d{word-spacing:1.386794px;}
.ws3f{word-spacing:1.389892px;}
.ws6d{word-spacing:1.805223px;}
.ws21{word-spacing:1.864999px;}
.wse{word-spacing:1.984550px;}
.ws72{word-spacing:2.402979px;}
.ws4d{word-spacing:2.462755px;}
.ws41{word-spacing:2.582306px;}
.ws19{word-spacing:2.821408px;}
.ws1c{word-spacing:2.940960px;}
.ws44{word-spacing:3.000735px;}
.ws16{word-spacing:3.299613px;}
.ws5f{word-spacing:3.329165px;}
.ws20{word-spacing:3.359389px;}
.ws26{word-spacing:3.419164px;}
.ws24{word-spacing:3.478940px;}
.ws7e{word-spacing:3.598491px;}
.ws55{word-spacing:3.658267px;}
.ws5{word-spacing:3.718042px;}
.ws45{word-spacing:3.777818px;}
.ws52{word-spacing:3.783892px;}
.ws50{word-spacing:3.837594px;}
.ws4e{word-spacing:3.897369px;}
.wsa{word-spacing:3.957145px;}
.wsf{word-spacing:4.016920px;}
.ws1d{word-spacing:4.076696px;}
.ws27{word-spacing:4.196247px;}
.ws2f{word-spacing:4.256023px;}
.ws6a{word-spacing:4.315798px;}
.ws14{word-spacing:4.435350px;}
.ws61{word-spacing:4.495125px;}
.wsc{word-spacing:4.554901px;}
.ws6{word-spacing:4.794003px;}
.ws11{word-spacing:5.272208px;}
.ws3{word-spacing:5.379825px;}
.ws54{word-spacing:5.451535px;}
.ws57{word-spacing:5.869964px;}
.ws13{word-spacing:5.989515px;}
.ws33{word-spacing:6.109066px;}
.ws58{word-spacing:6.168842px;}
.ws59{word-spacing:6.288393px;}
.ws5b{word-spacing:6.348169px;}
.ws0{word-spacing:6.455775px;}
.ws5d{word-spacing:6.467720px;}
.ws37{word-spacing:6.527496px;}
.ws67{word-spacing:6.587271px;}
.ws74{word-spacing:7.125252px;}
.ws48{word-spacing:7.483905px;}
.ws22{word-spacing:7.543681px;}
.ws77{word-spacing:7.723008px;}
.ws3a{word-spacing:7.782783px;}
.ws3c{word-spacing:7.842559px;}
.ws62{word-spacing:8.260988px;}
.ws71{word-spacing:8.320764px;}
.ws35{word-spacing:8.380539px;}
.ws2e{word-spacing:8.679417px;}
.ws34{word-spacing:8.978295px;}
.ws6e{word-spacing:9.038071px;}
.ws12{word-spacing:9.097846px;}
.ws2c{word-spacing:9.277173px;}
.ws66{word-spacing:9.336949px;}
.ws4b{word-spacing:9.576051px;}
.ws2a{word-spacing:9.635827px;}
.ws5e{word-spacing:9.815154px;}
.ws68{word-spacing:9.874929px;}
.ws42{word-spacing:10.173807px;}
.ws43{word-spacing:10.233583px;}
.ws75{word-spacing:10.353134px;}
.ws32{word-spacing:10.592236px;}
.ws30{word-spacing:10.652012px;}
.ws39{word-spacing:10.891114px;}
.ws64{word-spacing:11.130217px;}
.ws2b{word-spacing:11.429095px;}
.ws36{word-spacing:11.907300px;}
.ws6f{word-spacing:12.923485px;}
.ws18{word-spacing:13.043036px;}
.ws1a{word-spacing:16.557841px;}
.ws25{word-spacing:16.737168px;}
.wsb{word-spacing:17.574026px;}
.ws1e{word-spacing:17.813129px;}
.ws6b{word-spacing:18.231558px;}
.ws7{word-spacing:19.008641px;}
.ws3e{word-spacing:20.935943px;}
.ws40{word-spacing:20.936127px;}
.ws5a{word-spacing:21.578992px;}
.ws1{word-spacing:23.312640px;}
.ws51{word-spacing:23.317943px;}
.ws53{word-spacing:23.324127px;}
.ws49{word-spacing:23.491811px;}
.ws23{word-spacing:23.551586px;}
.ws78{word-spacing:23.850464px;}
.ws3b{word-spacing:23.970016px;}
.wsd{word-spacing:24.124892px;}
.ws63{word-spacing:24.747098px;}
.ws7c{word-spacing:24.866650px;}
.ws2d{word-spacing:25.464406px;}
.ws69{word-spacing:27.437000px;}
.ws5c{word-spacing:27.915205px;}
.ws7d{word-spacing:28.034756px;}
.ws76{word-spacing:28.333634px;}
.ws4c{word-spacing:28.811839px;}
.ws31{word-spacing:30.160892px;}
.ws70{word-spacing:32.517926px;}
.ws7a{word-spacing:124.668000px;}
.ws29{word-spacing:124.680000px;}
.ws7b{word-spacing:124.728000px;}
.ws79{word-spacing:144.684000px;}
.ws4{word-spacing:144.696000px;}
.ws73{word-spacing:147.756000px;}
.ws17{word-spacing:169.692000px;}
._7{margin-left:-2784.980087px;}
._6{margin-left:-2381.486871px;}
._4{margin-left:-2194.405413px;}
._8{margin-left:-2070.034382px;}
._1{margin-left:-1313.045306px;}
._9{margin-left:-1023.036886px;}
._c{margin-left:-11.088000px;}
._3{margin-left:-5.810227px;}
._15{margin-left:-4.296364px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.865011px;}
._d{width:1.200000px;}
._5{width:3.202064px;}
._20{width:5.472257px;}
._b{width:10.200000px;}
._22{width:16.652016px;}
._26{width:17.733687px;}
._18{width:18.938843px;}
._17{width:20.822375px;}
._11{width:22.435297px;}
._24{width:23.781713px;}
._21{width:25.011577px;}
._16{width:26.361040px;}
._e{width:27.377225px;}
._f{width:29.208385px;}
._1c{width:31.014560px;}
._10{width:33.242713px;}
._23{width:34.349640px;}
._25{width:36.099974px;}
._27{width:38.077057px;}
._1a{width:39.272569px;}
._1d{width:42.596964px;}
._12{width:44.289232px;}
._13{width:46.027212px;}
._2a{width:47.185538px;}
._1e{width:49.013702px;}
._1b{width:50.928811px;}
._1f{width:53.085607px;}
._14{width:56.187181px;}
._19{width:159.684000px;}
._29{width:164.724000px;}
._a{width:169.704000px;}
._28{width:174.684000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.000000px;}
.fs1{font-size:29.887800px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:41.842800px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.ya{bottom:-41.040000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:1.080000px;}
.y6a{bottom:2.100000px;}
.y19{bottom:2.160000px;}
.y6c{bottom:7.560000px;}
.y14{bottom:17.685000px;}
.y6b{bottom:18.360000px;}
.y15{bottom:39.345000px;}
.yb{bottom:61.275000px;}
.y16{bottom:82.350000px;}
.y7{bottom:82.726500px;}
.y52{bottom:95.160000px;}
.y51{bottom:102.720000px;}
.y18{bottom:110.280000px;}
.y67{bottom:113.520000px;}
.y17{bottom:117.840000px;}
.y2e{bottom:142.425000px;}
.y53{bottom:144.090000px;}
.y1a{bottom:166.845000px;}
.y11{bottom:166.905000px;}
.y3e{bottom:170.160000px;}
.y1b{bottom:173.445000px;}
.y5c{bottom:174.450000px;}
.y6d{bottom:174.765000px;}
.y12{bottom:206.580000px;}
.y4c{bottom:263.074500px;}
.y4b{bottom:281.007000px;}
.y60{bottom:289.974000px;}
.yd{bottom:294.465000px;}
.y4a{bottom:298.939500px;}
.y5f{bottom:307.906500px;}
.y49{bottom:316.872000px;}
.y39{bottom:325.839000px;}
.y48{bottom:334.806000px;}
.yf{bottom:342.480000px;}
.y33{bottom:343.771500px;}
.y47{bottom:352.738500px;}
.y32{bottom:361.704000px;}
.y46{bottom:370.671000px;}
.y31{bottom:379.638000px;}
.y45{bottom:388.603500px;}
.y27{bottom:395.148000px;}
.y30{bottom:397.570500px;}
.y44{bottom:406.536000px;}
.y26{bottom:413.082000px;}
.y2f{bottom:415.503000px;}
.y43{bottom:424.470000px;}
.y2a{bottom:424.635000px;}
.y25{bottom:431.014500px;}
.y38{bottom:433.435500px;}
.ye{bottom:435.435000px;}
.y42{bottom:442.402500px;}
.y1c{bottom:448.275000px;}
.y24{bottom:448.947000px;}
.y66{bottom:448.977000px;}
.y5e{bottom:451.368000px;}
.y29{bottom:457.944000px;}
.y41{bottom:460.335000px;}
.y23{bottom:466.879500px;}
.y62{bottom:466.909500px;}
.y5d{bottom:469.300500px;}
.y35{bottom:475.876500px;}
.y40{bottom:478.267500px;}
.y22{bottom:484.812000px;}
.y69{bottom:486.102000px;}
.y2c{bottom:495.069000px;}
.y3f{bottom:496.200000px;}
.y21{bottom:502.746000px;}
.y4e{bottom:502.776000px;}
.y64{bottom:504.034500px;}
.y59{bottom:511.741500px;}
.y37{bottom:513.001500px;}
.y20{bottom:520.678500px;}
.y55{bottom:520.708500px;}
.y1f{bottom:538.611000px;}
.y3b{bottom:538.641000px;}
.y50{bottom:539.901000px;}
.y5b{bottom:548.866500px;}
.y1e{bottom:556.543500px;}
.y57{bottom:557.833500px;}
.y1d{bottom:574.476000px;}
.y3d{bottom:575.766000px;}
.y68{bottom:613.662000px;}
.yc{bottom:616.917000px;}
.y2b{bottom:622.629000px;}
.y63{bottom:631.594500px;}
.y36{bottom:640.561500px;}
.y13{bottom:654.042000px;}
.y4f{bottom:667.461000px;}
.y5a{bottom:676.426500px;}
.y56{bottom:685.393500px;}
.y3c{bottom:703.326000px;}
.y65{bottom:741.222000px;}
.y28{bottom:750.189000px;}
.y61{bottom:759.154500px;}
.y34{bottom:768.121500px;}
.y10{bottom:781.602000px;}
.y4d{bottom:795.021000px;}
.y58{bottom:803.986500px;}
.y54{bottom:812.953500px;}
.y3a{bottom:830.886000px;}
.y6{bottom:850.795500px;}
.y5{bottom:905.601000px;}
.y9{bottom:909.162000px;}
.y4{bottom:960.406500px;}
.y3{bottom:1019.695500px;}
.y2{bottom:1087.449000px;}
.y1{bottom:1117.342500px;}
.y8{bottom:1120.332000px;}
.h3{height:20.234041px;}
.hb{height:25.031250px;}
.h8{height:37.546875px;}
.h5{height:44.831700px;}
.ha{height:50.062500px;}
.h4{height:51.216077px;}
.h6{height:60.254040px;}
.h2{height:72.304680px;}
.h7{height:127.560000px;}
.h9{height:466.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:127.560000px;}
.w3{width:466.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-34.560000px;}
.x0{left:0.000000px;}
.x18{left:8.640000px;}
.x27{left:19.440000px;}
.x16{left:22.680000px;}
.xc{left:29.565000px;}
.x1c{left:34.965000px;}
.x2b{left:38.625000px;}
.x13{left:44.745000px;}
.x23{left:50.145000px;}
.x9{left:61.275000px;}
.xd{left:83.595000px;}
.x2{left:87.385500px;}
.x1d{left:88.995000px;}
.x2a{left:103.500000px;}
.x1{left:106.299000px;}
.x5{left:109.299000px;}
.x17{left:153.345000px;}
.x26{left:158.745000px;}
.x2c{left:166.185000px;}
.x14{left:172.305000px;}
.x24{left:177.705000px;}
.x1a{left:184.275000px;}
.x28{left:189.675000px;}
.x4{left:210.163500px;}
.xb{left:213.207000px;}
.xf{left:214.485000px;}
.x1f{left:219.885000px;}
.x8{left:255.732000px;}
.x3{left:256.930500px;}
.x1b{left:261.132000px;}
.x6{left:288.024000px;}
.x2d{left:293.745000px;}
.x15{left:299.865000px;}
.x25{left:305.265000px;}
.x11{left:342.045000px;}
.x21{left:347.445000px;}
.xe{left:383.292000px;}
.x1e{left:388.692000px;}
.x29{left:438.985500px;}
.x7{left:442.720500px;}
.x12{left:444.405000px;}
.x22{left:449.805000px;}
.x19{left:465.615000px;}
.x10{left:510.852000px;}
.x20{left:516.252000px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001975pt;}
.ls3{letter-spacing:0.002079pt;}
.ls16{letter-spacing:0.002906pt;}
.ls5{letter-spacing:0.003733pt;}
.ls8{letter-spacing:0.003892pt;}
.ls9{letter-spacing:0.004349pt;}
.ls12{letter-spacing:2.654181pt;}
.ls30{letter-spacing:2.659514pt;}
.ls4{letter-spacing:8.850079pt;}
.ls6{letter-spacing:8.855412pt;}
.ls1{letter-spacing:9.856000pt;}
.lsd{letter-spacing:14.754865pt;}
.ls20{letter-spacing:14.758297pt;}
.lsc{letter-spacing:14.759720pt;}
.ls1a{letter-spacing:14.765053pt;}
.ls14{letter-spacing:14.939630pt;}
.ls10{letter-spacing:14.954265pt;}
.lsb{letter-spacing:14.959599pt;}
.ls22{letter-spacing:15.592027pt;}
.ls1e{letter-spacing:15.674265pt;}
.ls7{letter-spacing:15.691630pt;}
.lse{letter-spacing:15.888964pt;}
.ls28{letter-spacing:16.256964pt;}
.ls2{letter-spacing:16.946865pt;}
.ls19{letter-spacing:17.410245pt;}
.lsf{letter-spacing:17.415578pt;}
.ls1d{letter-spacing:18.135578pt;}
.ls29{letter-spacing:19.031578pt;}
.ls24{letter-spacing:19.218865pt;}
.ls2a{letter-spacing:19.506865pt;}
.ls1f{letter-spacing:20.946865pt;}
.ls13{letter-spacing:21.000199pt;}
.ls23{letter-spacing:21.202245pt;}
.ls2d{letter-spacing:21.259630pt;}
.lsa{letter-spacing:21.362245pt;}
.ls1c{letter-spacing:21.371630pt;}
.ls26{letter-spacing:22.077532pt;}
.ls2e{letter-spacing:22.178865pt;}
.ls17{letter-spacing:22.696199pt;}
.ls18{letter-spacing:22.699630pt;}
.ls15{letter-spacing:23.554694pt;}
.ls27{letter-spacing:24.429532pt;}
.ls25{letter-spacing:24.875630pt;}
.ls2f{letter-spacing:24.950297pt;}
.ls2c{letter-spacing:25.208199pt;}
.ls21{letter-spacing:25.650865pt;}
.ls1b{letter-spacing:25.954865pt;}
.ls2b{letter-spacing:28.971630pt;}
.ws9{word-spacing:-34.611401pt;}
.ws10{word-spacing:-25.738045pt;}
.ws8{word-spacing:-14.760588pt;}
.ws38{word-spacing:-0.998917pt;}
.ws28{word-spacing:-0.414444pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.010627pt;}
.ws1f{word-spacing:0.170028pt;}
.ws60{word-spacing:0.223162pt;}
.ws7f{word-spacing:0.276296pt;}
.ws6c{word-spacing:0.329430pt;}
.ws46{word-spacing:0.701367pt;}
.ws4a{word-spacing:0.754501pt;}
.ws65{word-spacing:0.807635pt;}
.ws4f{word-spacing:0.860769pt;}
.ws47{word-spacing:0.913903pt;}
.ws56{word-spacing:0.967036pt;}
.ws3d{word-spacing:1.232706pt;}
.ws3f{word-spacing:1.235459pt;}
.ws6d{word-spacing:1.604643pt;}
.ws21{word-spacing:1.657777pt;}
.wse{word-spacing:1.764044pt;}
.ws72{word-spacing:2.135981pt;}
.ws4d{word-spacing:2.189115pt;}
.ws41{word-spacing:2.295383pt;}
.ws19{word-spacing:2.507919pt;}
.ws1c{word-spacing:2.614186pt;}
.ws44{word-spacing:2.667320pt;}
.ws16{word-spacing:2.932989pt;}
.ws5f{word-spacing:2.959258pt;}
.ws20{word-spacing:2.986123pt;}
.ws26{word-spacing:3.039257pt;}
.ws24{word-spacing:3.092391pt;}
.ws7e{word-spacing:3.198659pt;}
.ws55{word-spacing:3.251793pt;}
.ws5{word-spacing:3.304927pt;}
.ws45{word-spacing:3.358060pt;}
.ws52{word-spacing:3.363459pt;}
.ws50{word-spacing:3.411194pt;}
.ws4e{word-spacing:3.464328pt;}
.wsa{word-spacing:3.517462pt;}
.wsf{word-spacing:3.570596pt;}
.ws1d{word-spacing:3.623730pt;}
.ws27{word-spacing:3.729997pt;}
.ws2f{word-spacing:3.783131pt;}
.ws6a{word-spacing:3.836265pt;}
.ws14{word-spacing:3.942533pt;}
.ws61{word-spacing:3.995667pt;}
.wsc{word-spacing:4.048801pt;}
.ws6{word-spacing:4.261336pt;}
.ws11{word-spacing:4.686407pt;}
.ws3{word-spacing:4.782067pt;}
.ws54{word-spacing:4.845809pt;}
.ws57{word-spacing:5.217746pt;}
.ws13{word-spacing:5.324013pt;}
.ws33{word-spacing:5.430281pt;}
.ws58{word-spacing:5.483415pt;}
.ws59{word-spacing:5.589683pt;}
.ws5b{word-spacing:5.642817pt;}
.ws0{word-spacing:5.738467pt;}
.ws5d{word-spacing:5.749084pt;}
.ws37{word-spacing:5.802218pt;}
.ws67{word-spacing:5.855352pt;}
.ws74{word-spacing:6.333557pt;}
.ws48{word-spacing:6.652360pt;}
.ws22{word-spacing:6.705494pt;}
.ws77{word-spacing:6.864896pt;}
.ws3a{word-spacing:6.918029pt;}
.ws3c{word-spacing:6.971163pt;}
.ws62{word-spacing:7.343100pt;}
.ws71{word-spacing:7.396234pt;}
.ws35{word-spacing:7.449368pt;}
.ws2e{word-spacing:7.715037pt;}
.ws34{word-spacing:7.980707pt;}
.ws6e{word-spacing:8.033841pt;}
.ws12{word-spacing:8.086975pt;}
.ws2c{word-spacing:8.246376pt;}
.ws66{word-spacing:8.299510pt;}
.ws4b{word-spacing:8.512045pt;}
.ws2a{word-spacing:8.565179pt;}
.ws5e{word-spacing:8.724581pt;}
.ws68{word-spacing:8.777715pt;}
.ws42{word-spacing:9.043384pt;}
.ws43{word-spacing:9.096518pt;}
.ws75{word-spacing:9.202786pt;}
.ws32{word-spacing:9.415321pt;}
.ws30{word-spacing:9.468455pt;}
.ws39{word-spacing:9.680991pt;}
.ws64{word-spacing:9.893526pt;}
.ws2b{word-spacing:10.159195pt;}
.ws36{word-spacing:10.584266pt;}
.ws6f{word-spacing:11.487542pt;}
.ws18{word-spacing:11.593810pt;}
.ws1a{word-spacing:14.718081pt;}
.ws25{word-spacing:14.877483pt;}
.wsb{word-spacing:15.621357pt;}
.ws1e{word-spacing:15.833892pt;}
.ws6b{word-spacing:16.205829pt;}
.ws7{word-spacing:16.896570pt;}
.ws3e{word-spacing:18.609727pt;}
.ws40{word-spacing:18.609891pt;}
.ws5a{word-spacing:19.181326pt;}
.ws1{word-spacing:20.722347pt;}
.ws51{word-spacing:20.727060pt;}
.ws53{word-spacing:20.732558pt;}
.ws49{word-spacing:20.881610pt;}
.ws23{word-spacing:20.934743pt;}
.ws78{word-spacing:21.200413pt;}
.ws3b{word-spacing:21.306681pt;}
.wsd{word-spacing:21.444349pt;}
.ws63{word-spacing:21.997421pt;}
.ws7c{word-spacing:22.103689pt;}
.ws2d{word-spacing:22.635027pt;}
.ws69{word-spacing:24.388445pt;}
.ws5c{word-spacing:24.813516pt;}
.ws7d{word-spacing:24.919783pt;}
.ws76{word-spacing:25.185453pt;}
.ws4c{word-spacing:25.610524pt;}
.ws31{word-spacing:26.809682pt;}
.ws70{word-spacing:28.904823pt;}
.ws7a{word-spacing:110.816000pt;}
.ws29{word-spacing:110.826667pt;}
.ws7b{word-spacing:110.869333pt;}
.ws79{word-spacing:128.608000pt;}
.ws4{word-spacing:128.618667pt;}
.ws73{word-spacing:131.338667pt;}
.ws17{word-spacing:150.837333pt;}
._7{margin-left:-2475.537855pt;}
._6{margin-left:-2116.877219pt;}
._4{margin-left:-1950.582589pt;}
._8{margin-left:-1840.030562pt;}
._1{margin-left:-1167.151383pt;}
._9{margin-left:-909.366121pt;}
._c{margin-left:-9.856000pt;}
._3{margin-left:-5.164646pt;}
._15{margin-left:-3.818990pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.657788pt;}
._d{width:1.066667pt;}
._5{width:2.846279pt;}
._20{width:4.864228pt;}
._b{width:9.066667pt;}
._22{width:14.801792pt;}
._26{width:15.763278pt;}
._18{width:16.834527pt;}
._17{width:18.508778pt;}
._11{width:19.942486pt;}
._24{width:21.139300pt;}
._21{width:22.232513pt;}
._16{width:23.432035pt;}
._e{width:24.335311pt;}
._f{width:25.963009pt;}
._1c{width:27.568498pt;}
._10{width:29.549078pt;}
._23{width:30.533013pt;}
._25{width:32.088866pt;}
._27{width:33.846273pt;}
._1a{width:34.908950pt;}
._1d{width:37.863968pt;}
._12{width:39.368206pt;}
._13{width:40.913077pt;}
._2a{width:41.942700pt;}
._1e{width:43.567735pt;}
._1b{width:45.270054pt;}
._1f{width:47.187206pt;}
._14{width:49.944161pt;}
._19{width:141.941333pt;}
._29{width:146.421333pt;}
._a{width:150.848000pt;}
._28{width:155.274667pt;}
.fs7{font-size:21.333333pt;}
.fs1{font-size:26.566933pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.193600pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.ya{bottom:-36.480000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:0.960000pt;}
.y6a{bottom:1.866667pt;}
.y19{bottom:1.920000pt;}
.y6c{bottom:6.720000pt;}
.y14{bottom:15.720000pt;}
.y6b{bottom:16.320000pt;}
.y15{bottom:34.973333pt;}
.yb{bottom:54.466667pt;}
.y16{bottom:73.200000pt;}
.y7{bottom:73.534667pt;}
.y52{bottom:84.586667pt;}
.y51{bottom:91.306667pt;}
.y18{bottom:98.026667pt;}
.y67{bottom:100.906667pt;}
.y17{bottom:104.746667pt;}
.y2e{bottom:126.600000pt;}
.y53{bottom:128.080000pt;}
.y1a{bottom:148.306667pt;}
.y11{bottom:148.360000pt;}
.y3e{bottom:151.253333pt;}
.y1b{bottom:154.173333pt;}
.y5c{bottom:155.066667pt;}
.y6d{bottom:155.346667pt;}
.y12{bottom:183.626667pt;}
.y4c{bottom:233.844000pt;}
.y4b{bottom:249.784000pt;}
.y60{bottom:257.754667pt;}
.yd{bottom:261.746667pt;}
.y4a{bottom:265.724000pt;}
.y5f{bottom:273.694667pt;}
.y49{bottom:281.664000pt;}
.y39{bottom:289.634667pt;}
.y48{bottom:297.605333pt;}
.yf{bottom:304.426667pt;}
.y33{bottom:305.574667pt;}
.y47{bottom:313.545333pt;}
.y32{bottom:321.514667pt;}
.y46{bottom:329.485333pt;}
.y31{bottom:337.456000pt;}
.y45{bottom:345.425333pt;}
.y27{bottom:351.242667pt;}
.y30{bottom:353.396000pt;}
.y44{bottom:361.365333pt;}
.y26{bottom:367.184000pt;}
.y2f{bottom:369.336000pt;}
.y43{bottom:377.306667pt;}
.y2a{bottom:377.453333pt;}
.y25{bottom:383.124000pt;}
.y38{bottom:385.276000pt;}
.ye{bottom:387.053333pt;}
.y42{bottom:393.246667pt;}
.y1c{bottom:398.466667pt;}
.y24{bottom:399.064000pt;}
.y66{bottom:399.090667pt;}
.y5e{bottom:401.216000pt;}
.y29{bottom:407.061333pt;}
.y41{bottom:409.186667pt;}
.y23{bottom:415.004000pt;}
.y62{bottom:415.030667pt;}
.y5d{bottom:417.156000pt;}
.y35{bottom:423.001333pt;}
.y40{bottom:425.126667pt;}
.y22{bottom:430.944000pt;}
.y69{bottom:432.090667pt;}
.y2c{bottom:440.061333pt;}
.y3f{bottom:441.066667pt;}
.y21{bottom:446.885333pt;}
.y4e{bottom:446.912000pt;}
.y64{bottom:448.030667pt;}
.y59{bottom:454.881333pt;}
.y37{bottom:456.001333pt;}
.y20{bottom:462.825333pt;}
.y55{bottom:462.852000pt;}
.y1f{bottom:478.765333pt;}
.y3b{bottom:478.792000pt;}
.y50{bottom:479.912000pt;}
.y5b{bottom:487.881333pt;}
.y1e{bottom:494.705333pt;}
.y57{bottom:495.852000pt;}
.y1d{bottom:510.645333pt;}
.y3d{bottom:511.792000pt;}
.y68{bottom:545.477333pt;}
.yc{bottom:548.370667pt;}
.y2b{bottom:553.448000pt;}
.y63{bottom:561.417333pt;}
.y36{bottom:569.388000pt;}
.y13{bottom:581.370667pt;}
.y4f{bottom:593.298667pt;}
.y5a{bottom:601.268000pt;}
.y56{bottom:609.238667pt;}
.y3c{bottom:625.178667pt;}
.y65{bottom:658.864000pt;}
.y28{bottom:666.834667pt;}
.y61{bottom:674.804000pt;}
.y34{bottom:682.774667pt;}
.y10{bottom:694.757333pt;}
.y4d{bottom:706.685333pt;}
.y58{bottom:714.654667pt;}
.y54{bottom:722.625333pt;}
.y3a{bottom:738.565333pt;}
.y6{bottom:756.262667pt;}
.y5{bottom:804.978667pt;}
.y9{bottom:808.144000pt;}
.y4{bottom:853.694667pt;}
.y3{bottom:906.396000pt;}
.y2{bottom:966.621333pt;}
.y1{bottom:993.193333pt;}
.y8{bottom:995.850667pt;}
.h3{height:17.985814pt;}
.hb{height:22.250000pt;}
.h8{height:33.375000pt;}
.h5{height:39.850400pt;}
.ha{height:44.500000pt;}
.h4{height:45.525402pt;}
.h6{height:53.559147pt;}
.h2{height:64.270827pt;}
.h7{height:113.386667pt;}
.h9{height:414.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.386667pt;}
.w3{width:414.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-30.720000pt;}
.x0{left:0.000000pt;}
.x18{left:7.680000pt;}
.x27{left:17.280000pt;}
.x16{left:20.160000pt;}
.xc{left:26.280000pt;}
.x1c{left:31.080000pt;}
.x2b{left:34.333333pt;}
.x13{left:39.773333pt;}
.x23{left:44.573333pt;}
.x9{left:54.466667pt;}
.xd{left:74.306667pt;}
.x2{left:77.676000pt;}
.x1d{left:79.106667pt;}
.x2a{left:92.000000pt;}
.x1{left:94.488000pt;}
.x5{left:97.154667pt;}
.x17{left:136.306667pt;}
.x26{left:141.106667pt;}
.x2c{left:147.720000pt;}
.x14{left:153.160000pt;}
.x24{left:157.960000pt;}
.x1a{left:163.800000pt;}
.x28{left:168.600000pt;}
.x4{left:186.812000pt;}
.xb{left:189.517333pt;}
.xf{left:190.653333pt;}
.x1f{left:195.453333pt;}
.x8{left:227.317333pt;}
.x3{left:228.382667pt;}
.x1b{left:232.117333pt;}
.x6{left:256.021333pt;}
.x2d{left:261.106667pt;}
.x15{left:266.546667pt;}
.x25{left:271.346667pt;}
.x11{left:304.040000pt;}
.x21{left:308.840000pt;}
.xe{left:340.704000pt;}
.x1e{left:345.504000pt;}
.x29{left:390.209333pt;}
.x7{left:393.529333pt;}
.x12{left:395.026667pt;}
.x22{left:399.826667pt;}
.x19{left:413.880000pt;}
.x10{left:454.090667pt;}
.x20{left:458.890667pt;}
}




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