
    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_7ea7bed1a6c556bdd97f0194.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1cbe07395797b82f6927270e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5cae636fcefc0280bd8977cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5297791cd5c7cfc68577210.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_bd506f18257cf7c84b04c244.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694000;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_8da977ccef2e156ae7eef608.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4765f3eae6c8391eee25f173.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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;}
.m3{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);}
.m1c{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);}
.m17{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);}
.m13{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);}
.me{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);}
.m15{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);}
.m8{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);}
.m1{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);}
.m1f{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);}
.m4{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);}
.m28{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);}
.m22{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);}
.m23{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);}
.m5{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);}
.m7{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);}
.m25{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m12{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);}
.m9{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);}
.ma{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);}
.m1e{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);}
.m1a{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);}
.m1b{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);}
.m1d{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);}
.m19{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);}
.m20{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m14{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);}
.m27{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);}
.m16{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);}
.m24{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);}
.md{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);}
.m2{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);}
.m18{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);}
.m11{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m6{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);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.mb{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);}
.v2{vertical-align:-21.702000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001163px;}
.ls2{letter-spacing:3.347276px;}
.ls1{letter-spacing:4.015609px;}
.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;}
}
.ws14{word-spacing:-71.731020px;}
.ws1c{word-spacing:-54.372113px;}
.ws3{word-spacing:-53.798250px;}
.ws65{word-spacing:-53.726534px;}
.ws3b{word-spacing:-53.439610px;}
.ws52{word-spacing:-53.152686px;}
.ws71{word-spacing:-53.009224px;}
.ws7c{word-spacing:-52.937493px;}
.ws6e{word-spacing:-52.794031px;}
.ws3e{word-spacing:-52.650569px;}
.ws2b{word-spacing:-52.507107px;}
.ws45{word-spacing:-52.220183px;}
.ws46{word-spacing:-52.148452px;}
.ws53{word-spacing:-52.076721px;}
.ws42{word-spacing:-52.004989px;}
.ws2a{word-spacing:-51.933258px;}
.ws6b{word-spacing:-51.861527px;}
.ws1a{word-spacing:-51.718065px;}
.ws23{word-spacing:-51.646334px;}
.ws29{word-spacing:-51.574603px;}
.ws24{word-spacing:-51.502872px;}
.ws57{word-spacing:-51.287679px;}
.ws4e{word-spacing:-51.000755px;}
.ws78{word-spacing:-50.929024px;}
.wsc{word-spacing:-50.857293px;}
.ws43{word-spacing:-50.785562px;}
.ws4c{word-spacing:-50.642100px;}
.ws31{word-spacing:-50.570369px;}
.ws77{word-spacing:-50.498638px;}
.ws7a{word-spacing:-50.355176px;}
.ws64{word-spacing:-50.139983px;}
.wsa{word-spacing:-49.853059px;}
.ws16{word-spacing:-49.781328px;}
.ws49{word-spacing:-49.709597px;}
.ws3f{word-spacing:-49.566135px;}
.ws6c{word-spacing:-49.494404px;}
.ws79{word-spacing:-49.422673px;}
.ws51{word-spacing:-49.350942px;}
.ws60{word-spacing:-49.279211px;}
.ws4f{word-spacing:-49.207480px;}
.ws72{word-spacing:-49.135749px;}
.ws12{word-spacing:-49.064018px;}
.ws5e{word-spacing:-48.992287px;}
.ws15{word-spacing:-48.920556px;}
.ws50{word-spacing:-48.848825px;}
.wsb{word-spacing:-48.777094px;}
.ws27{word-spacing:-48.705363px;}
.ws6{word-spacing:-48.633632px;}
.ws18{word-spacing:-48.561901px;}
.ws34{word-spacing:-48.490170px;}
.ws25{word-spacing:-48.418439px;}
.ws4{word-spacing:-48.346707px;}
.ws81{word-spacing:-48.345968px;}
.ws7{word-spacing:-48.274976px;}
.ws9{word-spacing:-48.203245px;}
.ws84{word-spacing:-48.157220px;}
.ws5{word-spacing:-48.131514px;}
.ws13{word-spacing:-48.110175px;}
.ws8{word-spacing:-48.059783px;}
.ws3d{word-spacing:-47.988052px;}
.wse{word-spacing:-47.916321px;}
.ws22{word-spacing:-47.844590px;}
.ws21{word-spacing:-47.820660px;}
.ws4b{word-spacing:-47.772859px;}
.ws39{word-spacing:-47.701128px;}
.ws5f{word-spacing:-47.629397px;}
.ws37{word-spacing:-47.485935px;}
.ws47{word-spacing:-47.342473px;}
.ws66{word-spacing:-47.270742px;}
.ws1b{word-spacing:-47.199011px;}
.ws26{word-spacing:-46.983818px;}
.ws36{word-spacing:-46.912087px;}
.ws58{word-spacing:-46.768625px;}
.ws83{word-spacing:-46.696894px;}
.ws48{word-spacing:-46.625163px;}
.ws59{word-spacing:-46.553432px;}
.ws7d{word-spacing:-46.481701px;}
.ws35{word-spacing:-46.409970px;}
.ws7b{word-spacing:-46.338239px;}
.ws70{word-spacing:-46.266508px;}
.ws73{word-spacing:-46.194777px;}
.ws2d{word-spacing:-45.907853px;}
.ws6d{word-spacing:-45.764391px;}
.ws69{word-spacing:-45.692660px;}
.ws17{word-spacing:-45.477467px;}
.ws38{word-spacing:-45.334005px;}
.ws5d{word-spacing:-45.190543px;}
.ws55{word-spacing:-45.118812px;}
.ws30{word-spacing:-45.047081px;}
.ws11{word-spacing:-44.975350px;}
.ws76{word-spacing:-44.831887px;}
.ws2c{word-spacing:-44.760156px;}
.ws7f{word-spacing:-44.401501px;}
.wsd{word-spacing:-44.329770px;}
.ws4a{word-spacing:-44.114577px;}
.ws82{word-spacing:-44.042846px;}
.ws5a{word-spacing:-43.971115px;}
.ws3c{word-spacing:-43.899384px;}
.ws6f{word-spacing:-43.755922px;}
.ws67{word-spacing:-43.684191px;}
.ws75{word-spacing:-43.612460px;}
.ws56{word-spacing:-43.540729px;}
.ws10{word-spacing:-43.253805px;}
.ws68{word-spacing:-42.895150px;}
.ws74{word-spacing:-42.823419px;}
.ws44{word-spacing:-42.751688px;}
.ws5b{word-spacing:-42.536495px;}
.ws80{word-spacing:-42.393033px;}
.ws1f{word-spacing:-42.141967px;}
.ws28{word-spacing:-42.106109px;}
.ws4d{word-spacing:-42.022416px;}
.ws19{word-spacing:-41.819185px;}
.ws2f{word-spacing:-41.747454px;}
.ws2e{word-spacing:-41.388799px;}
.ws41{word-spacing:-40.743219px;}
.ws33{word-spacing:-40.528026px;}
.ws63{word-spacing:-40.241102px;}
.ws61{word-spacing:-40.169371px;}
.ws1d{word-spacing:-40.109589px;}
.ws20{word-spacing:-39.870485px;}
.ws1e{word-spacing:-39.631382px;}
.ws32{word-spacing:-39.571606px;}
.ws7e{word-spacing:-39.523792px;}
.ws6a{word-spacing:-38.734751px;}
.ws40{word-spacing:-38.304365px;}
.ws5c{word-spacing:-38.089172px;}
.ws54{word-spacing:-37.945710px;}
.ws62{word-spacing:-37.730517px;}
.ws3a{word-spacing:-34.789539px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.wsf{word-spacing:0.000000px;}
._e{margin-left:-9.755419px;}
._6{margin-left:-6.431884px;}
._5{margin-left:-5.422864px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._8{width:1.386801px;}
._4{width:2.630136px;}
._c{width:4.447321px;}
._b{width:6.033631px;}
._a{width:18.650061px;}
._d{width:20.084681px;}
._2{width:22.571352px;}
._7{width:24.598954px;}
._f{width:25.799256px;}
._9{width:27.257784px;}
._10{width:31.198208px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:41.843100px;}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs5{font-size:59.775840px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y59{bottom:105.934500px;}
.y3d{bottom:105.963000px;}
.y6e{bottom:105.970500px;}
.yc2{bottom:107.647500px;}
.yaf{bottom:109.141500px;}
.y7b{bottom:111.376500px;}
.y6d{bottom:111.396000px;}
.ya5{bottom:113.625000px;}
.ydc{bottom:115.866000px;}
.y92{bottom:118.108500px;}
.ya6{bottom:122.592000px;}
.y58{bottom:123.868500px;}
.y7a{bottom:123.883500px;}
.y3c{bottom:123.895500px;}
.y1e{bottom:128.899500px;}
.y57{bottom:129.292500px;}
.yc8{bottom:131.184000px;}
.yae{bottom:141.645000px;}
.y79{bottom:141.816000px;}
.y3b{bottom:141.828000px;}
.ya4{bottom:146.128500px;}
.y78{bottom:147.241500px;}
.ydb{bottom:148.369500px;}
.yc1{bottom:149.116500px;}
.y91{bottom:150.610500px;}
.y56{bottom:155.094000px;}
.y3a{bottom:159.762000px;}
.y1d{bottom:161.403000px;}
.y6c{bottom:161.604000px;}
.yc7{bottom:163.687500px;}
.y39{bottom:165.186000px;}
.yad{bottom:174.148500px;}
.ya3{bottom:178.630500px;}
.yda{bottom:180.873000px;}
.y77{bottom:181.620000px;}
.y90{bottom:183.114000px;}
.y55{bottom:187.597500px;}
.yc6{bottom:196.191000px;}
.y72{bottom:196.564500px;}
.y1c{bottom:202.872000px;}
.y38{bottom:205.156500px;}
.yac{bottom:206.650500px;}
.ya2{bottom:211.134000px;}
.y76{bottom:214.123500px;}
.y8f{bottom:215.617500px;}
.y54{bottom:220.101000px;}
.yd9{bottom:222.342000px;}
.yc5{bottom:228.693000px;}
.y6b{bottom:229.066500px;}
.y37{bottom:237.660000px;}
.ya1{bottom:243.637500px;}
.y1b{bottom:244.342500px;}
.yc0{bottom:246.625500px;}
.y8e{bottom:248.121000px;}
.y75{bottom:249.615000px;}
.y53{bottom:252.603000px;}
.yd8{bottom:254.845500px;}
.y6a{bottom:261.570000px;}
.y36{bottom:270.163500px;}
.ya0{bottom:276.141000px;}
.y1a{bottom:276.846000px;}
.ybf{bottom:279.129000px;}
.y8d{bottom:280.623000px;}
.y52{bottom:285.106500px;}
.yd7{bottom:287.349000px;}
.y69{bottom:294.073500px;}
.y35{bottom:302.665500px;}
.y9f{bottom:308.643000px;}
.ybe{bottom:311.632500px;}
.y8c{bottom:313.126500px;}
.y51{bottom:317.610000px;}
.y19{bottom:318.315000px;}
.y68{bottom:326.577000px;}
.yd6{bottom:328.818000px;}
.yc4{bottom:335.169000px;}
.y9e{bottom:341.146500px;}
.y34{bottom:344.136000px;}
.yab{bottom:345.630000px;}
.y50{bottom:350.113500px;}
.y18{bottom:350.818500px;}
.y8b{bottom:354.595500px;}
.y67{bottom:359.079000px;}
.yd5{bottom:370.287000px;}
.y9d{bottom:373.650000px;}
.y33{bottom:376.638000px;}
.yaa{bottom:378.133500px;}
.y4f{bottom:382.615500px;}
.y17{bottom:383.320500px;}
.y8a{bottom:387.099000px;}
.y66{bottom:391.582500px;}
.y74{bottom:398.092500px;}
.yd4{bottom:402.790500px;}
.y32{bottom:409.141500px;}
.ya9{bottom:410.635500px;}
.y4e{bottom:415.119000px;}
.y16{bottom:415.824000px;}
.ybd{bottom:418.108500px;}
.y89{bottom:419.602500px;}
.y71{bottom:424.086000px;}
.y65{bottom:433.051500px;}
.y31{bottom:441.645000px;}
.ya8{bottom:443.139000px;}
.yd3{bottom:444.259500px;}
.y4d{bottom:447.622500px;}
.y15{bottom:448.327500px;}
.ybc{bottom:450.610500px;}
.y88{bottom:452.106000px;}
.y70{bottom:456.589500px;}
.ye2{bottom:462.192000px;}
.y64{bottom:465.555000px;}
.y30{bottom:474.148500px;}
.ya7{bottom:477.136500px;}
.y9c{bottom:480.126000px;}
.y14{bottom:480.831000px;}
.ybb{bottom:483.114000px;}
.y87{bottom:484.608000px;}
.yd2{bottom:485.730000px;}
.yc3{bottom:486.103500px;}
.y4c{bottom:489.091500px;}
.ye1{bottom:494.695500px;}
.y63{bottom:498.058500px;}
.y2f{bottom:506.650500px;}
.y9b{bottom:512.628000px;}
.y13{bottom:513.333000px;}
.yba{bottom:515.617500px;}
.y86{bottom:517.111500px;}
.yd1{bottom:518.232000px;}
.y4b{bottom:521.595000px;}
.ye0{bottom:527.199000px;}
.y62{bottom:530.562000px;}
.y9a{bottom:545.131500px;}
.y12{bottom:545.836500px;}
.y2e{bottom:548.121000px;}
.y85{bottom:549.615000px;}
.yd0{bottom:550.735500px;}
.y4a{bottom:554.098500px;}
.y61{bottom:563.064000px;}
.ydf{bottom:568.668000px;}
.y99{bottom:577.635000px;}
.y11{bottom:578.340000px;}
.y2d{bottom:580.623000px;}
.y84{bottom:582.118500px;}
.y49{bottom:586.600500px;}
.ycf{bottom:592.204500px;}
.y60{bottom:595.567500px;}
.y98{bottom:610.138500px;}
.y10{bottom:610.843500px;}
.y2c{bottom:613.126500px;}
.y83{bottom:614.620500px;}
.y48{bottom:619.104000px;}
.yb9{bottom:622.093500px;}
.yce{bottom:624.708000px;}
.y5f{bottom:628.071000px;}
.yde{bottom:642.640500px;}
.y2b{bottom:645.630000px;}
.y47{bottom:651.607500px;}
.yf{bottom:652.312500px;}
.yb8{bottom:654.595500px;}
.y82{bottom:656.091000px;}
.ycd{bottom:657.211500px;}
.y5e{bottom:660.574500px;}
.ydd{bottom:675.144000px;}
.y2a{bottom:678.133500px;}
.y46{bottom:684.111000px;}
.yb7{bottom:687.099000px;}
.y81{bottom:688.593000px;}
.y5d{bottom:693.076500px;}
.ye{bottom:693.781500px;}
.ycc{bottom:698.680500px;}
.y29{bottom:710.635500px;}
.y45{bottom:716.613000px;}
.yb6{bottom:719.602500px;}
.y80{bottom:721.096500px;}
.yd{bottom:721.350000px;}
.y5c{bottom:725.580000px;}
.ycb{bottom:740.151000px;}
.y28{bottom:746.128500px;}
.y44{bottom:749.116500px;}
.yb5{bottom:752.106000px;}
.y7f{bottom:753.600000px;}
.yc{bottom:756.748500px;}
.y6f{bottom:758.083500px;}
.y5b{bottom:767.049000px;}
.yca{bottom:772.653000px;}
.y43{bottom:781.620000px;}
.yb4{bottom:784.608000px;}
.y7e{bottom:786.103500px;}
.yb{bottom:788.845500px;}
.y27{bottom:790.587000px;}
.y5a{bottom:799.552500px;}
.y97{bottom:814.123500px;}
.ya{bottom:816.415500px;}
.yb3{bottom:817.111500px;}
.y7d{bottom:818.605500px;}
.y42{bottom:823.089000px;}
.y26{bottom:832.056000px;}
.y96{bottom:846.625500px;}
.yb2{bottom:849.615000px;}
.y9{bottom:851.812500px;}
.y7c{bottom:852.603000px;}
.y41{bottom:855.592500px;}
.y25{bottom:864.559500px;}
.yc9{bottom:879.129000px;}
.yb1{bottom:882.118500px;}
.y8{bottom:887.211000px;}
.y40{bottom:888.096000px;}
.y24{bottom:897.061500px;}
.yb0{bottom:917.610000px;}
.y3f{bottom:920.598000px;}
.y7{bottom:929.565000px;}
.y95{bottom:953.101500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y94{bottom:985.605000px;}
.y22{bottom:994.572000px;}
.y3e{bottom:1001.080500px;}
.y93{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y21{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y73{bottom:1066.087500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h5{height:28.202249px;}
.h1{height:35.865495px;}
.h7{height:37.658745px;}
.h6{height:44.831880px;}
.h4{height:50.498638px;}
.h8{height:51.215948px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:104.254500px;}
.xe{left:106.299000px;}
.xf{left:110.890500px;}
.x6{left:114.423000px;}
.x11{left:120.705000px;}
.x12{left:128.715000px;}
.x4{left:134.617500px;}
.x1b{left:158.955000px;}
.x1c{left:160.299000px;}
.x5{left:209.742000px;}
.x7{left:306.783000px;}
.x13{left:397.170000px;}
.x14{left:409.795500px;}
.x17{left:449.869500px;}
.x18{left:457.539000px;}
.xd{left:491.439000px;}
.xa{left:515.344500px;}
.x3{left:567.934500px;}
.xb{left:589.639500px;}
.x9{left:610.173000px;}
.x19{left:611.382000px;}
.x1a{left:629.596500px;}
.xc{left:635.422500px;}
.x2{left:648.775500px;}
.x8{left:655.345500px;}
.x1{left:692.794500px;}
.x10{left:785.340000px;}
.x16{left:792.394500px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001033pt;}
.ls2{letter-spacing:2.975357pt;}
.ls1{letter-spacing:3.569430pt;}
.ws14{word-spacing:-63.760907pt;}
.ws1c{word-spacing:-48.330767pt;}
.ws3{word-spacing:-47.820667pt;}
.ws65{word-spacing:-47.756919pt;}
.ws3b{word-spacing:-47.501875pt;}
.ws52{word-spacing:-47.246832pt;}
.ws71{word-spacing:-47.119310pt;}
.ws7c{word-spacing:-47.055549pt;}
.ws6e{word-spacing:-46.928027pt;}
.ws3e{word-spacing:-46.800505pt;}
.ws2b{word-spacing:-46.672984pt;}
.ws45{word-spacing:-46.417940pt;}
.ws46{word-spacing:-46.354179pt;}
.ws53{word-spacing:-46.290418pt;}
.ws42{word-spacing:-46.226657pt;}
.ws2a{word-spacing:-46.162896pt;}
.ws6b{word-spacing:-46.099136pt;}
.ws1a{word-spacing:-45.971614pt;}
.ws23{word-spacing:-45.907853pt;}
.ws29{word-spacing:-45.844092pt;}
.ws24{word-spacing:-45.780331pt;}
.ws57{word-spacing:-45.589048pt;}
.ws4e{word-spacing:-45.334005pt;}
.ws78{word-spacing:-45.270244pt;}
.wsc{word-spacing:-45.206483pt;}
.ws43{word-spacing:-45.142722pt;}
.ws4c{word-spacing:-45.015200pt;}
.ws31{word-spacing:-44.951439pt;}
.ws77{word-spacing:-44.887678pt;}
.ws7a{word-spacing:-44.760156pt;}
.ws64{word-spacing:-44.568874pt;}
.wsa{word-spacing:-44.313830pt;}
.ws16{word-spacing:-44.250069pt;}
.ws49{word-spacing:-44.186308pt;}
.ws3f{word-spacing:-44.058787pt;}
.ws6c{word-spacing:-43.995026pt;}
.ws79{word-spacing:-43.931265pt;}
.ws51{word-spacing:-43.867504pt;}
.ws60{word-spacing:-43.803743pt;}
.ws4f{word-spacing:-43.739982pt;}
.ws72{word-spacing:-43.676221pt;}
.ws12{word-spacing:-43.612460pt;}
.ws5e{word-spacing:-43.548699pt;}
.ws15{word-spacing:-43.484938pt;}
.ws50{word-spacing:-43.421177pt;}
.wsb{word-spacing:-43.357417pt;}
.ws27{word-spacing:-43.293656pt;}
.ws6{word-spacing:-43.229895pt;}
.ws18{word-spacing:-43.166134pt;}
.ws34{word-spacing:-43.102373pt;}
.ws25{word-spacing:-43.038612pt;}
.ws4{word-spacing:-42.974851pt;}
.ws81{word-spacing:-42.974194pt;}
.ws7{word-spacing:-42.911090pt;}
.ws9{word-spacing:-42.847329pt;}
.ws84{word-spacing:-42.806418pt;}
.ws5{word-spacing:-42.783568pt;}
.ws13{word-spacing:-42.764600pt;}
.ws8{word-spacing:-42.719807pt;}
.ws3d{word-spacing:-42.656047pt;}
.wse{word-spacing:-42.592286pt;}
.ws22{word-spacing:-42.528525pt;}
.ws21{word-spacing:-42.507253pt;}
.ws4b{word-spacing:-42.464764pt;}
.ws39{word-spacing:-42.401003pt;}
.ws5f{word-spacing:-42.337242pt;}
.ws37{word-spacing:-42.209720pt;}
.ws47{word-spacing:-42.082198pt;}
.ws66{word-spacing:-42.018437pt;}
.ws1b{word-spacing:-41.954677pt;}
.ws26{word-spacing:-41.763394pt;}
.ws36{word-spacing:-41.699633pt;}
.ws58{word-spacing:-41.572111pt;}
.ws83{word-spacing:-41.508350pt;}
.ws48{word-spacing:-41.444589pt;}
.ws59{word-spacing:-41.380828pt;}
.ws7d{word-spacing:-41.317068pt;}
.ws35{word-spacing:-41.253307pt;}
.ws7b{word-spacing:-41.189546pt;}
.ws70{word-spacing:-41.125785pt;}
.ws73{word-spacing:-41.062024pt;}
.ws2d{word-spacing:-40.806980pt;}
.ws6d{word-spacing:-40.679458pt;}
.ws69{word-spacing:-40.615698pt;}
.ws17{word-spacing:-40.424415pt;}
.ws38{word-spacing:-40.296893pt;}
.ws5d{word-spacing:-40.169371pt;}
.ws55{word-spacing:-40.105610pt;}
.ws30{word-spacing:-40.041849pt;}
.ws11{word-spacing:-39.978088pt;}
.ws76{word-spacing:-39.850567pt;}
.ws2c{word-spacing:-39.786806pt;}
.ws7f{word-spacing:-39.468001pt;}
.wsd{word-spacing:-39.404240pt;}
.ws4a{word-spacing:-39.212958pt;}
.ws82{word-spacing:-39.149197pt;}
.ws5a{word-spacing:-39.085436pt;}
.ws3c{word-spacing:-39.021675pt;}
.ws6f{word-spacing:-38.894153pt;}
.ws67{word-spacing:-38.830392pt;}
.ws75{word-spacing:-38.766631pt;}
.ws56{word-spacing:-38.702870pt;}
.ws10{word-spacing:-38.447827pt;}
.ws68{word-spacing:-38.129022pt;}
.ws74{word-spacing:-38.065261pt;}
.ws44{word-spacing:-38.001500pt;}
.ws5b{word-spacing:-37.810218pt;}
.ws80{word-spacing:-37.682696pt;}
.ws1f{word-spacing:-37.459526pt;}
.ws28{word-spacing:-37.427652pt;}
.ws4d{word-spacing:-37.353258pt;}
.ws19{word-spacing:-37.172609pt;}
.ws2f{word-spacing:-37.108848pt;}
.ws2e{word-spacing:-36.790043pt;}
.ws41{word-spacing:-36.216195pt;}
.ws33{word-spacing:-36.024912pt;}
.ws63{word-spacing:-35.769869pt;}
.ws61{word-spacing:-35.706108pt;}
.ws1d{word-spacing:-35.652968pt;}
.ws20{word-spacing:-35.440431pt;}
.ws1e{word-spacing:-35.227895pt;}
.ws32{word-spacing:-35.174761pt;}
.ws7e{word-spacing:-35.132260pt;}
.ws6a{word-spacing:-34.430890pt;}
.ws40{word-spacing:-34.048324pt;}
.ws5c{word-spacing:-33.857041pt;}
.ws54{word-spacing:-33.729520pt;}
.ws62{word-spacing:-33.538237pt;}
.ws3a{word-spacing:-30.924035pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.wsf{word-spacing:0.000000pt;}
._e{margin-left:-8.671483pt;}
._6{margin-left:-5.717230pt;}
._5{margin-left:-4.820323pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._8{width:1.232712pt;}
._4{width:2.337899pt;}
._c{width:3.953175pt;}
._b{width:5.363228pt;}
._a{width:16.577832pt;}
._d{width:17.853050pt;}
._2{width:20.063424pt;}
._7{width:21.865737pt;}
._f{width:22.932672pt;}
._9{width:24.229141pt;}
._10{width:27.731740pt;}
.fs4{font-size:37.193867pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs5{font-size:53.134080pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y59{bottom:94.164000pt;}
.y3d{bottom:94.189333pt;}
.y6e{bottom:94.196000pt;}
.yc2{bottom:95.686667pt;}
.yaf{bottom:97.014667pt;}
.y7b{bottom:99.001333pt;}
.y6d{bottom:99.018667pt;}
.ya5{bottom:101.000000pt;}
.ydc{bottom:102.992000pt;}
.y92{bottom:104.985333pt;}
.ya6{bottom:108.970667pt;}
.y58{bottom:110.105333pt;}
.y7a{bottom:110.118667pt;}
.y3c{bottom:110.129333pt;}
.y1e{bottom:114.577333pt;}
.y57{bottom:114.926667pt;}
.yc8{bottom:116.608000pt;}
.yae{bottom:125.906667pt;}
.y79{bottom:126.058667pt;}
.y3b{bottom:126.069333pt;}
.ya4{bottom:129.892000pt;}
.y78{bottom:130.881333pt;}
.ydb{bottom:131.884000pt;}
.yc1{bottom:132.548000pt;}
.y91{bottom:133.876000pt;}
.y56{bottom:137.861333pt;}
.y3a{bottom:142.010667pt;}
.y1d{bottom:143.469333pt;}
.y6c{bottom:143.648000pt;}
.yc7{bottom:145.500000pt;}
.y39{bottom:146.832000pt;}
.yad{bottom:154.798667pt;}
.ya3{bottom:158.782667pt;}
.yda{bottom:160.776000pt;}
.y77{bottom:161.440000pt;}
.y90{bottom:162.768000pt;}
.y55{bottom:166.753333pt;}
.yc6{bottom:174.392000pt;}
.y72{bottom:174.724000pt;}
.y1c{bottom:180.330667pt;}
.y38{bottom:182.361333pt;}
.yac{bottom:183.689333pt;}
.ya2{bottom:187.674667pt;}
.y76{bottom:190.332000pt;}
.y8f{bottom:191.660000pt;}
.y54{bottom:195.645333pt;}
.yd9{bottom:197.637333pt;}
.yc5{bottom:203.282667pt;}
.y6b{bottom:203.614667pt;}
.y37{bottom:211.253333pt;}
.ya1{bottom:216.566667pt;}
.y1b{bottom:217.193333pt;}
.yc0{bottom:219.222667pt;}
.y8e{bottom:220.552000pt;}
.y75{bottom:221.880000pt;}
.y53{bottom:224.536000pt;}
.yd8{bottom:226.529333pt;}
.y6a{bottom:232.506667pt;}
.y36{bottom:240.145333pt;}
.ya0{bottom:245.458667pt;}
.y1a{bottom:246.085333pt;}
.ybf{bottom:248.114667pt;}
.y8d{bottom:249.442667pt;}
.y52{bottom:253.428000pt;}
.yd7{bottom:255.421333pt;}
.y69{bottom:261.398667pt;}
.y35{bottom:269.036000pt;}
.y9f{bottom:274.349333pt;}
.ybe{bottom:277.006667pt;}
.y8c{bottom:278.334667pt;}
.y51{bottom:282.320000pt;}
.y19{bottom:282.946667pt;}
.y68{bottom:290.290667pt;}
.yd6{bottom:292.282667pt;}
.yc4{bottom:297.928000pt;}
.y9e{bottom:303.241333pt;}
.y34{bottom:305.898667pt;}
.yab{bottom:307.226667pt;}
.y50{bottom:311.212000pt;}
.y18{bottom:311.838667pt;}
.y8b{bottom:315.196000pt;}
.y67{bottom:319.181333pt;}
.yd5{bottom:329.144000pt;}
.y9d{bottom:332.133333pt;}
.y33{bottom:334.789333pt;}
.yaa{bottom:336.118667pt;}
.y4f{bottom:340.102667pt;}
.y17{bottom:340.729333pt;}
.y8a{bottom:344.088000pt;}
.y66{bottom:348.073333pt;}
.y74{bottom:353.860000pt;}
.yd4{bottom:358.036000pt;}
.y32{bottom:363.681333pt;}
.ya9{bottom:365.009333pt;}
.y4e{bottom:368.994667pt;}
.y16{bottom:369.621333pt;}
.ybd{bottom:371.652000pt;}
.y89{bottom:372.980000pt;}
.y71{bottom:376.965333pt;}
.y65{bottom:384.934667pt;}
.y31{bottom:392.573333pt;}
.ya8{bottom:393.901333pt;}
.yd3{bottom:394.897333pt;}
.y4d{bottom:397.886667pt;}
.y15{bottom:398.513333pt;}
.ybc{bottom:400.542667pt;}
.y88{bottom:401.872000pt;}
.y70{bottom:405.857333pt;}
.ye2{bottom:410.837333pt;}
.y64{bottom:413.826667pt;}
.y30{bottom:421.465333pt;}
.ya7{bottom:424.121333pt;}
.y9c{bottom:426.778667pt;}
.y14{bottom:427.405333pt;}
.ybb{bottom:429.434667pt;}
.y87{bottom:430.762667pt;}
.yd2{bottom:431.760000pt;}
.yc3{bottom:432.092000pt;}
.y4c{bottom:434.748000pt;}
.ye1{bottom:439.729333pt;}
.y63{bottom:442.718667pt;}
.y2f{bottom:450.356000pt;}
.y9b{bottom:455.669333pt;}
.y13{bottom:456.296000pt;}
.yba{bottom:458.326667pt;}
.y86{bottom:459.654667pt;}
.yd1{bottom:460.650667pt;}
.y4b{bottom:463.640000pt;}
.ye0{bottom:468.621333pt;}
.y62{bottom:471.610667pt;}
.y9a{bottom:484.561333pt;}
.y12{bottom:485.188000pt;}
.y2e{bottom:487.218667pt;}
.y85{bottom:488.546667pt;}
.yd0{bottom:489.542667pt;}
.y4a{bottom:492.532000pt;}
.y61{bottom:500.501333pt;}
.ydf{bottom:505.482667pt;}
.y99{bottom:513.453333pt;}
.y11{bottom:514.080000pt;}
.y2d{bottom:516.109333pt;}
.y84{bottom:517.438667pt;}
.y49{bottom:521.422667pt;}
.ycf{bottom:526.404000pt;}
.y60{bottom:529.393333pt;}
.y98{bottom:542.345333pt;}
.y10{bottom:542.972000pt;}
.y2c{bottom:545.001333pt;}
.y83{bottom:546.329333pt;}
.y48{bottom:550.314667pt;}
.yb9{bottom:552.972000pt;}
.yce{bottom:555.296000pt;}
.y5f{bottom:558.285333pt;}
.yde{bottom:571.236000pt;}
.y2b{bottom:573.893333pt;}
.y47{bottom:579.206667pt;}
.yf{bottom:579.833333pt;}
.yb8{bottom:581.862667pt;}
.y82{bottom:583.192000pt;}
.ycd{bottom:584.188000pt;}
.y5e{bottom:587.177333pt;}
.ydd{bottom:600.128000pt;}
.y2a{bottom:602.785333pt;}
.y46{bottom:608.098667pt;}
.yb7{bottom:610.754667pt;}
.y81{bottom:612.082667pt;}
.y5d{bottom:616.068000pt;}
.ye{bottom:616.694667pt;}
.ycc{bottom:621.049333pt;}
.y29{bottom:631.676000pt;}
.y45{bottom:636.989333pt;}
.yb6{bottom:639.646667pt;}
.y80{bottom:640.974667pt;}
.yd{bottom:641.200000pt;}
.y5c{bottom:644.960000pt;}
.ycb{bottom:657.912000pt;}
.y28{bottom:663.225333pt;}
.y44{bottom:665.881333pt;}
.yb5{bottom:668.538667pt;}
.y7f{bottom:669.866667pt;}
.yc{bottom:672.665333pt;}
.y6f{bottom:673.852000pt;}
.y5b{bottom:681.821333pt;}
.yca{bottom:686.802667pt;}
.y43{bottom:694.773333pt;}
.yb4{bottom:697.429333pt;}
.y7e{bottom:698.758667pt;}
.yb{bottom:701.196000pt;}
.y27{bottom:702.744000pt;}
.y5a{bottom:710.713333pt;}
.y97{bottom:723.665333pt;}
.ya{bottom:725.702667pt;}
.yb3{bottom:726.321333pt;}
.y7d{bottom:727.649333pt;}
.y42{bottom:731.634667pt;}
.y26{bottom:739.605333pt;}
.y96{bottom:752.556000pt;}
.yb2{bottom:755.213333pt;}
.y9{bottom:757.166667pt;}
.y7c{bottom:757.869333pt;}
.y41{bottom:760.526667pt;}
.y25{bottom:768.497333pt;}
.yc9{bottom:781.448000pt;}
.yb1{bottom:784.105333pt;}
.y8{bottom:788.632000pt;}
.y40{bottom:789.418667pt;}
.y24{bottom:797.388000pt;}
.yb0{bottom:815.653333pt;}
.y3f{bottom:818.309333pt;}
.y7{bottom:826.280000pt;}
.y95{bottom:847.201333pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y94{bottom:876.093333pt;}
.y22{bottom:884.064000pt;}
.y3e{bottom:889.849333pt;}
.y93{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y21{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y73{bottom:947.633333pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h5{height:25.068666pt;}
.h1{height:31.880440pt;}
.h7{height:33.474440pt;}
.h6{height:39.850560pt;}
.h4{height:44.887678pt;}
.h8{height:45.525287pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:92.670667pt;}
.xe{left:94.488000pt;}
.xf{left:98.569333pt;}
.x6{left:101.709333pt;}
.x11{left:107.293333pt;}
.x12{left:114.413333pt;}
.x4{left:119.660000pt;}
.x1b{left:141.293333pt;}
.x1c{left:142.488000pt;}
.x5{left:186.437333pt;}
.x7{left:272.696000pt;}
.x13{left:353.040000pt;}
.x14{left:364.262667pt;}
.x17{left:399.884000pt;}
.x18{left:406.701333pt;}
.xd{left:436.834667pt;}
.xa{left:458.084000pt;}
.x3{left:504.830667pt;}
.xb{left:524.124000pt;}
.x9{left:542.376000pt;}
.x19{left:543.450667pt;}
.x1a{left:559.641333pt;}
.xc{left:564.820000pt;}
.x2{left:576.689333pt;}
.x8{left:582.529333pt;}
.x1{left:615.817333pt;}
.x10{left:698.080000pt;}
.x16{left:704.350667pt;}
}




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