
    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_ce102a612c202f0fc5a0ba89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_16271ee80607f96272db82b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6d6c1141362df57cfc10b4ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8d02c1a82882dcee3bf0674a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d1ae9ac94dd8a141f1cbbea6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b0811c26eeb59cecafd4a5ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.756000;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_62a99b4916939a5a586bebd3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.674000;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_c87160cc9c08b15554e4b556.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.520000;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_79e1c6b3f787b63e6d0a8d16.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_537d34d0e98692c2198ae36d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693000;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_1674ead685def45a13ef6b03.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;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_0e40e9e6ab917884eebea079.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.684000;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_e34c247bcac037b35baad7a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.521000;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_324400df73d5c42653b68ea8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5506599779378f81c5d4149b.woff2')format("woff");}.fff{font-family:fff;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_107f0e6d7be215e55bc6e91f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899000;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);}
.v5{vertical-align:-8.940000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.000000px;}
.v3{vertical-align:10.020000px;}
.v4{vertical-align:11.940000px;}
.v2{vertical-align:22.860000px;}
.v8{vertical-align:40.980000px;}
.v7{vertical-align:125.280000px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.001244px;}
.ls1{letter-spacing:0.006480px;}
.ls1c{letter-spacing:0.006655px;}
.lsb{letter-spacing:0.022524px;}
.lsa{letter-spacing:0.022812px;}
.ls15{letter-spacing:0.031880px;}
.ls1a{letter-spacing:0.032336px;}
.ls17{letter-spacing:0.033927px;}
.ls9{letter-spacing:2.913944px;}
.ls18{letter-spacing:2.946655px;}
.ls8{letter-spacing:2.977219px;}
.ls19{letter-spacing:3.006655px;}
.ls5{letter-spacing:3.037219px;}
.lsc{letter-spacing:5.913944px;}
.ls23{letter-spacing:10.169767px;}
.ls16{letter-spacing:12.954026px;}
.ls1f{letter-spacing:13.264672px;}
.ls22{letter-spacing:13.311000px;}
.lsf{letter-spacing:13.324672px;}
.ls1b{letter-spacing:13.411880px;}
.ls3{letter-spacing:15.279947px;}
.lse{letter-spacing:15.873944px;}
.ls1e{letter-spacing:16.254026px;}
.ls20{letter-spacing:16.314026px;}
.ls14{letter-spacing:16.564672px;}
.ls2{letter-spacing:18.277219px;}
.ls7{letter-spacing:18.337219px;}
.ls4{letter-spacing:19.487196px;}
.ls13{letter-spacing:19.620130px;}
.ls21{letter-spacing:20.129767px;}
.ls6{letter-spacing:21.457219px;}
.ls11{letter-spacing:22.266655px;}
.ls12{letter-spacing:22.326655px;}
.lsd{letter-spacing:22.580274px;}
.ls10{letter-spacing:34.233944px;}
.ls24{letter-spacing:232.237414px;}
.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;}
}
.ws42{word-spacing:-0.071730px;}
.ws54{word-spacing:-0.059778px;}
.ws4{word-spacing:-0.053796px;}
.ws53{word-spacing:-0.041844px;}
.ws24{word-spacing:0.000000px;}
.ws5d{word-spacing:9.863370px;}
.ws46{word-spacing:10.544016px;}
.ws9b{word-spacing:12.695856px;}
.wsba{word-spacing:12.857244px;}
.ws5e{word-spacing:13.210938px;}
.ws55{word-spacing:13.223558px;}
.ws73{word-spacing:13.270716px;}
.wsbb{word-spacing:13.287612px;}
.ws1b{word-spacing:13.390272px;}
.ws75{word-spacing:13.450050px;}
.ws7e{word-spacing:13.569606px;}
.ws7a{word-spacing:13.933164px;}
.ws95{word-spacing:14.040756px;}
.wsaf{word-spacing:14.309736px;}
.ws9e{word-spacing:14.645610px;}
.ws8c{word-spacing:15.062880px;}
.ws48{word-spacing:15.170472px;}
.ws9d{word-spacing:15.183612px;}
.ws47{word-spacing:15.224268px;}
.ws4a{word-spacing:15.278064px;}
.ws2d{word-spacing:15.362946px;}
.ws91{word-spacing:15.422724px;}
.ws6b{word-spacing:15.602058px;}
.ws44{word-spacing:15.661836px;}
.ws18{word-spacing:15.721614px;}
.ws35{word-spacing:15.960726px;}
.wsac{word-spacing:16.031208px;}
.ws94{word-spacing:16.085004px;}
.ws10{word-spacing:16.138800px;}
.wsb3{word-spacing:16.246392px;}
.ws6c{word-spacing:16.319394px;}
.ws74{word-spacing:16.379172px;}
.ws61{word-spacing:16.558506px;}
.ws96{word-spacing:16.569168px;}
.wsb7{word-spacing:16.622964px;}
.ws83{word-spacing:16.676760px;}
.ws62{word-spacing:16.678062px;}
.ws67{word-spacing:16.730556px;}
.ws6e{word-spacing:16.797618px;}
.wse{word-spacing:16.838148px;}
.ws50{word-spacing:16.857396px;}
.wsb5{word-spacing:16.891944px;}
.ws15{word-spacing:16.976952px;}
.ws90{word-spacing:17.156286px;}
.ws59{word-spacing:17.335620px;}
.ws70{word-spacing:17.395398px;}
.ws45{word-spacing:17.455176px;}
.wsa3{word-spacing:17.574732px;}
.ws6{word-spacing:17.591292px;}
.ws33{word-spacing:17.634510px;}
.ws27{word-spacing:17.694288px;}
.wsa9{word-spacing:17.860272px;}
.ws39{word-spacing:17.933400px;}
.wsa{word-spacing:17.967864px;}
.ws80{word-spacing:18.112734px;}
.wsa4{word-spacing:18.290640px;}
.ws2{word-spacing:18.344436px;}
.ws13{word-spacing:18.351846px;}
.ws3{word-spacing:18.398232px;}
.ws81{word-spacing:18.400135px;}
.ws7f{word-spacing:18.411624px;}
.ws49{word-spacing:18.436451px;}
.ws19{word-spacing:18.531180px;}
.ws8b{word-spacing:18.613416px;}
.ws29{word-spacing:18.650736px;}
.ws6f{word-spacing:18.710514px;}
.wsb0{word-spacing:18.774804px;}
.ws2e{word-spacing:18.830070px;}
.wsad{word-spacing:18.882396px;}
.ws22{word-spacing:18.949626px;}
.wsb8{word-spacing:18.989988px;}
.ws40{word-spacing:19.069182px;}
.ws20{word-spacing:19.188738px;}
.ws5c{word-spacing:19.245908px;}
.ws5b{word-spacing:19.247412px;}
.ws16{word-spacing:19.248516px;}
.ws8e{word-spacing:19.308294px;}
.ws52{word-spacing:19.368072px;}
.wsb4{word-spacing:19.420356px;}
.ws66{word-spacing:19.474152px;}
.wsa2{word-spacing:19.487628px;}
.wsa7{word-spacing:19.527948px;}
.ws63{word-spacing:19.666962px;}
.ws97{word-spacing:19.689336px;}
.ws25{word-spacing:19.726740px;}
.ws2a{word-spacing:19.786518px;}
.ws1{word-spacing:19.846296px;}
.ws69{word-spacing:19.906074px;}
.ws9c{word-spacing:20.025630px;}
.ws92{word-spacing:20.085408px;}
.ws4f{word-spacing:20.264742px;}
.wsa6{word-spacing:20.324520px;}
.ws9{word-spacing:20.388684px;}
.wsf{word-spacing:20.496276px;}
.ws9f{word-spacing:20.503854px;}
.ws1a{word-spacing:20.922300px;}
.ws85{word-spacing:20.982078px;}
.ws7{word-spacing:21.034236px;}
.ws11{word-spacing:21.141828px;}
.ws31{word-spacing:21.340746px;}
.ws43{word-spacing:21.460302px;}
.ws9a{word-spacing:21.464604px;}
.ws65{word-spacing:21.520080px;}
.ws7d{word-spacing:21.579858px;}
.ws2f{word-spacing:21.699414px;}
.ws38{word-spacing:21.759192px;}
.ws4c{word-spacing:21.938526px;}
.wsa5{word-spacing:21.998304px;}
.wsa1{word-spacing:22.117860px;}
.wsa8{word-spacing:22.163952px;}
.ws6d{word-spacing:22.177638px;}
.wsb9{word-spacing:22.217748px;}
.ws2c{word-spacing:22.237416px;}
.ws4b{word-spacing:22.416750px;}
.ws36{word-spacing:22.476528px;}
.ws7b{word-spacing:22.594320px;}
.ws98{word-spacing:22.648116px;}
.ws32{word-spacing:22.775418px;}
.ws34{word-spacing:22.835196px;}
.ws6a{word-spacing:22.894974px;}
.ws28{word-spacing:22.954752px;}
.ws51{word-spacing:23.074308px;}
.ws23{word-spacing:23.134086px;}
.wsab{word-spacing:23.239872px;}
.ws76{word-spacing:23.253642px;}
.ws72{word-spacing:23.313420px;}
.ws37{word-spacing:23.373198px;}
.ws3b{word-spacing:23.432976px;}
.wsb2{word-spacing:23.508852px;}
.ws4e{word-spacing:23.612310px;}
.wsc{word-spacing:23.777832px;}
.ws8{word-spacing:23.831628px;}
.ws8d{word-spacing:23.911200px;}
.ws1f{word-spacing:23.970978px;}
.ws1d{word-spacing:24.030756px;}
.ws68{word-spacing:24.150312px;}
.wsb{word-spacing:24.315792px;}
.ws99{word-spacing:24.369588px;}
.ws17{word-spacing:24.508980px;}
.wsb6{word-spacing:24.530976px;}
.ws26{word-spacing:24.568758px;}
.ws3c{word-spacing:24.688314px;}
.ws8f{word-spacing:24.807870px;}
.ws3f{word-spacing:24.867648px;}
.wsb1{word-spacing:24.907548px;}
.wsd{word-spacing:25.015140px;}
.ws3a{word-spacing:25.106760px;}
.ws8a{word-spacing:25.391712px;}
.ws7c{word-spacing:25.405650px;}
.ws3e{word-spacing:25.465428px;}
.ws2b{word-spacing:25.704540px;}
.ws14{word-spacing:25.943652px;}
.ws64{word-spacing:26.003430px;}
.ws77{word-spacing:26.063208px;}
.ws1e{word-spacing:26.122986px;}
.ws71{word-spacing:26.362098px;}
.ws60{word-spacing:26.481654px;}
.ws87{word-spacing:26.575224px;}
.ws86{word-spacing:26.632039px;}
.ws30{word-spacing:26.827020px;}
.wsae{word-spacing:26.844204px;}
.ws88{word-spacing:27.005592px;}
.ws4d{word-spacing:27.079434px;}
.ws5a{word-spacing:27.258768px;}
.ws78{word-spacing:27.796770px;}
.ws3d{word-spacing:27.916326px;}
.wsaa{word-spacing:28.135308px;}
.ws57{word-spacing:28.270165px;}
.ws58{word-spacing:28.274994px;}
.wsa0{word-spacing:28.334772px;}
.ws79{word-spacing:28.872774px;}
.ws84{word-spacing:28.992330px;}
.ws21{word-spacing:29.231442px;}
.ws1c{word-spacing:29.291220px;}
.ws5{word-spacing:29.865106px;}
.ws93{word-spacing:31.204116px;}
.ws0{word-spacing:32.192424px;}
.ws41{word-spacing:33.067530px;}
.ws89{word-spacing:43.359576px;}
.ws12{word-spacing:80.624520px;}
.ws82{word-spacing:106.516080px;}
.ws56{word-spacing:533.192558px;}
.ws5f{word-spacing:566.072558px;}
._24{margin-left:-29.769444px;}
._5{margin-left:-21.464604px;}
._0{margin-left:-8.005068px;}
._4{margin-left:-6.132744px;}
._3{margin-left:-4.905840px;}
._10{margin-left:-3.842262px;}
._1{margin-left:-2.668356px;}
._2{margin-left:-1.119312px;}
._7{width:1.506288px;}
._6{width:2.958780px;}
._11{width:4.026780px;}
._d{width:9.607788px;}
._22{width:12.772588px;}
._18{width:14.063681px;}
._e{width:15.323681px;}
._21{width:16.643681px;}
._14{width:18.527772px;}
._13{width:19.583681px;}
._1b{width:20.963586px;}
._f{width:22.665678px;}
._16{width:24.371814px;}
._8{width:25.413660px;}
._a{width:27.029472px;}
._9{width:28.578374px;}
._1a{width:30.785670px;}
._20{width:32.919186px;}
._15{width:39.365394px;}
._12{width:42.852150px;}
._19{width:44.005284px;}
._1c{width:45.983142px;}
._17{width:56.497290px;}
._1f{width:61.112256px;}
._c{width:80.696250px;}
._1d{width:100.598520px;}
._1e{width:103.180728px;}
._23{width:142.989768px;}
._b{width:170.714236px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.886000px;}
.fs4{font-size:35.868000px;}
.fs5{font-size:41.844000px;}
.fs2{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs3{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y27{bottom:266.955000px;}
.yf2{bottom:276.780000px;}
.ybe{bottom:279.210000px;}
.y26{bottom:284.895000px;}
.yf1{bottom:293.220000px;}
.ybd{bottom:295.635000px;}
.y25{bottom:302.820000px;}
.yf0{bottom:309.660000px;}
.ybc{bottom:312.075000px;}
.yb7{bottom:316.485000px;}
.y24{bottom:320.760000px;}
.yab{bottom:324.240000px;}
.yef{bottom:325.080000px;}
.yb6{bottom:334.410000px;}
.y23{bottom:338.685000px;}
.yaa{bottom:340.665000px;}
.yee{bottom:341.520000px;}
.yb5{bottom:352.350000px;}
.y22{bottom:356.625000px;}
.ya9{bottom:357.105000px;}
.yed{bottom:357.945000px;}
.y4b{bottom:358.455000px;}
.yb4{bottom:370.275000px;}
.y6b{bottom:373.185000px;}
.yec{bottom:373.365000px;}
.ya8{bottom:373.545000px;}
.y21{bottom:374.550000px;}
.y4a{bottom:379.365000px;}
.yb3{bottom:388.215000px;}
.yeb{bottom:389.805000px;}
.y20{bottom:392.490000px;}
.ya7{bottom:399.555000px;}
.yb2{bottom:406.140000px;}
.yea{bottom:406.245000px;}
.y1f{bottom:410.415000px;}
.y84{bottom:410.730000px;}
.y68{bottom:414.165000px;}
.y6a{bottom:421.545000px;}
.ye9{bottom:422.685000px;}
.yb1{bottom:424.080000px;}
.y1e{bottom:428.355000px;}
.y83{bottom:428.670000px;}
.y49{bottom:429.015000px;}
.y65{bottom:431.790000px;}
.ya6{bottom:432.570000px;}
.ye8{bottom:438.090000px;}
.y69{bottom:441.900000px;}
.yb0{bottom:442.005000px;}
.y67{bottom:445.995000px;}
.y1d{bottom:446.280000px;}
.y82{bottom:446.595000px;}
.y48{bottom:446.955000px;}
.ya5{bottom:449.010000px;}
.y66{bottom:450.480000px;}
.ye7{bottom:454.530000px;}
.y1c{bottom:464.220000px;}
.y81{bottom:464.535000px;}
.y47{bottom:464.880000px;}
.ya4{bottom:465.450000px;}
.y64{bottom:469.650000px;}
.ye6{bottom:470.970000px;}
.ya3{bottom:481.890000px;}
.y1b{bottom:482.145000px;}
.y80{bottom:482.460000px;}
.y46{bottom:482.820000px;}
.ye5{bottom:487.410000px;}
.y1a{bottom:500.085000px;}
.y7f{bottom:500.400000px;}
.y45{bottom:500.745000px;}
.ye4{bottom:502.830000px;}
.y63{bottom:505.515000px;}
.y19{bottom:518.010000px;}
.yaf{bottom:518.295000px;}
.y44{bottom:518.685000px;}
.ye3{bottom:519.270000px;}
.y62{bottom:523.440000px;}
.ybb{bottom:524.010000px;}
.ya2{bottom:533.730000px;}
.yae{bottom:534.735000px;}
.ye2{bottom:535.710000px;}
.y18{bottom:535.950000px;}
.y43{bottom:536.610000px;}
.y7e{bottom:537.825000px;}
.y8a{bottom:539.850000px;}
.yba{bottom:540.435000px;}
.y61{bottom:541.380000px;}
.ya1{bottom:551.655000px;}
.ye1{bottom:552.135000px;}
.y17{bottom:553.875000px;}
.y42{bottom:554.550000px;}
.y89{bottom:556.290000px;}
.y60{bottom:559.305000px;}
.yc4{bottom:566.550000px;}
.ye0{bottom:567.555000px;}
.ya0{bottom:569.595000px;}
.y16{bottom:571.815000px;}
.y41{bottom:572.475000px;}
.y88{bottom:572.730000px;}
.y5f{bottom:577.245000px;}
.ydf{bottom:583.995000px;}
.y7d{bottom:587.205000px;}
.y9f{bottom:587.520000px;}
.y15{bottom:589.740000px;}
.y40{bottom:590.415000px;}
.y5e{bottom:595.170000px;}
.yde{bottom:600.435000px;}
.y7c{bottom:605.145000px;}
.y9e{bottom:605.460000px;}
.y3f{bottom:608.340000px;}
.ydd{bottom:615.855000px;}
.y7b{bottom:623.070000px;}
.yc3{bottom:623.205000px;}
.y9d{bottom:623.400000px;}
.y14{bottom:623.475000px;}
.y5a{bottom:623.820000px;}
.y5d{bottom:623.925000px;}
.y3e{bottom:626.280000px;}
.ydc{bottom:632.280000px;}
.yc2{bottom:639.645000px;}
.y7a{bottom:641.010000px;}
.y9c{bottom:641.325000px;}
.y5b{bottom:641.790000px;}
.y3d{bottom:644.220000px;}
.ydb{bottom:648.720000px;}
.y59{bottom:655.980000px;}
.y79{bottom:658.935000px;}
.y9b{bottom:659.265000px;}
.y5c{bottom:660.465000px;}
.y3c{bottom:662.145000px;}
.yda{bottom:664.140000px;}
.y13{bottom:671.550000px;}
.y78{bottom:676.875000px;}
.y9a{bottom:677.190000px;}
.y3b{bottom:680.085000px;}
.yd9{bottom:680.580000px;}
.y58{bottom:687.585000px;}
.y77{bottom:694.800000px;}
.y99{bottom:695.130000px;}
.yd8{bottom:697.020000px;}
.y3a{bottom:698.010000px;}
.y12{bottom:703.905000px;}
.y57{bottom:705.510000px;}
.yd7{bottom:712.425000px;}
.y76{bottom:712.740000px;}
.y39{bottom:715.950000px;}
.y11{bottom:720.345000px;}
.y56{bottom:723.450000px;}
.yd6{bottom:728.865000px;}
.y75{bottom:730.980000px;}
.y38{bottom:733.875000px;}
.y10{bottom:736.770000px;}
.y55{bottom:741.375000px;}
.yd5{bottom:745.305000px;}
.y74{bottom:748.920000px;}
.yf{bottom:753.210000px;}
.y54{bottom:759.315000px;}
.yd4{bottom:760.725000px;}
.y73{bottom:766.845000px;}
.ye{bottom:769.650000px;}
.y98{bottom:770.130000px;}
.y37{bottom:771.570000px;}
.yd3{bottom:777.165000px;}
.y53{bottom:777.240000px;}
.y72{bottom:784.785000px;}
.yd{bottom:786.090000px;}
.y97{bottom:786.570000px;}
.yd2{bottom:793.605000px;}
.y52{bottom:795.180000px;}
.yc{bottom:802.530000px;}
.y71{bottom:802.710000px;}
.y96{bottom:803.010000px;}
.yd1{bottom:809.010000px;}
.y51{bottom:813.105000px;}
.yad{bottom:816.390000px;}
.yb{bottom:818.970000px;}
.yb9{bottom:819.345000px;}
.y95{bottom:819.450000px;}
.y70{bottom:820.650000px;}
.y36{bottom:821.220000px;}
.yc1{bottom:824.415000px;}
.yd0{bottom:825.450000px;}
.y50{bottom:831.045000px;}
.yac{bottom:832.830000px;}
.ya{bottom:835.410000px;}
.yb8{bottom:835.785000px;}
.y94{bottom:835.890000px;}
.y87{bottom:838.170000px;}
.y6f{bottom:838.575000px;}
.y35{bottom:839.145000px;}
.yc0{bottom:840.855000px;}
.ycf{bottom:841.890000px;}
.y4f{bottom:848.970000px;}
.y9{bottom:851.850000px;}
.y86{bottom:854.610000px;}
.y34{bottom:857.085000px;}
.ybf{bottom:857.295000px;}
.yce{bottom:857.310000px;}
.y93{bottom:861.885000px;}
.y8{bottom:868.290000px;}
.y85{bottom:871.050000px;}
.ycd{bottom:873.750000px;}
.y33{bottom:875.010000px;}
.y7{bottom:884.715000px;}
.ycc{bottom:889.155000px;}
.y6e{bottom:890.775000px;}
.y32{bottom:892.950000px;}
.y4e{bottom:896.565000px;}
.y92{bottom:897.525000px;}
.y4d{bottom:899.070000px;}
.ycb{bottom:904.575000px;}
.y6d{bottom:907.215000px;}
.y31{bottom:911.250000px;}
.y4c{bottom:915.510000px;}
.yca{bottom:921.015000px;}
.y6c{bottom:923.655000px;}
.y30{bottom:929.175000px;}
.y6{bottom:940.065000px;}
.y2f{bottom:947.115000px;}
.yc9{bottom:950.265000px;}
.y91{bottom:950.850000px;}
.y5{bottom:956.490000px;}
.y2e{bottom:965.040000px;}
.y90{bottom:967.290000px;}
.y4{bottom:972.930000px;}
.y2d{bottom:982.980000px;}
.y8f{bottom:983.730000px;}
.y3{bottom:989.370000px;}
.yc8{bottom:993.990000px;}
.y8e{bottom:1000.170000px;}
.y2c{bottom:1000.905000px;}
.yc7{bottom:1011.930000px;}
.y8d{bottom:1016.610000px;}
.y2b{bottom:1018.845000px;}
.y2{bottom:1020.690000px;}
.yc6{bottom:1029.855000px;}
.y2a{bottom:1036.785000px;}
.y8c{bottom:1042.605000px;}
.yc5{bottom:1047.795000px;}
.y29{bottom:1054.710000px;}
.y1{bottom:1072.650000px;}
.y8b{bottom:1078.245000px;}
.y28{bottom:1111.500000px;}
.h9{height:2.391120px;}
.hb{height:28.579452px;}
.ha{height:29.876616px;}
.h5{height:37.334424px;}
.h4{height:40.347000px;}
.he{height:41.725044px;}
.hc{height:42.143490px;}
.h7{height:42.910212px;}
.h3{height:44.833500px;}
.h6{height:50.211000px;}
.h8{height:50.367000px;}
.h2{height:60.253200px;}
.hd{height:127.671120px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:202.140000px;}
.x23{left:209.055000px;}
.x1{left:211.170000px;}
.x1d{left:215.520000px;}
.x9{left:224.565000px;}
.x24{left:227.280000px;}
.xa{left:232.410000px;}
.x20{left:239.160000px;}
.x7{left:244.665000px;}
.x5{left:270.120000px;}
.x15{left:279.300000px;}
.x2{left:294.615000px;}
.x4{left:305.220000px;}
.x1f{left:320.925000px;}
.x3{left:324.945000px;}
.x1e{left:331.590000px;}
.xc{left:336.825000px;}
.xe{left:354.555000px;}
.xd{left:361.140000px;}
.x14{left:362.775000px;}
.x17{left:367.380000px;}
.x18{left:368.490000px;}
.x16{left:374.475000px;}
.xb{left:385.290000px;}
.x21{left:387.900000px;}
.x22{left:390.090000px;}
.xf{left:391.800000px;}
.x1a{left:393.255000px;}
.x6{left:397.965000px;}
.x19{left:435.000000px;}
.x12{left:458.010000px;}
.x11{left:460.170000px;}
.x10{left:465.660000px;}
.x13{left:486.405000px;}
.x1c{left:533.505000px;}
.x1b{left:575.250000px;}
@media print{
.v5{vertical-align:-7.946667pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.666667pt;}
.v3{vertical-align:8.906667pt;}
.v4{vertical-align:10.613333pt;}
.v2{vertical-align:20.320000pt;}
.v8{vertical-align:36.426667pt;}
.v7{vertical-align:111.360000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.001106pt;}
.ls1{letter-spacing:0.005760pt;}
.ls1c{letter-spacing:0.005916pt;}
.lsb{letter-spacing:0.020021pt;}
.lsa{letter-spacing:0.020277pt;}
.ls15{letter-spacing:0.028338pt;}
.ls1a{letter-spacing:0.028743pt;}
.ls17{letter-spacing:0.030157pt;}
.ls9{letter-spacing:2.590173pt;}
.ls18{letter-spacing:2.619249pt;}
.ls8{letter-spacing:2.646417pt;}
.ls19{letter-spacing:2.672582pt;}
.ls5{letter-spacing:2.699750pt;}
.lsc{letter-spacing:5.256839pt;}
.ls23{letter-spacing:9.039793pt;}
.ls16{letter-spacing:11.514690pt;}
.ls1f{letter-spacing:11.790819pt;}
.ls22{letter-spacing:11.832000pt;}
.lsf{letter-spacing:11.844153pt;}
.ls1b{letter-spacing:11.921671pt;}
.ls3{letter-spacing:13.582175pt;}
.lse{letter-spacing:14.110173pt;}
.ls1e{letter-spacing:14.448023pt;}
.ls20{letter-spacing:14.501357pt;}
.ls14{letter-spacing:14.724153pt;}
.ls2{letter-spacing:16.246417pt;}
.ls7{letter-spacing:16.299750pt;}
.ls4{letter-spacing:17.321952pt;}
.ls13{letter-spacing:17.440115pt;}
.ls21{letter-spacing:17.893126pt;}
.ls6{letter-spacing:19.073084pt;}
.ls11{letter-spacing:19.792582pt;}
.ls12{letter-spacing:19.845916pt;}
.lsd{letter-spacing:20.071355pt;}
.ls10{letter-spacing:30.430173pt;}
.ls24{letter-spacing:206.433257pt;}
.ws42{word-spacing:-0.063760pt;}
.ws54{word-spacing:-0.053136pt;}
.ws4{word-spacing:-0.047819pt;}
.ws53{word-spacing:-0.037195pt;}
.ws24{word-spacing:0.000000pt;}
.ws5d{word-spacing:8.767440pt;}
.ws46{word-spacing:9.372459pt;}
.ws9b{word-spacing:11.285205pt;}
.wsba{word-spacing:11.428661pt;}
.ws5e{word-spacing:11.743056pt;}
.ws55{word-spacing:11.754274pt;}
.ws73{word-spacing:11.796192pt;}
.wsbb{word-spacing:11.811211pt;}
.ws1b{word-spacing:11.902464pt;}
.ws75{word-spacing:11.955600pt;}
.ws7e{word-spacing:12.061872pt;}
.ws7a{word-spacing:12.385035pt;}
.ws95{word-spacing:12.480672pt;}
.wsaf{word-spacing:12.719765pt;}
.ws9e{word-spacing:13.018320pt;}
.ws8c{word-spacing:13.389227pt;}
.ws48{word-spacing:13.484864pt;}
.ws9d{word-spacing:13.496544pt;}
.ws47{word-spacing:13.532683pt;}
.ws4a{word-spacing:13.580501pt;}
.ws2d{word-spacing:13.655952pt;}
.ws91{word-spacing:13.709088pt;}
.ws6b{word-spacing:13.868496pt;}
.ws44{word-spacing:13.921632pt;}
.ws18{word-spacing:13.974768pt;}
.ws35{word-spacing:14.187312pt;}
.wsac{word-spacing:14.249963pt;}
.ws94{word-spacing:14.297781pt;}
.ws10{word-spacing:14.345600pt;}
.wsb3{word-spacing:14.441237pt;}
.ws6c{word-spacing:14.506128pt;}
.ws74{word-spacing:14.559264pt;}
.ws61{word-spacing:14.718672pt;}
.ws96{word-spacing:14.728149pt;}
.wsb7{word-spacing:14.775968pt;}
.ws83{word-spacing:14.823787pt;}
.ws62{word-spacing:14.824944pt;}
.ws67{word-spacing:14.871605pt;}
.ws6e{word-spacing:14.931216pt;}
.wse{word-spacing:14.967243pt;}
.ws50{word-spacing:14.984352pt;}
.wsb5{word-spacing:15.015061pt;}
.ws15{word-spacing:15.090624pt;}
.ws90{word-spacing:15.250032pt;}
.ws59{word-spacing:15.409440pt;}
.ws70{word-spacing:15.462576pt;}
.ws45{word-spacing:15.515712pt;}
.wsa3{word-spacing:15.621984pt;}
.ws6{word-spacing:15.636704pt;}
.ws33{word-spacing:15.675120pt;}
.ws27{word-spacing:15.728256pt;}
.wsa9{word-spacing:15.875797pt;}
.ws39{word-spacing:15.940800pt;}
.wsa{word-spacing:15.971435pt;}
.ws80{word-spacing:16.100208pt;}
.wsa4{word-spacing:16.258347pt;}
.ws2{word-spacing:16.306165pt;}
.ws13{word-spacing:16.312752pt;}
.ws3{word-spacing:16.353984pt;}
.ws81{word-spacing:16.355676pt;}
.ws7f{word-spacing:16.365888pt;}
.ws49{word-spacing:16.387956pt;}
.ws19{word-spacing:16.472160pt;}
.ws8b{word-spacing:16.545259pt;}
.ws29{word-spacing:16.578432pt;}
.ws6f{word-spacing:16.631568pt;}
.wsb0{word-spacing:16.688715pt;}
.ws2e{word-spacing:16.737840pt;}
.wsad{word-spacing:16.784352pt;}
.ws22{word-spacing:16.844112pt;}
.wsb8{word-spacing:16.879989pt;}
.ws40{word-spacing:16.950384pt;}
.ws20{word-spacing:17.056656pt;}
.ws5c{word-spacing:17.107474pt;}
.ws5b{word-spacing:17.108811pt;}
.ws16{word-spacing:17.109792pt;}
.ws8e{word-spacing:17.162928pt;}
.ws52{word-spacing:17.216064pt;}
.wsb4{word-spacing:17.262539pt;}
.ws66{word-spacing:17.310357pt;}
.wsa2{word-spacing:17.322336pt;}
.wsa7{word-spacing:17.358176pt;}
.ws63{word-spacing:17.481744pt;}
.ws97{word-spacing:17.501632pt;}
.ws25{word-spacing:17.534880pt;}
.ws2a{word-spacing:17.588016pt;}
.ws1{word-spacing:17.641152pt;}
.ws69{word-spacing:17.694288pt;}
.ws9c{word-spacing:17.800560pt;}
.ws92{word-spacing:17.853696pt;}
.ws4f{word-spacing:18.013104pt;}
.wsa6{word-spacing:18.066240pt;}
.ws9{word-spacing:18.123275pt;}
.wsf{word-spacing:18.218912pt;}
.ws9f{word-spacing:18.225648pt;}
.ws1a{word-spacing:18.597600pt;}
.ws85{word-spacing:18.650736pt;}
.ws7{word-spacing:18.697099pt;}
.ws11{word-spacing:18.792736pt;}
.ws31{word-spacing:18.969552pt;}
.ws43{word-spacing:19.075824pt;}
.ws9a{word-spacing:19.079648pt;}
.ws65{word-spacing:19.128960pt;}
.ws7d{word-spacing:19.182096pt;}
.ws2f{word-spacing:19.288368pt;}
.ws38{word-spacing:19.341504pt;}
.ws4c{word-spacing:19.500912pt;}
.wsa5{word-spacing:19.554048pt;}
.wsa1{word-spacing:19.660320pt;}
.wsa8{word-spacing:19.701291pt;}
.ws6d{word-spacing:19.713456pt;}
.wsb9{word-spacing:19.749109pt;}
.ws2c{word-spacing:19.766592pt;}
.ws4b{word-spacing:19.926000pt;}
.ws36{word-spacing:19.979136pt;}
.ws7b{word-spacing:20.083840pt;}
.ws98{word-spacing:20.131659pt;}
.ws32{word-spacing:20.244816pt;}
.ws34{word-spacing:20.297952pt;}
.ws6a{word-spacing:20.351088pt;}
.ws28{word-spacing:20.404224pt;}
.ws51{word-spacing:20.510496pt;}
.ws23{word-spacing:20.563632pt;}
.wsab{word-spacing:20.657664pt;}
.ws76{word-spacing:20.669904pt;}
.ws72{word-spacing:20.723040pt;}
.ws37{word-spacing:20.776176pt;}
.ws3b{word-spacing:20.829312pt;}
.wsb2{word-spacing:20.896757pt;}
.ws4e{word-spacing:20.988720pt;}
.wsc{word-spacing:21.135851pt;}
.ws8{word-spacing:21.183669pt;}
.ws8d{word-spacing:21.254400pt;}
.ws1f{word-spacing:21.307536pt;}
.ws1d{word-spacing:21.360672pt;}
.ws68{word-spacing:21.466944pt;}
.wsb{word-spacing:21.614037pt;}
.ws99{word-spacing:21.661856pt;}
.ws17{word-spacing:21.785760pt;}
.wsb6{word-spacing:21.805312pt;}
.ws26{word-spacing:21.838896pt;}
.ws3c{word-spacing:21.945168pt;}
.ws8f{word-spacing:22.051440pt;}
.ws3f{word-spacing:22.104576pt;}
.wsb1{word-spacing:22.140043pt;}
.wsd{word-spacing:22.235680pt;}
.ws3a{word-spacing:22.317120pt;}
.ws8a{word-spacing:22.570411pt;}
.ws7c{word-spacing:22.582800pt;}
.ws3e{word-spacing:22.635936pt;}
.ws2b{word-spacing:22.848480pt;}
.ws14{word-spacing:23.061024pt;}
.ws64{word-spacing:23.114160pt;}
.ws77{word-spacing:23.167296pt;}
.ws1e{word-spacing:23.220432pt;}
.ws71{word-spacing:23.432976pt;}
.ws60{word-spacing:23.539248pt;}
.ws87{word-spacing:23.622421pt;}
.ws86{word-spacing:23.672924pt;}
.ws30{word-spacing:23.846240pt;}
.wsae{word-spacing:23.861515pt;}
.ws88{word-spacing:24.004971pt;}
.ws4d{word-spacing:24.070608pt;}
.ws5a{word-spacing:24.230016pt;}
.ws78{word-spacing:24.708240pt;}
.ws3d{word-spacing:24.814512pt;}
.wsaa{word-spacing:25.009163pt;}
.ws57{word-spacing:25.129035pt;}
.ws58{word-spacing:25.133328pt;}
.wsa0{word-spacing:25.186464pt;}
.ws79{word-spacing:25.664688pt;}
.ws84{word-spacing:25.770960pt;}
.ws21{word-spacing:25.983504pt;}
.ws1c{word-spacing:26.036640pt;}
.ws5{word-spacing:26.546761pt;}
.ws93{word-spacing:27.736992pt;}
.ws0{word-spacing:28.615488pt;}
.ws41{word-spacing:29.393360pt;}
.ws89{word-spacing:38.541845pt;}
.ws12{word-spacing:71.666240pt;}
.ws82{word-spacing:94.680960pt;}
.ws56{word-spacing:473.948940pt;}
.ws5f{word-spacing:503.175607pt;}
._24{margin-left:-26.461728pt;}
._5{margin-left:-19.079648pt;}
._0{margin-left:-7.115616pt;}
._4{margin-left:-5.451328pt;}
._3{margin-left:-4.360747pt;}
._10{margin-left:-3.415344pt;}
._1{margin-left:-2.371872pt;}
._2{margin-left:-0.994944pt;}
._7{width:1.338923pt;}
._6{width:2.630027pt;}
._11{width:3.579360pt;}
._d{width:8.540256pt;}
._22{width:11.353411pt;}
._18{width:12.501050pt;}
._e{width:13.621050pt;}
._21{width:14.794383pt;}
._14{width:16.469131pt;}
._13{width:17.407716pt;}
._1b{width:18.634299pt;}
._f{width:20.147269pt;}
._16{width:21.663835pt;}
._8{width:22.589920pt;}
._a{width:24.026197pt;}
._9{width:25.402999pt;}
._1a{width:27.365040pt;}
._20{width:29.261499pt;}
._15{width:34.991461pt;}
._12{width:38.090800pt;}
._19{width:39.115808pt;}
._1c{width:40.873904pt;}
._17{width:50.219813pt;}
._1f{width:54.322005pt;}
._c{width:71.730000pt;}
._1d{width:89.420907pt;}
._1e{width:91.716203pt;}
._23{width:127.102016pt;}
._b{width:151.745987pt;}
.fs6{font-size:26.565333pt;}
.fs4{font-size:31.882667pt;}
.fs5{font-size:37.194667pt;}
.fs2{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs3{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:237.293333pt;}
.yf2{bottom:246.026667pt;}
.ybe{bottom:248.186667pt;}
.y26{bottom:253.240000pt;}
.yf1{bottom:260.640000pt;}
.ybd{bottom:262.786667pt;}
.y25{bottom:269.173333pt;}
.yf0{bottom:275.253333pt;}
.ybc{bottom:277.400000pt;}
.yb7{bottom:281.320000pt;}
.y24{bottom:285.120000pt;}
.yab{bottom:288.213333pt;}
.yef{bottom:288.960000pt;}
.yb6{bottom:297.253333pt;}
.y23{bottom:301.053333pt;}
.yaa{bottom:302.813333pt;}
.yee{bottom:303.573333pt;}
.yb5{bottom:313.200000pt;}
.y22{bottom:317.000000pt;}
.ya9{bottom:317.426667pt;}
.yed{bottom:318.173333pt;}
.y4b{bottom:318.626667pt;}
.yb4{bottom:329.133333pt;}
.y6b{bottom:331.720000pt;}
.yec{bottom:331.880000pt;}
.ya8{bottom:332.040000pt;}
.y21{bottom:332.933333pt;}
.y4a{bottom:337.213333pt;}
.yb3{bottom:345.080000pt;}
.yeb{bottom:346.493333pt;}
.y20{bottom:348.880000pt;}
.ya7{bottom:355.160000pt;}
.yb2{bottom:361.013333pt;}
.yea{bottom:361.106667pt;}
.y1f{bottom:364.813333pt;}
.y84{bottom:365.093333pt;}
.y68{bottom:368.146667pt;}
.y6a{bottom:374.706667pt;}
.ye9{bottom:375.720000pt;}
.yb1{bottom:376.960000pt;}
.y1e{bottom:380.760000pt;}
.y83{bottom:381.040000pt;}
.y49{bottom:381.346667pt;}
.y65{bottom:383.813333pt;}
.ya6{bottom:384.506667pt;}
.ye8{bottom:389.413333pt;}
.y69{bottom:392.800000pt;}
.yb0{bottom:392.893333pt;}
.y67{bottom:396.440000pt;}
.y1d{bottom:396.693333pt;}
.y82{bottom:396.973333pt;}
.y48{bottom:397.293333pt;}
.ya5{bottom:399.120000pt;}
.y66{bottom:400.426667pt;}
.ye7{bottom:404.026667pt;}
.y1c{bottom:412.640000pt;}
.y81{bottom:412.920000pt;}
.y47{bottom:413.226667pt;}
.ya4{bottom:413.733333pt;}
.y64{bottom:417.466667pt;}
.ye6{bottom:418.640000pt;}
.ya3{bottom:428.346667pt;}
.y1b{bottom:428.573333pt;}
.y80{bottom:428.853333pt;}
.y46{bottom:429.173333pt;}
.ye5{bottom:433.253333pt;}
.y1a{bottom:444.520000pt;}
.y7f{bottom:444.800000pt;}
.y45{bottom:445.106667pt;}
.ye4{bottom:446.960000pt;}
.y63{bottom:449.346667pt;}
.y19{bottom:460.453333pt;}
.yaf{bottom:460.706667pt;}
.y44{bottom:461.053333pt;}
.ye3{bottom:461.573333pt;}
.y62{bottom:465.280000pt;}
.ybb{bottom:465.786667pt;}
.ya2{bottom:474.426667pt;}
.yae{bottom:475.320000pt;}
.ye2{bottom:476.186667pt;}
.y18{bottom:476.400000pt;}
.y43{bottom:476.986667pt;}
.y7e{bottom:478.066667pt;}
.y8a{bottom:479.866667pt;}
.yba{bottom:480.386667pt;}
.y61{bottom:481.226667pt;}
.ya1{bottom:490.360000pt;}
.ye1{bottom:490.786667pt;}
.y17{bottom:492.333333pt;}
.y42{bottom:492.933333pt;}
.y89{bottom:494.480000pt;}
.y60{bottom:497.160000pt;}
.yc4{bottom:503.600000pt;}
.ye0{bottom:504.493333pt;}
.ya0{bottom:506.306667pt;}
.y16{bottom:508.280000pt;}
.y41{bottom:508.866667pt;}
.y88{bottom:509.093333pt;}
.y5f{bottom:513.106667pt;}
.ydf{bottom:519.106667pt;}
.y7d{bottom:521.960000pt;}
.y9f{bottom:522.240000pt;}
.y15{bottom:524.213333pt;}
.y40{bottom:524.813333pt;}
.y5e{bottom:529.040000pt;}
.yde{bottom:533.720000pt;}
.y7c{bottom:537.906667pt;}
.y9e{bottom:538.186667pt;}
.y3f{bottom:540.746667pt;}
.ydd{bottom:547.426667pt;}
.y7b{bottom:553.840000pt;}
.yc3{bottom:553.960000pt;}
.y9d{bottom:554.133333pt;}
.y14{bottom:554.200000pt;}
.y5a{bottom:554.506667pt;}
.y5d{bottom:554.600000pt;}
.y3e{bottom:556.693333pt;}
.ydc{bottom:562.026667pt;}
.yc2{bottom:568.573333pt;}
.y7a{bottom:569.786667pt;}
.y9c{bottom:570.066667pt;}
.y5b{bottom:570.480000pt;}
.y3d{bottom:572.640000pt;}
.ydb{bottom:576.640000pt;}
.y59{bottom:583.093333pt;}
.y79{bottom:585.720000pt;}
.y9b{bottom:586.013333pt;}
.y5c{bottom:587.080000pt;}
.y3c{bottom:588.573333pt;}
.yda{bottom:590.346667pt;}
.y13{bottom:596.933333pt;}
.y78{bottom:601.666667pt;}
.y9a{bottom:601.946667pt;}
.y3b{bottom:604.520000pt;}
.yd9{bottom:604.960000pt;}
.y58{bottom:611.186667pt;}
.y77{bottom:617.600000pt;}
.y99{bottom:617.893333pt;}
.yd8{bottom:619.573333pt;}
.y3a{bottom:620.453333pt;}
.y12{bottom:625.693333pt;}
.y57{bottom:627.120000pt;}
.yd7{bottom:633.266667pt;}
.y76{bottom:633.546667pt;}
.y39{bottom:636.400000pt;}
.y11{bottom:640.306667pt;}
.y56{bottom:643.066667pt;}
.yd6{bottom:647.880000pt;}
.y75{bottom:649.760000pt;}
.y38{bottom:652.333333pt;}
.y10{bottom:654.906667pt;}
.y55{bottom:659.000000pt;}
.yd5{bottom:662.493333pt;}
.y74{bottom:665.706667pt;}
.yf{bottom:669.520000pt;}
.y54{bottom:674.946667pt;}
.yd4{bottom:676.200000pt;}
.y73{bottom:681.640000pt;}
.ye{bottom:684.133333pt;}
.y98{bottom:684.560000pt;}
.y37{bottom:685.840000pt;}
.yd3{bottom:690.813333pt;}
.y53{bottom:690.880000pt;}
.y72{bottom:697.586667pt;}
.yd{bottom:698.746667pt;}
.y97{bottom:699.173333pt;}
.yd2{bottom:705.426667pt;}
.y52{bottom:706.826667pt;}
.yc{bottom:713.360000pt;}
.y71{bottom:713.520000pt;}
.y96{bottom:713.786667pt;}
.yd1{bottom:719.120000pt;}
.y51{bottom:722.760000pt;}
.yad{bottom:725.680000pt;}
.yb{bottom:727.973333pt;}
.yb9{bottom:728.306667pt;}
.y95{bottom:728.400000pt;}
.y70{bottom:729.466667pt;}
.y36{bottom:729.973333pt;}
.yc1{bottom:732.813333pt;}
.yd0{bottom:733.733333pt;}
.y50{bottom:738.706667pt;}
.yac{bottom:740.293333pt;}
.ya{bottom:742.586667pt;}
.yb8{bottom:742.920000pt;}
.y94{bottom:743.013333pt;}
.y87{bottom:745.040000pt;}
.y6f{bottom:745.400000pt;}
.y35{bottom:745.906667pt;}
.yc0{bottom:747.426667pt;}
.ycf{bottom:748.346667pt;}
.y4f{bottom:754.640000pt;}
.y9{bottom:757.200000pt;}
.y86{bottom:759.653333pt;}
.y34{bottom:761.853333pt;}
.ybf{bottom:762.040000pt;}
.yce{bottom:762.053333pt;}
.y93{bottom:766.120000pt;}
.y8{bottom:771.813333pt;}
.y85{bottom:774.266667pt;}
.ycd{bottom:776.666667pt;}
.y33{bottom:777.786667pt;}
.y7{bottom:786.413333pt;}
.ycc{bottom:790.360000pt;}
.y6e{bottom:791.800000pt;}
.y32{bottom:793.733333pt;}
.y4e{bottom:796.946667pt;}
.y92{bottom:797.800000pt;}
.y4d{bottom:799.173333pt;}
.ycb{bottom:804.066667pt;}
.y6d{bottom:806.413333pt;}
.y31{bottom:810.000000pt;}
.y4c{bottom:813.786667pt;}
.yca{bottom:818.680000pt;}
.y6c{bottom:821.026667pt;}
.y30{bottom:825.933333pt;}
.y6{bottom:835.613333pt;}
.y2f{bottom:841.880000pt;}
.yc9{bottom:844.680000pt;}
.y91{bottom:845.200000pt;}
.y5{bottom:850.213333pt;}
.y2e{bottom:857.813333pt;}
.y90{bottom:859.813333pt;}
.y4{bottom:864.826667pt;}
.y2d{bottom:873.760000pt;}
.y8f{bottom:874.426667pt;}
.y3{bottom:879.440000pt;}
.yc8{bottom:883.546667pt;}
.y8e{bottom:889.040000pt;}
.y2c{bottom:889.693333pt;}
.yc7{bottom:899.493333pt;}
.y8d{bottom:903.653333pt;}
.y2b{bottom:905.640000pt;}
.y2{bottom:907.280000pt;}
.yc6{bottom:915.426667pt;}
.y2a{bottom:921.586667pt;}
.y8c{bottom:926.760000pt;}
.yc5{bottom:931.373333pt;}
.y29{bottom:937.520000pt;}
.y1{bottom:953.466667pt;}
.y8b{bottom:958.440000pt;}
.y28{bottom:988.000000pt;}
.h9{height:2.125440pt;}
.hb{height:25.403957pt;}
.ha{height:26.556992pt;}
.h5{height:33.186155pt;}
.h4{height:35.864000pt;}
.he{height:37.088928pt;}
.hc{height:37.460880pt;}
.h7{height:38.142411pt;}
.h3{height:39.852000pt;}
.h6{height:44.632000pt;}
.h8{height:44.770667pt;}
.h2{height:53.558400pt;}
.hd{height:113.485440pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:179.680000pt;}
.x23{left:185.826667pt;}
.x1{left:187.706667pt;}
.x1d{left:191.573333pt;}
.x9{left:199.613333pt;}
.x24{left:202.026667pt;}
.xa{left:206.586667pt;}
.x20{left:212.586667pt;}
.x7{left:217.480000pt;}
.x5{left:240.106667pt;}
.x15{left:248.266667pt;}
.x2{left:261.880000pt;}
.x4{left:271.306667pt;}
.x1f{left:285.266667pt;}
.x3{left:288.840000pt;}
.x1e{left:294.746667pt;}
.xc{left:299.400000pt;}
.xe{left:315.160000pt;}
.xd{left:321.013333pt;}
.x14{left:322.466667pt;}
.x17{left:326.560000pt;}
.x18{left:327.546667pt;}
.x16{left:332.866667pt;}
.xb{left:342.480000pt;}
.x21{left:344.800000pt;}
.x22{left:346.746667pt;}
.xf{left:348.266667pt;}
.x1a{left:349.560000pt;}
.x6{left:353.746667pt;}
.x19{left:386.666667pt;}
.x12{left:407.120000pt;}
.x11{left:409.040000pt;}
.x10{left:413.920000pt;}
.x13{left:432.360000pt;}
.x1c{left:474.226667pt;}
.x1b{left:511.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  