
    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_edfec128f73ba5bfb4d30ce9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_4af7717662346470ffddeec5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_5a05576b5be86f6bf9021ce5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_d9b815db55c63fd58443230e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_4900a4a9cc8791184bdc4d5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.828000;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_e1bc5bedba2352be6c328145.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_f1c3c42247a9c2aa63d33770.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_4e8eb7da0a18a4b1104074fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_6292f9df96ad38e167fa2901.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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_89c1088c9e6832904c72427b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_3c3b1f7f47cdc8af6903c30d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6fac8089cd80321030c77a82.woff')format("woff");}.ffc{font-family:ffc;line-height:0.822000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-23.760000px;}
.v1{vertical-align:-14.400000px;}
.v5{vertical-align:-9.719400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v3{vertical-align:23.760000px;}
.lsc{letter-spacing:-7.200000px;}
.ls2a{letter-spacing:-6.696000px;}
.ls42{letter-spacing:-6.552000px;}
.ls26{letter-spacing:-6.336000px;}
.ls34{letter-spacing:-2.808000px;}
.ls47{letter-spacing:-1.872000px;}
.ls40{letter-spacing:-1.584000px;}
.ls41{letter-spacing:-1.224000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.648000px;}
.ls3a{letter-spacing:-0.576000px;}
.ls39{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls46{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.006600px;}
.ls25{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.357000px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.936000px;}
.lsb{letter-spacing:1.008000px;}
.ls32{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.152000px;}
.ls33{letter-spacing:1.224000px;}
.ls38{letter-spacing:1.296000px;}
.ls3f{letter-spacing:1.656000px;}
.ls43{letter-spacing:4.752000px;}
.ls1a{letter-spacing:6.048000px;}
.ls2{letter-spacing:7.380000px;}
.ls0{letter-spacing:8.436000px;}
.ls3{letter-spacing:8.460000px;}
.ls3d{letter-spacing:9.504000px;}
.ls1{letter-spacing:10.740000px;}
.ls24{letter-spacing:11.376000px;}
.ls3e{letter-spacing:11.520000px;}
.ls1b{letter-spacing:11.592000px;}
.ls36{letter-spacing:11.664000px;}
.ls2c{letter-spacing:11.808000px;}
.ls19{letter-spacing:11.952000px;}
.ls31{letter-spacing:12.024000px;}
.ls1c{letter-spacing:12.096000px;}
.ls3c{letter-spacing:12.168000px;}
.ls2b{letter-spacing:12.240000px;}
.lse{letter-spacing:12.312000px;}
.ls29{letter-spacing:12.384000px;}
.ls8{letter-spacing:12.456000px;}
.ls22{letter-spacing:12.528000px;}
.ls27{letter-spacing:12.600000px;}
.ls23{letter-spacing:12.672000px;}
.ls35{letter-spacing:13.104000px;}
.ls45{letter-spacing:76.512000px;}
.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;}
}
.ws7f{word-spacing:-76.512000px;}
.ws5a{word-spacing:-30.888000px;}
.ws38{word-spacing:-30.456000px;}
.ws3{word-spacing:-30.240000px;}
.ws2e{word-spacing:-29.880000px;}
.ws5f{word-spacing:-29.808000px;}
.ws44{word-spacing:-29.736000px;}
.ws5b{word-spacing:-29.448000px;}
.ws57{word-spacing:-29.376000px;}
.ws78{word-spacing:-25.320000px;}
.ws1{word-spacing:-22.200000px;}
.ws17{word-spacing:-20.520000px;}
.ws58{word-spacing:-20.232000px;}
.ws39{word-spacing:-18.576000px;}
.ws1b{word-spacing:-18.504000px;}
.ws1f{word-spacing:-18.432000px;}
.ws4a{word-spacing:-18.360000px;}
.ws4{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.216000px;}
.ws49{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws37{word-spacing:-18.000000px;}
.ws53{word-spacing:-17.928000px;}
.ws3a{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws1e{word-spacing:-17.712000px;}
.ws1c{word-spacing:-17.640000px;}
.ws19{word-spacing:-17.568000px;}
.ws1a{word-spacing:-17.496000px;}
.ws2d{word-spacing:-17.424000px;}
.ws60{word-spacing:-17.352000px;}
.ws6c{word-spacing:-17.280000px;}
.ws59{word-spacing:-17.136000px;}
.ws48{word-spacing:-16.704000px;}
.ws16{word-spacing:-14.162400px;}
.ws7a{word-spacing:-13.488000px;}
.ws3c{word-spacing:-12.600000px;}
.ws34{word-spacing:-12.528000px;}
.ws4b{word-spacing:-12.456000px;}
.ws5c{word-spacing:-12.448800px;}
.ws41{word-spacing:-12.384000px;}
.ws11{word-spacing:-12.312000px;}
.ws45{word-spacing:-12.240000px;}
.ws67{word-spacing:-12.168000px;}
.ws4d{word-spacing:-12.024000px;}
.ws27{word-spacing:-11.952000px;}
.ws7c{word-spacing:-11.856000px;}
.ws47{word-spacing:-11.808000px;}
.ws31{word-spacing:-11.592000px;}
.ws6f{word-spacing:-11.520000px;}
.ws3e{word-spacing:-11.376000px;}
.ws7b{word-spacing:-9.441600px;}
.ws15{word-spacing:-8.496000px;}
.ws2c{word-spacing:-6.048000px;}
.ws79{word-spacing:-4.800000px;}
.ws6b{word-spacing:-3.528000px;}
.ws73{word-spacing:-1.656000px;}
.ws5e{word-spacing:-1.296000px;}
.ws52{word-spacing:-1.224000px;}
.ws4c{word-spacing:-1.152000px;}
.ws50{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.008000px;}
.ws4e{word-spacing:-0.936000px;}
.ws29{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.648000px;}
.wsd{word-spacing:-0.576000px;}
.wse{word-spacing:-0.504000px;}
.ws20{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.288000px;}
.ws22{word-spacing:-0.216000px;}
.ws36{word-spacing:-0.144000px;}
.ws43{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.072000px;}
.ws25{word-spacing:0.144000px;}
.ws24{word-spacing:0.216000px;}
.ws80{word-spacing:0.240000px;}
.ws23{word-spacing:0.288000px;}
.ws2f{word-spacing:0.360000px;}
.ws30{word-spacing:0.432000px;}
.ws7e{word-spacing:0.480000px;}
.ws63{word-spacing:0.504000px;}
.ws65{word-spacing:0.576000px;}
.ws3d{word-spacing:0.648000px;}
.ws5d{word-spacing:0.720000px;}
.ws33{word-spacing:0.792000px;}
.ws32{word-spacing:0.864000px;}
.ws75{word-spacing:1.224000px;}
.ws56{word-spacing:1.368000px;}
.ws74{word-spacing:1.584000px;}
.ws8{word-spacing:1.800000px;}
.ws82{word-spacing:1.872000px;}
.ws62{word-spacing:2.016000px;}
.ws66{word-spacing:2.304000px;}
.ws72{word-spacing:2.520000px;}
.ws46{word-spacing:2.664000px;}
.ws55{word-spacing:2.808000px;}
.ws6e{word-spacing:2.952000px;}
.ws7d{word-spacing:2.976000px;}
.ws28{word-spacing:3.312000px;}
.ws81{word-spacing:3.360000px;}
.ws51{word-spacing:3.384000px;}
.ws6d{word-spacing:3.600000px;}
.ws6{word-spacing:3.720000px;}
.ws71{word-spacing:3.744000px;}
.ws4f{word-spacing:3.888000px;}
.wsc{word-spacing:4.176000px;}
.ws9{word-spacing:4.200000px;}
.ws76{word-spacing:4.320000px;}
.ws3f{word-spacing:5.040000px;}
.ws64{word-spacing:5.472000px;}
.ws2b{word-spacing:6.048000px;}
.ws68{word-spacing:6.264000px;}
.ws3b{word-spacing:6.336000px;}
.ws61{word-spacing:6.408000px;}
.ws77{word-spacing:6.552000px;}
.ws42{word-spacing:6.696000px;}
.ws69{word-spacing:6.840000px;}
.wsb{word-spacing:7.200000px;}
.ws7{word-spacing:8.400000px;}
.ws35{word-spacing:9.432000px;}
.ws54{word-spacing:9.720000px;}
.ws6a{word-spacing:9.864000px;}
.ws40{word-spacing:10.080000px;}
.wsf{word-spacing:10.152000px;}
.ws70{word-spacing:10.368000px;}
.ws2a{word-spacing:10.944000px;}
.ws0{word-spacing:146.196000px;}
._f{margin-left:-948.820800px;}
._36{margin-left:-78.529200px;}
._34{margin-left:-76.512000px;}
._15{margin-left:-20.250000px;}
._14{margin-left:-17.494800px;}
._c{margin-left:-15.028800px;}
._11{margin-left:-13.885200px;}
._3{margin-left:-11.928000px;}
._13{margin-left:-10.785600px;}
._e{margin-left:-8.500800px;}
._17{margin-left:-7.450800px;}
._2{margin-left:-6.426000px;}
._12{margin-left:-5.274000px;}
._d{margin-left:-4.060800px;}
._a{margin-left:-2.934000px;}
._0{margin-left:-1.782000px;}
._7{width:1.036800px;}
._4{width:2.586000px;}
._1{width:4.302000px;}
._6{width:6.278400px;}
._5{width:7.416000px;}
._8{width:8.510400px;}
._b{width:9.711600px;}
._9{width:11.404800px;}
._10{width:12.832800px;}
._16{width:14.679600px;}
._18{width:16.819200px;}
._26{width:18.452400px;}
._33{width:19.892400px;}
._19{width:21.428400px;}
._21{width:23.712000px;}
._2e{width:25.176000px;}
._23{width:27.283200px;}
._24{width:29.196000px;}
._37{width:30.834000px;}
._28{width:32.808000px;}
._20{width:36.668400px;}
._30{width:38.280000px;}
._27{width:40.508400px;}
._1c{width:42.486000px;}
._2a{width:43.992000px;}
._35{width:46.022400px;}
._25{width:48.932400px;}
._31{width:50.438400px;}
._38{width:52.052400px;}
._32{width:55.700400px;}
._1e{width:57.236400px;}
._2b{width:58.872000px;}
._29{width:59.880000px;}
._1d{width:61.986600px;}
._22{width:64.166400px;}
._2d{width:68.178000px;}
._2c{width:69.186000px;}
._2f{width:71.712000px;}
._1a{width:74.385600px;}
._1b{width:76.512000px;}
._1f{width:78.793200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.600000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y44{bottom:117.000000px;}
.y89{bottom:117.078000px;}
.y69{bottom:117.096000px;}
.yac{bottom:117.108000px;}
.y20{bottom:117.296400px;}
.ye2{bottom:117.594000px;}
.y119{bottom:120.537000px;}
.ye1{bottom:132.750000px;}
.y118{bottom:135.609000px;}
.y88{bottom:138.984000px;}
.y68{bottom:139.002000px;}
.yab{bottom:139.014000px;}
.y1f{bottom:139.346400px;}
.y43{bottom:139.500000px;}
.ye0{bottom:147.894000px;}
.y117{bottom:150.681000px;}
.y87{bottom:160.890000px;}
.y67{bottom:160.908000px;}
.yaa{bottom:160.920000px;}
.y1e{bottom:161.396400px;}
.y42{bottom:162.000000px;}
.ydf{bottom:163.038000px;}
.y116{bottom:165.753000px;}
.yde{bottom:178.182000px;}
.y115{bottom:180.825000px;}
.y86{bottom:182.796000px;}
.y66{bottom:182.814000px;}
.ya9{bottom:182.826000px;}
.y1d{bottom:183.446400px;}
.y41{bottom:184.500000px;}
.ydd{bottom:193.326000px;}
.y114{bottom:195.897000px;}
.y85{bottom:204.702000px;}
.y65{bottom:204.720000px;}
.ya8{bottom:204.732000px;}
.y1c{bottom:205.496400px;}
.y40{bottom:207.000000px;}
.ydc{bottom:208.470000px;}
.y113{bottom:210.969000px;}
.ydb{bottom:223.614000px;}
.y112{bottom:226.041000px;}
.y84{bottom:226.608000px;}
.y64{bottom:226.626000px;}
.ya7{bottom:226.638000px;}
.y1b{bottom:227.546400px;}
.y3f{bottom:229.500000px;}
.yda{bottom:238.758000px;}
.y111{bottom:241.113000px;}
.y83{bottom:248.514000px;}
.y63{bottom:248.532000px;}
.ya6{bottom:248.544000px;}
.y1a{bottom:249.596400px;}
.y3e{bottom:252.000000px;}
.yd9{bottom:253.902000px;}
.y110{bottom:256.185000px;}
.yd8{bottom:269.046000px;}
.y82{bottom:270.420000px;}
.y62{bottom:270.438000px;}
.ya5{bottom:270.450000px;}
.y10f{bottom:271.257000px;}
.y19{bottom:271.646400px;}
.y3d{bottom:274.500000px;}
.yd7{bottom:284.190000px;}
.y10e{bottom:286.329000px;}
.y81{bottom:292.326000px;}
.y61{bottom:292.344000px;}
.ya4{bottom:292.356000px;}
.y18{bottom:293.696400px;}
.y3c{bottom:297.000000px;}
.yd6{bottom:299.334000px;}
.y10d{bottom:301.401000px;}
.y80{bottom:314.232000px;}
.y60{bottom:314.250000px;}
.ya3{bottom:314.262000px;}
.yd5{bottom:314.478000px;}
.y17{bottom:315.746400px;}
.y10c{bottom:316.473000px;}
.y3b{bottom:319.500000px;}
.yd4{bottom:329.628000px;}
.y10b{bottom:331.545000px;}
.y7f{bottom:336.138000px;}
.y5f{bottom:336.156000px;}
.ya2{bottom:336.168000px;}
.y16{bottom:337.796400px;}
.y3a{bottom:342.000000px;}
.yd3{bottom:344.826000px;}
.y10a{bottom:346.617000px;}
.y7e{bottom:358.044000px;}
.y5e{bottom:358.062000px;}
.ya1{bottom:358.074000px;}
.y15{bottom:359.846400px;}
.yd2{bottom:359.970000px;}
.y109{bottom:361.689000px;}
.y39{bottom:364.500000px;}
.yd1{bottom:375.114000px;}
.y108{bottom:376.761000px;}
.y7d{bottom:379.950000px;}
.y5d{bottom:379.968000px;}
.ya0{bottom:379.980000px;}
.y14{bottom:381.896400px;}
.y38{bottom:387.000000px;}
.yd0{bottom:390.258000px;}
.y107{bottom:391.833000px;}
.y7c{bottom:401.856000px;}
.y5c{bottom:401.874000px;}
.y9f{bottom:401.886000px;}
.y13{bottom:403.946400px;}
.ycf{bottom:405.402000px;}
.y106{bottom:406.905000px;}
.y37{bottom:409.500000px;}
.yce{bottom:420.546000px;}
.y105{bottom:421.977000px;}
.y7b{bottom:423.762000px;}
.y5b{bottom:423.780000px;}
.y9e{bottom:423.792000px;}
.y36{bottom:432.000000px;}
.ycd{bottom:435.690000px;}
.y104{bottom:437.049000px;}
.y7a{bottom:445.668000px;}
.y5a{bottom:445.686000px;}
.y9d{bottom:445.698000px;}
.y12{bottom:447.002400px;}
.ycc{bottom:450.834000px;}
.y103{bottom:452.121000px;}
.y35{bottom:454.500000px;}
.ycb{bottom:465.978000px;}
.y102{bottom:467.193000px;}
.y79{bottom:467.574000px;}
.y59{bottom:467.592000px;}
.y9c{bottom:467.604000px;}
.y11{bottom:469.052400px;}
.y12e{bottom:470.622000px;}
.y34{bottom:477.000000px;}
.yca{bottom:481.242000px;}
.y101{bottom:482.265000px;}
.y12d{bottom:489.372000px;}
.y78{bottom:489.480000px;}
.y58{bottom:489.498000px;}
.y9b{bottom:489.510000px;}
.y10{bottom:491.102400px;}
.yc9{bottom:496.386000px;}
.y100{bottom:497.337000px;}
.y33{bottom:499.500000px;}
.y12c{bottom:508.122000px;}
.y77{bottom:511.386000px;}
.y57{bottom:511.404000px;}
.y9a{bottom:511.416000px;}
.yc8{bottom:511.530000px;}
.yff{bottom:512.409000px;}
.yf{bottom:513.152400px;}
.y32{bottom:522.000000px;}
.yc7{bottom:526.674000px;}
.yfe{bottom:527.481000px;}
.y76{bottom:533.292000px;}
.y56{bottom:533.310000px;}
.y99{bottom:533.322000px;}
.ye{bottom:535.202400px;}
.yc6{bottom:541.818000px;}
.yfd{bottom:542.553000px;}
.y31{bottom:544.500000px;}
.y12b{bottom:545.622000px;}
.y75{bottom:555.198000px;}
.y55{bottom:555.216000px;}
.y98{bottom:555.228000px;}
.yc5{bottom:556.962000px;}
.yd{bottom:557.252400px;}
.yfc{bottom:557.625000px;}
.y30{bottom:567.000000px;}
.yc4{bottom:572.106000px;}
.yfb{bottom:572.697000px;}
.y74{bottom:577.104000px;}
.y54{bottom:577.122000px;}
.y97{bottom:577.134000px;}
.yc{bottom:579.302400px;}
.y12a{bottom:583.128000px;}
.yc3{bottom:587.250000px;}
.yfa{bottom:587.769000px;}
.y2f{bottom:589.500000px;}
.y129{bottom:598.128000px;}
.y73{bottom:599.010000px;}
.y53{bottom:599.028000px;}
.y96{bottom:599.040000px;}
.yb{bottom:601.352400px;}
.yc2{bottom:602.394000px;}
.yf9{bottom:602.841000px;}
.y2e{bottom:612.000000px;}
.y128{bottom:613.128000px;}
.yc1{bottom:617.538000px;}
.yf8{bottom:617.913000px;}
.y72{bottom:620.916000px;}
.y52{bottom:620.934000px;}
.y95{bottom:620.946000px;}
.ya{bottom:623.402400px;}
.y127{bottom:628.128000px;}
.yc0{bottom:632.682000px;}
.yf7{bottom:632.985000px;}
.y2d{bottom:634.500000px;}
.y71{bottom:642.822000px;}
.y51{bottom:642.840000px;}
.y94{bottom:642.852000px;}
.y126{bottom:643.128000px;}
.y9{bottom:645.452400px;}
.ybf{bottom:647.826000px;}
.yf6{bottom:648.057000px;}
.y2c{bottom:657.000000px;}
.y125{bottom:658.128000px;}
.ybe{bottom:662.970000px;}
.yf5{bottom:663.129000px;}
.y70{bottom:664.728000px;}
.y50{bottom:664.746000px;}
.y93{bottom:664.758000px;}
.y8{bottom:667.502400px;}
.y124{bottom:673.128000px;}
.ybd{bottom:678.114000px;}
.yf4{bottom:678.201000px;}
.y2b{bottom:679.500000px;}
.y6f{bottom:686.634000px;}
.y4f{bottom:686.652000px;}
.y92{bottom:686.664000px;}
.y123{bottom:688.128000px;}
.y7{bottom:689.552400px;}
.ybc{bottom:693.258000px;}
.yf3{bottom:693.273000px;}
.y2a{bottom:702.000000px;}
.y122{bottom:703.128000px;}
.yf2{bottom:708.345000px;}
.ybb{bottom:708.402000px;}
.y6e{bottom:708.540000px;}
.y4e{bottom:708.558000px;}
.y91{bottom:708.570000px;}
.y121{bottom:718.128000px;}
.yf1{bottom:723.417000px;}
.yba{bottom:723.546000px;}
.y29{bottom:724.500000px;}
.y6d{bottom:730.446000px;}
.y4d{bottom:730.464000px;}
.y90{bottom:730.476000px;}
.y120{bottom:733.128000px;}
.y6{bottom:734.102400px;}
.yf0{bottom:738.489000px;}
.yb9{bottom:738.690000px;}
.y28{bottom:747.000000px;}
.y11f{bottom:748.128000px;}
.y6c{bottom:752.352000px;}
.y4c{bottom:752.370000px;}
.y8f{bottom:752.382000px;}
.yef{bottom:753.561000px;}
.yb8{bottom:753.834000px;}
.y5{bottom:756.354300px;}
.yee{bottom:768.633000px;}
.yb7{bottom:768.978000px;}
.y27{bottom:769.500000px;}
.y6b{bottom:774.258000px;}
.y4b{bottom:774.276000px;}
.y8e{bottom:774.288000px;}
.y4{bottom:774.354300px;}
.yed{bottom:783.705000px;}
.yb6{bottom:784.128000px;}
.y26{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y6a{bottom:796.164000px;}
.y8d{bottom:796.194000px;}
.yec{bottom:798.777000px;}
.yb5{bottom:799.284000px;}
.yeb{bottom:813.849000px;}
.yb4{bottom:814.428000px;}
.y25{bottom:814.500000px;}
.y4a{bottom:818.070000px;}
.y8c{bottom:818.100000px;}
.yea{bottom:828.921000px;}
.yb3{bottom:829.602000px;}
.y24{bottom:837.000000px;}
.y49{bottom:839.976000px;}
.y8b{bottom:840.000000px;}
.ye9{bottom:843.993000px;}
.y11e{bottom:844.500000px;}
.yb2{bottom:844.746000px;}
.ye8{bottom:859.065000px;}
.y2{bottom:859.500000px;}
.yb1{bottom:859.890000px;}
.y48{bottom:861.882000px;}
.ye7{bottom:874.137000px;}
.y11d{bottom:874.500000px;}
.yb0{bottom:875.034000px;}
.y23{bottom:882.000000px;}
.y47{bottom:883.788000px;}
.y8a{bottom:887.940000px;}
.ye6{bottom:889.209000px;}
.y11c{bottom:889.500000px;}
.yaf{bottom:890.178000px;}
.ye5{bottom:904.281000px;}
.y22{bottom:904.500000px;}
.yae{bottom:905.322000px;}
.y46{bottom:905.694000px;}
.ye4{bottom:919.353000px;}
.y11b{bottom:919.500000px;}
.yad{bottom:926.850000px;}
.y21{bottom:927.000000px;}
.y45{bottom:927.600000px;}
.ye3{bottom:934.425000px;}
.y11a{bottom:934.500000px;}
.hb{height:31.992188px;}
.h8{height:37.376719px;}
.h9{height:39.072000px;}
.h5{height:39.990234px;}
.ha{height:40.757812px;}
.h4{height:45.852539px;}
.h3{height:49.200000px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.h7{height:66.555703px;}
.h2{height:79.980469px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381800px;}
.x6{left:112.491450px;}
.x5{left:127.381950px;}
.x9{left:135.531450px;}
.x7{left:190.800000px;}
.x8{left:235.788000px;}
.x2{left:420.419850px;}
.x4{left:625.781250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v1{vertical-align:-12.800000pt;}
.v5{vertical-align:-8.639467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v3{vertical-align:21.120000pt;}
.lsc{letter-spacing:-6.400000pt;}
.ls2a{letter-spacing:-5.952000pt;}
.ls42{letter-spacing:-5.824000pt;}
.ls26{letter-spacing:-5.632000pt;}
.ls34{letter-spacing:-2.496000pt;}
.ls47{letter-spacing:-1.664000pt;}
.ls40{letter-spacing:-1.408000pt;}
.ls41{letter-spacing:-1.088000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls3a{letter-spacing:-0.512000pt;}
.ls39{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls46{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.005867pt;}
.ls25{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.317333pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.832000pt;}
.lsb{letter-spacing:0.896000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls33{letter-spacing:1.088000pt;}
.ls38{letter-spacing:1.152000pt;}
.ls3f{letter-spacing:1.472000pt;}
.ls43{letter-spacing:4.224000pt;}
.ls1a{letter-spacing:5.376000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls3d{letter-spacing:8.448000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls24{letter-spacing:10.112000pt;}
.ls3e{letter-spacing:10.240000pt;}
.ls1b{letter-spacing:10.304000pt;}
.ls36{letter-spacing:10.368000pt;}
.ls2c{letter-spacing:10.496000pt;}
.ls19{letter-spacing:10.624000pt;}
.ls31{letter-spacing:10.688000pt;}
.ls1c{letter-spacing:10.752000pt;}
.ls3c{letter-spacing:10.816000pt;}
.ls2b{letter-spacing:10.880000pt;}
.lse{letter-spacing:10.944000pt;}
.ls29{letter-spacing:11.008000pt;}
.ls8{letter-spacing:11.072000pt;}
.ls22{letter-spacing:11.136000pt;}
.ls27{letter-spacing:11.200000pt;}
.ls23{letter-spacing:11.264000pt;}
.ls35{letter-spacing:11.648000pt;}
.ls45{letter-spacing:68.010667pt;}
.ws7f{word-spacing:-68.010667pt;}
.ws5a{word-spacing:-27.456000pt;}
.ws38{word-spacing:-27.072000pt;}
.ws3{word-spacing:-26.880000pt;}
.ws2e{word-spacing:-26.560000pt;}
.ws5f{word-spacing:-26.496000pt;}
.ws44{word-spacing:-26.432000pt;}
.ws5b{word-spacing:-26.176000pt;}
.ws57{word-spacing:-26.112000pt;}
.ws78{word-spacing:-22.506667pt;}
.ws1{word-spacing:-19.733333pt;}
.ws17{word-spacing:-18.240000pt;}
.ws58{word-spacing:-17.984000pt;}
.ws39{word-spacing:-16.512000pt;}
.ws1b{word-spacing:-16.448000pt;}
.ws1f{word-spacing:-16.384000pt;}
.ws4a{word-spacing:-16.320000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws49{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws37{word-spacing:-16.000000pt;}
.ws53{word-spacing:-15.936000pt;}
.ws3a{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws1e{word-spacing:-15.744000pt;}
.ws1c{word-spacing:-15.680000pt;}
.ws19{word-spacing:-15.616000pt;}
.ws1a{word-spacing:-15.552000pt;}
.ws2d{word-spacing:-15.488000pt;}
.ws60{word-spacing:-15.424000pt;}
.ws6c{word-spacing:-15.360000pt;}
.ws59{word-spacing:-15.232000pt;}
.ws48{word-spacing:-14.848000pt;}
.ws16{word-spacing:-12.588800pt;}
.ws7a{word-spacing:-11.989333pt;}
.ws3c{word-spacing:-11.200000pt;}
.ws34{word-spacing:-11.136000pt;}
.ws4b{word-spacing:-11.072000pt;}
.ws5c{word-spacing:-11.065600pt;}
.ws41{word-spacing:-11.008000pt;}
.ws11{word-spacing:-10.944000pt;}
.ws45{word-spacing:-10.880000pt;}
.ws67{word-spacing:-10.816000pt;}
.ws4d{word-spacing:-10.688000pt;}
.ws27{word-spacing:-10.624000pt;}
.ws7c{word-spacing:-10.538667pt;}
.ws47{word-spacing:-10.496000pt;}
.ws31{word-spacing:-10.304000pt;}
.ws6f{word-spacing:-10.240000pt;}
.ws3e{word-spacing:-10.112000pt;}
.ws7b{word-spacing:-8.392533pt;}
.ws15{word-spacing:-7.552000pt;}
.ws2c{word-spacing:-5.376000pt;}
.ws79{word-spacing:-4.266667pt;}
.ws6b{word-spacing:-3.136000pt;}
.ws73{word-spacing:-1.472000pt;}
.ws5e{word-spacing:-1.152000pt;}
.ws52{word-spacing:-1.088000pt;}
.ws4c{word-spacing:-1.024000pt;}
.ws50{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.896000pt;}
.ws4e{word-spacing:-0.832000pt;}
.ws29{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.576000pt;}
.wsd{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.448000pt;}
.ws20{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.256000pt;}
.ws22{word-spacing:-0.192000pt;}
.ws36{word-spacing:-0.128000pt;}
.ws43{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.064000pt;}
.ws25{word-spacing:0.128000pt;}
.ws24{word-spacing:0.192000pt;}
.ws80{word-spacing:0.213333pt;}
.ws23{word-spacing:0.256000pt;}
.ws2f{word-spacing:0.320000pt;}
.ws30{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.426667pt;}
.ws63{word-spacing:0.448000pt;}
.ws65{word-spacing:0.512000pt;}
.ws3d{word-spacing:0.576000pt;}
.ws5d{word-spacing:0.640000pt;}
.ws33{word-spacing:0.704000pt;}
.ws32{word-spacing:0.768000pt;}
.ws75{word-spacing:1.088000pt;}
.ws56{word-spacing:1.216000pt;}
.ws74{word-spacing:1.408000pt;}
.ws8{word-spacing:1.600000pt;}
.ws82{word-spacing:1.664000pt;}
.ws62{word-spacing:1.792000pt;}
.ws66{word-spacing:2.048000pt;}
.ws72{word-spacing:2.240000pt;}
.ws46{word-spacing:2.368000pt;}
.ws55{word-spacing:2.496000pt;}
.ws6e{word-spacing:2.624000pt;}
.ws7d{word-spacing:2.645333pt;}
.ws28{word-spacing:2.944000pt;}
.ws81{word-spacing:2.986667pt;}
.ws51{word-spacing:3.008000pt;}
.ws6d{word-spacing:3.200000pt;}
.ws6{word-spacing:3.306667pt;}
.ws71{word-spacing:3.328000pt;}
.ws4f{word-spacing:3.456000pt;}
.wsc{word-spacing:3.712000pt;}
.ws9{word-spacing:3.733333pt;}
.ws76{word-spacing:3.840000pt;}
.ws3f{word-spacing:4.480000pt;}
.ws64{word-spacing:4.864000pt;}
.ws2b{word-spacing:5.376000pt;}
.ws68{word-spacing:5.568000pt;}
.ws3b{word-spacing:5.632000pt;}
.ws61{word-spacing:5.696000pt;}
.ws77{word-spacing:5.824000pt;}
.ws42{word-spacing:5.952000pt;}
.ws69{word-spacing:6.080000pt;}
.wsb{word-spacing:6.400000pt;}
.ws7{word-spacing:7.466667pt;}
.ws35{word-spacing:8.384000pt;}
.ws54{word-spacing:8.640000pt;}
.ws6a{word-spacing:8.768000pt;}
.ws40{word-spacing:8.960000pt;}
.wsf{word-spacing:9.024000pt;}
.ws70{word-spacing:9.216000pt;}
.ws2a{word-spacing:9.728000pt;}
.ws0{word-spacing:129.952000pt;}
._f{margin-left:-843.396267pt;}
._36{margin-left:-69.803733pt;}
._34{margin-left:-68.010667pt;}
._15{margin-left:-18.000000pt;}
._14{margin-left:-15.550933pt;}
._c{margin-left:-13.358933pt;}
._11{margin-left:-12.342400pt;}
._3{margin-left:-10.602667pt;}
._13{margin-left:-9.587200pt;}
._e{margin-left:-7.556267pt;}
._17{margin-left:-6.622933pt;}
._2{margin-left:-5.712000pt;}
._12{margin-left:-4.688000pt;}
._d{margin-left:-3.609600pt;}
._a{margin-left:-2.608000pt;}
._0{margin-left:-1.584000pt;}
._7{width:0.921600pt;}
._4{width:2.298667pt;}
._1{width:3.824000pt;}
._6{width:5.580800pt;}
._5{width:6.592000pt;}
._8{width:7.564800pt;}
._b{width:8.632533pt;}
._9{width:10.137600pt;}
._10{width:11.406933pt;}
._16{width:13.048533pt;}
._18{width:14.950400pt;}
._26{width:16.402133pt;}
._33{width:17.682133pt;}
._19{width:19.047467pt;}
._21{width:21.077333pt;}
._2e{width:22.378667pt;}
._23{width:24.251733pt;}
._24{width:25.952000pt;}
._37{width:27.408000pt;}
._28{width:29.162667pt;}
._20{width:32.594133pt;}
._30{width:34.026667pt;}
._27{width:36.007467pt;}
._1c{width:37.765333pt;}
._2a{width:39.104000pt;}
._35{width:40.908800pt;}
._25{width:43.495467pt;}
._31{width:44.834133pt;}
._38{width:46.268800pt;}
._32{width:49.511467pt;}
._1e{width:50.876800pt;}
._2b{width:52.330667pt;}
._29{width:53.226667pt;}
._1d{width:55.099200pt;}
._22{width:57.036800pt;}
._2d{width:60.602667pt;}
._2c{width:61.498667pt;}
._2f{width:63.744000pt;}
._1a{width:66.120533pt;}
._1b{width:68.010667pt;}
._1f{width:70.038400pt;}
.fs6{font-size:29.866667pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y44{bottom:104.000000pt;}
.y89{bottom:104.069333pt;}
.y69{bottom:104.085333pt;}
.yac{bottom:104.096000pt;}
.y20{bottom:104.263467pt;}
.ye2{bottom:104.528000pt;}
.y119{bottom:107.144000pt;}
.ye1{bottom:118.000000pt;}
.y118{bottom:120.541333pt;}
.y88{bottom:123.541333pt;}
.y68{bottom:123.557333pt;}
.yab{bottom:123.568000pt;}
.y1f{bottom:123.863467pt;}
.y43{bottom:124.000000pt;}
.ye0{bottom:131.461333pt;}
.y117{bottom:133.938667pt;}
.y87{bottom:143.013333pt;}
.y67{bottom:143.029333pt;}
.yaa{bottom:143.040000pt;}
.y1e{bottom:143.463467pt;}
.y42{bottom:144.000000pt;}
.ydf{bottom:144.922667pt;}
.y116{bottom:147.336000pt;}
.yde{bottom:158.384000pt;}
.y115{bottom:160.733333pt;}
.y86{bottom:162.485333pt;}
.y66{bottom:162.501333pt;}
.ya9{bottom:162.512000pt;}
.y1d{bottom:163.063467pt;}
.y41{bottom:164.000000pt;}
.ydd{bottom:171.845333pt;}
.y114{bottom:174.130667pt;}
.y85{bottom:181.957333pt;}
.y65{bottom:181.973333pt;}
.ya8{bottom:181.984000pt;}
.y1c{bottom:182.663467pt;}
.y40{bottom:184.000000pt;}
.ydc{bottom:185.306667pt;}
.y113{bottom:187.528000pt;}
.ydb{bottom:198.768000pt;}
.y112{bottom:200.925333pt;}
.y84{bottom:201.429333pt;}
.y64{bottom:201.445333pt;}
.ya7{bottom:201.456000pt;}
.y1b{bottom:202.263467pt;}
.y3f{bottom:204.000000pt;}
.yda{bottom:212.229333pt;}
.y111{bottom:214.322667pt;}
.y83{bottom:220.901333pt;}
.y63{bottom:220.917333pt;}
.ya6{bottom:220.928000pt;}
.y1a{bottom:221.863467pt;}
.y3e{bottom:224.000000pt;}
.yd9{bottom:225.690667pt;}
.y110{bottom:227.720000pt;}
.yd8{bottom:239.152000pt;}
.y82{bottom:240.373333pt;}
.y62{bottom:240.389333pt;}
.ya5{bottom:240.400000pt;}
.y10f{bottom:241.117333pt;}
.y19{bottom:241.463467pt;}
.y3d{bottom:244.000000pt;}
.yd7{bottom:252.613333pt;}
.y10e{bottom:254.514667pt;}
.y81{bottom:259.845333pt;}
.y61{bottom:259.861333pt;}
.ya4{bottom:259.872000pt;}
.y18{bottom:261.063467pt;}
.y3c{bottom:264.000000pt;}
.yd6{bottom:266.074667pt;}
.y10d{bottom:267.912000pt;}
.y80{bottom:279.317333pt;}
.y60{bottom:279.333333pt;}
.ya3{bottom:279.344000pt;}
.yd5{bottom:279.536000pt;}
.y17{bottom:280.663467pt;}
.y10c{bottom:281.309333pt;}
.y3b{bottom:284.000000pt;}
.yd4{bottom:293.002667pt;}
.y10b{bottom:294.706667pt;}
.y7f{bottom:298.789333pt;}
.y5f{bottom:298.805333pt;}
.ya2{bottom:298.816000pt;}
.y16{bottom:300.263467pt;}
.y3a{bottom:304.000000pt;}
.yd3{bottom:306.512000pt;}
.y10a{bottom:308.104000pt;}
.y7e{bottom:318.261333pt;}
.y5e{bottom:318.277333pt;}
.ya1{bottom:318.288000pt;}
.y15{bottom:319.863467pt;}
.yd2{bottom:319.973333pt;}
.y109{bottom:321.501333pt;}
.y39{bottom:324.000000pt;}
.yd1{bottom:333.434667pt;}
.y108{bottom:334.898667pt;}
.y7d{bottom:337.733333pt;}
.y5d{bottom:337.749333pt;}
.ya0{bottom:337.760000pt;}
.y14{bottom:339.463467pt;}
.y38{bottom:344.000000pt;}
.yd0{bottom:346.896000pt;}
.y107{bottom:348.296000pt;}
.y7c{bottom:357.205333pt;}
.y5c{bottom:357.221333pt;}
.y9f{bottom:357.232000pt;}
.y13{bottom:359.063467pt;}
.ycf{bottom:360.357333pt;}
.y106{bottom:361.693333pt;}
.y37{bottom:364.000000pt;}
.yce{bottom:373.818667pt;}
.y105{bottom:375.090667pt;}
.y7b{bottom:376.677333pt;}
.y5b{bottom:376.693333pt;}
.y9e{bottom:376.704000pt;}
.y36{bottom:384.000000pt;}
.ycd{bottom:387.280000pt;}
.y104{bottom:388.488000pt;}
.y7a{bottom:396.149333pt;}
.y5a{bottom:396.165333pt;}
.y9d{bottom:396.176000pt;}
.y12{bottom:397.335467pt;}
.ycc{bottom:400.741333pt;}
.y103{bottom:401.885333pt;}
.y35{bottom:404.000000pt;}
.ycb{bottom:414.202667pt;}
.y102{bottom:415.282667pt;}
.y79{bottom:415.621333pt;}
.y59{bottom:415.637333pt;}
.y9c{bottom:415.648000pt;}
.y11{bottom:416.935467pt;}
.y12e{bottom:418.330667pt;}
.y34{bottom:424.000000pt;}
.yca{bottom:427.770667pt;}
.y101{bottom:428.680000pt;}
.y12d{bottom:434.997333pt;}
.y78{bottom:435.093333pt;}
.y58{bottom:435.109333pt;}
.y9b{bottom:435.120000pt;}
.y10{bottom:436.535467pt;}
.yc9{bottom:441.232000pt;}
.y100{bottom:442.077333pt;}
.y33{bottom:444.000000pt;}
.y12c{bottom:451.664000pt;}
.y77{bottom:454.565333pt;}
.y57{bottom:454.581333pt;}
.y9a{bottom:454.592000pt;}
.yc8{bottom:454.693333pt;}
.yff{bottom:455.474667pt;}
.yf{bottom:456.135467pt;}
.y32{bottom:464.000000pt;}
.yc7{bottom:468.154667pt;}
.yfe{bottom:468.872000pt;}
.y76{bottom:474.037333pt;}
.y56{bottom:474.053333pt;}
.y99{bottom:474.064000pt;}
.ye{bottom:475.735467pt;}
.yc6{bottom:481.616000pt;}
.yfd{bottom:482.269333pt;}
.y31{bottom:484.000000pt;}
.y12b{bottom:484.997333pt;}
.y75{bottom:493.509333pt;}
.y55{bottom:493.525333pt;}
.y98{bottom:493.536000pt;}
.yc5{bottom:495.077333pt;}
.yd{bottom:495.335467pt;}
.yfc{bottom:495.666667pt;}
.y30{bottom:504.000000pt;}
.yc4{bottom:508.538667pt;}
.yfb{bottom:509.064000pt;}
.y74{bottom:512.981333pt;}
.y54{bottom:512.997333pt;}
.y97{bottom:513.008000pt;}
.yc{bottom:514.935467pt;}
.y12a{bottom:518.336000pt;}
.yc3{bottom:522.000000pt;}
.yfa{bottom:522.461333pt;}
.y2f{bottom:524.000000pt;}
.y129{bottom:531.669333pt;}
.y73{bottom:532.453333pt;}
.y53{bottom:532.469333pt;}
.y96{bottom:532.480000pt;}
.yb{bottom:534.535467pt;}
.yc2{bottom:535.461333pt;}
.yf9{bottom:535.858667pt;}
.y2e{bottom:544.000000pt;}
.y128{bottom:545.002667pt;}
.yc1{bottom:548.922667pt;}
.yf8{bottom:549.256000pt;}
.y72{bottom:551.925333pt;}
.y52{bottom:551.941333pt;}
.y95{bottom:551.952000pt;}
.ya{bottom:554.135467pt;}
.y127{bottom:558.336000pt;}
.yc0{bottom:562.384000pt;}
.yf7{bottom:562.653333pt;}
.y2d{bottom:564.000000pt;}
.y71{bottom:571.397333pt;}
.y51{bottom:571.413333pt;}
.y94{bottom:571.424000pt;}
.y126{bottom:571.669333pt;}
.y9{bottom:573.735467pt;}
.ybf{bottom:575.845333pt;}
.yf6{bottom:576.050667pt;}
.y2c{bottom:584.000000pt;}
.y125{bottom:585.002667pt;}
.ybe{bottom:589.306667pt;}
.yf5{bottom:589.448000pt;}
.y70{bottom:590.869333pt;}
.y50{bottom:590.885333pt;}
.y93{bottom:590.896000pt;}
.y8{bottom:593.335467pt;}
.y124{bottom:598.336000pt;}
.ybd{bottom:602.768000pt;}
.yf4{bottom:602.845333pt;}
.y2b{bottom:604.000000pt;}
.y6f{bottom:610.341333pt;}
.y4f{bottom:610.357333pt;}
.y92{bottom:610.368000pt;}
.y123{bottom:611.669333pt;}
.y7{bottom:612.935467pt;}
.ybc{bottom:616.229333pt;}
.yf3{bottom:616.242667pt;}
.y2a{bottom:624.000000pt;}
.y122{bottom:625.002667pt;}
.yf2{bottom:629.640000pt;}
.ybb{bottom:629.690667pt;}
.y6e{bottom:629.813333pt;}
.y4e{bottom:629.829333pt;}
.y91{bottom:629.840000pt;}
.y121{bottom:638.336000pt;}
.yf1{bottom:643.037333pt;}
.yba{bottom:643.152000pt;}
.y29{bottom:644.000000pt;}
.y6d{bottom:649.285333pt;}
.y4d{bottom:649.301333pt;}
.y90{bottom:649.312000pt;}
.y120{bottom:651.669333pt;}
.y6{bottom:652.535467pt;}
.yf0{bottom:656.434667pt;}
.yb9{bottom:656.613333pt;}
.y28{bottom:664.000000pt;}
.y11f{bottom:665.002667pt;}
.y6c{bottom:668.757333pt;}
.y4c{bottom:668.773333pt;}
.y8f{bottom:668.784000pt;}
.yef{bottom:669.832000pt;}
.yb8{bottom:670.074667pt;}
.y5{bottom:672.314933pt;}
.yee{bottom:683.229333pt;}
.yb7{bottom:683.536000pt;}
.y27{bottom:684.000000pt;}
.y6b{bottom:688.229333pt;}
.y4b{bottom:688.245333pt;}
.y8e{bottom:688.256000pt;}
.y4{bottom:688.314933pt;}
.yed{bottom:696.626667pt;}
.yb6{bottom:697.002667pt;}
.y26{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y6a{bottom:707.701333pt;}
.y8d{bottom:707.728000pt;}
.yec{bottom:710.024000pt;}
.yb5{bottom:710.474667pt;}
.yeb{bottom:723.421333pt;}
.yb4{bottom:723.936000pt;}
.y25{bottom:724.000000pt;}
.y4a{bottom:727.173333pt;}
.y8c{bottom:727.200000pt;}
.yea{bottom:736.818667pt;}
.yb3{bottom:737.424000pt;}
.y24{bottom:744.000000pt;}
.y49{bottom:746.645333pt;}
.y8b{bottom:746.666667pt;}
.ye9{bottom:750.216000pt;}
.y11e{bottom:750.666667pt;}
.yb2{bottom:750.885333pt;}
.ye8{bottom:763.613333pt;}
.y2{bottom:764.000000pt;}
.yb1{bottom:764.346667pt;}
.y48{bottom:766.117333pt;}
.ye7{bottom:777.010667pt;}
.y11d{bottom:777.333333pt;}
.yb0{bottom:777.808000pt;}
.y23{bottom:784.000000pt;}
.y47{bottom:785.589333pt;}
.y8a{bottom:789.280000pt;}
.ye6{bottom:790.408000pt;}
.y11c{bottom:790.666667pt;}
.yaf{bottom:791.269333pt;}
.ye5{bottom:803.805333pt;}
.y22{bottom:804.000000pt;}
.yae{bottom:804.730667pt;}
.y46{bottom:805.061333pt;}
.ye4{bottom:817.202667pt;}
.y11b{bottom:817.333333pt;}
.yad{bottom:823.866667pt;}
.y21{bottom:824.000000pt;}
.y45{bottom:824.533333pt;}
.ye3{bottom:830.600000pt;}
.y11a{bottom:830.666667pt;}
.hb{height:28.437500pt;}
.h8{height:33.223750pt;}
.h9{height:34.730667pt;}
.h5{height:35.546875pt;}
.ha{height:36.229167pt;}
.h4{height:40.757812pt;}
.h3{height:43.733333pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.h7{height:59.160625pt;}
.h2{height:71.093750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228267pt;}
.x6{left:99.992400pt;}
.x5{left:113.228400pt;}
.x9{left:120.472400pt;}
.x7{left:169.600000pt;}
.x8{left:209.589333pt;}
.x2{left:373.706533pt;}
.x4{left:556.250000pt;}
}




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