
    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_001443e44e570fc2428a8df5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_97841dc98547ba8b2e9e56b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_5c7bd29a4d2dc1cdc186f8ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_1d80c8f3162d755d1f197942.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_bd9a207b0d57d4f52db627d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1083cacf5fbc9ef1247b24cc.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_1f6270f99878ff3d494ea947.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.709473;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_e776ee41eb48be7909ad543a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1862ba3d2923daf21363b5f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_3f60abda4c8af2e28201661e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_ca14ed4011e35156fe405fb3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_b689c34bb99ce0c17cc3b4f3.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.234071,-0.087810,0.087810,0.234071,0,0);-ms-transform:matrix(0.234071,-0.087810,0.087810,0.234071,0,0);-webkit-transform:matrix(0.234071,-0.087810,0.087810,0.234071,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.ls13{letter-spacing:-0.780000px;}
.ls1e{letter-spacing:-0.192000px;}
.ls4f{letter-spacing:-0.096000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls50{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.096000px;}
.ls33{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.240000px;}
.ls46{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls3b{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.420000px;}
.ls4b{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.624000px;}
.ls5{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.720000px;}
.ls39{letter-spacing:0.768000px;}
.ls1c{letter-spacing:0.780000px;}
.ls4a{letter-spacing:0.816000px;}
.ls23{letter-spacing:0.840000px;}
.ls41{letter-spacing:0.912000px;}
.ls9{letter-spacing:0.960000px;}
.ls51{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.020000px;}
.ls19{letter-spacing:1.080000px;}
.ls49{letter-spacing:1.104000px;}
.ls16{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls3a{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.ls44{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.380000px;}
.lsa{letter-spacing:1.440000px;}
.ls20{letter-spacing:1.500000px;}
.ls3e{letter-spacing:1.536000px;}
.ls22{letter-spacing:1.560000px;}
.ls29{letter-spacing:1.620000px;}
.lsf{letter-spacing:1.680000px;}
.ls42{letter-spacing:1.728000px;}
.ls17{letter-spacing:1.740000px;}
.ls4d{letter-spacing:1.776000px;}
.lse{letter-spacing:1.800000px;}
.ls43{letter-spacing:1.968000px;}
.ls2{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.ls25{letter-spacing:2.100000px;}
.ls32{letter-spacing:2.160000px;}
.ls3{letter-spacing:2.220000px;}
.ls1{letter-spacing:2.280000px;}
.ls1f{letter-spacing:2.340000px;}
.ls18{letter-spacing:2.400000px;}
.ls4{letter-spacing:2.520000px;}
.ls38{letter-spacing:2.580000px;}
.ls3f{letter-spacing:2.592000px;}
.ls24{letter-spacing:2.700000px;}
.ls2e{letter-spacing:2.760000px;}
.ls1a{letter-spacing:2.820000px;}
.ls2c{letter-spacing:2.880000px;}
.lsb{letter-spacing:2.940000px;}
.ls3c{letter-spacing:3.000000px;}
.ls21{letter-spacing:3.060000px;}
.ls2f{letter-spacing:3.120000px;}
.ls37{letter-spacing:3.480000px;}
.ls47{letter-spacing:3.504000px;}
.ls1d{letter-spacing:3.900000px;}
.ls4c{letter-spacing:3.984000px;}
.ls0{letter-spacing:4.860000px;}
.ls10{letter-spacing:6.660000px;}
.ls34{letter-spacing:6.720000px;}
.ls35{letter-spacing:6.960000px;}
.ls30{letter-spacing:7.800000px;}
.ls36{letter-spacing:11.940000px;}
.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;}
}
.ws30{word-spacing:-19.500000px;}
.ws2f{word-spacing:-17.760000px;}
.ws4{word-spacing:-17.520000px;}
.ws2e{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.680000px;}
.ws2c{word-spacing:-16.500000px;}
.ws1a{word-spacing:-16.260000px;}
.ws2d{word-spacing:-16.080000px;}
.ws6{word-spacing:-16.020000px;}
.ws5b{word-spacing:-15.984000px;}
.ws59{word-spacing:-15.504000px;}
.ws31{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws56{word-spacing:-13.968000px;}
.ws54{word-spacing:-13.536000px;}
.ws7{word-spacing:-13.344000px;}
.ws32{word-spacing:-13.248000px;}
.ws5c{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.ws55{word-spacing:-12.480000px;}
.ws5a{word-spacing:-12.432000px;}
.ws17{word-spacing:-12.385901px;}
.ws58{word-spacing:-12.048000px;}
.ws1c{word-spacing:-12.000000px;}
.ws57{word-spacing:-11.904000px;}
.ws1b{word-spacing:-11.808000px;}
.ws70{word-spacing:-3.984000px;}
.ws2a{word-spacing:-3.900000px;}
.ws6b{word-spacing:-3.504000px;}
.ws4f{word-spacing:-3.480000px;}
.ws3d{word-spacing:-3.000000px;}
.wse{word-spacing:-2.940000px;}
.ws9{word-spacing:-2.886000px;}
.ws28{word-spacing:-2.820000px;}
.ws46{word-spacing:-2.760000px;}
.ws40{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.580000px;}
.ws1e{word-spacing:-2.450448px;}
.ws26{word-spacing:-2.400000px;}
.ws29{word-spacing:-2.280000px;}
.ws49{word-spacing:-2.160000px;}
.ws43{word-spacing:-2.100000px;}
.ws36{word-spacing:-2.040000px;}
.ws4d{word-spacing:-1.980000px;}
.ws64{word-spacing:-1.968000px;}
.ws10{word-spacing:-1.800000px;}
.ws72{word-spacing:-1.776000px;}
.ws22{word-spacing:-1.740000px;}
.ws63{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.680000px;}
.ws3c{word-spacing:-1.620000px;}
.ws4e{word-spacing:-1.560000px;}
.ws5f{word-spacing:-1.536000px;}
.ws3f{word-spacing:-1.440000px;}
.ws65{word-spacing:-1.296000px;}
.ws21{word-spacing:-1.260000px;}
.ws52{word-spacing:-1.248000px;}
.ws34{word-spacing:-1.200000px;}
.ws35{word-spacing:-1.140000px;}
.ws6c{word-spacing:-1.104000px;}
.ws24{word-spacing:-1.080000px;}
.ws16{word-spacing:-1.020000px;}
.ws71{word-spacing:-1.008000px;}
.ws61{word-spacing:-0.960000px;}
.ws62{word-spacing:-0.912000px;}
.ws33{word-spacing:-0.900000px;}
.ws6e{word-spacing:-0.816000px;}
.ws23{word-spacing:-0.780000px;}
.ws51{word-spacing:-0.768000px;}
.wsf{word-spacing:-0.660000px;}
.ws73{word-spacing:-0.624000px;}
.ws1d{word-spacing:-0.561373px;}
.ws48{word-spacing:-0.540000px;}
.ws47{word-spacing:-0.480000px;}
.ws6f{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.360000px;}
.ws37{word-spacing:-0.300000px;}
.ws68{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.240000px;}
.ws5d{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.126600px;}
.ws60{word-spacing:-0.096000px;}
.ws41{word-spacing:-0.060000px;}
.ws67{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws6a{word-spacing:0.048000px;}
.ws25{word-spacing:0.060000px;}
.ws69{word-spacing:0.096000px;}
.ws42{word-spacing:0.120000px;}
.ws2b{word-spacing:0.192000px;}
.ws27{word-spacing:1.080000px;}
.ws4b{word-spacing:1.200000px;}
.ws4a{word-spacing:1.320000px;}
.ws3a{word-spacing:1.440000px;}
.ws15{word-spacing:1.680000px;}
.ws12{word-spacing:1.800000px;}
.ws3b{word-spacing:2.100000px;}
.ws6d{word-spacing:2.256000px;}
.ws45{word-spacing:2.340000px;}
.ws1f{word-spacing:2.700000px;}
.ws50{word-spacing:2.880000px;}
.ws66{word-spacing:3.024000px;}
.wsa{word-spacing:3.180000px;}
.ws38{word-spacing:3.780000px;}
.wsd{word-spacing:3.840000px;}
.ws5e{word-spacing:3.936000px;}
.ws53{word-spacing:3.984000px;}
.ws13{word-spacing:4.740000px;}
.ws39{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws4c{word-spacing:5.520000px;}
.ws18{word-spacing:295.986570px;}
.ws19{word-spacing:311.028690px;}
._10{margin-left:-2898.144000px;}
._11{margin-left:-2874.336000px;}
._d{margin-left:-553.890355px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-8.160000px;}
._4{margin-left:-6.615000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._7{margin-left:-1.080000px;}
._6{width:1.560000px;}
._e{width:2.700000px;}
._8{width:3.840000px;}
._a{width:5.640000px;}
._b{width:6.780000px;}
._9{width:7.860000px;}
._f{width:9.600000px;}
._c{width:150.680275px;}
.fc4{color:rgb(240,10,0);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(76,76,76);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:22.276800px;}
.fsa{font-size:26.732400px;}
.fs9{font-size:31.187400px;}
.fsc{font-size:35.643000px;}
.fsd{font-size:36.510000px;}
.fse{font-size:36.510026px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:44.553600px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2b{bottom:47.777250px;}
.yb4{bottom:80.121900px;}
.ya8{bottom:83.770350px;}
.y7d{bottom:84.263850px;}
.y1b{bottom:88.029450px;}
.yb3{bottom:95.121900px;}
.y7c{bottom:100.007850px;}
.ya7{bottom:101.770350px;}
.y1a{bottom:103.023000px;}
.yb2{bottom:110.121900px;}
.y7b{bottom:115.751850px;}
.ya6{bottom:119.770350px;}
.yb1{bottom:125.121900px;}
.y7a{bottom:131.495850px;}
.ya5{bottom:137.770350px;}
.yb0{bottom:140.121900px;}
.y79{bottom:147.239850px;}
.ya4{bottom:155.770350px;}
.y28{bottom:160.376700px;}
.y78{bottom:162.983850px;}
.yaf{bottom:173.230350px;}
.ya3{bottom:173.770350px;}
.y27{bottom:178.376700px;}
.y43{bottom:188.496000px;}
.ya2{bottom:191.770350px;}
.y44{bottom:194.284950px;}
.y26{bottom:196.376700px;}
.y34{bottom:197.993458px;}
.y4a{bottom:199.056900px;}
.y63{bottom:199.605150px;}
.y45{bottom:205.968450px;}
.ya1{bottom:209.770350px;}
.y62{bottom:212.492700px;}
.y2f{bottom:212.808439px;}
.y25{bottom:214.376700px;}
.y4b{bottom:214.588337px;}
.y61{bottom:217.574550px;}
.y60{bottom:224.792700px;}
.ya0{bottom:227.770350px;}
.y24{bottom:232.376700px;}
.y30{bottom:238.404482px;}
.y47{bottom:244.451400px;}
.yae{bottom:245.365350px;}
.y9f{bottom:245.770350px;}
.y33{bottom:246.011100px;}
.y53{bottom:246.827918px;}
.y23{bottom:250.376700px;}
.y2e{bottom:251.603486px;}
.y46{bottom:255.589800px;}
.y9e{bottom:263.770350px;}
.y22{bottom:268.376700px;}
.yad{bottom:281.365350px;}
.y9d{bottom:281.770350px;}
.y52{bottom:283.052083px;}
.y5a{bottom:283.581600px;}
.y3b{bottom:285.195991px;}
.y21{bottom:286.376700px;}
.y31{bottom:289.229002px;}
.y49{bottom:291.087881px;}
.y2c{bottom:293.548650px;}
.y40{bottom:296.813342px;}
.y9c{bottom:299.770350px;}
.y5c{bottom:302.226450px;}
.y32{bottom:303.207600px;}
.y20{bottom:304.376700px;}
.y51{bottom:305.514808px;}
.y5b{bottom:313.555200px;}
.y3c{bottom:314.879827px;}
.y9b{bottom:317.770350px;}
.y1f{bottom:322.376700px;}
.y37{bottom:323.645748px;}
.y5d{bottom:328.807217px;}
.y9a{bottom:335.770350px;}
.y4c{bottom:340.187400px;}
.y1e{bottom:340.376700px;}
.y5e{bottom:340.729801px;}
.y35{bottom:342.714689px;}
.y2d{bottom:343.818300px;}
.y48{bottom:348.717962px;}
.y39{bottom:350.522707px;}
.y99{bottom:353.770350px;}
.y1d{bottom:358.376700px;}
.y5f{bottom:358.832250px;}
.y54{bottom:371.230200px;}
.y98{bottom:371.770350px;}
.y4d{bottom:375.499334px;}
.y1c{bottom:376.376700px;}
.y3a{bottom:381.142169px;}
.y42{bottom:383.425541px;}
.y55{bottom:383.885100px;}
.y3e{bottom:384.806702px;}
.yac{bottom:389.365350px;}
.y97{bottom:389.770350px;}
.y96{bottom:407.770350px;}
.y3d{bottom:412.307412px;}
.y57{bottom:424.974658px;}
.y95{bottom:425.770350px;}
.y4e{bottom:427.286011px;}
.y56{bottom:436.113058px;}
.yab{bottom:443.365350px;}
.y94{bottom:443.770350px;}
.y19{bottom:452.614200px;}
.y93{bottom:461.770350px;}
.y41{bottom:477.088346px;}
.y92{bottom:479.770350px;}
.y18{bottom:479.959200px;}
.y36{bottom:481.053617px;}
.yaa{bottom:497.365350px;}
.y91{bottom:497.770350px;}
.y17{bottom:497.959200px;}
.y64{bottom:509.313900px;}
.y3f{bottom:514.702723px;}
.y90{bottom:515.770350px;}
.y16{bottom:515.959200px;}
.y58{bottom:523.761127px;}
.y8f{bottom:533.770350px;}
.y15{bottom:533.959200px;}
.y8e{bottom:551.770350px;}
.y14{bottom:551.959200px;}
.y66{bottom:552.022950px;}
.y38{bottom:555.614066px;}
.y8d{bottom:569.770350px;}
.y13{bottom:569.959200px;}
.y8c{bottom:587.770350px;}
.y12{bottom:587.959200px;}
.yd4{bottom:590.263500px;}
.yd3{bottom:605.263500px;}
.y8b{bottom:605.770350px;}
.y11{bottom:605.959200px;}
.y65{bottom:618.134400px;}
.yd2{bottom:620.263500px;}
.y8a{bottom:623.770350px;}
.y10{bottom:623.959200px;}
.y50{bottom:624.515129px;}
.y6a{bottom:630.908700px;}
.y4f{bottom:633.871349px;}
.yd1{bottom:635.263500px;}
.y68{bottom:637.677246px;}
.y89{bottom:641.770350px;}
.yf{bottom:641.959200px;}
.y59{bottom:642.262565px;}
.yd0{bottom:650.263500px;}
.y69{bottom:656.924401px;}
.y88{bottom:659.770350px;}
.ye{bottom:659.959200px;}
.ycf{bottom:665.263500px;}
.y6b{bottom:673.482450px;}
.y87{bottom:677.770350px;}
.yd{bottom:677.959200px;}
.yce{bottom:680.263500px;}
.ycd{bottom:695.263500px;}
.ya9{bottom:695.365350px;}
.y86{bottom:695.770350px;}
.y67{bottom:698.504048px;}
.ycc{bottom:710.263500px;}
.y85{bottom:713.770350px;}
.yc{bottom:723.117300px;}
.ycb{bottom:725.263500px;}
.y84{bottom:731.770350px;}
.yb{bottom:735.568050px;}
.yca{bottom:740.263500px;}
.y83{bottom:749.770350px;}
.yc9{bottom:755.263500px;}
.ya{bottom:767.283600px;}
.y82{bottom:767.770350px;}
.yc8{bottom:770.263500px;}
.y9{bottom:780.783600px;}
.yc7{bottom:785.263500px;}
.y81{bottom:785.770350px;}
.yc6{bottom:800.263500px;}
.y80{bottom:803.770350px;}
.y8{bottom:814.930800px;}
.yc5{bottom:815.263500px;}
.y7f{bottom:821.770350px;}
.yc4{bottom:830.263500px;}
.y77{bottom:839.770350px;}
.yc3{bottom:845.263500px;}
.y76{bottom:857.770350px;}
.yc2{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.yc1{bottom:875.263500px;}
.y75{bottom:875.770350px;}
.yc0{bottom:890.263500px;}
.y74{bottom:893.770350px;}
.y6{bottom:897.543600px;}
.ybf{bottom:905.263500px;}
.y73{bottom:911.770350px;}
.ybe{bottom:920.263500px;}
.y72{bottom:929.770350px;}
.y5{bottom:934.004400px;}
.ybd{bottom:935.263500px;}
.y71{bottom:947.770350px;}
.ybc{bottom:950.263500px;}
.ybb{bottom:965.263500px;}
.y70{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.yba{bottom:980.263500px;}
.y6f{bottom:983.770350px;}
.yb9{bottom:995.263500px;}
.y6e{bottom:1001.770350px;}
.y3{bottom:1006.926000px;}
.yb8{bottom:1010.263500px;}
.y6d{bottom:1019.770350px;}
.yb7{bottom:1025.263500px;}
.y6c{bottom:1037.770350px;}
.yb6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.yb5{bottom:1132.413900px;}
.yd5{bottom:1132.423500px;}
.y7e{bottom:1132.451850px;}
.y2a{bottom:1136.092500px;}
.y29{bottom:1150.492500px;}
.h17{height:16.239874px;}
.h14{height:19.488024px;}
.h13{height:22.720508px;}
.h16{height:25.966482px;}
.h18{height:25.983886px;}
.h19{height:26.580278px;}
.h1a{height:26.580298px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.h12{height:32.436239px;}
.h11{height:32.457994px;}
.h15{height:32.479748px;}
.hd{height:32.783203px;}
.h6{height:32.805176px;}
.hc{height:32.815976px;}
.h1b{height:33.351562px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.he{height:41.689453px;}
.h9{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.717434px;}
.h8{height:43.740234px;}
.h5{height:45.865723px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x31{left:90.701100px;}
.x7{left:96.094500px;}
.x1{left:97.795200px;}
.x41{left:102.047250px;}
.x4{left:106.299150px;}
.x38{left:110.555400px;}
.x34{left:115.534770px;}
.x3{left:125.433750px;}
.x5{left:131.811000px;}
.x30{left:155.026500px;}
.xa{left:170.059500px;}
.x32{left:190.162050px;}
.x12{left:191.718288px;}
.xc{left:200.289130px;}
.x33{left:262.940356px;}
.x36{left:283.637100px;}
.x37{left:323.653950px;}
.x1c{left:347.633611px;}
.x35{left:362.495375px;}
.x17{left:383.231938px;}
.x18{left:416.647138px;}
.xb{left:422.845500px;}
.xd{left:431.756220px;}
.x10{left:439.101750px;}
.x14{left:453.091982px;}
.x8{left:455.041500px;}
.x39{left:457.085400px;}
.x1d{left:459.284933px;}
.xf{left:460.816306px;}
.xe{left:471.431201px;}
.x15{left:472.662151px;}
.x13{left:476.917020px;}
.x3d{left:478.390350px;}
.x6{left:480.501000px;}
.x42{left:482.615250px;}
.x19{left:485.048052px;}
.x3a{left:491.105400px;}
.x1b{left:492.198905px;}
.x16{left:498.904222px;}
.x1a{left:501.209870px;}
.x3f{left:503.858400px;}
.x2f{left:506.437050px;}
.x3e{left:512.410350px;}
.x23{left:522.668250px;}
.x11{left:534.836700px;}
.x2c{left:551.031900px;}
.x2e{left:552.939300px;}
.x1f{left:561.443250px;}
.x2d{left:577.680900px;}
.x28{left:595.897800px;}
.x26{left:601.126712px;}
.x2a{left:609.940003px;}
.x1e{left:611.507850px;}
.x20{left:615.360150px;}
.x24{left:616.597950px;}
.x27{left:627.446752px;}
.x25{left:630.832825px;}
.x2b{left:633.304050px;}
.x29{left:641.145450px;}
.x3c{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:708.443759px;}
.x22{left:709.633050px;}
.x3b{left:735.071400px;}
.x40{left:756.326400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls4f{letter-spacing:-0.085333pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls50{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.085333pt;}
.ls33{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls46{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls3b{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls4b{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.554667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls39{letter-spacing:0.682667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls4a{letter-spacing:0.725333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls41{letter-spacing:0.810667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls51{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls19{letter-spacing:0.960000pt;}
.ls49{letter-spacing:0.981333pt;}
.ls16{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls3a{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.ls44{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.226667pt;}
.lsa{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.333333pt;}
.ls3e{letter-spacing:1.365333pt;}
.ls22{letter-spacing:1.386667pt;}
.ls29{letter-spacing:1.440000pt;}
.lsf{letter-spacing:1.493333pt;}
.ls42{letter-spacing:1.536000pt;}
.ls17{letter-spacing:1.546667pt;}
.ls4d{letter-spacing:1.578667pt;}
.lse{letter-spacing:1.600000pt;}
.ls43{letter-spacing:1.749333pt;}
.ls2{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls25{letter-spacing:1.866667pt;}
.ls32{letter-spacing:1.920000pt;}
.ls3{letter-spacing:1.973333pt;}
.ls1{letter-spacing:2.026667pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls18{letter-spacing:2.133333pt;}
.ls4{letter-spacing:2.240000pt;}
.ls38{letter-spacing:2.293333pt;}
.ls3f{letter-spacing:2.304000pt;}
.ls24{letter-spacing:2.400000pt;}
.ls2e{letter-spacing:2.453333pt;}
.ls1a{letter-spacing:2.506667pt;}
.ls2c{letter-spacing:2.560000pt;}
.lsb{letter-spacing:2.613333pt;}
.ls3c{letter-spacing:2.666667pt;}
.ls21{letter-spacing:2.720000pt;}
.ls2f{letter-spacing:2.773333pt;}
.ls37{letter-spacing:3.093333pt;}
.ls47{letter-spacing:3.114667pt;}
.ls1d{letter-spacing:3.466667pt;}
.ls4c{letter-spacing:3.541333pt;}
.ls0{letter-spacing:4.320000pt;}
.ls10{letter-spacing:5.920000pt;}
.ls34{letter-spacing:5.973333pt;}
.ls35{letter-spacing:6.186667pt;}
.ls30{letter-spacing:6.933333pt;}
.ls36{letter-spacing:10.613333pt;}
.ws30{word-spacing:-17.333333pt;}
.ws2f{word-spacing:-15.786667pt;}
.ws4{word-spacing:-15.573333pt;}
.ws2e{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2c{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-14.453333pt;}
.ws2d{word-spacing:-14.293333pt;}
.ws6{word-spacing:-14.240000pt;}
.ws5b{word-spacing:-14.208000pt;}
.ws59{word-spacing:-13.781333pt;}
.ws31{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws56{word-spacing:-12.416000pt;}
.ws54{word-spacing:-12.032000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws32{word-spacing:-11.776000pt;}
.ws5c{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws55{word-spacing:-11.093333pt;}
.ws5a{word-spacing:-11.050667pt;}
.ws17{word-spacing:-11.009690pt;}
.ws58{word-spacing:-10.709333pt;}
.ws1c{word-spacing:-10.666667pt;}
.ws57{word-spacing:-10.581333pt;}
.ws1b{word-spacing:-10.496000pt;}
.ws70{word-spacing:-3.541333pt;}
.ws2a{word-spacing:-3.466667pt;}
.ws6b{word-spacing:-3.114667pt;}
.ws4f{word-spacing:-3.093333pt;}
.ws3d{word-spacing:-2.666667pt;}
.wse{word-spacing:-2.613333pt;}
.ws9{word-spacing:-2.565333pt;}
.ws28{word-spacing:-2.506667pt;}
.ws46{word-spacing:-2.453333pt;}
.ws40{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.293333pt;}
.ws1e{word-spacing:-2.178176pt;}
.ws26{word-spacing:-2.133333pt;}
.ws29{word-spacing:-2.026667pt;}
.ws49{word-spacing:-1.920000pt;}
.ws43{word-spacing:-1.866667pt;}
.ws36{word-spacing:-1.813333pt;}
.ws4d{word-spacing:-1.760000pt;}
.ws64{word-spacing:-1.749333pt;}
.ws10{word-spacing:-1.600000pt;}
.ws72{word-spacing:-1.578667pt;}
.ws22{word-spacing:-1.546667pt;}
.ws63{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.493333pt;}
.ws3c{word-spacing:-1.440000pt;}
.ws4e{word-spacing:-1.386667pt;}
.ws5f{word-spacing:-1.365333pt;}
.ws3f{word-spacing:-1.280000pt;}
.ws65{word-spacing:-1.152000pt;}
.ws21{word-spacing:-1.120000pt;}
.ws52{word-spacing:-1.109333pt;}
.ws34{word-spacing:-1.066667pt;}
.ws35{word-spacing:-1.013333pt;}
.ws6c{word-spacing:-0.981333pt;}
.ws24{word-spacing:-0.960000pt;}
.ws16{word-spacing:-0.906667pt;}
.ws71{word-spacing:-0.896000pt;}
.ws61{word-spacing:-0.853333pt;}
.ws62{word-spacing:-0.810667pt;}
.ws33{word-spacing:-0.800000pt;}
.ws6e{word-spacing:-0.725333pt;}
.ws23{word-spacing:-0.693333pt;}
.ws51{word-spacing:-0.682667pt;}
.wsf{word-spacing:-0.586667pt;}
.ws73{word-spacing:-0.554667pt;}
.ws1d{word-spacing:-0.498998pt;}
.ws48{word-spacing:-0.480000pt;}
.ws47{word-spacing:-0.426667pt;}
.ws6f{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.320000pt;}
.ws37{word-spacing:-0.266667pt;}
.ws68{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.213333pt;}
.ws5d{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.112533pt;}
.ws60{word-spacing:-0.085333pt;}
.ws41{word-spacing:-0.053333pt;}
.ws67{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.042667pt;}
.ws25{word-spacing:0.053333pt;}
.ws69{word-spacing:0.085333pt;}
.ws42{word-spacing:0.106667pt;}
.ws2b{word-spacing:0.170667pt;}
.ws27{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.173333pt;}
.ws3a{word-spacing:1.280000pt;}
.ws15{word-spacing:1.493333pt;}
.ws12{word-spacing:1.600000pt;}
.ws3b{word-spacing:1.866667pt;}
.ws6d{word-spacing:2.005333pt;}
.ws45{word-spacing:2.080000pt;}
.ws1f{word-spacing:2.400000pt;}
.ws50{word-spacing:2.560000pt;}
.ws66{word-spacing:2.688000pt;}
.wsa{word-spacing:2.826667pt;}
.ws38{word-spacing:3.360000pt;}
.wsd{word-spacing:3.413333pt;}
.ws5e{word-spacing:3.498667pt;}
.ws53{word-spacing:3.541333pt;}
.ws13{word-spacing:4.213333pt;}
.ws39{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws4c{word-spacing:4.906667pt;}
.ws18{word-spacing:263.099173pt;}
.ws19{word-spacing:276.469947pt;}
._10{margin-left:-2576.128000pt;}
._11{margin-left:-2554.965333pt;}
._d{margin-left:-492.346982pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-7.253333pt;}
._4{margin-left:-5.880000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._7{margin-left:-0.960000pt;}
._6{width:1.386667pt;}
._e{width:2.400000pt;}
._8{width:3.413333pt;}
._a{width:5.013333pt;}
._b{width:6.026667pt;}
._9{width:6.986667pt;}
._f{width:8.533333pt;}
._c{width:133.938022pt;}
.fsb{font-size:19.801600pt;}
.fsa{font-size:23.762133pt;}
.fs9{font-size:27.722133pt;}
.fsc{font-size:31.682667pt;}
.fsd{font-size:32.453333pt;}
.fse{font-size:32.453357pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:39.603200pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2b{bottom:42.468667pt;}
.yb4{bottom:71.219467pt;}
.ya8{bottom:74.462533pt;}
.y7d{bottom:74.901200pt;}
.y1b{bottom:78.248400pt;}
.yb3{bottom:84.552800pt;}
.y7c{bottom:88.895867pt;}
.ya7{bottom:90.462533pt;}
.y1a{bottom:91.576000pt;}
.yb2{bottom:97.886133pt;}
.y7b{bottom:102.890533pt;}
.ya6{bottom:106.462533pt;}
.yb1{bottom:111.219467pt;}
.y7a{bottom:116.885200pt;}
.ya5{bottom:122.462533pt;}
.yb0{bottom:124.552800pt;}
.y79{bottom:130.879867pt;}
.ya4{bottom:138.462533pt;}
.y28{bottom:142.557067pt;}
.y78{bottom:144.874533pt;}
.yaf{bottom:153.982533pt;}
.ya3{bottom:154.462533pt;}
.y27{bottom:158.557067pt;}
.y43{bottom:167.552000pt;}
.ya2{bottom:170.462533pt;}
.y44{bottom:172.697733pt;}
.y26{bottom:174.557067pt;}
.y34{bottom:175.994185pt;}
.y4a{bottom:176.939467pt;}
.y63{bottom:177.426800pt;}
.y45{bottom:183.083067pt;}
.ya1{bottom:186.462533pt;}
.y62{bottom:188.882400pt;}
.y2f{bottom:189.163057pt;}
.y25{bottom:190.557067pt;}
.y4b{bottom:190.745189pt;}
.y61{bottom:193.399600pt;}
.y60{bottom:199.815733pt;}
.ya0{bottom:202.462533pt;}
.y24{bottom:206.557067pt;}
.y30{bottom:211.915095pt;}
.y47{bottom:217.290133pt;}
.yae{bottom:218.102533pt;}
.y9f{bottom:218.462533pt;}
.y33{bottom:218.676533pt;}
.y53{bottom:219.402594pt;}
.y23{bottom:222.557067pt;}
.y2e{bottom:223.647543pt;}
.y46{bottom:227.190933pt;}
.y9e{bottom:234.462533pt;}
.y22{bottom:238.557067pt;}
.yad{bottom:250.102533pt;}
.y9d{bottom:250.462533pt;}
.y52{bottom:251.601852pt;}
.y5a{bottom:252.072533pt;}
.y3b{bottom:253.507548pt;}
.y21{bottom:254.557067pt;}
.y31{bottom:257.092446pt;}
.y49{bottom:258.744783pt;}
.y2c{bottom:260.932133pt;}
.y40{bottom:263.834082pt;}
.y9c{bottom:266.462533pt;}
.y5c{bottom:268.645733pt;}
.y32{bottom:269.517867pt;}
.y20{bottom:270.557067pt;}
.y51{bottom:271.568718pt;}
.y5b{bottom:278.715733pt;}
.y3c{bottom:279.893180pt;}
.y9b{bottom:282.462533pt;}
.y1f{bottom:286.557067pt;}
.y37{bottom:287.685109pt;}
.y5d{bottom:292.273082pt;}
.y9a{bottom:298.462533pt;}
.y4c{bottom:302.388800pt;}
.y1e{bottom:302.557067pt;}
.y5e{bottom:302.870934pt;}
.y35{bottom:304.635279pt;}
.y2d{bottom:305.616267pt;}
.y48{bottom:309.971522pt;}
.y39{bottom:311.575740pt;}
.y99{bottom:314.462533pt;}
.y1d{bottom:318.557067pt;}
.y5f{bottom:318.962000pt;}
.y54{bottom:329.982400pt;}
.y98{bottom:330.462533pt;}
.y4d{bottom:333.777185pt;}
.y1c{bottom:334.557067pt;}
.y3a{bottom:338.793039pt;}
.y42{bottom:340.822703pt;}
.y55{bottom:341.231200pt;}
.y3e{bottom:342.050402pt;}
.yac{bottom:346.102533pt;}
.y97{bottom:346.462533pt;}
.y96{bottom:362.462533pt;}
.y3d{bottom:366.495477pt;}
.y57{bottom:377.755251pt;}
.y95{bottom:378.462533pt;}
.y4e{bottom:379.809788pt;}
.y56{bottom:387.656051pt;}
.yab{bottom:394.102533pt;}
.y94{bottom:394.462533pt;}
.y19{bottom:402.323733pt;}
.y93{bottom:410.462533pt;}
.y41{bottom:424.078530pt;}
.y92{bottom:426.462533pt;}
.y18{bottom:426.630400pt;}
.y36{bottom:427.603215pt;}
.yaa{bottom:442.102533pt;}
.y91{bottom:442.462533pt;}
.y17{bottom:442.630400pt;}
.y64{bottom:452.723467pt;}
.y3f{bottom:457.513532pt;}
.y90{bottom:458.462533pt;}
.y16{bottom:458.630400pt;}
.y58{bottom:465.565446pt;}
.y8f{bottom:474.462533pt;}
.y15{bottom:474.630400pt;}
.y8e{bottom:490.462533pt;}
.y14{bottom:490.630400pt;}
.y66{bottom:490.687067pt;}
.y38{bottom:493.879170pt;}
.y8d{bottom:506.462533pt;}
.y13{bottom:506.630400pt;}
.y8c{bottom:522.462533pt;}
.y12{bottom:522.630400pt;}
.yd4{bottom:524.678667pt;}
.yd3{bottom:538.012000pt;}
.y8b{bottom:538.462533pt;}
.y11{bottom:538.630400pt;}
.y65{bottom:549.452800pt;}
.yd2{bottom:551.345333pt;}
.y8a{bottom:554.462533pt;}
.y10{bottom:554.630400pt;}
.y50{bottom:555.124559pt;}
.y6a{bottom:560.807733pt;}
.y4f{bottom:563.441199pt;}
.yd1{bottom:564.678667pt;}
.y68{bottom:566.824219pt;}
.y89{bottom:570.462533pt;}
.yf{bottom:570.630400pt;}
.y59{bottom:570.900058pt;}
.yd0{bottom:578.012000pt;}
.y69{bottom:583.932801pt;}
.y88{bottom:586.462533pt;}
.ye{bottom:586.630400pt;}
.ycf{bottom:591.345333pt;}
.y6b{bottom:598.651067pt;}
.y87{bottom:602.462533pt;}
.yd{bottom:602.630400pt;}
.yce{bottom:604.678667pt;}
.ycd{bottom:618.012000pt;}
.ya9{bottom:618.102533pt;}
.y86{bottom:618.462533pt;}
.y67{bottom:620.892487pt;}
.ycc{bottom:631.345333pt;}
.y85{bottom:634.462533pt;}
.yc{bottom:642.770933pt;}
.ycb{bottom:644.678667pt;}
.y84{bottom:650.462533pt;}
.yb{bottom:653.838267pt;}
.yca{bottom:658.012000pt;}
.y83{bottom:666.462533pt;}
.yc9{bottom:671.345333pt;}
.ya{bottom:682.029867pt;}
.y82{bottom:682.462533pt;}
.yc8{bottom:684.678667pt;}
.y9{bottom:694.029867pt;}
.yc7{bottom:698.012000pt;}
.y81{bottom:698.462533pt;}
.yc6{bottom:711.345333pt;}
.y80{bottom:714.462533pt;}
.y8{bottom:724.382933pt;}
.yc5{bottom:724.678667pt;}
.y7f{bottom:730.462533pt;}
.yc4{bottom:738.012000pt;}
.y77{bottom:746.462533pt;}
.yc3{bottom:751.345333pt;}
.y76{bottom:762.462533pt;}
.yc2{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.yc1{bottom:778.012000pt;}
.y75{bottom:778.462533pt;}
.yc0{bottom:791.345333pt;}
.y74{bottom:794.462533pt;}
.y6{bottom:797.816533pt;}
.ybf{bottom:804.678667pt;}
.y73{bottom:810.462533pt;}
.ybe{bottom:818.012000pt;}
.y72{bottom:826.462533pt;}
.y5{bottom:830.226133pt;}
.ybd{bottom:831.345333pt;}
.y71{bottom:842.462533pt;}
.ybc{bottom:844.678667pt;}
.ybb{bottom:858.012000pt;}
.y70{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.yba{bottom:871.345333pt;}
.y6f{bottom:874.462533pt;}
.yb9{bottom:884.678667pt;}
.y6e{bottom:890.462533pt;}
.y3{bottom:895.045333pt;}
.yb8{bottom:898.012000pt;}
.y6d{bottom:906.462533pt;}
.yb7{bottom:911.345333pt;}
.y6c{bottom:922.462533pt;}
.yb6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.yb5{bottom:1006.590133pt;}
.yd5{bottom:1006.598667pt;}
.y7e{bottom:1006.623867pt;}
.y2a{bottom:1009.860000pt;}
.y29{bottom:1022.660000pt;}
.h17{height:14.435444pt;}
.h14{height:17.322688pt;}
.h13{height:20.196007pt;}
.h16{height:23.081318pt;}
.h18{height:23.096788pt;}
.h19{height:23.626914pt;}
.h1a{height:23.626931pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.h12{height:28.832212pt;}
.h11{height:28.851550pt;}
.h15{height:28.870887pt;}
.hd{height:29.140625pt;}
.h6{height:29.160156pt;}
.hc{height:29.169756pt;}
.h1b{height:29.645833pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.he{height:37.057292pt;}
.h9{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.859942pt;}
.h8{height:38.880208pt;}
.h5{height:40.769531pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x31{left:80.623200pt;}
.x7{left:85.417333pt;}
.x1{left:86.929067pt;}
.x41{left:90.708667pt;}
.x4{left:94.488133pt;}
.x38{left:98.271467pt;}
.x34{left:102.697573pt;}
.x3{left:111.496667pt;}
.x5{left:117.165333pt;}
.x30{left:137.801333pt;}
.xa{left:151.164000pt;}
.x32{left:169.032933pt;}
.x12{left:170.416256pt;}
.xc{left:178.034782pt;}
.x33{left:233.724761pt;}
.x36{left:252.121867pt;}
.x37{left:287.692400pt;}
.x1c{left:309.007654pt;}
.x35{left:322.218111pt;}
.x17{left:340.650611pt;}
.x18{left:370.353011pt;}
.xb{left:375.862667pt;}
.xd{left:383.783307pt;}
.x10{left:390.312667pt;}
.x14{left:402.748429pt;}
.x8{left:404.481333pt;}
.x39{left:406.298133pt;}
.x1d{left:408.253274pt;}
.xf{left:409.614494pt;}
.xe{left:419.049956pt;}
.x15{left:420.144134pt;}
.x13{left:423.926240pt;}
.x3d{left:425.235867pt;}
.x6{left:427.112000pt;}
.x42{left:428.991333pt;}
.x19{left:431.153824pt;}
.x3a{left:436.538133pt;}
.x1b{left:437.510138pt;}
.x16{left:443.470419pt;}
.x1a{left:445.519885pt;}
.x3f{left:447.874133pt;}
.x2f{left:450.166267pt;}
.x3e{left:455.475867pt;}
.x23{left:464.594000pt;}
.x11{left:475.410400pt;}
.x2c{left:489.806133pt;}
.x2e{left:491.501600pt;}
.x1f{left:499.060667pt;}
.x2d{left:513.494133pt;}
.x28{left:529.686933pt;}
.x26{left:534.334855pt;}
.x2a{left:542.168892pt;}
.x1e{left:543.562533pt;}
.x20{left:546.986800pt;}
.x24{left:548.087067pt;}
.x27{left:557.730446pt;}
.x25{left:560.740289pt;}
.x2b{left:562.936933pt;}
.x29{left:569.907067pt;}
.x3c{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:629.727786pt;}
.x22{left:630.784933pt;}
.x3b{left:653.396800pt;}
.x40{left:672.290133pt;}
}




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