
    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_d2a693f14e4142c61c62be4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_d7578783467f7b9f12850dba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_27b76bc34c9b76d3ed798fb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142578;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_c1d23341e29860b8b1cee6c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099121;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_3366ac38ebf2780b67d3ea14.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_81776aad0c57ac60068a1517.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ed010425ea2177b2b49cba7d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e24a8649d0a21b82aa13ddb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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;}
.m4{transform:matrix(0.146316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146316,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.187498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187498,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m9{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.389660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389660,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.392417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392417,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.538600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.lsd{letter-spacing:-1.337640px;}
.lsa{letter-spacing:-0.819021px;}
.ls9{letter-spacing:-0.672021px;}
.lsc{letter-spacing:-0.337505px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.020592px;}
.ls6{letter-spacing:0.413220px;}
.ls3{letter-spacing:0.627011px;}
.ls4{letter-spacing:0.689713px;}
.ls8{letter-spacing:0.960030px;}
.ls5{letter-spacing:1.764024px;}
.ls7{letter-spacing:2.002200px;}
.lse{letter-spacing:2.130000px;}
.lsb{letter-spacing:2.250030px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-75.692160px;}
.ws12{word-spacing:-16.488000px;}
.ws22{word-spacing:-3.312000px;}
.ws8a{word-spacing:-3.240000px;}
.ws9d{word-spacing:-3.168000px;}
.ws6{word-spacing:-2.880000px;}
.ws8b{word-spacing:-2.808000px;}
.ws40{word-spacing:-2.664000px;}
.wse{word-spacing:-2.520000px;}
.ws90{word-spacing:-2.304000px;}
.ws14{word-spacing:-2.232000px;}
.ws80{word-spacing:-2.112000px;}
.ws1c{word-spacing:-2.088000px;}
.ws1b{word-spacing:-2.016000px;}
.ws2b{word-spacing:-1.872000px;}
.ws29{word-spacing:-1.800000px;}
.ws5a{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.656000px;}
.ws8{word-spacing:-1.584000px;}
.ws6b{word-spacing:-1.512000px;}
.ws31{word-spacing:-1.458000px;}
.ws3e{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.368000px;}
.ws24{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.224000px;}
.ws10{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.080000px;}
.ws4c{word-spacing:-1.008000px;}
.ws34{word-spacing:-0.936000px;}
.ws7d{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.792000px;}
.ws3d{word-spacing:-0.720000px;}
.ws45{word-spacing:-0.576000px;}
.wsa1{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.360000px;}
.ws6f{word-spacing:-0.288000px;}
.ws2d{word-spacing:-0.216000px;}
.ws63{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws57{word-spacing:0.072000px;}
.ws69{word-spacing:0.144000px;}
.wsa0{word-spacing:0.216000px;}
.ws4{word-spacing:0.288000px;}
.ws84{word-spacing:0.360000px;}
.ws7c{word-spacing:0.504000px;}
.ws28{word-spacing:0.576000px;}
.ws1{word-spacing:0.648000px;}
.ws74{word-spacing:0.792000px;}
.ws11{word-spacing:0.864000px;}
.ws58{word-spacing:0.936000px;}
.ws3a{word-spacing:1.008000px;}
.ws51{word-spacing:1.080000px;}
.ws9{word-spacing:1.152000px;}
.ws3c{word-spacing:1.224000px;}
.ws59{word-spacing:1.296000px;}
.ws3{word-spacing:1.368000px;}
.ws35{word-spacing:1.440000px;}
.wsd{word-spacing:1.584000px;}
.ws7f{word-spacing:1.650000px;}
.ws54{word-spacing:1.800000px;}
.ws36{word-spacing:1.944000px;}
.ws38{word-spacing:2.016000px;}
.ws99{word-spacing:2.088000px;}
.ws33{word-spacing:2.160000px;}
.ws7e{word-spacing:2.232000px;}
.ws26{word-spacing:2.304000px;}
.ws1f{word-spacing:2.376000px;}
.ws13{word-spacing:2.448000px;}
.ws75{word-spacing:2.592000px;}
.ws32{word-spacing:2.736000px;}
.ws6a{word-spacing:2.808000px;}
.ws76{word-spacing:2.880000px;}
.wsc{word-spacing:2.952000px;}
.ws3b{word-spacing:3.024000px;}
.ws96{word-spacing:3.096000px;}
.ws71{word-spacing:3.240000px;}
.ws56{word-spacing:3.384000px;}
.ws77{word-spacing:3.456000px;}
.ws9e{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.ws4d{word-spacing:3.744000px;}
.ws30{word-spacing:3.780000px;}
.ws21{word-spacing:3.816000px;}
.ws48{word-spacing:3.888000px;}
.ws5d{word-spacing:3.960000px;}
.ws46{word-spacing:4.104000px;}
.ws2f{word-spacing:4.158000px;}
.ws7{word-spacing:4.176000px;}
.ws23{word-spacing:4.248000px;}
.wsf{word-spacing:4.320000px;}
.ws2c{word-spacing:4.392000px;}
.ws5b{word-spacing:4.464000px;}
.ws41{word-spacing:4.536000px;}
.wsa{word-spacing:4.680000px;}
.ws9b{word-spacing:4.752000px;}
.ws8f{word-spacing:4.824000px;}
.ws64{word-spacing:4.896000px;}
.ws89{word-spacing:4.968000px;}
.wsa3{word-spacing:5.040000px;}
.ws60{word-spacing:5.112000px;}
.ws97{word-spacing:5.184000px;}
.ws9f{word-spacing:5.328000px;}
.ws5{word-spacing:5.400000px;}
.ws72{word-spacing:5.472000px;}
.ws6c{word-spacing:5.544000px;}
.ws70{word-spacing:5.616000px;}
.ws27{word-spacing:5.688000px;}
.ws1e{word-spacing:5.832000px;}
.ws53{word-spacing:5.904000px;}
.ws19{word-spacing:5.976000px;}
.ws6e{word-spacing:6.048000px;}
.ws9a{word-spacing:6.120000px;}
.ws6d{word-spacing:6.264000px;}
.ws1d{word-spacing:6.552000px;}
.ws17{word-spacing:6.624000px;}
.ws1a{word-spacing:6.696000px;}
.ws98{word-spacing:6.840000px;}
.ws88{word-spacing:7.056000px;}
.ws5c{word-spacing:7.200000px;}
.ws79{word-spacing:7.272000px;}
.ws42{word-spacing:7.344000px;}
.ws8c{word-spacing:7.632000px;}
.wsb{word-spacing:7.848000px;}
.ws92{word-spacing:7.920000px;}
.ws4a{word-spacing:8.064000px;}
.ws5f{word-spacing:8.136000px;}
.ws95{word-spacing:8.208000px;}
.ws50{word-spacing:8.280000px;}
.ws73{word-spacing:8.352000px;}
.ws47{word-spacing:8.568000px;}
.ws44{word-spacing:8.640000px;}
.ws7a{word-spacing:8.784000px;}
.ws87{word-spacing:8.856000px;}
.ws43{word-spacing:9.000000px;}
.ws4e{word-spacing:9.288000px;}
.ws39{word-spacing:9.432000px;}
.ws4b{word-spacing:9.648000px;}
.ws93{word-spacing:9.720000px;}
.ws78{word-spacing:9.864000px;}
.ws85{word-spacing:9.936000px;}
.ws83{word-spacing:10.080000px;}
.ws62{word-spacing:10.152000px;}
.ws94{word-spacing:10.800000px;}
.ws37{word-spacing:11.160000px;}
.ws3f{word-spacing:11.376000px;}
.ws82{word-spacing:11.520000px;}
.ws66{word-spacing:11.664000px;}
.ws68{word-spacing:11.736000px;}
.ws9c{word-spacing:11.952000px;}
.ws7b{word-spacing:12.024000px;}
.ws67{word-spacing:12.168000px;}
.ws61{word-spacing:12.600000px;}
.ws81{word-spacing:13.968000px;}
.ws8e{word-spacing:14.112000px;}
.ws8d{word-spacing:15.048000px;}
.ws5e{word-spacing:15.768000px;}
.ws52{word-spacing:16.272000px;}
.ws49{word-spacing:16.704000px;}
.wsa2{word-spacing:17.064000px;}
.ws91{word-spacing:17.352000px;}
.ws65{word-spacing:20.952000px;}
.ws86{word-spacing:21.672000px;}
.ws55{word-spacing:22.032000px;}
._1{margin-left:-650.476032px;}
._2{margin-left:-574.255104px;}
._3{margin-left:-409.175040px;}
._0{margin-left:-138.602496px;}
._10{margin-left:-14.314800px;}
._11{margin-left:-12.431069px;}
._a{margin-left:-10.062605px;}
._e{margin-left:-6.753600px;}
._c{margin-left:-5.666400px;}
._b{margin-left:-4.185331px;}
._9{margin-left:-2.908954px;}
._5{margin-left:-1.584000px;}
._4{width:1.042800px;}
._8{width:2.422800px;}
._6{width:3.535200px;}
._f{width:4.821000px;}
._7{width:6.106800px;}
._d{width:22.064400px;}
.fc4{color:rgb(155,176,185);}
.fc3{color:rgb(101,127,140);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(101,98,99);}
.fc0{color:transparent;}
.fsd{font-size:15.882600px;}
.fsa{font-size:19.200600px;}
.fsc{font-size:23.400600px;}
.fsb{font-size:33.000600px;}
.fs6{font-size:41.976000px;}
.fsf{font-size:42.600000px;}
.fse{font-size:45.000600px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:132.000000px;}
.fs5{font-size:164.832000px;}
.fs0{font-size:261.120000px;}
.fs4{font-size:296.832000px;}
.y0{bottom:0.000000px;}
.y55{bottom:72.283500px;}
.y153{bottom:78.926100px;}
.y37{bottom:81.516900px;}
.y162{bottom:83.062650px;}
.y6b{bottom:88.312350px;}
.y54{bottom:88.483500px;}
.y145{bottom:88.935900px;}
.yb{bottom:89.291250px;}
.y8a{bottom:92.135550px;}
.yee{bottom:98.492850px;}
.y152{bottom:100.526100px;}
.y36{bottom:103.116900px;}
.y161{bottom:104.662650px;}
.y53{bottom:104.683500px;}
.y6a{bottom:109.912350px;}
.y144{bottom:110.535900px;}
.ya{bottom:110.891400px;}
.y89{bottom:113.735550px;}
.yed{bottom:120.092850px;}
.y52{bottom:120.883500px;}
.y35{bottom:124.716900px;}
.y160{bottom:126.262650px;}
.y143{bottom:132.135900px;}
.y88{bottom:135.335550px;}
.y151{bottom:139.134000px;}
.y69{bottom:140.016150px;}
.y9{bottom:140.995200px;}
.yec{bottom:141.692850px;}
.y34{bottom:146.316900px;}
.y142{bottom:153.735900px;}
.y51{bottom:156.343800px;}
.y1b{bottom:159.911850px;}
.y68{bottom:161.616150px;}
.y15f{bottom:164.870550px;}
.y87{bottom:165.439500px;}
.y33{bottom:167.916900px;}
.y150{bottom:167.934000px;}
.yeb{bottom:171.796800px;}
.y50{bottom:177.943800px;}
.y1a{bottom:181.511850px;}
.y67{bottom:183.216300px;}
.y141{bottom:183.839850px;}
.y86{bottom:187.039500px;}
.yfc{bottom:187.042500px;}
.y32{bottom:189.516900px;}
.yea{bottom:193.396800px;}
.y15e{bottom:193.670550px;}
.y11c{bottom:198.750000px;}
.y4f{bottom:199.543800px;}
.y19{bottom:203.111850px;}
.y140{bottom:205.439850px;}
.y85{bottom:208.639500px;}
.yfb{bottom:208.642500px;}
.y31{bottom:211.116900px;}
.y66{bottom:213.320100px;}
.ye9{bottom:214.996800px;}
.y11b{bottom:220.350000px;}
.y18{bottom:224.711850px;}
.y13f{bottom:227.039850px;}
.y4e{bottom:229.647750px;}
.yfa{bottom:230.242500px;}
.y30{bottom:232.716900px;}
.y65{bottom:234.920100px;}
.y14f{bottom:235.341750px;}
.y84{bottom:238.743450px;}
.y11a{bottom:241.950000px;}
.ye8{bottom:245.100750px;}
.y17{bottom:246.311850px;}
.y13e{bottom:248.639850px;}
.y4d{bottom:251.247750px;}
.yf9{bottom:251.842500px;}
.y15d{bottom:252.574500px;}
.y2f{bottom:254.316900px;}
.y64{bottom:256.520250px;}
.y14e{bottom:256.941750px;}
.y83{bottom:260.343450px;}
.y119{bottom:263.550000px;}
.ye7{bottom:266.700750px;}
.y16{bottom:267.911850px;}
.y15c{bottom:274.174500px;}
.y2e{bottom:275.916900px;}
.y13d{bottom:278.743800px;}
.y16e{bottom:280.047750px;}
.y4c{bottom:281.351700px;}
.yf8{bottom:281.946300px;}
.y118{bottom:285.150000px;}
.y63{bottom:286.624050px;}
.y14d{bottom:287.045700px;}
.y82{bottom:290.447250px;}
.y15b{bottom:295.774500px;}
.ye6{bottom:296.804700px;}
.y15{bottom:298.015800px;}
.y13c{bottom:300.343800px;}
.y16d{bottom:301.647750px;}
.y8{bottom:302.305800px;}
.y4b{bottom:302.951700px;}
.yf7{bottom:303.546300px;}
.y14c{bottom:308.645700px;}
.y62{bottom:311.824200px;}
.y81{bottom:312.047250px;}
.y2d{bottom:314.524800px;}
.y117{bottom:315.253950px;}
.y15a{bottom:317.374500px;}
.ye5{bottom:318.404550px;}
.y13b{bottom:321.943800px;}
.y16c{bottom:323.247750px;}
.yf6{bottom:325.146450px;}
.y14{bottom:328.119750px;}
.y14b{bottom:330.245700px;}
.y80{bottom:333.647250px;}
.y116{bottom:336.853950px;}
.ye4{bottom:340.004700px;}
.y4a{bottom:341.559600px;}
.y2c{bottom:343.324650px;}
.y13a{bottom:343.543800px;}
.y16b{bottom:344.847750px;}
.y159{bottom:347.478450px;}
.y13{bottom:349.719750px;}
.y14a{bottom:351.845700px;}
.yf5{bottom:355.250250px;}
.ye3{bottom:361.604700px;}
.y61{bottom:362.535900px;}
.y7f{bottom:363.751200px;}
.y16a{bottom:366.447750px;}
.y115{bottom:366.957900px;}
.y158{bottom:369.078450px;}
.y49{bottom:370.359600px;}
.yf4{bottom:376.850400px;}
.y12{bottom:379.823700px;}
.y149{bottom:381.949650px;}
.y139{bottom:382.151700px;}
.ye2{bottom:383.204700px;}
.y7e{bottom:385.351200px;}
.y114{bottom:388.557900px;}
.y157{bottom:390.678450px;}
.y7{bottom:392.617500px;}
.y169{bottom:396.551700px;}
.y48{bottom:399.159600px;}
.y11{bottom:401.423700px;}
.yb2{bottom:401.743800px;}
.y148{bottom:403.549650px;}
.ycc{bottom:405.516900px;}
.y7d{bottom:406.951200px;}
.yf3{bottom:406.954200px;}
.y156{bottom:412.278450px;}
.ye1{bottom:413.308650px;}
.y168{bottom:418.151700px;}
.y113{bottom:418.661850px;}
.y6{bottom:422.721450px;}
.yb1{bottom:423.343800px;}
.y147{bottom:425.149650px;}
.ycb{bottom:427.116900px;}
.y7c{bottom:428.551200px;}
.yf2{bottom:428.554200px;}
.y10{bottom:431.527650px;}
.y155{bottom:433.878450px;}
.ye0{bottom:434.908650px;}
.y167{bottom:439.751700px;}
.y112{bottom:440.261850px;}
.yb0{bottom:444.943800px;}
.y60{bottom:445.647750px;}
.y146{bottom:446.749650px;}
.y138{bottom:449.559600px;}
.y7b{bottom:450.151200px;}
.yf1{bottom:450.154200px;}
.y154{bottom:455.478450px;}
.ydf{bottom:456.508650px;}
.yca{bottom:457.220850px;}
.y171{bottom:460.392300px;}
.y166{bottom:461.351700px;}
.yf{bottom:461.631600px;}
.y170{bottom:465.957300px;}
.yaf{bottom:466.543800px;}
.y47{bottom:466.567350px;}
.y5f{bottom:467.247750px;}
.y111{bottom:470.365650px;}
.y137{bottom:471.159600px;}
.y7a{bottom:471.751200px;}
.yf0{bottom:471.754200px;}
.y106{bottom:473.869950px;}
.y98{bottom:474.286800px;}
.y5{bottom:474.425400px;}
.y16f{bottom:474.687300px;}
.y174{bottom:477.477300px;}
.yde{bottom:478.108500px;}
.yc9{bottom:478.820850px;}
.y165{bottom:482.951700px;}
.y46{bottom:488.167350px;}
.y110{bottom:491.965800px;}
.y136{bottom:492.759450px;}
.y79{bottom:493.351200px;}
.yef{bottom:493.354200px;}
.y105{bottom:493.669950px;}
.y97{bottom:495.886800px;}
.y5e{bottom:497.351700px;}
.ya6{bottom:498.637500px;}
.y4{bottom:504.529350px;}
.yae{bottom:505.151700px;}
.y173{bottom:506.457150px;}
.ybd{bottom:507.167850px;}
.ydd{bottom:508.212450px;}
.yc8{bottom:508.924650px;}
.y45{bottom:509.767350px;}
.y104{bottom:513.470100px;}
.y135{bottom:514.359600px;}
.y172{bottom:517.977300px;}
.y5d{bottom:518.951700px;}
.ya5{bottom:520.237500px;}
.y10f{bottom:522.069600px;}
.y78{bottom:523.455150px;}
.y96{bottom:525.990750px;}
.yd{bottom:528.630450px;}
.ybc{bottom:528.767700px;}
.ydc{bottom:529.812450px;}
.yc7{bottom:530.524800px;}
.y44{bottom:531.367350px;}
.y5c{bottom:540.551700px;}
.ya4{bottom:541.837500px;}
.y164{bottom:543.159600px;}
.y10e{bottom:543.669750px;}
.y134{bottom:544.463400px;}
.y77{bottom:545.055150px;}
.y95{bottom:547.590600px;}
.yd2{bottom:549.055500px;}
.y103{bottom:550.277850px;}
.ybb{bottom:550.367850px;}
.ydb{bottom:551.412450px;}
.y43{bottom:552.967500px;}
.y130{bottom:553.070100px;}
.y124{bottom:555.012600px;}
.yc6{bottom:560.628600px;}
.ya3{bottom:563.437650px;}
.y10d{bottom:565.269600px;}
.y133{bottom:566.063550px;}
.y76{bottom:566.655150px;}
.y5b{bottom:570.655650px;}
.y163{bottom:571.959600px;}
.yba{bottom:571.967850px;}
.y3{bottom:572.303850px;}
.yad{bottom:572.559450px;}
.yda{bottom:573.012600px;}
.y42{bottom:574.567350px;}
.y12f{bottom:574.670100px;}
.y123{bottom:576.612450px;}
.y94{bottom:577.694550px;}
.yd1{bottom:579.159600px;}
.yc5{bottom:582.228750px;}
.ya2{bottom:585.037500px;}
.y132{bottom:587.663400px;}
.y75{bottom:588.255150px;}
.y5a{bottom:592.255650px;}
.yb9{bottom:593.567850px;}
.yac{bottom:594.159450px;}
.yd9{bottom:594.612450px;}
.y10c{bottom:595.373550px;}
.y41{bottom:596.167350px;}
.y12e{bottom:596.270100px;}
.y93{bottom:599.294550px;}
.yc4{bottom:603.828750px;}
.ya1{bottom:606.637500px;}
.y122{bottom:606.716400px;}
.yd0{bottom:609.263550px;}
.y74{bottom:609.855150px;}
.y59{bottom:613.855650px;}
.yb8{bottom:615.167700px;}
.yab{bottom:615.759450px;}
.yd8{bottom:616.212450px;}
.y10b{bottom:616.973550px;}
.yc{bottom:617.680050px;}
.y102{bottom:617.685750px;}
.y40{bottom:617.767350px;}
.y12d{bottom:617.870100px;}
.y92{bottom:620.894550px;}
.yc3{bottom:625.428750px;}
.y121{bottom:628.316400px;}
.y131{bottom:630.863550px;}
.y73{bottom:631.455150px;}
.ya0{bottom:636.741450px;}
.yb7{bottom:636.767700px;}
.yaa{bottom:637.359450px;}
.y101{bottom:639.285750px;}
.y3f{bottom:639.367350px;}
.y58{bottom:643.959600px;}
.yd7{bottom:646.316400px;}
.y10a{bottom:647.077500px;}
.y12c{bottom:647.974050px;}
.y120{bottom:649.916400px;}
.y91{bottom:650.998500px;}
.yc2{bottom:655.532550px;}
.y9f{bottom:658.341450px;}
.yb6{bottom:658.367850px;}
.ya9{bottom:658.959450px;}
.y100{bottom:660.885750px;}
.y3e{bottom:660.967500px;}
.y72{bottom:661.559100px;}
.yd6{bottom:667.916400px;}
.y12b{bottom:669.574050px;}
.y2b{bottom:669.932550px;}
.y25{bottom:670.524300px;}
.y11f{bottom:671.516400px;}
.y90{bottom:672.598500px;}
.y57{bottom:674.063400px;}
.yc1{bottom:677.132700px;}
.y9e{bottom:679.941450px;}
.yb5{bottom:679.967850px;}
.ya8{bottom:680.559450px;}
.yff{bottom:682.485750px;}
.y3d{bottom:682.567500px;}
.y71{bottom:683.159100px;}
.y109{bottom:685.685400px;}
.yd5{bottom:689.516400px;}
.y12a{bottom:691.174050px;}
.y2a{bottom:691.532550px;}
.y24{bottom:692.124300px;}
.y11e{bottom:693.116400px;}
.y56{bottom:695.663400px;}
.yc0{bottom:698.732550px;}
.y9d{bottom:701.541450px;}
.yb4{bottom:701.567850px;}
.y8f{bottom:702.702450px;}
.yfe{bottom:704.085750px;}
.y3c{bottom:704.167350px;}
.y70{bottom:704.759100px;}
.ycf{bottom:712.671300px;}
.y129{bottom:712.774050px;}
.y29{bottom:713.132700px;}
.y23{bottom:713.724300px;}
.y108{bottom:714.485400px;}
.y11d{bottom:714.716400px;}
.yd4{bottom:719.620350px;}
.y1{bottom:722.448150px;}
.ye{bottom:723.596400px;}
.y1e{bottom:724.008600px;}
.y8e{bottom:724.302450px;}
.y3b{bottom:725.767350px;}
.y9c{bottom:731.645400px;}
.yce{bottom:734.271300px;}
.y128{bottom:734.374050px;}
.y28{bottom:734.732550px;}
.y6f{bottom:734.863050px;}
.y22{bottom:735.324300px;}
.ybf{bottom:737.340450px;}
.yb3{bottom:740.175600px;}
.ya7{bottom:740.767350px;}
.yfd{bottom:742.693650px;}
.y107{bottom:743.285400px;}
.yd3{bottom:744.820350px;}
.y8d{bottom:745.902450px;}
.y3a{bottom:747.367350px;}
.y9b{bottom:753.245400px;}
.ycd{bottom:755.871300px;}
.y127{bottom:755.974050px;}
.y27{bottom:756.332550px;}
.y6e{bottom:756.463050px;}
.y21{bottom:756.924300px;}
.ybe{bottom:766.140450px;}
.y8c{bottom:767.502450px;}
.y1d{bottom:773.458200px;}
.y9a{bottom:774.845400px;}
.y39{bottom:777.471300px;}
.y126{bottom:777.574050px;}
.y6d{bottom:778.063050px;}
.y26{bottom:794.940450px;}
.y20{bottom:795.532200px;}
.y99{bottom:796.445400px;}
.y8b{bottom:797.606400px;}
.y38{bottom:799.071300px;}
.y125{bottom:799.174050px;}
.y6c{bottom:799.663050px;}
.y2{bottom:804.587400px;}
.y1f{bottom:851.162100px;}
.y1c{bottom:852.546750px;}
.h15{height:10.577812px;}
.h12{height:20.025626px;}
.h14{height:22.966409px;}
.h13{height:34.418595px;}
.h17{height:44.430469px;}
.h16{height:46.934220px;}
.hd{height:47.065430px;}
.hf{height:57.524414px;}
.h6{height:62.753906px;}
.h5{height:62.824219px;}
.hc{height:65.425781px;}
.he{height:76.330078px;}
.ha{height:81.695775px;}
.h4{height:87.234375px;}
.h3{height:92.400000px;}
.hb{height:133.513920px;}
.h2{height:227.842500px;}
.h7{height:259.003312px;}
.h0{height:918.424500px;}
.h1{height:918.750000px;}
.h11{height:921.000000px;}
.h10{height:921.177000px;}
.h9{height:921.750000px;}
.h8{height:922.071000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.w5{width:921.750000px;}
.w4{width:921.970500px;}
.w2{width:923.155500px;}
.w3{width:923.250000px;}
.x0{left:0.000000px;}
.x12{left:50.617350px;}
.x13{left:51.789150px;}
.xa{left:58.937550px;}
.x3{left:72.283500px;}
.x1{left:76.535400px;}
.x2{left:81.529050px;}
.x10{left:97.795200px;}
.xe{left:102.047250px;}
.xf{left:119.055150px;}
.x7{left:158.462700px;}
.x8{left:179.722500px;}
.x6{left:271.562100px;}
.x4{left:276.482700px;}
.x5{left:281.157000px;}
.xb{left:476.220450px;}
.x11{left:497.480250px;}
.xc{left:501.732300px;}
.x18{left:509.250900px;}
.x14{left:516.810900px;}
.xd{left:518.740200px;}
.x15{left:537.150900px;}
.x19{left:540.405900px;}
.x16{left:544.275900px;}
.x17{left:550.725900px;}
.x1d{left:608.400900px;}
.x1a{left:644.955900px;}
.x9{left:666.293100px;}
.x1b{left:680.700900px;}
.x1c{left:691.006050px;}
.x1e{left:698.400900px;}
@media print{
.v1{vertical-align:-4.923200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.lsd{letter-spacing:-1.189013pt;}
.lsa{letter-spacing:-0.728019pt;}
.ls9{letter-spacing:-0.597352pt;}
.lsc{letter-spacing:-0.300004pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.018304pt;}
.ls6{letter-spacing:0.367307pt;}
.ls3{letter-spacing:0.557343pt;}
.ls4{letter-spacing:0.613078pt;}
.ls8{letter-spacing:0.853360pt;}
.ls5{letter-spacing:1.568021pt;}
.ls7{letter-spacing:1.779733pt;}
.lse{letter-spacing:1.893333pt;}
.lsb{letter-spacing:2.000027pt;}
.ws2{word-spacing:-67.281920pt;}
.ws12{word-spacing:-14.656000pt;}
.ws22{word-spacing:-2.944000pt;}
.ws8a{word-spacing:-2.880000pt;}
.ws9d{word-spacing:-2.816000pt;}
.ws6{word-spacing:-2.560000pt;}
.ws8b{word-spacing:-2.496000pt;}
.ws40{word-spacing:-2.368000pt;}
.wse{word-spacing:-2.240000pt;}
.ws90{word-spacing:-2.048000pt;}
.ws14{word-spacing:-1.984000pt;}
.ws80{word-spacing:-1.877333pt;}
.ws1c{word-spacing:-1.856000pt;}
.ws1b{word-spacing:-1.792000pt;}
.ws2b{word-spacing:-1.664000pt;}
.ws29{word-spacing:-1.600000pt;}
.ws5a{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.472000pt;}
.ws8{word-spacing:-1.408000pt;}
.ws6b{word-spacing:-1.344000pt;}
.ws31{word-spacing:-1.296000pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.216000pt;}
.ws24{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.088000pt;}
.ws10{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-0.960000pt;}
.ws4c{word-spacing:-0.896000pt;}
.ws34{word-spacing:-0.832000pt;}
.ws7d{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.704000pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws45{word-spacing:-0.512000pt;}
.wsa1{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws6f{word-spacing:-0.256000pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws63{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws57{word-spacing:0.064000pt;}
.ws69{word-spacing:0.128000pt;}
.wsa0{word-spacing:0.192000pt;}
.ws4{word-spacing:0.256000pt;}
.ws84{word-spacing:0.320000pt;}
.ws7c{word-spacing:0.448000pt;}
.ws28{word-spacing:0.512000pt;}
.ws1{word-spacing:0.576000pt;}
.ws74{word-spacing:0.704000pt;}
.ws11{word-spacing:0.768000pt;}
.ws58{word-spacing:0.832000pt;}
.ws3a{word-spacing:0.896000pt;}
.ws51{word-spacing:0.960000pt;}
.ws9{word-spacing:1.024000pt;}
.ws3c{word-spacing:1.088000pt;}
.ws59{word-spacing:1.152000pt;}
.ws3{word-spacing:1.216000pt;}
.ws35{word-spacing:1.280000pt;}
.wsd{word-spacing:1.408000pt;}
.ws7f{word-spacing:1.466667pt;}
.ws54{word-spacing:1.600000pt;}
.ws36{word-spacing:1.728000pt;}
.ws38{word-spacing:1.792000pt;}
.ws99{word-spacing:1.856000pt;}
.ws33{word-spacing:1.920000pt;}
.ws7e{word-spacing:1.984000pt;}
.ws26{word-spacing:2.048000pt;}
.ws1f{word-spacing:2.112000pt;}
.ws13{word-spacing:2.176000pt;}
.ws75{word-spacing:2.304000pt;}
.ws32{word-spacing:2.432000pt;}
.ws6a{word-spacing:2.496000pt;}
.ws76{word-spacing:2.560000pt;}
.wsc{word-spacing:2.624000pt;}
.ws3b{word-spacing:2.688000pt;}
.ws96{word-spacing:2.752000pt;}
.ws71{word-spacing:2.880000pt;}
.ws56{word-spacing:3.008000pt;}
.ws77{word-spacing:3.072000pt;}
.ws9e{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.ws4d{word-spacing:3.328000pt;}
.ws30{word-spacing:3.360000pt;}
.ws21{word-spacing:3.392000pt;}
.ws48{word-spacing:3.456000pt;}
.ws5d{word-spacing:3.520000pt;}
.ws46{word-spacing:3.648000pt;}
.ws2f{word-spacing:3.696000pt;}
.ws7{word-spacing:3.712000pt;}
.ws23{word-spacing:3.776000pt;}
.wsf{word-spacing:3.840000pt;}
.ws2c{word-spacing:3.904000pt;}
.ws5b{word-spacing:3.968000pt;}
.ws41{word-spacing:4.032000pt;}
.wsa{word-spacing:4.160000pt;}
.ws9b{word-spacing:4.224000pt;}
.ws8f{word-spacing:4.288000pt;}
.ws64{word-spacing:4.352000pt;}
.ws89{word-spacing:4.416000pt;}
.wsa3{word-spacing:4.480000pt;}
.ws60{word-spacing:4.544000pt;}
.ws97{word-spacing:4.608000pt;}
.ws9f{word-spacing:4.736000pt;}
.ws5{word-spacing:4.800000pt;}
.ws72{word-spacing:4.864000pt;}
.ws6c{word-spacing:4.928000pt;}
.ws70{word-spacing:4.992000pt;}
.ws27{word-spacing:5.056000pt;}
.ws1e{word-spacing:5.184000pt;}
.ws53{word-spacing:5.248000pt;}
.ws19{word-spacing:5.312000pt;}
.ws6e{word-spacing:5.376000pt;}
.ws9a{word-spacing:5.440000pt;}
.ws6d{word-spacing:5.568000pt;}
.ws1d{word-spacing:5.824000pt;}
.ws17{word-spacing:5.888000pt;}
.ws1a{word-spacing:5.952000pt;}
.ws98{word-spacing:6.080000pt;}
.ws88{word-spacing:6.272000pt;}
.ws5c{word-spacing:6.400000pt;}
.ws79{word-spacing:6.464000pt;}
.ws42{word-spacing:6.528000pt;}
.ws8c{word-spacing:6.784000pt;}
.wsb{word-spacing:6.976000pt;}
.ws92{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws5f{word-spacing:7.232000pt;}
.ws95{word-spacing:7.296000pt;}
.ws50{word-spacing:7.360000pt;}
.ws73{word-spacing:7.424000pt;}
.ws47{word-spacing:7.616000pt;}
.ws44{word-spacing:7.680000pt;}
.ws7a{word-spacing:7.808000pt;}
.ws87{word-spacing:7.872000pt;}
.ws43{word-spacing:8.000000pt;}
.ws4e{word-spacing:8.256000pt;}
.ws39{word-spacing:8.384000pt;}
.ws4b{word-spacing:8.576000pt;}
.ws93{word-spacing:8.640000pt;}
.ws78{word-spacing:8.768000pt;}
.ws85{word-spacing:8.832000pt;}
.ws83{word-spacing:8.960000pt;}
.ws62{word-spacing:9.024000pt;}
.ws94{word-spacing:9.600000pt;}
.ws37{word-spacing:9.920000pt;}
.ws3f{word-spacing:10.112000pt;}
.ws82{word-spacing:10.240000pt;}
.ws66{word-spacing:10.368000pt;}
.ws68{word-spacing:10.432000pt;}
.ws9c{word-spacing:10.624000pt;}
.ws7b{word-spacing:10.688000pt;}
.ws67{word-spacing:10.816000pt;}
.ws61{word-spacing:11.200000pt;}
.ws81{word-spacing:12.416000pt;}
.ws8e{word-spacing:12.544000pt;}
.ws8d{word-spacing:13.376000pt;}
.ws5e{word-spacing:14.016000pt;}
.ws52{word-spacing:14.464000pt;}
.ws49{word-spacing:14.848000pt;}
.wsa2{word-spacing:15.168000pt;}
.ws91{word-spacing:15.424000pt;}
.ws65{word-spacing:18.624000pt;}
.ws86{word-spacing:19.264000pt;}
.ws55{word-spacing:19.584000pt;}
._1{margin-left:-578.200917pt;}
._2{margin-left:-510.448981pt;}
._3{margin-left:-363.711147pt;}
._0{margin-left:-123.202219pt;}
._10{margin-left:-12.724267pt;}
._11{margin-left:-11.049839pt;}
._a{margin-left:-8.944538pt;}
._e{margin-left:-6.003200pt;}
._c{margin-left:-5.036800pt;}
._b{margin-left:-3.720294pt;}
._9{margin-left:-2.585737pt;}
._5{margin-left:-1.408000pt;}
._4{width:0.926933pt;}
._8{width:2.153600pt;}
._6{width:3.142400pt;}
._f{width:4.285333pt;}
._7{width:5.428267pt;}
._d{width:19.612800pt;}
.fsd{font-size:14.117867pt;}
.fsa{font-size:17.067200pt;}
.fsc{font-size:20.800533pt;}
.fsb{font-size:29.333867pt;}
.fs6{font-size:37.312000pt;}
.fsf{font-size:37.866667pt;}
.fse{font-size:40.000533pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:117.333333pt;}
.fs5{font-size:146.517333pt;}
.fs0{font-size:232.106667pt;}
.fs4{font-size:263.850667pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:64.252000pt;}
.y153{bottom:70.156533pt;}
.y37{bottom:72.459467pt;}
.y162{bottom:73.833467pt;}
.y6b{bottom:78.499867pt;}
.y54{bottom:78.652000pt;}
.y145{bottom:79.054133pt;}
.yb{bottom:79.370000pt;}
.y8a{bottom:81.898267pt;}
.yee{bottom:87.549200pt;}
.y152{bottom:89.356533pt;}
.y36{bottom:91.659467pt;}
.y161{bottom:93.033467pt;}
.y53{bottom:93.052000pt;}
.y6a{bottom:97.699867pt;}
.y144{bottom:98.254133pt;}
.ya{bottom:98.570133pt;}
.y89{bottom:101.098267pt;}
.yed{bottom:106.749200pt;}
.y52{bottom:107.452000pt;}
.y35{bottom:110.859467pt;}
.y160{bottom:112.233467pt;}
.y143{bottom:117.454133pt;}
.y88{bottom:120.298267pt;}
.y151{bottom:123.674667pt;}
.y69{bottom:124.458800pt;}
.y9{bottom:125.329067pt;}
.yec{bottom:125.949200pt;}
.y34{bottom:130.059467pt;}
.y142{bottom:136.654133pt;}
.y51{bottom:138.972267pt;}
.y1b{bottom:142.143867pt;}
.y68{bottom:143.658800pt;}
.y15f{bottom:146.551600pt;}
.y87{bottom:147.057333pt;}
.y33{bottom:149.259467pt;}
.y150{bottom:149.274667pt;}
.yeb{bottom:152.708267pt;}
.y50{bottom:158.172267pt;}
.y1a{bottom:161.343867pt;}
.y67{bottom:162.858933pt;}
.y141{bottom:163.413200pt;}
.y86{bottom:166.257333pt;}
.yfc{bottom:166.260000pt;}
.y32{bottom:168.459467pt;}
.yea{bottom:171.908267pt;}
.y15e{bottom:172.151600pt;}
.y11c{bottom:176.666667pt;}
.y4f{bottom:177.372267pt;}
.y19{bottom:180.543867pt;}
.y140{bottom:182.613200pt;}
.y85{bottom:185.457333pt;}
.yfb{bottom:185.460000pt;}
.y31{bottom:187.659467pt;}
.y66{bottom:189.617867pt;}
.ye9{bottom:191.108267pt;}
.y11b{bottom:195.866667pt;}
.y18{bottom:199.743867pt;}
.y13f{bottom:201.813200pt;}
.y4e{bottom:204.131333pt;}
.yfa{bottom:204.660000pt;}
.y30{bottom:206.859467pt;}
.y65{bottom:208.817867pt;}
.y14f{bottom:209.192667pt;}
.y84{bottom:212.216400pt;}
.y11a{bottom:215.066667pt;}
.ye8{bottom:217.867333pt;}
.y17{bottom:218.943867pt;}
.y13e{bottom:221.013200pt;}
.y4d{bottom:223.331333pt;}
.yf9{bottom:223.860000pt;}
.y15d{bottom:224.510667pt;}
.y2f{bottom:226.059467pt;}
.y64{bottom:228.018000pt;}
.y14e{bottom:228.392667pt;}
.y83{bottom:231.416400pt;}
.y119{bottom:234.266667pt;}
.ye7{bottom:237.067333pt;}
.y16{bottom:238.143867pt;}
.y15c{bottom:243.710667pt;}
.y2e{bottom:245.259467pt;}
.y13d{bottom:247.772267pt;}
.y16e{bottom:248.931333pt;}
.y4c{bottom:250.090400pt;}
.yf8{bottom:250.618933pt;}
.y118{bottom:253.466667pt;}
.y63{bottom:254.776933pt;}
.y14d{bottom:255.151733pt;}
.y82{bottom:258.175333pt;}
.y15b{bottom:262.910667pt;}
.ye6{bottom:263.826400pt;}
.y15{bottom:264.902933pt;}
.y13c{bottom:266.972267pt;}
.y16d{bottom:268.131333pt;}
.y8{bottom:268.716267pt;}
.y4b{bottom:269.290400pt;}
.yf7{bottom:269.818933pt;}
.y14c{bottom:274.351733pt;}
.y62{bottom:277.177067pt;}
.y81{bottom:277.375333pt;}
.y2d{bottom:279.577600pt;}
.y117{bottom:280.225733pt;}
.y15a{bottom:282.110667pt;}
.ye5{bottom:283.026267pt;}
.y13b{bottom:286.172267pt;}
.y16c{bottom:287.331333pt;}
.yf6{bottom:289.019067pt;}
.y14{bottom:291.662000pt;}
.y14b{bottom:293.551733pt;}
.y80{bottom:296.575333pt;}
.y116{bottom:299.425733pt;}
.ye4{bottom:302.226400pt;}
.y4a{bottom:303.608533pt;}
.y2c{bottom:305.177467pt;}
.y13a{bottom:305.372267pt;}
.y16b{bottom:306.531333pt;}
.y159{bottom:308.869733pt;}
.y13{bottom:310.862000pt;}
.y14a{bottom:312.751733pt;}
.yf5{bottom:315.778000pt;}
.ye3{bottom:321.426400pt;}
.y61{bottom:322.254133pt;}
.y7f{bottom:323.334400pt;}
.y16a{bottom:325.731333pt;}
.y115{bottom:326.184800pt;}
.y158{bottom:328.069733pt;}
.y49{bottom:329.208533pt;}
.yf4{bottom:334.978133pt;}
.y12{bottom:337.621067pt;}
.y149{bottom:339.510800pt;}
.y139{bottom:339.690400pt;}
.ye2{bottom:340.626400pt;}
.y7e{bottom:342.534400pt;}
.y114{bottom:345.384800pt;}
.y157{bottom:347.269733pt;}
.y7{bottom:348.993333pt;}
.y169{bottom:352.490400pt;}
.y48{bottom:354.808533pt;}
.y11{bottom:356.821067pt;}
.yb2{bottom:357.105600pt;}
.y148{bottom:358.710800pt;}
.ycc{bottom:360.459467pt;}
.y7d{bottom:361.734400pt;}
.yf3{bottom:361.737067pt;}
.y156{bottom:366.469733pt;}
.ye1{bottom:367.385467pt;}
.y168{bottom:371.690400pt;}
.y113{bottom:372.143867pt;}
.y6{bottom:375.752400pt;}
.yb1{bottom:376.305600pt;}
.y147{bottom:377.910800pt;}
.ycb{bottom:379.659467pt;}
.y7c{bottom:380.934400pt;}
.yf2{bottom:380.937067pt;}
.y10{bottom:383.580133pt;}
.y155{bottom:385.669733pt;}
.ye0{bottom:386.585467pt;}
.y167{bottom:390.890400pt;}
.y112{bottom:391.343867pt;}
.yb0{bottom:395.505600pt;}
.y60{bottom:396.131333pt;}
.y146{bottom:397.110800pt;}
.y138{bottom:399.608533pt;}
.y7b{bottom:400.134400pt;}
.yf1{bottom:400.137067pt;}
.y154{bottom:404.869733pt;}
.ydf{bottom:405.785467pt;}
.yca{bottom:406.418533pt;}
.y171{bottom:409.237600pt;}
.y166{bottom:410.090400pt;}
.yf{bottom:410.339200pt;}
.y170{bottom:414.184267pt;}
.yaf{bottom:414.705600pt;}
.y47{bottom:414.726533pt;}
.y5f{bottom:415.331333pt;}
.y111{bottom:418.102800pt;}
.y137{bottom:418.808533pt;}
.y7a{bottom:419.334400pt;}
.yf0{bottom:419.337067pt;}
.y106{bottom:421.217733pt;}
.y98{bottom:421.588267pt;}
.y5{bottom:421.711467pt;}
.y16f{bottom:421.944267pt;}
.y174{bottom:424.424267pt;}
.yde{bottom:424.985333pt;}
.yc9{bottom:425.618533pt;}
.y165{bottom:429.290400pt;}
.y46{bottom:433.926533pt;}
.y110{bottom:437.302933pt;}
.y136{bottom:438.008400pt;}
.y79{bottom:438.534400pt;}
.yef{bottom:438.537067pt;}
.y105{bottom:438.817733pt;}
.y97{bottom:440.788267pt;}
.y5e{bottom:442.090400pt;}
.ya6{bottom:443.233333pt;}
.y4{bottom:448.470533pt;}
.yae{bottom:449.023733pt;}
.y173{bottom:450.184133pt;}
.ybd{bottom:450.815867pt;}
.ydd{bottom:451.744400pt;}
.yc8{bottom:452.377467pt;}
.y45{bottom:453.126533pt;}
.y104{bottom:456.417867pt;}
.y135{bottom:457.208533pt;}
.y172{bottom:460.424267pt;}
.y5d{bottom:461.290400pt;}
.ya5{bottom:462.433333pt;}
.y10f{bottom:464.061867pt;}
.y78{bottom:465.293467pt;}
.y96{bottom:467.547333pt;}
.yd{bottom:469.893733pt;}
.ybc{bottom:470.015733pt;}
.ydc{bottom:470.944400pt;}
.yc7{bottom:471.577600pt;}
.y44{bottom:472.326533pt;}
.y5c{bottom:480.490400pt;}
.ya4{bottom:481.633333pt;}
.y164{bottom:482.808533pt;}
.y10e{bottom:483.262000pt;}
.y134{bottom:483.967467pt;}
.y77{bottom:484.493467pt;}
.y95{bottom:486.747200pt;}
.yd2{bottom:488.049333pt;}
.y103{bottom:489.135867pt;}
.ybb{bottom:489.215867pt;}
.ydb{bottom:490.144400pt;}
.y43{bottom:491.526667pt;}
.y130{bottom:491.617867pt;}
.y124{bottom:493.344533pt;}
.yc6{bottom:498.336533pt;}
.ya3{bottom:500.833467pt;}
.y10d{bottom:502.461867pt;}
.y133{bottom:503.167600pt;}
.y76{bottom:503.693467pt;}
.y5b{bottom:507.249467pt;}
.y163{bottom:508.408533pt;}
.yba{bottom:508.415867pt;}
.y3{bottom:508.714533pt;}
.yad{bottom:508.941733pt;}
.yda{bottom:509.344533pt;}
.y42{bottom:510.726533pt;}
.y12f{bottom:510.817867pt;}
.y123{bottom:512.544400pt;}
.y94{bottom:513.506267pt;}
.yd1{bottom:514.808533pt;}
.yc5{bottom:517.536667pt;}
.ya2{bottom:520.033333pt;}
.y132{bottom:522.367467pt;}
.y75{bottom:522.893467pt;}
.y5a{bottom:526.449467pt;}
.yb9{bottom:527.615867pt;}
.yac{bottom:528.141733pt;}
.yd9{bottom:528.544400pt;}
.y10c{bottom:529.220933pt;}
.y41{bottom:529.926533pt;}
.y12e{bottom:530.017867pt;}
.y93{bottom:532.706267pt;}
.yc4{bottom:536.736667pt;}
.ya1{bottom:539.233333pt;}
.y122{bottom:539.303467pt;}
.yd0{bottom:541.567600pt;}
.y74{bottom:542.093467pt;}
.y59{bottom:545.649467pt;}
.yb8{bottom:546.815733pt;}
.yab{bottom:547.341733pt;}
.yd8{bottom:547.744400pt;}
.y10b{bottom:548.420933pt;}
.yc{bottom:549.048933pt;}
.y102{bottom:549.054000pt;}
.y40{bottom:549.126533pt;}
.y12d{bottom:549.217867pt;}
.y92{bottom:551.906267pt;}
.yc3{bottom:555.936667pt;}
.y121{bottom:558.503467pt;}
.y131{bottom:560.767600pt;}
.y73{bottom:561.293467pt;}
.ya0{bottom:565.992400pt;}
.yb7{bottom:566.015733pt;}
.yaa{bottom:566.541733pt;}
.y101{bottom:568.254000pt;}
.y3f{bottom:568.326533pt;}
.y58{bottom:572.408533pt;}
.yd7{bottom:574.503467pt;}
.y10a{bottom:575.180000pt;}
.y12c{bottom:575.976933pt;}
.y120{bottom:577.703467pt;}
.y91{bottom:578.665333pt;}
.yc2{bottom:582.695600pt;}
.y9f{bottom:585.192400pt;}
.yb6{bottom:585.215867pt;}
.ya9{bottom:585.741733pt;}
.y100{bottom:587.454000pt;}
.y3e{bottom:587.526667pt;}
.y72{bottom:588.052533pt;}
.yd6{bottom:593.703467pt;}
.y12b{bottom:595.176933pt;}
.y2b{bottom:595.495600pt;}
.y25{bottom:596.021600pt;}
.y11f{bottom:596.903467pt;}
.y90{bottom:597.865333pt;}
.y57{bottom:599.167467pt;}
.yc1{bottom:601.895733pt;}
.y9e{bottom:604.392400pt;}
.yb5{bottom:604.415867pt;}
.ya8{bottom:604.941733pt;}
.yff{bottom:606.654000pt;}
.y3d{bottom:606.726667pt;}
.y71{bottom:607.252533pt;}
.y109{bottom:609.498133pt;}
.yd5{bottom:612.903467pt;}
.y12a{bottom:614.376933pt;}
.y2a{bottom:614.695600pt;}
.y24{bottom:615.221600pt;}
.y11e{bottom:616.103467pt;}
.y56{bottom:618.367467pt;}
.yc0{bottom:621.095600pt;}
.y9d{bottom:623.592400pt;}
.yb4{bottom:623.615867pt;}
.y8f{bottom:624.624400pt;}
.yfe{bottom:625.854000pt;}
.y3c{bottom:625.926533pt;}
.y70{bottom:626.452533pt;}
.ycf{bottom:633.485600pt;}
.y129{bottom:633.576933pt;}
.y29{bottom:633.895733pt;}
.y23{bottom:634.421600pt;}
.y108{bottom:635.098133pt;}
.y11d{bottom:635.303467pt;}
.yd4{bottom:639.662533pt;}
.y1{bottom:642.176133pt;}
.ye{bottom:643.196800pt;}
.y1e{bottom:643.563200pt;}
.y8e{bottom:643.824400pt;}
.y3b{bottom:645.126533pt;}
.y9c{bottom:650.351467pt;}
.yce{bottom:652.685600pt;}
.y128{bottom:652.776933pt;}
.y28{bottom:653.095600pt;}
.y6f{bottom:653.211600pt;}
.y22{bottom:653.621600pt;}
.ybf{bottom:655.413733pt;}
.yb3{bottom:657.933867pt;}
.ya7{bottom:658.459867pt;}
.yfd{bottom:660.172133pt;}
.y107{bottom:660.698133pt;}
.yd3{bottom:662.062533pt;}
.y8d{bottom:663.024400pt;}
.y3a{bottom:664.326533pt;}
.y9b{bottom:669.551467pt;}
.ycd{bottom:671.885600pt;}
.y127{bottom:671.976933pt;}
.y27{bottom:672.295600pt;}
.y6e{bottom:672.411600pt;}
.y21{bottom:672.821600pt;}
.ybe{bottom:681.013733pt;}
.y8c{bottom:682.224400pt;}
.y1d{bottom:687.518400pt;}
.y9a{bottom:688.751467pt;}
.y39{bottom:691.085600pt;}
.y126{bottom:691.176933pt;}
.y6d{bottom:691.611600pt;}
.y26{bottom:706.613733pt;}
.y20{bottom:707.139733pt;}
.y99{bottom:707.951467pt;}
.y8b{bottom:708.983467pt;}
.y38{bottom:710.285600pt;}
.y125{bottom:710.376933pt;}
.y6c{bottom:710.811600pt;}
.y2{bottom:715.188800pt;}
.y1f{bottom:756.588533pt;}
.y1c{bottom:757.819333pt;}
.h15{height:9.402499pt;}
.h12{height:17.800556pt;}
.h14{height:20.414586pt;}
.h13{height:30.594306pt;}
.h17{height:39.493750pt;}
.h16{height:41.719306pt;}
.hd{height:41.835938pt;}
.hf{height:51.132812pt;}
.h6{height:55.781250pt;}
.h5{height:55.843750pt;}
.hc{height:58.156250pt;}
.he{height:67.848958pt;}
.ha{height:72.618467pt;}
.h4{height:77.541667pt;}
.h3{height:82.133333pt;}
.hb{height:118.679040pt;}
.h2{height:202.526667pt;}
.h7{height:230.225167pt;}
.h0{height:816.377333pt;}
.h1{height:816.666667pt;}
.h11{height:818.666667pt;}
.h10{height:818.824000pt;}
.h9{height:819.333333pt;}
.h8{height:819.618667pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.w5{width:819.333333pt;}
.w4{width:819.529333pt;}
.w2{width:820.582667pt;}
.w3{width:820.666667pt;}
.x0{left:0.000000pt;}
.x12{left:44.993200pt;}
.x13{left:46.034800pt;}
.xa{left:52.388933pt;}
.x3{left:64.252000pt;}
.x1{left:68.031467pt;}
.x2{left:72.470267pt;}
.x10{left:86.929067pt;}
.xe{left:90.708667pt;}
.xf{left:105.826800pt;}
.x7{left:140.855733pt;}
.x8{left:159.753333pt;}
.x6{left:241.388533pt;}
.x4{left:245.762400pt;}
.x5{left:249.917333pt;}
.xb{left:423.307067pt;}
.x11{left:442.204667pt;}
.xc{left:445.984267pt;}
.x18{left:452.667467pt;}
.x14{left:459.387467pt;}
.xd{left:461.102400pt;}
.x15{left:477.467467pt;}
.x19{left:480.360800pt;}
.x16{left:483.800800pt;}
.x17{left:489.534133pt;}
.x1d{left:540.800800pt;}
.x1a{left:573.294133pt;}
.x9{left:592.260533pt;}
.x1b{left:605.067467pt;}
.x1c{left:614.227600pt;}
.x1e{left:620.800800pt;}
}




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