
    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_c270e15c52ef31d535b030bb.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_a7ee22af8b8081f8f11b4ced.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_dfac896d901f35a077ccd4d8.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_104f6b1bd369e697ad899901.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1908a5069ed5092bb7a4216.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a26f354b88f55ed6f2d13182.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_d5bb52997874712b73ffe945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{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);}
.m1d{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);}
.m23{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);}
.mb{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);}
.m19{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);}
.m1f{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);}
.m9{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);}
.m8{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);}
.m17{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);}
.md{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);}
.m11{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);}
.ma{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);}
.mc{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);}
.m2{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);}
.m13{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);}
.m26{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);}
.m28{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);}
.m10{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);}
.m12{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);}
.m15{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);}
.m22{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);}
.me{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);}
.m7{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);}
.m1c{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);}
.m20{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);}
.m21{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);}
.mf{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);}
.m3{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);}
.m24{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);}
.m1a{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);}
.m1b{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);}
.m16{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);}
.m27{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);}
.m25{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);}
.m14{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);}
.m5{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);}
.m1{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);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:24.670061px;}
.ls6{letter-spacing:24.710247px;}
.ls4{letter-spacing:25.650453px;}
.ls1{letter-spacing:28.710118px;}
.ls2{letter-spacing:35.145400px;}
.ls5{letter-spacing:35.420574px;}
.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;}
}
.wse{word-spacing:-71.731020px;}
.ws3{word-spacing:-53.798250px;}
.ws74{word-spacing:-49.207480px;}
.ws1f{word-spacing:-47.820660px;}
.ws6d{word-spacing:-47.270742px;}
.ws70{word-spacing:-47.127280px;}
.ws69{word-spacing:-47.055549px;}
.ws7d{word-spacing:-46.983818px;}
.ws6a{word-spacing:-46.696894px;}
.ws27{word-spacing:-46.625163px;}
.ws4f{word-spacing:-46.537542px;}
.ws6f{word-spacing:-46.409970px;}
.ws62{word-spacing:-46.194777px;}
.ws61{word-spacing:-45.549198px;}
.ws16{word-spacing:-44.831887px;}
.ws7c{word-spacing:-43.110343px;}
.ws6b{word-spacing:-41.173605px;}
.ws3f{word-spacing:-40.109589px;}
.ws3d{word-spacing:-40.049813px;}
.ws40{word-spacing:-39.870485px;}
.ws78{word-spacing:-39.810716px;}
.ws3e{word-spacing:-39.571606px;}
.ws5e{word-spacing:-38.949944px;}
.ws52{word-spacing:-38.255051px;}
.ws68{word-spacing:-35.738713px;}
.ws53{word-spacing:-35.148200px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws66{word-spacing:-18.076217px;}
.ws1b{word-spacing:-17.287176px;}
.ws42{word-spacing:-17.071983px;}
.ws32{word-spacing:-16.785059px;}
.ws1a{word-spacing:-16.641597px;}
.ws65{word-spacing:-16.067748px;}
.ws2c{word-spacing:-15.565631px;}
.ws2a{word-spacing:-14.920052px;}
.ws4b{word-spacing:-14.346204px;}
.ws73{word-spacing:-14.202742px;}
.ws28{word-spacing:-13.915818px;}
.ws21{word-spacing:-13.844087px;}
.ws33{word-spacing:-13.772356px;}
.ws41{word-spacing:-13.700625px;}
.ws55{word-spacing:-13.628894px;}
.ws54{word-spacing:-13.270239px;}
.ws49{word-spacing:-13.198508px;}
.ws3c{word-spacing:-13.126777px;}
.ws14{word-spacing:-13.055046px;}
.ws1c{word-spacing:-12.911584px;}
.ws5a{word-spacing:-12.839853px;}
.ws5d{word-spacing:-12.552929px;}
.ws34{word-spacing:-12.481197px;}
.ws11{word-spacing:-12.409466px;}
.ws19{word-spacing:-12.337735px;}
.ws10{word-spacing:-12.266004px;}
.wsf{word-spacing:-12.194273px;}
.ws36{word-spacing:-12.122542px;}
.ws29{word-spacing:-12.050811px;}
.ws2b{word-spacing:-11.979080px;}
.ws9{word-spacing:-11.907349px;}
.ws12{word-spacing:-11.835618px;}
.ws4{word-spacing:-11.763887px;}
.ws7{word-spacing:-11.692156px;}
.ws20{word-spacing:-11.620425px;}
.ws22{word-spacing:-11.548694px;}
.ws13{word-spacing:-11.476963px;}
.ws15{word-spacing:-11.405232px;}
.ws18{word-spacing:-11.333501px;}
.ws31{word-spacing:-11.261770px;}
.ws24{word-spacing:-11.190039px;}
.ws3a{word-spacing:-11.118308px;}
.ws30{word-spacing:-11.046577px;}
.ws4d{word-spacing:-10.831384px;}
.ws60{word-spacing:-10.759653px;}
.wsb{word-spacing:-10.687922px;}
.wsa{word-spacing:-10.400998px;}
.ws2e{word-spacing:-10.329267px;}
.ws5{word-spacing:-10.257536px;}
.ws1d{word-spacing:-10.042343px;}
.ws26{word-spacing:-9.970612px;}
.ws17{word-spacing:-9.898881px;}
.ws35{word-spacing:-9.755419px;}
.ws8{word-spacing:-9.611957px;}
.ws4c{word-spacing:-9.468495px;}
.ws3b{word-spacing:-9.396764px;}
.ws37{word-spacing:-9.253302px;}
.ws39{word-spacing:-9.181571px;}
.ws23{word-spacing:-9.109840px;}
.ws25{word-spacing:-8.822915px;}
.ws59{word-spacing:-8.751184px;}
.ws6{word-spacing:-8.679453px;}
.ws1e{word-spacing:-8.607722px;}
.ws7b{word-spacing:-8.464260px;}
.ws2f{word-spacing:-8.392529px;}
.wsc{word-spacing:-8.320798px;}
.ws43{word-spacing:-8.249067px;}
.ws48{word-spacing:-7.675219px;}
.ws44{word-spacing:-7.316564px;}
.ws38{word-spacing:-7.244833px;}
.ws72{word-spacing:-7.101371px;}
.ws47{word-spacing:-7.029640px;}
.ws50{word-spacing:-6.670985px;}
.ws51{word-spacing:-6.599254px;}
.ws4e{word-spacing:-6.455792px;}
.ws2d{word-spacing:-5.881944px;}
.ws58{word-spacing:-5.738482px;}
.ws46{word-spacing:-5.666751px;}
.ws77{word-spacing:-5.451558px;}
.ws6c{word-spacing:-5.308095px;}
.ws4a{word-spacing:-4.734247px;}
.ws71{word-spacing:-4.590785px;}
.ws5f{word-spacing:-4.519054px;}
.ws45{word-spacing:-4.232130px;}
.ws6e{word-spacing:-4.016937px;}
.ws7e{word-spacing:-3.968549px;}
.ws64{word-spacing:-3.968149px;}
.ws75{word-spacing:-3.966835px;}
.ws63{word-spacing:-3.371358px;}
.ws56{word-spacing:-2.940972px;}
.ws57{word-spacing:-2.869241px;}
.ws5b{word-spacing:-1.793276px;}
.ws67{word-spacing:-1.362889px;}
.ws5c{word-spacing:-1.075965px;}
.ws7a{word-spacing:-0.860772px;}
.ws76{word-spacing:-0.789041px;}
.wsd{word-spacing:0.000000px;}
.ws79{word-spacing:15.996017px;}
._10{margin-left:-10.114074px;}
._9{margin-left:-5.881944px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._12{width:1.028145px;}
._4{width:2.128019px;}
._11{width:4.256039px;}
._13{width:5.881941px;}
._23{width:17.908843px;}
._f{width:19.630387px;}
._16{width:21.471482px;}
._2{width:22.571352px;}
._c{width:24.484178px;}
._a{width:25.488428px;}
._7{width:26.564384px;}
._1a{width:27.712082px;}
._b{width:28.955420px;}
._18{width:30.413949px;}
._6{width:31.489918px;}
._14{width:32.709345px;}
._19{width:34.072234px;}
._d{width:35.219931px;}
._8{width:36.463263px;}
._e{width:37.730522px;}
._1c{width:39.236868px;}
._15{width:40.767125px;}
._5{width:41.890916px;}
._1b{width:43.708102px;}
._1e{width:47.222921px;}
._1d{width:48.681452px;}
._17{width:50.259534px;}
._22{width:54.175578px;}
._1f{width:59.028288px;}
._20{width:62.214701px;}
._24{width:63.292055px;}
._21{width:64.820931px;}
.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;}
.y3d{bottom:43.525500px;}
.y21{bottom:57.723000px;}
.y20{bottom:71.919000px;}
.y7c{bottom:105.954000px;}
.y58{bottom:107.647500px;}
.y94{bottom:108.021000px;}
.y96{bottom:115.960500px;}
.y87{bottom:118.108500px;}
.y7b{bottom:123.886500px;}
.y3c{bottom:131.184000px;}
.y65{bottom:131.557500px;}
.y1f{bottom:136.747500px;}
.ybe{bottom:137.161500px;}
.y57{bottom:140.151000px;}
.y93{bottom:140.524500px;}
.y7a{bottom:141.820500px;}
.yd3{bottom:142.765500px;}
.y95{bottom:151.821000px;}
.y86{bottom:159.577500px;}
.y79{bottom:159.753000px;}
.y3b{bottom:163.687500px;}
.y64{bottom:164.061000px;}
.y78{bottom:165.177000px;}
.y1e{bottom:169.249500px;}
.ybd{bottom:169.665000px;}
.y56{bottom:172.653000px;}
.y92{bottom:173.026500px;}
.yd2{bottom:175.269000px;}
.ya4{bottom:182.311500px;}
.y85{bottom:192.081000px;}
.y3a{bottom:196.191000px;}
.y63{bottom:196.564500px;}
.y77{bottom:201.046500px;}
.y1d{bottom:201.753000px;}
.ybc{bottom:202.168500px;}
.y55{bottom:205.156500px;}
.y91{bottom:205.530000px;}
.yd1{bottom:207.772500px;}
.ya3{bottom:218.173500px;}
.y84{bottom:224.584500px;}
.y39{bottom:228.693000px;}
.y62{bottom:229.066500px;}
.y76{bottom:233.550000px;}
.y1c{bottom:234.256500px;}
.y90{bottom:238.033500px;}
.ybb{bottom:243.637500px;}
.y54{bottom:246.625500px;}
.yd0{bottom:249.241500px;}
.y83{bottom:257.086500px;}
.y38{bottom:261.196500px;}
.y61{bottom:261.570000px;}
.y75{bottom:266.053500px;}
.y1b{bottom:266.760000px;}
.y8f{bottom:270.537000px;}
.yba{bottom:276.141000px;}
.ycf{bottom:281.745000px;}
.y53{bottom:288.096000px;}
.y82{bottom:289.590000px;}
.y37{bottom:293.700000px;}
.y60{bottom:294.073500px;}
.y74{bottom:298.557000px;}
.y1a{bottom:299.262000px;}
.yb9{bottom:308.643000px;}
.y8e{bottom:312.006000px;}
.y52{bottom:320.598000px;}
.y81{bottom:322.093500px;}
.yce{bottom:323.214000px;}
.y5f{bottom:326.577000px;}
.y73{bottom:331.059000px;}
.y19{bottom:331.765500px;}
.y36{bottom:335.169000px;}
.yb8{bottom:341.146500px;}
.y8d{bottom:344.509500px;}
.y51{bottom:353.101500px;}
.ycd{bottom:355.717500px;}
.y80{bottom:356.091000px;}
.y5e{bottom:359.079000px;}
.y72{bottom:363.562500px;}
.y18{bottom:364.269000px;}
.yda{bottom:364.683000px;}
.y35{bottom:367.672500px;}
.yb7{bottom:376.638000px;}
.y8c{bottom:377.011500px;}
.y50{bottom:385.605000px;}
.ycc{bottom:388.219500px;}
.y7f{bottom:391.582500px;}
.y71{bottom:396.066000px;}
.y17{bottom:396.772500px;}
.yd9{bottom:397.186500px;}
.y34{bottom:400.176000px;}
.y5d{bottom:400.549500px;}
.y8b{bottom:409.515000px;}
.y4f{bottom:418.108500px;}
.ycb{bottom:420.723000px;}
.yb6{bottom:421.096500px;}
.y7e{bottom:424.086000px;}
.y6f{bottom:428.569500px;}
.y16{bottom:429.274500px;}
.yd8{bottom:429.690000px;}
.y33{bottom:432.678000px;}
.y5c{bottom:433.051500px;}
.y70{bottom:435.078000px;}
.y8a{bottom:442.018500px;}
.y4e{bottom:450.610500px;}
.yb5{bottom:453.600000px;}
.y7d{bottom:456.589500px;}
.y6e{bottom:461.071500px;}
.y15{bottom:461.778000px;}
.yca{bottom:462.192000px;}
.y32{bottom:465.181500px;}
.y5b{bottom:465.555000px;}
.y89{bottom:474.522000px;}
.y4d{bottom:483.114000px;}
.yb4{bottom:486.103500px;}
.yc9{bottom:494.695500px;}
.y6d{bottom:495.069000px;}
.y31{bottom:497.685000px;}
.y5a{bottom:498.058500px;}
.y14{bottom:503.247000px;}
.yd7{bottom:503.662500px;}
.y88{bottom:507.024000px;}
.y4c{bottom:518.605500px;}
.y30{bottom:530.188500px;}
.y59{bottom:530.562000px;}
.yc8{bottom:536.166000px;}
.y6c{bottom:539.527500px;}
.y13{bottom:544.717500px;}
.yb3{bottom:560.076000px;}
.y4b{bottom:563.064000px;}
.y2f{bottom:565.680000px;}
.yc7{bottom:568.668000px;}
.y6b{bottom:572.031000px;}
.y12{bottom:572.088000px;}
.yb2{bottom:592.579500px;}
.y4a{bottom:595.567500px;}
.y11{bottom:599.478000px;}
.yc6{bottom:601.171500px;}
.y6a{bottom:604.534500px;}
.y2e{bottom:610.138500px;}
.yb1{bottom:625.081500px;}
.y10{bottom:627.871500px;}
.y49{bottom:628.071000px;}
.y69{bottom:637.036500px;}
.yc5{bottom:642.640500px;}
.y2d{bottom:651.607500px;}
.yb0{bottom:657.585000px;}
.y48{bottom:660.574500px;}
.yf{bottom:663.072000px;}
.ya2{bottom:668.046000px;}
.y68{bottom:669.540000px;}
.yc4{bottom:675.144000px;}
.y2c{bottom:684.111000px;}
.yaf{bottom:690.088500px;}
.y47{bottom:693.076500px;}
.ye{bottom:698.469000px;}
.ya1{bottom:700.549500px;}
.y67{bottom:702.043500px;}
.yc3{bottom:707.647500px;}
.y2b{bottom:716.613000px;}
.yae{bottom:722.592000px;}
.y46{bottom:725.580000px;}
.yd{bottom:726.862500px;}
.ya0{bottom:733.051500px;}
.y66{bottom:734.547000px;}
.yc2{bottom:740.151000px;}
.y2a{bottom:749.116500px;}
.yad{bottom:755.094000px;}
.yc{bottom:758.764500px;}
.y9f{bottom:765.555000px;}
.y45{bottom:767.049000px;}
.yc1{bottom:772.653000px;}
.y29{bottom:781.620000px;}
.yac{bottom:787.597500px;}
.yb{bottom:794.143500px;}
.y9e{bottom:798.058500px;}
.y44{bottom:799.552500px;}
.y28{bottom:814.123500px;}
.yab{bottom:820.101000px;}
.ya{bottom:822.537000px;}
.y9d{bottom:830.562000px;}
.y43{bottom:832.056000px;}
.y27{bottom:846.625500px;}
.y9{bottom:854.437500px;}
.yd6{bottom:855.592500px;}
.yaa{bottom:861.570000px;}
.y9c{bottom:863.064000px;}
.y42{bottom:864.559500px;}
.y26{bottom:879.129000px;}
.y8{bottom:886.536000px;}
.yd5{bottom:888.096000px;}
.ya9{bottom:894.073500px;}
.y9b{bottom:895.567500px;}
.y41{bottom:897.061500px;}
.y25{bottom:911.632500px;}
.yd4{bottom:920.598000px;}
.ya8{bottom:926.577000px;}
.y9a{bottom:928.071000px;}
.y7{bottom:929.565000px;}
.y24{bottom:944.136000px;}
.yc0{bottom:953.101500px;}
.ya7{bottom:959.079000px;}
.y99{bottom:960.574500px;}
.y40{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y23{bottom:976.638000px;}
.ybf{bottom:985.605000px;}
.ya6{bottom:991.582500px;}
.y98{bottom:993.076500px;}
.y3f{bottom:994.572000px;}
.y22{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.ya5{bottom:1024.086000px;}
.y97{bottom:1025.580000px;}
.y3e{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h6{height:27.867505px;}
.h1{height:35.865495px;}
.h5{height:37.658745px;}
.h7{height:42.799501px;}
.h4{height:50.498638px;}
.h3{height:53.798265px;}
.h2{height:60.598349px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:104.254500px;}
.x10{left:106.299000px;}
.x4{left:108.364500px;}
.x15{left:114.454500px;}
.x16{left:120.705000px;}
.x17{left:128.715000px;}
.x6{left:147.487500px;}
.x1a{left:157.537500px;}
.x19{left:159.241500px;}
.x18{left:160.299000px;}
.x7{left:196.917000px;}
.x5{left:250.843500px;}
.xe{left:369.730500px;}
.xf{left:432.333000px;}
.x13{left:489.648000px;}
.x14{left:503.062500px;}
.x9{left:515.344500px;}
.xd{left:516.652500px;}
.x3{left:567.934500px;}
.x8{left:591.880500px;}
.xc{left:603.877500px;}
.xa{left:622.671000px;}
.xb{left:624.285000px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.x11{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:21.928943pt;}
.ls6{letter-spacing:21.964664pt;}
.ls4{letter-spacing:22.800402pt;}
.ls1{letter-spacing:25.520105pt;}
.ls2{letter-spacing:31.240355pt;}
.ls5{letter-spacing:31.484954pt;}
.wse{word-spacing:-63.760907pt;}
.ws3{word-spacing:-47.820667pt;}
.ws74{word-spacing:-43.739982pt;}
.ws1f{word-spacing:-42.507253pt;}
.ws6d{word-spacing:-42.018437pt;}
.ws70{word-spacing:-41.890916pt;}
.ws69{word-spacing:-41.827155pt;}
.ws7d{word-spacing:-41.763394pt;}
.ws6a{word-spacing:-41.508350pt;}
.ws27{word-spacing:-41.444589pt;}
.ws4f{word-spacing:-41.366704pt;}
.ws6f{word-spacing:-41.253307pt;}
.ws62{word-spacing:-41.062024pt;}
.ws61{word-spacing:-40.488176pt;}
.ws16{word-spacing:-39.850567pt;}
.ws7c{word-spacing:-38.320305pt;}
.ws6b{word-spacing:-36.598760pt;}
.ws3f{word-spacing:-35.652968pt;}
.ws3d{word-spacing:-35.599834pt;}
.ws40{word-spacing:-35.440431pt;}
.ws78{word-spacing:-35.387303pt;}
.ws3e{word-spacing:-35.174761pt;}
.ws5e{word-spacing:-34.622172pt;}
.ws52{word-spacing:-34.004490pt;}
.ws68{word-spacing:-31.767745pt;}
.ws53{word-spacing:-31.242844pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws66{word-spacing:-16.067748pt;}
.ws1b{word-spacing:-15.366379pt;}
.ws42{word-spacing:-15.175096pt;}
.ws32{word-spacing:-14.920052pt;}
.ws1a{word-spacing:-14.792530pt;}
.ws65{word-spacing:-14.282443pt;}
.ws2c{word-spacing:-13.836117pt;}
.ws2a{word-spacing:-13.262269pt;}
.ws4b{word-spacing:-12.752181pt;}
.ws73{word-spacing:-12.624660pt;}
.ws28{word-spacing:-12.369616pt;}
.ws21{word-spacing:-12.305855pt;}
.ws33{word-spacing:-12.242094pt;}
.ws41{word-spacing:-12.178333pt;}
.ws55{word-spacing:-12.114572pt;}
.ws54{word-spacing:-11.795768pt;}
.ws49{word-spacing:-11.732007pt;}
.ws3c{word-spacing:-11.668246pt;}
.ws14{word-spacing:-11.604485pt;}
.ws1c{word-spacing:-11.476963pt;}
.ws5a{word-spacing:-11.413202pt;}
.ws5d{word-spacing:-11.158159pt;}
.ws34{word-spacing:-11.094398pt;}
.ws11{word-spacing:-11.030637pt;}
.ws19{word-spacing:-10.966876pt;}
.ws10{word-spacing:-10.903115pt;}
.wsf{word-spacing:-10.839354pt;}
.ws36{word-spacing:-10.775593pt;}
.ws29{word-spacing:-10.711832pt;}
.ws2b{word-spacing:-10.648071pt;}
.ws9{word-spacing:-10.584311pt;}
.ws12{word-spacing:-10.520550pt;}
.ws4{word-spacing:-10.456789pt;}
.ws7{word-spacing:-10.393028pt;}
.ws20{word-spacing:-10.329267pt;}
.ws22{word-spacing:-10.265506pt;}
.ws13{word-spacing:-10.201745pt;}
.ws15{word-spacing:-10.137984pt;}
.ws18{word-spacing:-10.074223pt;}
.ws31{word-spacing:-10.010462pt;}
.ws24{word-spacing:-9.946701pt;}
.ws3a{word-spacing:-9.882941pt;}
.ws30{word-spacing:-9.819180pt;}
.ws4d{word-spacing:-9.627897pt;}
.ws60{word-spacing:-9.564136pt;}
.wsb{word-spacing:-9.500375pt;}
.wsa{word-spacing:-9.245331pt;}
.ws2e{word-spacing:-9.181571pt;}
.ws5{word-spacing:-9.117810pt;}
.ws1d{word-spacing:-8.926527pt;}
.ws26{word-spacing:-8.862766pt;}
.ws17{word-spacing:-8.799005pt;}
.ws35{word-spacing:-8.671483pt;}
.ws8{word-spacing:-8.543961pt;}
.ws4c{word-spacing:-8.416440pt;}
.ws3b{word-spacing:-8.352679pt;}
.ws37{word-spacing:-8.225157pt;}
.ws39{word-spacing:-8.161396pt;}
.ws23{word-spacing:-8.097635pt;}
.ws25{word-spacing:-7.842592pt;}
.ws59{word-spacing:-7.778831pt;}
.ws6{word-spacing:-7.715070pt;}
.ws1e{word-spacing:-7.651309pt;}
.ws7b{word-spacing:-7.523787pt;}
.ws2f{word-spacing:-7.460026pt;}
.wsc{word-spacing:-7.396265pt;}
.ws43{word-spacing:-7.332504pt;}
.ws48{word-spacing:-6.822417pt;}
.ws44{word-spacing:-6.503612pt;}
.ws38{word-spacing:-6.439852pt;}
.ws72{word-spacing:-6.312330pt;}
.ws47{word-spacing:-6.248569pt;}
.ws50{word-spacing:-5.929764pt;}
.ws51{word-spacing:-5.866003pt;}
.ws4e{word-spacing:-5.738482pt;}
.ws2d{word-spacing:-5.228394pt;}
.ws58{word-spacing:-5.100873pt;}
.ws46{word-spacing:-5.037112pt;}
.ws77{word-spacing:-4.845829pt;}
.ws6c{word-spacing:-4.718307pt;}
.ws4a{word-spacing:-4.208220pt;}
.ws71{word-spacing:-4.080698pt;}
.ws5f{word-spacing:-4.016937pt;}
.ws45{word-spacing:-3.761893pt;}
.ws6e{word-spacing:-3.570611pt;}
.ws7e{word-spacing:-3.527599pt;}
.ws64{word-spacing:-3.527244pt;}
.ws75{word-spacing:-3.526076pt;}
.ws63{word-spacing:-2.996763pt;}
.ws56{word-spacing:-2.614197pt;}
.ws57{word-spacing:-2.550436pt;}
.ws5b{word-spacing:-1.594023pt;}
.ws67{word-spacing:-1.211457pt;}
.ws5c{word-spacing:-0.956414pt;}
.ws7a{word-spacing:-0.765131pt;}
.ws76{word-spacing:-0.701370pt;}
.wsd{word-spacing:0.000000pt;}
.ws79{word-spacing:14.218682pt;}
._10{margin-left:-8.990288pt;}
._9{margin-left:-5.228394pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._12{width:0.913907pt;}
._4{width:1.891572pt;}
._11{width:3.783146pt;}
._13{width:5.228392pt;}
._23{width:15.918972pt;}
._f{width:17.449233pt;}
._16{width:19.085762pt;}
._2{width:20.063424pt;}
._c{width:21.763714pt;}
._a{width:22.656380pt;}
._7{width:23.612786pt;}
._1a{width:24.632962pt;}
._b{width:25.738151pt;}
._18{width:27.034622pt;}
._6{width:27.991039pt;}
._14{width:29.074973pt;}
._19{width:30.286431pt;}
._d{width:31.306605pt;}
._8{width:32.411789pt;}
._e{width:33.538242pt;}
._1c{width:34.877216pt;}
._15{width:36.237445pt;}
._5{width:37.236370pt;}
._1b{width:38.851646pt;}
._1e{width:41.975930pt;}
._1d{width:43.272402pt;}
._17{width:44.675141pt;}
._22{width:48.156070pt;}
._1f{width:52.469590pt;}
._20{width:55.301957pt;}
._24{width:56.259604pt;}
._21{width:57.618606pt;}
.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;}
.y3d{bottom:38.689333pt;}
.y21{bottom:51.309333pt;}
.y20{bottom:63.928000pt;}
.y7c{bottom:94.181333pt;}
.y58{bottom:95.686667pt;}
.y94{bottom:96.018667pt;}
.y96{bottom:103.076000pt;}
.y87{bottom:104.985333pt;}
.y7b{bottom:110.121333pt;}
.y3c{bottom:116.608000pt;}
.y65{bottom:116.940000pt;}
.y1f{bottom:121.553333pt;}
.ybe{bottom:121.921333pt;}
.y57{bottom:124.578667pt;}
.y93{bottom:124.910667pt;}
.y7a{bottom:126.062667pt;}
.yd3{bottom:126.902667pt;}
.y95{bottom:134.952000pt;}
.y86{bottom:141.846667pt;}
.y79{bottom:142.002667pt;}
.y3b{bottom:145.500000pt;}
.y64{bottom:145.832000pt;}
.y78{bottom:146.824000pt;}
.y1e{bottom:150.444000pt;}
.ybd{bottom:150.813333pt;}
.y56{bottom:153.469333pt;}
.y92{bottom:153.801333pt;}
.yd2{bottom:155.794667pt;}
.ya4{bottom:162.054667pt;}
.y85{bottom:170.738667pt;}
.y3a{bottom:174.392000pt;}
.y63{bottom:174.724000pt;}
.y77{bottom:178.708000pt;}
.y1d{bottom:179.336000pt;}
.ybc{bottom:179.705333pt;}
.y55{bottom:182.361333pt;}
.y91{bottom:182.693333pt;}
.yd1{bottom:184.686667pt;}
.ya3{bottom:193.932000pt;}
.y84{bottom:199.630667pt;}
.y39{bottom:203.282667pt;}
.y62{bottom:203.614667pt;}
.y76{bottom:207.600000pt;}
.y1c{bottom:208.228000pt;}
.y90{bottom:211.585333pt;}
.ybb{bottom:216.566667pt;}
.y54{bottom:219.222667pt;}
.yd0{bottom:221.548000pt;}
.y83{bottom:228.521333pt;}
.y38{bottom:232.174667pt;}
.y61{bottom:232.506667pt;}
.y75{bottom:236.492000pt;}
.y1b{bottom:237.120000pt;}
.y8f{bottom:240.477333pt;}
.yba{bottom:245.458667pt;}
.ycf{bottom:250.440000pt;}
.y53{bottom:256.085333pt;}
.y82{bottom:257.413333pt;}
.y37{bottom:261.066667pt;}
.y60{bottom:261.398667pt;}
.y74{bottom:265.384000pt;}
.y1a{bottom:266.010667pt;}
.yb9{bottom:274.349333pt;}
.y8e{bottom:277.338667pt;}
.y52{bottom:284.976000pt;}
.y81{bottom:286.305333pt;}
.yce{bottom:287.301333pt;}
.y5f{bottom:290.290667pt;}
.y73{bottom:294.274667pt;}
.y19{bottom:294.902667pt;}
.y36{bottom:297.928000pt;}
.yb8{bottom:303.241333pt;}
.y8d{bottom:306.230667pt;}
.y51{bottom:313.868000pt;}
.ycd{bottom:316.193333pt;}
.y80{bottom:316.525333pt;}
.y5e{bottom:319.181333pt;}
.y72{bottom:323.166667pt;}
.y18{bottom:323.794667pt;}
.yda{bottom:324.162667pt;}
.y35{bottom:326.820000pt;}
.yb7{bottom:334.789333pt;}
.y8c{bottom:335.121333pt;}
.y50{bottom:342.760000pt;}
.ycc{bottom:345.084000pt;}
.y7f{bottom:348.073333pt;}
.y71{bottom:352.058667pt;}
.y17{bottom:352.686667pt;}
.yd9{bottom:353.054667pt;}
.y34{bottom:355.712000pt;}
.y5d{bottom:356.044000pt;}
.y8b{bottom:364.013333pt;}
.y4f{bottom:371.652000pt;}
.ycb{bottom:373.976000pt;}
.yb6{bottom:374.308000pt;}
.y7e{bottom:376.965333pt;}
.y6f{bottom:380.950667pt;}
.y16{bottom:381.577333pt;}
.yd8{bottom:381.946667pt;}
.y33{bottom:384.602667pt;}
.y5c{bottom:384.934667pt;}
.y70{bottom:386.736000pt;}
.y8a{bottom:392.905333pt;}
.y4e{bottom:400.542667pt;}
.yb5{bottom:403.200000pt;}
.y7d{bottom:405.857333pt;}
.y6e{bottom:409.841333pt;}
.y15{bottom:410.469333pt;}
.yca{bottom:410.837333pt;}
.y32{bottom:413.494667pt;}
.y5b{bottom:413.826667pt;}
.y89{bottom:421.797333pt;}
.y4d{bottom:429.434667pt;}
.yb4{bottom:432.092000pt;}
.yc9{bottom:439.729333pt;}
.y6d{bottom:440.061333pt;}
.y31{bottom:442.386667pt;}
.y5a{bottom:442.718667pt;}
.y14{bottom:447.330667pt;}
.yd7{bottom:447.700000pt;}
.y88{bottom:450.688000pt;}
.y4c{bottom:460.982667pt;}
.y30{bottom:471.278667pt;}
.y59{bottom:471.610667pt;}
.yc8{bottom:476.592000pt;}
.y6c{bottom:479.580000pt;}
.y13{bottom:484.193333pt;}
.yb3{bottom:497.845333pt;}
.y4b{bottom:500.501333pt;}
.y2f{bottom:502.826667pt;}
.yc7{bottom:505.482667pt;}
.y6b{bottom:508.472000pt;}
.y12{bottom:508.522667pt;}
.yb2{bottom:526.737333pt;}
.y4a{bottom:529.393333pt;}
.y11{bottom:532.869333pt;}
.yc6{bottom:534.374667pt;}
.y6a{bottom:537.364000pt;}
.y2e{bottom:542.345333pt;}
.yb1{bottom:555.628000pt;}
.y10{bottom:558.108000pt;}
.y49{bottom:558.285333pt;}
.y69{bottom:566.254667pt;}
.yc5{bottom:571.236000pt;}
.y2d{bottom:579.206667pt;}
.yb0{bottom:584.520000pt;}
.y48{bottom:587.177333pt;}
.yf{bottom:589.397333pt;}
.ya2{bottom:593.818667pt;}
.y68{bottom:595.146667pt;}
.yc4{bottom:600.128000pt;}
.y2c{bottom:608.098667pt;}
.yaf{bottom:613.412000pt;}
.y47{bottom:616.068000pt;}
.ye{bottom:620.861333pt;}
.ya1{bottom:622.710667pt;}
.y67{bottom:624.038667pt;}
.yc3{bottom:629.020000pt;}
.y2b{bottom:636.989333pt;}
.yae{bottom:642.304000pt;}
.y46{bottom:644.960000pt;}
.yd{bottom:646.100000pt;}
.ya0{bottom:651.601333pt;}
.y66{bottom:652.930667pt;}
.yc2{bottom:657.912000pt;}
.y2a{bottom:665.881333pt;}
.yad{bottom:671.194667pt;}
.yc{bottom:674.457333pt;}
.y9f{bottom:680.493333pt;}
.y45{bottom:681.821333pt;}
.yc1{bottom:686.802667pt;}
.y29{bottom:694.773333pt;}
.yac{bottom:700.086667pt;}
.yb{bottom:705.905333pt;}
.y9e{bottom:709.385333pt;}
.y44{bottom:710.713333pt;}
.y28{bottom:723.665333pt;}
.yab{bottom:728.978667pt;}
.ya{bottom:731.144000pt;}
.y9d{bottom:738.277333pt;}
.y43{bottom:739.605333pt;}
.y27{bottom:752.556000pt;}
.y9{bottom:759.500000pt;}
.yd6{bottom:760.526667pt;}
.yaa{bottom:765.840000pt;}
.y9c{bottom:767.168000pt;}
.y42{bottom:768.497333pt;}
.y26{bottom:781.448000pt;}
.y8{bottom:788.032000pt;}
.yd5{bottom:789.418667pt;}
.ya9{bottom:794.732000pt;}
.y9b{bottom:796.060000pt;}
.y41{bottom:797.388000pt;}
.y25{bottom:810.340000pt;}
.yd4{bottom:818.309333pt;}
.ya8{bottom:823.624000pt;}
.y9a{bottom:824.952000pt;}
.y7{bottom:826.280000pt;}
.y24{bottom:839.232000pt;}
.yc0{bottom:847.201333pt;}
.ya7{bottom:852.514667pt;}
.y99{bottom:853.844000pt;}
.y40{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y23{bottom:868.122667pt;}
.ybf{bottom:876.093333pt;}
.ya6{bottom:881.406667pt;}
.y98{bottom:882.734667pt;}
.y3f{bottom:884.064000pt;}
.y22{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.ya5{bottom:910.298667pt;}
.y97{bottom:911.626667pt;}
.y3e{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h6{height:24.771115pt;}
.h1{height:31.880440pt;}
.h5{height:33.474440pt;}
.h7{height:38.044001pt;}
.h4{height:44.887678pt;}
.h3{height:47.820680pt;}
.h2{height:53.865199pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:92.670667pt;}
.x10{left:94.488000pt;}
.x4{left:96.324000pt;}
.x15{left:101.737333pt;}
.x16{left:107.293333pt;}
.x17{left:114.413333pt;}
.x6{left:131.100000pt;}
.x1a{left:140.033333pt;}
.x19{left:141.548000pt;}
.x18{left:142.488000pt;}
.x7{left:175.037333pt;}
.x5{left:222.972000pt;}
.xe{left:328.649333pt;}
.xf{left:384.296000pt;}
.x13{left:435.242667pt;}
.x14{left:447.166667pt;}
.x9{left:458.084000pt;}
.xd{left:459.246667pt;}
.x3{left:504.830667pt;}
.x8{left:526.116000pt;}
.xc{left:536.780000pt;}
.xa{left:553.485333pt;}
.xb{left:554.920000pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.x11{left:698.080000pt;}
}




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