
    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_a5c9d9328e288668fba27531.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_762e607cc2743e8a6c9ccb95.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_c9a96b251228fcb17aa4edad.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;}
.m1{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);}
.m11{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);}
.m15{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);}
.m5{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);}
.m27{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);}
.m8{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);}
.m1a{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);}
.m16{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);}
.m25{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);}
.m1c{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);}
.ma{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);}
.mc{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);}
.m14{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);}
.mf{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);}
.m9{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);}
.m23{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);}
.m6{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);}
.m17{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);}
.mb{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);}
.md{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);}
.m1f{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);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m26{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m7{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);}
.m20{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);}
.m1e{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);}
.m22{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);}
.m3{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);}
.m19{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);}
.m21{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);}
.m2{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);}
.m4{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);}
.m13{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986800px;}
.ls1{letter-spacing:2.992800px;}
.ls3{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;}
}
.ws7d{word-spacing:-17.932800px;}
.ws81{word-spacing:-14.943900px;}
.ws5{word-spacing:-11.955150px;}
.ws82{word-spacing:-1.315063px;}
.ws97{word-spacing:-0.956410px;}
.ws7e{word-spacing:-0.657532px;}
.ws64{word-spacing:-0.418429px;}
.ws7a{word-spacing:-0.239102px;}
.ws65{word-spacing:-0.059776px;}
.ws2b{word-spacing:0.000000px;}
.ws9a{word-spacing:0.059776px;}
.ws83{word-spacing:0.119551px;}
.ws78{word-spacing:0.179327px;}
.ws63{word-spacing:0.239102px;}
.ws79{word-spacing:0.298878px;}
.ws62{word-spacing:0.358654px;}
.ws4b{word-spacing:0.418429px;}
.ws2c{word-spacing:0.478205px;}
.ws27{word-spacing:0.717307px;}
.ws11{word-spacing:0.753178px;}
.ws1f{word-spacing:0.836858px;}
.ws60{word-spacing:1.129766px;}
.ws49{word-spacing:1.195512px;}
.ws55{word-spacing:1.291162px;}
.ws67{word-spacing:1.315063px;}
.ws5f{word-spacing:1.338977px;}
.ws38{word-spacing:1.506355px;}
.ws40{word-spacing:1.554166px;}
.ws2e{word-spacing:1.613941px;}
.wsd{word-spacing:1.667750px;}
.ws7f{word-spacing:1.721549px;}
.ws80{word-spacing:1.733492px;}
.ws8{word-spacing:1.829146px;}
.ws54{word-spacing:1.936742px;}
.ws4{word-spacing:1.960645px;}
.ws9{word-spacing:1.990541px;}
.ws23{word-spacing:2.032370px;}
.ws4d{word-spacing:2.092146px;}
.ws31{word-spacing:2.151922px;}
.ws10{word-spacing:2.205734px;}
.ws3f{word-spacing:2.211697px;}
.ws3{word-spacing:2.247568px;}
.ws19{word-spacing:2.271473px;}
.ws28{word-spacing:2.331248px;}
.ws21{word-spacing:2.391024px;}
.ws7{word-spacing:2.420928px;}
.ws2a{word-spacing:2.450800px;}
.wse{word-spacing:2.474726px;}
.ws18{word-spacing:2.510575px;}
.ws1c{word-spacing:2.570351px;}
.ws1e{word-spacing:2.630126px;}
.ws73{word-spacing:2.689902px;}
.ws2d{word-spacing:2.749678px;}
.ws42{word-spacing:2.809453px;}
.ws26{word-spacing:2.869229px;}
.ws1b{word-spacing:2.929004px;}
.ws2{word-spacing:2.940979px;}
.ws57{word-spacing:2.988780px;}
.ws7c{word-spacing:3.048556px;}
.ws45{word-spacing:3.168107px;}
.ws56{word-spacing:3.287658px;}
.ws24{word-spacing:3.347434px;}
.ws43{word-spacing:3.529165px;}
.wsf{word-spacing:3.550694px;}
.wsa1{word-spacing:3.646312px;}
.ws1d{word-spacing:3.825638px;}
.ws7b{word-spacing:4.124516px;}
.ws75{word-spacing:4.244068px;}
.ws77{word-spacing:4.303843px;}
.ws5d{word-spacing:4.363619px;}
.ws4f{word-spacing:4.423394px;}
.ws50{word-spacing:4.542946px;}
.wsa5{word-spacing:4.662497px;}
.ws6f{word-spacing:4.841824px;}
.ws46{word-spacing:4.961375px;}
.wsa{word-spacing:5.003251px;}
.ws5b{word-spacing:5.021150px;}
.ws0{word-spacing:5.082975px;}
.ws3d{word-spacing:5.140702px;}
.wsa2{word-spacing:5.200477px;}
.ws6{word-spacing:5.308087px;}
.ws84{word-spacing:5.379804px;}
.ws35{word-spacing:5.499355px;}
.ws41{word-spacing:5.618906px;}
.ws22{word-spacing:5.678682px;}
.ws1{word-spacing:5.702850px;}
.ws3b{word-spacing:5.738458px;}
.wsb{word-spacing:6.025421px;}
.ws37{word-spacing:6.216662px;}
.ws69{word-spacing:6.395989px;}
.ws74{word-spacing:6.575316px;}
.ws29{word-spacing:6.635092px;}
.ws98{word-spacing:6.694867px;}
.ws25{word-spacing:6.754643px;}
.wsc{word-spacing:6.778598px;}
.ws58{word-spacing:6.874194px;}
.ws47{word-spacing:6.933970px;}
.ws53{word-spacing:7.047590px;}
.ws6c{word-spacing:7.053521px;}
.ws4a{word-spacing:7.113296px;}
.ws13{word-spacing:7.232848px;}
.wsa3{word-spacing:7.352399px;}
.ws72{word-spacing:7.471950px;}
.ws5e{word-spacing:7.591501px;}
.ws4c{word-spacing:7.651277px;}
.ws59{word-spacing:8.069706px;}
.ws52{word-spacing:8.069760px;}
.ws5c{word-spacing:8.129482px;}
.ws76{word-spacing:8.189257px;}
.ws51{word-spacing:8.249033px;}
.ws36{word-spacing:8.368584px;}
.ws3e{word-spacing:8.428360px;}
.ws20{word-spacing:8.667462px;}
.ws15{word-spacing:8.727238px;}
.ws5a{word-spacing:8.787013px;}
.ws8a{word-spacing:8.846789px;}
.ws8d{word-spacing:8.906564px;}
.ws70{word-spacing:8.966340px;}
.ws8f{word-spacing:9.265218px;}
.ws87{word-spacing:9.564096px;}
.ws6a{word-spacing:9.683647px;}
.ws17{word-spacing:10.042301px;}
.ws95{word-spacing:10.102076px;}
.ws33{word-spacing:10.341179px;}
.ws2f{word-spacing:10.400954px;}
.ws16{word-spacing:10.460730px;}
.ws39{word-spacing:10.580281px;}
.ws6e{word-spacing:10.640057px;}
.ws34{word-spacing:10.819384px;}
.ws6d{word-spacing:10.879159px;}
.ws61{word-spacing:10.998710px;}
.ws14{word-spacing:11.058486px;}
.ws48{word-spacing:11.118262px;}
.ws89{word-spacing:11.237813px;}
.ws3c{word-spacing:11.297588px;}
.ws3a{word-spacing:11.716018px;}
.ws1a{word-spacing:11.775793px;}
.ws66{word-spacing:12.014896px;}
.ws99{word-spacing:12.074671px;}
.ws6b{word-spacing:12.134447px;}
.ws9f{word-spacing:12.194222px;}
.ws30{word-spacing:13.389734px;}
.ws4e{word-spacing:13.628837px;}
.ws8e{word-spacing:14.525471px;}
.ws71{word-spacing:14.824349px;}
.ws68{word-spacing:15.720983px;}
.ws9e{word-spacing:15.840534px;}
.ws96{word-spacing:16.796944px;}
.ws8c{word-spacing:16.856719px;}
.ws85{word-spacing:16.916495px;}
.ws93{word-spacing:17.155597px;}
.wsa4{word-spacing:17.275148px;}
.ws9d{word-spacing:17.813129px;}
.ws86{word-spacing:18.709763px;}
.ws88{word-spacing:18.889090px;}
.ws8b{word-spacing:20.263928px;}
.ws12{word-spacing:21.519300px;}
.ws92{word-spacing:22.535401px;}
.ws9b{word-spacing:24.986201px;}
.ws90{word-spacing:25.763284px;}
.ws9c{word-spacing:28.393410px;}
.ws91{word-spacing:30.605107px;}
.ws32{word-spacing:30.963761px;}
.ws94{word-spacing:31.322414px;}
.wsa0{word-spacing:33.892765px;}
.ws44{word-spacing:39.451896px;}
._0{margin-left:-11.157750px;}
._28{margin-left:-8.249033px;}
._5{margin-left:-7.041262px;}
._10{margin-left:-5.618906px;}
._1{margin-left:-4.463100px;}
._22{margin-left:-3.382933px;}
._2{margin-left:-2.355525px;}
._4{margin-left:-1.115775px;}
._7{width:1.440952px;}
._23{width:14.645022px;}
._b{width:16.139520px;}
._6{width:17.263237px;}
._8{width:19.355819px;}
._13{width:21.160562px;}
._11{width:22.296299px;}
._12{width:23.438133px;}
._15{width:25.010477px;}
._31{width:26.259427px;}
._d{width:27.437000px;}
._f{width:28.493000px;}
._18{width:29.875541px;}
._9{width:31.030072px;}
._1b{width:32.123774px;}
._a{width:34.424648px;}
._1f{width:36.164238px;}
._1d{width:37.616791px;}
._20{width:39.117519px;}
._c{width:41.125613px;}
._19{width:43.038600px;}
._e{width:44.138669px;}
._3{width:45.622800px;}
._16{width:46.624968px;}
._27{width:48.059582px;}
._17{width:49.852850px;}
._1e{width:51.022063px;}
._2e{width:53.558938px;}
._1c{width:55.690898px;}
._29{width:59.338574px;}
._30{width:62.226400px;}
._1a{width:63.421912px;}
._24{width:65.514058px;}
._2c{width:66.834801px;}
._25{width:72.256442px;}
._26{width:75.556358px;}
._2f{width:89.723176px;}
._2a{width:92.114200px;}
._2b{width:106.759222px;}
._14{width:107.775407px;}
._2d{width:108.970919px;}
._21{width:1477.283968px;}
.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;}
.y8c{bottom:63.780000px;}
.y30{bottom:106.299000px;}
.y10d{bottom:124.801500px;}
.y2f{bottom:125.128500px;}
.y10c{bottom:143.631000px;}
.y48{bottom:143.958000px;}
.y2e{bottom:144.967500px;}
.y10b{bottom:162.460500px;}
.y47{bottom:162.787500px;}
.y2d{bottom:163.797000px;}
.y10a{bottom:181.290000px;}
.y46{bottom:181.617000px;}
.y2c{bottom:182.626500px;}
.y109{bottom:200.119500px;}
.y45{bottom:200.446500px;}
.y2b{bottom:201.456000px;}
.y8b{bottom:202.416000px;}
.y108{bottom:218.949000px;}
.y44{bottom:219.276000px;}
.y2a{bottom:220.285500px;}
.y8a{bottom:221.245500px;}
.ya5{bottom:237.078000px;}
.y107{bottom:237.778500px;}
.y43{bottom:238.105500px;}
.y29{bottom:239.115000px;}
.y89{bottom:240.075000px;}
.yc8{bottom:249.193500px;}
.ye5{bottom:255.982500px;}
.y106{bottom:256.608000px;}
.y42{bottom:256.935000px;}
.y28{bottom:257.944500px;}
.y88{bottom:258.904500px;}
.yc7{bottom:268.023000px;}
.y105{bottom:275.437500px;}
.y41{bottom:275.764500px;}
.y75{bottom:276.501000px;}
.y27{bottom:276.774000px;}
.y87{bottom:277.734000px;}
.yc6{bottom:286.852500px;}
.ya4{bottom:290.850000px;}
.y104{bottom:294.267000px;}
.y40{bottom:294.594000px;}
.y74{bottom:295.330500px;}
.y26{bottom:295.603500px;}
.y86{bottom:296.563500px;}
.yc5{bottom:305.682000px;}
.ya3{bottom:309.679500px;}
.y103{bottom:313.096500px;}
.y73{bottom:314.160000px;}
.y25{bottom:314.433000px;}
.y85{bottom:315.393000px;}
.y3f{bottom:319.054500px;}
.yc4{bottom:324.511500px;}
.ya2{bottom:328.509000px;}
.ye4{bottom:328.795500px;}
.y102{bottom:331.926000px;}
.y72{bottom:332.989500px;}
.y24{bottom:333.262500px;}
.y84{bottom:334.222500px;}
.y3e{bottom:337.884000px;}
.yc3{bottom:343.341000px;}
.ya1{bottom:347.338500px;}
.y101{bottom:350.755500px;}
.y71{bottom:351.819000px;}
.y23{bottom:352.092000px;}
.y83{bottom:353.052000px;}
.y3d{bottom:356.713500px;}
.ye3{bottom:358.405500px;}
.yc2{bottom:362.170500px;}
.ya0{bottom:366.168000px;}
.y100{bottom:369.585000px;}
.y70{bottom:370.648500px;}
.y22{bottom:370.921500px;}
.y82{bottom:373.849500px;}
.y3c{bottom:375.543000px;}
.yc1{bottom:381.000000px;}
.y9f{bottom:384.997500px;}
.yff{bottom:388.413000px;}
.y6f{bottom:389.478000px;}
.y21{bottom:389.751000px;}
.y81{bottom:392.679000px;}
.y3b{bottom:394.372500px;}
.yc0{bottom:399.829500px;}
.y9e{bottom:403.827000px;}
.ye2{bottom:404.505000px;}
.yfe{bottom:407.242500px;}
.y6e{bottom:408.307500px;}
.y20{bottom:408.580500px;}
.y80{bottom:411.508500px;}
.y3a{bottom:413.202000px;}
.ybf{bottom:418.659000px;}
.y9d{bottom:422.656500px;}
.ye1{bottom:423.334500px;}
.yfd{bottom:426.072000px;}
.y6d{bottom:427.137000px;}
.y1f{bottom:427.410000px;}
.y7f{bottom:430.338000px;}
.y39{bottom:432.031500px;}
.ybe{bottom:437.488500px;}
.y9c{bottom:441.486000px;}
.ye0{bottom:442.164000px;}
.yfc{bottom:444.901500px;}
.y6c{bottom:445.965000px;}
.y1e{bottom:446.239500px;}
.y7e{bottom:449.167500px;}
.y38{bottom:450.859500px;}
.y9b{bottom:460.315500px;}
.ydf{bottom:460.993500px;}
.yfb{bottom:463.731000px;}
.y6b{bottom:464.794500px;}
.y1d{bottom:465.067500px;}
.y7d{bottom:467.997000px;}
.y37{bottom:469.689000px;}
.y9a{bottom:479.145000px;}
.yde{bottom:479.823000px;}
.yfa{bottom:482.560500px;}
.y6a{bottom:483.624000px;}
.y1c{bottom:483.897000px;}
.y7c{bottom:486.826500px;}
.y36{bottom:488.518500px;}
.ybd{bottom:493.698000px;}
.y99{bottom:497.974500px;}
.yf9{bottom:501.390000px;}
.y69{bottom:502.453500px;}
.y1b{bottom:502.726500px;}
.y35{bottom:507.348000px;}
.y7b{bottom:507.625500px;}
.ydd{bottom:509.431500px;}
.y98{bottom:516.804000px;}
.yf8{bottom:520.219500px;}
.y68{bottom:521.283000px;}
.y1a{bottom:521.556000px;}
.y34{bottom:526.177500px;}
.y7a{bottom:526.455000px;}
.yf7{bottom:539.049000px;}
.y67{bottom:540.112500px;}
.y19{bottom:540.385500px;}
.y33{bottom:545.007000px;}
.y97{bottom:553.435500px;}
.ydc{bottom:555.531000px;}
.yf6{bottom:557.878500px;}
.y66{bottom:559.678500px;}
.y32{bottom:563.836500px;}
.ydb{bottom:574.360500px;}
.yf5{bottom:576.708000px;}
.y18{bottom:577.839000px;}
.y65{bottom:578.508000px;}
.y79{bottom:580.404000px;}
.y31{bottom:582.666000px;}
.yda{bottom:593.190000px;}
.yf4{bottom:595.537500px;}
.y64{bottom:597.337500px;}
.y78{bottom:597.663000px;}
.ybc{bottom:603.277500px;}
.y96{bottom:607.207500px;}
.yf3{bottom:614.367000px;}
.y63{bottom:616.167000px;}
.ybb{bottom:622.107000px;}
.yd9{bottom:622.800000px;}
.y95{bottom:626.037000px;}
.yf2{bottom:633.196500px;}
.y62{bottom:634.996500px;}
.y17{bottom:635.787000px;}
.yba{bottom:640.936500px;}
.y94{bottom:644.866500px;}
.yf1{bottom:652.026000px;}
.y16{bottom:653.047500px;}
.y61{bottom:653.826000px;}
.yb9{bottom:659.766000px;}
.y93{bottom:663.696000px;}
.yd8{bottom:668.899500px;}
.yf0{bottom:670.855500px;}
.y60{bottom:672.655500px;}
.yb8{bottom:678.595500px;}
.y92{bottom:682.525500px;}
.y15{bottom:687.568500px;}
.yd7{bottom:687.729000px;}
.yef{bottom:689.685000px;}
.y5f{bottom:691.485000px;}
.yb7{bottom:697.425000px;}
.y91{bottom:701.355000px;}
.y14{bottom:704.829000px;}
.yee{bottom:708.514500px;}
.y5e{bottom:710.314500px;}
.yb6{bottom:716.254500px;}
.yd6{bottom:717.339000px;}
.y13{bottom:722.089500px;}
.yed{bottom:727.344000px;}
.y5d{bottom:729.144000px;}
.yb5{bottom:735.084000px;}
.y12{bottom:739.350000px;}
.yec{bottom:746.173500px;}
.y90{bottom:752.502000px;}
.yb4{bottom:753.913500px;}
.y11{bottom:756.610500px;}
.yd5{bottom:763.438500px;}
.yeb{bottom:765.003000px;}
.y5c{bottom:766.089000px;}
.y8f{bottom:769.761000px;}
.yb3{bottom:772.743000px;}
.y10{bottom:773.869500px;}
.yea{bottom:783.832500px;}
.yf{bottom:791.130000px;}
.yb2{bottom:791.572500px;}
.yd4{bottom:793.048500px;}
.ye9{bottom:802.662000px;}
.ye{bottom:808.390500px;}
.yb1{bottom:810.402000px;}
.y5b{bottom:820.755000px;}
.ye8{bottom:821.491500px;}
.yd{bottom:825.651000px;}
.yb0{bottom:829.231500px;}
.yd3{bottom:839.146500px;}
.y5a{bottom:839.584500px;}
.ye7{bottom:840.321000px;}
.yc{bottom:842.911500px;}
.yaf{bottom:848.061000px;}
.y77{bottom:853.537500px;}
.yd2{bottom:857.976000px;}
.y59{bottom:858.414000px;}
.ye6{bottom:859.150500px;}
.yb{bottom:870.186000px;}
.y76{bottom:870.798000px;}
.yd1{bottom:876.805500px;}
.y58{bottom:877.242000px;}
.yae{bottom:877.980000px;}
.y57{bottom:896.071500px;}
.yad{bottom:896.808000px;}
.yd0{bottom:906.415500px;}
.ya{bottom:913.374000px;}
.y56{bottom:914.901000px;}
.yac{bottom:915.637500px;}
.y9{bottom:928.281000px;}
.y55{bottom:933.730500px;}
.yab{bottom:934.467000px;}
.y8{bottom:943.188000px;}
.ycf{bottom:952.515000px;}
.y54{bottom:952.560000px;}
.yaa{bottom:953.296500px;}
.y8e{bottom:966.642000px;}
.y53{bottom:971.389500px;}
.ya9{bottom:972.126000px;}
.y7{bottom:973.038000px;}
.y6{bottom:977.377500px;}
.yce{bottom:982.125000px;}
.y8d{bottom:983.902500px;}
.y52{bottom:990.219000px;}
.ya8{bottom:990.955500px;}
.y5{bottom:1006.419000px;}
.y51{bottom:1009.048500px;}
.ya7{bottom:1009.785000px;}
.y50{bottom:1027.878000px;}
.ycd{bottom:1028.224500px;}
.ya6{bottom:1028.614500px;}
.y4{bottom:1028.839500px;}
.ycc{bottom:1047.054000px;}
.y4f{bottom:1047.444000px;}
.y3{bottom:1065.750000px;}
.ycb{bottom:1065.883500px;}
.y4e{bottom:1066.273500px;}
.y4d{bottom:1085.103000px;}
.yca{bottom:1095.493500px;}
.y4c{bottom:1103.932500px;}
.y2{bottom:1104.978000px;}
.y4b{bottom:1122.762000px;}
.yc9{bottom:1136.764500px;}
.y4a{bottom:1141.591500px;}
.y1{bottom:1144.206000px;}
.y49{bottom:1193.356500px;}
.h4{height:25.823232px;}
.h5{height:34.813397px;}
.hb{height:38.734848px;}
.h7{height:39.165235px;}
.ha{height:39.434227px;}
.h6{height:43.038432px;}
.h9{height:43.516637px;}
.hc{height:51.646464px;}
.h8{height:61.975584px;}
.h3{height:65.199235px;}
.h2{height:89.262000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x6{left:90.442500px;}
.xf{left:99.984000px;}
.xe{left:114.927000px;}
.x1{left:116.233500px;}
.xd{left:129.871500px;}
.x4{left:165.979500px;}
.xa{left:229.972500px;}
.x3{left:241.758000px;}
.x9{left:256.267500px;}
.x5{left:342.028500px;}
.xb{left:362.973000px;}
.x7{left:407.287500px;}
.x8{left:415.998000px;}
.xc{left:417.823500px;}
.x10{left:461.400000px;}
.x12{left:470.385000px;}
.x11{left:476.344500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654933pt;}
.ls1{letter-spacing:2.660267pt;}
.ls3{letter-spacing:1313.089915pt;}
.ws7d{word-spacing:-15.940267pt;}
.ws81{word-spacing:-13.283467pt;}
.ws5{word-spacing:-10.626800pt;}
.ws82{word-spacing:-1.168945pt;}
.ws97{word-spacing:-0.850142pt;}
.ws7e{word-spacing:-0.584473pt;}
.ws64{word-spacing:-0.371937pt;}
.ws7a{word-spacing:-0.212535pt;}
.ws65{word-spacing:-0.053134pt;}
.ws2b{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.053134pt;}
.ws83{word-spacing:0.106268pt;}
.ws78{word-spacing:0.159402pt;}
.ws63{word-spacing:0.212535pt;}
.ws79{word-spacing:0.265669pt;}
.ws62{word-spacing:0.318803pt;}
.ws4b{word-spacing:0.371937pt;}
.ws2c{word-spacing:0.425071pt;}
.ws27{word-spacing:0.637606pt;}
.ws11{word-spacing:0.669491pt;}
.ws1f{word-spacing:0.743874pt;}
.ws60{word-spacing:1.004237pt;}
.ws49{word-spacing:1.062677pt;}
.ws55{word-spacing:1.147699pt;}
.ws67{word-spacing:1.168945pt;}
.ws5f{word-spacing:1.190202pt;}
.ws38{word-spacing:1.338982pt;}
.ws40{word-spacing:1.381481pt;}
.ws2e{word-spacing:1.434614pt;}
.wsd{word-spacing:1.482445pt;}
.ws7f{word-spacing:1.530266pt;}
.ws80{word-spacing:1.540882pt;}
.ws8{word-spacing:1.625907pt;}
.ws54{word-spacing:1.721549pt;}
.ws4{word-spacing:1.742795pt;}
.ws9{word-spacing:1.769370pt;}
.ws23{word-spacing:1.806551pt;}
.ws4d{word-spacing:1.859685pt;}
.ws31{word-spacing:1.912819pt;}
.ws10{word-spacing:1.960653pt;}
.ws3f{word-spacing:1.965953pt;}
.ws3{word-spacing:1.997838pt;}
.ws19{word-spacing:2.019087pt;}
.ws28{word-spacing:2.072221pt;}
.ws21{word-spacing:2.125355pt;}
.ws7{word-spacing:2.151936pt;}
.ws2a{word-spacing:2.178489pt;}
.wse{word-spacing:2.199757pt;}
.ws18{word-spacing:2.231622pt;}
.ws1c{word-spacing:2.284756pt;}
.ws1e{word-spacing:2.337890pt;}
.ws73{word-spacing:2.391024pt;}
.ws2d{word-spacing:2.444158pt;}
.ws42{word-spacing:2.497292pt;}
.ws26{word-spacing:2.550426pt;}
.ws1b{word-spacing:2.603559pt;}
.ws2{word-spacing:2.614204pt;}
.ws57{word-spacing:2.656693pt;}
.ws7c{word-spacing:2.709827pt;}
.ws45{word-spacing:2.816095pt;}
.ws56{word-spacing:2.922363pt;}
.ws24{word-spacing:2.975497pt;}
.ws43{word-spacing:3.137036pt;}
.wsf{word-spacing:3.156173pt;}
.wsa1{word-spacing:3.241166pt;}
.ws1d{word-spacing:3.400567pt;}
.ws7b{word-spacing:3.666237pt;}
.ws75{word-spacing:3.772505pt;}
.ws77{word-spacing:3.825638pt;}
.ws5d{word-spacing:3.878772pt;}
.ws4f{word-spacing:3.931906pt;}
.ws50{word-spacing:4.038174pt;}
.wsa5{word-spacing:4.144442pt;}
.ws6f{word-spacing:4.303843pt;}
.ws46{word-spacing:4.410111pt;}
.wsa{word-spacing:4.447334pt;}
.ws5b{word-spacing:4.463245pt;}
.ws0{word-spacing:4.518200pt;}
.ws3d{word-spacing:4.569513pt;}
.wsa2{word-spacing:4.622646pt;}
.ws6{word-spacing:4.718299pt;}
.ws84{word-spacing:4.782048pt;}
.ws35{word-spacing:4.888316pt;}
.ws41{word-spacing:4.994583pt;}
.ws22{word-spacing:5.047717pt;}
.ws1{word-spacing:5.069200pt;}
.ws3b{word-spacing:5.100851pt;}
.wsb{word-spacing:5.355930pt;}
.ws37{word-spacing:5.525922pt;}
.ws69{word-spacing:5.685324pt;}
.ws74{word-spacing:5.844725pt;}
.ws29{word-spacing:5.897859pt;}
.ws98{word-spacing:5.950993pt;}
.ws25{word-spacing:6.004127pt;}
.wsc{word-spacing:6.025421pt;}
.ws58{word-spacing:6.110395pt;}
.ws47{word-spacing:6.163529pt;}
.ws53{word-spacing:6.264525pt;}
.ws6c{word-spacing:6.269796pt;}
.ws4a{word-spacing:6.322930pt;}
.ws13{word-spacing:6.429198pt;}
.wsa3{word-spacing:6.535466pt;}
.ws72{word-spacing:6.641733pt;}
.ws5e{word-spacing:6.748001pt;}
.ws4c{word-spacing:6.801135pt;}
.ws59{word-spacing:7.173072pt;}
.ws52{word-spacing:7.173120pt;}
.ws5c{word-spacing:7.226206pt;}
.ws76{word-spacing:7.279340pt;}
.ws51{word-spacing:7.332474pt;}
.ws36{word-spacing:7.438741pt;}
.ws3e{word-spacing:7.491875pt;}
.ws20{word-spacing:7.704411pt;}
.ws15{word-spacing:7.757545pt;}
.ws5a{word-spacing:7.810678pt;}
.ws8a{word-spacing:7.863812pt;}
.ws8d{word-spacing:7.916946pt;}
.ws70{word-spacing:7.970080pt;}
.ws8f{word-spacing:8.235749pt;}
.ws87{word-spacing:8.501419pt;}
.ws6a{word-spacing:8.607686pt;}
.ws17{word-spacing:8.926490pt;}
.ws95{word-spacing:8.979623pt;}
.ws33{word-spacing:9.192159pt;}
.ws2f{word-spacing:9.245293pt;}
.ws16{word-spacing:9.298427pt;}
.ws39{word-spacing:9.404694pt;}
.ws6e{word-spacing:9.457828pt;}
.ws34{word-spacing:9.617230pt;}
.ws6d{word-spacing:9.670364pt;}
.ws61{word-spacing:9.776631pt;}
.ws14{word-spacing:9.829765pt;}
.ws48{word-spacing:9.882899pt;}
.ws89{word-spacing:9.989167pt;}
.ws3c{word-spacing:10.042301pt;}
.ws3a{word-spacing:10.414238pt;}
.ws1a{word-spacing:10.467372pt;}
.ws66{word-spacing:10.679907pt;}
.ws99{word-spacing:10.733041pt;}
.ws6b{word-spacing:10.786175pt;}
.ws9f{word-spacing:10.839309pt;}
.ws30{word-spacing:11.901986pt;}
.ws4e{word-spacing:12.114522pt;}
.ws8e{word-spacing:12.911530pt;}
.ws71{word-spacing:13.177199pt;}
.ws68{word-spacing:13.974207pt;}
.ws9e{word-spacing:14.080475pt;}
.ws96{word-spacing:14.930617pt;}
.ws8c{word-spacing:14.983750pt;}
.ws85{word-spacing:15.036884pt;}
.ws93{word-spacing:15.249420pt;}
.wsa4{word-spacing:15.355687pt;}
.ws9d{word-spacing:15.833892pt;}
.ws86{word-spacing:16.630900pt;}
.ws88{word-spacing:16.790302pt;}
.ws8b{word-spacing:18.012381pt;}
.ws12{word-spacing:19.128267pt;}
.ws92{word-spacing:20.031468pt;}
.ws9b{word-spacing:22.209956pt;}
.ws90{word-spacing:22.900697pt;}
.ws9c{word-spacing:25.238587pt;}
.ws91{word-spacing:27.204540pt;}
.ws32{word-spacing:27.523343pt;}
.ws94{word-spacing:27.842146pt;}
.wsa0{word-spacing:30.126902pt;}
.ws44{word-spacing:35.068352pt;}
._0{margin-left:-9.918000pt;}
._28{margin-left:-7.332474pt;}
._5{margin-left:-6.258900pt;}
._10{margin-left:-4.994583pt;}
._1{margin-left:-3.967200pt;}
._22{margin-left:-3.007051pt;}
._2{margin-left:-2.093800pt;}
._4{margin-left:-0.991800pt;}
._7{width:1.280846pt;}
._23{width:13.017797pt;}
._b{width:14.346240pt;}
._6{width:15.345099pt;}
._8{width:17.205173pt;}
._13{width:18.809389pt;}
._11{width:19.818932pt;}
._12{width:20.833896pt;}
._15{width:22.231535pt;}
._31{width:23.341713pt;}
._d{width:24.388445pt;}
._f{width:25.327111pt;}
._18{width:26.556037pt;}
._9{width:27.582286pt;}
._1b{width:28.554466pt;}
._a{width:30.599687pt;}
._1f{width:32.145989pt;}
._1d{width:33.437148pt;}
._20{width:34.771128pt;}
._c{width:36.556100pt;}
._19{width:38.256533pt;}
._e{width:39.234373pt;}
._3{width:40.553600pt;}
._16{width:41.444416pt;}
._27{width:42.719629pt;}
._17{width:44.313645pt;}
._1e{width:45.352945pt;}
._2e{width:47.607945pt;}
._1c{width:49.503020pt;}
._29{width:52.745399pt;}
._30{width:55.312355pt;}
._1a{width:56.375033pt;}
._24{width:58.234718pt;}
._2c{width:59.408712pt;}
._25{width:64.227948pt;}
._26{width:67.161207pt;}
._2f{width:79.753934pt;}
._2a{width:81.879289pt;}
._2b{width:94.897086pt;}
._14{width:95.800362pt;}
._2d{width:96.863039pt;}
._21{width:1313.141305pt;}
.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;}
.y8c{bottom:56.693333pt;}
.y30{bottom:94.488000pt;}
.y10d{bottom:110.934667pt;}
.y2f{bottom:111.225333pt;}
.y10c{bottom:127.672000pt;}
.y48{bottom:127.962667pt;}
.y2e{bottom:128.860000pt;}
.y10b{bottom:144.409333pt;}
.y47{bottom:144.700000pt;}
.y2d{bottom:145.597333pt;}
.y10a{bottom:161.146667pt;}
.y46{bottom:161.437333pt;}
.y2c{bottom:162.334667pt;}
.y109{bottom:177.884000pt;}
.y45{bottom:178.174667pt;}
.y2b{bottom:179.072000pt;}
.y8b{bottom:179.925333pt;}
.y108{bottom:194.621333pt;}
.y44{bottom:194.912000pt;}
.y2a{bottom:195.809333pt;}
.y8a{bottom:196.662667pt;}
.ya5{bottom:210.736000pt;}
.y107{bottom:211.358667pt;}
.y43{bottom:211.649333pt;}
.y29{bottom:212.546667pt;}
.y89{bottom:213.400000pt;}
.yc8{bottom:221.505333pt;}
.ye5{bottom:227.540000pt;}
.y106{bottom:228.096000pt;}
.y42{bottom:228.386667pt;}
.y28{bottom:229.284000pt;}
.y88{bottom:230.137333pt;}
.yc7{bottom:238.242667pt;}
.y105{bottom:244.833333pt;}
.y41{bottom:245.124000pt;}
.y75{bottom:245.778667pt;}
.y27{bottom:246.021333pt;}
.y87{bottom:246.874667pt;}
.yc6{bottom:254.980000pt;}
.ya4{bottom:258.533333pt;}
.y104{bottom:261.570667pt;}
.y40{bottom:261.861333pt;}
.y74{bottom:262.516000pt;}
.y26{bottom:262.758667pt;}
.y86{bottom:263.612000pt;}
.yc5{bottom:271.717333pt;}
.ya3{bottom:275.270667pt;}
.y103{bottom:278.308000pt;}
.y73{bottom:279.253333pt;}
.y25{bottom:279.496000pt;}
.y85{bottom:280.349333pt;}
.y3f{bottom:283.604000pt;}
.yc4{bottom:288.454667pt;}
.ya2{bottom:292.008000pt;}
.ye4{bottom:292.262667pt;}
.y102{bottom:295.045333pt;}
.y72{bottom:295.990667pt;}
.y24{bottom:296.233333pt;}
.y84{bottom:297.086667pt;}
.y3e{bottom:300.341333pt;}
.yc3{bottom:305.192000pt;}
.ya1{bottom:308.745333pt;}
.y101{bottom:311.782667pt;}
.y71{bottom:312.728000pt;}
.y23{bottom:312.970667pt;}
.y83{bottom:313.824000pt;}
.y3d{bottom:317.078667pt;}
.ye3{bottom:318.582667pt;}
.yc2{bottom:321.929333pt;}
.ya0{bottom:325.482667pt;}
.y100{bottom:328.520000pt;}
.y70{bottom:329.465333pt;}
.y22{bottom:329.708000pt;}
.y82{bottom:332.310667pt;}
.y3c{bottom:333.816000pt;}
.yc1{bottom:338.666667pt;}
.y9f{bottom:342.220000pt;}
.yff{bottom:345.256000pt;}
.y6f{bottom:346.202667pt;}
.y21{bottom:346.445333pt;}
.y81{bottom:349.048000pt;}
.y3b{bottom:350.553333pt;}
.yc0{bottom:355.404000pt;}
.y9e{bottom:358.957333pt;}
.ye2{bottom:359.560000pt;}
.yfe{bottom:361.993333pt;}
.y6e{bottom:362.940000pt;}
.y20{bottom:363.182667pt;}
.y80{bottom:365.785333pt;}
.y3a{bottom:367.290667pt;}
.ybf{bottom:372.141333pt;}
.y9d{bottom:375.694667pt;}
.ye1{bottom:376.297333pt;}
.yfd{bottom:378.730667pt;}
.y6d{bottom:379.677333pt;}
.y1f{bottom:379.920000pt;}
.y7f{bottom:382.522667pt;}
.y39{bottom:384.028000pt;}
.ybe{bottom:388.878667pt;}
.y9c{bottom:392.432000pt;}
.ye0{bottom:393.034667pt;}
.yfc{bottom:395.468000pt;}
.y6c{bottom:396.413333pt;}
.y1e{bottom:396.657333pt;}
.y7e{bottom:399.260000pt;}
.y38{bottom:400.764000pt;}
.y9b{bottom:409.169333pt;}
.ydf{bottom:409.772000pt;}
.yfb{bottom:412.205333pt;}
.y6b{bottom:413.150667pt;}
.y1d{bottom:413.393333pt;}
.y7d{bottom:415.997333pt;}
.y37{bottom:417.501333pt;}
.y9a{bottom:425.906667pt;}
.yde{bottom:426.509333pt;}
.yfa{bottom:428.942667pt;}
.y6a{bottom:429.888000pt;}
.y1c{bottom:430.130667pt;}
.y7c{bottom:432.734667pt;}
.y36{bottom:434.238667pt;}
.ybd{bottom:438.842667pt;}
.y99{bottom:442.644000pt;}
.yf9{bottom:445.680000pt;}
.y69{bottom:446.625333pt;}
.y1b{bottom:446.868000pt;}
.y35{bottom:450.976000pt;}
.y7b{bottom:451.222667pt;}
.ydd{bottom:452.828000pt;}
.y98{bottom:459.381333pt;}
.yf8{bottom:462.417333pt;}
.y68{bottom:463.362667pt;}
.y1a{bottom:463.605333pt;}
.y34{bottom:467.713333pt;}
.y7a{bottom:467.960000pt;}
.yf7{bottom:479.154667pt;}
.y67{bottom:480.100000pt;}
.y19{bottom:480.342667pt;}
.y33{bottom:484.450667pt;}
.y97{bottom:491.942667pt;}
.ydc{bottom:493.805333pt;}
.yf6{bottom:495.892000pt;}
.y66{bottom:497.492000pt;}
.y32{bottom:501.188000pt;}
.ydb{bottom:510.542667pt;}
.yf5{bottom:512.629333pt;}
.y18{bottom:513.634667pt;}
.y65{bottom:514.229333pt;}
.y79{bottom:515.914667pt;}
.y31{bottom:517.925333pt;}
.yda{bottom:527.280000pt;}
.yf4{bottom:529.366667pt;}
.y64{bottom:530.966667pt;}
.y78{bottom:531.256000pt;}
.ybc{bottom:536.246667pt;}
.y96{bottom:539.740000pt;}
.yf3{bottom:546.104000pt;}
.y63{bottom:547.704000pt;}
.ybb{bottom:552.984000pt;}
.yd9{bottom:553.600000pt;}
.y95{bottom:556.477333pt;}
.yf2{bottom:562.841333pt;}
.y62{bottom:564.441333pt;}
.y17{bottom:565.144000pt;}
.yba{bottom:569.721333pt;}
.y94{bottom:573.214667pt;}
.yf1{bottom:579.578667pt;}
.y16{bottom:580.486667pt;}
.y61{bottom:581.178667pt;}
.yb9{bottom:586.458667pt;}
.y93{bottom:589.952000pt;}
.yd8{bottom:594.577333pt;}
.yf0{bottom:596.316000pt;}
.y60{bottom:597.916000pt;}
.yb8{bottom:603.196000pt;}
.y92{bottom:606.689333pt;}
.y15{bottom:611.172000pt;}
.yd7{bottom:611.314667pt;}
.yef{bottom:613.053333pt;}
.y5f{bottom:614.653333pt;}
.yb7{bottom:619.933333pt;}
.y91{bottom:623.426667pt;}
.y14{bottom:626.514667pt;}
.yee{bottom:629.790667pt;}
.y5e{bottom:631.390667pt;}
.yb6{bottom:636.670667pt;}
.yd6{bottom:637.634667pt;}
.y13{bottom:641.857333pt;}
.yed{bottom:646.528000pt;}
.y5d{bottom:648.128000pt;}
.yb5{bottom:653.408000pt;}
.y12{bottom:657.200000pt;}
.yec{bottom:663.265333pt;}
.y90{bottom:668.890667pt;}
.yb4{bottom:670.145333pt;}
.y11{bottom:672.542667pt;}
.yd5{bottom:678.612000pt;}
.yeb{bottom:680.002667pt;}
.y5c{bottom:680.968000pt;}
.y8f{bottom:684.232000pt;}
.yb3{bottom:686.882667pt;}
.y10{bottom:687.884000pt;}
.yea{bottom:696.740000pt;}
.yf{bottom:703.226667pt;}
.yb2{bottom:703.620000pt;}
.yd4{bottom:704.932000pt;}
.ye9{bottom:713.477333pt;}
.ye{bottom:718.569333pt;}
.yb1{bottom:720.357333pt;}
.y5b{bottom:729.560000pt;}
.ye8{bottom:730.214667pt;}
.yd{bottom:733.912000pt;}
.yb0{bottom:737.094667pt;}
.yd3{bottom:745.908000pt;}
.y5a{bottom:746.297333pt;}
.ye7{bottom:746.952000pt;}
.yc{bottom:749.254667pt;}
.yaf{bottom:753.832000pt;}
.y77{bottom:758.700000pt;}
.yd2{bottom:762.645333pt;}
.y59{bottom:763.034667pt;}
.ye6{bottom:763.689333pt;}
.yb{bottom:773.498667pt;}
.y76{bottom:774.042667pt;}
.yd1{bottom:779.382667pt;}
.y58{bottom:779.770667pt;}
.yae{bottom:780.426667pt;}
.y57{bottom:796.508000pt;}
.yad{bottom:797.162667pt;}
.yd0{bottom:805.702667pt;}
.ya{bottom:811.888000pt;}
.y56{bottom:813.245333pt;}
.yac{bottom:813.900000pt;}
.y9{bottom:825.138667pt;}
.y55{bottom:829.982667pt;}
.yab{bottom:830.637333pt;}
.y8{bottom:838.389333pt;}
.ycf{bottom:846.680000pt;}
.y54{bottom:846.720000pt;}
.yaa{bottom:847.374667pt;}
.y8e{bottom:859.237333pt;}
.y53{bottom:863.457333pt;}
.ya9{bottom:864.112000pt;}
.y7{bottom:864.922667pt;}
.y6{bottom:868.780000pt;}
.yce{bottom:873.000000pt;}
.y8d{bottom:874.580000pt;}
.y52{bottom:880.194667pt;}
.ya8{bottom:880.849333pt;}
.y5{bottom:894.594667pt;}
.y51{bottom:896.932000pt;}
.ya7{bottom:897.586667pt;}
.y50{bottom:913.669333pt;}
.ycd{bottom:913.977333pt;}
.ya6{bottom:914.324000pt;}
.y4{bottom:914.524000pt;}
.ycc{bottom:930.714667pt;}
.y4f{bottom:931.061333pt;}
.y3{bottom:947.333333pt;}
.ycb{bottom:947.452000pt;}
.y4e{bottom:947.798667pt;}
.y4d{bottom:964.536000pt;}
.yca{bottom:973.772000pt;}
.y4c{bottom:981.273333pt;}
.y2{bottom:982.202667pt;}
.y4b{bottom:998.010667pt;}
.yc9{bottom:1010.457333pt;}
.y4a{bottom:1014.748000pt;}
.y1{bottom:1017.072000pt;}
.y49{bottom:1060.761333pt;}
.h4{height:22.953984pt;}
.h5{height:30.945242pt;}
.hb{height:34.430976pt;}
.h7{height:34.813542pt;}
.ha{height:35.052646pt;}
.h6{height:38.256384pt;}
.h9{height:38.681455pt;}
.hc{height:45.907968pt;}
.h8{height:55.089408pt;}
.h3{height:57.954876pt;}
.h2{height:79.344000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x6{left:80.393333pt;}
.xf{left:88.874667pt;}
.xe{left:102.157333pt;}
.x1{left:103.318667pt;}
.xd{left:115.441333pt;}
.x4{left:147.537333pt;}
.xa{left:204.420000pt;}
.x3{left:214.896000pt;}
.x9{left:227.793333pt;}
.x5{left:304.025333pt;}
.xb{left:322.642667pt;}
.x7{left:362.033333pt;}
.x8{left:369.776000pt;}
.xc{left:371.398667pt;}
.x10{left:410.133333pt;}
.x12{left:418.120000pt;}
.x11{left:423.417333pt;}
}




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