
    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_db1b46c3750bb33c9917e56f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_2688e12e2048b237d0351432.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_cebfb9de7ede7cea32270228.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m22{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);}
.m18{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);}
.m9{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);}
.m7{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);}
.m1c{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);}
.m13{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);}
.m1e{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);}
.m1{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);}
.m24{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);}
.m21{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);}
.md{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);}
.m10{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.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);}
.m23{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);}
.m1f{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);}
.m25{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);}
.m5{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);}
.m16{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);}
.mc{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);}
.m17{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);}
.m27{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);}
.me{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);}
.mf{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);}
.m28{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);}
.m1d{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);}
.ma{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);}
.m11{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);}
.mb{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);}
.m6{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);}
.m1a{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);}
.m1b{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);}
.m19{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);}
.m26{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);}
.m8{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);}
.m15{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14{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.040000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986800px;}
.ls2{letter-spacing:1477.226155px;}
.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;}
}
.ws5d{word-spacing:-14.943900px;}
.ws3{word-spacing:-11.955150px;}
.ws58{word-spacing:-1.075961px;}
.ws2c{word-spacing:-0.896634px;}
.ws6a{word-spacing:-0.836858px;}
.ws53{word-spacing:-0.597756px;}
.ws68{word-spacing:-0.418429px;}
.ws80{word-spacing:-0.239102px;}
.ws76{word-spacing:-0.179327px;}
.ws6b{word-spacing:-0.059776px;}
.ws37{word-spacing:0.000000px;}
.ws5a{word-spacing:0.059776px;}
.ws3d{word-spacing:0.298878px;}
.ws52{word-spacing:0.358654px;}
.ws60{word-spacing:0.418429px;}
.ws2d{word-spacing:0.597756px;}
.ws7b{word-spacing:0.777083px;}
.ws1d{word-spacing:0.896634px;}
.ws48{word-spacing:1.075961px;}
.ws15{word-spacing:1.195512px;}
.ws5c{word-spacing:1.374839px;}
.ws47{word-spacing:1.494390px;}
.ws3a{word-spacing:1.613941px;}
.ws31{word-spacing:1.673717px;}
.ws7a{word-spacing:1.721549px;}
.ws46{word-spacing:1.793268px;}
.ws2b{word-spacing:1.853044px;}
.ws5f{word-spacing:1.912819px;}
.wsa{word-spacing:1.936742px;}
.ws5{word-spacing:1.960645px;}
.ws49{word-spacing:1.972595px;}
.ws7{word-spacing:1.990541px;}
.ws17{word-spacing:2.032370px;}
.wsb{word-spacing:2.044339px;}
.ws40{word-spacing:2.092146px;}
.ws2{word-spacing:2.104106px;}
.ws3c{word-spacing:2.151922px;}
.ws9{word-spacing:2.205734px;}
.ws10{word-spacing:2.211697px;}
.ws1e{word-spacing:2.271473px;}
.wsd{word-spacing:2.313331px;}
.ws23{word-spacing:2.331248px;}
.wse{word-spacing:2.367130px;}
.ws28{word-spacing:2.391024px;}
.ws1c{word-spacing:2.450800px;}
.ws22{word-spacing:2.510575px;}
.ws25{word-spacing:2.570351px;}
.ws35{word-spacing:2.630126px;}
.ws1a{word-spacing:2.689902px;}
.ws54{word-spacing:2.749678px;}
.ws13{word-spacing:2.809453px;}
.ws29{word-spacing:2.869229px;}
.ws96{word-spacing:2.929004px;}
.ws1{word-spacing:2.940979px;}
.ws3e{word-spacing:3.048556px;}
.ws14{word-spacing:3.108331px;}
.ws2a{word-spacing:3.168107px;}
.ws7e{word-spacing:3.287658px;}
.ws83{word-spacing:3.347434px;}
.ws72{word-spacing:3.466985px;}
.ws16{word-spacing:3.526760px;}
.ws39{word-spacing:3.529165px;}
.ws98{word-spacing:3.586536px;}
.wsc{word-spacing:3.658291px;}
.ws6f{word-spacing:3.706087px;}
.ws61{word-spacing:3.765863px;}
.ws77{word-spacing:3.885414px;}
.ws2f{word-spacing:4.004965px;}
.ws7d{word-spacing:4.124516px;}
.ws36{word-spacing:4.244068px;}
.ws4c{word-spacing:4.303843px;}
.ws7f{word-spacing:4.363619px;}
.ws3b{word-spacing:4.483170px;}
.ws57{word-spacing:4.542946px;}
.ws32{word-spacing:4.662497px;}
.ws59{word-spacing:4.901599px;}
.ws19{word-spacing:4.961375px;}
.ws79{word-spacing:5.080926px;}
.ws0{word-spacing:5.082975px;}
.ws69{word-spacing:5.200477px;}
.ws4{word-spacing:5.308087px;}
.ws34{word-spacing:5.320028px;}
.ws2e{word-spacing:5.379804px;}
.ws51{word-spacing:5.559131px;}
.ws6c{word-spacing:5.798233px;}
.ws4b{word-spacing:5.858009px;}
.ws8f{word-spacing:5.917784px;}
.ws81{word-spacing:5.977560px;}
.ws33{word-spacing:6.037336px;}
.ws5e{word-spacing:6.097111px;}
.ws41{word-spacing:6.216662px;}
.ws4a{word-spacing:6.455765px;}
.ws12{word-spacing:6.515540px;}
.ws4f{word-spacing:6.575316px;}
.ws74{word-spacing:6.635092px;}
.ws88{word-spacing:6.754643px;}
.ws99{word-spacing:6.814418px;}
.ws11{word-spacing:6.874194px;}
.ws75{word-spacing:7.053521px;}
.ws6{word-spacing:7.262784px;}
.ws21{word-spacing:7.352399px;}
.ws45{word-spacing:7.412174px;}
.ws44{word-spacing:7.591501px;}
.ws24{word-spacing:7.711052px;}
.ws8{word-spacing:7.746970px;}
.ws8a{word-spacing:7.830604px;}
.ws73{word-spacing:7.890379px;}
.ws1f{word-spacing:8.009930px;}
.ws8b{word-spacing:8.129482px;}
.ws95{word-spacing:8.189257px;}
.ws9c{word-spacing:8.308808px;}
.ws5b{word-spacing:8.368584px;}
.ws50{word-spacing:8.727238px;}
.ws26{word-spacing:8.787013px;}
.ws82{word-spacing:8.846789px;}
.ws27{word-spacing:9.145667px;}
.ws43{word-spacing:9.205442px;}
.ws42{word-spacing:9.265218px;}
.ws30{word-spacing:9.384769px;}
.ws20{word-spacing:9.504320px;}
.ws4d{word-spacing:9.862974px;}
.ws1b{word-spacing:9.922750px;}
.ws78{word-spacing:10.042301px;}
.ws87{word-spacing:10.281403px;}
.ws7c{word-spacing:10.400954px;}
.ws3f{word-spacing:10.520506px;}
.ws71{word-spacing:10.640057px;}
.ws66{word-spacing:10.879159px;}
.ws18{word-spacing:10.938935px;}
.ws91{word-spacing:11.297588px;}
.ws9e{word-spacing:11.596466px;}
.ws84{word-spacing:11.835569px;}
.ws6e{word-spacing:12.134447px;}
.ws4e{word-spacing:12.253998px;}
.ws62{word-spacing:13.246306px;}
.ws97{word-spacing:13.389734px;}
.ws94{word-spacing:13.688612px;}
.ws9a{word-spacing:14.286368px;}
.ws8e{word-spacing:14.405920px;}
.ws67{word-spacing:14.704798px;}
.ws38{word-spacing:14.902157px;}
.ws55{word-spacing:15.242778px;}
.ws56{word-spacing:15.840534px;}
.ws70{word-spacing:16.557841px;}
.ws9f{word-spacing:16.796944px;}
.ws89{word-spacing:17.036046px;}
.ws86{word-spacing:17.753353px;}
.ws9d{word-spacing:18.291334px;}
.ws90{word-spacing:21.280114px;}
.wsf{word-spacing:21.519300px;}
.ws6d{word-spacing:22.057196px;}
.ws92{word-spacing:23.730913px;}
.ws8c{word-spacing:25.045976px;}
.ws9b{word-spacing:26.062162px;}
.ws64{word-spacing:28.154308px;}
.ws93{word-spacing:29.170493px;}
.ws85{word-spacing:34.550297px;}
.ws8d{word-spacing:37.359750px;}
.ws65{word-spacing:58.878966px;}
.ws63{word-spacing:86.913722px;}
._0{margin-left:-13.761225px;}
._1d{margin-left:-7.992146px;}
._1{margin-left:-6.818625px;}
._7{margin-left:-4.841856px;}
._3{margin-left:-3.347325px;}
._4{margin-left:-1.936742px;}
._b{width:1.667750px;}
._2{width:3.967200px;}
._5{width:15.087290px;}
._6{width:17.454519px;}
._1e{width:19.004434px;}
._8{width:20.562813px;}
._9{width:22.218739px;}
._c{width:23.694952px;}
._e{width:25.225303px;}
._10{width:26.540366px;}
._19{width:27.979187px;}
._13{width:29.019296px;}
._f{width:30.485447px;}
._14{width:32.697253px;}
._d{width:34.418816px;}
._a{width:36.206323px;}
._12{width:37.957506px;}
._11{width:39.870325px;}
._17{width:41.185388px;}
._15{width:43.038600px;}
._16{width:44.174168px;}
._21{width:48.956216px;}
._20{width:55.830410px;}
._1c{width:56.906371px;}
._1b{width:58.404859px;}
._22{width:65.334731px;}
._1f{width:78.604914px;}
._18{width:762.378002px;}
._1a{width:1476.694391px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y95{bottom:63.780000px;}
.y31{bottom:106.299000px;}
.y30{bottom:125.128500px;}
.y2f{bottom:143.958000px;}
.yd8{bottom:158.358000px;}
.y2e{bottom:162.787500px;}
.y2d{bottom:181.617000px;}
.y2c{bottom:200.446500px;}
.yd7{bottom:214.776000px;}
.y2b{bottom:219.276000px;}
.y2a{bottom:238.105500px;}
.yd6{bottom:248.007000px;}
.y29{bottom:256.935000px;}
.y28{bottom:275.764500px;}
.y27{bottom:294.594000px;}
.yd5{bottom:304.423500px;}
.y26{bottom:313.423500px;}
.y44{bottom:318.163500px;}
.yd4{bottom:323.253000px;}
.y25{bottom:332.253000px;}
.y43{bottom:336.993000px;}
.yd3{bottom:342.082500px;}
.yb0{bottom:347.899500px;}
.y24{bottom:351.082500px;}
.y94{bottom:351.898500px;}
.y42{bottom:355.822500px;}
.yd2{bottom:360.912000px;}
.yaf{bottom:366.729000px;}
.y23{bottom:369.912000px;}
.y93{bottom:370.728000px;}
.y41{bottom:374.652000px;}
.yae{bottom:385.558500px;}
.y10e{bottom:388.413000px;}
.y6c{bottom:388.741500px;}
.y92{bottom:389.557500px;}
.y22{bottom:391.096500px;}
.y40{bottom:393.481500px;}
.yd1{bottom:394.143000px;}
.y10d{bottom:407.242500px;}
.y6b{bottom:407.571000px;}
.y91{bottom:408.387000px;}
.y21{bottom:409.926000px;}
.yad{bottom:410.964000px;}
.y3f{bottom:412.311000px;}
.y10c{bottom:426.072000px;}
.y6a{bottom:426.400500px;}
.y90{bottom:427.216500px;}
.y20{bottom:428.754000px;}
.yac{bottom:429.793500px;}
.y3e{bottom:431.139000px;}
.y10b{bottom:444.901500px;}
.yf6{bottom:445.228500px;}
.y8f{bottom:446.046000px;}
.y1f{bottom:447.583500px;}
.yab{bottom:448.623000px;}
.y69{bottom:449.311500px;}
.y3d{bottom:449.968500px;}
.yd0{bottom:450.561000px;}
.y10a{bottom:463.731000px;}
.yf5{bottom:464.058000px;}
.y8e{bottom:464.875500px;}
.y1e{bottom:466.413000px;}
.y68{bottom:468.141000px;}
.y3c{bottom:468.798000px;}
.yaa{bottom:474.027000px;}
.y109{bottom:482.560500px;}
.yf4{bottom:482.887500px;}
.y8d{bottom:483.705000px;}
.ycf{bottom:483.790500px;}
.y1d{bottom:485.242500px;}
.y67{bottom:486.970500px;}
.y3b{bottom:487.627500px;}
.ya9{bottom:492.856500px;}
.y108{bottom:501.390000px;}
.yf3{bottom:501.717000px;}
.y8c{bottom:502.534500px;}
.y1c{bottom:504.072000px;}
.y66{bottom:505.800000px;}
.y3a{bottom:506.457000px;}
.ya8{bottom:511.686000px;}
.y107{bottom:520.219500px;}
.yf2{bottom:520.546500px;}
.y8b{bottom:521.364000px;}
.y1b{bottom:522.901500px;}
.y65{bottom:524.629500px;}
.y39{bottom:525.286500px;}
.yce{bottom:528.681000px;}
.y106{bottom:539.049000px;}
.yf1{bottom:539.376000px;}
.y8a{bottom:540.193500px;}
.y1a{bottom:541.731000px;}
.y64{bottom:543.459000px;}
.y38{bottom:544.116000px;}
.ya7{bottom:555.921000px;}
.y105{bottom:557.878500px;}
.yf0{bottom:558.205500px;}
.y89{bottom:559.023000px;}
.y19{bottom:560.560500px;}
.y63{bottom:562.287000px;}
.y37{bottom:562.945500px;}
.ya6{bottom:574.750500px;}
.y104{bottom:576.708000px;}
.yef{bottom:577.035000px;}
.y88{bottom:577.852500px;}
.y18{bottom:579.390000px;}
.y62{bottom:581.116500px;}
.y36{bottom:581.775000px;}
.ycd{bottom:592.984500px;}
.ya5{bottom:593.578500px;}
.y103{bottom:595.537500px;}
.yee{bottom:595.864500px;}
.y87{bottom:596.682000px;}
.y17{bottom:598.219500px;}
.y61{bottom:599.946000px;}
.y35{bottom:600.604500px;}
.ycc{bottom:611.814000px;}
.y102{bottom:614.367000px;}
.yed{bottom:614.694000px;}
.y86{bottom:615.511500px;}
.y16{bottom:617.049000px;}
.y60{bottom:618.775500px;}
.ya4{bottom:618.984000px;}
.ycb{bottom:630.643500px;}
.y101{bottom:633.196500px;}
.yec{bottom:633.523500px;}
.y85{bottom:634.341000px;}
.y15{bottom:635.878500px;}
.y5f{bottom:637.605000px;}
.ya3{bottom:637.813500px;}
.y34{bottom:643.003500px;}
.yca{bottom:649.473000px;}
.y100{bottom:652.026000px;}
.yeb{bottom:652.353000px;}
.y84{bottom:653.170500px;}
.y5e{bottom:656.434500px;}
.ya2{bottom:656.643000px;}
.y33{bottom:661.833000px;}
.yc9{bottom:668.302500px;}
.yff{bottom:670.855500px;}
.yea{bottom:671.182500px;}
.y83{bottom:672.000000px;}
.y5d{bottom:675.264000px;}
.y14{bottom:675.835500px;}
.y32{bottom:680.662500px;}
.ya1{bottom:682.047000px;}
.yc8{bottom:687.132000px;}
.yfe{bottom:689.685000px;}
.ye9{bottom:690.012000px;}
.y82{bottom:690.829500px;}
.y5c{bottom:694.093500px;}
.ya0{bottom:700.876500px;}
.yc7{bottom:705.961500px;}
.yfd{bottom:708.514500px;}
.ye8{bottom:708.841500px;}
.y81{bottom:709.659000px;}
.y5b{bottom:712.923000px;}
.y9f{bottom:719.706000px;}
.yc6{bottom:724.791000px;}
.yfc{bottom:727.344000px;}
.ye7{bottom:727.671000px;}
.y80{bottom:728.488500px;}
.y5a{bottom:731.752500px;}
.y13{bottom:733.783500px;}
.y9e{bottom:738.535500px;}
.yc5{bottom:743.620500px;}
.yfb{bottom:746.173500px;}
.ye6{bottom:746.500500px;}
.y7f{bottom:747.316500px;}
.y59{bottom:750.582000px;}
.yc4{bottom:762.450000px;}
.y9d{bottom:763.941000px;}
.yfa{bottom:765.003000px;}
.ye5{bottom:765.330000px;}
.y7e{bottom:766.146000px;}
.y12{bottom:768.304500px;}
.y58{bottom:769.411500px;}
.yc3{bottom:781.278000px;}
.y9c{bottom:782.770500px;}
.yf9{bottom:783.832500px;}
.ye4{bottom:784.159500px;}
.y7d{bottom:784.975500px;}
.y11{bottom:785.565000px;}
.y57{bottom:788.241000px;}
.yc2{bottom:800.107500px;}
.y9b{bottom:801.600000px;}
.yf8{bottom:802.662000px;}
.y10{bottom:802.825500px;}
.ye3{bottom:802.989000px;}
.y7c{bottom:803.805000px;}
.y56{bottom:807.070500px;}
.yc1{bottom:818.937000px;}
.yf{bottom:820.086000px;}
.y9a{bottom:820.429500px;}
.yf7{bottom:821.491500px;}
.y7b{bottom:822.634500px;}
.y55{bottom:825.900000px;}
.ye{bottom:837.346500px;}
.ye2{bottom:838.989000px;}
.yc0{bottom:840.321000px;}
.y7a{bottom:841.464000px;}
.y54{bottom:844.729500px;}
.y99{bottom:845.833500px;}
.yd{bottom:854.605500px;}
.ybf{bottom:859.150500px;}
.y79{bottom:860.293500px;}
.y98{bottom:864.663000px;}
.y53{bottom:867.640500px;}
.yc{bottom:871.866000px;}
.ybe{bottom:877.980000px;}
.y78{bottom:879.123000px;}
.y52{bottom:886.470000px;}
.yb{bottom:889.126500px;}
.y97{bottom:890.068500px;}
.ybd{bottom:896.808000px;}
.y51{bottom:905.299500px;}
.ya{bottom:906.387000px;}
.y96{bottom:908.898000px;}
.ye1{bottom:909.787500px;}
.ybc{bottom:915.637500px;}
.y77{bottom:916.218000px;}
.y9{bottom:923.647500px;}
.y50{bottom:924.129000px;}
.ybb{bottom:934.467000px;}
.ye0{bottom:938.691000px;}
.y4f{bottom:942.958500px;}
.y8{bottom:950.922000px;}
.yba{bottom:953.296500px;}
.y4e{bottom:961.788000px;}
.y76{bottom:971.310000px;}
.yb9{bottom:972.126000px;}
.y4d{bottom:980.617500px;}
.ydf{bottom:982.777500px;}
.y75{bottom:990.139500px;}
.yb8{bottom:990.955500px;}
.y7{bottom:994.110000px;}
.y4c{bottom:999.447000px;}
.yde{bottom:1001.607000px;}
.y74{bottom:1008.969000px;}
.y6{bottom:1009.017000px;}
.yb7{bottom:1009.785000px;}
.y4b{bottom:1018.276500px;}
.y5{bottom:1023.924000px;}
.y73{bottom:1027.798500px;}
.y4{bottom:1028.263500px;}
.yb6{bottom:1028.614500px;}
.ydd{bottom:1030.510500px;}
.y4a{bottom:1037.106000px;}
.y72{bottom:1046.628000px;}
.yb5{bottom:1047.444000px;}
.y49{bottom:1055.935500px;}
.y3{bottom:1057.303500px;}
.y71{bottom:1065.457500px;}
.yb4{bottom:1066.273500px;}
.ydc{bottom:1074.595500px;}
.y48{bottom:1074.765000px;}
.y70{bottom:1084.287000px;}
.yb3{bottom:1085.103000px;}
.ydb{bottom:1093.425000px;}
.y47{bottom:1093.594500px;}
.y6f{bottom:1103.115000px;}
.yb2{bottom:1103.932500px;}
.y2{bottom:1104.978000px;}
.yda{bottom:1112.254500px;}
.y6e{bottom:1121.944500px;}
.yb1{bottom:1122.762000px;}
.y46{bottom:1136.764500px;}
.yd9{bottom:1141.158000px;}
.y6d{bottom:1141.591500px;}
.y1{bottom:1144.206000px;}
.y45{bottom:1193.356500px;}
.h4{height:25.930829px;}
.h5{height:34.813397px;}
.hb{height:38.896243px;}
.h7{height:39.165235px;}
.ha{height:39.434227px;}
.h6{height:43.217759px;}
.h9{height:43.516637px;}
.hc{height:43.815515px;}
.hd{height:51.861658px;}
.h8{height:62.233816px;}
.h3{height:65.205235px;}
.h2{height:89.633925px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.159500px;}
.xe{left:88.779000px;}
.x5{left:90.390000px;}
.x1{left:93.127500px;}
.x12{left:94.603500px;}
.xb{left:99.984000px;}
.xa{left:114.927000px;}
.x9{left:129.871500px;}
.x2{left:187.566000px;}
.x13{left:212.001000px;}
.x6{left:231.520500px;}
.x3{left:244.405500px;}
.x11{left:334.086000px;}
.x7{left:362.973000px;}
.x8{left:417.823500px;}
.xc{left:461.400000px;}
.xd{left:476.344500px;}
.xf{left:502.056000px;}
.x10{left:515.326500px;}
.x14{left:551.142000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654933pt;}
.ls2{letter-spacing:1313.089915pt;}
.ws5d{word-spacing:-13.283467pt;}
.ws3{word-spacing:-10.626800pt;}
.ws58{word-spacing:-0.956410pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws6a{word-spacing:-0.743874pt;}
.ws53{word-spacing:-0.531339pt;}
.ws68{word-spacing:-0.371937pt;}
.ws80{word-spacing:-0.212535pt;}
.ws76{word-spacing:-0.159402pt;}
.ws6b{word-spacing:-0.053134pt;}
.ws37{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.053134pt;}
.ws3d{word-spacing:0.265669pt;}
.ws52{word-spacing:0.318803pt;}
.ws60{word-spacing:0.371937pt;}
.ws2d{word-spacing:0.531339pt;}
.ws7b{word-spacing:0.690740pt;}
.ws1d{word-spacing:0.797008pt;}
.ws48{word-spacing:0.956410pt;}
.ws15{word-spacing:1.062677pt;}
.ws5c{word-spacing:1.222079pt;}
.ws47{word-spacing:1.328347pt;}
.ws3a{word-spacing:1.434614pt;}
.ws31{word-spacing:1.487748pt;}
.ws7a{word-spacing:1.530266pt;}
.ws46{word-spacing:1.594016pt;}
.ws2b{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.700284pt;}
.wsa{word-spacing:1.721549pt;}
.ws5{word-spacing:1.742795pt;}
.ws49{word-spacing:1.753418pt;}
.ws7{word-spacing:1.769370pt;}
.ws17{word-spacing:1.806551pt;}
.wsb{word-spacing:1.817190pt;}
.ws40{word-spacing:1.859685pt;}
.ws2{word-spacing:1.870317pt;}
.ws3c{word-spacing:1.912819pt;}
.ws9{word-spacing:1.960653pt;}
.ws10{word-spacing:1.965953pt;}
.ws1e{word-spacing:2.019087pt;}
.wsd{word-spacing:2.056294pt;}
.ws23{word-spacing:2.072221pt;}
.wse{word-spacing:2.104115pt;}
.ws28{word-spacing:2.125355pt;}
.ws1c{word-spacing:2.178489pt;}
.ws22{word-spacing:2.231622pt;}
.ws25{word-spacing:2.284756pt;}
.ws35{word-spacing:2.337890pt;}
.ws1a{word-spacing:2.391024pt;}
.ws54{word-spacing:2.444158pt;}
.ws13{word-spacing:2.497292pt;}
.ws29{word-spacing:2.550426pt;}
.ws96{word-spacing:2.603559pt;}
.ws1{word-spacing:2.614204pt;}
.ws3e{word-spacing:2.709827pt;}
.ws14{word-spacing:2.762961pt;}
.ws2a{word-spacing:2.816095pt;}
.ws7e{word-spacing:2.922363pt;}
.ws83{word-spacing:2.975497pt;}
.ws72{word-spacing:3.081764pt;}
.ws16{word-spacing:3.134898pt;}
.ws39{word-spacing:3.137036pt;}
.ws98{word-spacing:3.188032pt;}
.wsc{word-spacing:3.251814pt;}
.ws6f{word-spacing:3.294300pt;}
.ws61{word-spacing:3.347434pt;}
.ws77{word-spacing:3.453701pt;}
.ws2f{word-spacing:3.559969pt;}
.ws7d{word-spacing:3.666237pt;}
.ws36{word-spacing:3.772505pt;}
.ws4c{word-spacing:3.825638pt;}
.ws7f{word-spacing:3.878772pt;}
.ws3b{word-spacing:3.985040pt;}
.ws57{word-spacing:4.038174pt;}
.ws32{word-spacing:4.144442pt;}
.ws59{word-spacing:4.356977pt;}
.ws19{word-spacing:4.410111pt;}
.ws79{word-spacing:4.516379pt;}
.ws0{word-spacing:4.518200pt;}
.ws69{word-spacing:4.622646pt;}
.ws4{word-spacing:4.718299pt;}
.ws34{word-spacing:4.728914pt;}
.ws2e{word-spacing:4.782048pt;}
.ws51{word-spacing:4.941450pt;}
.ws6c{word-spacing:5.153985pt;}
.ws4b{word-spacing:5.207119pt;}
.ws8f{word-spacing:5.260253pt;}
.ws81{word-spacing:5.313387pt;}
.ws33{word-spacing:5.366521pt;}
.ws5e{word-spacing:5.419654pt;}
.ws41{word-spacing:5.525922pt;}
.ws4a{word-spacing:5.738458pt;}
.ws12{word-spacing:5.791591pt;}
.ws4f{word-spacing:5.844725pt;}
.ws74{word-spacing:5.897859pt;}
.ws88{word-spacing:6.004127pt;}
.ws99{word-spacing:6.057261pt;}
.ws11{word-spacing:6.110395pt;}
.ws75{word-spacing:6.269796pt;}
.ws6{word-spacing:6.455808pt;}
.ws21{word-spacing:6.535466pt;}
.ws45{word-spacing:6.588599pt;}
.ws44{word-spacing:6.748001pt;}
.ws24{word-spacing:6.854269pt;}
.ws8{word-spacing:6.886195pt;}
.ws8a{word-spacing:6.960537pt;}
.ws73{word-spacing:7.013670pt;}
.ws1f{word-spacing:7.119938pt;}
.ws8b{word-spacing:7.226206pt;}
.ws95{word-spacing:7.279340pt;}
.ws9c{word-spacing:7.385607pt;}
.ws5b{word-spacing:7.438741pt;}
.ws50{word-spacing:7.757545pt;}
.ws26{word-spacing:7.810678pt;}
.ws82{word-spacing:7.863812pt;}
.ws27{word-spacing:8.129482pt;}
.ws43{word-spacing:8.182615pt;}
.ws42{word-spacing:8.235749pt;}
.ws30{word-spacing:8.342017pt;}
.ws20{word-spacing:8.448285pt;}
.ws4d{word-spacing:8.767088pt;}
.ws1b{word-spacing:8.820222pt;}
.ws78{word-spacing:8.926490pt;}
.ws87{word-spacing:9.139025pt;}
.ws7c{word-spacing:9.245293pt;}
.ws3f{word-spacing:9.351561pt;}
.ws71{word-spacing:9.457828pt;}
.ws66{word-spacing:9.670364pt;}
.ws18{word-spacing:9.723498pt;}
.ws91{word-spacing:10.042301pt;}
.ws9e{word-spacing:10.307970pt;}
.ws84{word-spacing:10.520506pt;}
.ws6e{word-spacing:10.786175pt;}
.ws4e{word-spacing:10.892443pt;}
.ws62{word-spacing:11.774494pt;}
.ws97{word-spacing:11.901986pt;}
.ws94{word-spacing:12.167655pt;}
.ws9a{word-spacing:12.698994pt;}
.ws8e{word-spacing:12.805262pt;}
.ws67{word-spacing:13.070931pt;}
.ws38{word-spacing:13.246362pt;}
.ws55{word-spacing:13.549136pt;}
.ws56{word-spacing:14.080475pt;}
.ws70{word-spacing:14.718081pt;}
.ws9f{word-spacing:14.930617pt;}
.ws89{word-spacing:15.143152pt;}
.ws86{word-spacing:15.780758pt;}
.ws9d{word-spacing:16.258963pt;}
.ws90{word-spacing:18.915657pt;}
.wsf{word-spacing:19.128267pt;}
.ws6d{word-spacing:19.606397pt;}
.ws92{word-spacing:21.094145pt;}
.ws8c{word-spacing:22.263090pt;}
.ws9b{word-spacing:23.166366pt;}
.ws64{word-spacing:25.026051pt;}
.ws93{word-spacing:25.929327pt;}
.ws85{word-spacing:30.711375pt;}
.ws8d{word-spacing:33.208667pt;}
.ws65{word-spacing:52.336859pt;}
.ws63{word-spacing:77.256642pt;}
._0{margin-left:-12.232200pt;}
._1d{margin-left:-7.104130pt;}
._1{margin-left:-6.061000pt;}
._7{margin-left:-4.303872pt;}
._3{margin-left:-2.975400pt;}
._4{margin-left:-1.721549pt;}
._b{width:1.482445pt;}
._2{width:3.526400pt;}
._5{width:13.410925pt;}
._6{width:15.515128pt;}
._1e{width:16.892830pt;}
._8{width:18.278056pt;}
._9{width:19.749990pt;}
._c{width:21.062180pt;}
._e{width:22.422492pt;}
._10{width:23.591437pt;}
._19{width:24.870389pt;}
._13{width:25.794930pt;}
._f{width:27.098175pt;}
._14{width:29.064225pt;}
._d{width:30.594503pt;}
._a{width:32.183398pt;}
._12{width:33.740005pt;}
._11{width:35.440289pt;}
._17{width:36.609234pt;}
._15{width:38.256533pt;}
._16{width:39.265927pt;}
._21{width:43.516637pt;}
._20{width:49.627031pt;}
._1c{width:50.583441pt;}
._1b{width:51.915430pt;}
._22{width:58.075316pt;}
._1f{width:69.871035pt;}
._18{width:677.669335pt;}
._1a{width:1312.617237pt;}
.fs3{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:56.693333pt;}
.y31{bottom:94.488000pt;}
.y30{bottom:111.225333pt;}
.y2f{bottom:127.962667pt;}
.yd8{bottom:140.762667pt;}
.y2e{bottom:144.700000pt;}
.y2d{bottom:161.437333pt;}
.y2c{bottom:178.174667pt;}
.yd7{bottom:190.912000pt;}
.y2b{bottom:194.912000pt;}
.y2a{bottom:211.649333pt;}
.yd6{bottom:220.450667pt;}
.y29{bottom:228.386667pt;}
.y28{bottom:245.124000pt;}
.y27{bottom:261.861333pt;}
.yd5{bottom:270.598667pt;}
.y26{bottom:278.598667pt;}
.y44{bottom:282.812000pt;}
.yd4{bottom:287.336000pt;}
.y25{bottom:295.336000pt;}
.y43{bottom:299.549333pt;}
.yd3{bottom:304.073333pt;}
.yb0{bottom:309.244000pt;}
.y24{bottom:312.073333pt;}
.y94{bottom:312.798667pt;}
.y42{bottom:316.286667pt;}
.yd2{bottom:320.810667pt;}
.yaf{bottom:325.981333pt;}
.y23{bottom:328.810667pt;}
.y93{bottom:329.536000pt;}
.y41{bottom:333.024000pt;}
.yae{bottom:342.718667pt;}
.y10e{bottom:345.256000pt;}
.y6c{bottom:345.548000pt;}
.y92{bottom:346.273333pt;}
.y22{bottom:347.641333pt;}
.y40{bottom:349.761333pt;}
.yd1{bottom:350.349333pt;}
.y10d{bottom:361.993333pt;}
.y6b{bottom:362.285333pt;}
.y91{bottom:363.010667pt;}
.y21{bottom:364.378667pt;}
.yad{bottom:365.301333pt;}
.y3f{bottom:366.498667pt;}
.y10c{bottom:378.730667pt;}
.y6a{bottom:379.022667pt;}
.y90{bottom:379.748000pt;}
.y20{bottom:381.114667pt;}
.yac{bottom:382.038667pt;}
.y3e{bottom:383.234667pt;}
.y10b{bottom:395.468000pt;}
.yf6{bottom:395.758667pt;}
.y8f{bottom:396.485333pt;}
.y1f{bottom:397.852000pt;}
.yab{bottom:398.776000pt;}
.y69{bottom:399.388000pt;}
.y3d{bottom:399.972000pt;}
.yd0{bottom:400.498667pt;}
.y10a{bottom:412.205333pt;}
.yf5{bottom:412.496000pt;}
.y8e{bottom:413.222667pt;}
.y1e{bottom:414.589333pt;}
.y68{bottom:416.125333pt;}
.y3c{bottom:416.709333pt;}
.yaa{bottom:421.357333pt;}
.y109{bottom:428.942667pt;}
.yf4{bottom:429.233333pt;}
.y8d{bottom:429.960000pt;}
.ycf{bottom:430.036000pt;}
.y1d{bottom:431.326667pt;}
.y67{bottom:432.862667pt;}
.y3b{bottom:433.446667pt;}
.ya9{bottom:438.094667pt;}
.y108{bottom:445.680000pt;}
.yf3{bottom:445.970667pt;}
.y8c{bottom:446.697333pt;}
.y1c{bottom:448.064000pt;}
.y66{bottom:449.600000pt;}
.y3a{bottom:450.184000pt;}
.ya8{bottom:454.832000pt;}
.y107{bottom:462.417333pt;}
.yf2{bottom:462.708000pt;}
.y8b{bottom:463.434667pt;}
.y1b{bottom:464.801333pt;}
.y65{bottom:466.337333pt;}
.y39{bottom:466.921333pt;}
.yce{bottom:469.938667pt;}
.y106{bottom:479.154667pt;}
.yf1{bottom:479.445333pt;}
.y8a{bottom:480.172000pt;}
.y1a{bottom:481.538667pt;}
.y64{bottom:483.074667pt;}
.y38{bottom:483.658667pt;}
.ya7{bottom:494.152000pt;}
.y105{bottom:495.892000pt;}
.yf0{bottom:496.182667pt;}
.y89{bottom:496.909333pt;}
.y19{bottom:498.276000pt;}
.y63{bottom:499.810667pt;}
.y37{bottom:500.396000pt;}
.ya6{bottom:510.889333pt;}
.y104{bottom:512.629333pt;}
.yef{bottom:512.920000pt;}
.y88{bottom:513.646667pt;}
.y18{bottom:515.013333pt;}
.y62{bottom:516.548000pt;}
.y36{bottom:517.133333pt;}
.ycd{bottom:527.097333pt;}
.ya5{bottom:527.625333pt;}
.y103{bottom:529.366667pt;}
.yee{bottom:529.657333pt;}
.y87{bottom:530.384000pt;}
.y17{bottom:531.750667pt;}
.y61{bottom:533.285333pt;}
.y35{bottom:533.870667pt;}
.ycc{bottom:543.834667pt;}
.y102{bottom:546.104000pt;}
.yed{bottom:546.394667pt;}
.y86{bottom:547.121333pt;}
.y16{bottom:548.488000pt;}
.y60{bottom:550.022667pt;}
.ya4{bottom:550.208000pt;}
.ycb{bottom:560.572000pt;}
.y101{bottom:562.841333pt;}
.yec{bottom:563.132000pt;}
.y85{bottom:563.858667pt;}
.y15{bottom:565.225333pt;}
.y5f{bottom:566.760000pt;}
.ya3{bottom:566.945333pt;}
.y34{bottom:571.558667pt;}
.yca{bottom:577.309333pt;}
.y100{bottom:579.578667pt;}
.yeb{bottom:579.869333pt;}
.y84{bottom:580.596000pt;}
.y5e{bottom:583.497333pt;}
.ya2{bottom:583.682667pt;}
.y33{bottom:588.296000pt;}
.yc9{bottom:594.046667pt;}
.yff{bottom:596.316000pt;}
.yea{bottom:596.606667pt;}
.y83{bottom:597.333333pt;}
.y5d{bottom:600.234667pt;}
.y14{bottom:600.742667pt;}
.y32{bottom:605.033333pt;}
.ya1{bottom:606.264000pt;}
.yc8{bottom:610.784000pt;}
.yfe{bottom:613.053333pt;}
.ye9{bottom:613.344000pt;}
.y82{bottom:614.070667pt;}
.y5c{bottom:616.972000pt;}
.ya0{bottom:623.001333pt;}
.yc7{bottom:627.521333pt;}
.yfd{bottom:629.790667pt;}
.ye8{bottom:630.081333pt;}
.y81{bottom:630.808000pt;}
.y5b{bottom:633.709333pt;}
.y9f{bottom:639.738667pt;}
.yc6{bottom:644.258667pt;}
.yfc{bottom:646.528000pt;}
.ye7{bottom:646.818667pt;}
.y80{bottom:647.545333pt;}
.y5a{bottom:650.446667pt;}
.y13{bottom:652.252000pt;}
.y9e{bottom:656.476000pt;}
.yc5{bottom:660.996000pt;}
.yfb{bottom:663.265333pt;}
.ye6{bottom:663.556000pt;}
.y7f{bottom:664.281333pt;}
.y59{bottom:667.184000pt;}
.yc4{bottom:677.733333pt;}
.y9d{bottom:679.058667pt;}
.yfa{bottom:680.002667pt;}
.ye5{bottom:680.293333pt;}
.y7e{bottom:681.018667pt;}
.y12{bottom:682.937333pt;}
.y58{bottom:683.921333pt;}
.yc3{bottom:694.469333pt;}
.y9c{bottom:695.796000pt;}
.yf9{bottom:696.740000pt;}
.ye4{bottom:697.030667pt;}
.y7d{bottom:697.756000pt;}
.y11{bottom:698.280000pt;}
.y57{bottom:700.658667pt;}
.yc2{bottom:711.206667pt;}
.y9b{bottom:712.533333pt;}
.yf8{bottom:713.477333pt;}
.y10{bottom:713.622667pt;}
.ye3{bottom:713.768000pt;}
.y7c{bottom:714.493333pt;}
.y56{bottom:717.396000pt;}
.yc1{bottom:727.944000pt;}
.yf{bottom:728.965333pt;}
.y9a{bottom:729.270667pt;}
.yf7{bottom:730.214667pt;}
.y7b{bottom:731.230667pt;}
.y55{bottom:734.133333pt;}
.ye{bottom:744.308000pt;}
.ye2{bottom:745.768000pt;}
.yc0{bottom:746.952000pt;}
.y7a{bottom:747.968000pt;}
.y54{bottom:750.870667pt;}
.y99{bottom:751.852000pt;}
.yd{bottom:759.649333pt;}
.ybf{bottom:763.689333pt;}
.y79{bottom:764.705333pt;}
.y98{bottom:768.589333pt;}
.y53{bottom:771.236000pt;}
.yc{bottom:774.992000pt;}
.ybe{bottom:780.426667pt;}
.y78{bottom:781.442667pt;}
.y52{bottom:787.973333pt;}
.yb{bottom:790.334667pt;}
.y97{bottom:791.172000pt;}
.ybd{bottom:797.162667pt;}
.y51{bottom:804.710667pt;}
.ya{bottom:805.677333pt;}
.y96{bottom:807.909333pt;}
.ye1{bottom:808.700000pt;}
.ybc{bottom:813.900000pt;}
.y77{bottom:814.416000pt;}
.y9{bottom:821.020000pt;}
.y50{bottom:821.448000pt;}
.ybb{bottom:830.637333pt;}
.ye0{bottom:834.392000pt;}
.y4f{bottom:838.185333pt;}
.y8{bottom:845.264000pt;}
.yba{bottom:847.374667pt;}
.y4e{bottom:854.922667pt;}
.y76{bottom:863.386667pt;}
.yb9{bottom:864.112000pt;}
.y4d{bottom:871.660000pt;}
.ydf{bottom:873.580000pt;}
.y75{bottom:880.124000pt;}
.yb8{bottom:880.849333pt;}
.y7{bottom:883.653333pt;}
.y4c{bottom:888.397333pt;}
.yde{bottom:890.317333pt;}
.y74{bottom:896.861333pt;}
.y6{bottom:896.904000pt;}
.yb7{bottom:897.586667pt;}
.y4b{bottom:905.134667pt;}
.y5{bottom:910.154667pt;}
.y73{bottom:913.598667pt;}
.y4{bottom:914.012000pt;}
.yb6{bottom:914.324000pt;}
.ydd{bottom:916.009333pt;}
.y4a{bottom:921.872000pt;}
.y72{bottom:930.336000pt;}
.yb5{bottom:931.061333pt;}
.y49{bottom:938.609333pt;}
.y3{bottom:939.825333pt;}
.y71{bottom:947.073333pt;}
.yb4{bottom:947.798667pt;}
.ydc{bottom:955.196000pt;}
.y48{bottom:955.346667pt;}
.y70{bottom:963.810667pt;}
.yb3{bottom:964.536000pt;}
.ydb{bottom:971.933333pt;}
.y47{bottom:972.084000pt;}
.y6f{bottom:980.546667pt;}
.yb2{bottom:981.273333pt;}
.y2{bottom:982.202667pt;}
.yda{bottom:988.670667pt;}
.y6e{bottom:997.284000pt;}
.yb1{bottom:998.010667pt;}
.y46{bottom:1010.457333pt;}
.yd9{bottom:1014.362667pt;}
.y6d{bottom:1014.748000pt;}
.y1{bottom:1017.072000pt;}
.y45{bottom:1060.761333pt;}
.h4{height:23.049626pt;}
.h5{height:30.945242pt;}
.hb{height:34.574438pt;}
.h7{height:34.813542pt;}
.ha{height:35.052646pt;}
.h6{height:38.415786pt;}
.h9{height:38.681455pt;}
.hc{height:38.947124pt;}
.hd{height:46.099251pt;}
.h8{height:55.318947pt;}
.h3{height:57.960209pt;}
.h2{height:79.674600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.697333pt;}
.xe{left:78.914667pt;}
.x5{left:80.346667pt;}
.x1{left:82.780000pt;}
.x12{left:84.092000pt;}
.xb{left:88.874667pt;}
.xa{left:102.157333pt;}
.x9{left:115.441333pt;}
.x2{left:166.725333pt;}
.x13{left:188.445333pt;}
.x6{left:205.796000pt;}
.x3{left:217.249333pt;}
.x11{left:296.965333pt;}
.x7{left:322.642667pt;}
.x8{left:371.398667pt;}
.xc{left:410.133333pt;}
.xd{left:423.417333pt;}
.xf{left:446.272000pt;}
.x10{left:458.068000pt;}
.x14{left:489.904000pt;}
}




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