
    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_0779d579dc898515195e2414.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_75807edc68d77aa38fedf4a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_5de679485206ad1bdf5cb1bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_675ba5882875e30ba977d903.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9e026c2046c9cb58e3ea39e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07559cda7bef9cea69a6daf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4c32a2ee9b56bcdca664c0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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:ff8;src:url('chunks/assets/font_1fa2aea4c127701e6b1c8e3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.999000;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:ff9;src:url('chunks/assets/font_b8251f54156c4db4bbadc64d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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:ffa;src:url('chunks/assets/font_10b9a06024e13659fbe515c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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:ffb;src:url('chunks/assets/font_26985ca864027ef0eb22c6ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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:ffc;src:url('chunks/assets/font_eab0cb2ee8172d5323f081ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.389000;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:ffd;src:url('chunks/assets/font_edd0b14eaf60ffc020417f65.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.518000;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:ffe;src:url('chunks/assets/font_ef41e864feae11946d729f43.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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:fff;src:url('chunks/assets/font_2575a1a6fca088b92d38db47.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;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:ff10;src:url('chunks/assets/font_95f6ff509109a107ee96927f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.451000;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;}
.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);}
.m1{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;}
.v6{vertical-align:13.614000px;}
.v7{vertical-align:22.572000px;}
.v4{vertical-align:23.754000px;}
.v5{vertical-align:25.770000px;}
.v3{vertical-align:27.024000px;}
.v2{vertical-align:45.630000px;}
.v1{vertical-align:111.930000px;}
.lsd{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.002700px;}
.ls7{letter-spacing:0.012901px;}
.ls2e{letter-spacing:0.020525px;}
.ls3b{letter-spacing:0.029760px;}
.ls14{letter-spacing:1.291156px;}
.ls2b{letter-spacing:1.832729px;}
.ls19{letter-spacing:2.029093px;}
.ls15{letter-spacing:2.968459px;}
.ls4a{letter-spacing:2.988557px;}
.ls32{letter-spacing:3.730912px;}
.ls36{letter-spacing:3.750057px;}
.ls34{letter-spacing:3.769938px;}
.ls33{letter-spacing:3.796367px;}
.ls1b{letter-spacing:4.259644px;}
.ls8{letter-spacing:4.265644px;}
.ls43{letter-spacing:5.040004px;}
.ls3f{letter-spacing:5.105459px;}
.ls1e{letter-spacing:7.134551px;}
.ls4b{letter-spacing:7.169971px;}
.ls6{letter-spacing:10.865464px;}
.ls48{letter-spacing:10.930918px;}
.ls38{letter-spacing:13.221829px;}
.ls39{letter-spacing:13.287284px;}
.ls5{letter-spacing:13.483648px;}
.ls3{letter-spacing:14.530921px;}
.ls42{letter-spacing:15.381831px;}
.ls2a{letter-spacing:15.447286px;}
.ls3e{letter-spacing:15.512740px;}
.ls31{letter-spacing:15.578195px;}
.ls41{letter-spacing:15.924326px;}
.ls2c{letter-spacing:16.363650px;}
.ls27{letter-spacing:17.083651px;}
.ls2d{letter-spacing:17.214560px;}
.ls1f{letter-spacing:17.410924px;}
.ls47{letter-spacing:17.803651px;}
.ls12{letter-spacing:18.130924px;}
.ls0{letter-spacing:18.196379px;}
.ls45{letter-spacing:19.178198px;}
.ls3d{letter-spacing:19.243652px;}
.ls40{letter-spacing:19.505471px;}
.ls16{letter-spacing:20.225471px;}
.ls28{letter-spacing:20.290926px;}
.ls29{letter-spacing:20.421835px;}
.ls4c{letter-spacing:21.141836px;}
.ls37{letter-spacing:21.168103px;}
.ls35{letter-spacing:21.174103px;}
.ls2{letter-spacing:21.796382px;}
.lsc{letter-spacing:21.861836px;}
.lsb{letter-spacing:21.927291px;}
.ls18{letter-spacing:22.778201px;}
.ls1d{letter-spacing:22.843655px;}
.ls25{letter-spacing:23.170928px;}
.ls1c{letter-spacing:23.301838px;}
.ls2f{letter-spacing:23.890929px;}
.lsa{letter-spacing:23.956384px;}
.ls9{letter-spacing:24.087293px;}
.ls44{letter-spacing:24.741839px;}
.ls17{letter-spacing:24.807293px;}
.ls3a{letter-spacing:24.938203px;}
.ls11{letter-spacing:25.003657px;}
.ls46{letter-spacing:25.265476px;}
.ls21{letter-spacing:25.330930px;}
.ls20{letter-spacing:25.396385px;}
.ls23{letter-spacing:26.116385px;}
.lsf{letter-spacing:26.312749px;}
.lse{letter-spacing:26.378204px;}
.ls30{letter-spacing:26.899200px;}
.ls3c{letter-spacing:28.883644px;}
.ls24{letter-spacing:29.716388px;}
.ls26{letter-spacing:31.156390px;}
.ls10{letter-spacing:32.177644px;}
.ls13{letter-spacing:32.727300px;}
.ls22{letter-spacing:33.250937px;}
.ls4{letter-spacing:65.454600px;}
.ls49{letter-spacing:69.764995px;}
.ls1{letter-spacing:145.440121px;}
.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;}
}
.ws34{word-spacing:-54.589136px;}
.ws32{word-spacing:-49.852850px;}
.wsc{word-spacing:-47.289430px;}
.ws60{word-spacing:-47.258221px;}
.ws8c{word-spacing:-39.325124px;}
.ws8a{word-spacing:-36.379667px;}
.ws40{word-spacing:-22.416000px;}
.ws25{word-spacing:-18.183288px;}
.ws13{word-spacing:-4.765095px;}
.wsf{word-spacing:-3.652367px;}
.ws7f{word-spacing:-3.586560px;}
.ws6d{word-spacing:-2.997821px;}
.ws10{word-spacing:-2.932366px;}
.ws46{word-spacing:-2.801457px;}
.ws47{word-spacing:-2.736002px;}
.ws6b{word-spacing:-2.670548px;}
.ws37{word-spacing:-2.605093px;}
.ws5f{word-spacing:-2.539638px;}
.ws54{word-spacing:-2.474184px;}
.ws2{word-spacing:-2.020415px;}
.ws5c{word-spacing:-1.296001px;}
.ws4e{word-spacing:-1.099637px;}
.ws53{word-spacing:-0.837819px;}
.ws73{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.526025px;}
.ws71{word-spacing:-0.379637px;}
.ws5e{word-spacing:-0.248727px;}
.wsd{word-spacing:-0.065455px;}
.ws57{word-spacing:-0.052364px;}
.ws8b{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws30{word-spacing:0.013091px;}
.ws8e{word-spacing:0.078546px;}
.ws2e{word-spacing:0.144000px;}
.ws3{word-spacing:0.191282px;}
.ws1d{word-spacing:0.274909px;}
.ws78{word-spacing:0.340364px;}
.ws14{word-spacing:0.405819px;}
.ws6e{word-spacing:0.733092px;}
.ws55{word-spacing:0.864001px;}
.ws84{word-spacing:0.877092px;}
.ws66{word-spacing:1.060365px;}
.ws16{word-spacing:1.322183px;}
.ws7d{word-spacing:1.453092px;}
.ws81{word-spacing:1.584001px;}
.ws68{word-spacing:1.911274px;}
.ws2f{word-spacing:2.173093px;}
.ws50{word-spacing:2.238547px;}
.ws23{word-spacing:2.251638px;}
.ws49{word-spacing:2.304002px;}
.ws6a{word-spacing:2.369457px;}
.ws5d{word-spacing:2.696730px;}
.ws4{word-spacing:2.940960px;}
.ws61{word-spacing:2.958548px;}
.ws62{word-spacing:3.024003px;}
.ws12{word-spacing:3.089457px;}
.ws65{word-spacing:3.285821px;}
.ws5{word-spacing:3.299613px;}
.ws3c{word-spacing:3.351276px;}
.wsb{word-spacing:3.613094px;}
.wse{word-spacing:3.678549px;}
.ws4f{word-spacing:3.809458px;}
.ws1{word-spacing:3.873485px;}
.ws56{word-spacing:3.940367px;}
.ws3f{word-spacing:4.005822px;}
.ws2d{word-spacing:4.136731px;}
.ws8d{word-spacing:4.398549px;}
.ws3b{word-spacing:4.483200px;}
.ws3d{word-spacing:4.529458px;}
.ws7a{word-spacing:4.660368px;}
.ws80{word-spacing:4.856731px;}
.ws72{word-spacing:4.987641px;}
.ws82{word-spacing:5.053095px;}
.ws45{word-spacing:5.184004px;}
.ws17{word-spacing:5.379825px;}
.ws63{word-spacing:5.380368px;}
.ws0{word-spacing:5.412522px;}
.ws44{word-spacing:5.445823px;}
.ws43{word-spacing:5.511277px;}
.ws27{word-spacing:5.655277px;}
.ws58{word-spacing:5.707641px;}
.ws7{word-spacing:5.750413px;}
.ws70{word-spacing:5.773096px;}
.ws18{word-spacing:5.838550px;}
.ws76{word-spacing:6.165823px;}
.ws41{word-spacing:6.362187px;}
.ws38{word-spacing:6.427642px;}
.ws4b{word-spacing:6.440733px;}
.ws35{word-spacing:6.558551px;}
.ws39{word-spacing:6.624006px;}
.ws20{word-spacing:6.637096px;}
.ws36{word-spacing:6.689460px;}
.ws2c{word-spacing:6.702551px;}
.ws21{word-spacing:6.951279px;}
.ws75{word-spacing:7.082188px;}
.ws6c{word-spacing:7.213097px;}
.ws2a{word-spacing:7.226188px;}
.ws3a{word-spacing:7.278552px;}
.ws85{word-spacing:7.291642px;}
.ws59{word-spacing:7.540370px;}
.ws5a{word-spacing:7.605825px;}
.ws79{word-spacing:7.671279px;}
.ws28{word-spacing:7.749825px;}
.ws48{word-spacing:7.933098px;}
.ws11{word-spacing:7.998552px;}
.ws51{word-spacing:8.064007px;}
.ws1f{word-spacing:8.194916px;}
.ws87{word-spacing:8.260371px;}
.ws29{word-spacing:8.273461px;}
.ws64{word-spacing:8.522189px;}
.ws89{word-spacing:8.587644px;}
.ws9{word-spacing:9.277173px;}
.ws69{word-spacing:9.307644px;}
.ws86{word-spacing:9.320735px;}
.ws77{word-spacing:9.438553px;}
.ws74{word-spacing:10.158554px;}
.ws6f{word-spacing:10.224009px;}
.ws7e{word-spacing:10.551282px;}
.ws3e{word-spacing:10.800009px;}
.ws1b{word-spacing:10.865464px;}
.ws67{word-spacing:10.878555px;}
.ws8{word-spacing:10.891114px;}
.ws7b{word-spacing:11.074918px;}
.ws24{word-spacing:11.153464px;}
.ws26{word-spacing:11.218918px;}
.ws88{word-spacing:11.533101px;}
.ws2b{word-spacing:12.004374px;}
.ws5b{word-spacing:12.122192px;}
.ws1c{word-spacing:12.580374px;}
.ws15{word-spacing:12.973102px;}
.ws7c{word-spacing:13.627648px;}
.ws52{word-spacing:14.282194px;}
.ws4c{word-spacing:14.426194px;}
.ws4d{word-spacing:15.997104px;}
.ws83{word-spacing:17.803651px;}
.ws42{word-spacing:21.730927px;}
.ws4a{word-spacing:24.741839px;}
.ws22{word-spacing:25.854567px;}
.ws19{word-spacing:28.996388px;}
.ws1a{word-spacing:29.061842px;}
.ws33{word-spacing:53.554954px;}
.ws31{word-spacing:60.803740px;}
.wsa{word-spacing:69.937725px;}
._15{margin-left:-51.147066px;}
._3{margin-left:-50.096814px;}
._b{margin-left:-48.461464px;}
._1{margin-left:-47.411212px;}
._22{margin-left:-40.384666px;}
._4{margin-left:-35.076557px;}
._18{margin-left:-34.042779px;}
._d{margin-left:-32.727300px;}
._8{margin-left:-31.441966px;}
._7{margin-left:-29.768249px;}
._17{margin-left:-26.591165px;}
._e{margin-left:-25.530541px;}
._2c{margin-left:-24.481984px;}
._a{margin-left:-23.252708px;}
._2a{margin-left:-8.245316px;}
._9{margin-left:-6.395989px;}
._19{margin-left:-5.336786px;}
._10{margin-left:-4.252585px;}
._0{margin-left:-2.685602px;}
._5{margin-left:-1.613941px;}
._6{width:1.613941px;}
._2{width:2.685602px;}
._13{width:3.884245px;}
._2b{width:5.935762px;}
._1c{width:10.938935px;}
._29{width:12.348496px;}
._27{width:14.661830px;}
._f{width:16.300159px;}
._28{width:17.410924px;}
._2d{width:18.613494px;}
._11{width:19.634416px;}
._24{width:21.272745px;}
._c{width:22.845619px;}
._16{width:24.330550px;}
._1f{width:25.673518px;}
._20{width:27.096388px;}
._21{width:29.127297px;}
._12{width:32.205627px;}
._26{width:65.454600px;}
._25{width:80.697600px;}
._1e{width:88.036437px;}
._1b{width:92.353302px;}
._14{width:96.836850px;}
._1d{width:104.465542px;}
._1a{width:107.297202px;}
._23{width:141.840118px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:61.467000px;}
.y70{bottom:106.299000px;}
.y98{bottom:108.285000px;}
.y22{bottom:122.677500px;}
.y6f{bottom:126.622500px;}
.y97{bottom:128.608500px;}
.y21{bottom:143.002500px;}
.y6e{bottom:146.947500px;}
.yb7{bottom:159.738000px;}
.y96{bottom:162.381000px;}
.y20{bottom:163.326000px;}
.y6d{bottom:167.271000px;}
.yb6{bottom:180.063000px;}
.y6c{bottom:187.594500px;}
.y4b{bottom:191.631000px;}
.y95{bottom:196.155000px;}
.y1f{bottom:200.088000px;}
.yb5{bottom:200.386500px;}
.y4a{bottom:211.954500px;}
.y94{bottom:216.478500px;}
.y6b{bottom:224.122500px;}
.y49{bottom:232.278000px;}
.y1e{bottom:236.850000px;}
.yb4{bottom:241.824000px;}
.y93{bottom:250.252500px;}
.y48{bottom:252.601500px;}
.y1d{bottom:257.173500px;}
.yb3{bottom:262.149000px;}
.y92{bottom:270.576000px;}
.y47{bottom:272.925000px;}
.y6a{bottom:275.481000px;}
.yb2{bottom:282.472500px;}
.y1c{bottom:293.935500px;}
.y69{bottom:295.804500px;}
.y91{bottom:301.468500px;}
.yb1{bottom:302.796000px;}
.y46{bottom:309.813000px;}
.y45{bottom:315.790500px;}
.y68{bottom:316.129500px;}
.y44{bottom:321.768000px;}
.yb0{bottom:323.119500px;}
.y1b{bottom:330.697500px;}
.y43{bottom:338.559000px;}
.y90{bottom:345.286500px;}
.y67{bottom:351.622500px;}
.y42{bottom:358.882500px;}
.y8f{bottom:365.611500px;}
.y1a{bottom:367.227000px;}
.y41{bottom:379.207500px;}
.y8e{bottom:385.935000px;}
.y66{bottom:387.114000px;}
.y40{bottom:399.531000px;}
.y8d{bottom:406.258500px;}
.y19{bottom:418.785000px;}
.y65{bottom:419.830500px;}
.y3f{bottom:419.854500px;}
.y8c{bottom:426.582000px;}
.y18{bottom:439.108500px;}
.y64{bottom:440.154000px;}
.y3e{bottom:440.178000px;}
.y8b{bottom:446.905500px;}
.y17{bottom:459.432000px;}
.y63{bottom:460.477500px;}
.y8a{bottom:467.230500px;}
.y3d{bottom:468.718500px;}
.y16{bottom:479.755500px;}
.yc5{bottom:480.585000px;}
.y89{bottom:487.554000px;}
.y3c{bottom:489.042000px;}
.y62{bottom:497.005500px;}
.y15{bottom:500.079000px;}
.yc4{bottom:500.910000px;}
.y88{bottom:507.877500px;}
.yaf{bottom:513.628500px;}
.y14{bottom:520.404000px;}
.yc3{bottom:521.233500px;}
.y87{bottom:528.201000px;}
.y13{bottom:540.727500px;}
.yc2{bottom:541.557000px;}
.y3b{bottom:543.019500px;}
.y61{bottom:548.365500px;}
.yae{bottom:557.448000px;}
.y86{bottom:559.093500px;}
.y3a{bottom:563.343000px;}
.y60{bottom:568.689000px;}
.y12{bottom:577.497000px;}
.yad{bottom:577.771500px;}
.yc1{bottom:582.996000px;}
.y39{bottom:583.666500px;}
.y5f{bottom:589.012500px;}
.y11{bottom:590.478000px;}
.yac{bottom:598.096500px;}
.y85{bottom:602.913000px;}
.yc0{bottom:603.319500px;}
.y5e{bottom:609.336000px;}
.yab{bottom:618.420000px;}
.y38{bottom:621.924000px;}
.y84{bottom:623.236500px;}
.ybf{bottom:623.643000px;}
.y5d{bottom:629.659500px;}
.yaa{bottom:638.743500px;}
.y10{bottom:640.230000px;}
.y83{bottom:643.560000px;}
.y37{bottom:648.225000px;}
.y5c{bottom:649.983000px;}
.y82{bottom:663.883500px;}
.ya9{bottom:675.271500px;}
.yf{bottom:676.758000px;}
.y36{bottom:681.997500px;}
.y81{bottom:684.207000px;}
.y5b{bottom:685.476000px;}
.y80{bottom:704.532000px;}
.y35{bottom:715.771500px;}
.y5a{bottom:720.969000px;}
.y7f{bottom:724.855500px;}
.ya8{bottom:726.829500px;}
.ye{bottom:728.316000px;}
.y59{bottom:741.292500px;}
.yd{bottom:746.248500px;}
.ya7{bottom:747.154500px;}
.y34{bottom:754.027500px;}
.yd3{bottom:755.224500px;}
.y7e{bottom:755.746500px;}
.yc{bottom:764.181000px;}
.ya6{bottom:767.478000px;}
.y58{bottom:772.185000px;}
.y33{bottom:774.352500px;}
.yd2{bottom:775.548000px;}
.yb{bottom:782.113500px;}
.ybe{bottom:787.596000px;}
.ya5{bottom:787.801500px;}
.y32{bottom:794.676000px;}
.yd1{bottom:795.873000px;}
.y7d{bottom:799.566000px;}
.ya{bottom:800.047500px;}
.ya4{bottom:808.125000px;}
.y31{bottom:814.999500px;}
.y57{bottom:815.805000px;}
.yd0{bottom:816.196500px;}
.y9{bottom:817.980000px;}
.y7c{bottom:819.889500px;}
.ya3{bottom:828.448500px;}
.ycf{bottom:830.877000px;}
.ybd{bottom:831.415500px;}
.y8{bottom:835.912500px;}
.y56{bottom:836.128500px;}
.yce{bottom:836.520000px;}
.y7b{bottom:840.214500px;}
.ya2{bottom:848.772000px;}
.y30{bottom:851.527500px;}
.ybc{bottom:851.739000px;}
.y7{bottom:853.845000px;}
.y55{bottom:856.452000px;}
.y7a{bottom:860.538000px;}
.ycd{bottom:866.557500px;}
.ya1{bottom:869.097000px;}
.y6{bottom:871.777500px;}
.ybb{bottom:872.064000px;}
.y79{bottom:880.861500px;}
.ycc{bottom:886.881000px;}
.ya0{bottom:889.420500px;}
.y54{bottom:891.945000px;}
.y5{bottom:899.050500px;}
.y78{bottom:901.185000px;}
.y2f{bottom:903.085500px;}
.ycb{bottom:907.204500px;}
.y9f{bottom:909.744000px;}
.yba{bottom:913.501500px;}
.y2e{bottom:923.409000px;}
.y53{bottom:927.438000px;}
.yca{bottom:927.529500px;}
.y9e{bottom:930.067500px;}
.yb9{bottom:933.825000px;}
.y77{bottom:937.947000px;}
.y2d{bottom:943.734000px;}
.y52{bottom:947.761500px;}
.yc9{bottom:947.853000px;}
.y9d{bottom:950.391000px;}
.yb8{bottom:954.150000px;}
.y4{bottom:959.461500px;}
.y2c{bottom:964.057500px;}
.y51{bottom:968.085000px;}
.yc8{bottom:968.176500px;}
.y9c{bottom:970.716000px;}
.y76{bottom:974.709000px;}
.y2b{bottom:984.381000px;}
.yc7{bottom:988.500000px;}
.y9b{bottom:991.039500px;}
.y3{bottom:996.150000px;}
.y50{bottom:998.977500px;}
.y2a{bottom:1004.704500px;}
.yc6{bottom:1008.823500px;}
.y9a{bottom:1011.363000px;}
.y75{bottom:1011.471000px;}
.y29{bottom:1025.028000px;}
.y2{bottom:1041.616500px;}
.y4f{bottom:1042.597500px;}
.y28{bottom:1045.353000px;}
.y99{bottom:1047.891000px;}
.y74{bottom:1048.234500px;}
.y4e{bottom:1062.921000px;}
.y73{bottom:1068.558000px;}
.y1{bottom:1074.493500px;}
.y27{bottom:1079.125500px;}
.y4d{bottom:1083.244500px;}
.y72{bottom:1088.881500px;}
.y26{bottom:1099.449000px;}
.y4c{bottom:1103.569500px;}
.y71{bottom:1109.205000px;}
.y25{bottom:1119.774000px;}
.y24{bottom:1140.097500px;}
.h4{height:41.663593px;}
.h5{height:44.831700px;}
.ha{height:46.145493px;}
.h7{height:49.090950px;}
.hf{height:50.479715px;}
.h3{height:50.498765px;}
.hc{height:53.798400px;}
.he{height:56.935496px;}
.hb{height:56.941496px;}
.h10{height:57.570699px;}
.h9{height:60.211496px;}
.hd{height:60.217496px;}
.h6{height:64.557900px;}
.h11{height:71.662950px;}
.h2{height:72.511265px;}
.h8{height:114.548184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.x1{left:112.990500px;}
.x11{left:115.266000px;}
.x10{left:119.712000px;}
.x12{left:121.174500px;}
.x9{left:131.704500px;}
.x7{left:147.208500px;}
.xe{left:166.891500px;}
.x6{left:169.624500px;}
.x2{left:183.286500px;}
.xa{left:339.123000px;}
.x3{left:352.594500px;}
.x17{left:359.688000px;}
.x13{left:372.267000px;}
.xc{left:374.539500px;}
.x4{left:375.612000px;}
.x14{left:378.226500px;}
.x15{left:385.182000px;}
.xb{left:387.580500px;}
.x16{left:394.233000px;}
.x5{left:412.038000px;}
.xf{left:416.739000px;}
.xd{left:442.366500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.101333pt;}
.v7{vertical-align:20.064000pt;}
.v4{vertical-align:21.114667pt;}
.v5{vertical-align:22.906667pt;}
.v3{vertical-align:24.021333pt;}
.v2{vertical-align:40.560000pt;}
.v1{vertical-align:99.493333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.002400pt;}
.ls7{letter-spacing:0.011468pt;}
.ls2e{letter-spacing:0.018245pt;}
.ls3b{letter-spacing:0.026453pt;}
.ls14{letter-spacing:1.147694pt;}
.ls2b{letter-spacing:1.629092pt;}
.ls19{letter-spacing:1.803638pt;}
.ls15{letter-spacing:2.638630pt;}
.ls4a{letter-spacing:2.656495pt;}
.ls32{letter-spacing:3.316366pt;}
.ls36{letter-spacing:3.333384pt;}
.ls34{letter-spacing:3.351056pt;}
.ls33{letter-spacing:3.374548pt;}
.ls1b{letter-spacing:3.786350pt;}
.ls8{letter-spacing:3.791684pt;}
.ls43{letter-spacing:4.480004pt;}
.ls3f{letter-spacing:4.538186pt;}
.ls1e{letter-spacing:6.341823pt;}
.ls4b{letter-spacing:6.373308pt;}
.ls6{letter-spacing:9.658190pt;}
.ls48{letter-spacing:9.716372pt;}
.ls38{letter-spacing:11.752737pt;}
.ls39{letter-spacing:11.810919pt;}
.ls5{letter-spacing:11.985465pt;}
.ls3{letter-spacing:12.916374pt;}
.ls42{letter-spacing:13.672739pt;}
.ls2a{letter-spacing:13.730921pt;}
.ls3e{letter-spacing:13.789102pt;}
.ls31{letter-spacing:13.847284pt;}
.ls41{letter-spacing:14.154957pt;}
.ls2c{letter-spacing:14.545467pt;}
.ls27{letter-spacing:15.185467pt;}
.ls2d{letter-spacing:15.301831pt;}
.ls1f{letter-spacing:15.476377pt;}
.ls47{letter-spacing:15.825468pt;}
.ls12{letter-spacing:16.116377pt;}
.ls0{letter-spacing:16.174559pt;}
.ls45{letter-spacing:17.047287pt;}
.ls3d{letter-spacing:17.105469pt;}
.ls40{letter-spacing:17.338196pt;}
.ls16{letter-spacing:17.978197pt;}
.ls28{letter-spacing:18.036379pt;}
.ls29{letter-spacing:18.152742pt;}
.ls4c{letter-spacing:18.792743pt;}
.ls37{letter-spacing:18.816092pt;}
.ls35{letter-spacing:18.821425pt;}
.ls2{letter-spacing:19.374562pt;}
.lsc{letter-spacing:19.432743pt;}
.lsb{letter-spacing:19.490925pt;}
.ls18{letter-spacing:20.247290pt;}
.ls1d{letter-spacing:20.305471pt;}
.ls25{letter-spacing:20.596381pt;}
.ls1c{letter-spacing:20.712745pt;}
.ls2f{letter-spacing:21.236381pt;}
.lsa{letter-spacing:21.294563pt;}
.ls9{letter-spacing:21.410927pt;}
.ls44{letter-spacing:21.992746pt;}
.ls17{letter-spacing:22.050927pt;}
.ls3a{letter-spacing:22.167291pt;}
.ls11{letter-spacing:22.225473pt;}
.ls46{letter-spacing:22.458201pt;}
.ls21{letter-spacing:22.516382pt;}
.ls20{letter-spacing:22.574564pt;}
.ls23{letter-spacing:23.214565pt;}
.lsf{letter-spacing:23.389110pt;}
.lse{letter-spacing:23.447292pt;}
.ls30{letter-spacing:23.910400pt;}
.ls3c{letter-spacing:25.674350pt;}
.ls24{letter-spacing:26.414567pt;}
.ls26{letter-spacing:27.694569pt;}
.ls10{letter-spacing:28.602350pt;}
.ls13{letter-spacing:29.090933pt;}
.ls22{letter-spacing:29.556388pt;}
.ls4{letter-spacing:58.181867pt;}
.ls49{letter-spacing:62.013329pt;}
.ls1{letter-spacing:129.280108pt;}
.ws34{word-spacing:-48.523677pt;}
.ws32{word-spacing:-44.313645pt;}
.wsc{word-spacing:-42.035049pt;}
.ws60{word-spacing:-42.007308pt;}
.ws8c{word-spacing:-34.955665pt;}
.ws8a{word-spacing:-32.337481pt;}
.ws40{word-spacing:-19.925333pt;}
.ws25{word-spacing:-16.162923pt;}
.ws13{word-spacing:-4.235640pt;}
.wsf{word-spacing:-3.246548pt;}
.ws7f{word-spacing:-3.188053pt;}
.ws6d{word-spacing:-2.664729pt;}
.ws10{word-spacing:-2.606548pt;}
.ws46{word-spacing:-2.490184pt;}
.ws47{word-spacing:-2.432002pt;}
.ws6b{word-spacing:-2.373820pt;}
.ws37{word-spacing:-2.315638pt;}
.ws5f{word-spacing:-2.257456pt;}
.ws54{word-spacing:-2.199275pt;}
.ws2{word-spacing:-1.795925pt;}
.ws5c{word-spacing:-1.152001pt;}
.ws4e{word-spacing:-0.977455pt;}
.ws53{word-spacing:-0.744728pt;}
.ws73{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.467578pt;}
.ws71{word-spacing:-0.337455pt;}
.ws5e{word-spacing:-0.221091pt;}
.wsd{word-spacing:-0.058182pt;}
.ws57{word-spacing:-0.046545pt;}
.ws8b{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws30{word-spacing:0.011636pt;}
.ws8e{word-spacing:0.069818pt;}
.ws2e{word-spacing:0.128000pt;}
.ws3{word-spacing:0.170028pt;}
.ws1d{word-spacing:0.244364pt;}
.ws78{word-spacing:0.302546pt;}
.ws14{word-spacing:0.360728pt;}
.ws6e{word-spacing:0.651637pt;}
.ws55{word-spacing:0.768001pt;}
.ws84{word-spacing:0.779637pt;}
.ws66{word-spacing:0.942546pt;}
.ws16{word-spacing:1.175274pt;}
.ws7d{word-spacing:1.291637pt;}
.ws81{word-spacing:1.408001pt;}
.ws68{word-spacing:1.698911pt;}
.ws2f{word-spacing:1.931638pt;}
.ws50{word-spacing:1.989820pt;}
.ws23{word-spacing:2.001456pt;}
.ws49{word-spacing:2.048002pt;}
.ws6a{word-spacing:2.106184pt;}
.ws5d{word-spacing:2.397093pt;}
.ws4{word-spacing:2.614186pt;}
.ws61{word-spacing:2.629820pt;}
.ws62{word-spacing:2.688002pt;}
.ws12{word-spacing:2.746184pt;}
.ws65{word-spacing:2.920730pt;}
.ws5{word-spacing:2.932989pt;}
.ws3c{word-spacing:2.978912pt;}
.wsb{word-spacing:3.211639pt;}
.wse{word-spacing:3.269821pt;}
.ws4f{word-spacing:3.386185pt;}
.ws1{word-spacing:3.443098pt;}
.ws56{word-spacing:3.502548pt;}
.ws3f{word-spacing:3.560730pt;}
.ws2d{word-spacing:3.677094pt;}
.ws8d{word-spacing:3.909821pt;}
.ws3b{word-spacing:3.985067pt;}
.ws3d{word-spacing:4.026185pt;}
.ws7a{word-spacing:4.142549pt;}
.ws80{word-spacing:4.317095pt;}
.ws72{word-spacing:4.433458pt;}
.ws82{word-spacing:4.491640pt;}
.ws45{word-spacing:4.608004pt;}
.ws17{word-spacing:4.782067pt;}
.ws63{word-spacing:4.782549pt;}
.ws0{word-spacing:4.811130pt;}
.ws44{word-spacing:4.840731pt;}
.ws43{word-spacing:4.898913pt;}
.ws27{word-spacing:5.026913pt;}
.ws58{word-spacing:5.073459pt;}
.ws7{word-spacing:5.111478pt;}
.ws70{word-spacing:5.131641pt;}
.ws18{word-spacing:5.189823pt;}
.ws76{word-spacing:5.480732pt;}
.ws41{word-spacing:5.655277pt;}
.ws38{word-spacing:5.713459pt;}
.ws4b{word-spacing:5.725096pt;}
.ws35{word-spacing:5.829823pt;}
.ws39{word-spacing:5.888005pt;}
.ws20{word-spacing:5.899641pt;}
.ws36{word-spacing:5.946187pt;}
.ws2c{word-spacing:5.957823pt;}
.ws21{word-spacing:6.178914pt;}
.ws75{word-spacing:6.295278pt;}
.ws6c{word-spacing:6.411642pt;}
.ws2a{word-spacing:6.423278pt;}
.ws3a{word-spacing:6.469824pt;}
.ws85{word-spacing:6.481460pt;}
.ws59{word-spacing:6.702551pt;}
.ws5a{word-spacing:6.760733pt;}
.ws79{word-spacing:6.818915pt;}
.ws28{word-spacing:6.888733pt;}
.ws48{word-spacing:7.051642pt;}
.ws11{word-spacing:7.109824pt;}
.ws51{word-spacing:7.168006pt;}
.ws1f{word-spacing:7.284370pt;}
.ws87{word-spacing:7.342552pt;}
.ws29{word-spacing:7.354188pt;}
.ws64{word-spacing:7.575279pt;}
.ws89{word-spacing:7.633461pt;}
.ws9{word-spacing:8.246376pt;}
.ws69{word-spacing:8.273461pt;}
.ws86{word-spacing:8.285098pt;}
.ws77{word-spacing:8.389825pt;}
.ws74{word-spacing:9.029826pt;}
.ws6f{word-spacing:9.088008pt;}
.ws7e{word-spacing:9.378917pt;}
.ws3e{word-spacing:9.600008pt;}
.ws1b{word-spacing:9.658190pt;}
.ws67{word-spacing:9.669826pt;}
.ws8{word-spacing:9.680991pt;}
.ws7b{word-spacing:9.844372pt;}
.ws24{word-spacing:9.914190pt;}
.ws26{word-spacing:9.972372pt;}
.ws88{word-spacing:10.251645pt;}
.ws2b{word-spacing:10.670554pt;}
.ws5b{word-spacing:10.775282pt;}
.ws1c{word-spacing:11.182555pt;}
.ws15{word-spacing:11.531646pt;}
.ws7c{word-spacing:12.113465pt;}
.ws52{word-spacing:12.695283pt;}
.ws4c{word-spacing:12.823283pt;}
.ws4d{word-spacing:14.219648pt;}
.ws83{word-spacing:15.825468pt;}
.ws42{word-spacing:19.316380pt;}
.ws4a{word-spacing:21.992746pt;}
.ws22{word-spacing:22.981837pt;}
.ws19{word-spacing:25.774567pt;}
.ws1a{word-spacing:25.832749pt;}
.ws33{word-spacing:47.604403pt;}
.ws31{word-spacing:54.047769pt;}
.wsa{word-spacing:62.166867pt;}
._15{margin-left:-45.464059pt;}
._3{margin-left:-44.530501pt;}
._b{margin-left:-43.076857pt;}
._1{margin-left:-42.143299pt;}
._22{margin-left:-35.897481pt;}
._4{margin-left:-31.179162pt;}
._18{margin-left:-30.260248pt;}
._d{margin-left:-29.090933pt;}
._8{margin-left:-27.948414pt;}
._7{margin-left:-26.460666pt;}
._17{margin-left:-23.636591pt;}
._e{margin-left:-22.693814pt;}
._2c{margin-left:-21.761764pt;}
._a{margin-left:-20.669074pt;}
._2a{margin-left:-7.329170pt;}
._9{margin-left:-5.685324pt;}
._19{margin-left:-4.743810pt;}
._10{margin-left:-3.780076pt;}
._0{margin-left:-2.387202pt;}
._5{margin-left:-1.434614pt;}
._6{width:1.434614pt;}
._2{width:2.387202pt;}
._13{width:3.452662pt;}
._2b{width:5.276233pt;}
._1c{width:9.723498pt;}
._29{width:10.976441pt;}
._27{width:13.032738pt;}
._f{width:14.489030pt;}
._28{width:15.476377pt;}
._2d{width:16.545328pt;}
._11{width:17.452814pt;}
._24{width:18.909107pt;}
._c{width:20.307217pt;}
._16{width:21.627155pt;}
._1f{width:22.820905pt;}
._20{width:24.085678pt;}
._21{width:25.890931pt;}
._12{width:28.627224pt;}
._26{width:58.181867pt;}
._25{width:71.731200pt;}
._1e{width:78.254611pt;}
._1b{width:82.091824pt;}
._14{width:86.077200pt;}
._1d{width:92.858259pt;}
._1a{width:95.375291pt;}
._23{width:126.080105pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:54.637333pt;}
.y70{bottom:94.488000pt;}
.y98{bottom:96.253333pt;}
.y22{bottom:109.046667pt;}
.y6f{bottom:112.553333pt;}
.y97{bottom:114.318667pt;}
.y21{bottom:127.113333pt;}
.y6e{bottom:130.620000pt;}
.yb7{bottom:141.989333pt;}
.y96{bottom:144.338667pt;}
.y20{bottom:145.178667pt;}
.y6d{bottom:148.685333pt;}
.yb6{bottom:160.056000pt;}
.y6c{bottom:166.750667pt;}
.y4b{bottom:170.338667pt;}
.y95{bottom:174.360000pt;}
.y1f{bottom:177.856000pt;}
.yb5{bottom:178.121333pt;}
.y4a{bottom:188.404000pt;}
.y94{bottom:192.425333pt;}
.y6b{bottom:199.220000pt;}
.y49{bottom:206.469333pt;}
.y1e{bottom:210.533333pt;}
.yb4{bottom:214.954667pt;}
.y93{bottom:222.446667pt;}
.y48{bottom:224.534667pt;}
.y1d{bottom:228.598667pt;}
.yb3{bottom:233.021333pt;}
.y92{bottom:240.512000pt;}
.y47{bottom:242.600000pt;}
.y6a{bottom:244.872000pt;}
.yb2{bottom:251.086667pt;}
.y1c{bottom:261.276000pt;}
.y69{bottom:262.937333pt;}
.y91{bottom:267.972000pt;}
.yb1{bottom:269.152000pt;}
.y46{bottom:275.389333pt;}
.y45{bottom:280.702667pt;}
.y68{bottom:281.004000pt;}
.y44{bottom:286.016000pt;}
.yb0{bottom:287.217333pt;}
.y1b{bottom:293.953333pt;}
.y43{bottom:300.941333pt;}
.y90{bottom:306.921333pt;}
.y67{bottom:312.553333pt;}
.y42{bottom:319.006667pt;}
.y8f{bottom:324.988000pt;}
.y1a{bottom:326.424000pt;}
.y41{bottom:337.073333pt;}
.y8e{bottom:343.053333pt;}
.y66{bottom:344.101333pt;}
.y40{bottom:355.138667pt;}
.y8d{bottom:361.118667pt;}
.y19{bottom:372.253333pt;}
.y65{bottom:373.182667pt;}
.y3f{bottom:373.204000pt;}
.y8c{bottom:379.184000pt;}
.y18{bottom:390.318667pt;}
.y64{bottom:391.248000pt;}
.y3e{bottom:391.269333pt;}
.y8b{bottom:397.249333pt;}
.y17{bottom:408.384000pt;}
.y63{bottom:409.313333pt;}
.y8a{bottom:415.316000pt;}
.y3d{bottom:416.638667pt;}
.y16{bottom:426.449333pt;}
.yc5{bottom:427.186667pt;}
.y89{bottom:433.381333pt;}
.y3c{bottom:434.704000pt;}
.y62{bottom:441.782667pt;}
.y15{bottom:444.514667pt;}
.yc4{bottom:445.253333pt;}
.y88{bottom:451.446667pt;}
.yaf{bottom:456.558667pt;}
.y14{bottom:462.581333pt;}
.yc3{bottom:463.318667pt;}
.y87{bottom:469.512000pt;}
.y13{bottom:480.646667pt;}
.yc2{bottom:481.384000pt;}
.y3b{bottom:482.684000pt;}
.y61{bottom:487.436000pt;}
.yae{bottom:495.509333pt;}
.y86{bottom:496.972000pt;}
.y3a{bottom:500.749333pt;}
.y60{bottom:505.501333pt;}
.y12{bottom:513.330667pt;}
.yad{bottom:513.574667pt;}
.yc1{bottom:518.218667pt;}
.y39{bottom:518.814667pt;}
.y5f{bottom:523.566667pt;}
.y11{bottom:524.869333pt;}
.yac{bottom:531.641333pt;}
.y85{bottom:535.922667pt;}
.yc0{bottom:536.284000pt;}
.y5e{bottom:541.632000pt;}
.yab{bottom:549.706667pt;}
.y38{bottom:552.821333pt;}
.y84{bottom:553.988000pt;}
.ybf{bottom:554.349333pt;}
.y5d{bottom:559.697333pt;}
.yaa{bottom:567.772000pt;}
.y10{bottom:569.093333pt;}
.y83{bottom:572.053333pt;}
.y37{bottom:576.200000pt;}
.y5c{bottom:577.762667pt;}
.y82{bottom:590.118667pt;}
.ya9{bottom:600.241333pt;}
.yf{bottom:601.562667pt;}
.y36{bottom:606.220000pt;}
.y81{bottom:608.184000pt;}
.y5b{bottom:609.312000pt;}
.y80{bottom:626.250667pt;}
.y35{bottom:636.241333pt;}
.y5a{bottom:640.861333pt;}
.y7f{bottom:644.316000pt;}
.ya8{bottom:646.070667pt;}
.ye{bottom:647.392000pt;}
.y59{bottom:658.926667pt;}
.yd{bottom:663.332000pt;}
.ya7{bottom:664.137333pt;}
.y34{bottom:670.246667pt;}
.yd3{bottom:671.310667pt;}
.y7e{bottom:671.774667pt;}
.yc{bottom:679.272000pt;}
.ya6{bottom:682.202667pt;}
.y58{bottom:686.386667pt;}
.y33{bottom:688.313333pt;}
.yd2{bottom:689.376000pt;}
.yb{bottom:695.212000pt;}
.ybe{bottom:700.085333pt;}
.ya5{bottom:700.268000pt;}
.y32{bottom:706.378667pt;}
.yd1{bottom:707.442667pt;}
.y7d{bottom:710.725333pt;}
.ya{bottom:711.153333pt;}
.ya4{bottom:718.333333pt;}
.y31{bottom:724.444000pt;}
.y57{bottom:725.160000pt;}
.yd0{bottom:725.508000pt;}
.y9{bottom:727.093333pt;}
.y7c{bottom:728.790667pt;}
.ya3{bottom:736.398667pt;}
.ycf{bottom:738.557333pt;}
.ybd{bottom:739.036000pt;}
.y8{bottom:743.033333pt;}
.y56{bottom:743.225333pt;}
.yce{bottom:743.573333pt;}
.y7b{bottom:746.857333pt;}
.ya2{bottom:754.464000pt;}
.y30{bottom:756.913333pt;}
.ybc{bottom:757.101333pt;}
.y7{bottom:758.973333pt;}
.y55{bottom:761.290667pt;}
.y7a{bottom:764.922667pt;}
.ycd{bottom:770.273333pt;}
.ya1{bottom:772.530667pt;}
.y6{bottom:774.913333pt;}
.ybb{bottom:775.168000pt;}
.y79{bottom:782.988000pt;}
.ycc{bottom:788.338667pt;}
.ya0{bottom:790.596000pt;}
.y54{bottom:792.840000pt;}
.y5{bottom:799.156000pt;}
.y78{bottom:801.053333pt;}
.y2f{bottom:802.742667pt;}
.ycb{bottom:806.404000pt;}
.y9f{bottom:808.661333pt;}
.yba{bottom:812.001333pt;}
.y2e{bottom:820.808000pt;}
.y53{bottom:824.389333pt;}
.yca{bottom:824.470667pt;}
.y9e{bottom:826.726667pt;}
.yb9{bottom:830.066667pt;}
.y77{bottom:833.730667pt;}
.y2d{bottom:838.874667pt;}
.y52{bottom:842.454667pt;}
.yc9{bottom:842.536000pt;}
.y9d{bottom:844.792000pt;}
.yb8{bottom:848.133333pt;}
.y4{bottom:852.854667pt;}
.y2c{bottom:856.940000pt;}
.y51{bottom:860.520000pt;}
.yc8{bottom:860.601333pt;}
.y9c{bottom:862.858667pt;}
.y76{bottom:866.408000pt;}
.y2b{bottom:875.005333pt;}
.yc7{bottom:878.666667pt;}
.y9b{bottom:880.924000pt;}
.y3{bottom:885.466667pt;}
.y50{bottom:887.980000pt;}
.y2a{bottom:893.070667pt;}
.yc6{bottom:896.732000pt;}
.y9a{bottom:898.989333pt;}
.y75{bottom:899.085333pt;}
.y29{bottom:911.136000pt;}
.y2{bottom:925.881333pt;}
.y4f{bottom:926.753333pt;}
.y28{bottom:929.202667pt;}
.y99{bottom:931.458667pt;}
.y74{bottom:931.764000pt;}
.y4e{bottom:944.818667pt;}
.y73{bottom:949.829333pt;}
.y1{bottom:955.105333pt;}
.y27{bottom:959.222667pt;}
.y4d{bottom:962.884000pt;}
.y72{bottom:967.894667pt;}
.y26{bottom:977.288000pt;}
.y4c{bottom:980.950667pt;}
.y71{bottom:985.960000pt;}
.y25{bottom:995.354667pt;}
.y24{bottom:1013.420000pt;}
.h4{height:37.034305pt;}
.h5{height:39.850400pt;}
.ha{height:41.018216pt;}
.h7{height:43.636400pt;}
.hf{height:44.870858pt;}
.h3{height:44.887791pt;}
.hc{height:47.820800pt;}
.he{height:50.609330pt;}
.hb{height:50.614663pt;}
.h10{height:51.173955pt;}
.h9{height:53.521330pt;}
.hd{height:53.526663pt;}
.h6{height:57.384800pt;}
.h11{height:63.700400pt;}
.h2{height:64.454458pt;}
.h8{height:101.820608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.x1{left:100.436000pt;}
.x11{left:102.458667pt;}
.x10{left:106.410667pt;}
.x12{left:107.710667pt;}
.x9{left:117.070667pt;}
.x7{left:130.852000pt;}
.xe{left:148.348000pt;}
.x6{left:150.777333pt;}
.x2{left:162.921333pt;}
.xa{left:301.442667pt;}
.x3{left:313.417333pt;}
.x17{left:319.722667pt;}
.x13{left:330.904000pt;}
.xc{left:332.924000pt;}
.x4{left:333.877333pt;}
.x14{left:336.201333pt;}
.x15{left:342.384000pt;}
.xb{left:344.516000pt;}
.x16{left:350.429333pt;}
.x5{left:366.256000pt;}
.xf{left:370.434667pt;}
.xd{left:393.214667pt;}
}




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