
    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_6bac3f4537f855a83ffbb9d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_03e028ceadde7e8874b3d263.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_b4c60def3fd1094d6e870a3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_c499f4de32a11ad8496f532b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_c3a9e259f6c81883b9d1012b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_ba889716c6e20513d02cffda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_41fa97e09a4ba90ca7209176.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_84ed9e4399b4940527f7e71e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918945;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_434d8b6425d8a4d5cd7a12ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_c22708fecce76aeeba9985d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_aa5c9b114272b46972c3821b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_fb8270349d426fbc65081dbc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_521a72b01c4b1c2ab1e2a7b1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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_fd9070e779a42eeb821baf88.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m3{transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.493933px;}
.ls2d{letter-spacing:-0.426852px;}
.ls6{letter-spacing:-0.373640px;}
.ls3b{letter-spacing:-0.222444px;}
.ls28{letter-spacing:-0.216432px;}
.ls35{letter-spacing:-0.198396px;}
.ls2f{letter-spacing:-0.186372px;}
.ls2e{letter-spacing:-0.174348px;}
.ls7{letter-spacing:-0.174280px;}
.ls4{letter-spacing:-0.173691px;}
.ls30{letter-spacing:-0.168336px;}
.ls27{letter-spacing:-0.156312px;}
.ls3a{letter-spacing:-0.150300px;}
.ls36{letter-spacing:-0.144288px;}
.ls1d{letter-spacing:-0.138276px;}
.ls2c{letter-spacing:-0.108216px;}
.ls21{letter-spacing:-0.102204px;}
.ls40{letter-spacing:-0.096192px;}
.ls45{letter-spacing:-0.093744px;}
.ls3d{letter-spacing:-0.090180px;}
.ls29{letter-spacing:-0.084168px;}
.ls2a{letter-spacing:-0.078156px;}
.ls3c{letter-spacing:-0.078120px;}
.ls34{letter-spacing:-0.072144px;}
.ls10{letter-spacing:-0.070308px;}
.ls1c{letter-spacing:-0.066132px;}
.lsd{letter-spacing:-0.062496px;}
.ls2b{letter-spacing:-0.060120px;}
.ls3{letter-spacing:-0.059706px;}
.lsc{letter-spacing:-0.054684px;}
.ls1f{letter-spacing:-0.054108px;}
.ls24{letter-spacing:-0.048096px;}
.ls11{letter-spacing:-0.046872px;}
.ls23{letter-spacing:-0.042084px;}
.lsf{letter-spacing:-0.039060px;}
.ls3f{letter-spacing:-0.036072px;}
.lse{letter-spacing:-0.031248px;}
.ls3e{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.024048px;}
.lsb{letter-spacing:-0.023436px;}
.ls22{letter-spacing:-0.018036px;}
.ls14{letter-spacing:-0.015624px;}
.ls1e{letter-spacing:-0.012024px;}
.ls12{letter-spacing:-0.007812px;}
.ls9{letter-spacing:-0.007200px;}
.ls20{letter-spacing:-0.006012px;}
.ls5{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.006012px;}
.lsa{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007812px;}
.ls32{letter-spacing:0.012024px;}
.ls49{letter-spacing:0.014400px;}
.ls42{letter-spacing:0.015624px;}
.ls48{letter-spacing:0.016776px;}
.ls33{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.024048px;}
.ls1a{letter-spacing:0.030060px;}
.ls18{letter-spacing:0.031248px;}
.ls44{letter-spacing:0.032940px;}
.ls38{letter-spacing:0.036072px;}
.ls37{letter-spacing:0.039060px;}
.ls13{letter-spacing:0.041940px;}
.ls31{letter-spacing:0.054108px;}
.ls43{letter-spacing:0.062496px;}
.ls15{letter-spacing:0.067104px;}
.ls46{letter-spacing:0.075492px;}
.ls0{letter-spacing:0.075600px;}
.ls41{letter-spacing:0.083880px;}
.ls25{letter-spacing:0.090180px;}
.ls47{letter-spacing:0.117432px;}
.ls1b{letter-spacing:0.132264px;}
.ls16{letter-spacing:0.140616px;}
.ls8{letter-spacing:0.180360px;}
.ls17{letter-spacing:50.285844px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,128),0 0.015em rgb(0,0,128),0.015em 0 rgb(0,0,128),0 -0.015em  rgb(0,0,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws26{word-spacing:-21.294504px;}
.ws4e{word-spacing:-21.198312px;}
.ws54{word-spacing:-21.174264px;}
.ws2b{word-spacing:-21.144204px;}
.ws28{word-spacing:-21.138192px;}
.ws27{word-spacing:-21.114144px;}
.ws2c{word-spacing:-21.108132px;}
.ws2d{word-spacing:-21.102120px;}
.ws53{word-spacing:-21.090096px;}
.ws2a{word-spacing:-21.084084px;}
.ws29{word-spacing:-20.945808px;}
.ws4d{word-spacing:-19.506564px;}
.ws5b{word-spacing:-19.490940px;}
.ws0{word-spacing:-15.140603px;}
.ws1{word-spacing:-14.966322px;}
.ws62{word-spacing:-0.453096px;}
.ws45{word-spacing:-0.444888px;}
.ws4a{word-spacing:-0.378756px;}
.ws6e{word-spacing:-0.367200px;}
.ws67{word-spacing:-0.335916px;}
.ws59{word-spacing:-0.288576px;}
.wsa{word-spacing:-0.273420px;}
.ws68{word-spacing:-0.257796px;}
.ws6a{word-spacing:-0.249984px;}
.ws1c{word-spacing:-0.226548px;}
.ws12{word-spacing:-0.218736px;}
.ws4b{word-spacing:-0.216432px;}
.ws1f{word-spacing:-0.210924px;}
.ws34{word-spacing:-0.204408px;}
.ws66{word-spacing:-0.203112px;}
.ws40{word-spacing:-0.198396px;}
.ws61{word-spacing:-0.195300px;}
.ws5f{word-spacing:-0.187488px;}
.ws25{word-spacing:-0.179676px;}
.ws14{word-spacing:-0.171864px;}
.ws52{word-spacing:-0.164052px;}
.ws21{word-spacing:-0.159372px;}
.ws1a{word-spacing:-0.156240px;}
.ws2e{word-spacing:-0.148428px;}
.wsf{word-spacing:-0.140616px;}
.ws16{word-spacing:-0.134208px;}
.ws1b{word-spacing:-0.132804px;}
.ws13{word-spacing:-0.124992px;}
.wsc{word-spacing:-0.117180px;}
.ws23{word-spacing:-0.109368px;}
.ws10{word-spacing:-0.101556px;}
.ws44{word-spacing:-0.093744px;}
.ws24{word-spacing:-0.085932px;}
.ws19{word-spacing:-0.078120px;}
.ws9{word-spacing:-0.070308px;}
.ws11{word-spacing:-0.062496px;}
.ws5c{word-spacing:-0.058716px;}
.wsd{word-spacing:-0.054684px;}
.ws15{word-spacing:-0.046872px;}
.wse{word-spacing:-0.039060px;}
.wsb{word-spacing:-0.031248px;}
.ws18{word-spacing:-0.023436px;}
.ws6d{word-spacing:-0.021600px;}
.ws65{word-spacing:-0.015624px;}
.ws6c{word-spacing:-0.014400px;}
.ws5d{word-spacing:-0.007812px;}
.ws2{word-spacing:0.000000px;}
.ws6b{word-spacing:0.007200px;}
.ws20{word-spacing:0.007812px;}
.ws63{word-spacing:0.008388px;}
.ws22{word-spacing:0.015624px;}
.ws1e{word-spacing:0.023436px;}
.ws64{word-spacing:0.025164px;}
.ws1d{word-spacing:0.031248px;}
.ws17{word-spacing:0.039060px;}
.ws55{word-spacing:0.042084px;}
.ws5e{word-spacing:0.046872px;}
.ws69{word-spacing:0.054684px;}
.ws60{word-spacing:0.059292px;}
.ws49{word-spacing:0.090180px;}
.ws51{word-spacing:0.096192px;}
.ws6{word-spacing:0.097200px;}
.ws3c{word-spacing:0.102204px;}
.ws33{word-spacing:0.108216px;}
.ws31{word-spacing:0.114228px;}
.ws36{word-spacing:0.120240px;}
.ws46{word-spacing:0.126252px;}
.ws58{word-spacing:0.132264px;}
.ws5a{word-spacing:0.138276px;}
.ws37{word-spacing:0.144288px;}
.ws42{word-spacing:0.150300px;}
.ws8{word-spacing:0.151200px;}
.ws32{word-spacing:0.156312px;}
.ws3a{word-spacing:0.162324px;}
.ws7{word-spacing:0.165600px;}
.ws2f{word-spacing:0.168336px;}
.ws47{word-spacing:0.174348px;}
.ws5{word-spacing:0.179726px;}
.ws3d{word-spacing:0.180360px;}
.ws39{word-spacing:0.186372px;}
.ws56{word-spacing:0.192384px;}
.ws57{word-spacing:0.198396px;}
.ws35{word-spacing:0.204408px;}
.ws3b{word-spacing:0.210420px;}
.ws30{word-spacing:0.240480px;}
.ws4c{word-spacing:0.246492px;}
.ws4f{word-spacing:0.252504px;}
.ws38{word-spacing:0.258516px;}
.ws43{word-spacing:0.270540px;}
.ws3f{word-spacing:0.276552px;}
.ws41{word-spacing:0.288576px;}
.ws48{word-spacing:0.300600px;}
.ws50{word-spacing:0.324648px;}
.ws3e{word-spacing:0.529056px;}
.ws3{word-spacing:0.743614px;}
.ws4{word-spacing:0.857599px;}
._4{margin-left:-2.721600px;}
._2{margin-left:-1.498225px;}
._0{width:1.172413px;}
._3{width:5.315028px;}
._5{width:142.046040px;}
._1{width:1597.387603px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(128,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,64,64);}
.fs8{font-size:36.000000px;}
.fs2{font-size:47.296200px;}
.fs0{font-size:54.278400px;}
.fs3{font-size:54.462600px;}
.fs4{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs7{font-size:83.880000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:54.000000px;}
.y2c{bottom:66.870000px;}
.y6{bottom:67.140000px;}
.y4{bottom:69.660000px;}
.y3{bottom:70.020150px;}
.y148{bottom:114.478305px;}
.y132{bottom:124.743420px;}
.y2b{bottom:129.603264px;}
.y122{bottom:136.440150px;}
.y6a{bottom:138.057396px;}
.yd4{bottom:139.948182px;}
.y147{bottom:145.347423px;}
.y131{bottom:146.702952px;}
.y2a{bottom:151.562796px;}
.y10e{bottom:153.725040px;}
.yc7{bottom:156.960801px;}
.y121{bottom:166.230000px;}
.y130{bottom:168.662484px;}
.y69{bottom:169.018305px;}
.yd3{bottom:170.909091px;}
.y29{bottom:173.522328px;}
.y146{bottom:176.308332px;}
.yc6{bottom:178.920333px;}
.y10d{bottom:184.685949px;}
.y120{bottom:188.190150px;}
.y9d{bottom:188.641968px;}
.y12f{bottom:190.622016px;}
.y28{bottom:195.481860px;}
.y68{bottom:199.979214px;}
.yc5{bottom:200.790027px;}
.yd2{bottom:201.870000px;}
.y10c{bottom:206.555643px;}
.y145{bottom:207.269241px;}
.y9c{bottom:210.601500px;}
.y12e{bottom:212.491710px;}
.y27{bottom:217.351554px;}
.yc4{bottom:222.749559px;}
.y10b{bottom:228.515175px;}
.y67{bottom:230.848332px;}
.yd1{bottom:231.569817px;}
.y9b{bottom:232.561032px;}
.y12d{bottom:234.451242px;}
.y144{bottom:238.230150px;}
.y26{bottom:239.311086px;}
.yc3{bottom:244.709091px;}
.y10a{bottom:250.474707px;}
.yd0{bottom:253.530150px;}
.y12c{bottom:256.410774px;}
.y25{bottom:261.270618px;}
.y66{bottom:261.809241px;}
.y9a{bottom:263.430150px;}
.y143{bottom:267.929997px;}
.y109{bottom:272.434239px;}
.yc2{bottom:275.670000px;}
.y12b{bottom:278.370306px;}
.y24{bottom:283.230150px;}
.y142{bottom:289.800150px;}
.y11f{bottom:290.880042px;}
.y65{bottom:292.770150px;}
.y99{bottom:293.219997px;}
.y108{bottom:294.303933px;}
.y12a{bottom:300.240000px;}
.ybe{bottom:313.556616px;}
.y98{bottom:315.090150px;}
.y23{bottom:315.360150px;}
.y107{bottom:316.263465px;}
.y11e{bottom:321.840951px;}
.yc1{bottom:323.640150px;}
.y61{bottom:330.657030px;}
.ybd{bottom:331.827084px;}
.y129{bottom:332.460000px;}
.y106{bottom:338.222997px;}
.y11d{bottom:343.800483px;}
.y60{bottom:348.927498px;}
.ybc{bottom:350.007372px;}
.y64{bottom:352.260150px;}
.y22{bottom:355.956174px;}
.yb8{bottom:359.008839px;}
.y105{bottom:360.182529px;}
.y5f{bottom:367.107786px;}
.ybb{bottom:368.277840px;}
.y128{bottom:371.789817px;}
.y11c{bottom:374.761392px;}
.yb7{bottom:377.279307px;}
.y21{bottom:377.915706px;}
.y5e{bottom:385.378254px;}
.yba{bottom:386.458128px;}
.y104{bottom:391.951980px;}
.y127{bottom:393.750150px;}
.y5b{bottom:394.379721px;}
.yb6{bottom:395.459595px;}
.y11b{bottom:396.631086px;}
.y20{bottom:399.785400px;}
.y5d{bottom:403.648722px;}
.yb9{bottom:404.728596px;}
.yc0{bottom:404.730150px;}
.y5a{bottom:412.650189px;}
.yb5{bottom:413.730063px;}
.y63{bottom:414.716814px;}
.y11a{bottom:418.590618px;}
.ybf{bottom:421.020150px;}
.y1f{bottom:421.744932px;}
.y5c{bottom:421.829010px;}
.y59{bottom:430.830477px;}
.y103{bottom:431.191656px;}
.y62{bottom:431.996805px;}
.y119{bottom:440.550150px;}
.yb0{bottom:440.998227px;}
.y1e{bottom:452.703888px;}
.y162{bottom:453.690000px;}
.y55{bottom:458.098677px;}
.yaf{bottom:459.178515px;}
.yb4{bottom:459.540000px;}
.y102{bottom:464.941449px;}
.y118{bottom:471.420000px;}
.y1d{bottom:474.663420px;}
.y54{bottom:476.278965px;}
.yae{bottom:477.448983px;}
.yfa{bottom:481.410801px;}
.y161{bottom:483.570000px;}
.y58{bottom:489.960000px;}
.ya9{bottom:493.740000px;}
.y53{bottom:494.549433px;}
.yad{bottom:495.629271px;}
.y1c{bottom:496.533114px;}
.y101{bottom:498.691242px;}
.yf9{bottom:503.370333px;}
.y160{bottom:504.270000px;}
.y117{bottom:508.233501px;}
.ya8{bottom:510.660000px;}
.y52{bottom:512.729721px;}
.yac{bottom:513.899739px;}
.y4f{bottom:518.130000px;}
.y1b{bottom:518.492646px;}
.y100{bottom:520.560936px;}
.ya7{bottom:522.899244px;}
.y15f{bottom:524.970000px;}
.yf8{bottom:525.329865px;}
.y116{bottom:530.103195px;}
.y51{bottom:531.000189px;}
.yab{bottom:532.080027px;}
.yb3{bottom:533.160189px;}
.y4e{bottom:535.050000px;}
.y1a{bottom:540.452178px;}
.ya6{bottom:541.079532px;}
.yff{bottom:542.520468px;}
.y4d{bottom:546.030000px;}
.yf7{bottom:547.289397px;}
.y50{bottom:549.180477px;}
.y97{bottom:549.811818px;}
.yb2{bottom:550.350000px;}
.yaa{bottom:550.350495px;}
.y115{bottom:552.062727px;}
.y57{bottom:555.390000px;}
.y15e{bottom:555.662268px;}
.y4c{bottom:558.179919px;}
.ya5{bottom:559.350000px;}
.y19{bottom:562.411710px;}
.yfe{bottom:564.480000px;}
.y56{bottom:565.470000px;}
.yb1{bottom:566.640000px;}
.yf6{bottom:569.159091px;}
.y114{bottom:574.022259px;}
.ycf{bottom:574.203168px;}
.y96{bottom:580.680936px;}
.y18{bottom:584.281404px;}
.y46{bottom:585.446706px;}
.y15d{bottom:586.623177px;}
.ya4{bottom:588.601791px;}
.y113{bottom:595.981791px;}
.yfd{bottom:596.700000px;}
.yf5{bottom:600.120000px;}
.y95{bottom:602.640468px;}
.y45{bottom:603.717174px;}
.yce{bottom:605.072286px;}
.y17{bottom:606.240936px;}
.ya3{bottom:610.471485px;}
.y15c{bottom:617.584086px;}
.y112{bottom:617.851485px;}
.y44{bottom:621.897462px;}
.y94{bottom:624.600000px;}
.ycd{bottom:627.031818px;}
.y16{bottom:628.200468px;}
.ya2{bottom:632.431017px;}
.yfc{bottom:636.029667px;}
.yf2{bottom:638.098227px;}
.y111{bottom:639.811017px;}
.y43{bottom:640.167930px;}
.y15b{bottom:648.544995px;}
.yf4{bottom:648.900000px;}
.ycc{bottom:648.991350px;}
.y15{bottom:650.160000px;}
.ya1{bottom:654.390549px;}
.yf1{bottom:656.278515px;}
.yfb{bottom:657.990000px;}
.y4b{bottom:658.170000px;}
.y42{bottom:658.348218px;}
.y110{bottom:661.770549px;}
.y91{bottom:662.577435px;}
.y3d{bottom:663.750000px;}
.y141{bottom:667.084185px;}
.y15a{bottom:670.414689px;}
.ycb{bottom:670.950882px;}
.yee{bottom:672.569532px;}
.yf0{bottom:674.548983px;}
.y41{bottom:676.618686px;}
.y3c{bottom:680.670000px;}
.y90{bottom:680.757723px;}
.y14{bottom:682.290000px;}
.ya0{bottom:686.160000px;}
.yed{bottom:690.840000px;}
.y3b{bottom:691.650000px;}
.y159{bottom:692.374221px;}
.yef{bottom:692.729271px;}
.y10f{bottom:693.540000px;}
.y40{bottom:694.798974px;}
.y4a{bottom:695.790000px;}
.y140{bottom:698.045094px;}
.y8f{bottom:699.028191px;}
.yca{bottom:701.820000px;}
.yf3{bottom:702.898569px;}
.y3a{bottom:703.799244px;}
.y49{bottom:706.946220px;}
.yec{bottom:707.760000px;}
.y8c{bottom:708.029658px;}
.y3f{bottom:713.069442px;}
.y158{bottom:714.333753px;}
.y8e{bottom:717.208479px;}
.yeb{bottom:719.190000px;}
.y13f{bottom:720.004626px;}
.y39{bottom:722.069712px;}
.y13{bottom:722.883663px;}
.y48{bottom:724.226211px;}
.y9f{bottom:724.229847px;}
.y8b{bottom:726.209946px;}
.yea{bottom:726.930000px;}
.y93{bottom:728.366751px;}
.y3e{bottom:731.249730px;}
.yc9{bottom:731.609847px;}
.y8d{bottom:735.478947px;}
.y157{bottom:736.293285px;}
.y38{bottom:740.250000px;}
.y47{bottom:741.416022px;}
.y13e{bottom:741.874320px;}
.ye8{bottom:742.317390px;}
.y8a{bottom:744.480414px;}
.y12{bottom:744.843195px;}
.y92{bottom:745.646742px;}
.y9e{bottom:746.100000px;}
.yc8{bottom:753.480000px;}
.y156{bottom:758.162979px;}
.ye7{bottom:760.587858px;}
.y13d{bottom:763.833852px;}
.y11{bottom:766.802727px;}
.y37{bottom:769.503411px;}
.y85{bottom:771.657912px;}
.ye6{bottom:778.768146px;}
.y155{bottom:780.122511px;}
.y13c{bottom:785.793384px;}
.ye3{bottom:787.769613px;}
.y10{bottom:788.672421px;}
.y84{bottom:789.928380px;}
.y36{bottom:791.462943px;}
.ye5{bottom:797.038614px;}
.ye2{bottom:806.040081px;}
.y13b{bottom:807.752916px;}
.y83{bottom:808.108668px;}
.yf{bottom:810.631953px;}
.y154{bottom:811.083420px;}
.ye4{bottom:815.218902px;}
.y89{bottom:817.920000px;}
.y7f{bottom:820.800000px;}
.y35{bottom:823.322232px;}
.ye1{bottom:824.220369px;}
.y82{bottom:826.379136px;}
.y13a{bottom:829.622610px;}
.ye9{bottom:831.510000px;}
.ye{bottom:832.591485px;}
.y153{bottom:833.042952px;}
.y7e{bottom:837.720000px;}
.y88{bottom:838.527885px;}
.ye0{bottom:841.320000px;}
.y81{bottom:844.649604px;}
.y7d{bottom:848.700000px;}
.yde{bottom:851.488515px;}
.yd{bottom:854.551017px;}
.y152{bottom:854.912646px;}
.y87{bottom:855.717696px;}
.y7c{bottom:859.680000px;}
.y139{bottom:861.481899px;}
.y34{bottom:862.472070px;}
.y80{bottom:862.829892px;}
.ydd{bottom:869.668803px;}
.y7b{bottom:871.830009px;}
.y86{bottom:872.997687px;}
.yc{bottom:876.420711px;}
.y151{bottom:876.872178px;}
.yda{bottom:886.050000px;}
.ydc{bottom:887.939271px;}
.y33{bottom:896.221863px;}
.y150{bottom:898.831710px;}
.y76{bottom:899.099145px;}
.y138{bottom:900.721575px;}
.yd9{bottom:902.970000px;}
.y126{bottom:903.420000px;}
.ydb{bottom:906.209739px;}
.yb{bottom:908.280000px;}
.yd8{bottom:915.210000px;}
.y75{bottom:917.279433px;}
.y14f{bottom:920.791242px;}
.ydf{bottom:922.500000px;}
.y137{bottom:922.591269px;}
.y32{bottom:929.971656px;}
.y125{bottom:931.592646px;}
.y7a{bottom:934.200000px;}
.y74{bottom:935.549901px;}
.y71{bottom:940.860000px;}
.y14e{bottom:942.660936px;}
.yd7{bottom:944.372421px;}
.y136{bottom:944.550801px;}
.ya{bottom:946.350150px;}
.y124{bottom:953.552178px;}
.y73{bottom:953.730189px;}
.y79{bottom:953.820000px;}
.y70{bottom:957.870000px;}
.y31{bottom:963.721449px;}
.y14d{bottom:964.620468px;}
.y78{bottom:964.889964px;}
.yd6{bottom:966.331953px;}
.y135{bottom:966.510333px;}
.y6f{bottom:970.020150px;}
.y9{bottom:971.460150px;}
.y72{bottom:972.000657px;}
.y123{bottom:975.511710px;}
.y77{bottom:982.169955px;}
.y14c{bottom:986.580774px;}
.y6e{bottom:987.030000px;}
.yd5{bottom:988.291485px;}
.y134{bottom:988.469865px;}
.y8{bottom:996.660150px;}
.y30{bottom:997.471242px;}
.y14b{bottom:1008.540306px;}
.y6d{bottom:1010.251017px;}
.y133{bottom:1010.339559px;}
.y2f{bottom:1019.340936px;}
.y14a{bottom:1030.410000px;}
.y6c{bottom:1032.120711px;}
.y7{bottom:1037.250000px;}
.y2e{bottom:1041.300468px;}
.y149{bottom:1062.630000px;}
.y2d{bottom:1063.260000px;}
.y6b{bottom:1063.980000px;}
.y2{bottom:1108.980000px;}
.y1{bottom:1117.170000px;}
.h10{height:25.066406px;}
.hd{height:27.351562px;}
.h11{height:27.527344px;}
.h3{height:34.432927px;}
.h1{height:39.516159px;}
.h4{height:39.650262px;}
.h12{height:40.070215px;}
.h5{height:41.743477px;}
.hf{height:43.769004px;}
.hc{height:45.677109px;}
.he{height:45.970664px;}
.h13{height:49.410000px;}
.h2{height:49.992188px;}
.h14{height:50.375039px;}
.h7{height:52.417969px;}
.h9{height:54.394102px;}
.hb{height:56.873496px;}
.h8{height:58.590000px;}
.ha{height:62.910000px;}
.h6{height:81.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:81.000000px;}
.xb{left:100.710000px;}
.x1{left:107.820000px;}
.x3{left:114.210000px;}
.x1c{left:156.599397px;}
.x23{left:208.800090px;}
.xf{left:224.100630px;}
.x2e{left:234.450516px;}
.x2d{left:242.190693px;}
.x2a{left:289.890279px;}
.x1a{left:295.920081px;}
.x2c{left:308.160000px;}
.x22{left:317.610774px;}
.x20{left:323.100567px;}
.x6{left:335.250000px;}
.xc{left:382.320000px;}
.x7{left:384.930000px;}
.x8{left:388.440000px;}
.x4{left:395.820000px;}
.x1d{left:440.100000px;}
.x9{left:459.000000px;}
.x24{left:575.100000px;}
.x1e{left:627.750000px;}
.x21{left:646.380000px;}
.x29{left:671.850000px;}
.x16{left:679.590000px;}
.x11{left:683.100000px;}
.x27{left:702.000522px;}
.x25{left:723.960000px;}
.x12{left:734.040000px;}
.x19{left:737.010000px;}
.x1b{left:751.050000px;}
.x15{left:754.380072px;}
.x10{left:756.001809px;}
.x26{left:765.719850px;}
.xe{left:782.999850px;}
.x14{left:785.790000px;}
.x28{left:788.040000px;}
.x5{left:796.499850px;}
.xd{left:799.290000px;}
.x1f{left:801.089850px;}
.x13{left:807.749850px;}
.x2{left:812.970000px;}
.x17{left:826.109850px;}
.x18{left:827.460000px;}
.x2b{left:836.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.439052pt;}
.ls2d{letter-spacing:-0.379424pt;}
.ls6{letter-spacing:-0.332124pt;}
.ls3b{letter-spacing:-0.197728pt;}
.ls28{letter-spacing:-0.192384pt;}
.ls35{letter-spacing:-0.176352pt;}
.ls2f{letter-spacing:-0.165664pt;}
.ls2e{letter-spacing:-0.154976pt;}
.ls7{letter-spacing:-0.154916pt;}
.ls4{letter-spacing:-0.154392pt;}
.ls30{letter-spacing:-0.149632pt;}
.ls27{letter-spacing:-0.138944pt;}
.ls3a{letter-spacing:-0.133600pt;}
.ls36{letter-spacing:-0.128256pt;}
.ls1d{letter-spacing:-0.122912pt;}
.ls2c{letter-spacing:-0.096192pt;}
.ls21{letter-spacing:-0.090848pt;}
.ls40{letter-spacing:-0.085504pt;}
.ls45{letter-spacing:-0.083328pt;}
.ls3d{letter-spacing:-0.080160pt;}
.ls29{letter-spacing:-0.074816pt;}
.ls2a{letter-spacing:-0.069472pt;}
.ls3c{letter-spacing:-0.069440pt;}
.ls34{letter-spacing:-0.064128pt;}
.ls10{letter-spacing:-0.062496pt;}
.ls1c{letter-spacing:-0.058784pt;}
.lsd{letter-spacing:-0.055552pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:-0.053072pt;}
.lsc{letter-spacing:-0.048608pt;}
.ls1f{letter-spacing:-0.048096pt;}
.ls24{letter-spacing:-0.042752pt;}
.ls11{letter-spacing:-0.041664pt;}
.ls23{letter-spacing:-0.037408pt;}
.lsf{letter-spacing:-0.034720pt;}
.ls3f{letter-spacing:-0.032064pt;}
.lse{letter-spacing:-0.027776pt;}
.ls3e{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.021376pt;}
.lsb{letter-spacing:-0.020832pt;}
.ls22{letter-spacing:-0.016032pt;}
.ls14{letter-spacing:-0.013888pt;}
.ls1e{letter-spacing:-0.010688pt;}
.ls12{letter-spacing:-0.006944pt;}
.ls9{letter-spacing:-0.006400pt;}
.ls20{letter-spacing:-0.005344pt;}
.ls5{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.005344pt;}
.lsa{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006944pt;}
.ls32{letter-spacing:0.010688pt;}
.ls49{letter-spacing:0.012800pt;}
.ls42{letter-spacing:0.013888pt;}
.ls48{letter-spacing:0.014912pt;}
.ls33{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.021376pt;}
.ls1a{letter-spacing:0.026720pt;}
.ls18{letter-spacing:0.027776pt;}
.ls44{letter-spacing:0.029280pt;}
.ls38{letter-spacing:0.032064pt;}
.ls37{letter-spacing:0.034720pt;}
.ls13{letter-spacing:0.037280pt;}
.ls31{letter-spacing:0.048096pt;}
.ls43{letter-spacing:0.055552pt;}
.ls15{letter-spacing:0.059648pt;}
.ls46{letter-spacing:0.067104pt;}
.ls0{letter-spacing:0.067200pt;}
.ls41{letter-spacing:0.074560pt;}
.ls25{letter-spacing:0.080160pt;}
.ls47{letter-spacing:0.104384pt;}
.ls1b{letter-spacing:0.117568pt;}
.ls16{letter-spacing:0.124992pt;}
.ls8{letter-spacing:0.160320pt;}
.ls17{letter-spacing:44.698528pt;}
.ws26{word-spacing:-18.928448pt;}
.ws4e{word-spacing:-18.842944pt;}
.ws54{word-spacing:-18.821568pt;}
.ws2b{word-spacing:-18.794848pt;}
.ws28{word-spacing:-18.789504pt;}
.ws27{word-spacing:-18.768128pt;}
.ws2c{word-spacing:-18.762784pt;}
.ws2d{word-spacing:-18.757440pt;}
.ws53{word-spacing:-18.746752pt;}
.ws2a{word-spacing:-18.741408pt;}
.ws29{word-spacing:-18.618496pt;}
.ws4d{word-spacing:-17.339168pt;}
.ws5b{word-spacing:-17.325280pt;}
.ws0{word-spacing:-13.458314pt;}
.ws1{word-spacing:-13.303398pt;}
.ws62{word-spacing:-0.402752pt;}
.ws45{word-spacing:-0.395456pt;}
.ws4a{word-spacing:-0.336672pt;}
.ws6e{word-spacing:-0.326400pt;}
.ws67{word-spacing:-0.298592pt;}
.ws59{word-spacing:-0.256512pt;}
.wsa{word-spacing:-0.243040pt;}
.ws68{word-spacing:-0.229152pt;}
.ws6a{word-spacing:-0.222208pt;}
.ws1c{word-spacing:-0.201376pt;}
.ws12{word-spacing:-0.194432pt;}
.ws4b{word-spacing:-0.192384pt;}
.ws1f{word-spacing:-0.187488pt;}
.ws34{word-spacing:-0.181696pt;}
.ws66{word-spacing:-0.180544pt;}
.ws40{word-spacing:-0.176352pt;}
.ws61{word-spacing:-0.173600pt;}
.ws5f{word-spacing:-0.166656pt;}
.ws25{word-spacing:-0.159712pt;}
.ws14{word-spacing:-0.152768pt;}
.ws52{word-spacing:-0.145824pt;}
.ws21{word-spacing:-0.141664pt;}
.ws1a{word-spacing:-0.138880pt;}
.ws2e{word-spacing:-0.131936pt;}
.wsf{word-spacing:-0.124992pt;}
.ws16{word-spacing:-0.119296pt;}
.ws1b{word-spacing:-0.118048pt;}
.ws13{word-spacing:-0.111104pt;}
.wsc{word-spacing:-0.104160pt;}
.ws23{word-spacing:-0.097216pt;}
.ws10{word-spacing:-0.090272pt;}
.ws44{word-spacing:-0.083328pt;}
.ws24{word-spacing:-0.076384pt;}
.ws19{word-spacing:-0.069440pt;}
.ws9{word-spacing:-0.062496pt;}
.ws11{word-spacing:-0.055552pt;}
.ws5c{word-spacing:-0.052192pt;}
.wsd{word-spacing:-0.048608pt;}
.ws15{word-spacing:-0.041664pt;}
.wse{word-spacing:-0.034720pt;}
.wsb{word-spacing:-0.027776pt;}
.ws18{word-spacing:-0.020832pt;}
.ws6d{word-spacing:-0.019200pt;}
.ws65{word-spacing:-0.013888pt;}
.ws6c{word-spacing:-0.012800pt;}
.ws5d{word-spacing:-0.006944pt;}
.ws2{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.006400pt;}
.ws20{word-spacing:0.006944pt;}
.ws63{word-spacing:0.007456pt;}
.ws22{word-spacing:0.013888pt;}
.ws1e{word-spacing:0.020832pt;}
.ws64{word-spacing:0.022368pt;}
.ws1d{word-spacing:0.027776pt;}
.ws17{word-spacing:0.034720pt;}
.ws55{word-spacing:0.037408pt;}
.ws5e{word-spacing:0.041664pt;}
.ws69{word-spacing:0.048608pt;}
.ws60{word-spacing:0.052704pt;}
.ws49{word-spacing:0.080160pt;}
.ws51{word-spacing:0.085504pt;}
.ws6{word-spacing:0.086400pt;}
.ws3c{word-spacing:0.090848pt;}
.ws33{word-spacing:0.096192pt;}
.ws31{word-spacing:0.101536pt;}
.ws36{word-spacing:0.106880pt;}
.ws46{word-spacing:0.112224pt;}
.ws58{word-spacing:0.117568pt;}
.ws5a{word-spacing:0.122912pt;}
.ws37{word-spacing:0.128256pt;}
.ws42{word-spacing:0.133600pt;}
.ws8{word-spacing:0.134400pt;}
.ws32{word-spacing:0.138944pt;}
.ws3a{word-spacing:0.144288pt;}
.ws7{word-spacing:0.147200pt;}
.ws2f{word-spacing:0.149632pt;}
.ws47{word-spacing:0.154976pt;}
.ws5{word-spacing:0.159756pt;}
.ws3d{word-spacing:0.160320pt;}
.ws39{word-spacing:0.165664pt;}
.ws56{word-spacing:0.171008pt;}
.ws57{word-spacing:0.176352pt;}
.ws35{word-spacing:0.181696pt;}
.ws3b{word-spacing:0.187040pt;}
.ws30{word-spacing:0.213760pt;}
.ws4c{word-spacing:0.219104pt;}
.ws4f{word-spacing:0.224448pt;}
.ws38{word-spacing:0.229792pt;}
.ws43{word-spacing:0.240480pt;}
.ws3f{word-spacing:0.245824pt;}
.ws41{word-spacing:0.256512pt;}
.ws48{word-spacing:0.267200pt;}
.ws50{word-spacing:0.288576pt;}
.ws3e{word-spacing:0.470272pt;}
.ws3{word-spacing:0.660990pt;}
.ws4{word-spacing:0.762310pt;}
._4{margin-left:-2.419200pt;}
._2{margin-left:-1.331755pt;}
._0{width:1.042145pt;}
._3{width:4.724470pt;}
._5{width:126.263147pt;}
._1{width:1419.900092pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:42.041067pt;}
.fs0{font-size:48.247467pt;}
.fs3{font-size:48.411200pt;}
.fs4{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs7{font-size:74.560000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:48.000000pt;}
.y2c{bottom:59.440000pt;}
.y6{bottom:59.680000pt;}
.y4{bottom:61.920000pt;}
.y3{bottom:62.240133pt;}
.y148{bottom:101.758493pt;}
.y132{bottom:110.883040pt;}
.y2b{bottom:115.202901pt;}
.y122{bottom:121.280133pt;}
.y6a{bottom:122.717685pt;}
.yd4{bottom:124.398384pt;}
.y147{bottom:129.197709pt;}
.y131{bottom:130.402624pt;}
.y2a{bottom:134.722485pt;}
.y10e{bottom:136.644480pt;}
.yc7{bottom:139.520712pt;}
.y121{bottom:147.760000pt;}
.y130{bottom:149.922208pt;}
.y69{bottom:150.238493pt;}
.yd3{bottom:151.919192pt;}
.y29{bottom:154.242069pt;}
.y146{bottom:156.718517pt;}
.yc6{bottom:159.040296pt;}
.y10d{bottom:164.165288pt;}
.y120{bottom:167.280133pt;}
.y9d{bottom:167.681749pt;}
.y12f{bottom:169.441792pt;}
.y28{bottom:173.761653pt;}
.y68{bottom:177.759301pt;}
.yc5{bottom:178.480024pt;}
.yd2{bottom:179.440000pt;}
.y10c{bottom:183.605016pt;}
.y145{bottom:184.239325pt;}
.y9c{bottom:187.201333pt;}
.y12e{bottom:188.881520pt;}
.y27{bottom:193.201381pt;}
.yc4{bottom:197.999608pt;}
.y10b{bottom:203.124600pt;}
.y67{bottom:205.198517pt;}
.yd1{bottom:205.839837pt;}
.y9b{bottom:206.720917pt;}
.y12d{bottom:208.401104pt;}
.y144{bottom:211.760133pt;}
.y26{bottom:212.720965pt;}
.yc3{bottom:217.519192pt;}
.y10a{bottom:222.644184pt;}
.yd0{bottom:225.360133pt;}
.y12c{bottom:227.920688pt;}
.y25{bottom:232.240549pt;}
.y66{bottom:232.719325pt;}
.y9a{bottom:234.160133pt;}
.y143{bottom:238.159997pt;}
.y109{bottom:242.163768pt;}
.yc2{bottom:245.040000pt;}
.y12b{bottom:247.440272pt;}
.y24{bottom:251.760133pt;}
.y142{bottom:257.600133pt;}
.y11f{bottom:258.560037pt;}
.y65{bottom:260.240133pt;}
.y99{bottom:260.639997pt;}
.y108{bottom:261.603496pt;}
.y12a{bottom:266.880000pt;}
.ybe{bottom:278.716992pt;}
.y98{bottom:280.080133pt;}
.y23{bottom:280.320133pt;}
.y107{bottom:281.123080pt;}
.y11e{bottom:286.080845pt;}
.yc1{bottom:287.680133pt;}
.y61{bottom:293.917360pt;}
.ybd{bottom:294.957408pt;}
.y129{bottom:295.520000pt;}
.y106{bottom:300.642664pt;}
.y11d{bottom:305.600429pt;}
.y60{bottom:310.157776pt;}
.ybc{bottom:311.117664pt;}
.y64{bottom:313.120133pt;}
.y22{bottom:316.405488pt;}
.yb8{bottom:319.118968pt;}
.y105{bottom:320.162248pt;}
.y5f{bottom:326.318032pt;}
.ybb{bottom:327.358080pt;}
.y128{bottom:330.479837pt;}
.y11c{bottom:333.121237pt;}
.yb7{bottom:335.359384pt;}
.y21{bottom:335.925072pt;}
.y5e{bottom:342.558448pt;}
.yba{bottom:343.518336pt;}
.y104{bottom:348.401760pt;}
.y127{bottom:350.000133pt;}
.y5b{bottom:350.559752pt;}
.yb6{bottom:351.519640pt;}
.y11b{bottom:352.560965pt;}
.y20{bottom:355.364800pt;}
.y5d{bottom:358.798864pt;}
.yb9{bottom:359.758752pt;}
.yc0{bottom:359.760133pt;}
.y5a{bottom:366.800168pt;}
.yb5{bottom:367.760056pt;}
.y63{bottom:368.637168pt;}
.y11a{bottom:372.080549pt;}
.ybf{bottom:374.240133pt;}
.y1f{bottom:374.884384pt;}
.y5c{bottom:374.959120pt;}
.y59{bottom:382.960424pt;}
.y103{bottom:383.281472pt;}
.y62{bottom:383.997160pt;}
.y119{bottom:391.600133pt;}
.yb0{bottom:391.998424pt;}
.y1e{bottom:402.403456pt;}
.y162{bottom:403.280000pt;}
.y55{bottom:407.198824pt;}
.yaf{bottom:408.158680pt;}
.yb4{bottom:408.480000pt;}
.y102{bottom:413.281288pt;}
.y118{bottom:419.040000pt;}
.y1d{bottom:421.923040pt;}
.y54{bottom:423.359080pt;}
.yae{bottom:424.399096pt;}
.yfa{bottom:427.920712pt;}
.y161{bottom:429.840000pt;}
.y58{bottom:435.520000pt;}
.ya9{bottom:438.880000pt;}
.y53{bottom:439.599496pt;}
.yad{bottom:440.559352pt;}
.y1c{bottom:441.362768pt;}
.y101{bottom:443.281104pt;}
.yf9{bottom:447.440296pt;}
.y160{bottom:448.240000pt;}
.y117{bottom:451.763112pt;}
.ya8{bottom:453.920000pt;}
.y52{bottom:455.759752pt;}
.yac{bottom:456.799768pt;}
.y4f{bottom:460.560000pt;}
.y1b{bottom:460.882352pt;}
.y100{bottom:462.720832pt;}
.ya7{bottom:464.799328pt;}
.y15f{bottom:466.640000pt;}
.yf8{bottom:466.959880pt;}
.y116{bottom:471.202840pt;}
.y51{bottom:472.000168pt;}
.yab{bottom:472.960024pt;}
.yb3{bottom:473.920168pt;}
.y4e{bottom:475.600000pt;}
.y1a{bottom:480.401936pt;}
.ya6{bottom:480.959584pt;}
.yff{bottom:482.240416pt;}
.y4d{bottom:485.360000pt;}
.yf7{bottom:486.479464pt;}
.y50{bottom:488.160424pt;}
.y97{bottom:488.721616pt;}
.yb2{bottom:489.200000pt;}
.yaa{bottom:489.200440pt;}
.y115{bottom:490.722424pt;}
.y57{bottom:493.680000pt;}
.y15e{bottom:493.922016pt;}
.y4c{bottom:496.159928pt;}
.ya5{bottom:497.200000pt;}
.y19{bottom:499.921520pt;}
.yfe{bottom:501.760000pt;}
.y56{bottom:502.640000pt;}
.yb1{bottom:503.680000pt;}
.yf6{bottom:505.919192pt;}
.y114{bottom:510.242008pt;}
.ycf{bottom:510.402816pt;}
.y96{bottom:516.160832pt;}
.y18{bottom:519.361248pt;}
.y46{bottom:520.397072pt;}
.y15d{bottom:521.442824pt;}
.ya4{bottom:523.201592pt;}
.y113{bottom:529.761592pt;}
.yfd{bottom:530.400000pt;}
.yf5{bottom:533.440000pt;}
.y95{bottom:535.680416pt;}
.y45{bottom:536.637488pt;}
.yce{bottom:537.842032pt;}
.y17{bottom:538.880832pt;}
.ya3{bottom:542.641320pt;}
.y15c{bottom:548.963632pt;}
.y112{bottom:549.201320pt;}
.y44{bottom:552.797744pt;}
.y94{bottom:555.200000pt;}
.ycd{bottom:557.361616pt;}
.y16{bottom:558.400416pt;}
.ya2{bottom:562.160904pt;}
.yfc{bottom:565.359704pt;}
.yf2{bottom:567.198424pt;}
.y111{bottom:568.720904pt;}
.y43{bottom:569.038160pt;}
.y15b{bottom:576.484440pt;}
.yf4{bottom:576.800000pt;}
.ycc{bottom:576.881200pt;}
.y15{bottom:577.920000pt;}
.ya1{bottom:581.680488pt;}
.yf1{bottom:583.358680pt;}
.yfb{bottom:584.880000pt;}
.y4b{bottom:585.040000pt;}
.y42{bottom:585.198416pt;}
.y110{bottom:588.240488pt;}
.y91{bottom:588.957720pt;}
.y3d{bottom:590.000000pt;}
.y141{bottom:592.963720pt;}
.y15a{bottom:595.924168pt;}
.ycb{bottom:596.400784pt;}
.yee{bottom:597.839584pt;}
.yf0{bottom:599.599096pt;}
.y41{bottom:601.438832pt;}
.y3c{bottom:605.040000pt;}
.y90{bottom:605.117976pt;}
.y14{bottom:606.480000pt;}
.ya0{bottom:609.920000pt;}
.yed{bottom:614.080000pt;}
.y3b{bottom:614.800000pt;}
.y159{bottom:615.443752pt;}
.yef{bottom:615.759352pt;}
.y10f{bottom:616.480000pt;}
.y40{bottom:617.599088pt;}
.y4a{bottom:618.480000pt;}
.y140{bottom:620.484528pt;}
.y8f{bottom:621.358392pt;}
.yca{bottom:623.840000pt;}
.yf3{bottom:624.798728pt;}
.y3a{bottom:625.599328pt;}
.y49{bottom:628.396640pt;}
.yec{bottom:629.120000pt;}
.y8c{bottom:629.359696pt;}
.y3f{bottom:633.839504pt;}
.y158{bottom:634.963336pt;}
.y8e{bottom:637.518648pt;}
.yeb{bottom:639.280000pt;}
.y13f{bottom:640.004112pt;}
.y39{bottom:641.839744pt;}
.y13{bottom:642.563256pt;}
.y48{bottom:643.756632pt;}
.y9f{bottom:643.759864pt;}
.y8b{bottom:645.519952pt;}
.yea{bottom:646.160000pt;}
.y93{bottom:647.437112pt;}
.y3e{bottom:649.999760pt;}
.yc9{bottom:650.319864pt;}
.y8d{bottom:653.759064pt;}
.y157{bottom:654.482920pt;}
.y38{bottom:658.000000pt;}
.y47{bottom:659.036464pt;}
.y13e{bottom:659.443840pt;}
.ye8{bottom:659.837680pt;}
.y8a{bottom:661.760368pt;}
.y12{bottom:662.082840pt;}
.y92{bottom:662.797104pt;}
.y9e{bottom:663.200000pt;}
.yc8{bottom:669.760000pt;}
.y156{bottom:673.922648pt;}
.ye7{bottom:676.078096pt;}
.y13d{bottom:678.963424pt;}
.y11{bottom:681.602424pt;}
.y37{bottom:684.003032pt;}
.y85{bottom:685.918144pt;}
.ye6{bottom:692.238352pt;}
.y155{bottom:693.442232pt;}
.y13c{bottom:698.483008pt;}
.ye3{bottom:700.239656pt;}
.y10{bottom:701.042152pt;}
.y84{bottom:702.158560pt;}
.y36{bottom:703.522616pt;}
.ye5{bottom:708.478768pt;}
.ye2{bottom:716.480072pt;}
.y13b{bottom:718.002592pt;}
.y83{bottom:718.318816pt;}
.yf{bottom:720.561736pt;}
.y154{bottom:720.963040pt;}
.ye4{bottom:724.639024pt;}
.y89{bottom:727.040000pt;}
.y7f{bottom:729.600000pt;}
.y35{bottom:731.841984pt;}
.ye1{bottom:732.640328pt;}
.y82{bottom:734.559232pt;}
.y13a{bottom:737.442320pt;}
.ye9{bottom:739.120000pt;}
.ye{bottom:740.081320pt;}
.y153{bottom:740.482624pt;}
.y7e{bottom:744.640000pt;}
.y88{bottom:745.358120pt;}
.ye0{bottom:747.840000pt;}
.y81{bottom:750.799648pt;}
.y7d{bottom:754.400000pt;}
.yde{bottom:756.878680pt;}
.yd{bottom:759.600904pt;}
.y152{bottom:759.922352pt;}
.y87{bottom:760.637952pt;}
.y7c{bottom:764.160000pt;}
.y139{bottom:765.761688pt;}
.y34{bottom:766.641840pt;}
.y80{bottom:766.959904pt;}
.ydd{bottom:773.038936pt;}
.y7b{bottom:774.960008pt;}
.y86{bottom:775.997944pt;}
.yc{bottom:779.040632pt;}
.y151{bottom:779.441936pt;}
.yda{bottom:787.600000pt;}
.ydc{bottom:789.279352pt;}
.y33{bottom:796.641656pt;}
.y150{bottom:798.961520pt;}
.y76{bottom:799.199240pt;}
.y138{bottom:800.641400pt;}
.yd9{bottom:802.640000pt;}
.y126{bottom:803.040000pt;}
.ydb{bottom:805.519768pt;}
.yb{bottom:807.360000pt;}
.yd8{bottom:813.520000pt;}
.y75{bottom:815.359496pt;}
.y14f{bottom:818.481104pt;}
.ydf{bottom:820.000000pt;}
.y137{bottom:820.081128pt;}
.y32{bottom:826.641472pt;}
.y125{bottom:828.082352pt;}
.y7a{bottom:830.400000pt;}
.y74{bottom:831.599912pt;}
.y71{bottom:836.320000pt;}
.y14e{bottom:837.920832pt;}
.yd7{bottom:839.442152pt;}
.y136{bottom:839.600712pt;}
.ya{bottom:841.200133pt;}
.y124{bottom:847.601936pt;}
.y73{bottom:847.760168pt;}
.y79{bottom:847.840000pt;}
.y70{bottom:851.440000pt;}
.y31{bottom:856.641288pt;}
.y14d{bottom:857.440416pt;}
.y78{bottom:857.679968pt;}
.yd6{bottom:858.961736pt;}
.y135{bottom:859.120296pt;}
.y6f{bottom:862.240133pt;}
.y9{bottom:863.520133pt;}
.y72{bottom:864.000584pt;}
.y123{bottom:867.121520pt;}
.y77{bottom:873.039960pt;}
.y14c{bottom:876.960688pt;}
.y6e{bottom:877.360000pt;}
.yd5{bottom:878.481320pt;}
.y134{bottom:878.639880pt;}
.y8{bottom:885.920133pt;}
.y30{bottom:886.641104pt;}
.y14b{bottom:896.480272pt;}
.y6d{bottom:898.000904pt;}
.y133{bottom:898.079608pt;}
.y2f{bottom:906.080832pt;}
.y14a{bottom:915.920000pt;}
.y6c{bottom:917.440632pt;}
.y7{bottom:922.000000pt;}
.y2e{bottom:925.600416pt;}
.y149{bottom:944.560000pt;}
.y2d{bottom:945.120000pt;}
.y6b{bottom:945.760000pt;}
.y2{bottom:985.760000pt;}
.y1{bottom:993.040000pt;}
.h10{height:22.281250pt;}
.hd{height:24.312500pt;}
.h11{height:24.468750pt;}
.h3{height:30.607046pt;}
.h1{height:35.125475pt;}
.h4{height:35.244677pt;}
.h12{height:35.617969pt;}
.h5{height:37.105312pt;}
.hf{height:38.905781pt;}
.hc{height:40.601875pt;}
.he{height:40.862812pt;}
.h13{height:43.920000pt;}
.h2{height:44.437500pt;}
.h14{height:44.777812pt;}
.h7{height:46.593750pt;}
.h9{height:48.350313pt;}
.hb{height:50.554219pt;}
.h8{height:52.080000pt;}
.ha{height:55.920000pt;}
.h6{height:72.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:72.000000pt;}
.xb{left:89.520000pt;}
.x1{left:95.840000pt;}
.x3{left:101.520000pt;}
.x1c{left:139.199464pt;}
.x23{left:185.600080pt;}
.xf{left:199.200560pt;}
.x2e{left:208.400459pt;}
.x2d{left:215.280616pt;}
.x2a{left:257.680248pt;}
.x1a{left:263.040072pt;}
.x2c{left:273.920000pt;}
.x22{left:282.320688pt;}
.x20{left:287.200504pt;}
.x6{left:298.000000pt;}
.xc{left:339.840000pt;}
.x7{left:342.160000pt;}
.x8{left:345.280000pt;}
.x4{left:351.840000pt;}
.x1d{left:391.200000pt;}
.x9{left:408.000000pt;}
.x24{left:511.200000pt;}
.x1e{left:558.000000pt;}
.x21{left:574.560000pt;}
.x29{left:597.200000pt;}
.x16{left:604.080000pt;}
.x11{left:607.200000pt;}
.x27{left:624.000464pt;}
.x25{left:643.520000pt;}
.x12{left:652.480000pt;}
.x19{left:655.120000pt;}
.x1b{left:667.600000pt;}
.x15{left:670.560064pt;}
.x10{left:672.001608pt;}
.x26{left:680.639867pt;}
.xe{left:695.999867pt;}
.x14{left:698.480000pt;}
.x28{left:700.480000pt;}
.x5{left:707.999867pt;}
.xd{left:710.480000pt;}
.x1f{left:712.079867pt;}
.x13{left:717.999867pt;}
.x2{left:722.640000pt;}
.x17{left:734.319867pt;}
.x18{left:735.520000pt;}
.x2b{left:743.520000pt;}
}




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