
    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_f2d893e3cbfe11db31d7e09a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_3b757166bcd443f68407b03d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_7b1543c58bcf92c6b1cb6107.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_5b1e183cd8ac0fb63a17bcbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3d16cd8e3c76b66f37354a24.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728000;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_ef38d407090d8a135999c0e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_10ffa49ee16149e995a7556b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_98d61fab624b44c0e7eb4bd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_474fbdb2265289460b987b6d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.718000;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_8fa6e433b4b73b33a46e5603.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;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_a1dc399158ce7843bdbfa088.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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_375037267a036a76b9544a9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls33{letter-spacing:-3.120000px;}
.ls3a{letter-spacing:-3.060000px;}
.ls46{letter-spacing:-2.880000px;}
.ls34{letter-spacing:-2.280000px;}
.ls4c{letter-spacing:-0.624000px;}
.ls39{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.287914px;}
.ls43{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.180000px;}
.lsb{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.135000px;}
.ls58{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.188400px;}
.ls14{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.312000px;}
.ls56{letter-spacing:0.336000px;}
.ls2b{letter-spacing:0.360000px;}
.ls53{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.420000px;}
.ls42{letter-spacing:0.435000px;}
.ls19{letter-spacing:0.480000px;}
.ls3f{letter-spacing:0.510600px;}
.ls0{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.672000px;}
.ls17{letter-spacing:0.675000px;}
.ls3e{letter-spacing:0.693600px;}
.lsa{letter-spacing:0.702000px;}
.ls24{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.750000px;}
.ls20{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.810000px;}
.ls52{letter-spacing:0.816000px;}
.ls25{letter-spacing:0.840000px;}
.ls3c{letter-spacing:0.846600px;}
.ls41{letter-spacing:0.876000px;}
.ls21{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.912000px;}
.ls4a{letter-spacing:0.918000px;}
.ls1d{letter-spacing:0.960000px;}
.ls47{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.020000px;}
.ls11{letter-spacing:1.026000px;}
.ls4e{letter-spacing:1.032000px;}
.ls51{letter-spacing:1.056000px;}
.ls2e{letter-spacing:1.062000px;}
.ls15{letter-spacing:1.080000px;}
.ls48{letter-spacing:1.104000px;}
.ls26{letter-spacing:1.140000px;}
.ls54{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.188000px;}
.ls6{letter-spacing:1.200000px;}
.ls1b{letter-spacing:1.260000px;}
.ls57{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.320000px;}
.ls55{letter-spacing:1.344000px;}
.ls9{letter-spacing:1.350000px;}
.ls4{letter-spacing:1.380000px;}
.ls59{letter-spacing:1.392000px;}
.ls3{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.500000px;}
.ls23{letter-spacing:1.560000px;}
.ls1{letter-spacing:1.566000px;}
.ls31{letter-spacing:1.620000px;}
.ls40{letter-spacing:1.680000px;}
.ls3b{letter-spacing:1.740000px;}
.ls22{letter-spacing:1.800000px;}
.ls30{letter-spacing:1.860000px;}
.ls2c{letter-spacing:1.920000px;}
.lse{letter-spacing:1.950000px;}
.ls3d{letter-spacing:1.980000px;}
.ls1c{letter-spacing:2.100000px;}
.ls2a{letter-spacing:2.460000px;}
.ls32{letter-spacing:2.520000px;}
.ls36{letter-spacing:609.840000px;}
.ls37{letter-spacing:610.320000px;}
.ls38{letter-spacing:674.976000px;}
.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;}
}
.ws2f{word-spacing:-60.780000px;}
.ws2{word-spacing:-18.216000px;}
.ws27{word-spacing:-16.500000px;}
.ws3{word-spacing:-16.080000px;}
.ws5f{word-spacing:-15.900000px;}
.ws28{word-spacing:-15.780000px;}
.ws29{word-spacing:-15.720000px;}
.ws26{word-spacing:-15.540000px;}
.ws4e{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.180000px;}
.ws1{word-spacing:-13.662000px;}
.ws3a{word-spacing:-12.720000px;}
.ws68{word-spacing:-12.624000px;}
.ws60{word-spacing:-12.120000px;}
.ws4d{word-spacing:-11.940000px;}
.ws39{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.660501px;}
.ws5a{word-spacing:-8.700000px;}
.ws65{word-spacing:-3.888000px;}
.ws69{word-spacing:-2.688000px;}
.ws58{word-spacing:-2.580000px;}
.ws7{word-spacing:-1.890000px;}
.ws3e{word-spacing:-1.860000px;}
.ws5e{word-spacing:-1.680000px;}
.ws3f{word-spacing:-1.560000px;}
.ws15{word-spacing:-1.500000px;}
.ws66{word-spacing:-1.488000px;}
.ws2b{word-spacing:-1.440000px;}
.ws12{word-spacing:-1.380000px;}
.ws4{word-spacing:-1.350000px;}
.ws74{word-spacing:-1.296000px;}
.ws55{word-spacing:-1.260000px;}
.ws2d{word-spacing:-1.200000px;}
.ws14{word-spacing:-1.140000px;}
.ws6c{word-spacing:-1.104000px;}
.ws16{word-spacing:-1.080000px;}
.ws6b{word-spacing:-1.056000px;}
.ws1f{word-spacing:-1.020000px;}
.ws2e{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.912000px;}
.ws21{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.840000px;}
.wsb{word-spacing:-0.810000px;}
.ws24{word-spacing:-0.780000px;}
.ws1b{word-spacing:-0.720000px;}
.wse{word-spacing:-0.702000px;}
.ws6d{word-spacing:-0.672000px;}
.ws17{word-spacing:-0.660000px;}
.ws64{word-spacing:-0.624000px;}
.ws22{word-spacing:-0.600000px;}
.ws70{word-spacing:-0.576000px;}
.ws2a{word-spacing:-0.540000px;}
.ws1c{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.420000px;}
.ws1e{word-spacing:-0.360000px;}
.ws6e{word-spacing:-0.336000px;}
.ws36{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.270000px;}
.ws31{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.180000px;}
.ws72{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.120000px;}
.ws59{word-spacing:-0.096000px;}
.ws1a{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws4c{word-spacing:0.060000px;}
.wsf{word-spacing:0.108000px;}
.ws56{word-spacing:0.120000px;}
.ws38{word-spacing:0.180000px;}
.ws73{word-spacing:0.192000px;}
.ws57{word-spacing:0.240000px;}
.ws18{word-spacing:0.287914px;}
.ws25{word-spacing:0.300000px;}
.wsc{word-spacing:0.324000px;}
.ws6f{word-spacing:0.336000px;}
.ws63{word-spacing:0.360000px;}
.ws30{word-spacing:0.420000px;}
.ws5c{word-spacing:0.480000px;}
.ws6a{word-spacing:0.528000px;}
.ws3c{word-spacing:0.540000px;}
.ws3b{word-spacing:0.600000px;}
.wsd{word-spacing:0.648000px;}
.ws5d{word-spacing:0.660000px;}
.ws37{word-spacing:0.780000px;}
.ws5{word-spacing:0.810000px;}
.ws32{word-spacing:0.840000px;}
.ws4b{word-spacing:0.900000px;}
.ws34{word-spacing:0.960000px;}
.ws62{word-spacing:1.020000px;}
.ws61{word-spacing:1.080000px;}
.ws20{word-spacing:1.140000px;}
.ws71{word-spacing:1.152000px;}
.ws5b{word-spacing:1.200000px;}
.ws23{word-spacing:1.320000px;}
.wsa{word-spacing:1.350000px;}
.ws40{word-spacing:1.380000px;}
.ws35{word-spacing:1.440000px;}
.ws13{word-spacing:1.500000px;}
.ws67{word-spacing:1.998000px;}
.ws8{word-spacing:9.750000px;}
.ws4a{word-spacing:640.608000px;}
.ws54{word-spacing:641.136000px;}
.ws41{word-spacing:652.608000px;}
.ws4f{word-spacing:653.088000px;}
.ws52{word-spacing:653.280000px;}
.ws50{word-spacing:666.144000px;}
.ws42{word-spacing:676.752000px;}
.ws51{word-spacing:677.232000px;}
.ws45{word-spacing:745.531200px;}
.ws48{word-spacing:796.368000px;}
.ws43{word-spacing:797.376000px;}
.ws53{word-spacing:838.848000px;}
.ws47{word-spacing:853.248000px;}
.ws46{word-spacing:898.320000px;}
.ws49{word-spacing:904.656000px;}
.ws44{word-spacing:917.856000px;}
._7{margin-left:-6.645600px;}
._5{margin-left:-5.280000px;}
._4{margin-left:-4.159200px;}
._1{margin-left:-2.745600px;}
._0{margin-left:-1.036800px;}
._2{width:1.776600px;}
._3{width:2.883600px;}
._6{width:4.330800px;}
._13{width:20.592000px;}
._11{width:22.176000px;}
._12{width:23.328000px;}
._15{width:24.912000px;}
._14{width:26.688000px;}
._17{width:58.224000px;}
._16{width:59.376000px;}
._8{width:63.006000px;}
._a{width:540.316800px;}
._9{width:757.680000px;}
._f{width:765.120000px;}
._e{width:767.904000px;}
._c{width:780.480000px;}
._b{width:892.214400px;}
._10{width:905.520000px;}
._d{width:916.687200px;}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.800000px;}
.fs7{font-size:47.985600px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.689700px;}
.yae{bottom:88.534650px;}
.ydf{bottom:91.074600px;}
.y50{bottom:91.824600px;}
.y145{bottom:92.228250px;}
.y109{bottom:93.088200px;}
.y3{bottom:93.317700px;}
.yf2{bottom:93.324600px;}
.yce{bottom:100.449600px;}
.y144{bottom:107.072250px;}
.yad{bottom:108.034650px;}
.y108{bottom:109.585200px;}
.y2{bottom:109.814700px;}
.yde{bottom:110.574600px;}
.y4f{bottom:111.324600px;}
.yf1{bottom:112.824600px;}
.y143{bottom:121.916250px;}
.ycd{bottom:122.949600px;}
.y107{bottom:126.082200px;}
.yac{bottom:127.534650px;}
.ydd{bottom:130.074600px;}
.y4e{bottom:130.824600px;}
.y80{bottom:132.310050px;}
.yf0{bottom:132.324600px;}
.y142{bottom:136.760250px;}
.ycc{bottom:145.449600px;}
.y22{bottom:145.719150px;}
.yab{bottom:147.034650px;}
.ydc{bottom:149.574600px;}
.y4d{bottom:150.324600px;}
.y141{bottom:151.604250px;}
.y7f{bottom:151.810050px;}
.yef{bottom:151.824600px;}
.y21{bottom:165.219150px;}
.y140{bottom:166.460250px;}
.yaa{bottom:166.534650px;}
.ycb{bottom:167.949600px;}
.ydb{bottom:169.074600px;}
.y4c{bottom:169.824600px;}
.y7e{bottom:171.310050px;}
.yee{bottom:171.324600px;}
.y106{bottom:177.324600px;}
.y13f{bottom:181.304250px;}
.y20{bottom:184.719150px;}
.ya9{bottom:186.034650px;}
.yda{bottom:188.574600px;}
.y54{bottom:189.324600px;}
.yca{bottom:190.449600px;}
.y7d{bottom:190.810050px;}
.yed{bottom:190.824600px;}
.y4b{bottom:192.324600px;}
.y13e{bottom:196.148250px;}
.y1f{bottom:204.219150px;}
.ya8{bottom:205.534650px;}
.y105{bottom:207.324600px;}
.yd9{bottom:208.074600px;}
.y53{bottom:208.824600px;}
.y7c{bottom:210.310050px;}
.yec{bottom:210.324600px;}
.y13d{bottom:210.992250px;}
.yc9{bottom:212.949600px;}
.y104{bottom:222.324600px;}
.y1e{bottom:223.719150px;}
.ya7{bottom:225.034650px;}
.y13c{bottom:225.836250px;}
.yea{bottom:228.324600px;}
.y7b{bottom:229.810050px;}
.yeb{bottom:229.824600px;}
.y52{bottom:231.324600px;}
.yc8{bottom:235.449600px;}
.y103{bottom:237.324600px;}
.y13b{bottom:240.680250px;}
.y1d{bottom:243.219150px;}
.ya6{bottom:244.534650px;}
.yd8{bottom:247.449600px;}
.ye9{bottom:247.824600px;}
.y7a{bottom:249.310050px;}
.y4a{bottom:249.324600px;}
.y102{bottom:252.324600px;}
.y13a{bottom:255.524250px;}
.yc7{bottom:257.949600px;}
.y1c{bottom:262.719150px;}
.ya5{bottom:264.034650px;}
.ye8{bottom:267.324600px;}
.y79{bottom:268.810050px;}
.y49{bottom:268.824600px;}
.yd7{bottom:269.949600px;}
.y139{bottom:270.368250px;}
.yc6{bottom:280.449600px;}
.y1b{bottom:282.219150px;}
.y101{bottom:282.324600px;}
.ya4{bottom:283.534650px;}
.y138{bottom:285.212250px;}
.ye7{bottom:286.824600px;}
.y78{bottom:288.310050px;}
.y48{bottom:288.324600px;}
.yd6{bottom:292.449600px;}
.y100{bottom:297.324600px;}
.y137{bottom:300.056250px;}
.y1a{bottom:301.719150px;}
.yc5{bottom:302.949600px;}
.ya3{bottom:303.034650px;}
.ye6{bottom:306.324600px;}
.y77{bottom:307.810050px;}
.y47{bottom:307.824600px;}
.yff{bottom:312.324600px;}
.y136{bottom:314.900250px;}
.yd5{bottom:314.949600px;}
.y19{bottom:321.219150px;}
.ya2{bottom:322.534650px;}
.yc4{bottom:325.449600px;}
.ye5{bottom:325.824600px;}
.y76{bottom:327.310050px;}
.y46{bottom:327.324600px;}
.y135{bottom:329.744250px;}
.yd4{bottom:337.449600px;}
.y18{bottom:340.719150px;}
.ya1{bottom:342.034650px;}
.yfe{bottom:342.324600px;}
.y134{bottom:344.588250px;}
.ye4{bottom:345.324600px;}
.y75{bottom:346.810050px;}
.y45{bottom:346.824600px;}
.yc3{bottom:347.949600px;}
.yfd{bottom:357.324600px;}
.y133{bottom:359.432250px;}
.yd3{bottom:359.949600px;}
.ya0{bottom:361.534650px;}
.y17{bottom:363.219150px;}
.ye3{bottom:364.824600px;}
.y74{bottom:366.310050px;}
.y44{bottom:366.324600px;}
.yfa{bottom:367.824600px;}
.yfc{bottom:372.324600px;}
.y132{bottom:374.276250px;}
.y9f{bottom:381.034650px;}
.yd2{bottom:382.449600px;}
.ye2{bottom:384.324600px;}
.y73{bottom:385.810050px;}
.y43{bottom:385.824600px;}
.yc2{bottom:388.824600px;}
.y131{bottom:389.120250px;}
.yfb{bottom:390.324600px;}
.y16d{bottom:393.976950px;}
.y9e{bottom:400.534650px;}
.ye1{bottom:403.824600px;}
.y130{bottom:403.964250px;}
.yd1{bottom:404.949600px;}
.y72{bottom:405.310050px;}
.y42{bottom:405.324600px;}
.y16c{bottom:408.820950px;}
.y12f{bottom:418.808250px;}
.y9d{bottom:420.034650px;}
.yc1{bottom:423.324600px;}
.y16b{bottom:423.664950px;}
.y71{bottom:424.810050px;}
.y41{bottom:424.824600px;}
.yd0{bottom:427.449600px;}
.y12e{bottom:433.652250px;}
.y16a{bottom:438.508950px;}
.y9c{bottom:439.534650px;}
.yc0{bottom:442.824600px;}
.y16{bottom:443.437650px;}
.y70{bottom:444.310050px;}
.y40{bottom:444.324600px;}
.y12d{bottom:448.496250px;}
.y169{bottom:453.352950px;}
.y9b{bottom:459.034650px;}
.ybf{bottom:462.324600px;}
.y12c{bottom:463.340250px;}
.y6f{bottom:463.810050px;}
.y3f{bottom:463.824600px;}
.y15{bottom:465.186150px;}
.y168{bottom:468.196950px;}
.ycf{bottom:468.324600px;}
.y12b{bottom:478.184250px;}
.y9a{bottom:478.534650px;}
.ybe{bottom:481.824600px;}
.y14{bottom:482.439150px;}
.y167{bottom:483.040950px;}
.y6e{bottom:483.310050px;}
.y3e{bottom:483.324600px;}
.y12a{bottom:493.028250px;}
.y166{bottom:497.884950px;}
.y99{bottom:498.034650px;}
.y13{bottom:499.692150px;}
.ybd{bottom:501.324600px;}
.y6d{bottom:502.810050px;}
.y3d{bottom:502.824600px;}
.y129{bottom:507.872250px;}
.y165{bottom:512.728950px;}
.y12{bottom:516.945150px;}
.y98{bottom:517.534650px;}
.ybc{bottom:520.824600px;}
.y6c{bottom:522.310050px;}
.y3c{bottom:522.324600px;}
.y128{bottom:522.716250px;}
.ye0{bottom:523.824600px;}
.y164{bottom:527.572950px;}
.y11{bottom:534.198150px;}
.y97{bottom:537.034650px;}
.y127{bottom:537.560250px;}
.ybb{bottom:540.324600px;}
.y6b{bottom:541.810050px;}
.y3b{bottom:541.824600px;}
.y163{bottom:542.416950px;}
.y10{bottom:551.451150px;}
.y126{bottom:552.404250px;}
.y96{bottom:556.534650px;}
.y162{bottom:557.260950px;}
.yba{bottom:559.824600px;}
.y6a{bottom:561.310050px;}
.y3a{bottom:561.324600px;}
.y125{bottom:567.248250px;}
.yf{bottom:568.704150px;}
.y161{bottom:572.104950px;}
.y95{bottom:576.034650px;}
.yb9{bottom:579.324600px;}
.y69{bottom:580.810050px;}
.y39{bottom:580.824600px;}
.y124{bottom:582.092250px;}
.ye{bottom:585.957150px;}
.y160{bottom:586.948950px;}
.y94{bottom:595.534650px;}
.y123{bottom:596.936250px;}
.yb8{bottom:598.824600px;}
.y68{bottom:600.310050px;}
.y38{bottom:600.324600px;}
.y15f{bottom:601.792950px;}
.yd{bottom:603.210150px;}
.y122{bottom:611.780250px;}
.y93{bottom:615.034650px;}
.y15e{bottom:616.636950px;}
.yb7{bottom:618.324600px;}
.y67{bottom:619.810050px;}
.y37{bottom:619.824600px;}
.yc{bottom:620.463150px;}
.y121{bottom:626.624250px;}
.y15d{bottom:631.480950px;}
.y92{bottom:634.534650px;}
.yb{bottom:637.716150px;}
.yb6{bottom:637.824600px;}
.y66{bottom:639.310050px;}
.y36{bottom:639.324600px;}
.y120{bottom:641.468250px;}
.y15c{bottom:646.324950px;}
.y91{bottom:654.034650px;}
.ya{bottom:654.969150px;}
.y11f{bottom:656.312250px;}
.yb5{bottom:657.324600px;}
.y65{bottom:658.810050px;}
.y35{bottom:658.824600px;}
.y15b{bottom:661.168950px;}
.y11e{bottom:671.156250px;}
.y90{bottom:673.534650px;}
.y9{bottom:675.219150px;}
.y15a{bottom:676.012950px;}
.yb4{bottom:676.824600px;}
.y64{bottom:678.310050px;}
.y34{bottom:678.324600px;}
.y11d{bottom:686.000250px;}
.y159{bottom:690.856950px;}
.y8f{bottom:693.034650px;}
.yb3{bottom:696.324600px;}
.y63{bottom:697.810050px;}
.y33{bottom:697.824600px;}
.y11c{bottom:700.844250px;}
.y158{bottom:705.700950px;}
.y8e{bottom:712.534650px;}
.y11b{bottom:715.688250px;}
.yb2{bottom:715.824600px;}
.y62{bottom:717.310050px;}
.y32{bottom:717.324600px;}
.y157{bottom:720.544950px;}
.y11a{bottom:730.532250px;}
.y8d{bottom:732.034650px;}
.yb1{bottom:735.324600px;}
.y156{bottom:735.388950px;}
.y61{bottom:736.810050px;}
.y31{bottom:736.824600px;}
.y119{bottom:745.376250px;}
.y8{bottom:745.719150px;}
.y155{bottom:750.232950px;}
.y8c{bottom:751.534650px;}
.yb0{bottom:754.824600px;}
.y60{bottom:756.310050px;}
.y30{bottom:756.324600px;}
.y118{bottom:760.220250px;}
.y154{bottom:765.076950px;}
.y8b{bottom:771.034650px;}
.y7{bottom:771.219150px;}
.yf9{bottom:774.324600px;}
.y117{bottom:775.064250px;}
.y5f{bottom:775.810050px;}
.y2f{bottom:775.824600px;}
.yaf{bottom:777.324600px;}
.y153{bottom:779.920950px;}
.y116{bottom:789.908250px;}
.y8a{bottom:790.534650px;}
.yf8{bottom:793.824600px;}
.y152{bottom:794.764950px;}
.y5e{bottom:795.310050px;}
.y2e{bottom:795.324600px;}
.y115{bottom:804.752250px;}
.y151{bottom:809.608950px;}
.y89{bottom:810.034650px;}
.yf7{bottom:813.324600px;}
.y5d{bottom:814.810050px;}
.y2d{bottom:814.824600px;}
.y114{bottom:819.596250px;}
.y150{bottom:824.452950px;}
.y88{bottom:829.534650px;}
.yf6{bottom:832.824600px;}
.y5c{bottom:834.310050px;}
.y2c{bottom:834.324600px;}
.y113{bottom:834.452250px;}
.y14f{bottom:839.296950px;}
.y6{bottom:847.726650px;}
.y87{bottom:849.034650px;}
.y112{bottom:849.296250px;}
.yf5{bottom:852.324600px;}
.y5b{bottom:853.810050px;}
.y2b{bottom:853.824600px;}
.y14e{bottom:854.140950px;}
.y111{bottom:864.140250px;}
.y86{bottom:868.534650px;}
.y14d{bottom:868.984950px;}
.yf4{bottom:871.824600px;}
.y5{bottom:873.219150px;}
.y5a{bottom:873.310050px;}
.y2a{bottom:873.324600px;}
.y110{bottom:878.984250px;}
.y14c{bottom:883.828950px;}
.y85{bottom:888.034650px;}
.y59{bottom:892.810050px;}
.y29{bottom:892.824600px;}
.y10f{bottom:893.828250px;}
.yf3{bottom:894.324600px;}
.y14b{bottom:898.672950px;}
.y84{bottom:907.534650px;}
.y4{bottom:907.719150px;}
.y10e{bottom:908.684250px;}
.y58{bottom:912.310050px;}
.y28{bottom:912.324600px;}
.y14a{bottom:913.516950px;}
.y10d{bottom:923.528250px;}
.y83{bottom:927.034650px;}
.y149{bottom:928.360950px;}
.y57{bottom:931.810050px;}
.y27{bottom:931.824600px;}
.y10c{bottom:938.372250px;}
.y148{bottom:943.204950px;}
.y82{bottom:946.534650px;}
.y56{bottom:951.310050px;}
.y26{bottom:951.324600px;}
.y10b{bottom:953.216250px;}
.y147{bottom:958.048950px;}
.y81{bottom:969.034650px;}
.y55{bottom:970.810050px;}
.y25{bottom:970.824600px;}
.y10a{bottom:971.066400px;}
.y146{bottom:972.892950px;}
.y24{bottom:1004.527200px;}
.y51{bottom:1004.864700px;}
.y23{bottom:1051.240650px;}
.h6{height:33.351562px;}
.hc{height:33.984000px;}
.ha{height:34.261718px;}
.hd{height:34.752000px;}
.hf{height:36.597656px;}
.h2{height:37.520508px;}
.hb{height:39.096000px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.he{height:43.979883px;}
.h8{height:48.796875px;}
.h5{height:54.196289px;}
.h4{height:62.490234px;}
.h3{height:91.716797px;}
.h1{height:1062.750000px;}
.h0{height:1062.975000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:90.750000px;}
.x8{left:96.750000px;}
.x2{left:99.000000px;}
.x9{left:105.000000px;}
.x6{left:108.750000px;}
.x3{left:117.000000px;}
.xa{left:126.000000px;}
.x7{left:487.816200px;}
.x4{left:597.885600px;}
.x1{left:618.262500px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls33{letter-spacing:-2.773333pt;}
.ls3a{letter-spacing:-2.720000pt;}
.ls46{letter-spacing:-2.560000pt;}
.ls34{letter-spacing:-2.026667pt;}
.ls4c{letter-spacing:-0.554667pt;}
.ls39{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.255923pt;}
.ls43{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.120000pt;}
.ls58{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.167467pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.277333pt;}
.ls56{letter-spacing:0.298667pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls53{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls42{letter-spacing:0.386667pt;}
.ls19{letter-spacing:0.426667pt;}
.ls3f{letter-spacing:0.453867pt;}
.ls0{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.597333pt;}
.ls17{letter-spacing:0.600000pt;}
.ls3e{letter-spacing:0.616533pt;}
.lsa{letter-spacing:0.624000pt;}
.ls24{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.666667pt;}
.ls20{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.720000pt;}
.ls52{letter-spacing:0.725333pt;}
.ls25{letter-spacing:0.746667pt;}
.ls3c{letter-spacing:0.752533pt;}
.ls41{letter-spacing:0.778667pt;}
.ls21{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.810667pt;}
.ls4a{letter-spacing:0.816000pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls47{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls11{letter-spacing:0.912000pt;}
.ls4e{letter-spacing:0.917333pt;}
.ls51{letter-spacing:0.938667pt;}
.ls2e{letter-spacing:0.944000pt;}
.ls15{letter-spacing:0.960000pt;}
.ls48{letter-spacing:0.981333pt;}
.ls26{letter-spacing:1.013333pt;}
.ls54{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.056000pt;}
.ls6{letter-spacing:1.066667pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls57{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls55{letter-spacing:1.194667pt;}
.ls9{letter-spacing:1.200000pt;}
.ls4{letter-spacing:1.226667pt;}
.ls59{letter-spacing:1.237333pt;}
.ls3{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.333333pt;}
.ls23{letter-spacing:1.386667pt;}
.ls1{letter-spacing:1.392000pt;}
.ls31{letter-spacing:1.440000pt;}
.ls40{letter-spacing:1.493333pt;}
.ls3b{letter-spacing:1.546667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls30{letter-spacing:1.653333pt;}
.ls2c{letter-spacing:1.706667pt;}
.lse{letter-spacing:1.733333pt;}
.ls3d{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:1.866667pt;}
.ls2a{letter-spacing:2.186667pt;}
.ls32{letter-spacing:2.240000pt;}
.ls36{letter-spacing:542.080000pt;}
.ls37{letter-spacing:542.506667pt;}
.ls38{letter-spacing:599.978667pt;}
.ws2f{word-spacing:-54.026667pt;}
.ws2{word-spacing:-16.192000pt;}
.ws27{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.293333pt;}
.ws5f{word-spacing:-14.133333pt;}
.ws28{word-spacing:-14.026667pt;}
.ws29{word-spacing:-13.973333pt;}
.ws26{word-spacing:-13.813333pt;}
.ws4e{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.493333pt;}
.ws1{word-spacing:-12.144000pt;}
.ws3a{word-spacing:-11.306667pt;}
.ws68{word-spacing:-11.221333pt;}
.ws60{word-spacing:-10.773333pt;}
.ws4d{word-spacing:-10.613333pt;}
.ws39{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.364890pt;}
.ws5a{word-spacing:-7.733333pt;}
.ws65{word-spacing:-3.456000pt;}
.ws69{word-spacing:-2.389333pt;}
.ws58{word-spacing:-2.293333pt;}
.ws7{word-spacing:-1.680000pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws5e{word-spacing:-1.493333pt;}
.ws3f{word-spacing:-1.386667pt;}
.ws15{word-spacing:-1.333333pt;}
.ws66{word-spacing:-1.322667pt;}
.ws2b{word-spacing:-1.280000pt;}
.ws12{word-spacing:-1.226667pt;}
.ws4{word-spacing:-1.200000pt;}
.ws74{word-spacing:-1.152000pt;}
.ws55{word-spacing:-1.120000pt;}
.ws2d{word-spacing:-1.066667pt;}
.ws14{word-spacing:-1.013333pt;}
.ws6c{word-spacing:-0.981333pt;}
.ws16{word-spacing:-0.960000pt;}
.ws6b{word-spacing:-0.938667pt;}
.ws1f{word-spacing:-0.906667pt;}
.ws2e{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.810667pt;}
.ws21{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.746667pt;}
.wsb{word-spacing:-0.720000pt;}
.ws24{word-spacing:-0.693333pt;}
.ws1b{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.624000pt;}
.ws6d{word-spacing:-0.597333pt;}
.ws17{word-spacing:-0.586667pt;}
.ws64{word-spacing:-0.554667pt;}
.ws22{word-spacing:-0.533333pt;}
.ws70{word-spacing:-0.512000pt;}
.ws2a{word-spacing:-0.480000pt;}
.ws1c{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws1e{word-spacing:-0.320000pt;}
.ws6e{word-spacing:-0.298667pt;}
.ws36{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.240000pt;}
.ws31{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.160000pt;}
.ws72{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws59{word-spacing:-0.085333pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.053333pt;}
.wsf{word-spacing:0.096000pt;}
.ws56{word-spacing:0.106667pt;}
.ws38{word-spacing:0.160000pt;}
.ws73{word-spacing:0.170667pt;}
.ws57{word-spacing:0.213333pt;}
.ws18{word-spacing:0.255923pt;}
.ws25{word-spacing:0.266667pt;}
.wsc{word-spacing:0.288000pt;}
.ws6f{word-spacing:0.298667pt;}
.ws63{word-spacing:0.320000pt;}
.ws30{word-spacing:0.373333pt;}
.ws5c{word-spacing:0.426667pt;}
.ws6a{word-spacing:0.469333pt;}
.ws3c{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.533333pt;}
.wsd{word-spacing:0.576000pt;}
.ws5d{word-spacing:0.586667pt;}
.ws37{word-spacing:0.693333pt;}
.ws5{word-spacing:0.720000pt;}
.ws32{word-spacing:0.746667pt;}
.ws4b{word-spacing:0.800000pt;}
.ws34{word-spacing:0.853333pt;}
.ws62{word-spacing:0.906667pt;}
.ws61{word-spacing:0.960000pt;}
.ws20{word-spacing:1.013333pt;}
.ws71{word-spacing:1.024000pt;}
.ws5b{word-spacing:1.066667pt;}
.ws23{word-spacing:1.173333pt;}
.wsa{word-spacing:1.200000pt;}
.ws40{word-spacing:1.226667pt;}
.ws35{word-spacing:1.280000pt;}
.ws13{word-spacing:1.333333pt;}
.ws67{word-spacing:1.776000pt;}
.ws8{word-spacing:8.666667pt;}
.ws4a{word-spacing:569.429333pt;}
.ws54{word-spacing:569.898667pt;}
.ws41{word-spacing:580.096000pt;}
.ws4f{word-spacing:580.522667pt;}
.ws52{word-spacing:580.693333pt;}
.ws50{word-spacing:592.128000pt;}
.ws42{word-spacing:601.557333pt;}
.ws51{word-spacing:601.984000pt;}
.ws45{word-spacing:662.694400pt;}
.ws48{word-spacing:707.882667pt;}
.ws43{word-spacing:708.778667pt;}
.ws53{word-spacing:745.642667pt;}
.ws47{word-spacing:758.442667pt;}
.ws46{word-spacing:798.506667pt;}
.ws49{word-spacing:804.138667pt;}
.ws44{word-spacing:815.872000pt;}
._7{margin-left:-5.907200pt;}
._5{margin-left:-4.693333pt;}
._4{margin-left:-3.697067pt;}
._1{margin-left:-2.440533pt;}
._0{margin-left:-0.921600pt;}
._2{width:1.579200pt;}
._3{width:2.563200pt;}
._6{width:3.849600pt;}
._13{width:18.304000pt;}
._11{width:19.712000pt;}
._12{width:20.736000pt;}
._15{width:22.144000pt;}
._14{width:23.722667pt;}
._17{width:51.754667pt;}
._16{width:52.778667pt;}
._8{width:56.005333pt;}
._a{width:480.281600pt;}
._9{width:673.493333pt;}
._f{width:680.106667pt;}
._e{width:682.581333pt;}
._c{width:693.760000pt;}
._b{width:793.079467pt;}
._10{width:804.906667pt;}
._d{width:814.833067pt;}
.fs8{font-size:30.933333pt;}
.fs7{font-size:42.653867pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.946400pt;}
.yae{bottom:78.697467pt;}
.ydf{bottom:80.955200pt;}
.y50{bottom:81.621867pt;}
.y145{bottom:81.980667pt;}
.y109{bottom:82.745067pt;}
.y3{bottom:82.949067pt;}
.yf2{bottom:82.955200pt;}
.yce{bottom:89.288533pt;}
.y144{bottom:95.175333pt;}
.yad{bottom:96.030800pt;}
.y108{bottom:97.409067pt;}
.y2{bottom:97.613067pt;}
.yde{bottom:98.288533pt;}
.y4f{bottom:98.955200pt;}
.yf1{bottom:100.288533pt;}
.y143{bottom:108.370000pt;}
.ycd{bottom:109.288533pt;}
.y107{bottom:112.073067pt;}
.yac{bottom:113.364133pt;}
.ydd{bottom:115.621867pt;}
.y4e{bottom:116.288533pt;}
.y80{bottom:117.608933pt;}
.yf0{bottom:117.621867pt;}
.y142{bottom:121.564667pt;}
.ycc{bottom:129.288533pt;}
.y22{bottom:129.528133pt;}
.yab{bottom:130.697467pt;}
.ydc{bottom:132.955200pt;}
.y4d{bottom:133.621867pt;}
.y141{bottom:134.759333pt;}
.y7f{bottom:134.942267pt;}
.yef{bottom:134.955200pt;}
.y21{bottom:146.861467pt;}
.y140{bottom:147.964667pt;}
.yaa{bottom:148.030800pt;}
.ycb{bottom:149.288533pt;}
.ydb{bottom:150.288533pt;}
.y4c{bottom:150.955200pt;}
.y7e{bottom:152.275600pt;}
.yee{bottom:152.288533pt;}
.y106{bottom:157.621867pt;}
.y13f{bottom:161.159333pt;}
.y20{bottom:164.194800pt;}
.ya9{bottom:165.364133pt;}
.yda{bottom:167.621867pt;}
.y54{bottom:168.288533pt;}
.yca{bottom:169.288533pt;}
.y7d{bottom:169.608933pt;}
.yed{bottom:169.621867pt;}
.y4b{bottom:170.955200pt;}
.y13e{bottom:174.354000pt;}
.y1f{bottom:181.528133pt;}
.ya8{bottom:182.697467pt;}
.y105{bottom:184.288533pt;}
.yd9{bottom:184.955200pt;}
.y53{bottom:185.621867pt;}
.y7c{bottom:186.942267pt;}
.yec{bottom:186.955200pt;}
.y13d{bottom:187.548667pt;}
.yc9{bottom:189.288533pt;}
.y104{bottom:197.621867pt;}
.y1e{bottom:198.861467pt;}
.ya7{bottom:200.030800pt;}
.y13c{bottom:200.743333pt;}
.yea{bottom:202.955200pt;}
.y7b{bottom:204.275600pt;}
.yeb{bottom:204.288533pt;}
.y52{bottom:205.621867pt;}
.yc8{bottom:209.288533pt;}
.y103{bottom:210.955200pt;}
.y13b{bottom:213.938000pt;}
.y1d{bottom:216.194800pt;}
.ya6{bottom:217.364133pt;}
.yd8{bottom:219.955200pt;}
.ye9{bottom:220.288533pt;}
.y7a{bottom:221.608933pt;}
.y4a{bottom:221.621867pt;}
.y102{bottom:224.288533pt;}
.y13a{bottom:227.132667pt;}
.yc7{bottom:229.288533pt;}
.y1c{bottom:233.528133pt;}
.ya5{bottom:234.697467pt;}
.ye8{bottom:237.621867pt;}
.y79{bottom:238.942267pt;}
.y49{bottom:238.955200pt;}
.yd7{bottom:239.955200pt;}
.y139{bottom:240.327333pt;}
.yc6{bottom:249.288533pt;}
.y1b{bottom:250.861467pt;}
.y101{bottom:250.955200pt;}
.ya4{bottom:252.030800pt;}
.y138{bottom:253.522000pt;}
.ye7{bottom:254.955200pt;}
.y78{bottom:256.275600pt;}
.y48{bottom:256.288533pt;}
.yd6{bottom:259.955200pt;}
.y100{bottom:264.288533pt;}
.y137{bottom:266.716667pt;}
.y1a{bottom:268.194800pt;}
.yc5{bottom:269.288533pt;}
.ya3{bottom:269.364133pt;}
.ye6{bottom:272.288533pt;}
.y77{bottom:273.608933pt;}
.y47{bottom:273.621867pt;}
.yff{bottom:277.621867pt;}
.y136{bottom:279.911333pt;}
.yd5{bottom:279.955200pt;}
.y19{bottom:285.528133pt;}
.ya2{bottom:286.697467pt;}
.yc4{bottom:289.288533pt;}
.ye5{bottom:289.621867pt;}
.y76{bottom:290.942267pt;}
.y46{bottom:290.955200pt;}
.y135{bottom:293.106000pt;}
.yd4{bottom:299.955200pt;}
.y18{bottom:302.861467pt;}
.ya1{bottom:304.030800pt;}
.yfe{bottom:304.288533pt;}
.y134{bottom:306.300667pt;}
.ye4{bottom:306.955200pt;}
.y75{bottom:308.275600pt;}
.y45{bottom:308.288533pt;}
.yc3{bottom:309.288533pt;}
.yfd{bottom:317.621867pt;}
.y133{bottom:319.495333pt;}
.yd3{bottom:319.955200pt;}
.ya0{bottom:321.364133pt;}
.y17{bottom:322.861467pt;}
.ye3{bottom:324.288533pt;}
.y74{bottom:325.608933pt;}
.y44{bottom:325.621867pt;}
.yfa{bottom:326.955200pt;}
.yfc{bottom:330.955200pt;}
.y132{bottom:332.690000pt;}
.y9f{bottom:338.697467pt;}
.yd2{bottom:339.955200pt;}
.ye2{bottom:341.621867pt;}
.y73{bottom:342.942267pt;}
.y43{bottom:342.955200pt;}
.yc2{bottom:345.621867pt;}
.y131{bottom:345.884667pt;}
.yfb{bottom:346.955200pt;}
.y16d{bottom:350.201733pt;}
.y9e{bottom:356.030800pt;}
.ye1{bottom:358.955200pt;}
.y130{bottom:359.079333pt;}
.yd1{bottom:359.955200pt;}
.y72{bottom:360.275600pt;}
.y42{bottom:360.288533pt;}
.y16c{bottom:363.396400pt;}
.y12f{bottom:372.274000pt;}
.y9d{bottom:373.364133pt;}
.yc1{bottom:376.288533pt;}
.y16b{bottom:376.591067pt;}
.y71{bottom:377.608933pt;}
.y41{bottom:377.621867pt;}
.yd0{bottom:379.955200pt;}
.y12e{bottom:385.468667pt;}
.y16a{bottom:389.785733pt;}
.y9c{bottom:390.697467pt;}
.yc0{bottom:393.621867pt;}
.y16{bottom:394.166800pt;}
.y70{bottom:394.942267pt;}
.y40{bottom:394.955200pt;}
.y12d{bottom:398.663333pt;}
.y169{bottom:402.980400pt;}
.y9b{bottom:408.030800pt;}
.ybf{bottom:410.955200pt;}
.y12c{bottom:411.858000pt;}
.y6f{bottom:412.275600pt;}
.y3f{bottom:412.288533pt;}
.y15{bottom:413.498800pt;}
.y168{bottom:416.175067pt;}
.ycf{bottom:416.288533pt;}
.y12b{bottom:425.052667pt;}
.y9a{bottom:425.364133pt;}
.ybe{bottom:428.288533pt;}
.y14{bottom:428.834800pt;}
.y167{bottom:429.369733pt;}
.y6e{bottom:429.608933pt;}
.y3e{bottom:429.621867pt;}
.y12a{bottom:438.247333pt;}
.y166{bottom:442.564400pt;}
.y99{bottom:442.697467pt;}
.y13{bottom:444.170800pt;}
.ybd{bottom:445.621867pt;}
.y6d{bottom:446.942267pt;}
.y3d{bottom:446.955200pt;}
.y129{bottom:451.442000pt;}
.y165{bottom:455.759067pt;}
.y12{bottom:459.506800pt;}
.y98{bottom:460.030800pt;}
.ybc{bottom:462.955200pt;}
.y6c{bottom:464.275600pt;}
.y3c{bottom:464.288533pt;}
.y128{bottom:464.636667pt;}
.ye0{bottom:465.621867pt;}
.y164{bottom:468.953733pt;}
.y11{bottom:474.842800pt;}
.y97{bottom:477.364133pt;}
.y127{bottom:477.831333pt;}
.ybb{bottom:480.288533pt;}
.y6b{bottom:481.608933pt;}
.y3b{bottom:481.621867pt;}
.y163{bottom:482.148400pt;}
.y10{bottom:490.178800pt;}
.y126{bottom:491.026000pt;}
.y96{bottom:494.697467pt;}
.y162{bottom:495.343067pt;}
.yba{bottom:497.621867pt;}
.y6a{bottom:498.942267pt;}
.y3a{bottom:498.955200pt;}
.y125{bottom:504.220667pt;}
.yf{bottom:505.514800pt;}
.y161{bottom:508.537733pt;}
.y95{bottom:512.030800pt;}
.yb9{bottom:514.955200pt;}
.y69{bottom:516.275600pt;}
.y39{bottom:516.288533pt;}
.y124{bottom:517.415333pt;}
.ye{bottom:520.850800pt;}
.y160{bottom:521.732400pt;}
.y94{bottom:529.364133pt;}
.y123{bottom:530.610000pt;}
.yb8{bottom:532.288533pt;}
.y68{bottom:533.608933pt;}
.y38{bottom:533.621867pt;}
.y15f{bottom:534.927067pt;}
.yd{bottom:536.186800pt;}
.y122{bottom:543.804667pt;}
.y93{bottom:546.697467pt;}
.y15e{bottom:548.121733pt;}
.yb7{bottom:549.621867pt;}
.y67{bottom:550.942267pt;}
.y37{bottom:550.955200pt;}
.yc{bottom:551.522800pt;}
.y121{bottom:556.999333pt;}
.y15d{bottom:561.316400pt;}
.y92{bottom:564.030800pt;}
.yb{bottom:566.858800pt;}
.yb6{bottom:566.955200pt;}
.y66{bottom:568.275600pt;}
.y36{bottom:568.288533pt;}
.y120{bottom:570.194000pt;}
.y15c{bottom:574.511067pt;}
.y91{bottom:581.364133pt;}
.ya{bottom:582.194800pt;}
.y11f{bottom:583.388667pt;}
.yb5{bottom:584.288533pt;}
.y65{bottom:585.608933pt;}
.y35{bottom:585.621867pt;}
.y15b{bottom:587.705733pt;}
.y11e{bottom:596.583333pt;}
.y90{bottom:598.697467pt;}
.y9{bottom:600.194800pt;}
.y15a{bottom:600.900400pt;}
.yb4{bottom:601.621867pt;}
.y64{bottom:602.942267pt;}
.y34{bottom:602.955200pt;}
.y11d{bottom:609.778000pt;}
.y159{bottom:614.095067pt;}
.y8f{bottom:616.030800pt;}
.yb3{bottom:618.955200pt;}
.y63{bottom:620.275600pt;}
.y33{bottom:620.288533pt;}
.y11c{bottom:622.972667pt;}
.y158{bottom:627.289733pt;}
.y8e{bottom:633.364133pt;}
.y11b{bottom:636.167333pt;}
.yb2{bottom:636.288533pt;}
.y62{bottom:637.608933pt;}
.y32{bottom:637.621867pt;}
.y157{bottom:640.484400pt;}
.y11a{bottom:649.362000pt;}
.y8d{bottom:650.697467pt;}
.yb1{bottom:653.621867pt;}
.y156{bottom:653.679067pt;}
.y61{bottom:654.942267pt;}
.y31{bottom:654.955200pt;}
.y119{bottom:662.556667pt;}
.y8{bottom:662.861467pt;}
.y155{bottom:666.873733pt;}
.y8c{bottom:668.030800pt;}
.yb0{bottom:670.955200pt;}
.y60{bottom:672.275600pt;}
.y30{bottom:672.288533pt;}
.y118{bottom:675.751333pt;}
.y154{bottom:680.068400pt;}
.y8b{bottom:685.364133pt;}
.y7{bottom:685.528133pt;}
.yf9{bottom:688.288533pt;}
.y117{bottom:688.946000pt;}
.y5f{bottom:689.608933pt;}
.y2f{bottom:689.621867pt;}
.yaf{bottom:690.955200pt;}
.y153{bottom:693.263067pt;}
.y116{bottom:702.140667pt;}
.y8a{bottom:702.697467pt;}
.yf8{bottom:705.621867pt;}
.y152{bottom:706.457733pt;}
.y5e{bottom:706.942267pt;}
.y2e{bottom:706.955200pt;}
.y115{bottom:715.335333pt;}
.y151{bottom:719.652400pt;}
.y89{bottom:720.030800pt;}
.yf7{bottom:722.955200pt;}
.y5d{bottom:724.275600pt;}
.y2d{bottom:724.288533pt;}
.y114{bottom:728.530000pt;}
.y150{bottom:732.847067pt;}
.y88{bottom:737.364133pt;}
.yf6{bottom:740.288533pt;}
.y5c{bottom:741.608933pt;}
.y2c{bottom:741.621867pt;}
.y113{bottom:741.735333pt;}
.y14f{bottom:746.041733pt;}
.y6{bottom:753.534800pt;}
.y87{bottom:754.697467pt;}
.y112{bottom:754.930000pt;}
.yf5{bottom:757.621867pt;}
.y5b{bottom:758.942267pt;}
.y2b{bottom:758.955200pt;}
.y14e{bottom:759.236400pt;}
.y111{bottom:768.124667pt;}
.y86{bottom:772.030800pt;}
.y14d{bottom:772.431067pt;}
.yf4{bottom:774.955200pt;}
.y5{bottom:776.194800pt;}
.y5a{bottom:776.275600pt;}
.y2a{bottom:776.288533pt;}
.y110{bottom:781.319333pt;}
.y14c{bottom:785.625733pt;}
.y85{bottom:789.364133pt;}
.y59{bottom:793.608933pt;}
.y29{bottom:793.621867pt;}
.y10f{bottom:794.514000pt;}
.yf3{bottom:794.955200pt;}
.y14b{bottom:798.820400pt;}
.y84{bottom:806.697467pt;}
.y4{bottom:806.861467pt;}
.y10e{bottom:807.719333pt;}
.y58{bottom:810.942267pt;}
.y28{bottom:810.955200pt;}
.y14a{bottom:812.015067pt;}
.y10d{bottom:820.914000pt;}
.y83{bottom:824.030800pt;}
.y149{bottom:825.209733pt;}
.y57{bottom:828.275600pt;}
.y27{bottom:828.288533pt;}
.y10c{bottom:834.108667pt;}
.y148{bottom:838.404400pt;}
.y82{bottom:841.364133pt;}
.y56{bottom:845.608933pt;}
.y26{bottom:845.621867pt;}
.y10b{bottom:847.303333pt;}
.y147{bottom:851.599067pt;}
.y81{bottom:861.364133pt;}
.y55{bottom:862.942267pt;}
.y25{bottom:862.955200pt;}
.y10a{bottom:863.170133pt;}
.y146{bottom:864.793733pt;}
.y24{bottom:892.913067pt;}
.y51{bottom:893.213067pt;}
.y23{bottom:934.436133pt;}
.h6{height:29.645833pt;}
.hc{height:30.208000pt;}
.ha{height:30.454861pt;}
.hd{height:30.890667pt;}
.hf{height:32.531250pt;}
.h2{height:33.351562pt;}
.hb{height:34.752000pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.he{height:39.093229pt;}
.h8{height:43.375000pt;}
.h5{height:48.174479pt;}
.h4{height:55.546875pt;}
.h3{height:81.526042pt;}
.h1{height:944.666667pt;}
.h0{height:944.866667pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:80.666667pt;}
.x8{left:86.000000pt;}
.x2{left:88.000000pt;}
.x9{left:93.333333pt;}
.x6{left:96.666667pt;}
.x3{left:104.000000pt;}
.xa{left:112.000000pt;}
.x7{left:433.614400pt;}
.x4{left:531.453867pt;}
.x1{left:549.566667pt;}
}




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