
    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_6ed217600e554bd56dc9778c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_caeb15f786b61181a06ccb7a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_f8cb7702adb7852095abb620.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_a411984f151fb935a29b8cc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_ac426110153bef61f480f9f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002000;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_5f3d18cfcd5363275ea25dee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.741000;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_f8cb7702adb7852095abb620.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.175000;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_ac426110153bef61f480f9f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;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_a411984f151fb935a29b8cc8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_6ed217600e554bd56dc9778c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_5f3d18cfcd5363275ea25dee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.741000;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_f8cb7702adb7852095abb620.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.175000;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_314c72e74e27aece56e42fdd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692000;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_78434fa9aad64b6098a581b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.755000;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_a411984f151fb935a29b8cc8.woff2')format("woff");}.fff{font-family:fff;line-height:1.009000;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_ac426110153bef61f480f9f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.002000;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_6ed217600e554bd56dc9778c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.132000;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:ff12;src:url('chunks/assets/font_5f3d18cfcd5363275ea25dee.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.741000;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;}
.m4{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239961,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-55.377600px;}
.v0{vertical-align:0.000000px;}
.ls3c{letter-spacing:-0.867487px;}
.ls3b{letter-spacing:-0.851323px;}
.lsb{letter-spacing:-0.835159px;}
.ls33{letter-spacing:-0.818994px;}
.ls2d{letter-spacing:-0.797442px;}
.ls12{letter-spacing:-0.781277px;}
.ls2b{letter-spacing:-0.748949px;}
.ls1{letter-spacing:-0.748344px;}
.ls38{letter-spacing:-0.716620px;}
.ls18{letter-spacing:-0.700456px;}
.ls1b{letter-spacing:-0.678903px;}
.ls3e{letter-spacing:-0.655555px;}
.ls15{letter-spacing:-0.630410px;}
.ls29{letter-spacing:-0.614246px;}
.ls14{letter-spacing:-0.598081px;}
.ls39{letter-spacing:-0.576529px;}
.ls2f{letter-spacing:-0.560364px;}
.ls22{letter-spacing:-0.544200px;}
.ls11{letter-spacing:-0.528036px;}
.ls31{letter-spacing:-0.511871px;}
.ls2a{letter-spacing:-0.495707px;}
.ls34{letter-spacing:-0.479543px;}
.ls3f{letter-spacing:-0.462480px;}
.lsd{letter-spacing:-0.457990px;}
.ls32{letter-spacing:-0.441826px;}
.ls30{letter-spacing:-0.441227px;}
.ls10{letter-spacing:-0.425661px;}
.ls1a{letter-spacing:-0.409497px;}
.ls27{letter-spacing:-0.393333px;}
.ls9{letter-spacing:-0.377168px;}
.lsf{letter-spacing:-0.355616px;}
.ls37{letter-spacing:-0.323287px;}
.ls3d{letter-spacing:-0.318797px;}
.lsc{letter-spacing:-0.307123px;}
.ls28{letter-spacing:-0.290958px;}
.ls24{letter-spacing:-0.274794px;}
.ls17{letter-spacing:-0.253242px;}
.ls23{letter-spacing:-0.239471px;}
.lse{letter-spacing:-0.204749px;}
.ls2{letter-spacing:-0.202353px;}
.ls20{letter-spacing:-0.188584px;}
.ls4{letter-spacing:-0.171222px;}
.ls13{letter-spacing:-0.156255px;}
.ls1e{letter-spacing:-0.142485px;}
.lsa{letter-spacing:-0.134703px;}
.ls3{letter-spacing:-0.124525px;}
.ls25{letter-spacing:-0.118539px;}
.ls26{letter-spacing:-0.100578px;}
.ls21{letter-spacing:-0.086210px;}
.ls1f{letter-spacing:-0.083815px;}
.ls16{letter-spacing:-0.070046px;}
.ls1d{letter-spacing:-0.067052px;}
.ls19{letter-spacing:-0.053881px;}
.ls3a{letter-spacing:-0.050289px;}
.ls8{letter-spacing:-0.040411px;}
.ls1c{letter-spacing:-0.033526px;}
.ls35{letter-spacing:-0.032329px;}
.ls6{letter-spacing:-0.026941px;}
.ls36{letter-spacing:-0.026342px;}
.ls7{letter-spacing:-0.022451px;}
.ls2e{letter-spacing:-0.016164px;}
.ls5{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.092196px;}
.ls0{letter-spacing:18.335772px;}
.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;}
}
.wsc{word-spacing:-18.389654px;}
.ws72{word-spacing:-0.044901px;}
.ws74{word-spacing:-0.038914px;}
.ws3c{word-spacing:0.000000px;}
.ws4{word-spacing:0.015566px;}
.ws6e{word-spacing:8.670383px;}
.ws73{word-spacing:8.674873px;}
.ws6f{word-spacing:9.061022px;}
.ws71{word-spacing:9.981492px;}
.ws6{word-spacing:10.111705px;}
.ws7{word-spacing:10.116195px;}
.ws9{word-spacing:10.138646px;}
.wsf{word-spacing:10.420624px;}
.wsa{word-spacing:10.426012px;}
.ws1a{word-spacing:10.431400px;}
.ws34{word-spacing:10.522998px;}
.ws1b{word-spacing:10.539163px;}
.ws3a{word-spacing:10.551735px;}
.ws48{word-spacing:10.560715px;}
.ws41{word-spacing:10.727747px;}
.ws5{word-spacing:10.905256px;}
.ws57{word-spacing:10.964824px;}
.ws5a{word-spacing:11.018705px;}
.ws24{word-spacing:11.051034px;}
.ws76{word-spacing:11.121080px;}
.ws62{word-spacing:11.153408px;}
.ws7d{word-spacing:11.180349px;}
.ws3e{word-spacing:11.341993px;}
.ws1d{word-spacing:11.374321px;}
.ws7b{word-spacing:11.444367px;}
.ws4b{word-spacing:11.649115px;}
.ws39{word-spacing:11.697609px;}
.ws17{word-spacing:11.713773px;}
.ws19{word-spacing:12.037060px;}
.ws75{word-spacing:12.107106px;}
.ws2a{word-spacing:12.139434px;}
.ws27{word-spacing:12.171763px;}
.ws28{word-spacing:12.177151px;}
.ws7e{word-spacing:12.186131px;}
.ws43{word-spacing:12.274137px;}
.ws35{word-spacing:12.360347px;}
.ws6a{word-spacing:12.376512px;}
.ws8{word-spacing:12.433087px;}
.ws7f{word-spacing:12.437577px;}
.ws33{word-spacing:12.446557px;}
.ws67{word-spacing:12.478886px;}
.ws21{word-spacing:12.516603px;}
.ws25{word-spacing:12.635141px;}
.ws13{word-spacing:12.667470px;}
.ws59{word-spacing:12.786009px;}
.ws52{word-spacing:12.802173px;}
.ws1c{word-spacing:12.818337px;}
.ws22{word-spacing:13.060803px;}
.ws55{word-spacing:13.109296px;}
.ws6d{word-spacing:13.227835px;}
.ws2b{word-spacing:13.362538px;}
.ws69{word-spacing:13.551122px;}
.wse{word-spacing:13.707377px;}
.ws12{word-spacing:14.046829px;}
.ws29{word-spacing:14.127651px;}
.ws70{word-spacing:14.166265px;}
.ws63{word-spacing:14.230025px;}
.ws32{word-spacing:14.639522px;}
.ws11{word-spacing:14.671851px;}
.ws14{word-spacing:14.693403px;}
.ws6b{word-spacing:14.725732px;}
.ws65{word-spacing:14.995138px;}
.ws5b{word-spacing:15.253768px;}
.ws5f{word-spacing:15.388471px;}
.ws78{word-spacing:15.577055px;}
.ws31{word-spacing:15.916506px;}
.ws5c{word-spacing:15.932671px;}
.ws77{word-spacing:15.986552px;}
.ws7a{word-spacing:16.018881px;}
.ws10{word-spacing:16.169748px;}
.ws36{word-spacing:16.374497px;}
.ws66{word-spacing:16.509200px;}
.ws6c{word-spacing:16.697784px;}
.ws5e{word-spacing:17.258148px;}
.ws18{word-spacing:17.376687px;}
.ws79{word-spacing:17.667645px;}
.ws4d{word-spacing:17.760314px;}
.ws5d{word-spacing:18.011758px;}
.ws54{word-spacing:18.023261px;}
.ws37{word-spacing:18.112335px;}
.ws44{word-spacing:18.145861px;}
.ws2e{word-spacing:18.229675px;}
.wsb{word-spacing:18.281891px;}
.wsd{word-spacing:18.486640px;}
.ws1e{word-spacing:18.551297px;}
.ws49{word-spacing:18.605178px;}
.ws30{word-spacing:18.774470px;}
.ws2c{word-spacing:18.841522px;}
.ws68{word-spacing:18.875048px;}
.ws2d{word-spacing:18.908574px;}
.ws2f{word-spacing:18.942100px;}
.ws3f{word-spacing:19.165543px;}
.ws45{word-spacing:19.251753px;}
.ws50{word-spacing:19.354127px;}
.ws58{word-spacing:20.711933px;}
.ws4e{word-spacing:20.900517px;}
.ws26{word-spacing:21.002892px;}
.ws61{word-spacing:21.784169px;}
.ws4a{word-spacing:22.021246px;}
.ws38{word-spacing:22.209831px;}
.ws46{word-spacing:22.565447px;}
.ws60{word-spacing:22.581611px;}
.ws42{word-spacing:23.195857px;}
.ws4c{word-spacing:23.212021px;}
.ws3d{word-spacing:23.298231px;}
.ws53{word-spacing:24.031015px;}
.ws23{word-spacing:24.063344px;}
.ws51{word-spacing:24.251928px;}
.ws56{word-spacing:24.575215px;}
.ws40{word-spacing:24.758411px;}
.ws20{word-spacing:25.017041px;}
.ws7c{word-spacing:25.151744px;}
.ws4f{word-spacing:25.200237px;}
.ws47{word-spacing:25.356493px;}
.ws64{word-spacing:27.037586px;}
.ws16{word-spacing:32.581962px;}
.ws15{word-spacing:33.007623px;}
.ws3{word-spacing:33.730699px;}
.ws1f{word-spacing:34.079859px;}
.ws2{word-spacing:35.131604px;}
.ws1{word-spacing:35.287261px;}
.ws0{word-spacing:58.834099px;}
.ws3b{word-spacing:1400.998504px;}
._11{margin-left:-3061.856654px;}
._a{margin-left:-18.368101px;}
._3{margin-left:-8.701182px;}
._0{margin-left:-4.451767px;}
._1{margin-left:-2.132490px;}
._7{margin-left:-1.041703px;}
._d{width:1.324271px;}
._10{width:5.000475px;}
._f{width:6.121204px;}
._8{width:12.387878px;}
._9{width:14.596417px;}
._12{width:15.711758px;}
._e{width:17.282571px;}
._c{width:19.229471px;}
._b{width:23.149593px;}
._4{width:30.508615px;}
._2{width:33.139205px;}
._6{width:35.240564px;}
._5{width:44.128533px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(192,54,44);}
.fsa{font-size:26.940600px;}
.fs5{font-size:32.927400px;}
.fs8{font-size:38.914200px;}
.fsb{font-size:41.907600px;}
.fs3{font-size:44.901000px;}
.fs2{font-size:50.887800px;}
.fs4{font-size:53.881200px;}
.fs7{font-size:57.469800px;}
.fs0{font-size:74.834400px;}
.fs6{font-size:83.814600px;}
.fs9{font-size:95.788200px;}
.fs1{font-size:155.656200px;}
.y0{bottom:0.000000px;}
.y62{bottom:63.779550px;}
.y60{bottom:80.787450px;}
.y5f{bottom:93.509250px;}
.yef{bottom:93.510373px;}
.y61{bottom:106.231200px;}
.yf3{bottom:106.231574px;}
.yee{bottom:106.231948px;}
.yf2{bottom:118.953150px;}
.yed{bottom:118.953524px;}
.yec{bottom:131.675100px;}
.yf1{bottom:131.675324px;}
.y36{bottom:135.417447px;}
.yf0{bottom:144.396900px;}
.yeb{bottom:144.397124px;}
.y5e{bottom:148.138070px;}
.y35{bottom:151.200598px;}
.ye9{bottom:157.118700px;}
.yea{bottom:161.608800px;}
.y5d{bottom:163.857910px;}
.y34{bottom:166.983748px;}
.ye8{bottom:169.840650px;}
.y5c{bottom:179.577750px;}
.ye7{bottom:182.562600px;}
.y33{bottom:182.766899px;}
.ye2{bottom:186.297912px;}
.ye6{bottom:195.284400px;}
.y32{bottom:198.550049px;}
.ye1{bottom:202.013711px;}
.y5b{bottom:206.343900px;}
.ye5{bottom:208.006574px;}
.y31{bottom:214.333200px;}
.y2f{bottom:214.340493px;}
.ye0{bottom:217.729510px;}
.y30{bottom:219.945900px;}
.ye4{bottom:220.728150px;}
.y2e{bottom:232.249257px;}
.ydf{bottom:233.445309px;}
.ye3{bottom:233.450100px;}
.y2d{bottom:248.032407px;}
.y5a{bottom:248.560970px;}
.yde{bottom:249.161108px;}
.y2c{bottom:263.815558px;}
.y59{bottom:264.280810px;}
.ydd{bottom:264.876907px;}
.ya4{bottom:275.357550px;}
.ya2{bottom:275.357606px;}
.y2b{bottom:279.602749px;}
.y56{bottom:279.999096px;}
.y58{bottom:280.000650px;}
.ydc{bottom:280.592706px;}
.ya3{bottom:280.970100px;}
.y57{bottom:285.613200px;}
.ya1{bottom:291.166350px;}
.y9f{bottom:291.166518px;}
.y2a{bottom:295.389941px;}
.y55{bottom:295.718936px;}
.ydb{bottom:296.308505px;}
.ya0{bottom:296.778900px;}
.y9e{bottom:306.975262px;}
.y29{bottom:311.177132px;}
.y54{bottom:311.438776px;}
.yda{bottom:312.024304px;}
.y9d{bottom:322.784006px;}
.y28{bottom:326.964324px;}
.y53{bottom:327.158616px;}
.yd9{bottom:327.740103px;}
.y9c{bottom:338.592750px;}
.y9a{bottom:338.593515px;}
.y27{bottom:342.751516px;}
.y52{bottom:342.878456px;}
.yd8{bottom:343.455902px;}
.y9b{bottom:344.205300px;}
.y99{bottom:354.402259px;}
.y26{bottom:358.538707px;}
.y51{bottom:358.602338px;}
.yd7{bottom:359.171701px;}
.y98{bottom:370.211003px;}
.y25{bottom:374.325899px;}
.y50{bottom:374.326219px;}
.yd6{bottom:374.887500px;}
.y97{bottom:386.019747px;}
.y4f{bottom:390.050100px;}
.y24{bottom:390.113090px;}
.yd5{bottom:401.283900px;}
.y96{bottom:401.828491px;}
.y23{bottom:405.900282px;}
.y4e{bottom:416.823562px;}
.y95{bottom:417.637236px;}
.y22{bottom:421.687474px;}
.y94{bottom:433.445980px;}
.y21{bottom:437.474665px;}
.y4d{bottom:439.281684px;}
.yd2{bottom:443.494206px;}
.yd4{bottom:443.497350px;}
.yd3{bottom:449.109900px;}
.y93{bottom:449.254724px;}
.y20{bottom:453.261857px;}
.yd1{bottom:459.210005px;}
.y4c{bottom:461.739806px;}
.y92{bottom:465.063468px;}
.y1f{bottom:469.049048px;}
.yd0{bottom:474.925804px;}
.y91{bottom:480.872212px;}
.y4b{bottom:484.197928px;}
.y1e{bottom:484.836240px;}
.ycf{bottom:490.641603px;}
.y90{bottom:496.680956px;}
.y1d{bottom:500.623432px;}
.yce{bottom:506.357402px;}
.y4a{bottom:506.656050px;}
.y8f{bottom:512.489700px;}
.y1c{bottom:516.410623px;}
.ycd{bottom:522.073201px;}
.y1b{bottom:532.197815px;}
.yca{bottom:537.783760px;}
.ycc{bottom:537.789000px;}
.y8e{bottom:539.345250px;}
.ycb{bottom:543.401550px;}
.y1a{bottom:547.985006px;}
.y49{bottom:548.877675px;}
.yc9{bottom:553.499559px;}
.y19{bottom:563.772198px;}
.y48{bottom:564.601556px;}
.yc8{bottom:569.215358px;}
.y47{bottom:580.325438px;}
.y8d{bottom:581.652300px;}
.y8b{bottom:581.653121px;}
.y18{bottom:581.686350px;}
.y16{bottom:581.690651px;}
.yc7{bottom:584.931157px;}
.y8c{bottom:587.264850px;}
.y17{bottom:587.298900px;}
.y46{bottom:596.049319px;}
.y8a{bottom:597.461865px;}
.y15{bottom:597.477842px;}
.yc6{bottom:600.646956px;}
.y43{bottom:611.773069px;}
.y45{bottom:611.773200px;}
.y14{bottom:613.265034px;}
.y89{bottom:613.270609px;}
.yc5{bottom:616.362755px;}
.y44{bottom:617.385750px;}
.y42{bottom:627.496950px;}
.y40{bottom:627.499630px;}
.y13{bottom:629.052226px;}
.y88{bottom:629.079353px;}
.yc4{bottom:632.078554px;}
.y41{bottom:633.109650px;}
.y3f{bottom:643.223511px;}
.y12{bottom:644.839417px;}
.y87{bottom:644.888097px;}
.yc3{bottom:647.794353px;}
.y11{bottom:660.626609px;}
.y86{bottom:660.696841px;}
.y3e{bottom:661.073005px;}
.yc2{bottom:663.510152px;}
.y10{bottom:676.413800px;}
.y85{bottom:676.505586px;}
.y3d{bottom:676.796887px;}
.yc1{bottom:679.225951px;}
.yf{bottom:692.200992px;}
.y84{bottom:692.314330px;}
.y3c{bottom:692.520768px;}
.yc0{bottom:694.941750px;}
.ye{bottom:707.988184px;}
.y83{bottom:708.123074px;}
.y3b{bottom:708.244649px;}
.ybf{bottom:721.338000px;}
.yd{bottom:723.775375px;}
.y82{bottom:723.931818px;}
.y3a{bottom:723.968530px;}
.yc{bottom:739.562567px;}
.y39{bottom:739.692411px;}
.y81{bottom:739.740562px;}
.yb{bottom:755.349758px;}
.y38{bottom:755.416293px;}
.y80{bottom:755.549306px;}
.ybd{bottom:763.546809px;}
.ybe{bottom:769.164150px;}
.ya{bottom:771.136950px;}
.y37{bottom:771.140174px;}
.y7f{bottom:771.358050px;}
.y7d{bottom:771.358536px;}
.y7e{bottom:776.970750px;}
.ybc{bottom:779.262608px;}
.y7c{bottom:787.167280px;}
.ybb{bottom:794.978407px;}
.y7b{bottom:802.976024px;}
.yba{bottom:810.694206px;}
.y7a{bottom:818.784768px;}
.y9{bottom:826.039273px;}
.yb9{bottom:826.410005px;}
.y79{bottom:834.593512px;}
.y8{bottom:838.760848px;}
.yb8{bottom:842.125804px;}
.y78{bottom:850.402256px;}
.y7{bottom:851.482424px;}
.yb7{bottom:857.841603px;}
.y6{bottom:864.204000px;}
.y77{bottom:866.211000px;}
.yb6{bottom:873.557402px;}
.y5{bottom:881.552100px;}
.yb5{bottom:889.273201px;}
.y76{bottom:893.066400px;}
.yb2{bottom:904.986313px;}
.yb4{bottom:904.989000px;}
.yb3{bottom:910.601550px;}
.y4{bottom:913.352277px;}
.yb1{bottom:920.702112px;}
.y10c{bottom:921.120900px;}
.y10b{bottom:933.842850px;}
.y75{bottom:935.373450px;}
.y73{bottom:935.373768px;}
.yb0{bottom:936.417911px;}
.y10a{bottom:937.134224px;}
.y74{bottom:940.986150px;}
.y109{bottom:949.855800px;}
.y72{bottom:951.182512px;}
.yaf{bottom:952.133710px;}
.y3{bottom:953.764518px;}
.y71{bottom:966.991256px;}
.yae{bottom:967.849509px;}
.yff{bottom:977.578650px;}
.yfd{bottom:977.578799px;}
.y108{bottom:977.581344px;}
.y70{bottom:982.800000px;}
.y6e{bottom:982.800803px;}
.yfe{bottom:983.191200px;}
.yad{bottom:983.565308px;}
.y6f{bottom:988.412550px;}
.yfc{bottom:994.042200px;}
.yfa{bottom:994.043695px;}
.y107{bottom:994.044745px;}
.y2{bottom:994.176759px;}
.y6d{bottom:998.609547px;}
.yac{bottom:999.281107px;}
.yfb{bottom:999.654750px;}
.yf9{bottom:1010.507096px;}
.y106{bottom:1010.508145px;}
.y6c{bottom:1014.418291px;}
.yab{bottom:1014.996906px;}
.yf8{bottom:1026.970497px;}
.y105{bottom:1026.971546px;}
.y6b{bottom:1030.227036px;}
.yaa{bottom:1030.712705px;}
.yf7{bottom:1043.433897px;}
.y104{bottom:1043.434947px;}
.y6a{bottom:1046.035780px;}
.ya9{bottom:1046.428504px;}
.y1{bottom:1048.433400px;}
.yf6{bottom:1059.897298px;}
.y103{bottom:1059.898347px;}
.y69{bottom:1061.848565px;}
.ya8{bottom:1062.144303px;}
.yf5{bottom:1076.360699px;}
.y102{bottom:1076.361748px;}
.y68{bottom:1077.661350px;}
.y66{bottom:1077.661930px;}
.ya7{bottom:1077.860102px;}
.y67{bottom:1083.273900px;}
.yf4{bottom:1092.824099px;}
.y101{bottom:1092.825149px;}
.y65{bottom:1093.474715px;}
.ya6{bottom:1093.575901px;}
.y64{bottom:1109.287500px;}
.y100{bottom:1109.288549px;}
.ya5{bottom:1109.291700px;}
.y63{bottom:1207.558950px;}
.hc{height:20.043806px;}
.hd{height:27.030402px;}
.h6{height:29.766370px;}
.h9{height:33.406344px;}
.h4{height:33.541047px;}
.h8{height:40.590504px;}
.ha{height:44.941384px;}
.h3{height:46.664113px;}
.h5{height:48.708605px;}
.h7{height:65.543017px;}
.hb{height:69.542233px;}
.h1{height:87.359135px;}
.h2{height:142.736735px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2a{left:29.763750px;}
.x14{left:63.779550px;}
.x1{left:76.535400px;}
.x3{left:85.039350px;}
.x11{left:94.393800px;}
.x2{left:110.551200px;}
.x2d{left:116.867550px;}
.x2e{left:128.517750px;}
.x4{left:151.690350px;}
.x5{left:157.515600px;}
.x2b{left:168.048750px;}
.x20{left:178.440750px;}
.x2c{left:183.708600px;}
.x21{left:190.090950px;}
.x28{left:196.375350px;}
.x6{left:198.517500px;}
.x29{left:206.225550px;}
.x7{left:207.620850px;}
.x15{left:210.496800px;}
.x16{left:216.253950px;}
.x1c{left:227.713500px;}
.x1d{left:280.201200px;}
.x1b{left:290.162550px;}
.x1e{left:291.851400px;}
.x17{left:294.948300px;}
.x18{left:300.743700px;}
.x1f{left:416.672250px;}
.x19{left:422.469300px;}
.x1a{left:428.200800px;}
.x8{left:461.339339px;}
.x9{left:469.843139px;}
.x12{left:479.196750px;}
.x25{left:480.711450px;}
.xe{left:481.760077px;}
.xc{left:485.951250px;}
.xd{left:491.776350px;}
.x30{left:495.354300px;}
.x2f{left:504.008400px;}
.xa{left:574.428600px;}
.x22{left:578.209950px;}
.xb{left:582.847350px;}
.x23{left:589.843200px;}
.x24{left:658.510500px;}
.xf{left:694.006050px;}
.x10{left:699.784350px;}
.x26{left:801.032250px;}
.x27{left:812.682450px;}
.x31{left:855.419550px;}
.x13{left:857.073450px;}
@media print{
.v1{vertical-align:-49.224533pt;}
.v0{vertical-align:0.000000pt;}
.ls3c{letter-spacing:-0.771100pt;}
.ls3b{letter-spacing:-0.756732pt;}
.lsb{letter-spacing:-0.742363pt;}
.ls33{letter-spacing:-0.727995pt;}
.ls2d{letter-spacing:-0.708837pt;}
.ls12{letter-spacing:-0.694469pt;}
.ls2b{letter-spacing:-0.665732pt;}
.ls1{letter-spacing:-0.665195pt;}
.ls38{letter-spacing:-0.636996pt;}
.ls18{letter-spacing:-0.622627pt;}
.ls1b{letter-spacing:-0.603469pt;}
.ls3e{letter-spacing:-0.582715pt;}
.ls15{letter-spacing:-0.560364pt;}
.ls29{letter-spacing:-0.545996pt;}
.ls14{letter-spacing:-0.531628pt;}
.ls39{letter-spacing:-0.512470pt;}
.ls2f{letter-spacing:-0.498102pt;}
.ls22{letter-spacing:-0.483733pt;}
.ls11{letter-spacing:-0.469365pt;}
.ls31{letter-spacing:-0.454997pt;}
.ls2a{letter-spacing:-0.440628pt;}
.ls34{letter-spacing:-0.426260pt;}
.ls3f{letter-spacing:-0.411094pt;}
.lsd{letter-spacing:-0.407102pt;}
.ls32{letter-spacing:-0.392734pt;}
.ls30{letter-spacing:-0.392202pt;}
.ls10{letter-spacing:-0.378366pt;}
.ls1a{letter-spacing:-0.363997pt;}
.ls27{letter-spacing:-0.349629pt;}
.ls9{letter-spacing:-0.335261pt;}
.lsf{letter-spacing:-0.316103pt;}
.ls37{letter-spacing:-0.287366pt;}
.ls3d{letter-spacing:-0.283375pt;}
.lsc{letter-spacing:-0.272998pt;}
.ls28{letter-spacing:-0.258630pt;}
.ls24{letter-spacing:-0.244261pt;}
.ls17{letter-spacing:-0.225104pt;}
.ls23{letter-spacing:-0.212863pt;}
.lse{letter-spacing:-0.181999pt;}
.ls2{letter-spacing:-0.179869pt;}
.ls20{letter-spacing:-0.167630pt;}
.ls4{letter-spacing:-0.152197pt;}
.ls13{letter-spacing:-0.138894pt;}
.ls1e{letter-spacing:-0.126653pt;}
.lsa{letter-spacing:-0.119736pt;}
.ls3{letter-spacing:-0.110689pt;}
.ls25{letter-spacing:-0.105368pt;}
.ls26{letter-spacing:-0.089402pt;}
.ls21{letter-spacing:-0.076631pt;}
.ls1f{letter-spacing:-0.074502pt;}
.ls16{letter-spacing:-0.062263pt;}
.ls1d{letter-spacing:-0.059601pt;}
.ls19{letter-spacing:-0.047894pt;}
.ls3a{letter-spacing:-0.044701pt;}
.ls8{letter-spacing:-0.035921pt;}
.ls1c{letter-spacing:-0.029801pt;}
.ls35{letter-spacing:-0.028737pt;}
.ls6{letter-spacing:-0.023947pt;}
.ls36{letter-spacing:-0.023415pt;}
.ls7{letter-spacing:-0.019956pt;}
.ls2e{letter-spacing:-0.014368pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.081952pt;}
.ls0{letter-spacing:16.298464pt;}
.wsc{word-spacing:-16.346359pt;}
.ws72{word-spacing:-0.039912pt;}
.ws74{word-spacing:-0.034590pt;}
.ws3c{word-spacing:0.000000pt;}
.ws4{word-spacing:0.013836pt;}
.ws6e{word-spacing:7.707007pt;}
.ws73{word-spacing:7.710998pt;}
.ws6f{word-spacing:8.054242pt;}
.ws71{word-spacing:8.872438pt;}
.ws6{word-spacing:8.988182pt;}
.ws7{word-spacing:8.992174pt;}
.ws9{word-spacing:9.012130pt;}
.wsf{word-spacing:9.262777pt;}
.wsa{word-spacing:9.267566pt;}
.ws1a{word-spacing:9.272356pt;}
.ws34{word-spacing:9.353776pt;}
.ws1b{word-spacing:9.368145pt;}
.ws3a{word-spacing:9.379320pt;}
.ws48{word-spacing:9.387302pt;}
.ws41{word-spacing:9.535775pt;}
.ws5{word-spacing:9.693560pt;}
.ws57{word-spacing:9.746510pt;}
.ws5a{word-spacing:9.794405pt;}
.ws24{word-spacing:9.823141pt;}
.ws76{word-spacing:9.885404pt;}
.ws62{word-spacing:9.914141pt;}
.ws7d{word-spacing:9.938088pt;}
.ws3e{word-spacing:10.081771pt;}
.ws1d{word-spacing:10.110508pt;}
.ws7b{word-spacing:10.172771pt;}
.ws4b{word-spacing:10.354769pt;}
.ws39{word-spacing:10.397874pt;}
.ws17{word-spacing:10.412243pt;}
.ws19{word-spacing:10.699609pt;}
.ws75{word-spacing:10.761872pt;}
.ws2a{word-spacing:10.790608pt;}
.ws27{word-spacing:10.819345pt;}
.ws28{word-spacing:10.824134pt;}
.ws7e{word-spacing:10.832117pt;}
.ws43{word-spacing:10.910344pt;}
.ws35{word-spacing:10.986975pt;}
.ws6a{word-spacing:11.001344pt;}
.ws8{word-spacing:11.051633pt;}
.ws7f{word-spacing:11.055624pt;}
.ws33{word-spacing:11.063606pt;}
.ws67{word-spacing:11.092343pt;}
.ws21{word-spacing:11.125869pt;}
.ws25{word-spacing:11.231237pt;}
.ws13{word-spacing:11.259973pt;}
.ws59{word-spacing:11.365341pt;}
.ws52{word-spacing:11.379709pt;}
.ws1c{word-spacing:11.394078pt;}
.ws22{word-spacing:11.609603pt;}
.ws55{word-spacing:11.652708pt;}
.ws6d{word-spacing:11.758075pt;}
.ws2b{word-spacing:11.877811pt;}
.ws69{word-spacing:12.045442pt;}
.wse{word-spacing:12.184335pt;}
.ws12{word-spacing:12.486070pt;}
.ws29{word-spacing:12.557912pt;}
.ws70{word-spacing:12.592236pt;}
.ws63{word-spacing:12.648911pt;}
.ws32{word-spacing:13.012908pt;}
.ws11{word-spacing:13.041645pt;}
.ws14{word-spacing:13.060803pt;}
.ws6b{word-spacing:13.089540pt;}
.ws65{word-spacing:13.329012pt;}
.ws5b{word-spacing:13.558905pt;}
.ws5f{word-spacing:13.678641pt;}
.ws78{word-spacing:13.846271pt;}
.ws31{word-spacing:14.148006pt;}
.ws5c{word-spacing:14.162374pt;}
.ws77{word-spacing:14.210268pt;}
.ws7a{word-spacing:14.239005pt;}
.ws10{word-spacing:14.373109pt;}
.ws36{word-spacing:14.555108pt;}
.ws66{word-spacing:14.674844pt;}
.ws6c{word-spacing:14.842475pt;}
.ws5e{word-spacing:15.340576pt;}
.ws18{word-spacing:15.445944pt;}
.ws79{word-spacing:15.704574pt;}
.ws4d{word-spacing:15.786946pt;}
.ws5d{word-spacing:16.010451pt;}
.ws54{word-spacing:16.020677pt;}
.ws37{word-spacing:16.099853pt;}
.ws44{word-spacing:16.129654pt;}
.ws2e{word-spacing:16.204156pt;}
.wsb{word-spacing:16.250570pt;}
.wsd{word-spacing:16.432569pt;}
.ws1e{word-spacing:16.490042pt;}
.ws49{word-spacing:16.537936pt;}
.ws30{word-spacing:16.688418pt;}
.ws2c{word-spacing:16.748020pt;}
.ws68{word-spacing:16.777820pt;}
.ws2d{word-spacing:16.807621pt;}
.ws2f{word-spacing:16.837422pt;}
.ws3f{word-spacing:17.036038pt;}
.ws45{word-spacing:17.112669pt;}
.ws50{word-spacing:17.203668pt;}
.ws58{word-spacing:18.410607pt;}
.ws4e{word-spacing:18.578238pt;}
.ws26{word-spacing:18.669237pt;}
.ws61{word-spacing:19.363706pt;}
.ws4a{word-spacing:19.574441pt;}
.ws38{word-spacing:19.742072pt;}
.ws46{word-spacing:20.058175pt;}
.ws60{word-spacing:20.072543pt;}
.ws42{word-spacing:20.618539pt;}
.ws4c{word-spacing:20.632908pt;}
.ws3d{word-spacing:20.709539pt;}
.ws53{word-spacing:21.360902pt;}
.ws23{word-spacing:21.389639pt;}
.ws51{word-spacing:21.557269pt;}
.ws56{word-spacing:21.844636pt;}
.ws40{word-spacing:22.007477pt;}
.ws20{word-spacing:22.237370pt;}
.ws7c{word-spacing:22.357106pt;}
.ws4f{word-spacing:22.400211pt;}
.ws47{word-spacing:22.539105pt;}
.ws64{word-spacing:24.033410pt;}
.ws16{word-spacing:28.961744pt;}
.ws15{word-spacing:29.340109pt;}
.ws3{word-spacing:29.982843pt;}
.ws1f{word-spacing:30.293208pt;}
.ws2{word-spacing:31.228093pt;}
.ws1{word-spacing:31.366454pt;}
.ws0{word-spacing:52.296977pt;}
.ws3b{word-spacing:1245.332003pt;}
._11{margin-left:-2721.650359pt;}
._a{margin-left:-16.327201pt;}
._3{margin-left:-7.734384pt;}
._0{margin-left:-3.957127pt;}
._1{margin-left:-1.895547pt;}
._7{margin-left:-0.925958pt;}
._d{width:1.177129pt;}
._10{width:4.444866pt;}
._f{width:5.441070pt;}
._8{width:11.011447pt;}
._9{width:12.974593pt;}
._12{width:13.966007pt;}
._e{width:15.362285pt;}
._c{width:17.092863pt;}
._b{width:20.577416pt;}
._4{width:27.118769pt;}
._2{width:29.457071pt;}
._6{width:31.324945pt;}
._5{width:39.225362pt;}
.fsa{font-size:23.947200pt;}
.fs5{font-size:29.268800pt;}
.fs8{font-size:34.590400pt;}
.fsb{font-size:37.251200pt;}
.fs3{font-size:39.912000pt;}
.fs2{font-size:45.233600pt;}
.fs4{font-size:47.894400pt;}
.fs7{font-size:51.084267pt;}
.fs0{font-size:66.519467pt;}
.fs6{font-size:74.501867pt;}
.fs9{font-size:85.145067pt;}
.fs1{font-size:138.361067pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:56.692933pt;}
.y60{bottom:71.811067pt;}
.y5f{bottom:83.119333pt;}
.yef{bottom:83.120331pt;}
.y61{bottom:94.427733pt;}
.yf3{bottom:94.428066pt;}
.yee{bottom:94.428399pt;}
.yf2{bottom:105.736133pt;}
.yed{bottom:105.736466pt;}
.yec{bottom:117.044533pt;}
.yf1{bottom:117.044733pt;}
.y36{bottom:120.371064pt;}
.yf0{bottom:128.352800pt;}
.yeb{bottom:128.352999pt;}
.y5e{bottom:131.678284pt;}
.y35{bottom:134.400532pt;}
.ye9{bottom:139.661067pt;}
.yea{bottom:143.652267pt;}
.y5d{bottom:145.651475pt;}
.y34{bottom:148.429999pt;}
.ye8{bottom:150.969467pt;}
.y5c{bottom:159.624667pt;}
.ye7{bottom:162.277867pt;}
.y33{bottom:162.459466pt;}
.ye2{bottom:165.598144pt;}
.ye6{bottom:173.586133pt;}
.y32{bottom:176.488933pt;}
.ye1{bottom:179.567743pt;}
.y5b{bottom:183.416800pt;}
.ye5{bottom:184.894733pt;}
.y31{bottom:190.518400pt;}
.y2f{bottom:190.524882pt;}
.ye0{bottom:193.537342pt;}
.y30{bottom:195.507467pt;}
.ye4{bottom:196.202800pt;}
.y2e{bottom:206.443784pt;}
.ydf{bottom:207.506941pt;}
.ye3{bottom:207.511200pt;}
.y2d{bottom:220.473251pt;}
.y5a{bottom:220.943084pt;}
.yde{bottom:221.476540pt;}
.y2c{bottom:234.502718pt;}
.y59{bottom:234.916275pt;}
.ydd{bottom:235.446139pt;}
.ya4{bottom:244.762267pt;}
.ya2{bottom:244.762316pt;}
.y2b{bottom:248.535777pt;}
.y56{bottom:248.888085pt;}
.y58{bottom:248.889467pt;}
.ydc{bottom:249.415739pt;}
.ya3{bottom:249.751200pt;}
.y57{bottom:253.878400pt;}
.ya1{bottom:258.814533pt;}
.y9f{bottom:258.814682pt;}
.y2a{bottom:262.568836pt;}
.y55{bottom:262.861277pt;}
.ydb{bottom:263.385338pt;}
.ya0{bottom:263.803467pt;}
.y9e{bottom:272.866899pt;}
.y29{bottom:276.601895pt;}
.y54{bottom:276.834468pt;}
.yda{bottom:277.354937pt;}
.y9d{bottom:286.919116pt;}
.y28{bottom:290.634955pt;}
.y53{bottom:290.807659pt;}
.yd9{bottom:291.324536pt;}
.y9c{bottom:300.971333pt;}
.y9a{bottom:300.972013pt;}
.y27{bottom:304.668014pt;}
.y52{bottom:304.780850pt;}
.yd8{bottom:305.294135pt;}
.y9b{bottom:305.960267pt;}
.y99{bottom:315.024230pt;}
.y26{bottom:318.701073pt;}
.y51{bottom:318.757633pt;}
.yd7{bottom:319.263734pt;}
.y98{bottom:329.076447pt;}
.y25{bottom:332.734132pt;}
.y50{bottom:332.734417pt;}
.yd6{bottom:333.233333pt;}
.y97{bottom:343.128664pt;}
.y4f{bottom:346.711200pt;}
.y24{bottom:346.767191pt;}
.yd5{bottom:356.696800pt;}
.y96{bottom:357.180881pt;}
.y23{bottom:360.800251pt;}
.y4e{bottom:370.509833pt;}
.y95{bottom:371.233098pt;}
.y22{bottom:374.833310pt;}
.y94{bottom:385.285315pt;}
.y21{bottom:388.866369pt;}
.y4d{bottom:390.472608pt;}
.yd2{bottom:394.217072pt;}
.yd4{bottom:394.219867pt;}
.yd3{bottom:399.208800pt;}
.y93{bottom:399.337532pt;}
.y20{bottom:402.899428pt;}
.yd1{bottom:408.186671pt;}
.y4c{bottom:410.435383pt;}
.y92{bottom:413.389749pt;}
.y1f{bottom:416.932487pt;}
.yd0{bottom:422.156270pt;}
.y91{bottom:427.441966pt;}
.y4b{bottom:430.398158pt;}
.y1e{bottom:430.965547pt;}
.ycf{bottom:436.125869pt;}
.y90{bottom:441.494183pt;}
.y1d{bottom:444.998606pt;}
.yce{bottom:450.095468pt;}
.y4a{bottom:450.360933pt;}
.y8f{bottom:455.546400pt;}
.y1c{bottom:459.031665pt;}
.ycd{bottom:464.065068pt;}
.y1b{bottom:473.064724pt;}
.yca{bottom:478.030009pt;}
.ycc{bottom:478.034667pt;}
.y8e{bottom:479.418000pt;}
.ycb{bottom:483.023600pt;}
.y1a{bottom:487.097783pt;}
.y49{bottom:487.891267pt;}
.yc9{bottom:491.999608pt;}
.y19{bottom:501.130843pt;}
.y48{bottom:501.868050pt;}
.yc8{bottom:505.969207pt;}
.y47{bottom:515.844833pt;}
.y8d{bottom:517.024267pt;}
.y8b{bottom:517.024996pt;}
.y18{bottom:517.054533pt;}
.y16{bottom:517.058356pt;}
.yc7{bottom:519.938806pt;}
.y8c{bottom:522.013200pt;}
.y17{bottom:522.043467pt;}
.y46{bottom:529.821617pt;}
.y8a{bottom:531.077213pt;}
.y15{bottom:531.091415pt;}
.yc6{bottom:533.908405pt;}
.y43{bottom:543.798283pt;}
.y45{bottom:543.798400pt;}
.y14{bottom:545.124475pt;}
.y89{bottom:545.129430pt;}
.yc5{bottom:547.878004pt;}
.y44{bottom:548.787333pt;}
.y42{bottom:557.775067pt;}
.y40{bottom:557.777449pt;}
.y13{bottom:559.157534pt;}
.y88{bottom:559.181647pt;}
.yc4{bottom:561.847604pt;}
.y41{bottom:562.764133pt;}
.y3f{bottom:571.754232pt;}
.y12{bottom:573.190593pt;}
.y87{bottom:573.233864pt;}
.yc3{bottom:575.817203pt;}
.y11{bottom:587.223652pt;}
.y86{bottom:587.286081pt;}
.y3e{bottom:587.620449pt;}
.yc2{bottom:589.786802pt;}
.y10{bottom:601.256711pt;}
.y85{bottom:601.338298pt;}
.y3d{bottom:601.597233pt;}
.yc1{bottom:603.756401pt;}
.yf{bottom:615.289771pt;}
.y84{bottom:615.390515pt;}
.y3c{bottom:615.574016pt;}
.yc0{bottom:617.726000pt;}
.ye{bottom:629.322830pt;}
.y83{bottom:629.442732pt;}
.y3b{bottom:629.550799pt;}
.ybf{bottom:641.189333pt;}
.yd{bottom:643.355889pt;}
.y82{bottom:643.494949pt;}
.y3a{bottom:643.527582pt;}
.yc{bottom:657.388948pt;}
.y39{bottom:657.504366pt;}
.y81{bottom:657.547166pt;}
.yb{bottom:671.422007pt;}
.y38{bottom:671.481149pt;}
.y80{bottom:671.599383pt;}
.ybd{bottom:678.708275pt;}
.ybe{bottom:683.701467pt;}
.ya{bottom:685.455067pt;}
.y37{bottom:685.457932pt;}
.y7f{bottom:685.651600pt;}
.y7d{bottom:685.652032pt;}
.y7e{bottom:690.640667pt;}
.ybc{bottom:692.677874pt;}
.y7c{bottom:699.704249pt;}
.ybb{bottom:706.647473pt;}
.y7b{bottom:713.756465pt;}
.yba{bottom:720.617072pt;}
.y7a{bottom:727.808682pt;}
.y9{bottom:734.257131pt;}
.yb9{bottom:734.586671pt;}
.y79{bottom:741.860899pt;}
.y8{bottom:745.565199pt;}
.yb8{bottom:748.556270pt;}
.y78{bottom:755.913116pt;}
.y7{bottom:756.873266pt;}
.yb7{bottom:762.525869pt;}
.y6{bottom:768.181333pt;}
.y77{bottom:769.965333pt;}
.yb6{bottom:776.495468pt;}
.y5{bottom:783.601867pt;}
.yb5{bottom:790.465068pt;}
.y76{bottom:793.836800pt;}
.yb2{bottom:804.432278pt;}
.yb4{bottom:804.434667pt;}
.yb3{bottom:809.423600pt;}
.y4{bottom:811.868691pt;}
.yb1{bottom:818.401877pt;}
.y10c{bottom:818.774133pt;}
.y10b{bottom:830.082533pt;}
.y75{bottom:831.443067pt;}
.y73{bottom:831.443349pt;}
.yb0{bottom:832.371476pt;}
.y10a{bottom:833.008199pt;}
.y74{bottom:836.432133pt;}
.y109{bottom:844.316267pt;}
.y72{bottom:845.495566pt;}
.yaf{bottom:846.341075pt;}
.y3{bottom:847.790683pt;}
.y71{bottom:859.547783pt;}
.yae{bottom:860.310674pt;}
.yff{bottom:868.958800pt;}
.yfd{bottom:868.958933pt;}
.y108{bottom:868.961195pt;}
.y70{bottom:873.600000pt;}
.y6e{bottom:873.600714pt;}
.yfe{bottom:873.947733pt;}
.yad{bottom:874.280273pt;}
.y6f{bottom:878.588933pt;}
.yfc{bottom:883.593067pt;}
.yfa{bottom:883.594396pt;}
.y107{bottom:883.595329pt;}
.y2{bottom:883.712675pt;}
.y6d{bottom:887.652931pt;}
.yac{bottom:888.249873pt;}
.yfb{bottom:888.582000pt;}
.yf9{bottom:898.228530pt;}
.y106{bottom:898.229463pt;}
.y6c{bottom:901.705148pt;}
.yab{bottom:902.219472pt;}
.yf8{bottom:912.862664pt;}
.y105{bottom:912.863596pt;}
.y6b{bottom:915.757365pt;}
.yaa{bottom:916.189071pt;}
.yf7{bottom:927.496798pt;}
.y104{bottom:927.497730pt;}
.y6a{bottom:929.809582pt;}
.ya9{bottom:930.158670pt;}
.y1{bottom:931.940800pt;}
.yf6{bottom:942.130932pt;}
.y103{bottom:942.131864pt;}
.y69{bottom:943.865391pt;}
.ya8{bottom:944.128269pt;}
.yf5{bottom:956.765065pt;}
.y102{bottom:956.765998pt;}
.y68{bottom:957.921200pt;}
.y66{bottom:957.921715pt;}
.ya7{bottom:958.097868pt;}
.y67{bottom:962.910133pt;}
.yf4{bottom:971.399199pt;}
.y101{bottom:971.400132pt;}
.y65{bottom:971.977524pt;}
.ya6{bottom:972.067467pt;}
.y64{bottom:986.033333pt;}
.y100{bottom:986.034266pt;}
.ya5{bottom:986.037066pt;}
.y63{bottom:1073.385733pt;}
.hc{height:17.816717pt;}
.hd{height:24.027024pt;}
.h6{height:26.458995pt;}
.h9{height:29.694528pt;}
.h4{height:29.814264pt;}
.h8{height:36.080448pt;}
.ha{height:39.947897pt;}
.h3{height:41.479211pt;}
.h5{height:43.296538pt;}
.h7{height:58.260460pt;}
.hb{height:61.815318pt;}
.h1{height:77.652565pt;}
.h2{height:126.877098pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2a{left:26.456667pt;}
.x14{left:56.692933pt;}
.x1{left:68.031467pt;}
.x3{left:75.590533pt;}
.x11{left:83.905600pt;}
.x2{left:98.267733pt;}
.x2d{left:103.882267pt;}
.x2e{left:114.238000pt;}
.x4{left:134.835867pt;}
.x5{left:140.013867pt;}
.x2b{left:149.376667pt;}
.x20{left:158.614000pt;}
.x2c{left:163.296533pt;}
.x21{left:168.969733pt;}
.x28{left:174.555867pt;}
.x6{left:176.460000pt;}
.x29{left:183.311600pt;}
.x7{left:184.551867pt;}
.x15{left:187.108267pt;}
.x16{left:192.225733pt;}
.x1c{left:202.412000pt;}
.x1d{left:249.067733pt;}
.x1b{left:257.922267pt;}
.x1e{left:259.423467pt;}
.x17{left:262.176267pt;}
.x18{left:267.327733pt;}
.x1f{left:370.375333pt;}
.x19{left:375.528267pt;}
.x1a{left:380.622933pt;}
.x8{left:410.079412pt;}
.x9{left:417.638346pt;}
.x12{left:425.952667pt;}
.x25{left:427.299067pt;}
.xe{left:428.231180pt;}
.xc{left:431.956667pt;}
.xd{left:437.134533pt;}
.x30{left:440.314933pt;}
.x2f{left:448.007467pt;}
.xa{left:510.603200pt;}
.x22{left:513.964400pt;}
.xb{left:518.086533pt;}
.x23{left:524.305067pt;}
.x24{left:585.342667pt;}
.xf{left:616.894267pt;}
.x10{left:622.030533pt;}
.x26{left:712.028667pt;}
.x27{left:722.384400pt;}
.x31{left:760.372933pt;}
.x13{left:761.843067pt;}
}




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