
    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_f99beb5553f9f2538e1c8950.woff2')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_e47c3d836388ac81625da691.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b953dd79c47fc1d53c8f8ccb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3f1527a8afb943359a3e08db.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e48f2657a508420498f1c192.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d191c14a7a1cf22f7051f89e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_594da11868b6d8b2dc29ef2a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e77216e4b97108305f253b73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6c28efc39d8e8daebc13153e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ac157d588764b5c8f38e5e61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_93aa219d8cd560ecf17d5590.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_7fe3dc05d8ceabc24a77379d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8cbce9a4f43298198f9d3e6b.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m9{transform:matrix(0.123531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123531,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.123648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123648,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.164663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164663,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.226129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226129,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244626,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247068,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256846,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.339941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339941,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-60.480000px;}
.v2{vertical-align:-33.120600px;}
.ve{vertical-align:-23.052000px;}
.va{vertical-align:-20.160000px;}
.v7{vertical-align:-17.280000px;}
.v9{vertical-align:-14.340000px;}
.v3{vertical-align:-8.999400px;}
.v5{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.940000px;}
.v4{vertical-align:9.000000px;}
.vc{vertical-align:11.522400px;}
.v1{vertical-align:33.120600px;}
.v6{vertical-align:42.120036px;}
.vd{vertical-align:48.960000px;}
.vf{vertical-align:60.480000px;}
.ls3e{letter-spacing:-6.342021px;}
.ls41{letter-spacing:-6.048000px;}
.ls40{letter-spacing:-2.898000px;}
.ls3b{letter-spacing:-2.331000px;}
.ls3c{letter-spacing:-1.911000px;}
.ls3d{letter-spacing:-1.807260px;}
.ls3f{letter-spacing:-1.796340px;}
.ls38{letter-spacing:-1.470000px;}
.ls39{letter-spacing:-1.453200px;}
.ls42{letter-spacing:-1.317120px;}
.ls44{letter-spacing:-1.235520px;}
.ls47{letter-spacing:-1.093680px;}
.ls32{letter-spacing:-0.561600px;}
.ls21{letter-spacing:-0.464436px;}
.ls22{letter-spacing:-0.406980px;}
.ls29{letter-spacing:-0.331200px;}
.ls2b{letter-spacing:-0.173016px;}
.ls18{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.096120px;}
.ls25{letter-spacing:-0.093600px;}
.ls2c{letter-spacing:-0.086400px;}
.ls34{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.057672px;}
.ls1f{letter-spacing:-0.057600px;}
.ls2a{letter-spacing:-0.050400px;}
.ls27{letter-spacing:-0.043200px;}
.ls11{letter-spacing:-0.028800px;}
.ls10{letter-spacing:-0.021600px;}
.ls26{letter-spacing:-0.019224px;}
.lsd{letter-spacing:-0.014400px;}
.ls12{letter-spacing:-0.007200px;}
.lsc{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.014400px;}
.ls24{letter-spacing:0.019152px;}
.ls28{letter-spacing:0.019224px;}
.ls7{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.043200px;}
.lse{letter-spacing:0.050328px;}
.ls15{letter-spacing:0.050400px;}
.ls2{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.067104px;}
.lsb{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.076608px;}
.ls14{letter-spacing:0.079200px;}
.ls20{letter-spacing:0.086184px;}
.ls16{letter-spacing:0.086400px;}
.ls23{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.122400px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.158400px;}
.ls33{letter-spacing:0.178056px;}
.ls31{letter-spacing:0.179400px;}
.ls5{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.180600px;}
.lsf{letter-spacing:0.181944px;}
.ls1c{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.288600px;}
.ls30{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.551880px;}
.ls37{letter-spacing:0.798000px;}
.ls36{letter-spacing:0.991800px;}
.ls3a{letter-spacing:2.100000px;}
.ls46{letter-spacing:2.640000px;}
.ls45{letter-spacing:4.200000px;}
.ls35{letter-spacing:39.202800px;}
.ls2e{letter-spacing:301.320000px;}
.ls2f{letter-spacing:446.760000px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6a{word-spacing:-72.000000px;}
.ws39{word-spacing:-18.144000px;}
.ws5e{word-spacing:-18.086400px;}
.ws46{word-spacing:-18.064800px;}
.ws38{word-spacing:-18.057600px;}
.ws44{word-spacing:-18.028800px;}
.ws1a{word-spacing:-18.021600px;}
.ws1{word-spacing:-18.014400px;}
.ws5d{word-spacing:-18.007200px;}
.ws3b{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.992800px;}
.ws57{word-spacing:-17.978400px;}
.ws37{word-spacing:-17.942400px;}
.ws65{word-spacing:-17.913600px;}
.ws0{word-spacing:-12.151944px;}
.ws3a{word-spacing:-12.056184px;}
.ws3c{word-spacing:-12.046608px;}
.ws45{word-spacing:-11.989152px;}
.ws67{word-spacing:-11.970000px;}
.ws3e{word-spacing:-11.563020px;}
.ws3d{word-spacing:-11.505564px;}
.ws60{word-spacing:-0.439200px;}
.ws4a{word-spacing:-0.424800px;}
.ws5c{word-spacing:-0.410400px;}
.ws17{word-spacing:-0.403200px;}
.ws48{word-spacing:-0.388800px;}
.ws4d{word-spacing:-0.374400px;}
.ws4b{word-spacing:-0.367200px;}
.ws64{word-spacing:-0.360000px;}
.ws5f{word-spacing:-0.345600px;}
.ws4c{word-spacing:-0.338400px;}
.ws53{word-spacing:-0.331200px;}
.ws51{word-spacing:-0.316800px;}
.ws61{word-spacing:-0.309600px;}
.ws40{word-spacing:-0.302400px;}
.ws56{word-spacing:-0.288360px;}
.ws4e{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.280800px;}
.ws2c{word-spacing:-0.269136px;}
.ws5b{word-spacing:-0.266400px;}
.ws41{word-spacing:-0.259200px;}
.ws4f{word-spacing:-0.252000px;}
.ws52{word-spacing:-0.249912px;}
.ws30{word-spacing:-0.244800px;}
.ws42{word-spacing:-0.237600px;}
.ws50{word-spacing:-0.230400px;}
.ws43{word-spacing:-0.223200px;}
.ws28{word-spacing:-0.216000px;}
.ws36{word-spacing:-0.211464px;}
.ws2b{word-spacing:-0.208800px;}
.ws29{word-spacing:-0.201600px;}
.ws1e{word-spacing:-0.194400px;}
.ws19{word-spacing:-0.187200px;}
.ws2e{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.172800px;}
.ws26{word-spacing:-0.165600px;}
.ws6{word-spacing:-0.159372px;}
.ws34{word-spacing:-0.158400px;}
.ws22{word-spacing:-0.151200px;}
.ws16{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.142596px;}
.ws3f{word-spacing:-0.136800px;}
.ws11{word-spacing:-0.129600px;}
.ws1d{word-spacing:-0.122400px;}
.ws25{word-spacing:-0.115200px;}
.ws32{word-spacing:-0.108000px;}
.wse{word-spacing:-0.100800px;}
.ws2f{word-spacing:-0.093600px;}
.wsa{word-spacing:-0.086400px;}
.ws2d{word-spacing:-0.079200px;}
.ws1c{word-spacing:-0.072000px;}
.ws23{word-spacing:-0.064800px;}
.ws24{word-spacing:-0.057600px;}
.ws27{word-spacing:-0.050400px;}
.ws15{word-spacing:-0.043200px;}
.ws4{word-spacing:-0.041940px;}
.ws20{word-spacing:-0.036000px;}
.ws1f{word-spacing:-0.028800px;}
.wsf{word-spacing:-0.021600px;}
.ws9{word-spacing:-0.014400px;}
.wsb{word-spacing:-0.007200px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:0.007200px;}
.ws3{word-spacing:0.014400px;}
.wsc{word-spacing:0.021600px;}
.ws12{word-spacing:0.028800px;}
.ws21{word-spacing:0.036000px;}
.ws18{word-spacing:0.043200px;}
.ws47{word-spacing:0.050400px;}
.ws10{word-spacing:0.057600px;}
.ws5a{word-spacing:0.064800px;}
.ws35{word-spacing:0.072000px;}
.ws33{word-spacing:0.079200px;}
.ws14{word-spacing:0.086400px;}
.ws49{word-spacing:0.093600px;}
.ws59{word-spacing:0.100800px;}
.ws2a{word-spacing:0.108000px;}
.ws54{word-spacing:0.115200px;}
.ws31{word-spacing:0.122400px;}
.ws63{word-spacing:0.129600px;}
.ws55{word-spacing:0.180000px;}
.ws7{word-spacing:0.201600px;}
.ws66{word-spacing:0.208800px;}
.ws62{word-spacing:0.237600px;}
.ws58{word-spacing:0.331200px;}
.ws69{word-spacing:0.561600px;}
.ws68{word-spacing:154.771200px;}
.ws6b{word-spacing:1317.310560px;}
._2{margin-left:-4035.427200px;}
._3{margin-left:-4033.288800px;}
._2c{margin-left:-2837.520000px;}
._45{margin-left:-2748.240000px;}
._2e{margin-left:-2741.760000px;}
._2a{margin-left:-2731.672800px;}
._46{margin-left:-2728.029600px;}
._40{margin-left:-2707.358400px;}
._2d{margin-left:-2702.232000px;}
._41{margin-left:-2701.087200px;}
._43{margin-left:-2694.088800px;}
._3f{margin-left:-2691.619200px;}
._29{margin-left:-2686.255200px;}
._28{margin-left:-2666.592000px;}
._19{margin-left:-2649.348000px;}
._1a{margin-left:-2615.860800px;}
._42{margin-left:-2585.059200px;}
._47{margin-left:-2539.065600px;}
._18{margin-left:-2431.936800px;}
._48{margin-left:-2019.600000px;}
._2b{margin-left:-1966.514400px;}
._44{margin-left:-1687.752000px;}
._17{margin-left:-1313.301600px;}
._16{margin-left:-634.094520px;}
._1b{margin-left:-308.188800px;}
._27{margin-left:-198.000000px;}
._1c{margin-left:-162.000000px;}
._5{margin-left:-155.116800px;}
._6{margin-left:-46.800000px;}
._2f{margin-left:-19.706400px;}
._3e{margin-left:-4.912800px;}
._0{margin-left:-1.094400px;}
._1{width:1.773360px;}
._36{width:6.840000px;}
._7{width:20.160000px;}
._38{width:27.226200px;}
._c{width:38.160000px;}
._31{width:45.973200px;}
._37{width:62.016000px;}
._1e{width:80.640000px;}
._4{width:82.368000px;}
._a{width:84.024000px;}
._9{width:121.320000px;}
._25{width:129.492000px;}
._14{width:150.840000px;}
._26{width:179.928000px;}
._23{width:180.972000px;}
._22{width:191.628000px;}
._b{width:222.163200px;}
._1f{width:280.684800px;}
._f{width:284.760000px;}
._11{width:300.816000px;}
._21{width:316.195200px;}
._13{width:320.760000px;}
._e{width:322.920000px;}
._12{width:358.920000px;}
._3b{width:391.647000px;}
._3d{width:405.841200px;}
._15{width:410.961600px;}
._3c{width:423.213000px;}
._8{width:426.024000px;}
._20{width:431.107200px;}
._24{width:455.508000px;}
._39{width:462.638400px;}
._3a{width:465.519600px;}
._10{width:467.866080px;}
._1d{width:478.108800px;}
._d{width:480.178080px;}
._34{width:529.663200px;}
._35{width:590.128800px;}
._32{width:909.292800px;}
._33{width:917.910000px;}
._30{width:2172.146400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.800600px;}
.fs4{font-size:42.000000px;}
.fs2{font-size:47.880000px;}
.fs16{font-size:50.400000px;}
.fs15{font-size:52.800000px;}
.fs7{font-size:54.600000px;}
.fs5{font-size:55.200000px;}
.fsa{font-size:57.000000px;}
.fse{font-size:58.800000px;}
.fs11{font-size:62.400000px;}
.fs6{font-size:66.600000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:75.600000px;}
.fsd{font-size:76.200000px;}
.fs12{font-size:82.200000px;}
.fs9{font-size:82.800000px;}
.fs1{font-size:83.880000px;}
.fs14{font-size:84.000000px;}
.fs3{font-size:96.120000px;}
.fs10{font-size:132.000000px;}
.fsc{font-size:172.800000px;}
.fs8{font-size:181.200600px;}
.fs13{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:2.880000px;}
.y88{bottom:3.960450px;}
.y71{bottom:57.180000px;}
.y2{bottom:57.450450px;}
.y30{bottom:135.660450px;}
.y5a{bottom:144.030450px;}
.y52{bottom:146.010450px;}
.y4f{bottom:156.360450px;}
.y2f{bottom:166.710450px;}
.y59{bottom:175.710450px;}
.y21{bottom:177.060450px;}
.y4e{bottom:187.410450px;}
.y85{bottom:190.200000px;}
.y2e{bottom:197.760450px;}
.y51{bottom:207.930450px;}
.y20{bottom:208.110450px;}
.y4d{bottom:218.460450px;}
.y84{bottom:221.250000px;}
.y2d{bottom:228.810450px;}
.ybb{bottom:228.990450px;}
.y1f{bottom:239.160450px;}
.y50{bottom:243.750450px;}
.y4c{bottom:249.510450px;}
.y83{bottom:254.550000px;}
.y2c{bottom:259.860450px;}
.yba{bottom:260.040450px;}
.y1e{bottom:270.210450px;}
.y61{bottom:274.800450px;}
.y4b{bottom:280.560450px;}
.yb9{bottom:287.040450px;}
.y6f{bottom:290.910450px;}
.y82{bottom:294.600000px;}
.y2b{bottom:295.500450px;}
.y1d{bottom:301.260450px;}
.y4a{bottom:311.610450px;}
.y1c{bottom:332.310450px;}
.y81{bottom:334.650000px;}
.y56{bottom:342.480450px;}
.y49{bottom:342.660450px;}
.y53{bottom:342.660600px;}
.y6e{bottom:353.010450px;}
.y1b{bottom:363.360450px;}
.y48{bottom:373.710450px;}
.y7f{bottom:374.700000px;}
.y80{bottom:380.100000px;}
.y1a{bottom:394.410450px;}
.y47{bottom:404.760450px;}
.y7e{bottom:414.570000px;}
.y6d{bottom:415.110450px;}
.y19{bottom:425.460450px;}
.y60{bottom:435.630450px;}
.y46{bottom:435.810450px;}
.y7d{bottom:454.800000px;}
.y18{bottom:456.510450px;}
.y45{bottom:466.860450px;}
.y97{bottom:472.170450px;}
.y9a{bottom:476.310450px;}
.y6c{bottom:477.210450px;}
.y2a{bottom:487.560450px;}
.y7c{bottom:494.850000px;}
.y17{bottom:495.840600px;}
.y44{bottom:497.910450px;}
.y96{bottom:503.220450px;}
.y99{bottom:507.360450px;}
.y16{bottom:518.610450px;}
.ybf{bottom:521.760450px;}
.y5d{bottom:528.780450px;}
.y43{bottom:528.960450px;}
.y95{bottom:530.220450px;}
.y98{bottom:534.360450px;}
.y7b{bottom:534.900000px;}
.y6b{bottom:539.310450px;}
.y58{bottom:549.480450px;}
.y15{bottom:549.660450px;}
.ybe{bottom:552.810450px;}
.yb8{bottom:558.435000px;}
.y42{bottom:560.010450px;}
.y78{bottom:574.950000px;}
.yb7{bottom:574.980000px;}
.y79{bottom:580.350000px;}
.y29{bottom:580.710450px;}
.ybd{bottom:583.860450px;}
.y57{bottom:585.300450px;}
.yb6{bottom:587.220000px;}
.y14{bottom:588.990450px;}
.y5e{bottom:590.880450px;}
.y41{bottom:591.060450px;}
.yb5{bottom:596.595000px;}
.y6a{bottom:601.410450px;}
.yb3{bottom:606.675000px;}
.yb4{bottom:610.275000px;}
.ybc{bottom:610.860450px;}
.y13{bottom:611.760450px;}
.y77{bottom:614.820000px;}
.y94{bottom:617.790450px;}
.y40{bottom:622.110450px;}
.yb2{bottom:631.140000px;}
.y12{bottom:642.810450px;}
.yb1{bottom:643.394400px;}
.y93{bottom:648.840450px;}
.y3f{bottom:653.160450px;}
.y76{bottom:655.050000px;}
.y69{bottom:663.510450px;}
.y28{bottom:673.860450px;}
.y92{bottom:680.700450px;}
.yb0{bottom:680.820000px;}
.y11{bottom:682.140450px;}
.y3e{bottom:684.210450px;}
.y75{bottom:685.920000px;}
.y10{bottom:704.910450px;}
.yaf{bottom:707.475000px;}
.y91{bottom:711.750450px;}
.y3d{bottom:715.260450px;}
.yae{bottom:720.435000px;}
.y68{bottom:725.610450px;}
.y74{bottom:727.410000px;}
.yf{bottom:735.960450px;}
.y90{bottom:742.800450px;}
.y5c{bottom:746.130450px;}
.y3c{bottom:746.310450px;}
.y73{bottom:760.170000px;}
.yaa{bottom:762.900000px;}
.yad{bottom:765.060000px;}
.y27{bottom:767.010450px;}
.yab{bottom:769.395000px;}
.yac{bottom:770.100000px;}
.y8f{bottom:773.850450px;}
.ye{bottom:775.290600px;}
.y5f{bottom:777.180450px;}
.y3b{bottom:777.360450px;}
.ya9{bottom:785.220000px;}
.y67{bottom:787.710450px;}
.ya8{bottom:790.260000px;}
.y72{bottom:791.220000px;}
.ya5{bottom:796.740000px;}
.yd{bottom:798.060450px;}
.ya6{bottom:798.195000px;}
.ya7{bottom:802.515000px;}
.y8e{bottom:804.900450px;}
.y3a{bottom:808.410450px;}
.y70{bottom:823.080000px;}
.yc{bottom:829.110450px;}
.y8d{bottom:835.950450px;}
.y39{bottom:839.460450px;}
.ya4{bottom:844.260000px;}
.y66{bottom:849.810450px;}
.y26{bottom:860.160450px;}
.y8c{bottom:867.000450px;}
.yb{bottom:868.440450px;}
.y38{bottom:870.510450px;}
.ya3{bottom:882.420000px;}
.ya{bottom:891.210450px;}
.ya1{bottom:891.780000px;}
.y8b{bottom:897.960450px;}
.y37{bottom:901.560450px;}
.ya2{bottom:904.035000px;}
.y65{bottom:911.910450px;}
.y9{bottom:922.260450px;}
.ya0{bottom:924.900000px;}
.y8a{bottom:929.010450px;}
.y36{bottom:932.610450px;}
.y9f{bottom:945.780000px;}
.y8{bottom:953.310450px;}
.y87{bottom:957.450000px;}
.y89{bottom:959.160450px;}
.y86{bottom:962.670450px;}
.y54{bottom:963.480450px;}
.y35{bottom:963.660450px;}
.y9e{bottom:964.515000px;}
.y9d{bottom:968.835000px;}
.y64{bottom:974.010450px;}
.y7{bottom:984.360450px;}
.y9c{bottom:987.555000px;}
.y34{bottom:994.710450px;}
.y9b{bottom:1001.220000px;}
.y25{bottom:1015.410450px;}
.y6{bottom:1017.480738px;}
.y33{bottom:1025.760450px;}
.y63{bottom:1036.110450px;}
.y24{bottom:1046.460450px;}
.y5{bottom:1053.750450px;}
.y32{bottom:1056.810450px;}
.y23{bottom:1077.510450px;}
.y5b{bottom:1087.680450px;}
.y4{bottom:1087.860450px;}
.y62{bottom:1098.210450px;}
.y22{bottom:1113.060450px;}
.y55{bottom:1118.640450px;}
.y3{bottom:1118.730450px;}
.y31{bottom:1118.820450px;}
.y1{bottom:1193.250450px;}
.hd{height:11.160000px;}
.he{height:21.960000px;}
.h19{height:36.295938px;}
.h12{height:43.804688px;}
.h5{height:46.991602px;}
.hf{height:49.992188px;}
.h24{height:51.794531px;}
.h27{height:52.565625px;}
.h13{height:54.175781px;}
.h15{height:56.946094px;}
.h25{height:61.326563px;}
.h1c{height:64.508437px;}
.h1e{height:65.081250px;}
.h14{height:69.461719px;}
.h2{height:70.628906px;}
.h9{height:70.663463px;}
.h1{height:70.664062px;}
.h8{height:70.664663px;}
.h11{height:71.842500px;}
.ha{height:72.562500px;}
.h1b{height:74.786133px;}
.h7{height:80.111602px;}
.h4{height:80.112202px;}
.h26{height:80.674805px;}
.h3{height:84.535312px;}
.h17{height:86.357813px;}
.h23{height:87.609375px;}
.h18{height:89.297813px;}
.h10{height:90.374098px;}
.h6{height:96.870938px;}
.h1d{height:137.671875px;}
.h20{height:139.734844px;}
.h1f{height:180.054844px;}
.h1a{height:180.225000px;}
.h16{height:188.986563px;}
.h22{height:200.214844px;}
.h21{height:211.737244px;}
.hc{height:892.500000px;}
.hb{height:892.830000px;}
.h0{height:1263.000000px;}
.w4{width:5.940000px;}
.w3{width:5.940150px;}
.w5{width:8.820000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:125.100000px;}
.x5{left:127.605900px;}
.x7{left:140.385750px;}
.x1{left:170.100000px;}
.x1e{left:176.580000px;}
.x29{left:193.740000px;}
.x19{left:198.960000px;}
.x23{left:210.420000px;}
.x4{left:224.100000px;}
.x2a{left:233.970000px;}
.x27{left:284.430000px;}
.x24{left:291.675000px;}
.x26{left:396.990000px;}
.x1f{left:400.845000px;}
.x22{left:405.135000px;}
.x25{left:423.435000px;}
.x1d{left:431.055000px;}
.x20{left:446.175000px;}
.x2b{left:466.050000px;}
.x3{left:479.970000px;}
.x2{left:484.470000px;}
.x28{left:513.630000px;}
.xc{left:524.250000px;}
.xd{left:533.070000px;}
.x21{left:554.580000px;}
.x11{left:556.710000px;}
.x12{left:581.250000px;}
.x13{left:597.870000px;}
.x14{left:604.245000px;}
.x6{left:622.425900px;}
.x2d{left:625.500000px;}
.x15{left:626.640000px;}
.x16{left:643.110000px;}
.x17{left:692.895000px;}
.x18{left:698.565000px;}
.x1b{left:748.470000px;}
.x1c{left:749.685000px;}
.x1a{left:770.550000px;}
.x10{left:806.040000px;}
.x2c{left:807.659850px;}
.xf{left:829.979850px;}
.x8{left:1038.945000px;}
.xa{left:1043.536500px;}
.x9{left:1044.885750px;}
.xb{left:1049.475750px;}
@media print{
.vb{vertical-align:-53.760000pt;}
.v2{vertical-align:-29.440533pt;}
.ve{vertical-align:-20.490667pt;}
.va{vertical-align:-17.920000pt;}
.v7{vertical-align:-15.360000pt;}
.v9{vertical-align:-12.746667pt;}
.v3{vertical-align:-7.999467pt;}
.v5{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.613333pt;}
.v4{vertical-align:8.000000pt;}
.vc{vertical-align:10.242133pt;}
.v1{vertical-align:29.440533pt;}
.v6{vertical-align:37.440032pt;}
.vd{vertical-align:43.520000pt;}
.vf{vertical-align:53.760000pt;}
.ls3e{letter-spacing:-5.637352pt;}
.ls41{letter-spacing:-5.376000pt;}
.ls40{letter-spacing:-2.576000pt;}
.ls3b{letter-spacing:-2.072000pt;}
.ls3c{letter-spacing:-1.698667pt;}
.ls3d{letter-spacing:-1.606453pt;}
.ls3f{letter-spacing:-1.596747pt;}
.ls38{letter-spacing:-1.306667pt;}
.ls39{letter-spacing:-1.291733pt;}
.ls42{letter-spacing:-1.170773pt;}
.ls44{letter-spacing:-1.098240pt;}
.ls47{letter-spacing:-0.972160pt;}
.ls32{letter-spacing:-0.499200pt;}
.ls21{letter-spacing:-0.412832pt;}
.ls22{letter-spacing:-0.361760pt;}
.ls29{letter-spacing:-0.294400pt;}
.ls2b{letter-spacing:-0.153792pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.085440pt;}
.ls25{letter-spacing:-0.083200pt;}
.ls2c{letter-spacing:-0.076800pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.051264pt;}
.ls1f{letter-spacing:-0.051200pt;}
.ls2a{letter-spacing:-0.044800pt;}
.ls27{letter-spacing:-0.038400pt;}
.ls11{letter-spacing:-0.025600pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls26{letter-spacing:-0.017088pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls12{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.012800pt;}
.ls24{letter-spacing:0.017024pt;}
.ls28{letter-spacing:0.017088pt;}
.ls7{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.038400pt;}
.lse{letter-spacing:0.044736pt;}
.ls15{letter-spacing:0.044800pt;}
.ls2{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.059648pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.068096pt;}
.ls14{letter-spacing:0.070400pt;}
.ls20{letter-spacing:0.076608pt;}
.ls16{letter-spacing:0.076800pt;}
.ls23{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.108800pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.140800pt;}
.ls33{letter-spacing:0.158272pt;}
.ls31{letter-spacing:0.159467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.160533pt;}
.lsf{letter-spacing:0.161728pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.256533pt;}
.ls30{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.490560pt;}
.ls37{letter-spacing:0.709333pt;}
.ls36{letter-spacing:0.881600pt;}
.ls3a{letter-spacing:1.866667pt;}
.ls46{letter-spacing:2.346667pt;}
.ls45{letter-spacing:3.733333pt;}
.ls35{letter-spacing:34.846933pt;}
.ls2e{letter-spacing:267.840000pt;}
.ls2f{letter-spacing:397.120000pt;}
.ws6a{word-spacing:-64.000000pt;}
.ws39{word-spacing:-16.128000pt;}
.ws5e{word-spacing:-16.076800pt;}
.ws46{word-spacing:-16.057600pt;}
.ws38{word-spacing:-16.051200pt;}
.ws44{word-spacing:-16.025600pt;}
.ws1a{word-spacing:-16.019200pt;}
.ws1{word-spacing:-16.012800pt;}
.ws5d{word-spacing:-16.006400pt;}
.ws3b{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.993600pt;}
.ws57{word-spacing:-15.980800pt;}
.ws37{word-spacing:-15.948800pt;}
.ws65{word-spacing:-15.923200pt;}
.ws0{word-spacing:-10.801728pt;}
.ws3a{word-spacing:-10.716608pt;}
.ws3c{word-spacing:-10.708096pt;}
.ws45{word-spacing:-10.657024pt;}
.ws67{word-spacing:-10.640000pt;}
.ws3e{word-spacing:-10.278240pt;}
.ws3d{word-spacing:-10.227168pt;}
.ws60{word-spacing:-0.390400pt;}
.ws4a{word-spacing:-0.377600pt;}
.ws5c{word-spacing:-0.364800pt;}
.ws17{word-spacing:-0.358400pt;}
.ws48{word-spacing:-0.345600pt;}
.ws4d{word-spacing:-0.332800pt;}
.ws4b{word-spacing:-0.326400pt;}
.ws64{word-spacing:-0.320000pt;}
.ws5f{word-spacing:-0.307200pt;}
.ws4c{word-spacing:-0.300800pt;}
.ws53{word-spacing:-0.294400pt;}
.ws51{word-spacing:-0.281600pt;}
.ws61{word-spacing:-0.275200pt;}
.ws40{word-spacing:-0.268800pt;}
.ws56{word-spacing:-0.256320pt;}
.ws4e{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.249600pt;}
.ws2c{word-spacing:-0.239232pt;}
.ws5b{word-spacing:-0.236800pt;}
.ws41{word-spacing:-0.230400pt;}
.ws4f{word-spacing:-0.224000pt;}
.ws52{word-spacing:-0.222144pt;}
.ws30{word-spacing:-0.217600pt;}
.ws42{word-spacing:-0.211200pt;}
.ws50{word-spacing:-0.204800pt;}
.ws43{word-spacing:-0.198400pt;}
.ws28{word-spacing:-0.192000pt;}
.ws36{word-spacing:-0.187968pt;}
.ws2b{word-spacing:-0.185600pt;}
.ws29{word-spacing:-0.179200pt;}
.ws1e{word-spacing:-0.172800pt;}
.ws19{word-spacing:-0.166400pt;}
.ws2e{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.153600pt;}
.ws26{word-spacing:-0.147200pt;}
.ws6{word-spacing:-0.141664pt;}
.ws34{word-spacing:-0.140800pt;}
.ws22{word-spacing:-0.134400pt;}
.ws16{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.126752pt;}
.ws3f{word-spacing:-0.121600pt;}
.ws11{word-spacing:-0.115200pt;}
.ws1d{word-spacing:-0.108800pt;}
.ws25{word-spacing:-0.102400pt;}
.ws32{word-spacing:-0.096000pt;}
.wse{word-spacing:-0.089600pt;}
.ws2f{word-spacing:-0.083200pt;}
.wsa{word-spacing:-0.076800pt;}
.ws2d{word-spacing:-0.070400pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws23{word-spacing:-0.057600pt;}
.ws24{word-spacing:-0.051200pt;}
.ws27{word-spacing:-0.044800pt;}
.ws15{word-spacing:-0.038400pt;}
.ws4{word-spacing:-0.037280pt;}
.ws20{word-spacing:-0.032000pt;}
.ws1f{word-spacing:-0.025600pt;}
.wsf{word-spacing:-0.019200pt;}
.ws9{word-spacing:-0.012800pt;}
.wsb{word-spacing:-0.006400pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:0.006400pt;}
.ws3{word-spacing:0.012800pt;}
.wsc{word-spacing:0.019200pt;}
.ws12{word-spacing:0.025600pt;}
.ws21{word-spacing:0.032000pt;}
.ws18{word-spacing:0.038400pt;}
.ws47{word-spacing:0.044800pt;}
.ws10{word-spacing:0.051200pt;}
.ws5a{word-spacing:0.057600pt;}
.ws35{word-spacing:0.064000pt;}
.ws33{word-spacing:0.070400pt;}
.ws14{word-spacing:0.076800pt;}
.ws49{word-spacing:0.083200pt;}
.ws59{word-spacing:0.089600pt;}
.ws2a{word-spacing:0.096000pt;}
.ws54{word-spacing:0.102400pt;}
.ws31{word-spacing:0.108800pt;}
.ws63{word-spacing:0.115200pt;}
.ws55{word-spacing:0.160000pt;}
.ws7{word-spacing:0.179200pt;}
.ws66{word-spacing:0.185600pt;}
.ws62{word-spacing:0.211200pt;}
.ws58{word-spacing:0.294400pt;}
.ws69{word-spacing:0.499200pt;}
.ws68{word-spacing:137.574400pt;}
.ws6b{word-spacing:1170.942720pt;}
._2{margin-left:-3587.046400pt;}
._3{margin-left:-3585.145600pt;}
._2c{margin-left:-2522.240000pt;}
._45{margin-left:-2442.880000pt;}
._2e{margin-left:-2437.120000pt;}
._2a{margin-left:-2428.153600pt;}
._46{margin-left:-2424.915200pt;}
._40{margin-left:-2406.540800pt;}
._2d{margin-left:-2401.984000pt;}
._41{margin-left:-2400.966400pt;}
._43{margin-left:-2394.745600pt;}
._3f{margin-left:-2392.550400pt;}
._29{margin-left:-2387.782400pt;}
._28{margin-left:-2370.304000pt;}
._19{margin-left:-2354.976000pt;}
._1a{margin-left:-2325.209600pt;}
._42{margin-left:-2297.830400pt;}
._47{margin-left:-2256.947200pt;}
._18{margin-left:-2161.721600pt;}
._48{margin-left:-1795.200000pt;}
._2b{margin-left:-1748.012800pt;}
._44{margin-left:-1500.224000pt;}
._17{margin-left:-1167.379200pt;}
._16{margin-left:-563.639573pt;}
._1b{margin-left:-273.945600pt;}
._27{margin-left:-176.000000pt;}
._1c{margin-left:-144.000000pt;}
._5{margin-left:-137.881600pt;}
._6{margin-left:-41.600000pt;}
._2f{margin-left:-17.516800pt;}
._3e{margin-left:-4.366933pt;}
._0{margin-left:-0.972800pt;}
._1{width:1.576320pt;}
._36{width:6.080000pt;}
._7{width:17.920000pt;}
._38{width:24.201067pt;}
._c{width:33.920000pt;}
._31{width:40.865067pt;}
._37{width:55.125333pt;}
._1e{width:71.680000pt;}
._4{width:73.216000pt;}
._a{width:74.688000pt;}
._9{width:107.840000pt;}
._25{width:115.104000pt;}
._14{width:134.080000pt;}
._26{width:159.936000pt;}
._23{width:160.864000pt;}
._22{width:170.336000pt;}
._b{width:197.478400pt;}
._1f{width:249.497600pt;}
._f{width:253.120000pt;}
._11{width:267.392000pt;}
._21{width:281.062400pt;}
._13{width:285.120000pt;}
._e{width:287.040000pt;}
._12{width:319.040000pt;}
._3b{width:348.130667pt;}
._3d{width:360.747733pt;}
._15{width:365.299200pt;}
._3c{width:376.189333pt;}
._8{width:378.688000pt;}
._20{width:383.206400pt;}
._24{width:404.896000pt;}
._39{width:411.234133pt;}
._3a{width:413.795200pt;}
._10{width:415.880960pt;}
._1d{width:424.985600pt;}
._d{width:426.824960pt;}
._34{width:470.811733pt;}
._35{width:524.558933pt;}
._32{width:808.260267pt;}
._33{width:815.920000pt;}
._30{width:1930.796800pt;}
.fsb{font-size:30.933867pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.560000pt;}
.fs16{font-size:44.800000pt;}
.fs15{font-size:46.933333pt;}
.fs7{font-size:48.533333pt;}
.fs5{font-size:49.066667pt;}
.fsa{font-size:50.666667pt;}
.fse{font-size:52.266667pt;}
.fs11{font-size:55.466667pt;}
.fs6{font-size:59.200000pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:67.200000pt;}
.fsd{font-size:67.733333pt;}
.fs12{font-size:73.066667pt;}
.fs9{font-size:73.600000pt;}
.fs1{font-size:74.560000pt;}
.fs14{font-size:74.666667pt;}
.fs3{font-size:85.440000pt;}
.fs10{font-size:117.333333pt;}
.fsc{font-size:153.600000pt;}
.fs8{font-size:161.067200pt;}
.fs13{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:2.560000pt;}
.y88{bottom:3.520400pt;}
.y71{bottom:50.826667pt;}
.y2{bottom:51.067067pt;}
.y30{bottom:120.587067pt;}
.y5a{bottom:128.027067pt;}
.y52{bottom:129.787067pt;}
.y4f{bottom:138.987067pt;}
.y2f{bottom:148.187067pt;}
.y59{bottom:156.187067pt;}
.y21{bottom:157.387067pt;}
.y4e{bottom:166.587067pt;}
.y85{bottom:169.066667pt;}
.y2e{bottom:175.787067pt;}
.y51{bottom:184.827067pt;}
.y20{bottom:184.987067pt;}
.y4d{bottom:194.187067pt;}
.y84{bottom:196.666667pt;}
.y2d{bottom:203.387067pt;}
.ybb{bottom:203.547067pt;}
.y1f{bottom:212.587067pt;}
.y50{bottom:216.667067pt;}
.y4c{bottom:221.787067pt;}
.y83{bottom:226.266667pt;}
.y2c{bottom:230.987067pt;}
.yba{bottom:231.147067pt;}
.y1e{bottom:240.187067pt;}
.y61{bottom:244.267067pt;}
.y4b{bottom:249.387067pt;}
.yb9{bottom:255.147067pt;}
.y6f{bottom:258.587067pt;}
.y82{bottom:261.866667pt;}
.y2b{bottom:262.667067pt;}
.y1d{bottom:267.787067pt;}
.y4a{bottom:276.987067pt;}
.y1c{bottom:295.387067pt;}
.y81{bottom:297.466667pt;}
.y56{bottom:304.427067pt;}
.y49{bottom:304.587067pt;}
.y53{bottom:304.587200pt;}
.y6e{bottom:313.787067pt;}
.y1b{bottom:322.987067pt;}
.y48{bottom:332.187067pt;}
.y7f{bottom:333.066667pt;}
.y80{bottom:337.866667pt;}
.y1a{bottom:350.587067pt;}
.y47{bottom:359.787067pt;}
.y7e{bottom:368.506667pt;}
.y6d{bottom:368.987067pt;}
.y19{bottom:378.187067pt;}
.y60{bottom:387.227067pt;}
.y46{bottom:387.387067pt;}
.y7d{bottom:404.266667pt;}
.y18{bottom:405.787067pt;}
.y45{bottom:414.987067pt;}
.y97{bottom:419.707067pt;}
.y9a{bottom:423.387067pt;}
.y6c{bottom:424.187067pt;}
.y2a{bottom:433.387067pt;}
.y7c{bottom:439.866667pt;}
.y17{bottom:440.747200pt;}
.y44{bottom:442.587067pt;}
.y96{bottom:447.307067pt;}
.y99{bottom:450.987067pt;}
.y16{bottom:460.987067pt;}
.ybf{bottom:463.787067pt;}
.y5d{bottom:470.027067pt;}
.y43{bottom:470.187067pt;}
.y95{bottom:471.307067pt;}
.y98{bottom:474.987067pt;}
.y7b{bottom:475.466667pt;}
.y6b{bottom:479.387067pt;}
.y58{bottom:488.427067pt;}
.y15{bottom:488.587067pt;}
.ybe{bottom:491.387067pt;}
.yb8{bottom:496.386667pt;}
.y42{bottom:497.787067pt;}
.y78{bottom:511.066667pt;}
.yb7{bottom:511.093333pt;}
.y79{bottom:515.866667pt;}
.y29{bottom:516.187067pt;}
.ybd{bottom:518.987067pt;}
.y57{bottom:520.267067pt;}
.yb6{bottom:521.973333pt;}
.y14{bottom:523.547067pt;}
.y5e{bottom:525.227067pt;}
.y41{bottom:525.387067pt;}
.yb5{bottom:530.306667pt;}
.y6a{bottom:534.587067pt;}
.yb3{bottom:539.266667pt;}
.yb4{bottom:542.466667pt;}
.ybc{bottom:542.987067pt;}
.y13{bottom:543.787067pt;}
.y77{bottom:546.506667pt;}
.y94{bottom:549.147067pt;}
.y40{bottom:552.987067pt;}
.yb2{bottom:561.013333pt;}
.y12{bottom:571.387067pt;}
.yb1{bottom:571.906133pt;}
.y93{bottom:576.747067pt;}
.y3f{bottom:580.587067pt;}
.y76{bottom:582.266667pt;}
.y69{bottom:589.787067pt;}
.y28{bottom:598.987067pt;}
.y92{bottom:605.067067pt;}
.yb0{bottom:605.173333pt;}
.y11{bottom:606.347067pt;}
.y3e{bottom:608.187067pt;}
.y75{bottom:609.706667pt;}
.y10{bottom:626.587067pt;}
.yaf{bottom:628.866667pt;}
.y91{bottom:632.667067pt;}
.y3d{bottom:635.787067pt;}
.yae{bottom:640.386667pt;}
.y68{bottom:644.987067pt;}
.y74{bottom:646.586667pt;}
.yf{bottom:654.187067pt;}
.y90{bottom:660.267067pt;}
.y5c{bottom:663.227067pt;}
.y3c{bottom:663.387067pt;}
.y73{bottom:675.706667pt;}
.yaa{bottom:678.133333pt;}
.yad{bottom:680.053333pt;}
.y27{bottom:681.787067pt;}
.yab{bottom:683.906667pt;}
.yac{bottom:684.533333pt;}
.y8f{bottom:687.867067pt;}
.ye{bottom:689.147200pt;}
.y5f{bottom:690.827067pt;}
.y3b{bottom:690.987067pt;}
.ya9{bottom:697.973333pt;}
.y67{bottom:700.187067pt;}
.ya8{bottom:702.453333pt;}
.y72{bottom:703.306667pt;}
.ya5{bottom:708.213333pt;}
.yd{bottom:709.387067pt;}
.ya6{bottom:709.506667pt;}
.ya7{bottom:713.346667pt;}
.y8e{bottom:715.467067pt;}
.y3a{bottom:718.587067pt;}
.y70{bottom:731.626667pt;}
.yc{bottom:736.987067pt;}
.y8d{bottom:743.067067pt;}
.y39{bottom:746.187067pt;}
.ya4{bottom:750.453333pt;}
.y66{bottom:755.387067pt;}
.y26{bottom:764.587067pt;}
.y8c{bottom:770.667067pt;}
.yb{bottom:771.947067pt;}
.y38{bottom:773.787067pt;}
.ya3{bottom:784.373333pt;}
.ya{bottom:792.187067pt;}
.ya1{bottom:792.693333pt;}
.y8b{bottom:798.187067pt;}
.y37{bottom:801.387067pt;}
.ya2{bottom:803.586667pt;}
.y65{bottom:810.587067pt;}
.y9{bottom:819.787067pt;}
.ya0{bottom:822.133333pt;}
.y8a{bottom:825.787067pt;}
.y36{bottom:828.987067pt;}
.y9f{bottom:840.693333pt;}
.y8{bottom:847.387067pt;}
.y87{bottom:851.066667pt;}
.y89{bottom:852.587067pt;}
.y86{bottom:855.707067pt;}
.y54{bottom:856.427067pt;}
.y35{bottom:856.587067pt;}
.y9e{bottom:857.346667pt;}
.y9d{bottom:861.186667pt;}
.y64{bottom:865.787067pt;}
.y7{bottom:874.987067pt;}
.y9c{bottom:877.826667pt;}
.y34{bottom:884.187067pt;}
.y9b{bottom:889.973333pt;}
.y25{bottom:902.587067pt;}
.y6{bottom:904.427323pt;}
.y33{bottom:911.787067pt;}
.y63{bottom:920.987067pt;}
.y24{bottom:930.187067pt;}
.y5{bottom:936.667067pt;}
.y32{bottom:939.387067pt;}
.y23{bottom:957.787067pt;}
.y5b{bottom:966.827067pt;}
.y4{bottom:966.987067pt;}
.y62{bottom:976.187067pt;}
.y22{bottom:989.387067pt;}
.y55{bottom:994.347067pt;}
.y3{bottom:994.427067pt;}
.y31{bottom:994.507067pt;}
.y1{bottom:1060.667067pt;}
.hd{height:9.920000pt;}
.he{height:19.520000pt;}
.h19{height:32.263056pt;}
.h12{height:38.937500pt;}
.h5{height:41.770312pt;}
.hf{height:44.437500pt;}
.h24{height:46.039583pt;}
.h27{height:46.725000pt;}
.h13{height:48.156250pt;}
.h15{height:50.618750pt;}
.h25{height:54.512500pt;}
.h1c{height:57.340833pt;}
.h1e{height:57.850000pt;}
.h14{height:61.743750pt;}
.h2{height:62.781250pt;}
.h9{height:62.811967pt;}
.h1{height:62.812500pt;}
.h8{height:62.813033pt;}
.h11{height:63.860000pt;}
.ha{height:64.500000pt;}
.h1b{height:66.476562pt;}
.h7{height:71.210313pt;}
.h4{height:71.210846pt;}
.h26{height:71.710937pt;}
.h3{height:75.142500pt;}
.h17{height:76.762500pt;}
.h23{height:77.875000pt;}
.h18{height:79.375833pt;}
.h10{height:80.332532pt;}
.h6{height:86.107500pt;}
.h1d{height:122.375000pt;}
.h20{height:124.208750pt;}
.h1f{height:160.048750pt;}
.h1a{height:160.200000pt;}
.h16{height:167.988056pt;}
.h22{height:177.968750pt;}
.h21{height:188.210883pt;}
.hc{height:793.333333pt;}
.hb{height:793.626667pt;}
.h0{height:1122.666667pt;}
.w4{width:5.280000pt;}
.w3{width:5.280133pt;}
.w5{width:7.840000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:111.200000pt;}
.x5{left:113.427467pt;}
.x7{left:124.787333pt;}
.x1{left:151.200000pt;}
.x1e{left:156.960000pt;}
.x29{left:172.213333pt;}
.x19{left:176.853333pt;}
.x23{left:187.040000pt;}
.x4{left:199.200000pt;}
.x2a{left:207.973333pt;}
.x27{left:252.826667pt;}
.x24{left:259.266667pt;}
.x26{left:352.880000pt;}
.x1f{left:356.306667pt;}
.x22{left:360.120000pt;}
.x25{left:376.386667pt;}
.x1d{left:383.160000pt;}
.x20{left:396.600000pt;}
.x2b{left:414.266667pt;}
.x3{left:426.640000pt;}
.x2{left:430.640000pt;}
.x28{left:456.560000pt;}
.xc{left:466.000000pt;}
.xd{left:473.840000pt;}
.x21{left:492.960000pt;}
.x11{left:494.853333pt;}
.x12{left:516.666667pt;}
.x13{left:531.440000pt;}
.x14{left:537.106667pt;}
.x6{left:553.267467pt;}
.x2d{left:556.000000pt;}
.x15{left:557.013333pt;}
.x16{left:571.653333pt;}
.x17{left:615.906667pt;}
.x18{left:620.946667pt;}
.x1b{left:665.306667pt;}
.x1c{left:666.386667pt;}
.x1a{left:684.933333pt;}
.x10{left:716.480000pt;}
.x2c{left:717.919867pt;}
.xf{left:737.759867pt;}
.x8{left:923.506667pt;}
.xa{left:927.588000pt;}
.x9{left:928.787333pt;}
.xb{left:932.867333pt;}
}




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