
    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_1abd68446468c153c02b6568.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185059;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_dcd3655b4472ade41aecb9c2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da738dc699ab182e93429ed7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969727;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_f11a80f89bfa9103bab98a34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206055;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_30ec962d95ab9c0eb980660d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_c35904d87b473e7f2081dc21.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.013672;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_91bb2cc8bcbacc74edc7dd61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.022080px;}
.v1{vertical-align:18.051840px;}
.ls42{letter-spacing:-0.993600px;}
.ls22{letter-spacing:-0.861120px;}
.ls11{letter-spacing:-0.728640px;}
.ls34{letter-spacing:-0.657360px;}
.ls46{letter-spacing:-0.596160px;}
.ls23{letter-spacing:-0.529920px;}
.ls3e{letter-spacing:-0.397440px;}
.ls35{letter-spacing:-0.358560px;}
.ls1a{letter-spacing:-0.341280px;}
.ls41{letter-spacing:-0.331200px;}
.ls3b{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.287280px;}
.ls2a{letter-spacing:-0.239040px;}
.ls16{letter-spacing:-0.227520px;}
.ls1c{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.191520px;}
.ls17{letter-spacing:-0.170640px;}
.lsc{letter-spacing:-0.167040px;}
.ls24{letter-spacing:-0.132480px;}
.ls2c{letter-spacing:-0.119520px;}
.ls1d{letter-spacing:-0.113760px;}
.ls14{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.066240px;}
.ls2b{letter-spacing:-0.059760px;}
.ls15{letter-spacing:-0.056880px;}
.lsa{letter-spacing:-0.054000px;}
.lsb{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.056880px;}
.ls2{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.097200px;}
.ls3{letter-spacing:0.099360px;}
.ls3a{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.113760px;}
.ls21{letter-spacing:0.132480px;}
.ls1e{letter-spacing:0.145800px;}
.ls20{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.179280px;}
.ls13{letter-spacing:0.198720px;}
.ls44{letter-spacing:0.199800px;}
.ls45{letter-spacing:0.205200px;}
.ls1b{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.263520px;}
.ls12{letter-spacing:0.264960px;}
.ls2e{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.287280px;}
.ls10{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.341280px;}
.ls28{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.383040px;}
.ls33{letter-spacing:0.597600px;}
.ls25{letter-spacing:0.662400px;}
.ls31{letter-spacing:0.728640px;}
.ls4{letter-spacing:0.839376px;}
.ls37{letter-spacing:1.457280px;}
.ls3d{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.960704px;}
.ls38{letter-spacing:2.185920px;}
.ls36{letter-spacing:5.034240px;}
.ls39{letter-spacing:5.940000px;}
.ls40{letter-spacing:7.948800px;}
.ls27{letter-spacing:9.558000px;}
.ls7{letter-spacing:10.920960px;}
.ls8{letter-spacing:11.717280px;}
.ls3f{letter-spacing:15.102720px;}
.ls3c{letter-spacing:15.831360px;}
.ls32{letter-spacing:21.060000px;}
.ls1f{letter-spacing:66.265200px;}
.ls26{letter-spacing:630.057600px;}
.ls43{letter-spacing:630.777600px;}
.ls0{letter-spacing:647.337600px;}
.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;}
}
.ws35{word-spacing:-56.880000px;}
.ws37{word-spacing:-28.944000px;}
.ws5{word-spacing:-25.280640px;}
.ws2{word-spacing:-25.184880px;}
.ws4{word-spacing:-24.897600px;}
.ws3{word-spacing:-24.610320px;}
.ws7{word-spacing:-18.648000px;}
.wsc{word-spacing:-18.504000px;}
.ws6{word-spacing:-17.487360px;}
.wsb1{word-spacing:-16.758720px;}
.ws3a{word-spacing:-16.560000px;}
.ws8e{word-spacing:-16.493760px;}
.wsa4{word-spacing:-16.427520px;}
.ws38{word-spacing:-15.831360px;}
.ws3b{word-spacing:-15.698880px;}
.ws79{word-spacing:-15.119280px;}
.ws59{word-spacing:-14.940000px;}
.ws8d{word-spacing:-14.820480px;}
.ws36{word-spacing:-14.333760px;}
.ws8c{word-spacing:-14.282640px;}
.wsb{word-spacing:-14.220000px;}
.ws8{word-spacing:-14.163120px;}
.wsa{word-spacing:-14.049360px;}
.ws9{word-spacing:-13.992480px;}
.ws0{word-spacing:-13.986000px;}
.ws5b{word-spacing:-13.878000px;}
.ws5a{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.690560px;}
.ws39{word-spacing:-9.720000px;}
.ws58{word-spacing:-9.000000px;}
.ws3c{word-spacing:-8.280000px;}
.wsb9{word-spacing:-4.173120px;}
.ws70{word-spacing:-3.576960px;}
.wsbb{word-spacing:-3.510720px;}
.ws95{word-spacing:-3.444480px;}
.ws88{word-spacing:-2.862000px;}
.ws43{word-spacing:-2.848320px;}
.ws45{word-spacing:-2.715840px;}
.ws3e{word-spacing:-2.673360px;}
.ws44{word-spacing:-2.318400px;}
.ws9d{word-spacing:-2.268000px;}
.ws54{word-spacing:-2.185920px;}
.wsa3{word-spacing:-2.160000px;}
.ws5e{word-spacing:-2.151360px;}
.wsb6{word-spacing:-2.119680px;}
.ws83{word-spacing:-2.053440px;}
.ws78{word-spacing:-2.052000px;}
.ws60{word-spacing:-1.912320px;}
.ws5f{word-spacing:-1.733040px;}
.wsa2{word-spacing:-1.674000px;}
.ws51{word-spacing:-1.457280px;}
.ws62{word-spacing:-1.434240px;}
.ws18{word-spacing:-1.391040px;}
.ws2f{word-spacing:-1.365120px;}
.ws50{word-spacing:-1.324800px;}
.ws2e{word-spacing:-1.251360px;}
.ws69{word-spacing:-0.927360px;}
.wsa0{word-spacing:-0.810000px;}
.ws41{word-spacing:-0.728640px;}
.ws80{word-spacing:-0.717120px;}
.ws8b{word-spacing:-0.702000px;}
.ws93{word-spacing:-0.662400px;}
.ws34{word-spacing:-0.625680px;}
.ws4c{word-spacing:-0.596160px;}
.ws17{word-spacing:-0.383040px;}
.wsb8{word-spacing:-0.270000px;}
.ws2c{word-spacing:-0.216000px;}
.ws3f{word-spacing:-0.170640px;}
.wsf{word-spacing:-0.132480px;}
.ws9e{word-spacing:-0.108000px;}
.ws10{word-spacing:-0.066240px;}
.wsd{word-spacing:0.000000px;}
.ws3d{word-spacing:0.054000px;}
.ws61{word-spacing:0.119520px;}
.ws11{word-spacing:0.125280px;}
.ws42{word-spacing:0.132480px;}
.ws1c{word-spacing:0.170640px;}
.ws40{word-spacing:0.216000px;}
.ws65{word-spacing:0.239040px;}
.ws15{word-spacing:0.287280px;}
.ws29{word-spacing:0.341280px;}
.ws14{word-spacing:0.395280px;}
.wse{word-spacing:0.432000px;}
.ws13{word-spacing:0.478800px;}
.ws2b{word-spacing:0.511920px;}
.ws16{word-spacing:0.574560px;}
.wsbd{word-spacing:0.596160px;}
.ws64{word-spacing:0.717120px;}
.ws19{word-spacing:0.728640px;}
.ws90{word-spacing:0.794880px;}
.ws81{word-spacing:0.836640px;}
.ws4e{word-spacing:0.861120px;}
.ws12{word-spacing:0.864000px;}
.ws27{word-spacing:0.910080px;}
.wsb5{word-spacing:0.993600px;}
.ws63{word-spacing:1.015920px;}
.ws5c{word-spacing:1.126080px;}
.wsa1{word-spacing:1.242000px;}
.ws98{word-spacing:1.258560px;}
.ws76{word-spacing:1.350000px;}
.ws7e{word-spacing:1.434240px;}
.ws4b{word-spacing:1.457280px;}
.wsb0{word-spacing:1.458000px;}
.ws77{word-spacing:1.566000px;}
.ws7c{word-spacing:1.589760px;}
.ws2a{word-spacing:1.592640px;}
.ws25{word-spacing:1.649520px;}
.ws7f{word-spacing:1.733040px;}
.ws28{word-spacing:1.820160px;}
.ws72{word-spacing:1.854720px;}
.ws9a{word-spacing:1.987200px;}
.ws4a{word-spacing:2.185920px;}
.ws4f{word-spacing:2.318400px;}
.ws84{word-spacing:2.583360px;}
.wsa7{word-spacing:2.715840px;}
.ws86{word-spacing:2.868480px;}
.ws66{word-spacing:2.914560px;}
.wsbe{word-spacing:3.047040px;}
.ws85{word-spacing:3.406320px;}
.wsad{word-spacing:3.444480px;}
.ws4d{word-spacing:3.576960px;}
.ws5d{word-spacing:3.585600px;}
.ws67{word-spacing:3.643200px;}
.ws46{word-spacing:3.709440px;}
.wsba{word-spacing:3.775680px;}
.wsa5{word-spacing:3.974400px;}
.ws6b{word-spacing:4.305600px;}
.ws97{word-spacing:4.438080px;}
.ws31{word-spacing:4.493520px;}
.ws30{word-spacing:4.607280px;}
.ws32{word-spacing:4.834800px;}
.ws55{word-spacing:5.034240px;}
.ws6f{word-spacing:5.100480px;}
.ws6c{word-spacing:5.166720px;}
.wsbf{word-spacing:5.564160px;}
.ws9f{word-spacing:5.670000px;}
.ws6e{word-spacing:5.762880px;}
.ws6d{word-spacing:5.895360px;}
.wsb4{word-spacing:6.094080px;}
.ws94{word-spacing:6.491520px;}
.ws7b{word-spacing:6.624000px;}
.ws1f{word-spacing:6.654960px;}
.ws57{word-spacing:7.220160px;}
.wsb7{word-spacing:7.750080px;}
.ws49{word-spacing:7.948800px;}
.ws24{word-spacing:8.076960px;}
.ws73{word-spacing:8.081280px;}
.ws23{word-spacing:8.247600px;}
.ws22{word-spacing:8.418240px;}
.ws74{word-spacing:8.611200px;}
.ws87{word-spacing:8.665200px;}
.ws75{word-spacing:9.180000px;}
.ws56{word-spacing:9.339840px;}
.ws7a{word-spacing:9.472320px;}
.ws9b{word-spacing:10.068480px;}
.ws33{word-spacing:10.238400px;}
.ws6a{word-spacing:10.797120px;}
.ws99{word-spacing:10.929600px;}
.ws92{word-spacing:11.525760px;}
.ws1a{word-spacing:11.717280px;}
.ws8f{word-spacing:12.250800px;}
.ws9c{word-spacing:12.254400px;}
.wsa9{word-spacing:12.983040px;}
.wsa8{word-spacing:13.115520px;}
.ws47{word-spacing:13.380480px;}
.ws53{word-spacing:13.512960px;}
.ws52{word-spacing:13.711680px;}
.ws68{word-spacing:13.844160px;}
.ws2d{word-spacing:13.878720px;}
.wsb2{word-spacing:14.374080px;}
.ws20{word-spacing:14.447520px;}
.ws48{word-spacing:14.506560px;}
.ws21{word-spacing:14.561280px;}
.ws96{word-spacing:15.102720px;}
.wsbc{word-spacing:15.235200px;}
.wsb3{word-spacing:15.632640px;}
.ws71{word-spacing:15.831360px;}
.ws82{word-spacing:16.692480px;}
.ws26{word-spacing:16.722720px;}
.wsaf{word-spacing:18.745920px;}
.wsae{word-spacing:19.143360px;}
.ws7d{word-spacing:20.136960px;}
.ws1e{word-spacing:20.249280px;}
.ws1d{word-spacing:20.306160px;}
.ws1b{word-spacing:20.363040px;}
.ws8a{word-spacing:20.790000px;}
.ws89{word-spacing:21.006000px;}
.ws91{word-spacing:21.594240px;}
.wsa6{word-spacing:23.780160px;}
.wsac{word-spacing:25.303680px;}
.wsaa{word-spacing:26.032320px;}
.wsab{word-spacing:26.628480px;}
._7{margin-left:-11.989440px;}
._9{margin-left:-4.248000px;}
._6{margin-left:-2.387232px;}
._1{margin-left:-1.008000px;}
._0{width:1.085760px;}
._5{width:2.437056px;}
._8{width:4.266720px;}
._4{width:5.341680px;}
._3{width:8.222400px;}
._2{width:21.102480px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(185,25,25);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.120000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fsd{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs7{font-size:131.760000px;}
.fs6{font-size:167.760000px;}
.fs4{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:72.540000px;}
.y7f{bottom:110.326500px;}
.ya4{bottom:110.520000px;}
.y54{bottom:114.120000px;}
.y7e{bottom:128.511000px;}
.ye8{bottom:128.686500px;}
.y108{bottom:128.695500px;}
.y53{bottom:129.240000px;}
.ya3{bottom:132.480000px;}
.y146{bottom:143.218800px;}
.y7d{bottom:146.871000px;}
.yc9{bottom:147.600000px;}
.y52{bottom:149.724000px;}
.y107{bottom:150.660000px;}
.y7c{bottom:165.055500px;}
.y145{bottom:165.541680px;}
.y51{bottom:172.046880px;}
.y29{bottom:181.828620px;}
.ye7{bottom:183.240000px;}
.y7b{bottom:187.020000px;}
.y144{bottom:187.864560px;}
.y50{bottom:194.187600px;}
.y126{bottom:195.965280px;}
.y28{bottom:201.267360px;}
.ya2{bottom:201.591000px;}
.y7a{bottom:202.140000px;}
.ye6{bottom:205.380000px;}
.y143{bottom:210.005280px;}
.y4f{bottom:216.510480px;}
.y125{bottom:218.288160px;}
.ya1{bottom:219.775500px;}
.ye5{bottom:219.780000px;}
.y27{bottom:220.521240px;}
.y142{bottom:232.328160px;}
.ye4{bottom:238.135500px;}
.y26{bottom:239.775120px;}
.y106{bottom:240.832080px;}
.y14b{bottom:240.939360px;}
.ya0{bottom:241.740000px;}
.yc8{bottom:246.551760px;}
.y4e{bottom:253.588320px;}
.y124{bottom:255.366000px;}
.y9f{bottom:256.860000px;}
.y79{bottom:257.891760px;}
.y25{bottom:259.029000px;}
.ye3{bottom:260.100000px;}
.y14a{bottom:263.262240px;}
.y105{bottom:263.337120px;}
.yc7{bottom:268.874640px;}
.y141{bottom:269.406000px;}
.ye2{bottom:275.220000px;}
.y4d{bottom:276.093360px;}
.y123{bottom:277.871040px;}
.y24{bottom:278.112240px;}
.y78{bottom:280.214640px;}
.y104{bottom:285.585120px;}
.yc6{bottom:291.197520px;}
.y140{bottom:291.911040px;}
.y23{bottom:297.366120px;}
.y4c{bottom:298.234080px;}
.y122{bottom:300.011760px;}
.y77{bottom:302.537520px;}
.y103{bottom:307.725840px;}
.y13f{bottom:314.051760px;}
.y22{bottom:316.620000px;}
.y4b{bottom:320.556960px;}
.y121{bottom:322.334640px;}
.y76{bottom:324.678240px;}
.yc5{bottom:328.275360px;}
.y9e{bottom:328.698540px;}
.y102{bottom:330.048720px;}
.y13e{bottom:336.374640px;}
.y4a{bottom:342.879840px;}
.y120{bottom:344.657520px;}
.y9d{bottom:348.852600px;}
.yc4{bottom:350.598240px;}
.y21{bottom:350.820000px;}
.y101{bottom:352.371600px;}
.y13d{bottom:358.697520px;}
.y75{bottom:361.756080px;}
.y49{bottom:365.020560px;}
.ye1{bottom:366.651360px;}
.y11f{bottom:366.798240px;}
.y9c{bottom:369.006660px;}
.yc3{bottom:372.921120px;}
.y100{bottom:374.512320px;}
.y74{bottom:384.261120px;}
.y20{bottom:387.180000px;}
.y48{bottom:387.343440px;}
.y11e{bottom:389.121120px;}
.ye0{bottom:389.156400px;}
.y9b{bottom:389.340000px;}
.yc2{bottom:395.244000px;}
.y13c{bottom:395.775360px;}
.yff{bottom:396.835200px;}
.y73{bottom:406.584000px;}
.y11d{bottom:411.444000px;}
.ydf{bottom:411.479280px;}
.yc1{bottom:417.384720px;}
.y13b{bottom:418.098240px;}
.yfe{bottom:419.158080px;}
.y1f{bottom:421.740000px;}
.y47{bottom:424.421280px;}
.y9a{bottom:424.974240px;}
.y72{bottom:428.724720px;}
.yde{bottom:433.565280px;}
.y11c{bottom:433.584720px;}
.yc0{bottom:439.707600px;}
.yfd{bottom:441.298800px;}
.y46{bottom:446.926320px;}
.y99{bottom:447.297120px;}
.y71{bottom:451.047600px;}
.y13a{bottom:455.176080px;}
.ydd{bottom:455.888160px;}
.y1e{bottom:458.138520px;}
.ybf{bottom:462.030480px;}
.yfc{bottom:463.621680px;}
.y45{bottom:469.067040px;}
.y98{bottom:469.620000px;}
.y11b{bottom:470.662560px;}
.y70{bottom:473.370480px;}
.y1d{bottom:477.577260px;}
.y139{bottom:477.681120px;}
.ydc{bottom:478.211040px;}
.ybe{bottom:484.171200px;}
.yfb{bottom:485.944560px;}
.y44{bottom:491.389920px;}
.y11a{bottom:493.167600px;}
.y6f{bottom:495.511200px;}
.y138{bottom:500.004000px;}
.y97{bottom:506.345940px;}
.ybd{bottom:506.494080px;}
.yfa{bottom:508.085280px;}
.y1c{bottom:511.591500px;}
.y43{bottom:513.712800px;}
.ydb{bottom:515.288880px;}
.y119{bottom:515.490480px;}
.y137{bottom:522.144720px;}
.y96{bottom:526.500000px;}
.yf9{bottom:530.408160px;}
.y1b{bottom:531.030240px;}
.y6e{bottom:532.589040px;}
.y42{bottom:535.853520px;}
.yda{bottom:537.611760px;}
.y118{bottom:537.631200px;}
.ybc{bottom:543.571920px;}
.y136{bottom:544.467600px;}
.y1a{bottom:550.113480px;}
.yf8{bottom:552.731040px;}
.y6d{bottom:555.094080px;}
.y41{bottom:558.176400px;}
.yd9{bottom:559.934640px;}
.y117{bottom:559.954080px;}
.y95{bottom:562.122000px;}
.ybb{bottom:566.076960px;}
.y19{bottom:569.367360px;}
.yf7{bottom:574.871760px;}
.y6c{bottom:577.416960px;}
.y40{bottom:580.499280px;}
.y135{bottom:581.545440px;}
.yd8{bottom:582.257520px;}
.y94{bottom:584.627040px;}
.yba{bottom:588.217680px;}
.y18{bottom:588.621240px;}
.y116{bottom:597.031920px;}
.yf6{bottom:597.194640px;}
.y6b{bottom:599.557680px;}
.y3f{bottom:602.627040px;}
.y134{bottom:604.050480px;}
.yd7{bottom:604.398240px;}
.y93{bottom:606.949920px;}
.y17{bottom:607.875120px;}
.yb9{bottom:610.540560px;}
.yf5{bottom:619.517520px;}
.y115{bottom:619.536960px;}
.y6a{bottom:621.880560px;}
.y3e{bottom:624.949920px;}
.y133{bottom:626.191200px;}
.yd6{bottom:626.721120px;}
.y16{bottom:627.129000px;}
.y92{bottom:629.090640px;}
.yb8{bottom:632.863440px;}
.yf4{bottom:641.658240px;}
.y114{bottom:641.677680px;}
.y69{bottom:644.203440px;}
.y15{bottom:646.212240px;}
.y3d{bottom:647.272800px;}
.y132{bottom:648.514080px;}
.yd5{bottom:649.044000px;}
.yb7{bottom:655.186320px;}
.yf3{bottom:663.981120px;}
.y113{bottom:664.000560px;}
.y14{bottom:665.466120px;}
.y91{bottom:666.168480px;}
.y68{bottom:666.344160px;}
.yb6{bottom:677.327040px;}
.y3c{bottom:684.350640px;}
.y13{bottom:684.720000px;}
.y131{bottom:685.591920px;}
.yd4{bottom:686.121840px;}
.yf2{bottom:686.304000px;}
.y67{bottom:688.667040px;}
.y90{bottom:688.673520px;}
.yb5{bottom:699.649920px;}
.y112{bottom:701.078400px;}
.y3b{bottom:706.673520px;}
.y130{bottom:708.096960px;}
.yd3{bottom:708.444720px;}
.y66{bottom:710.989920px;}
.y8f{bottom:710.996400px;}
.y12{bottom:718.920000px;}
.y111{bottom:723.583440px;}
.y3a{bottom:728.996400px;}
.y12f{bottom:730.237680px;}
.yd2{bottom:730.767600px;}
.y65{bottom:733.130640px;}
.y8e{bottom:733.137120px;}
.yb4{bottom:736.727760px;}
.y11{bottom:741.241440px;}
.y110{bottom:745.724160px;}
.y39{bottom:751.319280px;}
.y12e{bottom:752.560560px;}
.yd1{bottom:753.090480px;}
.y64{bottom:755.453520px;}
.y8d{bottom:755.460000px;}
.yb3{bottom:759.232800px;}
.y10{bottom:762.653520px;}
.y10f{bottom:768.047040px;}
.y38{bottom:773.460000px;}
.yd0{bottom:775.231200px;}
.y63{bottom:777.776400px;}
.yb2{bottom:781.373520px;}
.yf{bottom:782.459280px;}
.y12d{bottom:789.638400px;}
.yf1{bottom:790.168320px;}
.y10e{bottom:790.369920px;}
.y8c{bottom:792.204480px;}
.ycf{bottom:797.554080px;}
.ye{bottom:802.265040px;}
.yb1{bottom:803.696400px;}
.y12c{bottom:812.143440px;}
.y37{bottom:812.160000px;}
.y8b{bottom:812.358540px;}
.yf0{bottom:812.491200px;}
.y10d{bottom:812.510640px;}
.y62{bottom:814.854240px;}
.yce{bottom:819.876960px;}
.yb0{bottom:826.019280px;}
.y8a{bottom:832.691880px;}
.yef{bottom:834.814080px;}
.y10c{bottom:834.833520px;}
.y61{bottom:837.177120px;}
.yd{bottom:837.720000px;}
.ycd{bottom:842.017680px;}
.y36{bottom:843.117120px;}
.yaf{bottom:848.160000px;}
.y12b{bottom:849.221280px;}
.y89{bottom:852.845940px;}
.yee{bottom:857.136960px;}
.y10b{bottom:857.156400px;}
.y60{bottom:859.500000px;}
.yc{bottom:859.838760px;}
.ycc{bottom:864.340560px;}
.y35{bottom:865.440000px;}
.y12a{bottom:871.544160px;}
.y88{bottom:873.000000px;}
.yed{bottom:879.277680px;}
.y10a{bottom:879.297120px;}
.y5f{bottom:881.822880px;}
.yb{bottom:884.329380px;}
.yae{bottom:884.892600px;}
.ycb{bottom:886.663440px;}
.y34{bottom:887.042880px;}
.y129{bottom:893.867040px;}
.yec{bottom:901.600560px;}
.y5e{bottom:903.963600px;}
.yad{bottom:905.046660px;}
.y33{bottom:906.296760px;}
.y87{bottom:908.622000px;}
.yca{bottom:908.804160px;}
.ya{bottom:908.820000px;}
.yeb{bottom:923.923440px;}
.y32{bottom:925.380000px;}
.y5d{bottom:926.286480px;}
.y128{bottom:930.944880px;}
.y149{bottom:931.127040px;}
.y9{bottom:935.280000px;}
.y31{bottom:944.652780px;}
.y86{bottom:945.882000px;}
.yea{bottom:946.064160px;}
.y148{bottom:953.449920px;}
.yac{bottom:961.001280px;}
.y5c{bottom:963.364320px;}
.y30{bottom:963.906660px;}
.y127{bottom:968.204880px;}
.y85{bottom:968.387040px;}
.y8{bottom:970.740000px;}
.ye9{bottom:983.142000px;}
.yab{bottom:983.324160px;}
.y147{bottom:990.527760px;}
.y84{bottom:990.709920px;}
.y2f{bottom:997.920900px;}
.y5b{bottom:1000.284480px;}
.yaa{bottom:1005.647040px;}
.y7{bottom:1009.609380px;}
.y83{bottom:1012.850640px;}
.y5a{bottom:1020.438540px;}
.ya9{bottom:1027.969920px;}
.y2e{bottom:1032.120000px;}
.y6{bottom:1034.100000px;}
.y82{bottom:1035.173520px;}
.y59{bottom:1040.771880px;}
.ya8{bottom:1050.110640px;}
.y81{bottom:1057.496400px;}
.y58{bottom:1060.925940px;}
.y2d{bottom:1066.500000px;}
.y5{bottom:1068.300000px;}
.y109{bottom:1072.251360px;}
.ya7{bottom:1072.433520px;}
.y80{bottom:1079.637120px;}
.y57{bottom:1081.080000px;}
.ya6{bottom:1094.756400px;}
.y2c{bottom:1103.052240px;}
.y56{bottom:1116.714960px;}
.ya5{bottom:1116.897120px;}
.y2b{bottom:1122.306120px;}
.y55{bottom:1139.220000px;}
.y2a{bottom:1141.560000px;}
.y4{bottom:1144.980000px;}
.y2{bottom:1174.496400px;}
.y1{bottom:1194.120000px;}
.h11{height:34.819453px;}
.h5{height:36.509766px;}
.h4{height:39.639375px;}
.h15{height:39.830273px;}
.h3{height:44.149219px;}
.h14{height:49.939453px;}
.hd{height:52.602891px;}
.h12{height:55.266328px;}
.he{height:59.324063px;}
.h13{height:61.161142px;}
.hb{height:61.259062px;}
.h10{height:61.310902px;}
.h18{height:61.336823px;}
.h16{height:61.477942px;}
.h17{height:61.558582px;}
.h2{height:62.876250px;}
.hc{height:68.343750px;}
.hf{height:81.738281px;}
.h7{height:90.897188px;}
.h9{height:125.069062px;}
.ha{height:125.154023px;}
.h8{height:159.240938px;}
.h6{height:273.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.387920px;}
.x4{left:148.860000px;}
.x7{left:212.580000px;}
.x5{left:239.583600px;}
.x6{left:266.587380px;}
.x8{left:300.060000px;}
.x1{left:304.380000px;}
.x3{left:562.140000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.352960pt;}
.v1{vertical-align:16.046080pt;}
.ls42{letter-spacing:-0.883200pt;}
.ls22{letter-spacing:-0.765440pt;}
.ls11{letter-spacing:-0.647680pt;}
.ls34{letter-spacing:-0.584320pt;}
.ls46{letter-spacing:-0.529920pt;}
.ls23{letter-spacing:-0.471040pt;}
.ls3e{letter-spacing:-0.353280pt;}
.ls35{letter-spacing:-0.318720pt;}
.ls1a{letter-spacing:-0.303360pt;}
.ls41{letter-spacing:-0.294400pt;}
.ls3b{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.255360pt;}
.ls2a{letter-spacing:-0.212480pt;}
.ls16{letter-spacing:-0.202240pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.170240pt;}
.ls17{letter-spacing:-0.151680pt;}
.lsc{letter-spacing:-0.148480pt;}
.ls24{letter-spacing:-0.117760pt;}
.ls2c{letter-spacing:-0.106240pt;}
.ls1d{letter-spacing:-0.101120pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.058880pt;}
.ls2b{letter-spacing:-0.053120pt;}
.ls15{letter-spacing:-0.050560pt;}
.lsa{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.050560pt;}
.ls2{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.086400pt;}
.ls3{letter-spacing:0.088320pt;}
.ls3a{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.101120pt;}
.ls21{letter-spacing:0.117760pt;}
.ls1e{letter-spacing:0.129600pt;}
.ls20{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.159360pt;}
.ls13{letter-spacing:0.176640pt;}
.ls44{letter-spacing:0.177600pt;}
.ls45{letter-spacing:0.182400pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.234240pt;}
.ls12{letter-spacing:0.235520pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.255360pt;}
.ls10{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.303360pt;}
.ls28{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.340480pt;}
.ls33{letter-spacing:0.531200pt;}
.ls25{letter-spacing:0.588800pt;}
.ls31{letter-spacing:0.647680pt;}
.ls4{letter-spacing:0.746112pt;}
.ls37{letter-spacing:1.295360pt;}
.ls3d{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.742848pt;}
.ls38{letter-spacing:1.943040pt;}
.ls36{letter-spacing:4.474880pt;}
.ls39{letter-spacing:5.280000pt;}
.ls40{letter-spacing:7.065600pt;}
.ls27{letter-spacing:8.496000pt;}
.ls7{letter-spacing:9.707520pt;}
.ls8{letter-spacing:10.415360pt;}
.ls3f{letter-spacing:13.424640pt;}
.ls3c{letter-spacing:14.072320pt;}
.ls32{letter-spacing:18.720000pt;}
.ls1f{letter-spacing:58.902400pt;}
.ls26{letter-spacing:560.051200pt;}
.ls43{letter-spacing:560.691200pt;}
.ls0{letter-spacing:575.411200pt;}
.ws35{word-spacing:-50.560000pt;}
.ws37{word-spacing:-25.728000pt;}
.ws5{word-spacing:-22.471680pt;}
.ws2{word-spacing:-22.386560pt;}
.ws4{word-spacing:-22.131200pt;}
.ws3{word-spacing:-21.875840pt;}
.ws7{word-spacing:-16.576000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws6{word-spacing:-15.544320pt;}
.wsb1{word-spacing:-14.896640pt;}
.ws3a{word-spacing:-14.720000pt;}
.ws8e{word-spacing:-14.661120pt;}
.wsa4{word-spacing:-14.602240pt;}
.ws38{word-spacing:-14.072320pt;}
.ws3b{word-spacing:-13.954560pt;}
.ws79{word-spacing:-13.439360pt;}
.ws59{word-spacing:-13.280000pt;}
.ws8d{word-spacing:-13.173760pt;}
.ws36{word-spacing:-12.741120pt;}
.ws8c{word-spacing:-12.695680pt;}
.wsb{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.589440pt;}
.wsa{word-spacing:-12.488320pt;}
.ws9{word-spacing:-12.437760pt;}
.ws0{word-spacing:-12.432000pt;}
.ws5b{word-spacing:-12.336000pt;}
.ws5a{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.502720pt;}
.ws39{word-spacing:-8.640000pt;}
.ws58{word-spacing:-8.000000pt;}
.ws3c{word-spacing:-7.360000pt;}
.wsb9{word-spacing:-3.709440pt;}
.ws70{word-spacing:-3.179520pt;}
.wsbb{word-spacing:-3.120640pt;}
.ws95{word-spacing:-3.061760pt;}
.ws88{word-spacing:-2.544000pt;}
.ws43{word-spacing:-2.531840pt;}
.ws45{word-spacing:-2.414080pt;}
.ws3e{word-spacing:-2.376320pt;}
.ws44{word-spacing:-2.060800pt;}
.ws9d{word-spacing:-2.016000pt;}
.ws54{word-spacing:-1.943040pt;}
.wsa3{word-spacing:-1.920000pt;}
.ws5e{word-spacing:-1.912320pt;}
.wsb6{word-spacing:-1.884160pt;}
.ws83{word-spacing:-1.825280pt;}
.ws78{word-spacing:-1.824000pt;}
.ws60{word-spacing:-1.699840pt;}
.ws5f{word-spacing:-1.540480pt;}
.wsa2{word-spacing:-1.488000pt;}
.ws51{word-spacing:-1.295360pt;}
.ws62{word-spacing:-1.274880pt;}
.ws18{word-spacing:-1.236480pt;}
.ws2f{word-spacing:-1.213440pt;}
.ws50{word-spacing:-1.177600pt;}
.ws2e{word-spacing:-1.112320pt;}
.ws69{word-spacing:-0.824320pt;}
.wsa0{word-spacing:-0.720000pt;}
.ws41{word-spacing:-0.647680pt;}
.ws80{word-spacing:-0.637440pt;}
.ws8b{word-spacing:-0.624000pt;}
.ws93{word-spacing:-0.588800pt;}
.ws34{word-spacing:-0.556160pt;}
.ws4c{word-spacing:-0.529920pt;}
.ws17{word-spacing:-0.340480pt;}
.wsb8{word-spacing:-0.240000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws3f{word-spacing:-0.151680pt;}
.wsf{word-spacing:-0.117760pt;}
.ws9e{word-spacing:-0.096000pt;}
.ws10{word-spacing:-0.058880pt;}
.wsd{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.048000pt;}
.ws61{word-spacing:0.106240pt;}
.ws11{word-spacing:0.111360pt;}
.ws42{word-spacing:0.117760pt;}
.ws1c{word-spacing:0.151680pt;}
.ws40{word-spacing:0.192000pt;}
.ws65{word-spacing:0.212480pt;}
.ws15{word-spacing:0.255360pt;}
.ws29{word-spacing:0.303360pt;}
.ws14{word-spacing:0.351360pt;}
.wse{word-spacing:0.384000pt;}
.ws13{word-spacing:0.425600pt;}
.ws2b{word-spacing:0.455040pt;}
.ws16{word-spacing:0.510720pt;}
.wsbd{word-spacing:0.529920pt;}
.ws64{word-spacing:0.637440pt;}
.ws19{word-spacing:0.647680pt;}
.ws90{word-spacing:0.706560pt;}
.ws81{word-spacing:0.743680pt;}
.ws4e{word-spacing:0.765440pt;}
.ws12{word-spacing:0.768000pt;}
.ws27{word-spacing:0.808960pt;}
.wsb5{word-spacing:0.883200pt;}
.ws63{word-spacing:0.903040pt;}
.ws5c{word-spacing:1.000960pt;}
.wsa1{word-spacing:1.104000pt;}
.ws98{word-spacing:1.118720pt;}
.ws76{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.274880pt;}
.ws4b{word-spacing:1.295360pt;}
.wsb0{word-spacing:1.296000pt;}
.ws77{word-spacing:1.392000pt;}
.ws7c{word-spacing:1.413120pt;}
.ws2a{word-spacing:1.415680pt;}
.ws25{word-spacing:1.466240pt;}
.ws7f{word-spacing:1.540480pt;}
.ws28{word-spacing:1.617920pt;}
.ws72{word-spacing:1.648640pt;}
.ws9a{word-spacing:1.766400pt;}
.ws4a{word-spacing:1.943040pt;}
.ws4f{word-spacing:2.060800pt;}
.ws84{word-spacing:2.296320pt;}
.wsa7{word-spacing:2.414080pt;}
.ws86{word-spacing:2.549760pt;}
.ws66{word-spacing:2.590720pt;}
.wsbe{word-spacing:2.708480pt;}
.ws85{word-spacing:3.027840pt;}
.wsad{word-spacing:3.061760pt;}
.ws4d{word-spacing:3.179520pt;}
.ws5d{word-spacing:3.187200pt;}
.ws67{word-spacing:3.238400pt;}
.ws46{word-spacing:3.297280pt;}
.wsba{word-spacing:3.356160pt;}
.wsa5{word-spacing:3.532800pt;}
.ws6b{word-spacing:3.827200pt;}
.ws97{word-spacing:3.944960pt;}
.ws31{word-spacing:3.994240pt;}
.ws30{word-spacing:4.095360pt;}
.ws32{word-spacing:4.297600pt;}
.ws55{word-spacing:4.474880pt;}
.ws6f{word-spacing:4.533760pt;}
.ws6c{word-spacing:4.592640pt;}
.wsbf{word-spacing:4.945920pt;}
.ws9f{word-spacing:5.040000pt;}
.ws6e{word-spacing:5.122560pt;}
.ws6d{word-spacing:5.240320pt;}
.wsb4{word-spacing:5.416960pt;}
.ws94{word-spacing:5.770240pt;}
.ws7b{word-spacing:5.888000pt;}
.ws1f{word-spacing:5.915520pt;}
.ws57{word-spacing:6.417920pt;}
.wsb7{word-spacing:6.888960pt;}
.ws49{word-spacing:7.065600pt;}
.ws24{word-spacing:7.179520pt;}
.ws73{word-spacing:7.183360pt;}
.ws23{word-spacing:7.331200pt;}
.ws22{word-spacing:7.482880pt;}
.ws74{word-spacing:7.654400pt;}
.ws87{word-spacing:7.702400pt;}
.ws75{word-spacing:8.160000pt;}
.ws56{word-spacing:8.302080pt;}
.ws7a{word-spacing:8.419840pt;}
.ws9b{word-spacing:8.949760pt;}
.ws33{word-spacing:9.100800pt;}
.ws6a{word-spacing:9.597440pt;}
.ws99{word-spacing:9.715200pt;}
.ws92{word-spacing:10.245120pt;}
.ws1a{word-spacing:10.415360pt;}
.ws8f{word-spacing:10.889600pt;}
.ws9c{word-spacing:10.892800pt;}
.wsa9{word-spacing:11.540480pt;}
.wsa8{word-spacing:11.658240pt;}
.ws47{word-spacing:11.893760pt;}
.ws53{word-spacing:12.011520pt;}
.ws52{word-spacing:12.188160pt;}
.ws68{word-spacing:12.305920pt;}
.ws2d{word-spacing:12.336640pt;}
.wsb2{word-spacing:12.776960pt;}
.ws20{word-spacing:12.842240pt;}
.ws48{word-spacing:12.894720pt;}
.ws21{word-spacing:12.943360pt;}
.ws96{word-spacing:13.424640pt;}
.wsbc{word-spacing:13.542400pt;}
.wsb3{word-spacing:13.895680pt;}
.ws71{word-spacing:14.072320pt;}
.ws82{word-spacing:14.837760pt;}
.ws26{word-spacing:14.864640pt;}
.wsaf{word-spacing:16.663040pt;}
.wsae{word-spacing:17.016320pt;}
.ws7d{word-spacing:17.899520pt;}
.ws1e{word-spacing:17.999360pt;}
.ws1d{word-spacing:18.049920pt;}
.ws1b{word-spacing:18.100480pt;}
.ws8a{word-spacing:18.480000pt;}
.ws89{word-spacing:18.672000pt;}
.ws91{word-spacing:19.194880pt;}
.wsa6{word-spacing:21.137920pt;}
.wsac{word-spacing:22.492160pt;}
.wsaa{word-spacing:23.139840pt;}
.wsab{word-spacing:23.669760pt;}
._7{margin-left:-10.657280pt;}
._9{margin-left:-3.776000pt;}
._6{margin-left:-2.121984pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.965120pt;}
._5{width:2.166272pt;}
._8{width:3.792640pt;}
._4{width:4.748160pt;}
._3{width:7.308800pt;}
._2{width:18.757760pt;}
.fsc{font-size:29.440000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fsd{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs7{font-size:117.120000pt;}
.fs6{font-size:149.120000pt;}
.fs4{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:64.480000pt;}
.y7f{bottom:98.068000pt;}
.ya4{bottom:98.240000pt;}
.y54{bottom:101.440000pt;}
.y7e{bottom:114.232000pt;}
.ye8{bottom:114.388000pt;}
.y108{bottom:114.396000pt;}
.y53{bottom:114.880000pt;}
.ya3{bottom:117.760000pt;}
.y146{bottom:127.305600pt;}
.y7d{bottom:130.552000pt;}
.yc9{bottom:131.200000pt;}
.y52{bottom:133.088000pt;}
.y107{bottom:133.920000pt;}
.y7c{bottom:146.716000pt;}
.y145{bottom:147.148160pt;}
.y51{bottom:152.930560pt;}
.y29{bottom:161.625440pt;}
.ye7{bottom:162.880000pt;}
.y7b{bottom:166.240000pt;}
.y144{bottom:166.990720pt;}
.y50{bottom:172.611200pt;}
.y126{bottom:174.191360pt;}
.y28{bottom:178.904320pt;}
.ya2{bottom:179.192000pt;}
.y7a{bottom:179.680000pt;}
.ye6{bottom:182.560000pt;}
.y143{bottom:186.671360pt;}
.y4f{bottom:192.453760pt;}
.y125{bottom:194.033920pt;}
.ya1{bottom:195.356000pt;}
.ye5{bottom:195.360000pt;}
.y27{bottom:196.018880pt;}
.y142{bottom:206.513920pt;}
.ye4{bottom:211.676000pt;}
.y26{bottom:213.133440pt;}
.y106{bottom:214.072960pt;}
.y14b{bottom:214.168320pt;}
.ya0{bottom:214.880000pt;}
.yc8{bottom:219.157120pt;}
.y4e{bottom:225.411840pt;}
.y124{bottom:226.992000pt;}
.y9f{bottom:228.320000pt;}
.y79{bottom:229.237120pt;}
.y25{bottom:230.248000pt;}
.ye3{bottom:231.200000pt;}
.y14a{bottom:234.010880pt;}
.y105{bottom:234.077440pt;}
.yc7{bottom:238.999680pt;}
.y141{bottom:239.472000pt;}
.ye2{bottom:244.640000pt;}
.y4d{bottom:245.416320pt;}
.y123{bottom:246.996480pt;}
.y24{bottom:247.210880pt;}
.y78{bottom:249.079680pt;}
.y104{bottom:253.853440pt;}
.yc6{bottom:258.842240pt;}
.y140{bottom:259.476480pt;}
.y23{bottom:264.325440pt;}
.y4c{bottom:265.096960pt;}
.y122{bottom:266.677120pt;}
.y77{bottom:268.922240pt;}
.y103{bottom:273.534080pt;}
.y13f{bottom:279.157120pt;}
.y22{bottom:281.440000pt;}
.y4b{bottom:284.939520pt;}
.y121{bottom:286.519680pt;}
.y76{bottom:288.602880pt;}
.yc5{bottom:291.800320pt;}
.y9e{bottom:292.176480pt;}
.y102{bottom:293.376640pt;}
.y13e{bottom:298.999680pt;}
.y4a{bottom:304.782080pt;}
.y120{bottom:306.362240pt;}
.y9d{bottom:310.091200pt;}
.yc4{bottom:311.642880pt;}
.y21{bottom:311.840000pt;}
.y101{bottom:313.219200pt;}
.y13d{bottom:318.842240pt;}
.y75{bottom:321.560960pt;}
.y49{bottom:324.462720pt;}
.ye1{bottom:325.912320pt;}
.y11f{bottom:326.042880pt;}
.y9c{bottom:328.005920pt;}
.yc3{bottom:331.485440pt;}
.y100{bottom:332.899840pt;}
.y74{bottom:341.565440pt;}
.y20{bottom:344.160000pt;}
.y48{bottom:344.305280pt;}
.y11e{bottom:345.885440pt;}
.ye0{bottom:345.916800pt;}
.y9b{bottom:346.080000pt;}
.yc2{bottom:351.328000pt;}
.y13c{bottom:351.800320pt;}
.yff{bottom:352.742400pt;}
.y73{bottom:361.408000pt;}
.y11d{bottom:365.728000pt;}
.ydf{bottom:365.759360pt;}
.yc1{bottom:371.008640pt;}
.y13b{bottom:371.642880pt;}
.yfe{bottom:372.584960pt;}
.y1f{bottom:374.880000pt;}
.y47{bottom:377.263360pt;}
.y9a{bottom:377.754880pt;}
.y72{bottom:381.088640pt;}
.yde{bottom:385.391360pt;}
.y11c{bottom:385.408640pt;}
.yc0{bottom:390.851200pt;}
.yfd{bottom:392.265600pt;}
.y46{bottom:397.267840pt;}
.y99{bottom:397.597440pt;}
.y71{bottom:400.931200pt;}
.y13a{bottom:404.600960pt;}
.ydd{bottom:405.233920pt;}
.y1e{bottom:407.234240pt;}
.ybf{bottom:410.693760pt;}
.yfc{bottom:412.108160pt;}
.y45{bottom:416.948480pt;}
.y98{bottom:417.440000pt;}
.y11b{bottom:418.366720pt;}
.y70{bottom:420.773760pt;}
.y1d{bottom:424.513120pt;}
.y139{bottom:424.605440pt;}
.ydc{bottom:425.076480pt;}
.ybe{bottom:430.374400pt;}
.yfb{bottom:431.950720pt;}
.y44{bottom:436.791040pt;}
.y11a{bottom:438.371200pt;}
.y6f{bottom:440.454400pt;}
.y138{bottom:444.448000pt;}
.y97{bottom:450.085280pt;}
.ybd{bottom:450.216960pt;}
.yfa{bottom:451.631360pt;}
.y1c{bottom:454.748000pt;}
.y43{bottom:456.633600pt;}
.ydb{bottom:458.034560pt;}
.y119{bottom:458.213760pt;}
.y137{bottom:464.128640pt;}
.y96{bottom:468.000000pt;}
.yf9{bottom:471.473920pt;}
.y1b{bottom:472.026880pt;}
.y6e{bottom:473.412480pt;}
.y42{bottom:476.314240pt;}
.yda{bottom:477.877120pt;}
.y118{bottom:477.894400pt;}
.ybc{bottom:483.175040pt;}
.y136{bottom:483.971200pt;}
.y1a{bottom:488.989760pt;}
.yf8{bottom:491.316480pt;}
.y6d{bottom:493.416960pt;}
.y41{bottom:496.156800pt;}
.yd9{bottom:497.719680pt;}
.y117{bottom:497.736960pt;}
.y95{bottom:499.664000pt;}
.ybb{bottom:503.179520pt;}
.y19{bottom:506.104320pt;}
.yf7{bottom:510.997120pt;}
.y6c{bottom:513.259520pt;}
.y40{bottom:515.999360pt;}
.y135{bottom:516.929280pt;}
.yd8{bottom:517.562240pt;}
.y94{bottom:519.668480pt;}
.yba{bottom:522.860160pt;}
.y18{bottom:523.218880pt;}
.y116{bottom:530.695040pt;}
.yf6{bottom:530.839680pt;}
.y6b{bottom:532.940160pt;}
.y3f{bottom:535.668480pt;}
.y134{bottom:536.933760pt;}
.yd7{bottom:537.242880pt;}
.y93{bottom:539.511040pt;}
.y17{bottom:540.333440pt;}
.yb9{bottom:542.702720pt;}
.yf5{bottom:550.682240pt;}
.y115{bottom:550.699520pt;}
.y6a{bottom:552.782720pt;}
.y3e{bottom:555.511040pt;}
.y133{bottom:556.614400pt;}
.yd6{bottom:557.085440pt;}
.y16{bottom:557.448000pt;}
.y92{bottom:559.191680pt;}
.yb8{bottom:562.545280pt;}
.yf4{bottom:570.362880pt;}
.y114{bottom:570.380160pt;}
.y69{bottom:572.625280pt;}
.y15{bottom:574.410880pt;}
.y3d{bottom:575.353600pt;}
.y132{bottom:576.456960pt;}
.yd5{bottom:576.928000pt;}
.yb7{bottom:582.387840pt;}
.yf3{bottom:590.205440pt;}
.y113{bottom:590.222720pt;}
.y14{bottom:591.525440pt;}
.y91{bottom:592.149760pt;}
.y68{bottom:592.305920pt;}
.yb6{bottom:602.068480pt;}
.y3c{bottom:608.311680pt;}
.y13{bottom:608.640000pt;}
.y131{bottom:609.415040pt;}
.yd4{bottom:609.886080pt;}
.yf2{bottom:610.048000pt;}
.y67{bottom:612.148480pt;}
.y90{bottom:612.154240pt;}
.yb5{bottom:621.911040pt;}
.y112{bottom:623.180800pt;}
.y3b{bottom:628.154240pt;}
.y130{bottom:629.419520pt;}
.yd3{bottom:629.728640pt;}
.y66{bottom:631.991040pt;}
.y8f{bottom:631.996800pt;}
.y12{bottom:639.040000pt;}
.y111{bottom:643.185280pt;}
.y3a{bottom:647.996800pt;}
.y12f{bottom:649.100160pt;}
.yd2{bottom:649.571200pt;}
.y65{bottom:651.671680pt;}
.y8e{bottom:651.677440pt;}
.yb4{bottom:654.869120pt;}
.y11{bottom:658.881280pt;}
.y110{bottom:662.865920pt;}
.y39{bottom:667.839360pt;}
.y12e{bottom:668.942720pt;}
.yd1{bottom:669.413760pt;}
.y64{bottom:671.514240pt;}
.y8d{bottom:671.520000pt;}
.yb3{bottom:674.873600pt;}
.y10{bottom:677.914240pt;}
.y10f{bottom:682.708480pt;}
.y38{bottom:687.520000pt;}
.yd0{bottom:689.094400pt;}
.y63{bottom:691.356800pt;}
.yb2{bottom:694.554240pt;}
.yf{bottom:695.519360pt;}
.y12d{bottom:701.900800pt;}
.yf1{bottom:702.371840pt;}
.y10e{bottom:702.551040pt;}
.y8c{bottom:704.181760pt;}
.ycf{bottom:708.936960pt;}
.ye{bottom:713.124480pt;}
.yb1{bottom:714.396800pt;}
.y12c{bottom:721.905280pt;}
.y37{bottom:721.920000pt;}
.y8b{bottom:722.096480pt;}
.yf0{bottom:722.214400pt;}
.y10d{bottom:722.231680pt;}
.y62{bottom:724.314880pt;}
.yce{bottom:728.779520pt;}
.yb0{bottom:734.239360pt;}
.y8a{bottom:740.170560pt;}
.yef{bottom:742.056960pt;}
.y10c{bottom:742.074240pt;}
.y61{bottom:744.157440pt;}
.yd{bottom:744.640000pt;}
.ycd{bottom:748.460160pt;}
.y36{bottom:749.437440pt;}
.yaf{bottom:753.920000pt;}
.y12b{bottom:754.863360pt;}
.y89{bottom:758.085280pt;}
.yee{bottom:761.899520pt;}
.y10b{bottom:761.916800pt;}
.y60{bottom:764.000000pt;}
.yc{bottom:764.301120pt;}
.ycc{bottom:768.302720pt;}
.y35{bottom:769.280000pt;}
.y12a{bottom:774.705920pt;}
.y88{bottom:776.000000pt;}
.yed{bottom:781.580160pt;}
.y10a{bottom:781.597440pt;}
.y5f{bottom:783.842560pt;}
.yb{bottom:786.070560pt;}
.yae{bottom:786.571200pt;}
.ycb{bottom:788.145280pt;}
.y34{bottom:788.482560pt;}
.y129{bottom:794.548480pt;}
.yec{bottom:801.422720pt;}
.y5e{bottom:803.523200pt;}
.yad{bottom:804.485920pt;}
.y33{bottom:805.597120pt;}
.y87{bottom:807.664000pt;}
.yca{bottom:807.825920pt;}
.ya{bottom:807.840000pt;}
.yeb{bottom:821.265280pt;}
.y32{bottom:822.560000pt;}
.y5d{bottom:823.365760pt;}
.y128{bottom:827.506560pt;}
.y149{bottom:827.668480pt;}
.y9{bottom:831.360000pt;}
.y31{bottom:839.691360pt;}
.y86{bottom:840.784000pt;}
.yea{bottom:840.945920pt;}
.y148{bottom:847.511040pt;}
.yac{bottom:854.223360pt;}
.y5c{bottom:856.323840pt;}
.y30{bottom:856.805920pt;}
.y127{bottom:860.626560pt;}
.y85{bottom:860.788480pt;}
.y8{bottom:862.880000pt;}
.ye9{bottom:873.904000pt;}
.yab{bottom:874.065920pt;}
.y147{bottom:880.469120pt;}
.y84{bottom:880.631040pt;}
.y2f{bottom:887.040800pt;}
.y5b{bottom:889.141760pt;}
.yaa{bottom:893.908480pt;}
.y7{bottom:897.430560pt;}
.y83{bottom:900.311680pt;}
.y5a{bottom:907.056480pt;}
.ya9{bottom:913.751040pt;}
.y2e{bottom:917.440000pt;}
.y6{bottom:919.200000pt;}
.y82{bottom:920.154240pt;}
.y59{bottom:925.130560pt;}
.ya8{bottom:933.431680pt;}
.y81{bottom:939.996800pt;}
.y58{bottom:943.045280pt;}
.y2d{bottom:948.000000pt;}
.y5{bottom:949.600000pt;}
.y109{bottom:953.112320pt;}
.ya7{bottom:953.274240pt;}
.y80{bottom:959.677440pt;}
.y57{bottom:960.960000pt;}
.ya6{bottom:973.116800pt;}
.y2c{bottom:980.490880pt;}
.y56{bottom:992.635520pt;}
.ya5{bottom:992.797440pt;}
.y2b{bottom:997.605440pt;}
.y55{bottom:1012.640000pt;}
.y2a{bottom:1014.720000pt;}
.y4{bottom:1017.760000pt;}
.y2{bottom:1043.996800pt;}
.y1{bottom:1061.440000pt;}
.h11{height:30.950625pt;}
.h5{height:32.453125pt;}
.h4{height:35.235000pt;}
.h15{height:35.404688pt;}
.h3{height:39.243750pt;}
.h14{height:44.390625pt;}
.hd{height:46.758125pt;}
.h12{height:49.125625pt;}
.he{height:52.732500pt;}
.h13{height:54.365460pt;}
.hb{height:54.452500pt;}
.h10{height:54.498580pt;}
.h18{height:54.521620pt;}
.h16{height:54.647060pt;}
.h17{height:54.718740pt;}
.h2{height:55.890000pt;}
.hc{height:60.750000pt;}
.hf{height:72.656250pt;}
.h7{height:80.797500pt;}
.h9{height:111.172500pt;}
.ha{height:111.248020pt;}
.h8{height:141.547500pt;}
.h6{height:243.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.567040pt;}
.x4{left:132.320000pt;}
.x7{left:188.960000pt;}
.x5{left:212.963200pt;}
.x6{left:236.966560pt;}
.x8{left:266.720000pt;}
.x1{left:270.560000pt;}
.x3{left:499.680000pt;}
}




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