
    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_710362d3d9cba336e7781518.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f55b06aaa2c0f9ff16e9ff82.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51712ac931e827483ef3e500.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.696000;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_54d82f76ce8ac1ac6d09d2b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.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:ff5;src:url('chunks/assets/font_0657a5eb0677d61b7d70dcc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_d458ccceb7a0f86d185743d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_f5376c4f8db14afeebaacc9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.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:ff8;src:url('chunks/assets/font_6aca9ad57aa5b21f6a952bc4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_146a7d8c0d92bebe9435bf6f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3a36793f1131d8a8ed99c9b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.390000;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_5d6c61ffef12e7aa69a8993a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_115dc58e32f8df04949d8bd0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;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_69903620e5e141f738ab08a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.454000;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_1ec73f6c3dd6c34b7065973d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3c9168dfc7c31cc93cc7dee5.woff2')format("woff");}.fff{font-family:fff;line-height:0.664000;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_9d3abca2ea9bccac575b7276.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.399000;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:ff11;src:url('chunks/assets/font_68d2e682af52393d78a344fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.535000;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:ff12;src:url('chunks/assets/font_39e6c85d4ca1dc5342b1c9e7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4bbd129d1bb99b79856d9f65.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v2{vertical-align:-22.855143px;}
.v4{vertical-align:-14.940747px;}
.v3{vertical-align:-8.964448px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.029301px;}
.va{vertical-align:28.681434px;}
.v9{vertical-align:37.693885px;}
.v6{vertical-align:40.436022px;}
.v8{vertical-align:71.895595px;}
.v7{vertical-align:81.442072px;}
.v5{vertical-align:84.286214px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000538px;}
.ls4{letter-spacing:0.001140px;}
.ls20{letter-spacing:0.002245px;}
.ls2d{letter-spacing:0.002338px;}
.ls22{letter-spacing:0.002369px;}
.lsc{letter-spacing:0.002909px;}
.lsa{letter-spacing:0.003172px;}
.ls1c{letter-spacing:0.003181px;}
.ls11{letter-spacing:0.003269px;}
.ls19{letter-spacing:0.003652px;}
.ls28{letter-spacing:0.004200px;}
.ls25{letter-spacing:0.005781px;}
.ls1e{letter-spacing:1.006918px;}
.ls37{letter-spacing:1.612729px;}
.ls31{letter-spacing:1.880917px;}
.ls1f{letter-spacing:2.415029px;}
.ls2e{letter-spacing:2.933243px;}
.ls39{letter-spacing:2.983289px;}
.lsb{letter-spacing:2.984675px;}
.ls0{letter-spacing:2.985064px;}
.ls1{letter-spacing:2.988681px;}
.ls33{letter-spacing:2.988764px;}
.ls34{letter-spacing:2.989290px;}
.lsf{letter-spacing:2.990675px;}
.ls23{letter-spacing:3.995067px;}
.ls15{letter-spacing:4.276797px;}
.ls14{letter-spacing:4.688881px;}
.ls2c{letter-spacing:4.692150px;}
.ls12{letter-spacing:5.409179px;}
.ls1b{letter-spacing:5.921392px;}
.ls2b{letter-spacing:6.513546px;}
.lse{letter-spacing:9.956836px;}
.ls8{letter-spacing:9.962836px;}
.ls7{letter-spacing:13.279202px;}
.ls1a{letter-spacing:13.281002px;}
.ls3b{letter-spacing:13.281933px;}
.ls9{letter-spacing:13.285203px;}
.ls3c{letter-spacing:13.287003px;}
.ls3a{letter-spacing:14.897393px;}
.ls13{letter-spacing:16.267954px;}
.ls6{letter-spacing:16.273954px;}
.ls5{letter-spacing:16.603368px;}
.ls3d{letter-spacing:16.605861px;}
.ls40{letter-spacing:16.608136px;}
.ls38{letter-spacing:18.215559px;}
.lsd{letter-spacing:18.687843px;}
.ls21{letter-spacing:18.693843px;}
.ls16{letter-spacing:19.750168px;}
.ls45{letter-spacing:20.996190px;}
.ls2a{letter-spacing:21.315751px;}
.ls42{letter-spacing:22.012009px;}
.ls30{letter-spacing:22.379987px;}
.ls26{letter-spacing:22.524222px;}
.ls1d{letter-spacing:22.530223px;}
.ls35{letter-spacing:22.827964px;}
.ls3f{letter-spacing:22.916286px;}
.ls36{letter-spacing:23.936337px;}
.ls2f{letter-spacing:24.307830px;}
.ls17{letter-spacing:24.731819px;}
.ls46{letter-spacing:25.330175px;}
.ls41{letter-spacing:25.336175px;}
.ls32{letter-spacing:26.800025px;}
.ls43{letter-spacing:28.346557px;}
.ls3e{letter-spacing:29.884524px;}
.ls3{letter-spacing:29.891672px;}
.ls18{letter-spacing:30.093843px;}
.ls44{letter-spacing:30.766447px;}
.ls47{letter-spacing:46.985971px;}
.ls27{letter-spacing:51.975137px;}
.ls24{letter-spacing:923.342365px;}
.ls29{letter-spacing:1011.204758px;}
.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;}
}
.ws5b{word-spacing:-59.778589px;}
.ws36{word-spacing:-16.606492px;}
.ws9b{word-spacing:-15.279407px;}
.ws70{word-spacing:-3.335645px;}
.ws78{word-spacing:-3.327290px;}
.ws39{word-spacing:-3.326359px;}
.ws3f{word-spacing:-3.320359px;}
.ws2b{word-spacing:-3.275867px;}
.wsa1{word-spacing:-3.036752px;}
.ws98{word-spacing:-2.379188px;}
.wsaa{word-spacing:-1.900959px;}
.ws89{word-spacing:-1.781402px;}
.ws29{word-spacing:-1.661845px;}
.ws17{word-spacing:-1.482509px;}
.ws2a{word-spacing:-1.303173px;}
.ws61{word-spacing:-1.183616px;}
.ws8f{word-spacing:-1.004280px;}
.wsf{word-spacing:-0.995320px;}
.ws24{word-spacing:-0.824945px;}
.ws1a{word-spacing:-0.466273px;}
.ws4a{word-spacing:-0.346716px;}
.ws55{word-spacing:-0.227159px;}
.ws9c{word-spacing:-0.107601px;}
.ws2{word-spacing:-0.071735px;}
.ws37{word-spacing:-0.059779px;}
.ws45{word-spacing:-0.041845px;}
.ws59{word-spacing:-0.015472px;}
.ws28{word-spacing:0.000000px;}
.ws76{word-spacing:0.011956px;}
.wsa7{word-spacing:0.131513px;}
.ws8{word-spacing:0.242105px;}
.ws2f{word-spacing:0.430406px;}
.ws12{word-spacing:0.549963px;}
.wsa5{word-spacing:0.609742px;}
.ws95{word-spacing:0.848856px;}
.ws91{word-spacing:1.147749px;}
.ws47{word-spacing:1.267306px;}
.ws65{word-spacing:1.386863px;}
.ws6f{word-spacing:1.446642px;}
.ws83{word-spacing:1.506420px;}
.ws5{word-spacing:1.533331px;}
.ws35{word-spacing:1.625978px;}
.ws60{word-spacing:1.736900px;}
.ws57{word-spacing:1.745535px;}
.ws32{word-spacing:1.805313px;}
.wsc{word-spacing:1.856138px;}
.ws67{word-spacing:1.865092px;}
.ws9{word-spacing:1.909939px;}
.ws31{word-spacing:1.984649px;}
.ws75{word-spacing:2.044428px;}
.wsa{word-spacing:2.071342px;}
.ws16{word-spacing:2.104206px;}
.ws92{word-spacing:2.163985px;}
.ws62{word-spacing:2.223764px;}
.ws5f{word-spacing:2.283542px;}
.ws7{word-spacing:2.340347px;}
.ws14{word-spacing:2.522656px;}
.ws19{word-spacing:2.881328px;}
.wsa4{word-spacing:2.941107px;}
.wsd{word-spacing:3.093563px;}
.ws7b{word-spacing:3.120442px;}
.ws33{word-spacing:3.180221px;}
.ws1c{word-spacing:3.240000px;}
.ws82{word-spacing:3.296164px;}
.ws7d{word-spacing:3.297187px;}
.ws23{word-spacing:3.299778px;}
.wsab{word-spacing:3.319451px;}
.ws7f{word-spacing:3.349943px;}
.ws49{word-spacing:3.359557px;}
.ws51{word-spacing:3.419335px;}
.ws44{word-spacing:3.718228px;}
.ws93{word-spacing:3.837785px;}
.ws15{word-spacing:3.897564px;}
.ws94{word-spacing:4.076900px;}
.ws1f{word-spacing:4.136678px;}
.ws20{word-spacing:4.316014px;}
.ws6d{word-spacing:4.336108px;}
.ws58{word-spacing:4.375793px;}
.ws4e{word-spacing:4.614907px;}
.ws5d{word-spacing:4.693569px;}
.ws5e{word-spacing:4.734464px;}
.wsa9{word-spacing:4.794243px;}
.ws25{word-spacing:4.854021px;}
.ws7a{word-spacing:4.913800px;}
.ws63{word-spacing:4.973579px;}
.ws18{word-spacing:5.033357px;}
.ws13{word-spacing:5.272472px;}
.ws2e{word-spacing:5.392029px;}
.ws4d{word-spacing:5.690922px;}
.ws1e{word-spacing:5.810479px;}
.ws6c{word-spacing:5.870257px;}
.wsb{word-spacing:5.891219px;}
.ws21{word-spacing:5.989815px;}
.ws64{word-spacing:6.049593px;}
.wsa3{word-spacing:6.061549px;}
.wsa0{word-spacing:6.121327px;}
.ws22{word-spacing:6.169150px;}
.ws97{word-spacing:6.228929px;}
.ws90{word-spacing:6.288708px;}
.ws3{word-spacing:6.310868px;}
.ws4{word-spacing:6.364669px;}
.ws86{word-spacing:6.468043px;}
.ws85{word-spacing:6.647379px;}
.ws6{word-spacing:6.859639px;}
.ws43{word-spacing:6.886493px;}
.ws84{word-spacing:6.946272px;}
.ws72{word-spacing:7.050442px;}
.ws56{word-spacing:7.185386px;}
.ws1d{word-spacing:7.245165px;}
.ws6a{word-spacing:7.304944px;}
.wsa6{word-spacing:7.316899px;}
.ws4f{word-spacing:7.364722px;}
.ws8a{word-spacing:7.424501px;}
.ws74{word-spacing:7.484279px;}
.ws71{word-spacing:7.544058px;}
.ws52{word-spacing:7.603836px;}
.ws54{word-spacing:7.663615px;}
.ws8e{word-spacing:7.842951px;}
.ws96{word-spacing:7.902729px;}
.ws9f{word-spacing:8.022287px;}
.ws6b{word-spacing:8.249445px;}
.ws8b{word-spacing:8.261401px;}
.ws50{word-spacing:8.321180px;}
.ws87{word-spacing:8.620073px;}
.ws80{word-spacing:8.739630px;}
.ws81{word-spacing:8.746329px;}
.ws99{word-spacing:8.799408px;}
.ws48{word-spacing:9.038523px;}
.ws26{word-spacing:9.397194px;}
.wsa2{word-spacing:9.893284px;}
.wsa8{word-spacing:9.895151px;}
.ws5c{word-spacing:9.915043px;}
.ws69{word-spacing:9.923246px;}
.ws1b{word-spacing:9.935201px;}
.ws2c{word-spacing:10.054759px;}
.ws42{word-spacing:10.174316px;}
.ws68{word-spacing:10.234094px;}
.ws9e{word-spacing:10.425386px;}
.ws88{word-spacing:10.592766px;}
.ws27{word-spacing:10.712323px;}
.ws9a{word-spacing:11.142729px;}
.ws34{word-spacing:11.609002px;}
.ws66{word-spacing:12.027452px;}
.ws4b{word-spacing:12.147009px;}
.ws4c{word-spacing:12.206788px;}
.ws9d{word-spacing:12.685017px;}
.ws30{word-spacing:12.744795px;}
.ws40{word-spacing:13.213331px;}
.ws3c{word-spacing:13.219331px;}
.ws11{word-spacing:13.342581px;}
.ws5a{word-spacing:15.336473px;}
.ws3a{word-spacing:16.227358px;}
.ws7c{word-spacing:19.866261px;}
.ws7e{word-spacing:21.461665px;}
.wse{word-spacing:22.481162px;}
.ws3b{word-spacing:22.631790px;}
.ws3e{word-spacing:23.353275px;}
.ws38{word-spacing:23.359275px;}
.ws73{word-spacing:23.542685px;}
.ws6e{word-spacing:23.895741px;}
.ws1{word-spacing:26.828810px;}
.ws53{word-spacing:32.194482px;}
.ws0{word-spacing:38.633289px;}
.ws2d{word-spacing:41.835611px;}
.ws8d{word-spacing:57.519352px;}
.ws10{word-spacing:96.755610px;}
.ws8c{word-spacing:152.869205px;}
.ws77{word-spacing:377.573522px;}
.ws41{word-spacing:539.513719px;}
.ws3d{word-spacing:543.578663px;}
.ws79{word-spacing:554.817038px;}
.ws46{word-spacing:727.338045px;}
._4{margin-left:-30.511576px;}
._24{margin-left:-7.615652px;}
._3{margin-left:-6.157046px;}
._2{margin-left:-4.540894px;}
._0{margin-left:-3.202225px;}
._1{margin-left:-1.284868px;}
._7{width:1.332311px;}
._9{width:2.392680px;}
._1f{width:4.247978px;}
._21{width:5.304151px;}
._19{width:6.516537px;}
._22{width:14.645754px;}
._5{width:15.873850px;}
._16{width:16.950557px;}
._2c{width:18.132820px;}
._e{width:19.487077px;}
._c{width:20.839071px;}
._20{width:22.041117px;}
._8{width:23.431844px;}
._f{width:24.598518px;}
._b{width:26.183022px;}
._d{width:28.215494px;}
._13{width:29.623618px;}
._14{width:31.545912px;}
._a{width:33.315590px;}
._12{width:34.355506px;}
._6{width:35.771367px;}
._1e{width:37.690029px;}
._11{width:39.005009px;}
._23{width:40.085951px;}
._1d{width:41.546119px;}
._2b{width:42.658752px;}
._1a{width:44.039637px;}
._15{width:45.610320px;}
._10{width:47.194676px;}
._2a{width:48.958664px;}
._1b{width:52.198301px;}
._1c{width:53.275058px;}
._18{width:54.379351px;}
._17{width:96.841692px;}
._26{width:115.706402px;}
._27{width:143.948758px;}
._29{width:146.441525px;}
._28{width:163.793728px;}
._25{width:218.669530px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.889294px;}
.fs3{font-size:35.867393px;}
.fs8{font-size:41.844892px;}
.fs2{font-size:47.822991px;}
.fs4{font-size:53.801090px;}
.fs6{font-size:59.778589px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.734787px;}
.fs5{font-size:86.081504px;}
.fs0{font-size:103.297565px;}
.y0{bottom:0.000000px;}
.y34{bottom:22.740000px;}
.y33{bottom:107.977657px;}
.y32{bottom:125.911054px;}
.y31{bottom:143.844450px;}
.ycc{bottom:145.941555px;}
.y62{bottom:149.276222px;}
.y93{bottom:151.592338px;}
.y30{bottom:161.777847px;}
.ycb{bottom:163.874952px;}
.y61{bottom:167.209618px;}
.y2f{bottom:179.712743px;}
.yca{bottom:181.809848px;}
.y60{bottom:185.144515px;}
.ybb{bottom:196.590087px;}
.y2e{bottom:197.646140px;}
.yc9{bottom:199.743245px;}
.y92{bottom:200.373276px;}
.y5f{bottom:203.077912px;}
.y2d{bottom:215.579537px;}
.yc8{bottom:217.676642px;}
.y5e{bottom:221.011308px;}
.yba{bottom:229.386227px;}
.y91{bottom:231.220819px;}
.y2c{bottom:233.512933px;}
.yc7{bottom:235.610038px;}
.y5d{bottom:238.944705px;}
.yb9{bottom:247.319624px;}
.y2b{bottom:251.446330px;}
.yc6{bottom:253.543435px;}
.y5c{bottom:256.878102px;}
.yb8{bottom:265.253020px;}
.y2a{bottom:269.379727px;}
.yc5{bottom:271.476831px;}
.y5b{bottom:274.811498px;}
.y90{bottom:277.420129px;}
.yb7{bottom:283.784947px;}
.y29{bottom:287.314623px;}
.yc4{bottom:289.411728px;}
.ye2{bottom:291.429329px;}
.y5a{bottom:292.746395px;}
.y28{bottom:305.248020px;}
.y8f{bottom:305.684542px;}
.yc3{bottom:307.345125px;}
.ye1{bottom:309.362726px;}
.yb6{bottom:316.719093px;}
.y27{bottom:323.181417px;}
.y8e{bottom:323.617938px;}
.yc2{bottom:325.278521px;}
.y59{bottom:325.623539px;}
.ye0{bottom:327.296122px;}
.yb5{bottom:334.652490px;}
.y26{bottom:341.114813px;}
.y8d{bottom:341.551335px;}
.yc1{bottom:343.211918px;}
.yb4{bottom:352.587387px;}
.ydf{bottom:357.186617px;}
.y58{bottom:358.502182px;}
.y25{bottom:359.048210px;}
.y8c{bottom:359.486232px;}
.yc0{bottom:361.145315px;}
.yb3{bottom:370.520783px;}
.yde{bottom:375.120013px;}
.y24{bottom:376.981606px;}
.y8b{bottom:377.419628px;}
.ybf{bottom:379.078711px;}
.yb2{bottom:388.454180px;}
.y57{bottom:391.380826px;}
.ydd{bottom:393.053410px;}
.y23{bottom:394.916503px;}
.y8a{bottom:395.353025px;}
.yb1{bottom:406.387577px;}
.y56{bottom:409.314223px;}
.y22{bottom:412.849900px;}
.y89{bottom:413.286422px;}
.ybe{bottom:414.651490px;}
.ydc{bottom:422.942404px;}
.yb0{bottom:424.320973px;}
.y55{bottom:427.247620px;}
.y21{bottom:430.783296px;}
.y88{bottom:431.219818px;}
.ydb{bottom:440.875801px;}
.yaf{bottom:442.254370px;}
.y54{bottom:445.182516px;}
.y20{bottom:448.716693px;}
.y87{bottom:449.153215px;}
.yae{bottom:460.189267px;}
.ybd{bottom:466.278071px;}
.y1f{bottom:466.650090px;}
.y86{bottom:467.088112px;}
.yda{bottom:470.766295px;}
.y53{bottom:475.071511px;}
.yad{bottom:478.122663px;}
.y1e{bottom:484.584986px;}
.y85{bottom:485.021508px;}
.yd9{bottom:488.699692px;}
.yac{bottom:496.056060px;}
.y1d{bottom:502.518383px;}
.y84{bottom:502.954905px;}
.y52{bottom:504.960505px;}
.yd8{bottom:506.633089px;}
.yab{bottom:513.989456px;}
.y1c{bottom:520.451780px;}
.y83{bottom:520.888301px;}
.y51{bottom:522.893902px;}
.yaa{bottom:531.922853px;}
.yd7{bottom:536.522083px;}
.y1b{bottom:538.385176px;}
.y82{bottom:538.821698px;}
.y50{bottom:540.828798px;}
.ya9{bottom:549.856250px;}
.yd6{bottom:554.455480px;}
.y81{bottom:556.755095px;}
.y4f{bottom:567.728143px;}
.ya8{bottom:567.791146px;}
.y1a{bottom:573.126913px;}
.y80{bottom:574.689991px;}
.yd5{bottom:584.345974px;}
.y4e{bottom:585.661540px;}
.ya7{bottom:585.724543px;}
.yd4{bottom:602.279371px;}
.y7f{bottom:602.954405px;}
.y4d{bottom:603.596437px;}
.ya6{bottom:620.466280px;}
.y7e{bottom:620.887801px;}
.y4c{bottom:621.529833px;}
.y19{bottom:621.660340px;}
.yd3{bottom:632.168365px;}
.y18{bottom:638.099662px;}
.y4b{bottom:639.463230px;}
.y7d{bottom:649.965255px;}
.yd2{bottom:650.101762px;}
.y17{bottom:663.042909px;}
.y4a{bottom:666.364075px;}
.yd1{bottom:668.036658px;}
.ya5{bottom:669.433228px;}
.y7c{bottom:678.229668px;}
.y16{bottom:679.482231px;}
.yd0{bottom:685.970055px;}
.y49{bottom:693.263420px;}
.y15{bottom:695.921553px;}
.y7b{bottom:696.163065px;}
.ya4{bottom:698.267670px;}
.y48{bottom:711.198316px;}
.y14{bottom:712.360875px;}
.y7a{bottom:714.096461px;}
.ycf{bottom:715.859049px;}
.ya3{bottom:727.100611px;}
.y13{bottom:728.800196px;}
.y47{bottom:729.131713px;}
.y79{bottom:732.029858px;}
.yce{bottom:733.792446px;}
.y12{bottom:745.239518px;}
.y46{bottom:747.065110px;}
.y78{bottom:749.964755px;}
.ya2{bottom:755.935053px;}
.y11{bottom:761.678840px;}
.y45{bottom:764.998506px;}
.y77{bottom:767.898151px;}
.ycd{bottom:769.365225px;}
.y10{bottom:778.118162px;}
.ya1{bottom:778.791696px;}
.y76{bottom:785.831548px;}
.yf{bottom:794.557484px;}
.y44{bottom:797.877150px;}
.ya0{bottom:799.185216px;}
.y75{bottom:809.811747px;}
.ye{bottom:810.995306px;}
.y74{bottom:819.224717px;}
.y9f{bottom:819.580235px;}
.ybc{bottom:820.990306px;}
.yd{bottom:829.264719px;}
.y43{bottom:830.755794px;}
.y73{bottom:838.785695px;}
.y9e{bottom:839.975255px;}
.y42{bottom:848.689191px;}
.y9d{bottom:860.370275px;}
.yc{bottom:863.442428px;}
.y41{bottom:866.622587px;}
.y71{bottom:866.757594px;}
.y72{bottom:867.099611px;}
.y9c{bottom:878.303671px;}
.yb{bottom:879.881750px;}
.y40{bottom:884.555984px;}
.y6e{bottom:884.732993px;}
.y9b{bottom:898.698691px;}
.y70{bottom:898.931203px;}
.ya{bottom:902.034858px;}
.y3f{bottom:902.489380px;}
.y6f{bottom:903.413427px;}
.y9{bottom:912.760394px;}
.y9a{bottom:919.093711px;}
.y3e{bottom:920.424277px;}
.y6d{bottom:929.370725px;}
.y8{bottom:934.913502px;}
.y3d{bottom:938.357674px;}
.y99{bottom:939.488730px;}
.y7{bottom:951.352824px;}
.y98{bottom:957.422127px;}
.y6b{bottom:958.104661px;}
.y6{bottom:962.078360px;}
.y6c{bottom:968.354674px;}
.y6a{bottom:968.356174px;}
.y3c{bottom:973.930452px;}
.y97{bottom:977.817147px;}
.y5{bottom:984.231467px;}
.y96{bottom:1000.672289px;}
.y3b{bottom:1000.829797px;}
.y4{bottom:1009.900751px;}
.y69{bottom:1011.624337px;}
.y95{bottom:1029.506731px;}
.y68{bottom:1029.557734px;}
.y3{bottom:1030.823797px;}
.y67{bottom:1047.491130px;}
.y3a{bottom:1050.251268px;}
.y94{bottom:1058.341173px;}
.y2{bottom:1059.218717px;}
.y66{bottom:1065.424527px;}
.y39{bottom:1068.184665px;}
.y65{bottom:1083.357923px;}
.y38{bottom:1086.119562px;}
.y1{bottom:1092.097360px;}
.y64{bottom:1101.292820px;}
.y37{bottom:1104.052958px;}
.y36{bottom:1121.986355px;}
.y63{bottom:1136.034557px;}
.y35{bottom:1139.919751px;}
.h12{height:2.391144px;}
.h5{height:24.210490px;}
.h11{height:29.040355px;}
.h6{height:33.195272px;}
.h8{height:37.660763px;}
.h7{height:40.350817px;}
.h15{height:41.665676px;}
.hf{height:42.143905px;}
.ha{height:44.833942px;}
.hc{height:44.839942px;}
.hb{height:49.090950px;}
.h3{height:57.831590px;}
.h4{height:57.837591px;}
.h9{height:64.561128px;}
.h13{height:66.734240px;}
.h2{height:77.473173px;}
.h14{height:82.485824px;}
.hd{height:86.677358px;}
.h10{height:100.935950px;}
.he{height:123.585977px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:107.986499px;}
.x3{left:111.742687px;}
.x1{left:113.082254px;}
.x2a{left:116.181409px;}
.x29{left:118.154007px;}
.x7{left:123.303765px;}
.x11{left:130.403620px;}
.xa{left:139.395069px;}
.x13{left:144.301815px;}
.xf{left:145.348867px;}
.xb{left:150.015600px;}
.x24{left:162.161708px;}
.xe{left:166.084404px;}
.x25{left:187.076453px;}
.x5{left:196.703935px;}
.x26{left:206.173908px;}
.x8{left:208.584529px;}
.x28{left:222.829241px;}
.x23{left:225.629881px;}
.x15{left:266.109405px;}
.x14{left:267.127956px;}
.x2{left:269.949597px;}
.x16{left:313.064752px;}
.x27{left:324.180308px;}
.x9{left:344.071303px;}
.x6{left:347.600979px;}
.x1c{left:357.916995px;}
.x17{left:359.465072px;}
.xc{left:368.785038px;}
.x21{left:379.882593px;}
.x1e{left:400.472623px;}
.x1d{left:405.878893px;}
.x4{left:410.229110px;}
.xd{left:416.017900px;}
.x22{left:424.026800px;}
.x18{left:425.312365px;}
.x1f{left:431.725185px;}
.x12{left:434.184000px;}
.x20{left:448.703034px;}
.x19{left:453.453772px;}
.x1a{left:481.122655px;}
.x1b{left:765.838390px;}
@media print{
.v2{vertical-align:-20.315682pt;}
.v4{vertical-align:-13.280664pt;}
.v3{vertical-align:-7.968398pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.137157pt;}
.va{vertical-align:25.494608pt;}
.v9{vertical-align:33.505675pt;}
.v6{vertical-align:35.943130pt;}
.v8{vertical-align:63.907195pt;}
.v7{vertical-align:72.392953pt;}
.v5{vertical-align:74.921079pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000479pt;}
.ls4{letter-spacing:0.001014pt;}
.ls20{letter-spacing:0.001995pt;}
.ls2d{letter-spacing:0.002079pt;}
.ls22{letter-spacing:0.002105pt;}
.lsc{letter-spacing:0.002585pt;}
.lsa{letter-spacing:0.002820pt;}
.ls1c{letter-spacing:0.002828pt;}
.ls11{letter-spacing:0.002906pt;}
.ls19{letter-spacing:0.003246pt;}
.ls28{letter-spacing:0.003734pt;}
.ls25{letter-spacing:0.005139pt;}
.ls1e{letter-spacing:0.895038pt;}
.ls37{letter-spacing:1.433537pt;}
.ls31{letter-spacing:1.671926pt;}
.ls1f{letter-spacing:2.146693pt;}
.ls2e{letter-spacing:2.607327pt;}
.ls39{letter-spacing:2.651813pt;}
.lsb{letter-spacing:2.653044pt;}
.ls0{letter-spacing:2.653391pt;}
.ls1{letter-spacing:2.656606pt;}
.ls33{letter-spacing:2.656679pt;}
.ls34{letter-spacing:2.657146pt;}
.lsf{letter-spacing:2.658378pt;}
.ls23{letter-spacing:3.551171pt;}
.ls15{letter-spacing:3.801597pt;}
.ls14{letter-spacing:4.167894pt;}
.ls2c{letter-spacing:4.170800pt;}
.ls12{letter-spacing:4.808159pt;}
.ls1b{letter-spacing:5.263460pt;}
.ls2b{letter-spacing:5.789819pt;}
.lse{letter-spacing:8.850521pt;}
.ls8{letter-spacing:8.855855pt;}
.ls7{letter-spacing:11.803735pt;}
.ls1a{letter-spacing:11.805335pt;}
.ls3b{letter-spacing:11.806163pt;}
.ls9{letter-spacing:11.809069pt;}
.ls3c{letter-spacing:11.810669pt;}
.ls3a{letter-spacing:13.242127pt;}
.ls13{letter-spacing:14.460403pt;}
.ls6{letter-spacing:14.465737pt;}
.ls5{letter-spacing:14.758550pt;}
.ls3d{letter-spacing:14.760765pt;}
.ls40{letter-spacing:14.762788pt;}
.ls38{letter-spacing:16.191608pt;}
.lsd{letter-spacing:16.611416pt;}
.ls21{letter-spacing:16.616749pt;}
.ls16{letter-spacing:17.555705pt;}
.ls45{letter-spacing:18.663280pt;}
.ls2a{letter-spacing:18.947334pt;}
.ls42{letter-spacing:19.566230pt;}
.ls30{letter-spacing:19.893321pt;}
.ls26{letter-spacing:20.021531pt;}
.ls1d{letter-spacing:20.026865pt;}
.ls35{letter-spacing:20.291524pt;}
.ls3f{letter-spacing:20.370032pt;}
.ls36{letter-spacing:21.276744pt;}
.ls2f{letter-spacing:21.606960pt;}
.ls17{letter-spacing:21.983840pt;}
.ls46{letter-spacing:22.515711pt;}
.ls41{letter-spacing:22.521045pt;}
.ls32{letter-spacing:23.822244pt;}
.ls43{letter-spacing:25.196940pt;}
.ls3e{letter-spacing:26.564021pt;}
.ls3{letter-spacing:26.570375pt;}
.ls18{letter-spacing:26.750083pt;}
.ls44{letter-spacing:27.347953pt;}
.ls47{letter-spacing:41.765307pt;}
.ls27{letter-spacing:46.200122pt;}
.ls24{letter-spacing:820.748769pt;}
.ls29{letter-spacing:898.848674pt;}
.ws5b{word-spacing:-53.136523pt;}
.ws36{word-spacing:-14.761326pt;}
.ws9b{word-spacing:-13.581695pt;}
.ws70{word-spacing:-2.965018pt;}
.ws78{word-spacing:-2.957591pt;}
.ws39{word-spacing:-2.956763pt;}
.ws3f{word-spacing:-2.951430pt;}
.ws2b{word-spacing:-2.911881pt;}
.wsa1{word-spacing:-2.699335pt;}
.ws98{word-spacing:-2.114834pt;}
.wsaa{word-spacing:-1.689741pt;}
.ws89{word-spacing:-1.583468pt;}
.ws29{word-spacing:-1.477195pt;}
.ws17{word-spacing:-1.317786pt;}
.ws2a{word-spacing:-1.158376pt;}
.ws61{word-spacing:-1.052103pt;}
.ws8f{word-spacing:-0.892694pt;}
.wsf{word-spacing:-0.884729pt;}
.ws24{word-spacing:-0.733284pt;}
.ws1a{word-spacing:-0.414465pt;}
.ws4a{word-spacing:-0.308192pt;}
.ws55{word-spacing:-0.201919pt;}
.ws9c{word-spacing:-0.095646pt;}
.ws2{word-spacing:-0.063764pt;}
.ws37{word-spacing:-0.053137pt;}
.ws45{word-spacing:-0.037195pt;}
.ws59{word-spacing:-0.013753pt;}
.ws28{word-spacing:0.000000pt;}
.ws76{word-spacing:0.010627pt;}
.wsa7{word-spacing:0.116900pt;}
.ws8{word-spacing:0.215204pt;}
.ws2f{word-spacing:0.382583pt;}
.ws12{word-spacing:0.488856pt;}
.wsa5{word-spacing:0.541993pt;}
.ws95{word-spacing:0.754539pt;}
.ws91{word-spacing:1.020221pt;}
.ws47{word-spacing:1.126494pt;}
.ws65{word-spacing:1.232767pt;}
.ws6f{word-spacing:1.285904pt;}
.ws83{word-spacing:1.339040pt;}
.ws5{word-spacing:1.362961pt;}
.ws35{word-spacing:1.445313pt;}
.ws60{word-spacing:1.543911pt;}
.ws57{word-spacing:1.551586pt;}
.ws32{word-spacing:1.604723pt;}
.wsc{word-spacing:1.649900pt;}
.ws67{word-spacing:1.657860pt;}
.ws9{word-spacing:1.697723pt;}
.ws31{word-spacing:1.764133pt;}
.ws75{word-spacing:1.817269pt;}
.wsa{word-spacing:1.841193pt;}
.ws16{word-spacing:1.870406pt;}
.ws92{word-spacing:1.923542pt;}
.ws62{word-spacing:1.976679pt;}
.ws5f{word-spacing:2.029815pt;}
.ws7{word-spacing:2.080309pt;}
.ws14{word-spacing:2.242361pt;}
.ws19{word-spacing:2.561180pt;}
.wsa4{word-spacing:2.614317pt;}
.wsd{word-spacing:2.749833pt;}
.ws7b{word-spacing:2.773727pt;}
.ws33{word-spacing:2.826863pt;}
.ws1c{word-spacing:2.880000pt;}
.ws82{word-spacing:2.929924pt;}
.ws7d{word-spacing:2.930833pt;}
.ws23{word-spacing:2.933136pt;}
.wsab{word-spacing:2.950623pt;}
.ws7f{word-spacing:2.977727pt;}
.ws49{word-spacing:2.986273pt;}
.ws51{word-spacing:3.039409pt;}
.ws44{word-spacing:3.305092pt;}
.ws93{word-spacing:3.411365pt;}
.ws15{word-spacing:3.464501pt;}
.ws94{word-spacing:3.623911pt;}
.ws1f{word-spacing:3.677047pt;}
.ws20{word-spacing:3.836457pt;}
.ws6d{word-spacing:3.854319pt;}
.ws58{word-spacing:3.889594pt;}
.ws4e{word-spacing:4.102140pt;}
.ws5d{word-spacing:4.172061pt;}
.ws5e{word-spacing:4.208413pt;}
.wsa9{word-spacing:4.261549pt;}
.ws25{word-spacing:4.314686pt;}
.ws7a{word-spacing:4.367822pt;}
.ws63{word-spacing:4.420959pt;}
.ws18{word-spacing:4.474095pt;}
.ws13{word-spacing:4.686641pt;}
.ws2e{word-spacing:4.792914pt;}
.ws4d{word-spacing:5.058597pt;}
.ws1e{word-spacing:5.164870pt;}
.ws6c{word-spacing:5.218007pt;}
.wsb{word-spacing:5.236639pt;}
.ws21{word-spacing:5.324280pt;}
.ws64{word-spacing:5.377416pt;}
.wsa3{word-spacing:5.388043pt;}
.wsa0{word-spacing:5.441180pt;}
.ws22{word-spacing:5.483689pt;}
.ws97{word-spacing:5.536826pt;}
.ws90{word-spacing:5.589962pt;}
.ws3{word-spacing:5.609660pt;}
.ws4{word-spacing:5.657484pt;}
.ws86{word-spacing:5.749372pt;}
.ws85{word-spacing:5.908781pt;}
.ws6{word-spacing:6.097457pt;}
.ws43{word-spacing:6.121327pt;}
.ws84{word-spacing:6.174464pt;}
.ws72{word-spacing:6.267059pt;}
.ws56{word-spacing:6.387010pt;}
.ws1d{word-spacing:6.440147pt;}
.ws6a{word-spacing:6.493283pt;}
.wsa6{word-spacing:6.503910pt;}
.ws4f{word-spacing:6.546420pt;}
.ws8a{word-spacing:6.599556pt;}
.ws74{word-spacing:6.652693pt;}
.ws71{word-spacing:6.705829pt;}
.ws52{word-spacing:6.758966pt;}
.ws54{word-spacing:6.812102pt;}
.ws8e{word-spacing:6.971512pt;}
.ws96{word-spacing:7.024648pt;}
.ws9f{word-spacing:7.130921pt;}
.ws6b{word-spacing:7.332840pt;}
.ws8b{word-spacing:7.343468pt;}
.ws50{word-spacing:7.396604pt;}
.ws87{word-spacing:7.662287pt;}
.ws80{word-spacing:7.768560pt;}
.ws81{word-spacing:7.774515pt;}
.ws99{word-spacing:7.821696pt;}
.ws48{word-spacing:8.034242pt;}
.ws26{word-spacing:8.353061pt;}
.wsa2{word-spacing:8.794030pt;}
.wsa8{word-spacing:8.795690pt;}
.ws5c{word-spacing:8.813371pt;}
.ws69{word-spacing:8.820663pt;}
.ws1b{word-spacing:8.831290pt;}
.ws2c{word-spacing:8.937563pt;}
.ws42{word-spacing:9.043836pt;}
.ws68{word-spacing:9.096973pt;}
.ws9e{word-spacing:9.267010pt;}
.ws88{word-spacing:9.415792pt;}
.ws27{word-spacing:9.522065pt;}
.ws9a{word-spacing:9.904648pt;}
.ws34{word-spacing:10.319113pt;}
.ws66{word-spacing:10.691069pt;}
.ws4b{word-spacing:10.797342pt;}
.ws4c{word-spacing:10.850478pt;}
.ws9d{word-spacing:11.275570pt;}
.ws30{word-spacing:11.328707pt;}
.ws40{word-spacing:11.745183pt;}
.ws3c{word-spacing:11.750517pt;}
.ws11{word-spacing:11.860072pt;}
.ws5a{word-spacing:13.632420pt;}
.ws3a{word-spacing:14.424318pt;}
.ws7c{word-spacing:17.658898pt;}
.ws7e{word-spacing:19.077036pt;}
.wse{word-spacing:19.983255pt;}
.ws3b{word-spacing:20.117146pt;}
.ws3e{word-spacing:20.758466pt;}
.ws38{word-spacing:20.763800pt;}
.ws73{word-spacing:20.926831pt;}
.ws6e{word-spacing:21.240659pt;}
.ws1{word-spacing:23.847831pt;}
.ws53{word-spacing:28.617318pt;}
.ws0{word-spacing:34.340701pt;}
.ws2d{word-spacing:37.187210pt;}
.ws8d{word-spacing:51.128313pt;}
.ws10{word-spacing:86.004987pt;}
.ws8c{word-spacing:135.883738pt;}
.ws77{word-spacing:335.620909pt;}
.ws41{word-spacing:479.567751pt;}
.ws3d{word-spacing:483.181034pt;}
.ws79{word-spacing:493.170701pt;}
.ws46{word-spacing:646.522707pt;}
._4{margin-left:-27.121401pt;}
._24{margin-left:-6.769468pt;}
._3{margin-left:-5.472930pt;}
._2{margin-left:-4.036350pt;}
._0{margin-left:-2.846422pt;}
._1{margin-left:-1.142105pt;}
._7{width:1.184277pt;}
._9{width:2.126826pt;}
._1f{width:3.775981pt;}
._21{width:4.714801pt;}
._19{width:5.792477pt;}
._22{width:13.018448pt;}
._5{width:14.110089pt;}
._16{width:15.067162pt;}
._2c{width:16.118062pt;}
._e{width:17.321846pt;}
._c{width:18.523618pt;}
._20{width:19.592104pt;}
._8{width:20.828305pt;}
._f{width:21.865349pt;}
._b{width:23.273797pt;}
._d{width:25.080439pt;}
._13{width:26.332105pt;}
._14{width:28.040811pt;}
._a{width:29.613858pt;}
._12{width:30.538228pt;}
._6{width:31.796771pt;}
._1e{width:33.502248pt;}
._11{width:34.671119pt;}
._23{width:35.631956pt;}
._1d{width:36.929884pt;}
._2b{width:37.918891pt;}
._1a{width:39.146344pt;}
._15{width:40.542507pt;}
._10{width:41.950823pt;}
._2a{width:43.518813pt;}
._1b{width:46.398489pt;}
._1c{width:47.355607pt;}
._18{width:48.337201pt;}
._17{width:86.081504pt;}
._26{width:102.850136pt;}
._27{width:127.954452pt;}
._29{width:130.170245pt;}
._28{width:145.594425pt;}
._25{width:194.372916pt;}
.fs9{font-size:26.568262pt;}
.fs3{font-size:31.882127pt;}
.fs8{font-size:37.195460pt;}
.fs2{font-size:42.509325pt;}
.fs4{font-size:47.823191pt;}
.fs6{font-size:53.136523pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.764255pt;}
.fs5{font-size:76.516892pt;}
.fs0{font-size:91.820057pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:20.213333pt;}
.y33{bottom:95.980139pt;}
.y32{bottom:111.920936pt;}
.y31{bottom:127.861733pt;}
.ycc{bottom:129.725827pt;}
.y62{bottom:132.689975pt;}
.y93{bottom:134.748744pt;}
.y30{bottom:143.802530pt;}
.ycb{bottom:145.666624pt;}
.y61{bottom:148.630772pt;}
.y2f{bottom:159.744661pt;}
.yca{bottom:161.608754pt;}
.y60{bottom:164.572902pt;}
.ybb{bottom:174.746744pt;}
.y2e{bottom:175.685458pt;}
.yc9{bottom:177.549551pt;}
.y92{bottom:178.109579pt;}
.y5f{bottom:180.513699pt;}
.y2d{bottom:191.626255pt;}
.yc8{bottom:193.490348pt;}
.y5e{bottom:196.454496pt;}
.yba{bottom:203.898868pt;}
.y91{bottom:205.529617pt;}
.y2c{bottom:207.567052pt;}
.yc7{bottom:209.431145pt;}
.y5d{bottom:212.395293pt;}
.yb9{bottom:219.839665pt;}
.y2b{bottom:223.507849pt;}
.yc6{bottom:225.371942pt;}
.y5c{bottom:228.336090pt;}
.yb8{bottom:235.780462pt;}
.y2a{bottom:239.448646pt;}
.yc5{bottom:241.312739pt;}
.y5b{bottom:244.276887pt;}
.y90{bottom:246.595670pt;}
.yb7{bottom:252.253286pt;}
.y29{bottom:255.390776pt;}
.yc4{bottom:257.254869pt;}
.ye2{bottom:259.048292pt;}
.y5a{bottom:260.219018pt;}
.y28{bottom:271.331573pt;}
.y8f{bottom:271.719593pt;}
.yc3{bottom:273.195666pt;}
.ye1{bottom:274.989089pt;}
.yb6{bottom:281.528083pt;}
.y27{bottom:287.272370pt;}
.y8e{bottom:287.660390pt;}
.yc2{bottom:289.136463pt;}
.y59{bottom:289.443145pt;}
.ye0{bottom:290.929886pt;}
.yb5{bottom:297.468880pt;}
.y26{bottom:303.213167pt;}
.y8d{bottom:303.601187pt;}
.yc1{bottom:305.077260pt;}
.yb4{bottom:313.411010pt;}
.ydf{bottom:317.499215pt;}
.y58{bottom:318.668607pt;}
.y25{bottom:319.153964pt;}
.y8c{bottom:319.543317pt;}
.yc0{bottom:321.018057pt;}
.yb3{bottom:329.351807pt;}
.yde{bottom:333.440012pt;}
.y24{bottom:335.094761pt;}
.y8b{bottom:335.484114pt;}
.ybf{bottom:336.958854pt;}
.yb2{bottom:345.292604pt;}
.y57{bottom:347.894068pt;}
.ydd{bottom:349.380809pt;}
.y23{bottom:351.036892pt;}
.y8a{bottom:351.424911pt;}
.yb1{bottom:361.233401pt;}
.y56{bottom:363.834865pt;}
.y22{bottom:366.977689pt;}
.y89{bottom:367.365708pt;}
.ybe{bottom:368.579102pt;}
.ydc{bottom:375.948804pt;}
.yb0{bottom:377.174198pt;}
.y55{bottom:379.775662pt;}
.y21{bottom:382.918486pt;}
.y88{bottom:383.306505pt;}
.ydb{bottom:391.889601pt;}
.yaf{bottom:393.114995pt;}
.y54{bottom:395.717792pt;}
.y20{bottom:398.859283pt;}
.y87{bottom:399.247302pt;}
.yae{bottom:409.057126pt;}
.ybd{bottom:414.469396pt;}
.y1f{bottom:414.800080pt;}
.y86{bottom:415.189432pt;}
.yda{bottom:418.458929pt;}
.y53{bottom:422.285787pt;}
.yad{bottom:424.997923pt;}
.y1e{bottom:430.742210pt;}
.y85{bottom:431.130229pt;}
.yd9{bottom:434.399726pt;}
.yac{bottom:440.938720pt;}
.y1d{bottom:446.683007pt;}
.y84{bottom:447.071026pt;}
.y52{bottom:448.853782pt;}
.yd8{bottom:450.340523pt;}
.yab{bottom:456.879517pt;}
.y1c{bottom:462.623804pt;}
.y83{bottom:463.011823pt;}
.y51{bottom:464.794579pt;}
.yaa{bottom:472.820314pt;}
.yd7{bottom:476.908518pt;}
.y1b{bottom:478.564601pt;}
.y82{bottom:478.952620pt;}
.y50{bottom:480.736710pt;}
.ya9{bottom:488.761111pt;}
.yd6{bottom:492.849315pt;}
.y81{bottom:494.893417pt;}
.y4f{bottom:504.647238pt;}
.ya8{bottom:504.703241pt;}
.y1a{bottom:509.446145pt;}
.y80{bottom:510.835548pt;}
.yd5{bottom:519.418644pt;}
.y4e{bottom:520.588035pt;}
.ya7{bottom:520.644038pt;}
.yd4{bottom:535.359441pt;}
.y7f{bottom:535.959471pt;}
.y4d{bottom:536.530166pt;}
.ya6{bottom:551.525582pt;}
.y7e{bottom:551.900268pt;}
.y4c{bottom:552.470963pt;}
.y19{bottom:552.586969pt;}
.yd3{bottom:561.927436pt;}
.y18{bottom:567.199699pt;}
.y4b{bottom:568.411760pt;}
.y7d{bottom:577.746893pt;}
.yd2{bottom:577.868233pt;}
.y17{bottom:589.371474pt;}
.y4a{bottom:592.323622pt;}
.yd1{bottom:593.810363pt;}
.ya5{bottom:595.051758pt;}
.y7c{bottom:602.870816pt;}
.y16{bottom:603.984205pt;}
.yd0{bottom:609.751160pt;}
.y49{bottom:616.234151pt;}
.y15{bottom:618.596936pt;}
.y7b{bottom:618.811613pt;}
.ya4{bottom:620.682373pt;}
.y48{bottom:632.176281pt;}
.y14{bottom:633.209666pt;}
.y7a{bottom:634.752410pt;}
.ycf{bottom:636.319155pt;}
.ya3{bottom:646.311655pt;}
.y13{bottom:647.822397pt;}
.y47{bottom:648.117078pt;}
.y79{bottom:650.693207pt;}
.yce{bottom:652.259952pt;}
.y12{bottom:662.435127pt;}
.y46{bottom:664.057875pt;}
.y78{bottom:666.635337pt;}
.ya2{bottom:671.942269pt;}
.y11{bottom:677.047858pt;}
.y45{bottom:679.998672pt;}
.y77{bottom:682.576134pt;}
.ycd{bottom:683.880200pt;}
.y10{bottom:691.660589pt;}
.ya1{bottom:692.259285pt;}
.y76{bottom:698.516931pt;}
.yf{bottom:706.273319pt;}
.y44{bottom:709.224133pt;}
.ya0{bottom:710.386858pt;}
.y75{bottom:719.832664pt;}
.ye{bottom:720.884716pt;}
.y74{bottom:728.199749pt;}
.y9f{bottom:728.515765pt;}
.ybc{bottom:729.769161pt;}
.yd{bottom:737.124195pt;}
.y43{bottom:738.449595pt;}
.y73{bottom:745.587285pt;}
.y9e{bottom:746.644671pt;}
.y42{bottom:754.390392pt;}
.y9d{bottom:764.773577pt;}
.yc{bottom:767.504381pt;}
.y41{bottom:770.331189pt;}
.y71{bottom:770.451195pt;}
.y72{bottom:770.755210pt;}
.y9c{bottom:780.714374pt;}
.yb{bottom:782.117111pt;}
.y40{bottom:786.271986pt;}
.y6e{bottom:786.429327pt;}
.y9b{bottom:798.843281pt;}
.y70{bottom:799.049958pt;}
.ya{bottom:801.808762pt;}
.y3f{bottom:802.212783pt;}
.y6f{bottom:803.034157pt;}
.y9{bottom:811.342572pt;}
.y9a{bottom:816.972187pt;}
.y3e{bottom:818.154913pt;}
.y6d{bottom:826.107311pt;}
.y8{bottom:831.034224pt;}
.y3d{bottom:834.095710pt;}
.y99{bottom:835.101094pt;}
.y7{bottom:845.646954pt;}
.y98{bottom:851.041891pt;}
.y6b{bottom:851.648588pt;}
.y6{bottom:855.180764pt;}
.y6c{bottom:860.759710pt;}
.y6a{bottom:860.761043pt;}
.y3c{bottom:865.715958pt;}
.y97{bottom:869.170797pt;}
.y5{bottom:874.872415pt;}
.y96{bottom:889.486479pt;}
.y3b{bottom:889.626486pt;}
.y4{bottom:897.689556pt;}
.y69{bottom:899.221633pt;}
.y95{bottom:915.117094pt;}
.y68{bottom:915.162430pt;}
.y3{bottom:916.287819pt;}
.y67{bottom:931.103227pt;}
.y3a{bottom:933.556683pt;}
.y94{bottom:940.747709pt;}
.y2{bottom:941.527748pt;}
.y66{bottom:947.044024pt;}
.y39{bottom:949.497480pt;}
.y65{bottom:962.984821pt;}
.y38{bottom:965.439610pt;}
.y1{bottom:970.753209pt;}
.y64{bottom:978.926951pt;}
.y37{bottom:981.380407pt;}
.y36{bottom:997.321204pt;}
.y63{bottom:1009.808495pt;}
.y35{bottom:1013.262001pt;}
.h12{height:2.125461pt;}
.h5{height:21.520436pt;}
.h11{height:25.813649pt;}
.h6{height:29.506909pt;}
.h8{height:33.476234pt;}
.h7{height:35.867393pt;}
.h15{height:37.036157pt;}
.hf{height:37.461249pt;}
.ha{height:39.852393pt;}
.hc{height:39.857726pt;}
.hb{height:43.636400pt;}
.h3{height:51.405858pt;}
.h4{height:51.411192pt;}
.h9{height:57.387669pt;}
.h13{height:59.319324pt;}
.h2{height:68.865043pt;}
.h14{height:73.320733pt;}
.hd{height:77.046540pt;}
.h10{height:89.720844pt;}
.he{height:109.854202pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:95.987999pt;}
.x3{left:99.326833pt;}
.x1{left:100.517559pt;}
.x2a{left:103.272363pt;}
.x29{left:105.025784pt;}
.x7{left:109.603347pt;}
.x11{left:115.914329pt;}
.xa{left:123.906728pt;}
.x13{left:128.268280pt;}
.xf{left:129.198993pt;}
.xb{left:133.347200pt;}
.x24{left:144.143740pt;}
.xe{left:147.630581pt;}
.x25{left:166.290181pt;}
.x5{left:174.847942pt;}
.x26{left:183.265696pt;}
.x8{left:185.408470pt;}
.x28{left:198.070436pt;}
.x23{left:200.559894pt;}
.x15{left:236.541693pt;}
.x14{left:237.447072pt;}
.x2{left:239.955197pt;}
.x16{left:278.279780pt;}
.x27{left:288.160274pt;}
.x9{left:305.841158pt;}
.x6{left:308.978648pt;}
.x1c{left:318.148440pt;}
.x17{left:319.524509pt;}
.xc{left:327.808923pt;}
.x21{left:337.673416pt;}
.x1e{left:355.975665pt;}
.x1d{left:360.781238pt;}
.x4{left:364.648098pt;}
.xd{left:369.793689pt;}
.x22{left:376.912711pt;}
.x18{left:378.055435pt;}
.x1f{left:383.755720pt;}
.x12{left:385.941333pt;}
.x20{left:398.847141pt;}
.x19{left:403.070019pt;}
.x1a{left:427.664582pt;}
.x1b{left:680.745236pt;}
}




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