
    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_5fc9067575b565b0d29c0e1b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5f086c57c9a4708e96add30d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.753906;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_515765f50e7527f208a2f183.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041992;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_2ee4a2dec33c23424b83420f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_9064a42a9e7c9d606c442fbd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_d17cbb631465cd043f605960.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_5e6f429787cc2834c2832b9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_c1fc64cee7417ad5c67ba939.woff')format("woff");}.ffc{font-family:ffc;line-height:0.753418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_565c289f3ae2b54fd0f74be2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.745117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cfc354f55046c758e9272c53.woff')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c8247da3cce4b1797d950a8a.woff')format("woff");}.fff{font-family:fff;line-height:0.886719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ab3871b5a7df95266fcad90f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8414259768d5f268e8a390cb.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:ff13;src:url('chunks/assets/font_f39bb0cb28614233cbeb2bf7.woff')format("woff");}.ff13{font-family:ff13;line-height:0.850586;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:ff14;src:url('chunks/assets/font_0dc05394480890bbb770cea5.woff')format("woff");}.ff14{font-family:ff14;line-height:1.435059;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:ff15;src:url('chunks/assets/font_45896bc77a7fb162fa67f384.woff')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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:ff16;src:url('chunks/assets/font_908c89d5bf2127b4ac1930bb.woff')format("woff");}.ff16{font-family:ff16;line-height:0.914062;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:ff17;src:url('chunks/assets/font_d690305a451ed1695af211e2.woff')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v1{vertical-align:-7.920000px;}
.v4{vertical-align:-6.830451px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-4.553634px;}
.v8{vertical-align:-3.035756px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.035756px;}
.v6{vertical-align:4.553634px;}
.va{vertical-align:5.760000px;}
.v7{vertical-align:6.830451px;}
.v2{vertical-align:7.920000px;}
.ls3f{letter-spacing:-13.320000px;}
.ls3e{letter-spacing:-0.810000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls46{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.284602px;}
.ls40{letter-spacing:-0.270000px;}
.ls2f{letter-spacing:-0.190200px;}
.ls34{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.114000px;}
.ls33{letter-spacing:-0.094867px;}
.ls35{letter-spacing:-0.090000px;}
.ls2e{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls55{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.078000px;}
.ls25{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.094867px;}
.ls51{letter-spacing:0.156000px;}
.ls2c{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.189735px;}
.ls2b{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.284602px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.379470px;}
.ls38{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.569204px;}
.ls19{letter-spacing:0.664072px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.756000px;}
.ls15{letter-spacing:0.758939px;}
.ls28{letter-spacing:0.810000px;}
.ls13{letter-spacing:0.853806px;}
.ls48{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.990000px;}
.lsc{letter-spacing:1.043541px;}
.ls52{letter-spacing:1.440000px;}
.ls4a{letter-spacing:1.620000px;}
.ls3d{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.181950px;}
.ls6{letter-spacing:2.276817px;}
.ls26{letter-spacing:2.340000px;}
.lse{letter-spacing:2.940889px;}
.lsf{letter-spacing:3.130624px;}
.ls27{letter-spacing:3.576000px;}
.ls2d{letter-spacing:3.600000px;}
.ls24{letter-spacing:3.794695px;}
.ls22{letter-spacing:4.458767px;}
.ls42{letter-spacing:4.950000px;}
.ls9{letter-spacing:5.217706px;}
.ls16{letter-spacing:5.407441px;}
.ls8{letter-spacing:5.976645px;}
.ls1d{letter-spacing:6.735584px;}
.ls10{letter-spacing:7.494523px;}
.ls4c{letter-spacing:7.920000px;}
.ls4b{letter-spacing:8.100000px;}
.ls11{letter-spacing:8.253462px;}
.ls1f{letter-spacing:8.348330px;}
.ls21{letter-spacing:9.771340px;}
.ls1e{letter-spacing:10.504981px;}
.ls20{letter-spacing:10.530279px;}
.ls43{letter-spacing:11.520000px;}
.ls1a{letter-spacing:12.143025px;}
.ls44{letter-spacing:12.240000px;}
.ls17{letter-spacing:12.807096px;}
.ls39{letter-spacing:12.870000px;}
.ls2a{letter-spacing:12.960000px;}
.ls36{letter-spacing:13.590000px;}
.ls18{letter-spacing:13.660903px;}
.ls49{letter-spacing:16.020000px;}
.ls57{letter-spacing:16.506720px;}
.ls1c{letter-spacing:17.360731px;}
.ls53{letter-spacing:17.910000px;}
.ls1b{letter-spacing:18.119670px;}
.ls29{letter-spacing:22.950000px;}
.ls4e{letter-spacing:30.420000px;}
.ls3b{letter-spacing:41.940000px;}
.ls56{letter-spacing:46.026720px;}
.ls45{letter-spacing:49.590000px;}
.ls3c{letter-spacing:49.860000px;}
.ls47{letter-spacing:50.580000px;}
.ls54{letter-spacing:56.070000px;}
.ls4f{letter-spacing:61.356000px;}
.ls50{letter-spacing:61.380000px;}
.ls3a{letter-spacing:62.526000px;}
.ls7{letter-spacing:209.347012px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-90.000000px;}
.ws1d{word-spacing:-66.240000px;}
.ws12{word-spacing:-24.176880px;}
.ws19{word-spacing:-24.062880px;}
.ws6{word-spacing:-20.844000px;}
.ws0{word-spacing:-19.010880px;}
.wsa{word-spacing:-18.594007px;}
.ws2{word-spacing:-18.532800px;}
.wse{word-spacing:-18.499139px;}
.wsd{word-spacing:-18.404272px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-18.309405px;}
.wsf{word-spacing:-18.214537px;}
.wsb{word-spacing:-18.024802px;}
.ws11{word-spacing:-17.550000px;}
.ws10{word-spacing:-17.460000px;}
.ws8{word-spacing:-17.370000px;}
.ws1a{word-spacing:-17.190000px;}
.ws18{word-spacing:-17.100000px;}
.ws1c{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.819326px;}
.ws5{word-spacing:-15.696000px;}
.ws1b{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.650800px;}
.wsc{word-spacing:-14.647524px;}
.ws7{word-spacing:-3.672000px;}
.ws15{word-spacing:-0.090000px;}
.ws13{word-spacing:0.000000px;}
.ws16{word-spacing:22.230000px;}
._2{margin-left:-16.664880px;}
._8{margin-left:-14.445140px;}
._a{margin-left:-13.433745px;}
._2b{margin-left:-12.423869px;}
._45{margin-left:-10.918442px;}
._d{margin-left:-8.253462px;}
._3f{margin-left:-6.992222px;}
._f{margin-left:-4.933104px;}
._3{margin-left:-3.478929px;}
._10{margin-left:-2.454886px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._5{width:2.276358px;}
._4{width:3.833101px;}
._7{width:5.243528px;}
._c{width:6.982698px;}
._6{width:8.089549px;}
._e{width:9.348582px;}
._19{width:10.800000px;}
._14{width:11.970000px;}
._9{width:13.648778px;}
._11{width:15.204079px;}
._b{width:16.968678px;}
._1f{width:18.450967px;}
._26{width:19.475033px;}
._25{width:20.731604px;}
._38{width:22.470309px;}
._15{width:23.879691px;}
._13{width:25.368040px;}
._12{width:26.422362px;}
._2a{width:27.891120px;}
._17{width:29.250000px;}
._18{width:30.420000px;}
._33{width:31.770000px;}
._39{width:33.300000px;}
._16{width:34.560000px;}
._42{width:35.601120px;}
._32{width:36.810000px;}
._27{width:38.226000px;}
._37{width:39.600000px;}
._35{width:41.526000px;}
._36{width:42.804000px;}
._31{width:43.935120px;}
._2c{width:45.090000px;}
._2d{width:46.236000px;}
._2e{width:47.790000px;}
._3a{width:49.410000px;}
._22{width:50.736000px;}
._1e{width:51.840000px;}
._43{width:53.205120px;}
._40{width:54.360000px;}
._41{width:55.866000px;}
._24{width:57.240000px;}
._20{width:59.220000px;}
._21{width:60.636000px;}
._29{width:62.556000px;}
._28{width:64.228929px;}
._3b{width:66.486816px;}
._3d{width:69.570000px;}
._3e{width:70.650000px;}
._3c{width:71.820000px;}
._2f{width:74.790000px;}
._30{width:75.870000px;}
._44{width:77.108571px;}
._34{width:80.640000px;}
._47{width:86.906880px;}
._1d{width:153.608160px;}
._46{width:174.807360px;}
._23{width:181.890000px;}
._1b{width:189.617520px;}
._1c{width:197.647200px;}
._48{width:238.000320px;}
._49{width:846.876000px;}
._1a{width:972.120000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(36,64,97);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs7{font-size:23.760000px;}
.fsc{font-size:36.000000px;}
.fs9{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fse{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs0{font-size:77.760000px;}
.fsd{font-size:81.965417px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs8{font-size:94.867381px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.900000px;}
.y16{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y2{bottom:3.420000px;}
.y7{bottom:6.660000px;}
.y32{bottom:7.020000px;}
.y9{bottom:7.380000px;}
.y5{bottom:8.460000px;}
.ye{bottom:13.680000px;}
.y14{bottom:32.985000px;}
.y4{bottom:33.120000px;}
.yd{bottom:49.500000px;}
.y30{bottom:51.266161px;}
.y72{bottom:51.441728px;}
.y13{bottom:59.985000px;}
.y71{bottom:78.299999px;}
.y35{bottom:78.300000px;}
.y12{bottom:89.865000px;}
.y2f{bottom:115.380000px;}
.y55{bottom:121.140000px;}
.y70{bottom:124.380000px;}
.y97{bottom:145.980000px;}
.y2e{bottom:149.040000px;}
.y54{bottom:154.800000px;}
.y6f{bottom:158.040000px;}
.y83{bottom:164.160000px;}
.ya2{bottom:170.280000px;}
.y96{bottom:179.640000px;}
.y2d{bottom:182.700000px;}
.y53{bottom:188.640000px;}
.y6e{bottom:191.880000px;}
.y82{bottom:197.820000px;}
.ye0{bottom:201.780000px;}
.ya1{bottom:203.940000px;}
.y2c{bottom:216.570000px;}
.y95{bottom:219.450000px;}
.ydf{bottom:222.150000px;}
.y52{bottom:222.330000px;}
.y6d{bottom:225.570000px;}
.y81{bottom:231.690000px;}
.ya0{bottom:237.810000px;}
.yb8{bottom:247.530000px;}
.y2b{bottom:250.230000px;}
.y94{bottom:253.110000px;}
.y51{bottom:255.990000px;}
.yde{bottom:257.430000px;}
.y6c{bottom:259.230000px;}
.y80{bottom:265.350000px;}
.y9f{bottom:271.470000px;}
.yb7{bottom:272.190000px;}
.ydd{bottom:282.090000px;}
.y2a{bottom:283.890000px;}
.y93{bottom:286.950000px;}
.y50{bottom:289.830000px;}
.y6b{bottom:293.070000px;}
.yb6{bottom:296.850000px;}
.y7f{bottom:305.130000px;}
.ydc{bottom:306.750000px;}
.y29{bottom:317.730000px;}
.y92{bottom:320.610000px;}
.yb5{bottom:321.510000px;}
.y4f{bottom:323.490000px;}
.y6a{bottom:326.730000px;}
.ydb{bottom:331.410000px;}
.y7e{bottom:338.970000px;}
.yb4{bottom:346.170000px;}
.y28{bottom:351.390000px;}
.yda{bottom:356.070000px;}
.y4e{bottom:357.150000px;}
.y69{bottom:360.390000px;}
.yb3{bottom:370.830000px;}
.y7d{bottom:372.630000px;}
.yd9{bottom:380.730000px;}
.y4d{bottom:390.990000px;}
.y68{bottom:394.230000px;}
.yb2{bottom:395.490000px;}
.y27{bottom:398.370000px;}
.yd8{bottom:405.390000px;}
.y7c{bottom:406.290000px;}
.yb1{bottom:420.150000px;}
.y4c{bottom:424.650000px;}
.y67{bottom:427.890000px;}
.yd7{bottom:430.050000px;}
.y26{bottom:435.090000px;}
.y9e{bottom:440.130000px;}
.yb0{bottom:444.855000px;}
.y7b{bottom:446.295000px;}
.yd6{bottom:454.755000px;}
.y4b{bottom:458.355000px;}
.y66{bottom:461.595000px;}
.y25{bottom:465.015000px;}
.yaf{bottom:469.515000px;}
.y9d{bottom:473.835000px;}
.yd5{bottom:479.595000px;}
.y7a{bottom:479.955000px;}
.y4a{bottom:492.195000px;}
.yae{bottom:494.175000px;}
.y24{bottom:494.895000px;}
.y65{bottom:495.435000px;}
.y91{bottom:501.375000px;}
.yd4{bottom:504.255000px;}
.y9c{bottom:507.495000px;}
.y79{bottom:513.615000px;}
.yad{bottom:518.835000px;}
.y23{bottom:524.775000px;}
.y49{bottom:525.855000px;}
.yd3{bottom:528.915000px;}
.y64{bottom:529.095000px;}
.y90{bottom:535.215000px;}
.y9b{bottom:541.335000px;}
.yac{bottom:543.495000px;}
.y78{bottom:547.455000px;}
.yd2{bottom:553.575000px;}
.y22{bottom:554.655000px;}
.y48{bottom:559.515000px;}
.y63{bottom:562.755000px;}
.yab{bottom:568.155000px;}
.y8f{bottom:568.875000px;}
.y9a{bottom:574.995000px;}
.yd1{bottom:578.235000px;}
.y77{bottom:581.115000px;}
.y21{bottom:584.355000px;}
.yaa{bottom:592.815000px;}
.y47{bottom:593.355000px;}
.y62{bottom:602.535000px;}
.yd0{bottom:602.895000px;}
.y99{bottom:608.655000px;}
.y20{bottom:614.235000px;}
.ya9{bottom:617.475000px;}
.y76{bottom:620.895000px;}
.y46{bottom:627.015000px;}
.ycf{bottom:627.555000px;}
.y61{bottom:636.375000px;}
.ya8{bottom:642.135000px;}
.y98{bottom:642.495000px;}
.y1f{bottom:644.115000px;}
.yce{bottom:652.215000px;}
.y75{bottom:654.555000px;}
.y45{bottom:660.675000px;}
.ya7{bottom:666.795000px;}
.y60{bottom:670.035000px;}
.y1e{bottom:673.815000px;}
.y8e{bottom:676.185000px;}
.ycd{bottom:676.905000px;}
.y74{bottom:688.425000px;}
.ya6{bottom:691.485000px;}
.y44{bottom:694.545000px;}
.ycc{bottom:701.565000px;}
.y1d{bottom:703.725000px;}
.y5f{bottom:709.845000px;}
.ya5{bottom:716.145000px;}
.y73{bottom:722.085000px;}
.ycb{bottom:726.225000px;}
.y43{bottom:728.205000px;}
.y1c{bottom:733.605000px;}
.ya4{bottom:740.445000px;}
.y5e{bottom:743.685000px;}
.yca{bottom:750.885000px;}
.y42{bottom:761.865000px;}
.y1b{bottom:763.485000px;}
.ya3{bottom:765.105000px;}
.yc9{bottom:775.545000px;}
.y5d{bottom:777.345000px;}
.y1a{bottom:793.185000px;}
.y41{bottom:795.705000px;}
.yc8{bottom:800.205000px;}
.y8d{bottom:811.005000px;}
.y5c{bottom:817.125000px;}
.y19{bottom:823.065000px;}
.yc7{bottom:824.865000px;}
.y40{bottom:829.365000px;}
.y8c{bottom:844.845000px;}
.yc6{bottom:849.525000px;}
.y5b{bottom:850.965000px;}
.y18{bottom:852.945000px;}
.y3f{bottom:863.025000px;}
.yc5{bottom:874.185000px;}
.y17{bottom:875.805000px;}
.y8b{bottom:878.505000px;}
.y15{bottom:883.185000px;}
.y5a{bottom:884.625000px;}
.y11{bottom:890.385000px;}
.y3e{bottom:896.865000px;}
.y31{bottom:897.367199px;}
.yc4{bottom:898.845000px;}
.y59{bottom:918.330000px;}
.yc3{bottom:923.550000px;}
.y3d{bottom:930.570000px;}
.yc2{bottom:948.210000px;}
.y8a{bottom:952.170000px;}
.y58{bottom:958.110000px;}
.y3c{bottom:964.230000px;}
.yc1{bottom:972.870000px;}
.y89{bottom:985.830000px;}
.y57{bottom:991.950000px;}
.yc0{bottom:997.530000px;}
.y3b{bottom:998.070000px;}
.yf{bottom:998.610000px;}
.yc{bottom:1004.910000px;}
.y88{bottom:1019.490000px;}
.ybf{bottom:1022.190000px;}
.y56{bottom:1025.610000px;}
.y3a{bottom:1031.730000px;}
.ybe{bottom:1046.850000px;}
.y87{bottom:1059.270000px;}
.y39{bottom:1065.390000px;}
.ybd{bottom:1071.510000px;}
.ya{bottom:1076.550000px;}
.y8{bottom:1081.950000px;}
.y86{bottom:1093.110000px;}
.ybc{bottom:1096.170000px;}
.y38{bottom:1099.230000px;}
.y1{bottom:1106.250000px;}
.ybb{bottom:1120.830000px;}
.y85{bottom:1126.770000px;}
.y6{bottom:1128.570000px;}
.y37{bottom:1132.890000px;}
.yba{bottom:1145.520000px;}
.y3{bottom:1156.860000px;}
.y84{bottom:1160.460000px;}
.y36{bottom:1166.580000px;}
.yb9{bottom:1170.180000px;}
.y34{bottom:1187.280000px;}
.y33{bottom:1200.600000px;}
.hb{height:5.385000px;}
.hf{height:6.285000px;}
.h17{height:7.200000px;}
.hc{height:13.324219px;}
.h18{height:17.587969px;}
.h10{height:19.008000px;}
.h7{height:22.305000px;}
.h9{height:24.285000px;}
.h19{height:24.609375px;}
.h6{height:28.290000px;}
.h1d{height:30.480469px;}
.h4{height:52.920000px;}
.h16{height:55.586356px;}
.h8{height:56.084062px;}
.h15{height:58.621992px;}
.h1e{height:60.033265px;}
.ha{height:60.960938px;}
.h14{height:61.523438px;}
.h1b{height:62.275078px;}
.h24{height:64.978594px;}
.h23{height:65.010937px;}
.h12{height:65.917969px;}
.h22{height:66.757500px;}
.h26{height:67.803750px;}
.h25{height:67.837500px;}
.h13{height:69.482945px;}
.h5{height:71.324297px;}
.hd{height:71.625000px;}
.h1c{height:72.562500px;}
.h20{height:76.279219px;}
.h3{height:76.317188px;}
.he{height:79.101562px;}
.h1a{height:88.286133px;}
.h1f{height:92.505818px;}
.h21{height:93.691406px;}
.h2{height:103.530000px;}
.h11{height:108.202500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x4{left:10.965000px;}
.xf{left:20.685000px;}
.x12{left:32.929500px;}
.xa{left:34.185000px;}
.xd{left:49.714500px;}
.x8{left:53.265000px;}
.x1{left:60.841500px;}
.xb{left:81.525000px;}
.xe{left:85.125000px;}
.xc{left:95.925000px;}
.x7{left:107.850000px;}
.x2{left:110.008500px;}
.x10{left:111.106500px;}
.x3a{left:118.656000px;}
.x39{left:135.036000px;}
.x15{left:140.743500px;}
.x3b{left:150.510000px;}
.x1b{left:155.190000px;}
.x1a{left:162.030000px;}
.x3{left:168.885000px;}
.x37{left:197.853948px;}
.x38{left:207.385896px;}
.x5{left:209.010000px;}
.x17{left:210.808500px;}
.x1c{left:216.390000px;}
.x1d{left:257.250000px;}
.x1e{left:268.455000px;}
.x14{left:277.048500px;}
.x13{left:311.968500px;}
.x1f{left:320.115000px;}
.x20{left:325.875000px;}
.x33{left:327.215973px;}
.x11{left:335.578500px;}
.x18{left:362.578500px;}
.x21{left:371.955000px;}
.x22{left:383.295000px;}
.x23{left:431.355000px;}
.x24{left:436.935000px;}
.x34{left:440.338500px;}
.x9{left:445.620000px;}
.x30{left:473.505000px;}
.x36{left:484.125000px;}
.x35{left:500.505000px;}
.x25{left:505.365000px;}
.x26{left:516.525000px;}
.x31{left:527.505000px;}
.x16{left:530.203500px;}
.x27{left:564.585000px;}
.x28{left:570.345000px;}
.x29{left:609.405000px;}
.x2a{left:620.790000px;}
.x2b{left:628.170000px;}
.x2c{left:635.550000px;}
.x2d{left:681.810000px;}
.x2e{left:687.390000px;}
.x2f{left:712.410000px;}
.x6{left:722.490000px;}
.x32{left:748.949994px;}
@media print{
.v1{vertical-align:-7.040000pt;}
.v4{vertical-align:-6.071512pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-4.047675pt;}
.v8{vertical-align:-2.698450pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.698450pt;}
.v6{vertical-align:4.047675pt;}
.va{vertical-align:5.120000pt;}
.v7{vertical-align:6.071512pt;}
.v2{vertical-align:7.040000pt;}
.ls3f{letter-spacing:-11.840000pt;}
.ls3e{letter-spacing:-0.720000pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.252980pt;}
.ls40{letter-spacing:-0.240000pt;}
.ls2f{letter-spacing:-0.169067pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.101333pt;}
.ls33{letter-spacing:-0.084327pt;}
.ls35{letter-spacing:-0.080000pt;}
.ls2e{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls55{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.069333pt;}
.ls25{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.084327pt;}
.ls51{letter-spacing:0.138667pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.168653pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.252980pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.337306pt;}
.ls38{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.505959pt;}
.ls19{letter-spacing:0.590286pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls15{letter-spacing:0.674612pt;}
.ls28{letter-spacing:0.720000pt;}
.ls13{letter-spacing:0.758939pt;}
.ls48{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.880000pt;}
.lsc{letter-spacing:0.927592pt;}
.ls52{letter-spacing:1.280000pt;}
.ls4a{letter-spacing:1.440000pt;}
.ls3d{letter-spacing:1.920000pt;}
.lsd{letter-spacing:1.939511pt;}
.ls6{letter-spacing:2.023837pt;}
.ls26{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.614123pt;}
.lsf{letter-spacing:2.782777pt;}
.ls27{letter-spacing:3.178667pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls24{letter-spacing:3.373062pt;}
.ls22{letter-spacing:3.963348pt;}
.ls42{letter-spacing:4.400000pt;}
.ls9{letter-spacing:4.637961pt;}
.ls16{letter-spacing:4.806614pt;}
.ls8{letter-spacing:5.312573pt;}
.ls1d{letter-spacing:5.987186pt;}
.ls10{letter-spacing:6.661798pt;}
.ls4c{letter-spacing:7.040000pt;}
.ls4b{letter-spacing:7.200000pt;}
.ls11{letter-spacing:7.336411pt;}
.ls1f{letter-spacing:7.420737pt;}
.ls21{letter-spacing:8.685636pt;}
.ls1e{letter-spacing:9.337761pt;}
.ls20{letter-spacing:9.360248pt;}
.ls43{letter-spacing:10.240000pt;}
.ls1a{letter-spacing:10.793800pt;}
.ls44{letter-spacing:10.880000pt;}
.ls17{letter-spacing:11.384086pt;}
.ls39{letter-spacing:11.440000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls36{letter-spacing:12.080000pt;}
.ls18{letter-spacing:12.143025pt;}
.ls49{letter-spacing:14.240000pt;}
.ls57{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:15.431761pt;}
.ls53{letter-spacing:15.920000pt;}
.ls1b{letter-spacing:16.106373pt;}
.ls29{letter-spacing:20.400000pt;}
.ls4e{letter-spacing:27.040000pt;}
.ls3b{letter-spacing:37.280000pt;}
.ls56{letter-spacing:40.912640pt;}
.ls45{letter-spacing:44.080000pt;}
.ls3c{letter-spacing:44.320000pt;}
.ls47{letter-spacing:44.960000pt;}
.ls54{letter-spacing:49.840000pt;}
.ls4f{letter-spacing:54.538667pt;}
.ls50{letter-spacing:54.560000pt;}
.ls3a{letter-spacing:55.578667pt;}
.ls7{letter-spacing:186.086233pt;}
.ws17{word-spacing:-80.000000pt;}
.ws1d{word-spacing:-58.880000pt;}
.ws12{word-spacing:-21.490560pt;}
.ws19{word-spacing:-21.389227pt;}
.ws6{word-spacing:-18.528000pt;}
.ws0{word-spacing:-16.898560pt;}
.wsa{word-spacing:-16.528006pt;}
.ws2{word-spacing:-16.473600pt;}
.wse{word-spacing:-16.443679pt;}
.wsd{word-spacing:-16.359353pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-16.275026pt;}
.wsf{word-spacing:-16.190700pt;}
.wsb{word-spacing:-16.022047pt;}
.ws11{word-spacing:-15.600000pt;}
.ws10{word-spacing:-15.520000pt;}
.ws8{word-spacing:-15.440000pt;}
.ws1a{word-spacing:-15.280000pt;}
.ws18{word-spacing:-15.200000pt;}
.ws1c{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws14{word-spacing:-14.061623pt;}
.ws5{word-spacing:-13.952000pt;}
.ws1b{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsc{word-spacing:-13.020021pt;}
.ws7{word-spacing:-3.264000pt;}
.ws15{word-spacing:-0.080000pt;}
.ws13{word-spacing:0.000000pt;}
.ws16{word-spacing:19.760000pt;}
._2{margin-left:-14.813227pt;}
._8{margin-left:-12.840124pt;}
._a{margin-left:-11.941107pt;}
._2b{margin-left:-11.043439pt;}
._45{margin-left:-9.705282pt;}
._d{margin-left:-7.336411pt;}
._3f{margin-left:-6.215308pt;}
._f{margin-left:-4.384981pt;}
._3{margin-left:-3.092382pt;}
._10{margin-left:-2.182121pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._5{width:2.023430pt;}
._4{width:3.407201pt;}
._7{width:4.660914pt;}
._c{width:6.206843pt;}
._6{width:7.190711pt;}
._e{width:8.309851pt;}
._19{width:9.600000pt;}
._14{width:10.640000pt;}
._9{width:12.132247pt;}
._11{width:13.514737pt;}
._b{width:15.083269pt;}
._1f{width:16.400860pt;}
._26{width:17.311140pt;}
._25{width:18.428092pt;}
._38{width:19.973608pt;}
._15{width:21.226392pt;}
._13{width:22.549369pt;}
._12{width:23.486544pt;}
._2a{width:24.792107pt;}
._17{width:26.000000pt;}
._18{width:27.040000pt;}
._33{width:28.240000pt;}
._39{width:29.600000pt;}
._16{width:30.720000pt;}
._42{width:31.645440pt;}
._32{width:32.720000pt;}
._27{width:33.978667pt;}
._37{width:35.200000pt;}
._35{width:36.912000pt;}
._36{width:38.048000pt;}
._31{width:39.053440pt;}
._2c{width:40.080000pt;}
._2d{width:41.098667pt;}
._2e{width:42.480000pt;}
._3a{width:43.920000pt;}
._22{width:45.098667pt;}
._1e{width:46.080000pt;}
._43{width:47.293440pt;}
._40{width:48.320000pt;}
._41{width:49.658667pt;}
._24{width:50.880000pt;}
._20{width:52.640000pt;}
._21{width:53.898667pt;}
._29{width:55.605333pt;}
._28{width:57.092382pt;}
._3b{width:59.099392pt;}
._3d{width:61.840000pt;}
._3e{width:62.800000pt;}
._3c{width:63.840000pt;}
._2f{width:66.480000pt;}
._30{width:67.440000pt;}
._44{width:68.540952pt;}
._34{width:71.680000pt;}
._47{width:77.250560pt;}
._1d{width:136.540587pt;}
._46{width:155.384320pt;}
._23{width:161.680000pt;}
._1b{width:168.548907pt;}
._1c{width:175.686400pt;}
._48{width:211.555840pt;}
._49{width:752.778667pt;}
._1a{width:864.106667pt;}
.fs4{font-size:16.000000pt;}
.fs7{font-size:21.120000pt;}
.fsc{font-size:32.000000pt;}
.fs9{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fse{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs0{font-size:69.120000pt;}
.fsd{font-size:72.858149pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs8{font-size:84.326561pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.800000pt;}
.y16{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y2{bottom:3.040000pt;}
.y7{bottom:5.920000pt;}
.y32{bottom:6.240000pt;}
.y9{bottom:6.560000pt;}
.y5{bottom:7.520000pt;}
.ye{bottom:12.160000pt;}
.y14{bottom:29.320000pt;}
.y4{bottom:29.440000pt;}
.yd{bottom:44.000000pt;}
.y30{bottom:45.569921pt;}
.y72{bottom:45.725980pt;}
.y13{bottom:53.320000pt;}
.y71{bottom:69.599999pt;}
.y35{bottom:69.600000pt;}
.y12{bottom:79.880000pt;}
.y2f{bottom:102.560000pt;}
.y55{bottom:107.680000pt;}
.y70{bottom:110.560000pt;}
.y97{bottom:129.760000pt;}
.y2e{bottom:132.480000pt;}
.y54{bottom:137.600000pt;}
.y6f{bottom:140.480000pt;}
.y83{bottom:145.920000pt;}
.ya2{bottom:151.360000pt;}
.y96{bottom:159.680000pt;}
.y2d{bottom:162.400000pt;}
.y53{bottom:167.680000pt;}
.y6e{bottom:170.560000pt;}
.y82{bottom:175.840000pt;}
.ye0{bottom:179.360000pt;}
.ya1{bottom:181.280000pt;}
.y2c{bottom:192.506667pt;}
.y95{bottom:195.066667pt;}
.ydf{bottom:197.466667pt;}
.y52{bottom:197.626667pt;}
.y6d{bottom:200.506667pt;}
.y81{bottom:205.946667pt;}
.ya0{bottom:211.386667pt;}
.yb8{bottom:220.026667pt;}
.y2b{bottom:222.426667pt;}
.y94{bottom:224.986667pt;}
.y51{bottom:227.546667pt;}
.yde{bottom:228.826667pt;}
.y6c{bottom:230.426667pt;}
.y80{bottom:235.866667pt;}
.y9f{bottom:241.306667pt;}
.yb7{bottom:241.946667pt;}
.ydd{bottom:250.746667pt;}
.y2a{bottom:252.346667pt;}
.y93{bottom:255.066667pt;}
.y50{bottom:257.626667pt;}
.y6b{bottom:260.506667pt;}
.yb6{bottom:263.866667pt;}
.y7f{bottom:271.226667pt;}
.ydc{bottom:272.666667pt;}
.y29{bottom:282.426667pt;}
.y92{bottom:284.986667pt;}
.yb5{bottom:285.786667pt;}
.y4f{bottom:287.546667pt;}
.y6a{bottom:290.426667pt;}
.ydb{bottom:294.586667pt;}
.y7e{bottom:301.306667pt;}
.yb4{bottom:307.706667pt;}
.y28{bottom:312.346667pt;}
.yda{bottom:316.506667pt;}
.y4e{bottom:317.466667pt;}
.y69{bottom:320.346667pt;}
.yb3{bottom:329.626667pt;}
.y7d{bottom:331.226667pt;}
.yd9{bottom:338.426667pt;}
.y4d{bottom:347.546667pt;}
.y68{bottom:350.426667pt;}
.yb2{bottom:351.546667pt;}
.y27{bottom:354.106667pt;}
.yd8{bottom:360.346667pt;}
.y7c{bottom:361.146667pt;}
.yb1{bottom:373.466667pt;}
.y4c{bottom:377.466667pt;}
.y67{bottom:380.346667pt;}
.yd7{bottom:382.266667pt;}
.y26{bottom:386.746667pt;}
.y9e{bottom:391.226667pt;}
.yb0{bottom:395.426667pt;}
.y7b{bottom:396.706667pt;}
.yd6{bottom:404.226667pt;}
.y4b{bottom:407.426667pt;}
.y66{bottom:410.306667pt;}
.y25{bottom:413.346667pt;}
.yaf{bottom:417.346667pt;}
.y9d{bottom:421.186667pt;}
.yd5{bottom:426.306667pt;}
.y7a{bottom:426.626667pt;}
.y4a{bottom:437.506667pt;}
.yae{bottom:439.266667pt;}
.y24{bottom:439.906667pt;}
.y65{bottom:440.386667pt;}
.y91{bottom:445.666667pt;}
.yd4{bottom:448.226667pt;}
.y9c{bottom:451.106667pt;}
.y79{bottom:456.546667pt;}
.yad{bottom:461.186667pt;}
.y23{bottom:466.466667pt;}
.y49{bottom:467.426667pt;}
.yd3{bottom:470.146667pt;}
.y64{bottom:470.306667pt;}
.y90{bottom:475.746667pt;}
.y9b{bottom:481.186667pt;}
.yac{bottom:483.106667pt;}
.y78{bottom:486.626667pt;}
.yd2{bottom:492.066667pt;}
.y22{bottom:493.026667pt;}
.y48{bottom:497.346667pt;}
.y63{bottom:500.226667pt;}
.yab{bottom:505.026667pt;}
.y8f{bottom:505.666667pt;}
.y9a{bottom:511.106667pt;}
.yd1{bottom:513.986667pt;}
.y77{bottom:516.546667pt;}
.y21{bottom:519.426667pt;}
.yaa{bottom:526.946667pt;}
.y47{bottom:527.426667pt;}
.y62{bottom:535.586667pt;}
.yd0{bottom:535.906667pt;}
.y99{bottom:541.026667pt;}
.y20{bottom:545.986667pt;}
.ya9{bottom:548.866667pt;}
.y76{bottom:551.906667pt;}
.y46{bottom:557.346667pt;}
.ycf{bottom:557.826667pt;}
.y61{bottom:565.666667pt;}
.ya8{bottom:570.786667pt;}
.y98{bottom:571.106667pt;}
.y1f{bottom:572.546667pt;}
.yce{bottom:579.746667pt;}
.y75{bottom:581.826667pt;}
.y45{bottom:587.266667pt;}
.ya7{bottom:592.706667pt;}
.y60{bottom:595.586667pt;}
.y1e{bottom:598.946667pt;}
.y8e{bottom:601.053333pt;}
.ycd{bottom:601.693333pt;}
.y74{bottom:611.933333pt;}
.ya6{bottom:614.653333pt;}
.y44{bottom:617.373333pt;}
.ycc{bottom:623.613333pt;}
.y1d{bottom:625.533333pt;}
.y5f{bottom:630.973333pt;}
.ya5{bottom:636.573333pt;}
.y73{bottom:641.853333pt;}
.ycb{bottom:645.533333pt;}
.y43{bottom:647.293333pt;}
.y1c{bottom:652.093333pt;}
.ya4{bottom:658.173333pt;}
.y5e{bottom:661.053333pt;}
.yca{bottom:667.453333pt;}
.y42{bottom:677.213333pt;}
.y1b{bottom:678.653333pt;}
.ya3{bottom:680.093333pt;}
.yc9{bottom:689.373333pt;}
.y5d{bottom:690.973333pt;}
.y1a{bottom:705.053333pt;}
.y41{bottom:707.293333pt;}
.yc8{bottom:711.293333pt;}
.y8d{bottom:720.893333pt;}
.y5c{bottom:726.333333pt;}
.y19{bottom:731.613333pt;}
.yc7{bottom:733.213333pt;}
.y40{bottom:737.213333pt;}
.y8c{bottom:750.973333pt;}
.yc6{bottom:755.133333pt;}
.y5b{bottom:756.413333pt;}
.y18{bottom:758.173333pt;}
.y3f{bottom:767.133333pt;}
.yc5{bottom:777.053333pt;}
.y17{bottom:778.493333pt;}
.y8b{bottom:780.893333pt;}
.y15{bottom:785.053333pt;}
.y5a{bottom:786.333333pt;}
.y11{bottom:791.453333pt;}
.y3e{bottom:797.213333pt;}
.y31{bottom:797.659733pt;}
.yc4{bottom:798.973333pt;}
.y59{bottom:816.293333pt;}
.yc3{bottom:820.933333pt;}
.y3d{bottom:827.173333pt;}
.yc2{bottom:842.853333pt;}
.y8a{bottom:846.373333pt;}
.y58{bottom:851.653333pt;}
.y3c{bottom:857.093333pt;}
.yc1{bottom:864.773333pt;}
.y89{bottom:876.293333pt;}
.y57{bottom:881.733333pt;}
.yc0{bottom:886.693333pt;}
.y3b{bottom:887.173333pt;}
.yf{bottom:887.653333pt;}
.yc{bottom:893.253333pt;}
.y88{bottom:906.213333pt;}
.ybf{bottom:908.613333pt;}
.y56{bottom:911.653333pt;}
.y3a{bottom:917.093333pt;}
.ybe{bottom:930.533333pt;}
.y87{bottom:941.573333pt;}
.y39{bottom:947.013333pt;}
.ybd{bottom:952.453333pt;}
.ya{bottom:956.933333pt;}
.y8{bottom:961.733333pt;}
.y86{bottom:971.653333pt;}
.ybc{bottom:974.373333pt;}
.y38{bottom:977.093333pt;}
.y1{bottom:983.333333pt;}
.ybb{bottom:996.293333pt;}
.y85{bottom:1001.573333pt;}
.y6{bottom:1003.173333pt;}
.y37{bottom:1007.013333pt;}
.yba{bottom:1018.240000pt;}
.y3{bottom:1028.320000pt;}
.y84{bottom:1031.520000pt;}
.y36{bottom:1036.960000pt;}
.yb9{bottom:1040.160000pt;}
.y34{bottom:1055.360000pt;}
.y33{bottom:1067.200000pt;}
.hb{height:4.786667pt;}
.hf{height:5.586667pt;}
.h17{height:6.400000pt;}
.hc{height:11.843750pt;}
.h18{height:15.633750pt;}
.h10{height:16.896000pt;}
.h7{height:19.826667pt;}
.h9{height:21.586667pt;}
.h19{height:21.875000pt;}
.h6{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h4{height:47.040000pt;}
.h16{height:49.410094pt;}
.h8{height:49.852500pt;}
.h15{height:52.108438pt;}
.h1e{height:53.362902pt;}
.ha{height:54.187500pt;}
.h14{height:54.687500pt;}
.h1b{height:55.355625pt;}
.h24{height:57.758750pt;}
.h23{height:57.787500pt;}
.h12{height:58.593750pt;}
.h22{height:59.340000pt;}
.h26{height:60.270000pt;}
.h25{height:60.300000pt;}
.h13{height:61.762618pt;}
.h5{height:63.399375pt;}
.hd{height:63.666667pt;}
.h1c{height:64.500000pt;}
.h20{height:67.803750pt;}
.h3{height:67.837500pt;}
.he{height:70.312500pt;}
.h1a{height:78.476562pt;}
.h1f{height:82.227394pt;}
.h21{height:83.281250pt;}
.h2{height:92.026667pt;}
.h11{height:96.180000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x4{left:9.746667pt;}
.xf{left:18.386667pt;}
.x12{left:29.270667pt;}
.xa{left:30.386667pt;}
.xd{left:44.190667pt;}
.x8{left:47.346667pt;}
.x1{left:54.081333pt;}
.xb{left:72.466667pt;}
.xe{left:75.666667pt;}
.xc{left:85.266667pt;}
.x7{left:95.866667pt;}
.x2{left:97.785333pt;}
.x10{left:98.761333pt;}
.x3a{left:105.472000pt;}
.x39{left:120.032000pt;}
.x15{left:125.105333pt;}
.x3b{left:133.786667pt;}
.x1b{left:137.946667pt;}
.x1a{left:144.026667pt;}
.x3{left:150.120000pt;}
.x37{left:175.870176pt;}
.x38{left:184.343019pt;}
.x5{left:185.786667pt;}
.x17{left:187.385333pt;}
.x1c{left:192.346667pt;}
.x1d{left:228.666667pt;}
.x1e{left:238.626667pt;}
.x14{left:246.265333pt;}
.x13{left:277.305333pt;}
.x1f{left:284.546667pt;}
.x20{left:289.666667pt;}
.x33{left:290.858643pt;}
.x11{left:298.292000pt;}
.x18{left:322.292000pt;}
.x21{left:330.626667pt;}
.x22{left:340.706667pt;}
.x23{left:383.426667pt;}
.x24{left:388.386667pt;}
.x34{left:391.412000pt;}
.x9{left:396.106667pt;}
.x30{left:420.893333pt;}
.x36{left:430.333333pt;}
.x35{left:444.893333pt;}
.x25{left:449.213333pt;}
.x26{left:459.133333pt;}
.x31{left:468.893333pt;}
.x16{left:471.292000pt;}
.x27{left:501.853333pt;}
.x28{left:506.973333pt;}
.x29{left:541.693333pt;}
.x2a{left:551.813333pt;}
.x2b{left:558.373333pt;}
.x2c{left:564.933333pt;}
.x2d{left:606.053333pt;}
.x2e{left:611.013333pt;}
.x2f{left:633.253333pt;}
.x6{left:642.213333pt;}
.x32{left:665.733328pt;}
}




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