
    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_42aa68737a30e76fb26cb8fc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_b65ec4d1e664cded1c086750.woff')format("woff");}.ff2{font-family:ff2;line-height:0.735000;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_57c212c29a51dee8bd919418.woff')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_95f0fdf7bddf5cdeb5561958.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8138ce8d005fa74b0aade237.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_bea3bc983bbd8a483f1e4a0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6b37dc70fdfb240b3216351d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.714000;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_92fa7a91002db3730716b9cf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.704474;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_07756511b5de34ba1d316d77.woff')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_32ef08e82b8062435a527696.woff')format("woff");}.ffa{font-family:ffa;line-height:0.713000;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_997115d35f187b7cd29e4b27.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4f849e7c62d3ca4cb6721a90.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_73bac6afafd88a68b2e161b7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.699000;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_013c4d6bca4a25a44126ab66.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916000;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_a2ebc6cab0d27f883b9515e3.woff')format("woff");}.fff{font-family:fff;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4beec6335080c318281ed0d0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4d5d6aad60391a155684bdfa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.701190;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.580000px;}
.v3{vertical-align:12.870000px;}
.v1{vertical-align:22.230000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:3.618396px;}
.ls1{letter-spacing:3.624396px;}
.ls8{letter-spacing:3.683426px;}
.ls2{letter-spacing:4.213224px;}
.ls7{letter-spacing:25.392739px;}
.ls4{letter-spacing:29.886538px;}
.ls5{letter-spacing:89.662363px;}
.ls6{letter-spacing:191.284363px;}
.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;}
}
.ws7e{word-spacing:-19.098304px;}
.ws4{word-spacing:-16.605662px;}
.ws5{word-spacing:-15.359443px;}
.ws54{word-spacing:-3.215927px;}
.ws8c{word-spacing:-2.976825px;}
.ws6d{word-spacing:-2.917049px;}
.ws6{word-spacing:-2.878214px;}
.ws68{word-spacing:-2.319293px;}
.ws8d{word-spacing:-2.259518px;}
.ws46{word-spacing:-1.882931px;}
.ws1f{word-spacing:-1.721537px;}
.ws47{word-spacing:-1.661762px;}
.ws69{word-spacing:-1.482435px;}
.ws9{word-spacing:-0.995270px;}
.ws77{word-spacing:-0.824903px;}
.ws8e{word-spacing:-0.765128px;}
.ws94{word-spacing:-0.705352px;}
.ws72{word-spacing:-0.567868px;}
.ws73{word-spacing:-0.466250px;}
.ws1{word-spacing:-0.103292px;}
.ws9e{word-spacing:-0.059776px;}
.ws5f{word-spacing:-0.054936px;}
.ws5c{word-spacing:-0.047821px;}
.ws1c{word-spacing:0.000000px;}
.ws74{word-spacing:0.071731px;}
.ws99{word-spacing:0.131506px;}
.ws8f{word-spacing:0.251058px;}
.ws5a{word-spacing:0.310833px;}
.wsa{word-spacing:0.349690px;}
.ws32{word-spacing:0.370609px;}
.ws31{word-spacing:0.448317px;}
.ws14{word-spacing:0.511085px;}
.ws7c{word-spacing:0.609711px;}
.ws7b{word-spacing:0.687419px;}
.ws56{word-spacing:0.729262px;}
.ws71{word-spacing:0.789038px;}
.ws8a{word-spacing:0.848814px;}
.ws40{word-spacing:1.028140px;}
.ws1e{word-spacing:1.147692px;}
.ws81{word-spacing:1.225400px;}
.ws88{word-spacing:1.327018px;}
.ws3a{word-spacing:1.685672px;}
.ws6c{word-spacing:1.745448px;}
.ws21{word-spacing:1.864999px;}
.ws6b{word-spacing:2.062258px;}
.ws29{word-spacing:2.104101px;}
.ws9a{word-spacing:2.402979px;}
.ws60{word-spacing:2.462755px;}
.ws30{word-spacing:2.642082px;}
.ws96{word-spacing:2.761633px;}
.ws33{word-spacing:2.881184px;}
.wsb{word-spacing:2.932013px;}
.ws58{word-spacing:3.060511px;}
.wsf{word-spacing:3.093408px;}
.ws2a{word-spacing:3.120286px;}
.ws2b{word-spacing:3.180062px;}
.ws9c{word-spacing:3.239838px;}
.ws1a{word-spacing:3.299613px;}
.ws39{word-spacing:3.359389px;}
.ws2c{word-spacing:3.556648px;}
.ws11{word-spacing:3.577594px;}
.ws89{word-spacing:3.598491px;}
.wsc{word-spacing:3.685190px;}
.ws24{word-spacing:3.777818px;}
.ws7d{word-spacing:3.795751px;}
.ws86{word-spacing:4.016920px;}
.ws2d{word-spacing:4.136472px;}
.ws4b{word-spacing:4.256023px;}
.ws85{word-spacing:4.435350px;}
.ws5b{word-spacing:4.495125px;}
.ws61{word-spacing:4.614676px;}
.ws78{word-spacing:4.734228px;}
.ws2f{word-spacing:4.794003px;}
.ws52{word-spacing:4.853779px;}
.ws19{word-spacing:4.913554px;}
.ws63{word-spacing:5.272208px;}
.ws7a{word-spacing:5.331984px;}
.ws26{word-spacing:5.451535px;}
.ws2e{word-spacing:5.469467px;}
.ws95{word-spacing:5.571086px;}
.ws22{word-spacing:5.630862px;}
.ws4c{word-spacing:5.810188px;}
.ws53{word-spacing:5.929740px;}
.ws45{word-spacing:6.109066px;}
.ws57{word-spacing:6.168842px;}
.ws79{word-spacing:6.186775px;}
.ws80{word-spacing:6.407944px;}
.ws17{word-spacing:6.587271px;}
.ws9b{word-spacing:6.647047px;}
.ws34{word-spacing:6.766598px;}
.ws84{word-spacing:6.826374px;}
.ws6e{word-spacing:6.844306px;}
.ws64{word-spacing:7.005700px;}
.ws44{word-spacing:7.023633px;}
.ws8b{word-spacing:7.065476px;}
.ws93{word-spacing:7.244803px;}
.ws55{word-spacing:7.364354px;}
.ws7f{word-spacing:7.382287px;}
.ws76{word-spacing:7.543681px;}
.ws10{word-spacing:7.558675px;}
.ws4a{word-spacing:7.842559px;}
.ws37{word-spacing:8.021886px;}
.ws36{word-spacing:8.141437px;}
.ws59{word-spacing:8.260988px;}
.wsd{word-spacing:8.365651px;}
.ws20{word-spacing:8.380539px;}
.ws97{word-spacing:8.440315px;}
.ws98{word-spacing:8.500090px;}
.ws3d{word-spacing:8.559866px;}
.ws27{word-spacing:8.619642px;}
.ws3f{word-spacing:8.918520px;}
.ws3e{word-spacing:8.978295px;}
.ws42{word-spacing:9.217398px;}
.wse{word-spacing:9.226426px;}
.ws35{word-spacing:9.354881px;}
.ws92{word-spacing:9.456500px;}
.ws90{word-spacing:9.576051px;}
.ws3b{word-spacing:9.874929px;}
.ws8{word-spacing:10.033402px;}
.ws65{word-spacing:10.054256px;}
.ws13{word-spacing:10.248595px;}
.ws87{word-spacing:10.293358px;}
.ws75{word-spacing:10.412910px;}
.ws41{word-spacing:10.550393px;}
.ws7{word-spacing:10.678982px;}
.ws12{word-spacing:10.894176px;}
.ws83{word-spacing:11.130217px;}
.ws28{word-spacing:11.249768px;}
.ws25{word-spacing:11.309544px;}
.ws67{word-spacing:11.429095px;}
.ws16{word-spacing:11.608422px;}
.ws49{word-spacing:11.727973px;}
.ws66{word-spacing:11.787748px;}
.ws62{word-spacing:11.907300px;}
.ws82{word-spacing:12.265953px;}
.ws43{word-spacing:12.445280px;}
.ws91{word-spacing:12.684382px;}
.ws9f{word-spacing:12.923485px;}
.ws48{word-spacing:13.162587px;}
.ws6a{word-spacing:13.280877px;}
.ws1b{word-spacing:13.282138px;}
.ws70{word-spacing:15.015631px;}
.ws23{word-spacing:15.613387px;}
.ws18{word-spacing:16.569796px;}
.ws6f{word-spacing:17.305036px;}
.ws38{word-spacing:17.944635px;}
.ws3c{word-spacing:19.857454px;}
.ws9d{word-spacing:21.280114px;}
.ws3{word-spacing:21.339889px;}
.ws2{word-spacing:23.312640px;}
.ws0{word-spacing:31.091012px;}
.ws1d{word-spacing:32.192873px;}
.ws4e{word-spacing:55.072702px;}
.ws4d{word-spacing:80.625869px;}
.ws15{word-spacing:96.750773px;}
.ws50{word-spacing:169.855760px;}
.ws51{word-spacing:175.325227px;}
.ws5e{word-spacing:193.006413px;}
.ws5d{word-spacing:211.746335px;}
.ws4f{word-spacing:213.850602px;}
._6{margin-left:-35.148288px;}
._26{margin-left:-30.596508px;}
._25{margin-left:-29.397601px;}
._4{margin-left:-11.842286px;}
._0{margin-left:-8.056807px;}
._9{margin-left:-6.912601px;}
._5{margin-left:-5.810227px;}
._7{margin-left:-3.894013px;}
._1{margin-left:-2.685602px;}
._e{margin-left:-1.673717px;}
._8{width:1.673717px;}
._3{width:2.685602px;}
._15{width:10.566059px;}
._b{width:13.487148px;}
._11{width:16.953516px;}
._1f{width:18.466361px;}
._19{width:19.797718px;}
._a{width:21.734554px;}
._21{width:23.013606px;}
._10{width:24.974390px;}
._16{width:26.181713px;}
._c{width:27.975168px;}
._12{width:30.246454px;}
._13{width:31.979946px;}
._22{width:33.481047px;}
._f{width:34.646170px;}
._1a{width:36.689971px;}
._1b{width:38.425905px;}
._20{width:40.847144px;}
._2{width:41.936714px;}
._18{width:43.273235px;}
._d{width:45.567245px;}
._23{width:48.772590px;}
._17{width:50.570158px;}
._1e{width:52.675202px;}
._1c{width:53.917591px;}
._1d{width:56.300016px;}
._24{width:61.615745px;}
._14{width:96.836850px;}
.fc2{color:rgb(186,33,33);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs9{font-size:54.935827px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y9a{bottom:22.889066px;}
.y96{bottom:41.159997px;}
.y97{bottom:100.870080px;}
.y9b{bottom:121.512113px;}
.y29{bottom:134.047500px;}
.y98{bottom:144.797512px;}
.y84{bottom:178.879500px;}
.y99{bottom:188.724944px;}
.ya0{bottom:189.400500px;}
.y83{bottom:193.594500px;}
.y81{bottom:196.812000px;}
.y82{bottom:199.900500px;}
.y9f{bottom:207.333000px;}
.y58{bottom:213.238500px;}
.y80{bottom:214.744500px;}
.y9e{bottom:225.265500px;}
.yc7{bottom:225.453000px;}
.y57{bottom:231.171000px;}
.y7f{bottom:232.677000px;}
.y28{bottom:243.022500px;}
.y9d{bottom:243.198000px;}
.y56{bottom:245.886000px;}
.ye6{bottom:247.095000px;}
.y54{bottom:249.103500px;}
.y7e{bottom:250.609500px;}
.y55{bottom:252.192000px;}
.yc6{bottom:254.095500px;}
.y27{bottom:260.955000px;}
.y105{bottom:261.058500px;}
.ye5{bottom:265.027500px;}
.y53{bottom:267.036000px;}
.y7d{bottom:268.543500px;}
.y26{bottom:275.671500px;}
.y24{bottom:278.889000px;}
.y104{bottom:278.991000px;}
.y25{bottom:281.976000px;}
.yc5{bottom:282.736500px;}
.ye4{bottom:282.961500px;}
.y7c{bottom:286.476000px;}
.y9c{bottom:290.937000px;}
.y23{bottom:296.821500px;}
.y52{bottom:299.767500px;}
.yc4{bottom:300.669000px;}
.ye3{bottom:300.894000px;}
.y7b{bottom:304.408500px;}
.y103{bottom:308.880000px;}
.ye2{bottom:318.826500px;}
.y7a{bottom:322.341000px;}
.y95{bottom:323.812500px;}
.y102{bottom:326.812500px;}
.yc3{bottom:329.311500px;}
.y22{bottom:329.553000px;}
.ye1{bottom:336.759000px;}
.y79{bottom:340.273500px;}
.yc2{bottom:347.244000px;}
.y51{bottom:349.186500px;}
.ye0{bottom:354.691500px;}
.y101{bottom:356.700000px;}
.y78{bottom:358.206000px;}
.y50{bottom:363.901500px;}
.y4e{bottom:367.119000px;}
.y4f{bottom:370.207500px;}
.ydf{bottom:372.625500px;}
.y77{bottom:376.140000px;}
.yc1{bottom:377.005500px;}
.y4d{bottom:385.051500px;}
.y100{bottom:386.587500px;}
.yde{bottom:390.558000px;}
.y76{bottom:394.072500px;}
.yc0{bottom:394.938000px;}
.ydd{bottom:408.490500px;}
.y75{bottom:412.005000px;}
.ybf{bottom:412.870500px;}
.y4c{bottom:417.928500px;}
.yff{bottom:419.319000px;}
.ydc{bottom:426.423000px;}
.ybe{bottom:427.585500px;}
.y74{bottom:429.937500px;}
.y21{bottom:430.456500px;}
.ybc{bottom:430.803000px;}
.y4b{bottom:432.643500px;}
.ybd{bottom:433.891500px;}
.y49{bottom:435.861000px;}
.y4a{bottom:438.949500px;}
.ydb{bottom:444.355500px;}
.y20{bottom:446.895000px;}
.y73{bottom:447.870000px;}
.ybb{bottom:448.735500px;}
.y48{bottom:453.793500px;}
.yda{bottom:462.288000px;}
.y1f{bottom:463.333500px;}
.yfe{bottom:465.520500px;}
.y72{bottom:465.804000px;}
.yba{bottom:466.669500px;}
.yfc{bottom:468.738000px;}
.yfd{bottom:471.826500px;}
.y1e{bottom:476.877000px;}
.y1c{bottom:479.772000px;}
.yd9{bottom:480.222000px;}
.y1d{bottom:482.860500px;}
.y47{bottom:483.682500px;}
.yb9{bottom:484.602000px;}
.yfb{bottom:486.670500px;}
.y1b{bottom:496.210500px;}
.y71{bottom:497.137500px;}
.yd8{bottom:498.154500px;}
.y46{bottom:501.615000px;}
.yb8{bottom:502.534500px;}
.yfa{bottom:504.603000px;}
.y1a{bottom:512.649000px;}
.yd7{bottom:516.087000px;}
.y45{bottom:519.547500px;}
.yf9{bottom:522.535500px;}
.y19{bottom:529.087500px;}
.y70{bottom:529.848000px;}
.yb7{bottom:532.296000px;}
.yd6{bottom:534.019500px;}
.y44{bottom:537.480000px;}
.yf8{bottom:540.469500px;}
.y18{bottom:545.526000px;}
.y6f{bottom:547.780500px;}
.yb6{bottom:550.228500px;}
.yd5{bottom:551.952000px;}
.yf7{bottom:558.402000px;}
.y17{bottom:561.963000px;}
.y6e{bottom:565.713000px;}
.y43{bottom:567.367500px;}
.yb5{bottom:568.161000px;}
.yd4{bottom:569.884500px;}
.y16{bottom:575.506500px;}
.yf6{bottom:576.334500px;}
.y14{bottom:578.401500px;}
.y94{bottom:579.949500px;}
.y15{bottom:581.490000px;}
.y6d{bottom:584.244000px;}
.y42{bottom:585.301500px;}
.yd3{bottom:587.818500px;}
.yf5{bottom:594.267000px;}
.y13{bottom:594.840000px;}
.yb4{bottom:596.802000px;}
.y41{bottom:603.234000px;}
.y12{bottom:611.278500px;}
.yf4{bottom:612.199500px;}
.yb3{bottom:614.736000px;}
.y6c{bottom:616.606500px;}
.yd2{bottom:620.548500px;}
.y11{bottom:627.717000px;}
.yf3{bottom:630.133500px;}
.yb2{bottom:632.668500px;}
.y40{bottom:633.121500px;}
.y6b{bottom:634.539000px;}
.y10{bottom:641.260500px;}
.ye{bottom:644.155500px;}
.y93{bottom:646.668000px;}
.yf{bottom:647.244000px;}
.yf2{bottom:648.066000px;}
.y3f{bottom:651.054000px;}
.yd{bottom:660.594000px;}
.yb1{bottom:661.309500px;}
.y6a{bottom:662.124000px;}
.yf1{bottom:662.781000px;}
.y92{bottom:663.705000px;}
.yef{bottom:665.998500px;}
.y3e{bottom:668.986500px;}
.yf0{bottom:669.087000px;}
.yd1{bottom:669.967500px;}
.yc{bottom:674.137500px;}
.ya{bottom:677.032500px;}
.yb0{bottom:679.242000px;}
.yb{bottom:680.121000px;}
.yee{bottom:680.713500px;}
.y91{bottom:680.740500px;}
.yec{bottom:683.931000px;}
.yed{bottom:687.019500px;}
.yd0{bottom:687.900000px;}
.yaf{bottom:697.176000px;}
.y90{bottom:697.777500px;}
.yeb{bottom:698.646000px;}
.y69{bottom:700.039500px;}
.y9{bottom:700.456500px;}
.y3d{bottom:701.863500px;}
.y67{bottom:703.255500px;}
.yea{bottom:704.952000px;}
.ycf{bottom:705.832500px;}
.y68{bottom:706.344000px;}
.y8f{bottom:714.813000px;}
.y3c{bottom:716.580000px;}
.y3a{bottom:719.796000px;}
.y66{bottom:721.189500px;}
.y3b{bottom:722.884500px;}
.yce{bottom:723.766500px;}
.yae{bottom:725.817000px;}
.y8{bottom:731.839500px;}
.y8e{bottom:731.848500px;}
.y39{bottom:737.730000px;}
.y65{bottom:739.122000px;}
.ycd{bottom:741.699000px;}
.yad{bottom:743.749500px;}
.y8d{bottom:748.885500px;}
.y7{bottom:749.772000px;}
.y38{bottom:755.662500px;}
.y64{bottom:757.054500px;}
.ycc{bottom:759.631500px;}
.y8c{bottom:765.921000px;}
.yac{bottom:770.293500px;}
.yaa{bottom:773.511000px;}
.y37{bottom:773.595000px;}
.y63{bottom:774.987000px;}
.yab{bottom:776.599500px;}
.ycb{bottom:777.564000px;}
.ya9{bottom:791.443500px;}
.y36{bottom:791.527500px;}
.y62{bottom:792.919500px;}
.y6{bottom:805.065000px;}
.ya8{bottom:809.376000px;}
.y35{bottom:809.460000px;}
.yca{bottom:814.260000px;}
.y8b{bottom:817.828500px;}
.y61{bottom:821.731500px;}
.ya7{bottom:827.310000px;}
.y34{bottom:827.392500px;}
.y60{bottom:839.665500px;}
.ya6{bottom:845.242500px;}
.y33{bottom:845.326500px;}
.y5{bottom:857.335500px;}
.y32{bottom:863.259000px;}
.y5f{bottom:867.927000px;}
.ya5{bottom:872.826000px;}
.y31{bottom:881.191500px;}
.y8a{bottom:884.547000px;}
.y4{bottom:884.653500px;}
.y5e{bottom:885.859500px;}
.y2{bottom:890.211000px;}
.y3{bottom:895.326000px;}
.y30{bottom:899.124000px;}
.y89{bottom:901.584000px;}
.y5d{bottom:903.792000px;}
.ye9{bottom:913.840500px;}
.ya4{bottom:914.122500px;}
.y2f{bottom:917.056500px;}
.yc9{bottom:917.110500px;}
.y88{bottom:918.619500px;}
.ye8{bottom:920.145000px;}
.y5c{bottom:921.726000px;}
.y1{bottom:923.088000px;}
.ya3{bottom:932.055000px;}
.ye7{bottom:934.989000px;}
.y2e{bottom:934.990500px;}
.yc8{bottom:935.043000px;}
.y87{bottom:935.655000px;}
.y2d{bottom:949.705500px;}
.y5b{bottom:949.987500px;}
.y86{bottom:952.692000px;}
.y2b{bottom:952.923000px;}
.y2c{bottom:956.011500px;}
.ya2{bottom:964.702500px;}
.y5a{bottom:967.920000px;}
.y85{bottom:969.727500px;}
.ya1{bottom:971.008500px;}
.y2a{bottom:985.653000px;}
.y59{bottom:985.852500px;}
.h7{height:25.608038px;}
.ha{height:29.833916px;}
.hf{height:33.187496px;}
.h5{height:37.658880px;}
.h12{height:39.224181px;}
.h11{height:39.837634px;}
.h6{height:40.348800px;}
.he{height:41.842920px;}
.h4{height:44.831700px;}
.hd{height:50.211840px;}
.h2{height:51.216077px;}
.h8{height:51.928800px;}
.hc{height:57.695700px;}
.hb{height:57.701700px;}
.h9{height:60.254040px;}
.h1{height:77.366008px;}
.h3{height:99.596008px;}
.h10{height:235.299189px;}
.h0{height:1188.000000px;}
.w1{width:360.910759px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:32.426895px;}
.x36{left:59.789350px;}
.x35{left:86.378094px;}
.x32{left:177.634500px;}
.x37{left:191.068476px;}
.x9{left:200.652000px;}
.x1d{left:204.612000px;}
.x1e{left:211.192500px;}
.x1f{left:219.493500px;}
.x8{left:223.068000px;}
.x2c{left:229.458000px;}
.x1{left:234.214500px;}
.xf{left:238.012500px;}
.x2{left:239.365500px;}
.xb{left:258.747000px;}
.xc{left:262.408500px;}
.xd{left:268.372500px;}
.xe{left:276.051000px;}
.x34{left:277.989000px;}
.x47{left:281.976000px;}
.x48{left:288.556500px;}
.x6{left:292.303500px;}
.x49{left:296.857500px;}
.x4b{left:307.134000px;}
.x4c{left:313.713000px;}
.x4d{left:322.015500px;}
.x20{left:331.510500px;}
.x21{left:338.091000px;}
.x23{left:344.331000px;}
.x22{left:346.392000px;}
.x24{left:350.911500px;}
.x4e{left:354.135000px;}
.x25{left:359.212500px;}
.x2f{left:361.360500px;}
.x30{left:367.939500px;}
.x4f{left:369.016500px;}
.x31{left:376.240500px;}
.x4a{left:381.820500px;}
.x39{left:386.485500px;}
.x2e{left:388.435500px;}
.x33{left:389.964000px;}
.x7{left:394.983000px;}
.x2d{left:396.169500px;}
.xa{left:427.995000px;}
.x16{left:437.091000px;}
.x17{left:443.053500px;}
.x18{left:450.732000px;}
.x1c{left:454.699500px;}
.x19{left:456.556500px;}
.x3d{left:458.680500px;}
.x1a{left:463.135500px;}
.x10{left:466.737000px;}
.x1b{left:471.436500px;}
.x11{left:472.699500px;}
.x41{left:477.016500px;}
.x12{left:480.378000px;}
.x42{left:483.597000px;}
.x43{left:491.898000px;}
.x44{left:515.391000px;}
.x45{left:521.971500px;}
.x46{left:530.272500px;}
.x3a{left:573.417000px;}
.x3{left:575.019000px;}
.x3b{left:579.996000px;}
.x4{left:584.628000px;}
.x3c{left:588.297000px;}
.x5{left:597.919500px;}
.x29{left:613.009500px;}
.x2a{left:619.588500px;}
.x2b{left:627.891000px;}
.x26{left:636.594000px;}
.x27{left:643.174500px;}
.x13{left:647.173500px;}
.x28{left:651.475500px;}
.x14{left:653.136000px;}
.x15{left:660.816000px;}
.x3e{left:677.677500px;}
.x3f{left:684.256500px;}
.x40{left:692.557500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.293333pt;}
.v3{vertical-align:11.440000pt;}
.v1{vertical-align:19.760000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.216352pt;}
.ls1{letter-spacing:3.221685pt;}
.ls8{letter-spacing:3.274156pt;}
.ls2{letter-spacing:3.745088pt;}
.ls7{letter-spacing:22.571323pt;}
.ls4{letter-spacing:26.565812pt;}
.ls5{letter-spacing:79.699879pt;}
.ls6{letter-spacing:170.030545pt;}
.ws7e{word-spacing:-16.976270pt;}
.ws4{word-spacing:-14.760588pt;}
.ws5{word-spacing:-13.652838pt;}
.ws54{word-spacing:-2.858602pt;}
.ws8c{word-spacing:-2.646067pt;}
.ws6d{word-spacing:-2.592933pt;}
.ws6{word-spacing:-2.558413pt;}
.ws68{word-spacing:-2.061594pt;}
.ws8d{word-spacing:-2.008460pt;}
.ws46{word-spacing:-1.673717pt;}
.ws1f{word-spacing:-1.530255pt;}
.ws47{word-spacing:-1.477121pt;}
.ws69{word-spacing:-1.317720pt;}
.ws9{word-spacing:-0.884685pt;}
.ws77{word-spacing:-0.733247pt;}
.ws8e{word-spacing:-0.680113pt;}
.ws94{word-spacing:-0.626980pt;}
.ws72{word-spacing:-0.504772pt;}
.ws73{word-spacing:-0.414444pt;}
.ws1{word-spacing:-0.091815pt;}
.ws9e{word-spacing:-0.053134pt;}
.ws5f{word-spacing:-0.048832pt;}
.ws5c{word-spacing:-0.042507pt;}
.ws1c{word-spacing:0.000000pt;}
.ws74{word-spacing:0.063761pt;}
.ws99{word-spacing:0.116895pt;}
.ws8f{word-spacing:0.223162pt;}
.ws5a{word-spacing:0.276296pt;}
.wsa{word-spacing:0.310835pt;}
.ws32{word-spacing:0.329430pt;}
.ws31{word-spacing:0.398504pt;}
.ws14{word-spacing:0.454298pt;}
.ws7c{word-spacing:0.541965pt;}
.ws7b{word-spacing:0.611039pt;}
.ws56{word-spacing:0.648233pt;}
.ws71{word-spacing:0.701367pt;}
.ws8a{word-spacing:0.754501pt;}
.ws40{word-spacing:0.913903pt;}
.ws1e{word-spacing:1.020170pt;}
.ws81{word-spacing:1.089244pt;}
.ws88{word-spacing:1.179572pt;}
.ws3a{word-spacing:1.498375pt;}
.ws6c{word-spacing:1.551509pt;}
.ws21{word-spacing:1.657777pt;}
.ws6b{word-spacing:1.833118pt;}
.ws29{word-spacing:1.870312pt;}
.ws9a{word-spacing:2.135981pt;}
.ws60{word-spacing:2.189115pt;}
.ws30{word-spacing:2.348517pt;}
.ws96{word-spacing:2.454785pt;}
.ws33{word-spacing:2.561052pt;}
.wsb{word-spacing:2.606234pt;}
.ws58{word-spacing:2.720454pt;}
.wsf{word-spacing:2.749696pt;}
.ws2a{word-spacing:2.773588pt;}
.ws2b{word-spacing:2.826722pt;}
.ws9c{word-spacing:2.879856pt;}
.ws1a{word-spacing:2.932989pt;}
.ws39{word-spacing:2.986123pt;}
.ws2c{word-spacing:3.161465pt;}
.ws11{word-spacing:3.180083pt;}
.ws89{word-spacing:3.198659pt;}
.wsc{word-spacing:3.275725pt;}
.ws24{word-spacing:3.358060pt;}
.ws7d{word-spacing:3.374001pt;}
.ws86{word-spacing:3.570596pt;}
.ws2d{word-spacing:3.676864pt;}
.ws4b{word-spacing:3.783131pt;}
.ws85{word-spacing:3.942533pt;}
.ws5b{word-spacing:3.995667pt;}
.ws61{word-spacing:4.101935pt;}
.ws78{word-spacing:4.208202pt;}
.ws2f{word-spacing:4.261336pt;}
.ws52{word-spacing:4.314470pt;}
.ws19{word-spacing:4.367604pt;}
.ws63{word-spacing:4.686407pt;}
.ws7a{word-spacing:4.739541pt;}
.ws26{word-spacing:4.845809pt;}
.ws2e{word-spacing:4.861749pt;}
.ws95{word-spacing:4.952076pt;}
.ws22{word-spacing:5.005210pt;}
.ws4c{word-spacing:5.164612pt;}
.ws53{word-spacing:5.270880pt;}
.ws45{word-spacing:5.430281pt;}
.ws57{word-spacing:5.483415pt;}
.ws79{word-spacing:5.499355pt;}
.ws80{word-spacing:5.695951pt;}
.ws17{word-spacing:5.855352pt;}
.ws9b{word-spacing:5.908486pt;}
.ws34{word-spacing:6.014754pt;}
.ws84{word-spacing:6.067888pt;}
.ws6e{word-spacing:6.083828pt;}
.ws64{word-spacing:6.227289pt;}
.ws44{word-spacing:6.243229pt;}
.ws8b{word-spacing:6.280423pt;}
.ws93{word-spacing:6.439825pt;}
.ws55{word-spacing:6.546092pt;}
.ws7f{word-spacing:6.562033pt;}
.ws76{word-spacing:6.705494pt;}
.ws10{word-spacing:6.718822pt;}
.ws4a{word-spacing:6.971163pt;}
.ws37{word-spacing:7.130565pt;}
.ws36{word-spacing:7.236833pt;}
.ws59{word-spacing:7.343100pt;}
.wsd{word-spacing:7.436134pt;}
.ws20{word-spacing:7.449368pt;}
.ws97{word-spacing:7.502502pt;}
.ws98{word-spacing:7.555636pt;}
.ws3d{word-spacing:7.608770pt;}
.ws27{word-spacing:7.661904pt;}
.ws3f{word-spacing:7.927573pt;}
.ws3e{word-spacing:7.980707pt;}
.ws42{word-spacing:8.193242pt;}
.wse{word-spacing:8.201267pt;}
.ws35{word-spacing:8.315450pt;}
.ws92{word-spacing:8.405778pt;}
.ws90{word-spacing:8.512045pt;}
.ws3b{word-spacing:8.777715pt;}
.ws8{word-spacing:8.918579pt;}
.ws65{word-spacing:8.937116pt;}
.ws13{word-spacing:9.109862pt;}
.ws87{word-spacing:9.149652pt;}
.ws75{word-spacing:9.255920pt;}
.ws41{word-spacing:9.378127pt;}
.ws7{word-spacing:9.492429pt;}
.ws12{word-spacing:9.683712pt;}
.ws83{word-spacing:9.893526pt;}
.ws28{word-spacing:9.999794pt;}
.ws25{word-spacing:10.052928pt;}
.ws67{word-spacing:10.159195pt;}
.ws16{word-spacing:10.318597pt;}
.ws49{word-spacing:10.424865pt;}
.ws66{word-spacing:10.477999pt;}
.ws62{word-spacing:10.584266pt;}
.ws82{word-spacing:10.903069pt;}
.ws43{word-spacing:11.062471pt;}
.ws91{word-spacing:11.275007pt;}
.ws9f{word-spacing:11.487542pt;}
.ws48{word-spacing:11.700077pt;}
.ws6a{word-spacing:11.805224pt;}
.ws1b{word-spacing:11.806345pt;}
.ws70{word-spacing:13.347227pt;}
.ws23{word-spacing:13.878566pt;}
.ws18{word-spacing:14.728708pt;}
.ws6f{word-spacing:15.382254pt;}
.ws38{word-spacing:15.950787pt;}
.ws3c{word-spacing:17.651071pt;}
.ws9d{word-spacing:18.915657pt;}
.ws3{word-spacing:18.968790pt;}
.ws2{word-spacing:20.722347pt;}
.ws0{word-spacing:27.636455pt;}
.ws1d{word-spacing:28.615887pt;}
.ws4e{word-spacing:48.953513pt;}
.ws4d{word-spacing:71.667439pt;}
.ws15{word-spacing:86.000687pt;}
.ws50{word-spacing:150.982898pt;}
.ws51{word-spacing:155.844647pt;}
.ws5e{word-spacing:171.561256pt;}
.ws5d{word-spacing:188.218964pt;}
.ws4f{word-spacing:190.089424pt;}
._6{margin-left:-31.242923pt;}
._26{margin-left:-27.196896pt;}
._25{margin-left:-26.131201pt;}
._4{margin-left:-10.526476pt;}
._0{margin-left:-7.161606pt;}
._9{margin-left:-6.144534pt;}
._5{margin-left:-5.164646pt;}
._7{margin-left:-3.461345pt;}
._1{margin-left:-2.387202pt;}
._e{margin-left:-1.487748pt;}
._8{width:1.487748pt;}
._3{width:2.387202pt;}
._15{width:9.392052pt;}
._b{width:11.988576pt;}
._11{width:15.069792pt;}
._1f{width:16.414543pt;}
._19{width:17.597971pt;}
._a{width:19.319603pt;}
._21{width:20.456539pt;}
._10{width:22.199458pt;}
._16{width:23.272634pt;}
._c{width:24.866816pt;}
._12{width:26.885737pt;}
._13{width:28.426619pt;}
._22{width:29.760930pt;}
._f{width:30.796595pt;}
._1a{width:32.613307pt;}
._1b{width:34.156360pt;}
._20{width:36.308573pt;}
._2{width:37.277079pt;}
._18{width:38.465098pt;}
._d{width:40.504218pt;}
._23{width:43.353413pt;}
._17{width:44.951251pt;}
._1e{width:46.822402pt;}
._1c{width:47.926748pt;}
._1d{width:50.044459pt;}
._24{width:54.769551pt;}
._14{width:86.077200pt;}
.fs7{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs9{font-size:48.831846pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:20.345837pt;}
.y96{bottom:36.586664pt;}
.y97{bottom:89.662294pt;}
.y9b{bottom:108.010768pt;}
.y29{bottom:119.153333pt;}
.y98{bottom:128.708900pt;}
.y84{bottom:159.004000pt;}
.y99{bottom:167.755506pt;}
.ya0{bottom:168.356000pt;}
.y83{bottom:172.084000pt;}
.y81{bottom:174.944000pt;}
.y82{bottom:177.689333pt;}
.y9f{bottom:184.296000pt;}
.y58{bottom:189.545333pt;}
.y80{bottom:190.884000pt;}
.y9e{bottom:200.236000pt;}
.yc7{bottom:200.402667pt;}
.y57{bottom:205.485333pt;}
.y7f{bottom:206.824000pt;}
.y28{bottom:216.020000pt;}
.y9d{bottom:216.176000pt;}
.y56{bottom:218.565333pt;}
.ye6{bottom:219.640000pt;}
.y54{bottom:221.425333pt;}
.y7e{bottom:222.764000pt;}
.y55{bottom:224.170667pt;}
.yc6{bottom:225.862667pt;}
.y27{bottom:231.960000pt;}
.y105{bottom:232.052000pt;}
.ye5{bottom:235.580000pt;}
.y53{bottom:237.365333pt;}
.y7d{bottom:238.705333pt;}
.y26{bottom:245.041333pt;}
.y24{bottom:247.901333pt;}
.y104{bottom:247.992000pt;}
.y25{bottom:250.645333pt;}
.yc5{bottom:251.321333pt;}
.ye4{bottom:251.521333pt;}
.y7c{bottom:254.645333pt;}
.y9c{bottom:258.610667pt;}
.y23{bottom:263.841333pt;}
.y52{bottom:266.460000pt;}
.yc4{bottom:267.261333pt;}
.ye3{bottom:267.461333pt;}
.y7b{bottom:270.585333pt;}
.y103{bottom:274.560000pt;}
.ye2{bottom:283.401333pt;}
.y7a{bottom:286.525333pt;}
.y95{bottom:287.833333pt;}
.y102{bottom:290.500000pt;}
.yc3{bottom:292.721333pt;}
.y22{bottom:292.936000pt;}
.ye1{bottom:299.341333pt;}
.y79{bottom:302.465333pt;}
.yc2{bottom:308.661333pt;}
.y51{bottom:310.388000pt;}
.ye0{bottom:315.281333pt;}
.y101{bottom:317.066667pt;}
.y78{bottom:318.405333pt;}
.y50{bottom:323.468000pt;}
.y4e{bottom:326.328000pt;}
.y4f{bottom:329.073333pt;}
.ydf{bottom:331.222667pt;}
.y77{bottom:334.346667pt;}
.yc1{bottom:335.116000pt;}
.y4d{bottom:342.268000pt;}
.y100{bottom:343.633333pt;}
.yde{bottom:347.162667pt;}
.y76{bottom:350.286667pt;}
.yc0{bottom:351.056000pt;}
.ydd{bottom:363.102667pt;}
.y75{bottom:366.226667pt;}
.ybf{bottom:366.996000pt;}
.y4c{bottom:371.492000pt;}
.yff{bottom:372.728000pt;}
.ydc{bottom:379.042667pt;}
.ybe{bottom:380.076000pt;}
.y74{bottom:382.166667pt;}
.y21{bottom:382.628000pt;}
.ybc{bottom:382.936000pt;}
.y4b{bottom:384.572000pt;}
.ybd{bottom:385.681333pt;}
.y49{bottom:387.432000pt;}
.y4a{bottom:390.177333pt;}
.ydb{bottom:394.982667pt;}
.y20{bottom:397.240000pt;}
.y73{bottom:398.106667pt;}
.ybb{bottom:398.876000pt;}
.y48{bottom:403.372000pt;}
.yda{bottom:410.922667pt;}
.y1f{bottom:411.852000pt;}
.yfe{bottom:413.796000pt;}
.y72{bottom:414.048000pt;}
.yba{bottom:414.817333pt;}
.yfc{bottom:416.656000pt;}
.yfd{bottom:419.401333pt;}
.y1e{bottom:423.890667pt;}
.y1c{bottom:426.464000pt;}
.yd9{bottom:426.864000pt;}
.y1d{bottom:429.209333pt;}
.y47{bottom:429.940000pt;}
.yb9{bottom:430.757333pt;}
.yfb{bottom:432.596000pt;}
.y1b{bottom:441.076000pt;}
.y71{bottom:441.900000pt;}
.yd8{bottom:442.804000pt;}
.y46{bottom:445.880000pt;}
.yb8{bottom:446.697333pt;}
.yfa{bottom:448.536000pt;}
.y1a{bottom:455.688000pt;}
.yd7{bottom:458.744000pt;}
.y45{bottom:461.820000pt;}
.yf9{bottom:464.476000pt;}
.y19{bottom:470.300000pt;}
.y70{bottom:470.976000pt;}
.yb7{bottom:473.152000pt;}
.yd6{bottom:474.684000pt;}
.y44{bottom:477.760000pt;}
.yf8{bottom:480.417333pt;}
.y18{bottom:484.912000pt;}
.y6f{bottom:486.916000pt;}
.yb6{bottom:489.092000pt;}
.yd5{bottom:490.624000pt;}
.yf7{bottom:496.357333pt;}
.y17{bottom:499.522667pt;}
.y6e{bottom:502.856000pt;}
.y43{bottom:504.326667pt;}
.yb5{bottom:505.032000pt;}
.yd4{bottom:506.564000pt;}
.y16{bottom:511.561333pt;}
.yf6{bottom:512.297333pt;}
.y14{bottom:514.134667pt;}
.y94{bottom:515.510667pt;}
.y15{bottom:516.880000pt;}
.y6d{bottom:519.328000pt;}
.y42{bottom:520.268000pt;}
.yd3{bottom:522.505333pt;}
.yf5{bottom:528.237333pt;}
.y13{bottom:528.746667pt;}
.yb4{bottom:530.490667pt;}
.y41{bottom:536.208000pt;}
.y12{bottom:543.358667pt;}
.yf4{bottom:544.177333pt;}
.yb3{bottom:546.432000pt;}
.y6c{bottom:548.094667pt;}
.yd2{bottom:551.598667pt;}
.y11{bottom:557.970667pt;}
.yf3{bottom:560.118667pt;}
.yb2{bottom:562.372000pt;}
.y40{bottom:562.774667pt;}
.y6b{bottom:564.034667pt;}
.y10{bottom:570.009333pt;}
.ye{bottom:572.582667pt;}
.y93{bottom:574.816000pt;}
.yf{bottom:575.328000pt;}
.yf2{bottom:576.058667pt;}
.y3f{bottom:578.714667pt;}
.yd{bottom:587.194667pt;}
.yb1{bottom:587.830667pt;}
.y6a{bottom:588.554667pt;}
.yf1{bottom:589.138667pt;}
.y92{bottom:589.960000pt;}
.yef{bottom:591.998667pt;}
.y3e{bottom:594.654667pt;}
.yf0{bottom:594.744000pt;}
.yd1{bottom:595.526667pt;}
.yc{bottom:599.233333pt;}
.ya{bottom:601.806667pt;}
.yb0{bottom:603.770667pt;}
.yb{bottom:604.552000pt;}
.yee{bottom:605.078667pt;}
.y91{bottom:605.102667pt;}
.yec{bottom:607.938667pt;}
.yed{bottom:610.684000pt;}
.yd0{bottom:611.466667pt;}
.yaf{bottom:619.712000pt;}
.y90{bottom:620.246667pt;}
.yeb{bottom:621.018667pt;}
.y69{bottom:622.257333pt;}
.y9{bottom:622.628000pt;}
.y3d{bottom:623.878667pt;}
.y67{bottom:625.116000pt;}
.yea{bottom:626.624000pt;}
.ycf{bottom:627.406667pt;}
.y68{bottom:627.861333pt;}
.y8f{bottom:635.389333pt;}
.y3c{bottom:636.960000pt;}
.y3a{bottom:639.818667pt;}
.y66{bottom:641.057333pt;}
.y3b{bottom:642.564000pt;}
.yce{bottom:643.348000pt;}
.yae{bottom:645.170667pt;}
.y8{bottom:650.524000pt;}
.y8e{bottom:650.532000pt;}
.y39{bottom:655.760000pt;}
.y65{bottom:656.997333pt;}
.ycd{bottom:659.288000pt;}
.yad{bottom:661.110667pt;}
.y8d{bottom:665.676000pt;}
.y7{bottom:666.464000pt;}
.y38{bottom:671.700000pt;}
.y64{bottom:672.937333pt;}
.ycc{bottom:675.228000pt;}
.y8c{bottom:680.818667pt;}
.yac{bottom:684.705333pt;}
.yaa{bottom:687.565333pt;}
.y37{bottom:687.640000pt;}
.y63{bottom:688.877333pt;}
.yab{bottom:690.310667pt;}
.ycb{bottom:691.168000pt;}
.ya9{bottom:703.505333pt;}
.y36{bottom:703.580000pt;}
.y62{bottom:704.817333pt;}
.y6{bottom:715.613333pt;}
.ya8{bottom:719.445333pt;}
.y35{bottom:719.520000pt;}
.yca{bottom:723.786667pt;}
.y8b{bottom:726.958667pt;}
.y61{bottom:730.428000pt;}
.ya7{bottom:735.386667pt;}
.y34{bottom:735.460000pt;}
.y60{bottom:746.369333pt;}
.ya6{bottom:751.326667pt;}
.y33{bottom:751.401333pt;}
.y5{bottom:762.076000pt;}
.y32{bottom:767.341333pt;}
.y5f{bottom:771.490667pt;}
.ya5{bottom:775.845333pt;}
.y31{bottom:783.281333pt;}
.y8a{bottom:786.264000pt;}
.y4{bottom:786.358667pt;}
.y5e{bottom:787.430667pt;}
.y2{bottom:791.298667pt;}
.y3{bottom:795.845333pt;}
.y30{bottom:799.221333pt;}
.y89{bottom:801.408000pt;}
.y5d{bottom:803.370667pt;}
.ye9{bottom:812.302667pt;}
.ya4{bottom:812.553333pt;}
.y2f{bottom:815.161333pt;}
.yc9{bottom:815.209333pt;}
.y88{bottom:816.550667pt;}
.ye8{bottom:817.906667pt;}
.y5c{bottom:819.312000pt;}
.y1{bottom:820.522667pt;}
.ya3{bottom:828.493333pt;}
.ye7{bottom:831.101333pt;}
.y2e{bottom:831.102667pt;}
.yc8{bottom:831.149333pt;}
.y87{bottom:831.693333pt;}
.y2d{bottom:844.182667pt;}
.y5b{bottom:844.433333pt;}
.y86{bottom:846.837333pt;}
.y2b{bottom:847.042667pt;}
.y2c{bottom:849.788000pt;}
.ya2{bottom:857.513333pt;}
.y5a{bottom:860.373333pt;}
.y85{bottom:861.980000pt;}
.ya1{bottom:863.118667pt;}
.y2a{bottom:876.136000pt;}
.y59{bottom:876.313333pt;}
.h7{height:22.762701pt;}
.ha{height:26.519037pt;}
.hf{height:29.499997pt;}
.h5{height:33.474560pt;}
.h12{height:34.865938pt;}
.h11{height:35.411231pt;}
.h6{height:35.865600pt;}
.he{height:37.193707pt;}
.h4{height:39.850400pt;}
.hd{height:44.632747pt;}
.h2{height:45.525402pt;}
.h8{height:46.158933pt;}
.hc{height:51.285067pt;}
.hb{height:51.290400pt;}
.h9{height:53.559147pt;}
.h1{height:68.769785pt;}
.h3{height:88.529785pt;}
.h10{height:209.154834pt;}
.h0{height:1056.000000pt;}
.w1{width:320.809564pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:28.823907pt;}
.x36{left:53.146089pt;}
.x35{left:76.780528pt;}
.x32{left:157.897333pt;}
.x37{left:169.838645pt;}
.x9{left:178.357333pt;}
.x1d{left:181.877333pt;}
.x1e{left:187.726667pt;}
.x1f{left:195.105333pt;}
.x8{left:198.282667pt;}
.x2c{left:203.962667pt;}
.x1{left:208.190667pt;}
.xf{left:211.566667pt;}
.x2{left:212.769333pt;}
.xb{left:229.997333pt;}
.xc{left:233.252000pt;}
.xd{left:238.553333pt;}
.xe{left:245.378667pt;}
.x34{left:247.101333pt;}
.x47{left:250.645333pt;}
.x48{left:256.494667pt;}
.x6{left:259.825333pt;}
.x49{left:263.873333pt;}
.x4b{left:273.008000pt;}
.x4c{left:278.856000pt;}
.x4d{left:286.236000pt;}
.x20{left:294.676000pt;}
.x21{left:300.525333pt;}
.x23{left:306.072000pt;}
.x22{left:307.904000pt;}
.x24{left:311.921333pt;}
.x4e{left:314.786667pt;}
.x25{left:319.300000pt;}
.x2f{left:321.209333pt;}
.x30{left:327.057333pt;}
.x4f{left:328.014667pt;}
.x31{left:334.436000pt;}
.x4a{left:339.396000pt;}
.x39{left:343.542667pt;}
.x2e{left:345.276000pt;}
.x33{left:346.634667pt;}
.x7{left:351.096000pt;}
.x2d{left:352.150667pt;}
.xa{left:380.440000pt;}
.x16{left:388.525333pt;}
.x17{left:393.825333pt;}
.x18{left:400.650667pt;}
.x1c{left:404.177333pt;}
.x19{left:405.828000pt;}
.x3d{left:407.716000pt;}
.x1a{left:411.676000pt;}
.x10{left:414.877333pt;}
.x1b{left:419.054667pt;}
.x11{left:420.177333pt;}
.x41{left:424.014667pt;}
.x12{left:427.002667pt;}
.x42{left:429.864000pt;}
.x43{left:437.242667pt;}
.x44{left:458.125333pt;}
.x45{left:463.974667pt;}
.x46{left:471.353333pt;}
.x3a{left:509.704000pt;}
.x3{left:511.128000pt;}
.x3b{left:515.552000pt;}
.x4{left:519.669333pt;}
.x3c{left:522.930667pt;}
.x5{left:531.484000pt;}
.x29{left:544.897333pt;}
.x2a{left:550.745333pt;}
.x2b{left:558.125333pt;}
.x26{left:565.861333pt;}
.x27{left:571.710667pt;}
.x13{left:575.265333pt;}
.x28{left:579.089333pt;}
.x14{left:580.565333pt;}
.x15{left:587.392000pt;}
.x3e{left:602.380000pt;}
.x3f{left:608.228000pt;}
.x40{left:615.606667pt;}
}




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