
    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_8bcb74791aa267a4b3958fd3.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_bcf7c9a74fbf6f2bc6dd0d31.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_7784d5e7d2697bb1b3553beb.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_ff80f56b4e4fb8cc92e747dd.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_ff745c67bcf88a898704381b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d23b2a8422fd05e8574d8c8a.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_5ea6616bb5f7d976e11c2103.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;}
.m8{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);}
.me{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);}
.m1a{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);}
.md{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);}
.m12{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);}
.mc{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);}
.ma{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);}
.m1d{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);}
.m19{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);}
.m24{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);}
.m3{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);}
.m9{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);}
.m1b{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);}
.m1f{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);}
.m20{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);}
.m16{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);}
.m25{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);}
.m14{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);}
.mf{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);}
.m18{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);}
.m11{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);}
.m23{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);}
.m4{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);}
.m1e{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);}
.m2{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);}
.m5{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);}
.m17{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);}
.m22{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);}
.m21{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);}
.m26{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);}
.m1c{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);}
.m1{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);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.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);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.295393px;}
.ls4{letter-spacing:3.156165px;}
.ls1{letter-spacing:4.015609px;}
.ls2{letter-spacing:27.403609px;}
.ls3{letter-spacing:30.306810px;}
.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;}
}
.ws88{word-spacing:-74.887185px;}
.ws8e{word-spacing:-74.026413px;}
.ws1a{word-spacing:-71.731020px;}
.ws71{word-spacing:-59.775840px;}
.ws92{word-spacing:-55.519809px;}
.ws2c{word-spacing:-55.161154px;}
.ws1d{word-spacing:-54.802499px;}
.ws65{word-spacing:-54.515575px;}
.ws7b{word-spacing:-54.085189px;}
.ws3{word-spacing:-53.798250px;}
.ws38{word-spacing:-53.654803px;}
.ws4a{word-spacing:-53.439610px;}
.ws94{word-spacing:-53.009224px;}
.ws43{word-spacing:-52.865762px;}
.wse{word-spacing:-52.435376px;}
.ws3e{word-spacing:-52.220183px;}
.ws8f{word-spacing:-52.148452px;}
.ws54{word-spacing:-51.933258px;}
.ws32{word-spacing:-51.789796px;}
.ws42{word-spacing:-51.718065px;}
.ws62{word-spacing:-51.574603px;}
.ws3a{word-spacing:-51.431141px;}
.ws5e{word-spacing:-51.359410px;}
.ws1e{word-spacing:-51.215948px;}
.ws4f{word-spacing:-51.072486px;}
.ws76{word-spacing:-51.000755px;}
.ws1f{word-spacing:-50.785562px;}
.ws1c{word-spacing:-50.713831px;}
.ws8a{word-spacing:-50.498638px;}
.ws14{word-spacing:-50.355176px;}
.ws74{word-spacing:-50.283445px;}
.ws40{word-spacing:-50.139983px;}
.ws2a{word-spacing:-50.068252px;}
.ws33{word-spacing:-49.781328px;}
.wsd{word-spacing:-49.566135px;}
.ws44{word-spacing:-49.494404px;}
.ws34{word-spacing:-49.279211px;}
.ws47{word-spacing:-49.207480px;}
.ws7f{word-spacing:-49.154652px;}
.ws11{word-spacing:-49.135749px;}
.ws60{word-spacing:-49.064018px;}
.ws5f{word-spacing:-48.992287px;}
.ws5a{word-spacing:-48.920556px;}
.ws79{word-spacing:-48.848825px;}
.ws5{word-spacing:-48.777094px;}
.ws27{word-spacing:-48.705363px;}
.ws93{word-spacing:-48.634127px;}
.ws15{word-spacing:-48.633632px;}
.ws6{word-spacing:-48.561901px;}
.ws8{word-spacing:-48.490170px;}
.ws18{word-spacing:-48.443526px;}
.ws19{word-spacing:-48.418439px;}
.ws4{word-spacing:-48.346707px;}
.ws7e{word-spacing:-48.345853px;}
.ws7d{word-spacing:-48.343888px;}
.ws31{word-spacing:-48.274976px;}
.ws7{word-spacing:-48.203245px;}
.ws10{word-spacing:-48.131514px;}
.ws2d{word-spacing:-48.059783px;}
.ws12{word-spacing:-47.988052px;}
.ws17{word-spacing:-47.916321px;}
.wsf{word-spacing:-47.844590px;}
.ws26{word-spacing:-47.820660px;}
.ws48{word-spacing:-47.772859px;}
.ws46{word-spacing:-47.701128px;}
.ws41{word-spacing:-47.342473px;}
.ws3b{word-spacing:-47.199011px;}
.ws75{word-spacing:-47.129479px;}
.ws82{word-spacing:-47.127280px;}
.ws4b{word-spacing:-47.055549px;}
.ws5b{word-spacing:-46.983818px;}
.ws4c{word-spacing:-46.840356px;}
.ws9{word-spacing:-46.696894px;}
.ws77{word-spacing:-46.625163px;}
.ws56{word-spacing:-46.553432px;}
.ws55{word-spacing:-46.481701px;}
.ws30{word-spacing:-46.409970px;}
.ws3c{word-spacing:-46.266508px;}
.ws58{word-spacing:-46.194777px;}
.ws7c{word-spacing:-46.128774px;}
.wsc{word-spacing:-46.123046px;}
.ws8b{word-spacing:-46.051315px;}
.ws45{word-spacing:-45.764391px;}
.ws16{word-spacing:-45.692660px;}
.ws81{word-spacing:-45.648384px;}
.ws5c{word-spacing:-45.620929px;}
.ws49{word-spacing:-45.549198px;}
.ws3f{word-spacing:-45.405736px;}
.ws2f{word-spacing:-45.334005px;}
.ws29{word-spacing:-45.047081px;}
.ws20{word-spacing:-44.975350px;}
.ws89{word-spacing:-44.903619px;}
.wsa{word-spacing:-44.831887px;}
.ws2e{word-spacing:-44.473232px;}
.ws2b{word-spacing:-44.258039px;}
.ws28{word-spacing:-43.755922px;}
.ws3d{word-spacing:-43.253805px;}
.ws69{word-spacing:-43.038605px;}
.ws59{word-spacing:-42.966881px;}
.ws35{word-spacing:-42.895150px;}
.ws8c{word-spacing:-42.751688px;}
.ws61{word-spacing:-42.679957px;}
.ws37{word-spacing:-42.608226px;}
.wsb{word-spacing:-42.536495px;}
.ws4d{word-spacing:-42.464764px;}
.ws53{word-spacing:-42.249571px;}
.ws8d{word-spacing:-42.106109px;}
.ws83{word-spacing:-42.034378px;}
.ws7a{word-spacing:-41.962647px;}
.ws1b{word-spacing:-41.890916px;}
.ws51{word-spacing:-41.819185px;}
.ws85{word-spacing:-41.460530px;}
.ws57{word-spacing:-41.388799px;}
.ws73{word-spacing:-41.305105px;}
.ws80{word-spacing:-40.886681px;}
.ws66{word-spacing:-40.587795px;}
.ws78{word-spacing:-40.528026px;}
.ws68{word-spacing:-40.528020px;}
.ws63{word-spacing:-40.312833px;}
.ws91{word-spacing:-40.241102px;}
.ws23{word-spacing:-39.990037px;}
.ws5d{word-spacing:-39.954178px;}
.ws90{word-spacing:-39.882447px;}
.ws25{word-spacing:-39.870485px;}
.ws6e{word-spacing:-39.691158px;}
.ws4e{word-spacing:-39.667254px;}
.ws6c{word-spacing:-39.571606px;}
.ws24{word-spacing:-39.511830px;}
.ws87{word-spacing:-39.430734px;}
.ws6d{word-spacing:-39.392279px;}
.ws39{word-spacing:-39.380330px;}
.ws67{word-spacing:-39.272727px;}
.ws86{word-spacing:-39.236868px;}
.ws50{word-spacing:-39.093406px;}
.ws6a{word-spacing:-39.093399px;}
.ws36{word-spacing:-38.591289px;}
.ws6f{word-spacing:-38.435865px;}
.ws64{word-spacing:-38.376096px;}
.ws21{word-spacing:-38.376089px;}
.ws70{word-spacing:-38.256538px;}
.ws84{word-spacing:-37.802248px;}
.ws52{word-spacing:-37.371861px;}
.ws22{word-spacing:-37.359900px;}
.ws72{word-spacing:-35.985056px;}
.ws6b{word-spacing:-32.458281px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws13{word-spacing:0.000000px;}
._11{margin-left:-9.853658px;}
._4{margin-left:-8.091257px;}
._6{margin-left:-5.953675px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._8{width:1.030741px;}
._5{width:2.128019px;}
._b{width:3.387477px;}
._a{width:4.447321px;}
._9{width:5.881941px;}
._c{width:12.194273px;}
._10{width:21.375841px;}
._2{width:22.571352px;}
._7{width:24.484178px;}
._12{width:25.653198px;}
._f{width:27.159550px;}
._d{width:28.235515px;}
._13{width:30.746101px;}
._e{width:33.113224px;}
.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;}
.ye2{bottom:105.976500px;}
.y3d{bottom:105.994500px;}
.ybc{bottom:109.141500px;}
.y79{bottom:110.262000px;}
.y111{bottom:112.878000px;}
.y53{bottom:113.625000px;}
.yf5{bottom:118.108500px;}
.y8c{bottom:119.229000px;}
.ye1{bottom:123.909000px;}
.y3c{bottom:123.927000px;}
.y1e{bottom:126.442500px;}
.yed{bottom:127.074000px;}
.y66{bottom:131.184000px;}
.y11f{bottom:133.798500px;}
.ya0{bottom:134.173500px;}
.ya5{bottom:137.161500px;}
.ye0{bottom:141.841500px;}
.y3b{bottom:141.859500px;}
.y78{bottom:142.765500px;}
.y110{bottom:145.381500px;}
.y52{bottom:146.128500px;}
.ybb{bottom:150.610500px;}
.y8b{bottom:151.732500px;}
.y1d{bottom:158.946000px;}
.yf4{bottom:159.577500px;}
.ydf{bottom:159.774000px;}
.y3a{bottom:159.792000px;}
.y65{bottom:163.687500px;}
.y11e{bottom:166.302000px;}
.y9f{bottom:166.675500px;}
.yec{bottom:168.544500px;}
.ya4{bottom:169.665000px;}
.y77{bottom:175.269000px;}
.yde{bottom:177.706500px;}
.y39{bottom:177.724500px;}
.y10f{bottom:177.883500px;}
.y51{bottom:178.630500px;}
.y38{bottom:183.150000px;}
.y8a{bottom:184.234500px;}
.y1c{bottom:191.449500px;}
.yba{bottom:192.081000px;}
.ydd{bottom:195.639000px;}
.y11d{bottom:198.805500px;}
.y9e{bottom:199.179000px;}
.yeb{bottom:201.046500px;}
.ya3{bottom:202.168500px;}
.y64{bottom:205.156500px;}
.y50{bottom:211.134000px;}
.ydc{bottom:213.573000px;}
.y76{bottom:216.738000px;}
.y10e{bottom:219.354000px;}
.y1b{bottom:223.953000px;}
.ydb{bottom:231.505500px;}
.y9d{bottom:231.682500px;}
.yb9{bottom:233.550000px;}
.ya2{bottom:234.670500px;}
.y37{bottom:237.660000px;}
.y11c{bottom:240.274500px;}
.yea{bottom:242.517000px;}
.y4f{bottom:243.637500px;}
.y75{bottom:249.241500px;}
.yda{bottom:249.438000px;}
.y10d{bottom:251.856000px;}
.y89{bottom:258.207000px;}
.y9c{bottom:264.186000px;}
.y1a{bottom:265.422000px;}
.ya1{bottom:267.174000px;}
.yd9{bottom:267.370500px;}
.y63{bottom:270.163500px;}
.y11b{bottom:272.778000px;}
.yb8{bottom:275.019000px;}
.y94{bottom:276.141000px;}
.y36{bottom:279.129000px;}
.y74{bottom:281.745000px;}
.yf3{bottom:283.986000px;}
.y4e{bottom:285.106500px;}
.yd8{bottom:285.303000px;}
.y88{bottom:290.710500px;}
.y10c{bottom:293.326500px;}
.y9b{bottom:296.688000px;}
.y62{bottom:302.665500px;}
.yd7{bottom:303.235500px;}
.y19{bottom:306.891000px;}
.y93{bottom:308.643000px;}
.y35{bottom:311.632500px;}
.y11a{bottom:314.247000px;}
.yb7{bottom:316.489500px;}
.y4d{bottom:317.610000px;}
.yd6{bottom:321.169500px;}
.y73{bottom:323.214000px;}
.yf2{bottom:325.455000px;}
.y10b{bottom:325.828500px;}
.y61{bottom:335.169000px;}
.y9a{bottom:338.158500px;}
.yd5{bottom:339.102000px;}
.y18{bottom:339.394500px;}
.y92{bottom:341.146500px;}
.y34{bottom:344.136000px;}
.y119{bottom:346.750500px;}
.ye9{bottom:348.993000px;}
.y4c{bottom:350.113500px;}
.y87{bottom:355.717500px;}
.yd4{bottom:357.034500px;}
.yb6{bottom:357.958500px;}
.y72{bottom:364.683000px;}
.yfd{bottom:366.925500px;}
.y10a{bottom:367.299000px;}
.y60{bottom:367.672500px;}
.y99{bottom:370.660500px;}
.y91{bottom:373.650000px;}
.yd3{bottom:374.967000px;}
.y33{bottom:376.638000px;}
.y118{bottom:379.254000px;}
.y17{bottom:380.863500px;}
.y4b{bottom:382.615500px;}
.y86{bottom:388.219500px;}
.yb5{bottom:390.462000px;}
.yd2{bottom:392.899500px;}
.y71{bottom:397.186500px;}
.yf1{bottom:399.427500px;}
.y109{bottom:399.801000px;}
.y5f{bottom:400.176000px;}
.y90{bottom:406.153500px;}
.yfc{bottom:408.394500px;}
.y32{bottom:409.141500px;}
.yd1{bottom:410.832000px;}
.y117{bottom:411.757500px;}
.y98{bottom:412.131000px;}
.y16{bottom:413.367000px;}
.y4a{bottom:415.119000px;}
.y85{bottom:420.723000px;}
.ye8{bottom:422.965500px;}
.yd0{bottom:428.766000px;}
.y70{bottom:429.690000px;}
.yb4{bottom:431.931000px;}
.y108{bottom:432.304500px;}
.y8f{bottom:438.655500px;}
.yfb{bottom:440.898000px;}
.y31{bottom:441.645000px;}
.y97{bottom:444.633000px;}
.y15{bottom:445.870500px;}
.ycf{bottom:446.698500px;}
.y49{bottom:447.622500px;}
.y116{bottom:453.226500px;}
.y84{bottom:462.192000px;}
.ye7{bottom:464.434500px;}
.yce{bottom:464.631000px;}
.y107{bottom:464.808000px;}
.y6f{bottom:471.159000px;}
.yb3{bottom:473.400000px;}
.y30{bottom:474.148500px;}
.y14{bottom:478.374000px;}
.y48{bottom:480.126000px;}
.yfa{bottom:482.367000px;}
.ycd{bottom:482.563500px;}
.y115{bottom:494.695500px;}
.y106{bottom:500.299500px;}
.ycc{bottom:500.496000px;}
.y83{bottom:503.662500px;}
.yb2{bottom:505.903500px;}
.y2f{bottom:506.650500px;}
.y13{bottom:510.876000px;}
.y47{bottom:512.628000px;}
.yf9{bottom:514.870500px;}
.ycb{bottom:518.428500px;}
.y114{bottom:527.199000px;}
.y82{bottom:536.166000px;}
.yca{bottom:536.362500px;}
.y5e{bottom:539.154000px;}
.y12{bottom:543.379500px;}
.y105{bottom:544.758000px;}
.y8e{bottom:545.131500px;}
.yb1{bottom:547.374000px;}
.y2e{bottom:548.121000px;}
.y46{bottom:554.098500px;}
.yc9{bottom:554.295000px;}
.yf8{bottom:556.339500px;}
.y81{bottom:568.668000px;}
.y5d{bottom:571.657500px;}
.yc8{bottom:572.227500px;}
.y11{bottom:575.883000px;}
.y104{bottom:577.261500px;}
.y8d{bottom:577.635000px;}
.yb0{bottom:579.876000px;}
.y2d{bottom:580.623000px;}
.y45{bottom:586.600500px;}
.ye6{bottom:588.843000px;}
.yc7{bottom:590.160000px;}
.y113{bottom:601.171500px;}
.yc6{bottom:608.092500px;}
.y10{bottom:608.385000px;}
.y103{bottom:609.765000px;}
.y80{bottom:610.138500px;}
.y2c{bottom:613.126500px;}
.y44{bottom:619.104000px;}
.yaf{bottom:621.346500px;}
.yc5{bottom:626.025000px;}
.ye5{bottom:630.312000px;}
.y112{bottom:633.675000px;}
.yf{bottom:640.888500px;}
.y102{bottom:642.267000px;}
.y7f{bottom:642.640500px;}
.yc4{bottom:643.959000px;}
.y2b{bottom:645.630000px;}
.yc3{bottom:649.383000px;}
.y43{bottom:651.607500px;}
.yae{bottom:662.815500px;}
.y121{bottom:666.178500px;}
.ye4{bottom:671.782500px;}
.ye{bottom:673.392000px;}
.y101{bottom:674.770500px;}
.y7e{bottom:675.144000px;}
.y2a{bottom:678.133500px;}
.y6e{bottom:684.111000px;}
.y42{bottom:693.076500px;}
.yc2{bottom:695.319000px;}
.yad{bottom:704.284500px;}
.yd{bottom:705.895500px;}
.y100{bottom:707.274000px;}
.y7d{bottom:707.647500px;}
.y29{bottom:710.635500px;}
.yf0{bottom:713.251500px;}
.y96{bottom:713.625000px;}
.y6d{bottom:716.613000px;}
.y41{bottom:725.580000px;}
.yc1{bottom:736.788000px;}
.yff{bottom:739.777500px;}
.y120{bottom:740.151000px;}
.y5c{bottom:743.139000px;}
.yac{bottom:745.755000px;}
.y28{bottom:746.128500px;}
.yc{bottom:747.364500px;}
.y6c{bottom:749.116500px;}
.yef{bottom:754.720500px;}
.y40{bottom:758.083500px;}
.yc0{bottom:769.291500px;}
.yfe{bottom:775.269000px;}
.y5b{bottom:775.642500px;}
.ye3{bottom:778.257000px;}
.y95{bottom:778.630500px;}
.y6b{bottom:781.620000px;}
.yab{bottom:787.224000px;}
.yb{bottom:788.833500px;}
.y27{bottom:790.587000px;}
.ybf{bottom:810.760500px;}
.y7c{bottom:814.123500px;}
.ya{bottom:816.402000px;}
.y5a{bottom:817.111500px;}
.yaa{bottom:819.727500px;}
.y26{bottom:823.089000px;}
.yee{bottom:828.693000px;}
.y7b{bottom:846.625500px;}
.y59{bottom:849.615000px;}
.y9{bottom:851.916000px;}
.ybe{bottom:852.229500px;}
.y3f{bottom:855.592500px;}
.ya9{bottom:861.196500px;}
.y25{bottom:864.559500px;}
.yf7{bottom:870.163500px;}
.y7a{bottom:879.129000px;}
.y58{bottom:882.118500px;}
.y8{bottom:887.232000px;}
.y3e{bottom:888.096000px;}
.ybd{bottom:893.700000px;}
.y24{bottom:897.061500px;}
.ya8{bottom:902.665500px;}
.y57{bottom:914.620500px;}
.y6a{bottom:920.598000px;}
.y7{bottom:929.565000px;}
.ya7{bottom:935.169000px;}
.yf6{bottom:944.136000px;}
.y56{bottom:947.124000px;}
.y69{bottom:953.101500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.ya6{bottom:976.638000px;}
.y55{bottom:979.627500px;}
.y68{bottom:985.605000px;}
.y22{bottom:994.572000px;}
.y54{bottom:1015.119000px;}
.y67{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y21{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;}
.h7{height:44.831880px;}
.h4{height:50.498638px;}
.h3{height:53.798265px;}
.h2{height:60.598349px;}
.h5{height:63.692745px;}
.h8{height:63.698745px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:104.254500px;}
.xc{left:106.299000px;}
.x4{left:114.723000px;}
.xe{left:121.243500px;}
.xf{left:128.715000px;}
.x6{left:130.422000px;}
.x12{left:143.659500px;}
.x11{left:151.131000px;}
.x14{left:158.847000px;}
.x13{left:160.299000px;}
.x5{left:297.562500px;}
.x7{left:323.643000px;}
.xb{left:337.791000px;}
.x8{left:504.154500px;}
.xa{left:515.344500px;}
.x9{left:546.583500px;}
.x3{left:567.934500px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.xd{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.040349pt;}
.ls4{letter-spacing:2.805480pt;}
.ls1{letter-spacing:3.569430pt;}
.ls2{letter-spacing:24.358763pt;}
.ls3{letter-spacing:26.939386pt;}
.ws88{word-spacing:-66.566387pt;}
.ws8e{word-spacing:-65.801256pt;}
.ws1a{word-spacing:-63.760907pt;}
.ws71{word-spacing:-53.134080pt;}
.ws92{word-spacing:-49.350942pt;}
.ws2c{word-spacing:-49.032137pt;}
.ws1d{word-spacing:-48.713333pt;}
.ws65{word-spacing:-48.458289pt;}
.ws7b{word-spacing:-48.075724pt;}
.ws3{word-spacing:-47.820667pt;}
.ws38{word-spacing:-47.693158pt;}
.ws4a{word-spacing:-47.501875pt;}
.ws94{word-spacing:-47.119310pt;}
.ws43{word-spacing:-46.991788pt;}
.wse{word-spacing:-46.609223pt;}
.ws3e{word-spacing:-46.417940pt;}
.ws8f{word-spacing:-46.354179pt;}
.ws54{word-spacing:-46.162896pt;}
.ws32{word-spacing:-46.035375pt;}
.ws42{word-spacing:-45.971614pt;}
.ws62{word-spacing:-45.844092pt;}
.ws3a{word-spacing:-45.716570pt;}
.ws5e{word-spacing:-45.652809pt;}
.ws1e{word-spacing:-45.525287pt;}
.ws4f{word-spacing:-45.397766pt;}
.ws76{word-spacing:-45.334005pt;}
.ws1f{word-spacing:-45.142722pt;}
.ws1c{word-spacing:-45.078961pt;}
.ws8a{word-spacing:-44.887678pt;}
.ws14{word-spacing:-44.760156pt;}
.ws74{word-spacing:-44.696396pt;}
.ws40{word-spacing:-44.568874pt;}
.ws2a{word-spacing:-44.505113pt;}
.ws33{word-spacing:-44.250069pt;}
.wsd{word-spacing:-44.058787pt;}
.ws44{word-spacing:-43.995026pt;}
.ws34{word-spacing:-43.803743pt;}
.ws47{word-spacing:-43.739982pt;}
.ws7f{word-spacing:-43.693024pt;}
.ws11{word-spacing:-43.676221pt;}
.ws60{word-spacing:-43.612460pt;}
.ws5f{word-spacing:-43.548699pt;}
.ws5a{word-spacing:-43.484938pt;}
.ws79{word-spacing:-43.421177pt;}
.ws5{word-spacing:-43.357417pt;}
.ws27{word-spacing:-43.293656pt;}
.ws93{word-spacing:-43.230335pt;}
.ws15{word-spacing:-43.229895pt;}
.ws6{word-spacing:-43.166134pt;}
.ws8{word-spacing:-43.102373pt;}
.ws18{word-spacing:-43.060912pt;}
.ws19{word-spacing:-43.038612pt;}
.ws4{word-spacing:-42.974851pt;}
.ws7e{word-spacing:-42.974091pt;}
.ws7d{word-spacing:-42.972345pt;}
.ws31{word-spacing:-42.911090pt;}
.ws7{word-spacing:-42.847329pt;}
.ws10{word-spacing:-42.783568pt;}
.ws2d{word-spacing:-42.719807pt;}
.ws12{word-spacing:-42.656047pt;}
.ws17{word-spacing:-42.592286pt;}
.wsf{word-spacing:-42.528525pt;}
.ws26{word-spacing:-42.507253pt;}
.ws48{word-spacing:-42.464764pt;}
.ws46{word-spacing:-42.401003pt;}
.ws41{word-spacing:-42.082198pt;}
.ws3b{word-spacing:-41.954677pt;}
.ws75{word-spacing:-41.892870pt;}
.ws82{word-spacing:-41.890916pt;}
.ws4b{word-spacing:-41.827155pt;}
.ws5b{word-spacing:-41.763394pt;}
.ws4c{word-spacing:-41.635872pt;}
.ws9{word-spacing:-41.508350pt;}
.ws77{word-spacing:-41.444589pt;}
.ws56{word-spacing:-41.380828pt;}
.ws55{word-spacing:-41.317068pt;}
.ws30{word-spacing:-41.253307pt;}
.ws3c{word-spacing:-41.125785pt;}
.ws58{word-spacing:-41.062024pt;}
.ws7c{word-spacing:-41.003355pt;}
.wsc{word-spacing:-40.998263pt;}
.ws8b{word-spacing:-40.934502pt;}
.ws45{word-spacing:-40.679458pt;}
.ws16{word-spacing:-40.615698pt;}
.ws81{word-spacing:-40.576342pt;}
.ws5c{word-spacing:-40.551937pt;}
.ws49{word-spacing:-40.488176pt;}
.ws3f{word-spacing:-40.360654pt;}
.ws2f{word-spacing:-40.296893pt;}
.ws29{word-spacing:-40.041849pt;}
.ws20{word-spacing:-39.978088pt;}
.ws89{word-spacing:-39.914328pt;}
.wsa{word-spacing:-39.850567pt;}
.ws2e{word-spacing:-39.531762pt;}
.ws2b{word-spacing:-39.340479pt;}
.ws28{word-spacing:-38.894153pt;}
.ws3d{word-spacing:-38.447827pt;}
.ws69{word-spacing:-38.256538pt;}
.ws59{word-spacing:-38.192783pt;}
.ws35{word-spacing:-38.129022pt;}
.ws8c{word-spacing:-38.001500pt;}
.ws61{word-spacing:-37.937739pt;}
.ws37{word-spacing:-37.873979pt;}
.wsb{word-spacing:-37.810218pt;}
.ws4d{word-spacing:-37.746457pt;}
.ws53{word-spacing:-37.555174pt;}
.ws8d{word-spacing:-37.427652pt;}
.ws83{word-spacing:-37.363891pt;}
.ws7a{word-spacing:-37.300130pt;}
.ws1b{word-spacing:-37.236369pt;}
.ws51{word-spacing:-37.172609pt;}
.ws85{word-spacing:-36.853804pt;}
.ws57{word-spacing:-36.790043pt;}
.ws73{word-spacing:-36.715649pt;}
.ws80{word-spacing:-36.343717pt;}
.ws66{word-spacing:-36.078040pt;}
.ws78{word-spacing:-36.024912pt;}
.ws68{word-spacing:-36.024906pt;}
.ws63{word-spacing:-35.833630pt;}
.ws91{word-spacing:-35.769869pt;}
.ws23{word-spacing:-35.546700pt;}
.ws5d{word-spacing:-35.514825pt;}
.ws90{word-spacing:-35.451064pt;}
.ws25{word-spacing:-35.440431pt;}
.ws6e{word-spacing:-35.281029pt;}
.ws4e{word-spacing:-35.259781pt;}
.ws6c{word-spacing:-35.174761pt;}
.ws24{word-spacing:-35.121627pt;}
.ws87{word-spacing:-35.049541pt;}
.ws6d{word-spacing:-35.015359pt;}
.ws39{word-spacing:-35.004738pt;}
.ws67{word-spacing:-34.909091pt;}
.ws86{word-spacing:-34.877216pt;}
.ws50{word-spacing:-34.749694pt;}
.ws6a{word-spacing:-34.749688pt;}
.ws36{word-spacing:-34.303368pt;}
.ws6f{word-spacing:-34.165213pt;}
.ws64{word-spacing:-34.112085pt;}
.ws21{word-spacing:-34.112079pt;}
.ws70{word-spacing:-34.005811pt;}
.ws84{word-spacing:-33.601998pt;}
.ws52{word-spacing:-33.219432pt;}
.ws22{word-spacing:-33.208800pt;}
.ws72{word-spacing:-31.986716pt;}
.ws6b{word-spacing:-28.851805pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws13{word-spacing:0.000000pt;}
._11{margin-left:-8.758807pt;}
._4{margin-left:-7.192228pt;}
._6{margin-left:-5.292155pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._8{width:0.916214pt;}
._5{width:1.891572pt;}
._b{width:3.011091pt;}
._a{width:3.953175pt;}
._9{width:5.228392pt;}
._c{width:10.839354pt;}
._10{width:19.000748pt;}
._2{width:20.063424pt;}
._7{width:21.763714pt;}
._12{width:22.802843pt;}
._f{width:24.141822pt;}
._d{width:25.098236pt;}
._13{width:27.329867pt;}
._e{width:29.433977pt;}
.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;}
.ye2{bottom:94.201333pt;}
.y3d{bottom:94.217333pt;}
.ybc{bottom:97.014667pt;}
.y79{bottom:98.010667pt;}
.y111{bottom:100.336000pt;}
.y53{bottom:101.000000pt;}
.yf5{bottom:104.985333pt;}
.y8c{bottom:105.981333pt;}
.ye1{bottom:110.141333pt;}
.y3c{bottom:110.157333pt;}
.y1e{bottom:112.393333pt;}
.yed{bottom:112.954667pt;}
.y66{bottom:116.608000pt;}
.y11f{bottom:118.932000pt;}
.ya0{bottom:119.265333pt;}
.ya5{bottom:121.921333pt;}
.ye0{bottom:126.081333pt;}
.y3b{bottom:126.097333pt;}
.y78{bottom:126.902667pt;}
.y110{bottom:129.228000pt;}
.y52{bottom:129.892000pt;}
.ybb{bottom:133.876000pt;}
.y8b{bottom:134.873333pt;}
.y1d{bottom:141.285333pt;}
.yf4{bottom:141.846667pt;}
.ydf{bottom:142.021333pt;}
.y3a{bottom:142.037333pt;}
.y65{bottom:145.500000pt;}
.y11e{bottom:147.824000pt;}
.y9f{bottom:148.156000pt;}
.yec{bottom:149.817333pt;}
.ya4{bottom:150.813333pt;}
.y77{bottom:155.794667pt;}
.yde{bottom:157.961333pt;}
.y39{bottom:157.977333pt;}
.y10f{bottom:158.118667pt;}
.y51{bottom:158.782667pt;}
.y38{bottom:162.800000pt;}
.y8a{bottom:163.764000pt;}
.y1c{bottom:170.177333pt;}
.yba{bottom:170.738667pt;}
.ydd{bottom:173.901333pt;}
.y11d{bottom:176.716000pt;}
.y9e{bottom:177.048000pt;}
.yeb{bottom:178.708000pt;}
.ya3{bottom:179.705333pt;}
.y64{bottom:182.361333pt;}
.y50{bottom:187.674667pt;}
.ydc{bottom:189.842667pt;}
.y76{bottom:192.656000pt;}
.y10e{bottom:194.981333pt;}
.y1b{bottom:199.069333pt;}
.ydb{bottom:205.782667pt;}
.y9d{bottom:205.940000pt;}
.yb9{bottom:207.600000pt;}
.ya2{bottom:208.596000pt;}
.y37{bottom:211.253333pt;}
.y11c{bottom:213.577333pt;}
.yea{bottom:215.570667pt;}
.y4f{bottom:216.566667pt;}
.y75{bottom:221.548000pt;}
.yda{bottom:221.722667pt;}
.y10d{bottom:223.872000pt;}
.y89{bottom:229.517333pt;}
.y9c{bottom:234.832000pt;}
.y1a{bottom:235.930667pt;}
.ya1{bottom:237.488000pt;}
.yd9{bottom:237.662667pt;}
.y63{bottom:240.145333pt;}
.y11b{bottom:242.469333pt;}
.yb8{bottom:244.461333pt;}
.y94{bottom:245.458667pt;}
.y36{bottom:248.114667pt;}
.y74{bottom:250.440000pt;}
.yf3{bottom:252.432000pt;}
.y4e{bottom:253.428000pt;}
.yd8{bottom:253.602667pt;}
.y88{bottom:258.409333pt;}
.y10c{bottom:260.734667pt;}
.y9b{bottom:263.722667pt;}
.y62{bottom:269.036000pt;}
.yd7{bottom:269.542667pt;}
.y19{bottom:272.792000pt;}
.y93{bottom:274.349333pt;}
.y35{bottom:277.006667pt;}
.y11a{bottom:279.330667pt;}
.yb7{bottom:281.324000pt;}
.y4d{bottom:282.320000pt;}
.yd6{bottom:285.484000pt;}
.y73{bottom:287.301333pt;}
.yf2{bottom:289.293333pt;}
.y10b{bottom:289.625333pt;}
.y61{bottom:297.928000pt;}
.y9a{bottom:300.585333pt;}
.yd5{bottom:301.424000pt;}
.y18{bottom:301.684000pt;}
.y92{bottom:303.241333pt;}
.y34{bottom:305.898667pt;}
.y119{bottom:308.222667pt;}
.ye9{bottom:310.216000pt;}
.y4c{bottom:311.212000pt;}
.y87{bottom:316.193333pt;}
.yd4{bottom:317.364000pt;}
.yb6{bottom:318.185333pt;}
.y72{bottom:324.162667pt;}
.yfd{bottom:326.156000pt;}
.y10a{bottom:326.488000pt;}
.y60{bottom:326.820000pt;}
.y99{bottom:329.476000pt;}
.y91{bottom:332.133333pt;}
.yd3{bottom:333.304000pt;}
.y33{bottom:334.789333pt;}
.y118{bottom:337.114667pt;}
.y17{bottom:338.545333pt;}
.y4b{bottom:340.102667pt;}
.y86{bottom:345.084000pt;}
.yb5{bottom:347.077333pt;}
.yd2{bottom:349.244000pt;}
.y71{bottom:353.054667pt;}
.yf1{bottom:355.046667pt;}
.y109{bottom:355.378667pt;}
.y5f{bottom:355.712000pt;}
.y90{bottom:361.025333pt;}
.yfc{bottom:363.017333pt;}
.y32{bottom:363.681333pt;}
.yd1{bottom:365.184000pt;}
.y117{bottom:366.006667pt;}
.y98{bottom:366.338667pt;}
.y16{bottom:367.437333pt;}
.y4a{bottom:368.994667pt;}
.y85{bottom:373.976000pt;}
.ye8{bottom:375.969333pt;}
.yd0{bottom:381.125333pt;}
.y70{bottom:381.946667pt;}
.yb4{bottom:383.938667pt;}
.y108{bottom:384.270667pt;}
.y8f{bottom:389.916000pt;}
.yfb{bottom:391.909333pt;}
.y31{bottom:392.573333pt;}
.y97{bottom:395.229333pt;}
.y15{bottom:396.329333pt;}
.ycf{bottom:397.065333pt;}
.y49{bottom:397.886667pt;}
.y116{bottom:402.868000pt;}
.y84{bottom:410.837333pt;}
.ye7{bottom:412.830667pt;}
.yce{bottom:413.005333pt;}
.y107{bottom:413.162667pt;}
.y6f{bottom:418.808000pt;}
.yb3{bottom:420.800000pt;}
.y30{bottom:421.465333pt;}
.y14{bottom:425.221333pt;}
.y48{bottom:426.778667pt;}
.yfa{bottom:428.770667pt;}
.ycd{bottom:428.945333pt;}
.y115{bottom:439.729333pt;}
.y106{bottom:444.710667pt;}
.ycc{bottom:444.885333pt;}
.y83{bottom:447.700000pt;}
.yb2{bottom:449.692000pt;}
.y2f{bottom:450.356000pt;}
.y13{bottom:454.112000pt;}
.y47{bottom:455.669333pt;}
.yf9{bottom:457.662667pt;}
.ycb{bottom:460.825333pt;}
.y114{bottom:468.621333pt;}
.y82{bottom:476.592000pt;}
.yca{bottom:476.766667pt;}
.y5e{bottom:479.248000pt;}
.y12{bottom:483.004000pt;}
.y105{bottom:484.229333pt;}
.y8e{bottom:484.561333pt;}
.yb1{bottom:486.554667pt;}
.y2e{bottom:487.218667pt;}
.y46{bottom:492.532000pt;}
.yc9{bottom:492.706667pt;}
.yf8{bottom:494.524000pt;}
.y81{bottom:505.482667pt;}
.y5d{bottom:508.140000pt;}
.yc8{bottom:508.646667pt;}
.y11{bottom:511.896000pt;}
.y104{bottom:513.121333pt;}
.y8d{bottom:513.453333pt;}
.yb0{bottom:515.445333pt;}
.y2d{bottom:516.109333pt;}
.y45{bottom:521.422667pt;}
.ye6{bottom:523.416000pt;}
.yc7{bottom:524.586667pt;}
.y113{bottom:534.374667pt;}
.yc6{bottom:540.526667pt;}
.y10{bottom:540.786667pt;}
.y103{bottom:542.013333pt;}
.y80{bottom:542.345333pt;}
.y2c{bottom:545.001333pt;}
.y44{bottom:550.314667pt;}
.yaf{bottom:552.308000pt;}
.yc5{bottom:556.466667pt;}
.ye5{bottom:560.277333pt;}
.y112{bottom:563.266667pt;}
.yf{bottom:569.678667pt;}
.y102{bottom:570.904000pt;}
.y7f{bottom:571.236000pt;}
.yc4{bottom:572.408000pt;}
.y2b{bottom:573.893333pt;}
.yc3{bottom:577.229333pt;}
.y43{bottom:579.206667pt;}
.yae{bottom:589.169333pt;}
.y121{bottom:592.158667pt;}
.ye4{bottom:597.140000pt;}
.ye{bottom:598.570667pt;}
.y101{bottom:599.796000pt;}
.y7e{bottom:600.128000pt;}
.y2a{bottom:602.785333pt;}
.y6e{bottom:608.098667pt;}
.y42{bottom:616.068000pt;}
.yc2{bottom:618.061333pt;}
.yad{bottom:626.030667pt;}
.yd{bottom:627.462667pt;}
.y100{bottom:628.688000pt;}
.y7d{bottom:629.020000pt;}
.y29{bottom:631.676000pt;}
.yf0{bottom:634.001333pt;}
.y96{bottom:634.333333pt;}
.y6d{bottom:636.989333pt;}
.y41{bottom:644.960000pt;}
.yc1{bottom:654.922667pt;}
.yff{bottom:657.580000pt;}
.y120{bottom:657.912000pt;}
.y5c{bottom:660.568000pt;}
.yac{bottom:662.893333pt;}
.y28{bottom:663.225333pt;}
.yc{bottom:664.324000pt;}
.y6c{bottom:665.881333pt;}
.yef{bottom:670.862667pt;}
.y40{bottom:673.852000pt;}
.yc0{bottom:683.814667pt;}
.yfe{bottom:689.128000pt;}
.y5b{bottom:689.460000pt;}
.ye3{bottom:691.784000pt;}
.y95{bottom:692.116000pt;}
.y6b{bottom:694.773333pt;}
.yab{bottom:699.754667pt;}
.yb{bottom:701.185333pt;}
.y27{bottom:702.744000pt;}
.ybf{bottom:720.676000pt;}
.y7c{bottom:723.665333pt;}
.ya{bottom:725.690667pt;}
.y5a{bottom:726.321333pt;}
.yaa{bottom:728.646667pt;}
.y26{bottom:731.634667pt;}
.yee{bottom:736.616000pt;}
.y7b{bottom:752.556000pt;}
.y59{bottom:755.213333pt;}
.y9{bottom:757.258667pt;}
.ybe{bottom:757.537333pt;}
.y3f{bottom:760.526667pt;}
.ya9{bottom:765.508000pt;}
.y25{bottom:768.497333pt;}
.yf7{bottom:773.478667pt;}
.y7a{bottom:781.448000pt;}
.y58{bottom:784.105333pt;}
.y8{bottom:788.650667pt;}
.y3e{bottom:789.418667pt;}
.ybd{bottom:794.400000pt;}
.y24{bottom:797.388000pt;}
.ya8{bottom:802.369333pt;}
.y57{bottom:812.996000pt;}
.y6a{bottom:818.309333pt;}
.y7{bottom:826.280000pt;}
.ya7{bottom:831.261333pt;}
.yf6{bottom:839.232000pt;}
.y56{bottom:841.888000pt;}
.y69{bottom:847.201333pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.ya6{bottom:868.122667pt;}
.y55{bottom:870.780000pt;}
.y68{bottom:876.093333pt;}
.y22{bottom:884.064000pt;}
.y54{bottom:902.328000pt;}
.y67{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y21{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;}
.h7{height:39.850560pt;}
.h4{height:44.887678pt;}
.h3{height:47.820680pt;}
.h2{height:53.865199pt;}
.h5{height:56.615773pt;}
.h8{height:56.621107pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:92.670667pt;}
.xc{left:94.488000pt;}
.x4{left:101.976000pt;}
.xe{left:107.772000pt;}
.xf{left:114.413333pt;}
.x6{left:115.930667pt;}
.x12{left:127.697333pt;}
.x11{left:134.338667pt;}
.x14{left:141.197333pt;}
.x13{left:142.488000pt;}
.x5{left:264.500000pt;}
.x7{left:287.682667pt;}
.xb{left:300.258667pt;}
.x8{left:448.137333pt;}
.xa{left:458.084000pt;}
.x9{left:485.852000pt;}
.x3{left:504.830667pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.xd{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; }
  