
    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_0672f41e0ec2d3713b961d08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d34801ca27a55344338e3b63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5fa718a10be8b3c2cc7d9633.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_04eb72617bcdb350f438dd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.308000;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_f22258112eef08fce0a7b19d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697000;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_ea097c5fcf4b32dc5822a6a9.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_dda86bc323a3a08725ba0256.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_f7a070b428db20d370362a0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_b8191b917713907408e56980.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_67e6b729c4c781945a4c69bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_0794990829a0efe92cb15a4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.723000;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_34171f6ff95aca38315f70ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.522000;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_5a8d6f274d14d1aa83d02c04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.841000;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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.510000px;}
.v1{vertical-align:21.690000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004738px;}
.ls0{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.990525px;}
.lsa{letter-spacing:6.516305px;}
.ls9{letter-spacing:9.960538px;}
.lsc{letter-spacing:19.322400px;}
.ls8{letter-spacing:21.420532px;}
.lsb{letter-spacing:25.836305px;}
.lse{letter-spacing:26.270525px;}
.lsd{letter-spacing:26.540400px;}
.ls4{letter-spacing:30.630532px;}
.ls3{letter-spacing:30.636532px;}
.ls6{letter-spacing:31.994525px;}
.ls7{letter-spacing:32.000525px;}
.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;}
}
.ws8e{word-spacing:-16.605662px;}
.ws64{word-spacing:-15.359443px;}
.ws60{word-spacing:-3.335478px;}
.ws18{word-spacing:-2.917049px;}
.wse7{word-spacing:-2.716819px;}
.ws25{word-spacing:-2.558396px;}
.ws7a{word-spacing:-2.080191px;}
.wsab{word-spacing:-2.020415px;}
.wsc3{word-spacing:-1.960640px;}
.ws4b{word-spacing:-1.900864px;}
.ws88{word-spacing:-1.781313px;}
.ws20{word-spacing:-1.661762px;}
.ws32{word-spacing:-1.542210px;}
.wsea{word-spacing:-1.533254px;}
.wsbe{word-spacing:-1.482435px;}
.wsfd{word-spacing:-1.425658px;}
.ws98{word-spacing:-1.123781px;}
.ws8a{word-spacing:-1.064006px;}
.ws22{word-spacing:-0.765128px;}
.ws6e{word-spacing:-0.705352px;}
.ws31{word-spacing:-0.645576px;}
.ws6c{word-spacing:-0.346698px;}
.wsc6{word-spacing:-0.286923px;}
.wsec{word-spacing:-0.134496px;}
.ws33{word-spacing:-0.107596px;}
.wsed{word-spacing:-0.080698px;}
.wsb1{word-spacing:-0.059776px;}
.wse3{word-spacing:-0.053798px;}
.wsc5{word-spacing:-0.047820px;}
.ws2{word-spacing:-0.041843px;}
.ws1f{word-spacing:0.000000px;}
.ws29{word-spacing:0.011955px;}
.ws44{word-spacing:0.131506px;}
.wsdd{word-spacing:0.191282px;}
.ws27{word-spacing:0.310833px;}
.ws89{word-spacing:0.430384px;}
.ws7b{word-spacing:0.549936px;}
.wsa6{word-spacing:0.609711px;}
.ws3d{word-spacing:0.669487px;}
.wsee{word-spacing:0.672480px;}
.ws3b{word-spacing:0.681130px;}
.wsa9{word-spacing:0.729262px;}
.wsf8{word-spacing:0.887674px;}
.ws6f{word-spacing:0.908589px;}
.wse5{word-spacing:0.941472px;}
.ws70{word-spacing:0.968365px;}
.wse4{word-spacing:0.995270px;}
.wsa{word-spacing:1.049069px;}
.ws5d{word-spacing:1.147692px;}
.wsa8{word-spacing:1.207467px;}
.ws74{word-spacing:1.267243px;}
.ws16{word-spacing:1.327018px;}
.ws8b{word-spacing:1.386794px;}
.ws17{word-spacing:1.506345px;}
.ws1a{word-spacing:1.566121px;}
.ws93{word-spacing:1.625896px;}
.ws59{word-spacing:1.685672px;}
.ws62{word-spacing:1.745448px;}
.ws2a{word-spacing:1.864999px;}
.wscd{word-spacing:1.924774px;}
.ws24{word-spacing:1.984550px;}
.ws39{word-spacing:2.044326px;}
.wsb5{word-spacing:2.104101px;}
.ws21{word-spacing:2.163877px;}
.ws38{word-spacing:2.223652px;}
.ws1e{word-spacing:2.343204px;}
.ws68{word-spacing:2.402979px;}
.ws13{word-spacing:2.447827px;}
.ws47{word-spacing:2.462755px;}
.wsde{word-spacing:2.522530px;}
.wsa0{word-spacing:2.701857px;}
.wsef{word-spacing:2.932013px;}
.wsd8{word-spacing:2.940960px;}
.ws82{word-spacing:3.000735px;}
.ws3{word-spacing:3.039610px;}
.ws84{word-spacing:3.060511px;}
.ws4{word-spacing:3.093408px;}
.wscf{word-spacing:3.120286px;}
.wsb2{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws30{word-spacing:3.359389px;}
.wsac{word-spacing:3.431119px;}
.ws7{word-spacing:3.469997px;}
.ws54{word-spacing:3.658267px;}
.ws3c{word-spacing:3.670222px;}
.ws78{word-spacing:3.718042px;}
.wsc2{word-spacing:3.777818px;}
.ws2d{word-spacing:3.837594px;}
.wsc{word-spacing:3.846586px;}
.ws6b{word-spacing:4.076696px;}
.ws28{word-spacing:4.136472px;}
.wsa7{word-spacing:4.148427px;}
.wscc{word-spacing:4.256023px;}
.wsc9{word-spacing:4.315798px;}
.ws45{word-spacing:4.375574px;}
.wsf{word-spacing:4.384570px;}
.ws49{word-spacing:4.435350px;}
.ws11{word-spacing:4.492166px;}
.ws9e{word-spacing:4.495125px;}
.ws36{word-spacing:4.614676px;}
.wsaf{word-spacing:4.674452px;}
.ws40{word-spacing:4.734228px;}
.ws12{word-spacing:4.761158px;}
.wsc8{word-spacing:4.794003px;}
.wsf0{word-spacing:4.868755px;}
.ws6d{word-spacing:4.913554px;}
.wsb6{word-spacing:4.925509px;}
.wsca{word-spacing:4.973330px;}
.wsbd{word-spacing:4.985285px;}
.wscb{word-spacing:5.033106px;}
.wsd{word-spacing:5.083949px;}
.ws19{word-spacing:5.092881px;}
.wsc4{word-spacing:5.152657px;}
.wsc1{word-spacing:5.212432px;}
.ws23{word-spacing:5.272208px;}
.ws55{word-spacing:5.391759px;}
.wsd5{word-spacing:5.451535px;}
.ws4c{word-spacing:5.511310px;}
.ws94{word-spacing:5.630862px;}
.ws81{word-spacing:5.750413px;}
.ws34{word-spacing:5.810188px;}
.ws2b{word-spacing:5.929740px;}
.wsbf{word-spacing:5.989515px;}
.wsb3{word-spacing:6.001470px;}
.ws26{word-spacing:6.049291px;}
.wsb{word-spacing:6.052320px;}
.ws99{word-spacing:6.109066px;}
.ws5c{word-spacing:6.168842px;}
.wsbb{word-spacing:6.180101px;}
.ws3e{word-spacing:6.228618px;}
.ws4a{word-spacing:6.288393px;}
.ws52{word-spacing:6.348169px;}
.ws97{word-spacing:6.401748px;}
.ws9b{word-spacing:6.407944px;}
.ws6{word-spacing:6.428909px;}
.ws46{word-spacing:6.527496px;}
.ws35{word-spacing:6.587271px;}
.wsf3{word-spacing:6.590304px;}
.ws9f{word-spacing:6.647047px;}
.wsd2{word-spacing:6.706822px;}
.wsfc{word-spacing:6.805498px;}
.wsc0{word-spacing:6.826374px;}
.ws9a{word-spacing:6.859296px;}
.ws1c{word-spacing:6.945925px;}
.wsf1{word-spacing:7.020691px;}
.ws5f{word-spacing:7.065476px;}
.wsd4{word-spacing:7.125252px;}
.wsd7{word-spacing:7.185027px;}
.ws9d{word-spacing:7.244803px;}
.wsf4{word-spacing:7.289683px;}
.wsf5{word-spacing:7.343482px;}
.wsc7{word-spacing:7.364354px;}
.wsad{word-spacing:7.424130px;}
.ws41{word-spacing:7.483905px;}
.wsdf{word-spacing:7.543681px;}
.ws4d{word-spacing:7.603456px;}
.ws6a{word-spacing:7.663232px;}
.wse{word-spacing:7.666272px;}
.ws69{word-spacing:7.723008px;}
.ws83{word-spacing:7.742631px;}
.wse6{word-spacing:7.773869px;}
.ws2c{word-spacing:7.842559px;}
.wsfe{word-spacing:7.881466px;}
.wsd6{word-spacing:7.962110px;}
.wsb4{word-spacing:7.999975px;}
.ws67{word-spacing:8.021886px;}
.ws71{word-spacing:8.141437px;}
.ws48{word-spacing:8.201212px;}
.ws73{word-spacing:8.380539px;}
.ws9{word-spacing:8.473248px;}
.ws65{word-spacing:8.500090px;}
.wsa1{word-spacing:8.532123px;}
.ws7c{word-spacing:8.559866px;}
.wsfa{word-spacing:8.580845px;}
.wsa2{word-spacing:8.637581px;}
.wseb{word-spacing:8.688442px;}
.wsbc{word-spacing:8.751148px;}
.ws86{word-spacing:8.786433px;}
.wsce{word-spacing:8.798968px;}
.ws96{word-spacing:8.870699px;}
.ws66{word-spacing:8.978295px;}
.wsb7{word-spacing:9.157622px;}
.ws2f{word-spacing:9.277173px;}
.ws10{word-spacing:9.334022px;}
.wsdb{word-spacing:9.336949px;}
.ws3a{word-spacing:9.456500px;}
.wsd9{word-spacing:9.576051px;}
.ws77{word-spacing:9.635827px;}
.ws8f{word-spacing:9.687897px;}
.ws8c{word-spacing:9.695602px;}
.ws4f{word-spacing:9.755378px;}
.wsa4{word-spacing:9.934705px;}
.ws4e{word-spacing:10.054256px;}
.wsd0{word-spacing:10.114032px;}
.wsdc{word-spacing:10.353134px;}
.ws1d{word-spacing:10.412910px;}
.wsb0{word-spacing:10.487901px;}
.ws37{word-spacing:10.532461px;}
.ws85{word-spacing:10.538278px;}
.ws87{word-spacing:10.544486px;}
.wsd1{word-spacing:10.592236px;}
.wsb9{word-spacing:10.723743px;}
.wsfb{word-spacing:10.732781px;}
.ws51{word-spacing:10.771563px;}
.ws72{word-spacing:10.831339px;}
.wse2{word-spacing:10.840378px;}
.ws7d{word-spacing:10.891114px;}
.wsba{word-spacing:10.950890px;}
.ws53{word-spacing:11.189992px;}
.ws79{word-spacing:11.249768px;}
.ws76{word-spacing:11.369319px;}
.wsf2{word-spacing:11.432160px;}
.ws50{word-spacing:11.548646px;}
.wsf7{word-spacing:11.754950px;}
.ws2e{word-spacing:11.787748px;}
.wsf6{word-spacing:11.808749px;}
.ws43{word-spacing:11.847524px;}
.ws91{word-spacing:11.892123px;}
.ws92{word-spacing:11.897736px;}
.ws7f{word-spacing:11.967075px;}
.wsf9{word-spacing:11.970144px;}
.ws95{word-spacing:12.089943px;}
.ws56{word-spacing:12.206178px;}
.ws1b{word-spacing:12.265953px;}
.ws63{word-spacing:12.385504px;}
.wsd3{word-spacing:12.624607px;}
.wsaa{word-spacing:12.817662px;}
.ws9c{word-spacing:12.983260px;}
.ws42{word-spacing:13.162587px;}
.ws57{word-spacing:13.280877px;}
.wsa5{word-spacing:13.521241px;}
.ws8{word-spacing:13.584096px;}
.wsae{word-spacing:13.891849px;}
.ws3f{word-spacing:14.007830px;}
.ws7e{word-spacing:14.238548px;}
.wsb8{word-spacing:14.250503px;}
.ws80{word-spacing:14.656977px;}
.ws8d{word-spacing:15.510123px;}
.ws90{word-spacing:15.621581px;}
.ws61{word-spacing:15.673162px;}
.ws5b{word-spacing:15.732938px;}
.wsa3{word-spacing:15.756123px;}
.wse8{word-spacing:16.543008px;}
.wse9{word-spacing:16.596806px;}
.wse0{word-spacing:20.127857px;}
.wse1{word-spacing:21.385198px;}
.ws58{word-spacing:21.758318px;}
.ws15{word-spacing:22.834279px;}
.ws75{word-spacing:26.827469px;}
.ws5e{word-spacing:27.197898px;}
.wsda{word-spacing:27.713208px;}
.ws5{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
.ws5a{word-spacing:32.287236px;}
.ws14{word-spacing:80.625869px;}
._1a{margin-left:-29.172889px;}
._18{margin-left:-27.522776px;}
._1f{margin-left:-26.070220px;}
._5{margin-left:-6.025421px;}
._3{margin-left:-4.500542px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.596314px;}
._4{width:1.542516px;}
._1{width:2.668393px;}
._e{width:3.825638px;}
._17{width:14.988330px;}
._a{width:17.953320px;}
._f{width:19.363300px;}
._d{width:21.770437px;}
._b{width:23.536973px;}
._8{width:24.606038px;}
._12{width:27.081360px;}
._c{width:28.157321px;}
._7{width:29.926067px;}
._14{width:31.697061px;}
._13{width:33.330860px;}
._10{width:37.610502px;}
._16{width:38.719159px;}
._1d{width:40.556290px;}
._1e{width:47.618680px;}
._1b{width:49.633339px;}
._1c{width:51.169998px;}
._19{width:64.603986px;}
._6{width:68.741940px;}
._11{width:80.697600px;}
._15{width:142.996147px;}
._9{width:170.648525px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4b{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y71{bottom:199.330500px;}
.y112{bottom:206.173500px;}
.y25{bottom:211.549500px;}
.y70{bottom:215.769000px;}
.y111{bottom:222.135000px;}
.y24{bottom:229.482000px;}
.y95{bottom:229.801500px;}
.y6f{bottom:232.207500px;}
.y110{bottom:238.572000px;}
.y23{bottom:247.414500px;}
.y94{bottom:247.734000px;}
.ye2{bottom:248.644500px;}
.y6e{bottom:252.879000px;}
.y10f{bottom:254.533500px;}
.y22{bottom:265.347000px;}
.y93{bottom:265.666500px;}
.y6d{bottom:270.811500px;}
.y10e{bottom:270.972000px;}
.ye1{bottom:271.396500px;}
.y21{bottom:283.279500px;}
.y92{bottom:283.599000px;}
.y10d{bottom:286.933500px;}
.ye0{bottom:289.330500px;}
.y6c{bottom:296.088000px;}
.y4a{bottom:301.212000px;}
.y20{bottom:301.213500px;}
.y91{bottom:301.531500px;}
.ybe{bottom:301.840500px;}
.y10c{bottom:303.372000px;}
.ydf{bottom:307.263000px;}
.y1f{bottom:319.146000px;}
.y10b{bottom:319.332000px;}
.y90{bottom:319.465500px;}
.ybd{bottom:319.773000px;}
.y10a{bottom:335.770500px;}
.y6b{bottom:336.307500px;}
.y1e{bottom:337.078500px;}
.y8f{bottom:337.398000px;}
.ybc{bottom:337.705500px;}
.yde{bottom:342.675000px;}
.y109{bottom:351.732000px;}
.y6a{bottom:354.240000px;}
.y1d{bottom:355.011000px;}
.y8e{bottom:355.330500px;}
.ybb{bottom:355.638000px;}
.ydd{bottom:360.607500px;}
.y108{bottom:368.170500px;}
.y69{bottom:372.172500px;}
.y49{bottom:372.943500px;}
.y8d{bottom:373.263000px;}
.yba{bottom:373.570500px;}
.ydc{bottom:378.540000px;}
.y107{bottom:384.130500px;}
.ya3{bottom:385.750500px;}
.y1c{bottom:387.010500px;}
.y68{bottom:390.105000px;}
.y48{bottom:390.876000px;}
.y8c{bottom:391.195500px;}
.yb9{bottom:391.504500px;}
.ydb{bottom:396.472500px;}
.y106{bottom:400.569000px;}
.y67{bottom:408.037500px;}
.y47{bottom:408.808500px;}
.y85{bottom:408.810000px;}
.yb8{bottom:409.437000px;}
.yda{bottom:414.406500px;}
.y105{bottom:416.530500px;}
.y8b{bottom:422.679000px;}
.y66{bottom:424.818000px;}
.y1b{bottom:424.987500px;}
.y46{bottom:426.742500px;}
.yb7{bottom:427.369500px;}
.ya2{bottom:431.434500px;}
.yd9{bottom:432.339000px;}
.y104{bottom:432.969000px;}
.y65{bottom:442.750500px;}
.y45{bottom:444.675000px;}
.yb6{bottom:445.302000px;}
.y103{bottom:448.929000px;}
.ya1{bottom:449.367000px;}
.yd8{bottom:450.271500px;}
.y64{bottom:460.683000px;}
.y44{bottom:462.607500px;}
.yb5{bottom:463.234500px;}
.y102{bottom:465.367500px;}
.ya0{bottom:467.301000px;}
.yd7{bottom:468.204000px;}
.y8a{bottom:469.107000px;}
.y1a{bottom:477.424500px;}
.y63{bottom:478.615500px;}
.y43{bottom:480.540000px;}
.yb4{bottom:481.168500px;}
.y101{bottom:481.329000px;}
.y9f{bottom:485.233500px;}
.yd6{bottom:486.136500px;}
.y89{bottom:487.039500px;}
.y19{bottom:493.863000px;}
.y62{bottom:496.549500px;}
.y100{bottom:497.767500px;}
.y42{bottom:498.472500px;}
.yc5{bottom:498.474000px;}
.yb3{bottom:499.728000px;}
.y9e{bottom:503.166000px;}
.yd5{bottom:504.069000px;}
.y88{bottom:504.972000px;}
.y18{bottom:510.301500px;}
.y61{bottom:513.328500px;}
.yff{bottom:513.727500px;}
.y41{bottom:516.406500px;}
.yb2{bottom:517.660500px;}
.y9d{bottom:521.098500px;}
.yd4{bottom:522.003000px;}
.y87{bottom:522.904500px;}
.y84{bottom:525.939000px;}
.y17{bottom:526.740000px;}
.yfe{bottom:530.166000px;}
.y60{bottom:531.261000px;}
.y40{bottom:534.339000px;}
.yb1{bottom:535.593000px;}
.y9c{bottom:539.202000px;}
.yd3{bottom:539.935500px;}
.y16{bottom:543.178500px;}
.yfd{bottom:546.127500px;}
.y5f{bottom:549.193500px;}
.y3f{bottom:552.271500px;}
.yb0{bottom:553.527000px;}
.y9b{bottom:557.134500px;}
.yd2{bottom:557.868000px;}
.y83{bottom:559.383000px;}
.y15{bottom:559.617000px;}
.yfc{bottom:562.566000px;}
.yc4{bottom:564.045000px;}
.y5e{bottom:567.127500px;}
.y3e{bottom:570.204000px;}
.yaf{bottom:571.459500px;}
.y9a{bottom:575.067000px;}
.y86{bottom:575.118000px;}
.yd1{bottom:575.800500px;}
.y14{bottom:576.055500px;}
.yfb{bottom:578.527500px;}
.y5d{bottom:585.060000px;}
.y3d{bottom:588.136500px;}
.yae{bottom:589.392000px;}
.y13{bottom:592.494000px;}
.y99{bottom:592.999500px;}
.yd0{bottom:593.733000px;}
.yfa{bottom:594.964500px;}
.y5c{bottom:602.992500px;}
.y82{bottom:604.782000px;}
.y3c{bottom:606.069000px;}
.yad{bottom:607.324500px;}
.yc3{bottom:608.694000px;}
.y12{bottom:608.932500px;}
.yf9{bottom:610.926000px;}
.y98{bottom:610.933500px;}
.ycf{bottom:611.667000px;}
.y81{bottom:622.714500px;}
.y3b{bottom:624.003000px;}
.yac{bottom:625.257000px;}
.y11{bottom:625.369500px;}
.yc2{bottom:626.626500px;}
.yf8{bottom:627.364500px;}
.y5b{bottom:628.950000px;}
.yce{bottom:629.599500px;}
.y80{bottom:640.647000px;}
.y10{bottom:641.808000px;}
.yab{bottom:643.189500px;}
.yf7{bottom:643.326000px;}
.yc1{bottom:644.559000px;}
.y5a{bottom:646.884000px;}
.ycd{bottom:647.532000px;}
.y3a{bottom:650.257500px;}
.yf{bottom:658.246500px;}
.y7f{bottom:658.579500px;}
.yf6{bottom:659.764500px;}
.yaa{bottom:661.123500px;}
.yc0{bottom:662.493000px;}
.y97{bottom:663.595500px;}
.y59{bottom:664.816500px;}
.ycc{bottom:665.464500px;}
.y39{bottom:668.190000px;}
.ye{bottom:674.685000px;}
.yf5{bottom:675.724500px;}
.y7e{bottom:676.513500px;}
.ya9{bottom:679.056000px;}
.y96{bottom:680.034000px;}
.y58{bottom:682.749000px;}
.ycb{bottom:683.397000px;}
.y38{bottom:686.122500px;}
.yd{bottom:691.123500px;}
.yf4{bottom:692.163000px;}
.y7d{bottom:694.446000px;}
.ya8{bottom:696.988500px;}
.y57{bottom:700.681500px;}
.yca{bottom:701.329500px;}
.y37{bottom:704.056500px;}
.yc{bottom:707.562000px;}
.yf3{bottom:708.124500px;}
.y7c{bottom:712.378500px;}
.ybf{bottom:713.884500px;}
.ya7{bottom:714.921000px;}
.y56{bottom:718.614000px;}
.yc9{bottom:719.263500px;}
.y36{bottom:721.989000px;}
.yf2{bottom:724.563000px;}
.y7b{bottom:730.311000px;}
.ya6{bottom:732.853500px;}
.y55{bottom:736.546500px;}
.yc8{bottom:737.196000px;}
.y35{bottom:739.921500px;}
.yf1{bottom:740.523000px;}
.y7a{bottom:748.243500px;}
.y54{bottom:754.480500px;}
.yc7{bottom:755.128500px;}
.yf0{bottom:756.961500px;}
.y34{bottom:757.854000px;}
.ya5{bottom:765.879000px;}
.y79{bottom:766.176000px;}
.yb{bottom:772.149000px;}
.y53{bottom:772.413000px;}
.yef{bottom:772.923000px;}
.y33{bottom:775.786500px;}
.y78{bottom:784.110000px;}
.ya{bottom:788.587500px;}
.yee{bottom:789.361500px;}
.y52{bottom:790.345500px;}
.yc6{bottom:790.540500px;}
.y32{bottom:793.719000px;}
.y77{bottom:802.042500px;}
.ya4{bottom:804.882000px;}
.yed{bottom:805.321500px;}
.y51{bottom:808.278000px;}
.y9{bottom:810.739500px;}
.y31{bottom:811.653000px;}
.y76{bottom:819.975000px;}
.y8{bottom:821.464500px;}
.yec{bottom:821.760000px;}
.y50{bottom:826.210500px;}
.y30{bottom:829.585500px;}
.yeb{bottom:837.721500px;}
.y75{bottom:837.907500px;}
.y7{bottom:843.616500px;}
.y4f{bottom:844.143000px;}
.y2f{bottom:847.518000px;}
.yea{bottom:854.160000px;}
.y6{bottom:854.341500px;}
.y74{bottom:855.840000px;}
.y4e{bottom:862.077000px;}
.y2e{bottom:865.450500px;}
.ye9{bottom:870.120000px;}
.y73{bottom:873.774000px;}
.y5{bottom:876.492000px;}
.y4d{bottom:880.009500px;}
.y2d{bottom:883.383000px;}
.ye8{bottom:886.081500px;}
.y72{bottom:891.706500px;}
.y4{bottom:902.100000px;}
.ye7{bottom:902.520000px;}
.y4c{bottom:905.284500px;}
.y2c{bottom:909.639000px;}
.ye6{bottom:918.481500px;}
.y3{bottom:920.032500px;}
.y2b{bottom:927.571500px;}
.ye5{bottom:934.918500px;}
.y2a{bottom:945.504000px;}
.ye4{bottom:950.880000px;}
.y29{bottom:963.436500px;}
.ye3{bottom:967.318500px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.y27{bottom:1038.157500px;}
.h3{height:24.245146px;}
.h6{height:33.139814px;}
.h5{height:40.348800px;}
.h8{height:44.831700px;}
.h4{height:49.858800px;}
.h2{height:49.975733px;}
.h9{height:49.981733px;}
.h7{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:200.776500px;}
.xe{left:202.147500px;}
.x14{left:205.120500px;}
.x13{left:206.256000px;}
.x11{left:208.456500px;}
.xf{left:224.563500px;}
.x12{left:227.551500px;}
.x15{left:240.690000px;}
.xd{left:244.666500px;}
.x1{left:249.583500px;}
.x2{left:262.771500px;}
.xb{left:268.494000px;}
.x9{left:272.746500px;}
.x3{left:289.774500px;}
.x4{left:301.366500px;}
.x6{left:305.100000px;}
.xa{left:306.654000px;}
.x5{left:339.349500px;}
.x8{left:345.225000px;}
.x10{left:348.058500px;}
.xc{left:380.316000px;}
.x7{left:544.875000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.453333pt;}
.v1{vertical-align:19.280000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004212pt;}
.ls0{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.658245pt;}
.lsa{letter-spacing:5.792271pt;}
.ls9{letter-spacing:8.853812pt;}
.lsc{letter-spacing:17.175467pt;}
.ls8{letter-spacing:19.040473pt;}
.lsb{letter-spacing:22.965605pt;}
.lse{letter-spacing:23.351578pt;}
.lsd{letter-spacing:23.591467pt;}
.ls4{letter-spacing:27.227139pt;}
.ls3{letter-spacing:27.232473pt;}
.ls6{letter-spacing:28.439578pt;}
.ls7{letter-spacing:28.444911pt;}
.ws8e{word-spacing:-14.760588pt;}
.ws64{word-spacing:-13.652838pt;}
.ws60{word-spacing:-2.964870pt;}
.ws18{word-spacing:-2.592933pt;}
.wse7{word-spacing:-2.414950pt;}
.ws25{word-spacing:-2.274129pt;}
.ws7a{word-spacing:-1.849059pt;}
.wsab{word-spacing:-1.795925pt;}
.wsc3{word-spacing:-1.742791pt;}
.ws4b{word-spacing:-1.689657pt;}
.ws88{word-spacing:-1.583389pt;}
.ws20{word-spacing:-1.477121pt;}
.ws32{word-spacing:-1.370854pt;}
.wsea{word-spacing:-1.362893pt;}
.wsbe{word-spacing:-1.317720pt;}
.wsfd{word-spacing:-1.267251pt;}
.ws98{word-spacing:-0.998917pt;}
.ws8a{word-spacing:-0.945783pt;}
.ws22{word-spacing:-0.680113pt;}
.ws6e{word-spacing:-0.626980pt;}
.ws31{word-spacing:-0.573846pt;}
.ws6c{word-spacing:-0.308176pt;}
.wsc6{word-spacing:-0.255043pt;}
.wsec{word-spacing:-0.119552pt;}
.ws33{word-spacing:-0.095641pt;}
.wsed{word-spacing:-0.071731pt;}
.wsb1{word-spacing:-0.053134pt;}
.wse3{word-spacing:-0.047821pt;}
.wsc5{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws1f{word-spacing:0.000000pt;}
.ws29{word-spacing:0.010627pt;}
.ws44{word-spacing:0.116895pt;}
.wsdd{word-spacing:0.170028pt;}
.ws27{word-spacing:0.276296pt;}
.ws89{word-spacing:0.382564pt;}
.ws7b{word-spacing:0.488832pt;}
.wsa6{word-spacing:0.541965pt;}
.ws3d{word-spacing:0.595099pt;}
.wsee{word-spacing:0.597760pt;}
.ws3b{word-spacing:0.605449pt;}
.wsa9{word-spacing:0.648233pt;}
.wsf8{word-spacing:0.789043pt;}
.ws6f{word-spacing:0.807635pt;}
.wse5{word-spacing:0.836864pt;}
.ws70{word-spacing:0.860769pt;}
.wse4{word-spacing:0.884685pt;}
.wsa{word-spacing:0.932506pt;}
.ws5d{word-spacing:1.020170pt;}
.wsa8{word-spacing:1.073304pt;}
.ws74{word-spacing:1.126438pt;}
.ws16{word-spacing:1.179572pt;}
.ws8b{word-spacing:1.232706pt;}
.ws17{word-spacing:1.338973pt;}
.ws1a{word-spacing:1.392107pt;}
.ws93{word-spacing:1.445241pt;}
.ws59{word-spacing:1.498375pt;}
.ws62{word-spacing:1.551509pt;}
.ws2a{word-spacing:1.657777pt;}
.wscd{word-spacing:1.710911pt;}
.ws24{word-spacing:1.764044pt;}
.ws39{word-spacing:1.817178pt;}
.wsb5{word-spacing:1.870312pt;}
.ws21{word-spacing:1.923446pt;}
.ws38{word-spacing:1.976580pt;}
.ws1e{word-spacing:2.082848pt;}
.ws68{word-spacing:2.135981pt;}
.ws13{word-spacing:2.175846pt;}
.ws47{word-spacing:2.189115pt;}
.wsde{word-spacing:2.242249pt;}
.wsa0{word-spacing:2.401651pt;}
.wsef{word-spacing:2.606234pt;}
.wsd8{word-spacing:2.614186pt;}
.ws82{word-spacing:2.667320pt;}
.ws3{word-spacing:2.701875pt;}
.ws84{word-spacing:2.720454pt;}
.ws4{word-spacing:2.749696pt;}
.wscf{word-spacing:2.773588pt;}
.wsb2{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws30{word-spacing:2.986123pt;}
.wsac{word-spacing:3.049884pt;}
.ws7{word-spacing:3.084442pt;}
.ws54{word-spacing:3.251793pt;}
.ws3c{word-spacing:3.262419pt;}
.ws78{word-spacing:3.304927pt;}
.wsc2{word-spacing:3.358060pt;}
.ws2d{word-spacing:3.411194pt;}
.wsc{word-spacing:3.419187pt;}
.ws6b{word-spacing:3.623730pt;}
.ws28{word-spacing:3.676864pt;}
.wsa7{word-spacing:3.687490pt;}
.wscc{word-spacing:3.783131pt;}
.wsc9{word-spacing:3.836265pt;}
.ws45{word-spacing:3.889399pt;}
.wsf{word-spacing:3.897395pt;}
.ws49{word-spacing:3.942533pt;}
.ws11{word-spacing:3.993037pt;}
.ws9e{word-spacing:3.995667pt;}
.ws36{word-spacing:4.101935pt;}
.wsaf{word-spacing:4.155068pt;}
.ws40{word-spacing:4.208202pt;}
.ws12{word-spacing:4.232141pt;}
.wsc8{word-spacing:4.261336pt;}
.wsf0{word-spacing:4.327782pt;}
.ws6d{word-spacing:4.367604pt;}
.wsb6{word-spacing:4.378231pt;}
.wsca{word-spacing:4.420738pt;}
.wsbd{word-spacing:4.431364pt;}
.wscb{word-spacing:4.473872pt;}
.wsd{word-spacing:4.519066pt;}
.ws19{word-spacing:4.527005pt;}
.wsc4{word-spacing:4.580139pt;}
.wsc1{word-spacing:4.633273pt;}
.ws23{word-spacing:4.686407pt;}
.ws55{word-spacing:4.792675pt;}
.wsd5{word-spacing:4.845809pt;}
.ws4c{word-spacing:4.898943pt;}
.ws94{word-spacing:5.005210pt;}
.ws81{word-spacing:5.111478pt;}
.ws34{word-spacing:5.164612pt;}
.ws2b{word-spacing:5.270880pt;}
.wsbf{word-spacing:5.324013pt;}
.wsb3{word-spacing:5.334640pt;}
.ws26{word-spacing:5.377147pt;}
.wsb{word-spacing:5.379840pt;}
.ws99{word-spacing:5.430281pt;}
.ws5c{word-spacing:5.483415pt;}
.wsbb{word-spacing:5.493423pt;}
.ws3e{word-spacing:5.536549pt;}
.ws4a{word-spacing:5.589683pt;}
.ws52{word-spacing:5.642817pt;}
.ws97{word-spacing:5.690442pt;}
.ws9b{word-spacing:5.695951pt;}
.ws6{word-spacing:5.714586pt;}
.ws46{word-spacing:5.802218pt;}
.ws35{word-spacing:5.855352pt;}
.wsf3{word-spacing:5.858048pt;}
.ws9f{word-spacing:5.908486pt;}
.wsd2{word-spacing:5.961620pt;}
.wsfc{word-spacing:6.049331pt;}
.wsc0{word-spacing:6.067888pt;}
.ws9a{word-spacing:6.097152pt;}
.ws1c{word-spacing:6.174155pt;}
.wsf1{word-spacing:6.240614pt;}
.ws5f{word-spacing:6.280423pt;}
.wsd4{word-spacing:6.333557pt;}
.wsd7{word-spacing:6.386691pt;}
.ws9d{word-spacing:6.439825pt;}
.wsf4{word-spacing:6.479718pt;}
.wsf5{word-spacing:6.527539pt;}
.wsc7{word-spacing:6.546092pt;}
.wsad{word-spacing:6.599226pt;}
.ws41{word-spacing:6.652360pt;}
.wsdf{word-spacing:6.705494pt;}
.ws4d{word-spacing:6.758628pt;}
.ws6a{word-spacing:6.811762pt;}
.wse{word-spacing:6.814464pt;}
.ws69{word-spacing:6.864896pt;}
.ws83{word-spacing:6.882338pt;}
.wse6{word-spacing:6.910106pt;}
.ws2c{word-spacing:6.971163pt;}
.wsfe{word-spacing:7.005747pt;}
.wsd6{word-spacing:7.077431pt;}
.wsb4{word-spacing:7.111089pt;}
.ws67{word-spacing:7.130565pt;}
.ws71{word-spacing:7.236833pt;}
.ws48{word-spacing:7.289967pt;}
.ws73{word-spacing:7.449368pt;}
.ws9{word-spacing:7.531776pt;}
.ws65{word-spacing:7.555636pt;}
.wsa1{word-spacing:7.584109pt;}
.ws7c{word-spacing:7.608770pt;}
.wsfa{word-spacing:7.627418pt;}
.wsa2{word-spacing:7.677850pt;}
.wseb{word-spacing:7.723059pt;}
.wsbc{word-spacing:7.778798pt;}
.ws86{word-spacing:7.810162pt;}
.wsce{word-spacing:7.821305pt;}
.ws96{word-spacing:7.885066pt;}
.ws66{word-spacing:7.980707pt;}
.wsb7{word-spacing:8.140108pt;}
.ws2f{word-spacing:8.246376pt;}
.ws10{word-spacing:8.296909pt;}
.wsdb{word-spacing:8.299510pt;}
.ws3a{word-spacing:8.405778pt;}
.wsd9{word-spacing:8.512045pt;}
.ws77{word-spacing:8.565179pt;}
.ws8f{word-spacing:8.611464pt;}
.ws8c{word-spacing:8.618313pt;}
.ws4f{word-spacing:8.671447pt;}
.wsa4{word-spacing:8.830849pt;}
.ws4e{word-spacing:8.937116pt;}
.wsd0{word-spacing:8.990250pt;}
.wsdc{word-spacing:9.202786pt;}
.ws1d{word-spacing:9.255920pt;}
.wsb0{word-spacing:9.322579pt;}
.ws37{word-spacing:9.362187pt;}
.ws85{word-spacing:9.367358pt;}
.ws87{word-spacing:9.372877pt;}
.wsd1{word-spacing:9.415321pt;}
.wsb9{word-spacing:9.532216pt;}
.wsfb{word-spacing:9.540250pt;}
.ws51{word-spacing:9.574723pt;}
.ws72{word-spacing:9.627857pt;}
.wse2{word-spacing:9.635891pt;}
.ws7d{word-spacing:9.680991pt;}
.wsba{word-spacing:9.734124pt;}
.ws53{word-spacing:9.946660pt;}
.ws79{word-spacing:9.999794pt;}
.ws76{word-spacing:10.106061pt;}
.wsf2{word-spacing:10.161920pt;}
.ws50{word-spacing:10.265463pt;}
.wsf7{word-spacing:10.448845pt;}
.ws2e{word-spacing:10.477999pt;}
.wsf6{word-spacing:10.496666pt;}
.ws43{word-spacing:10.531132pt;}
.ws91{word-spacing:10.570776pt;}
.ws92{word-spacing:10.575765pt;}
.ws7f{word-spacing:10.637400pt;}
.wsf9{word-spacing:10.640128pt;}
.ws95{word-spacing:10.746616pt;}
.ws56{word-spacing:10.849936pt;}
.ws1b{word-spacing:10.903069pt;}
.ws63{word-spacing:11.009337pt;}
.wsd3{word-spacing:11.221873pt;}
.wsaa{word-spacing:11.393477pt;}
.ws9c{word-spacing:11.540676pt;}
.ws42{word-spacing:11.700077pt;}
.ws57{word-spacing:11.805224pt;}
.wsa5{word-spacing:12.018881pt;}
.ws8{word-spacing:12.074752pt;}
.wsae{word-spacing:12.348311pt;}
.ws3f{word-spacing:12.451404pt;}
.ws7e{word-spacing:12.656487pt;}
.wsb8{word-spacing:12.667114pt;}
.ws80{word-spacing:13.028424pt;}
.ws8d{word-spacing:13.786776pt;}
.ws90{word-spacing:13.885850pt;}
.ws61{word-spacing:13.931700pt;}
.ws5b{word-spacing:13.984834pt;}
.wsa3{word-spacing:14.005442pt;}
.wse8{word-spacing:14.704896pt;}
.wse9{word-spacing:14.752717pt;}
.wse0{word-spacing:17.891429pt;}
.wse1{word-spacing:19.009065pt;}
.ws58{word-spacing:19.340727pt;}
.ws15{word-spacing:20.297137pt;}
.ws75{word-spacing:23.846639pt;}
.ws5e{word-spacing:24.175909pt;}
.wsda{word-spacing:24.633963pt;}
.ws5{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
.ws5a{word-spacing:28.699765pt;}
.ws14{word-spacing:71.667439pt;}
._1a{margin-left:-25.931457pt;}
._18{margin-left:-24.464690pt;}
._1f{margin-left:-23.173529pt;}
._5{margin-left:-5.355930pt;}
._3{margin-left:-4.000482pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-1.418946pt;}
._4{width:1.371125pt;}
._1{width:2.371905pt;}
._e{width:3.400567pt;}
._17{width:13.322960pt;}
._a{width:15.958507pt;}
._f{width:17.211822pt;}
._d{width:19.351500pt;}
._b{width:20.921754pt;}
._8{width:21.872034pt;}
._12{width:24.072320pt;}
._c{width:25.028730pt;}
._7{width:26.600948pt;}
._14{width:28.175165pt;}
._13{width:29.627431pt;}
._10{width:33.431557pt;}
._16{width:34.417030pt;}
._1d{width:36.050036pt;}
._1e{width:42.327716pt;}
._1b{width:44.118524pt;}
._1c{width:45.484442pt;}
._19{width:57.425765pt;}
._6{width:61.103947pt;}
._11{width:71.731200pt;}
._15{width:127.107686pt;}
._9{width:151.687578pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y71{bottom:177.182667pt;}
.y112{bottom:183.265333pt;}
.y25{bottom:188.044000pt;}
.y70{bottom:191.794667pt;}
.y111{bottom:197.453333pt;}
.y24{bottom:203.984000pt;}
.y95{bottom:204.268000pt;}
.y6f{bottom:206.406667pt;}
.y110{bottom:212.064000pt;}
.y23{bottom:219.924000pt;}
.y94{bottom:220.208000pt;}
.ye2{bottom:221.017333pt;}
.y6e{bottom:224.781333pt;}
.y10f{bottom:226.252000pt;}
.y22{bottom:235.864000pt;}
.y93{bottom:236.148000pt;}
.y6d{bottom:240.721333pt;}
.y10e{bottom:240.864000pt;}
.ye1{bottom:241.241333pt;}
.y21{bottom:251.804000pt;}
.y92{bottom:252.088000pt;}
.y10d{bottom:255.052000pt;}
.ye0{bottom:257.182667pt;}
.y6c{bottom:263.189333pt;}
.y4a{bottom:267.744000pt;}
.y20{bottom:267.745333pt;}
.y91{bottom:268.028000pt;}
.ybe{bottom:268.302667pt;}
.y10c{bottom:269.664000pt;}
.ydf{bottom:273.122667pt;}
.y1f{bottom:283.685333pt;}
.y10b{bottom:283.850667pt;}
.y90{bottom:283.969333pt;}
.ybd{bottom:284.242667pt;}
.y10a{bottom:298.462667pt;}
.y6b{bottom:298.940000pt;}
.y1e{bottom:299.625333pt;}
.y8f{bottom:299.909333pt;}
.ybc{bottom:300.182667pt;}
.yde{bottom:304.600000pt;}
.y109{bottom:312.650667pt;}
.y6a{bottom:314.880000pt;}
.y1d{bottom:315.565333pt;}
.y8e{bottom:315.849333pt;}
.ybb{bottom:316.122667pt;}
.ydd{bottom:320.540000pt;}
.y108{bottom:327.262667pt;}
.y69{bottom:330.820000pt;}
.y49{bottom:331.505333pt;}
.y8d{bottom:331.789333pt;}
.yba{bottom:332.062667pt;}
.ydc{bottom:336.480000pt;}
.y107{bottom:341.449333pt;}
.ya3{bottom:342.889333pt;}
.y1c{bottom:344.009333pt;}
.y68{bottom:346.760000pt;}
.y48{bottom:347.445333pt;}
.y8c{bottom:347.729333pt;}
.yb9{bottom:348.004000pt;}
.ydb{bottom:352.420000pt;}
.y106{bottom:356.061333pt;}
.y67{bottom:362.700000pt;}
.y47{bottom:363.385333pt;}
.y85{bottom:363.386667pt;}
.yb8{bottom:363.944000pt;}
.yda{bottom:368.361333pt;}
.y105{bottom:370.249333pt;}
.y8b{bottom:375.714667pt;}
.y66{bottom:377.616000pt;}
.y1b{bottom:377.766667pt;}
.y46{bottom:379.326667pt;}
.yb7{bottom:379.884000pt;}
.ya2{bottom:383.497333pt;}
.yd9{bottom:384.301333pt;}
.y104{bottom:384.861333pt;}
.y65{bottom:393.556000pt;}
.y45{bottom:395.266667pt;}
.yb6{bottom:395.824000pt;}
.y103{bottom:399.048000pt;}
.ya1{bottom:399.437333pt;}
.yd8{bottom:400.241333pt;}
.y64{bottom:409.496000pt;}
.y44{bottom:411.206667pt;}
.yb5{bottom:411.764000pt;}
.y102{bottom:413.660000pt;}
.ya0{bottom:415.378667pt;}
.yd7{bottom:416.181333pt;}
.y8a{bottom:416.984000pt;}
.y1a{bottom:424.377333pt;}
.y63{bottom:425.436000pt;}
.y43{bottom:427.146667pt;}
.yb4{bottom:427.705333pt;}
.y101{bottom:427.848000pt;}
.y9f{bottom:431.318667pt;}
.yd6{bottom:432.121333pt;}
.y89{bottom:432.924000pt;}
.y19{bottom:438.989333pt;}
.y62{bottom:441.377333pt;}
.y100{bottom:442.460000pt;}
.y42{bottom:443.086667pt;}
.yc5{bottom:443.088000pt;}
.yb3{bottom:444.202667pt;}
.y9e{bottom:447.258667pt;}
.yd5{bottom:448.061333pt;}
.y88{bottom:448.864000pt;}
.y18{bottom:453.601333pt;}
.y61{bottom:456.292000pt;}
.yff{bottom:456.646667pt;}
.y41{bottom:459.028000pt;}
.yb2{bottom:460.142667pt;}
.y9d{bottom:463.198667pt;}
.yd4{bottom:464.002667pt;}
.y87{bottom:464.804000pt;}
.y84{bottom:467.501333pt;}
.y17{bottom:468.213333pt;}
.yfe{bottom:471.258667pt;}
.y60{bottom:472.232000pt;}
.y40{bottom:474.968000pt;}
.yb1{bottom:476.082667pt;}
.y9c{bottom:479.290667pt;}
.yd3{bottom:479.942667pt;}
.y16{bottom:482.825333pt;}
.yfd{bottom:485.446667pt;}
.y5f{bottom:488.172000pt;}
.y3f{bottom:490.908000pt;}
.yb0{bottom:492.024000pt;}
.y9b{bottom:495.230667pt;}
.yd2{bottom:495.882667pt;}
.y83{bottom:497.229333pt;}
.y15{bottom:497.437333pt;}
.yfc{bottom:500.058667pt;}
.yc4{bottom:501.373333pt;}
.y5e{bottom:504.113333pt;}
.y3e{bottom:506.848000pt;}
.yaf{bottom:507.964000pt;}
.y9a{bottom:511.170667pt;}
.y86{bottom:511.216000pt;}
.yd1{bottom:511.822667pt;}
.y14{bottom:512.049333pt;}
.yfb{bottom:514.246667pt;}
.y5d{bottom:520.053333pt;}
.y3d{bottom:522.788000pt;}
.yae{bottom:523.904000pt;}
.y13{bottom:526.661333pt;}
.y99{bottom:527.110667pt;}
.yd0{bottom:527.762667pt;}
.yfa{bottom:528.857333pt;}
.y5c{bottom:535.993333pt;}
.y82{bottom:537.584000pt;}
.y3c{bottom:538.728000pt;}
.yad{bottom:539.844000pt;}
.yc3{bottom:541.061333pt;}
.y12{bottom:541.273333pt;}
.yf9{bottom:543.045333pt;}
.y98{bottom:543.052000pt;}
.ycf{bottom:543.704000pt;}
.y81{bottom:553.524000pt;}
.y3b{bottom:554.669333pt;}
.yac{bottom:555.784000pt;}
.y11{bottom:555.884000pt;}
.yc2{bottom:557.001333pt;}
.yf8{bottom:557.657333pt;}
.y5b{bottom:559.066667pt;}
.yce{bottom:559.644000pt;}
.y80{bottom:569.464000pt;}
.y10{bottom:570.496000pt;}
.yab{bottom:571.724000pt;}
.yf7{bottom:571.845333pt;}
.yc1{bottom:572.941333pt;}
.y5a{bottom:575.008000pt;}
.ycd{bottom:575.584000pt;}
.y3a{bottom:578.006667pt;}
.yf{bottom:585.108000pt;}
.y7f{bottom:585.404000pt;}
.yf6{bottom:586.457333pt;}
.yaa{bottom:587.665333pt;}
.yc0{bottom:588.882667pt;}
.y97{bottom:589.862667pt;}
.y59{bottom:590.948000pt;}
.ycc{bottom:591.524000pt;}
.y39{bottom:593.946667pt;}
.ye{bottom:599.720000pt;}
.yf5{bottom:600.644000pt;}
.y7e{bottom:601.345333pt;}
.ya9{bottom:603.605333pt;}
.y96{bottom:604.474667pt;}
.y58{bottom:606.888000pt;}
.ycb{bottom:607.464000pt;}
.y38{bottom:609.886667pt;}
.yd{bottom:614.332000pt;}
.yf4{bottom:615.256000pt;}
.y7d{bottom:617.285333pt;}
.ya8{bottom:619.545333pt;}
.y57{bottom:622.828000pt;}
.yca{bottom:623.404000pt;}
.y37{bottom:625.828000pt;}
.yc{bottom:628.944000pt;}
.yf3{bottom:629.444000pt;}
.y7c{bottom:633.225333pt;}
.ybf{bottom:634.564000pt;}
.ya7{bottom:635.485333pt;}
.y56{bottom:638.768000pt;}
.yc9{bottom:639.345333pt;}
.y36{bottom:641.768000pt;}
.yf2{bottom:644.056000pt;}
.y7b{bottom:649.165333pt;}
.ya6{bottom:651.425333pt;}
.y55{bottom:654.708000pt;}
.yc8{bottom:655.285333pt;}
.y35{bottom:657.708000pt;}
.yf1{bottom:658.242667pt;}
.y7a{bottom:665.105333pt;}
.y54{bottom:670.649333pt;}
.yc7{bottom:671.225333pt;}
.yf0{bottom:672.854667pt;}
.y34{bottom:673.648000pt;}
.ya5{bottom:680.781333pt;}
.y79{bottom:681.045333pt;}
.yb{bottom:686.354667pt;}
.y53{bottom:686.589333pt;}
.yef{bottom:687.042667pt;}
.y33{bottom:689.588000pt;}
.y78{bottom:696.986667pt;}
.ya{bottom:700.966667pt;}
.yee{bottom:701.654667pt;}
.y52{bottom:702.529333pt;}
.yc6{bottom:702.702667pt;}
.y32{bottom:705.528000pt;}
.y77{bottom:712.926667pt;}
.ya4{bottom:715.450667pt;}
.yed{bottom:715.841333pt;}
.y51{bottom:718.469333pt;}
.y9{bottom:720.657333pt;}
.y31{bottom:721.469333pt;}
.y76{bottom:728.866667pt;}
.y8{bottom:730.190667pt;}
.yec{bottom:730.453333pt;}
.y50{bottom:734.409333pt;}
.y30{bottom:737.409333pt;}
.yeb{bottom:744.641333pt;}
.y75{bottom:744.806667pt;}
.y7{bottom:749.881333pt;}
.y4f{bottom:750.349333pt;}
.y2f{bottom:753.349333pt;}
.yea{bottom:759.253333pt;}
.y6{bottom:759.414667pt;}
.y74{bottom:760.746667pt;}
.y4e{bottom:766.290667pt;}
.y2e{bottom:769.289333pt;}
.ye9{bottom:773.440000pt;}
.y73{bottom:776.688000pt;}
.y5{bottom:779.104000pt;}
.y4d{bottom:782.230667pt;}
.y2d{bottom:785.229333pt;}
.ye8{bottom:787.628000pt;}
.y72{bottom:792.628000pt;}
.y4{bottom:801.866667pt;}
.ye7{bottom:802.240000pt;}
.y4c{bottom:804.697333pt;}
.y2c{bottom:808.568000pt;}
.ye6{bottom:816.428000pt;}
.y3{bottom:817.806667pt;}
.y2b{bottom:824.508000pt;}
.ye5{bottom:831.038667pt;}
.y2a{bottom:840.448000pt;}
.ye4{bottom:845.226667pt;}
.y29{bottom:856.388000pt;}
.ye3{bottom:859.838667pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.y27{bottom:922.806667pt;}
.h3{height:21.551241pt;}
.h6{height:29.457613pt;}
.h5{height:35.865600pt;}
.h8{height:39.850400pt;}
.h4{height:44.318933pt;}
.h2{height:44.422874pt;}
.h9{height:44.428207pt;}
.h7{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:178.468000pt;}
.xe{left:179.686667pt;}
.x14{left:182.329333pt;}
.x13{left:183.338667pt;}
.x11{left:185.294667pt;}
.xf{left:199.612000pt;}
.x12{left:202.268000pt;}
.x15{left:213.946667pt;}
.xd{left:217.481333pt;}
.x1{left:221.852000pt;}
.x2{left:233.574667pt;}
.xb{left:238.661333pt;}
.x9{left:242.441333pt;}
.x3{left:257.577333pt;}
.x4{left:267.881333pt;}
.x6{left:271.200000pt;}
.xa{left:272.581333pt;}
.x5{left:301.644000pt;}
.x8{left:306.866667pt;}
.x10{left:309.385333pt;}
.xc{left:338.058667pt;}
.x7{left:484.333333pt;}
}




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