
    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_9b0d47b59911cd013e86540e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1b11d15c878b0e20d3efff7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01d3f50fa780a3c61c50af18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.153000;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_6c5b4211fdad3ccfad44eed5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_812e5fd95c434101be7956cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_0db3027b4fea78843587f574.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056641;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_5b637d3f85f8064eb6340871.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.474000;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_55ba8480fd8be3e7e1b0189e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_4d569a0d9eed96b4ad2fbeae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-21.708000px;}
.v9{vertical-align:-19.547400px;}
.v5{vertical-align:-8.960280px;}
.v2{vertical-align:-2.918400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.918400px;}
.v8{vertical-align:4.214827px;}
.v7{vertical-align:14.474827px;}
.v6{vertical-align:19.547400px;}
.v1{vertical-align:21.708000px;}
.ls21{letter-spacing:-4.944073px;}
.ls26{letter-spacing:-2.668389px;}
.ls8{letter-spacing:-1.330007px;}
.lsf{letter-spacing:-0.025405px;}
.lsb{letter-spacing:-0.023910px;}
.ls13{letter-spacing:-0.017933px;}
.ls22{letter-spacing:-0.016140px;}
.lsd{letter-spacing:-0.015243px;}
.lsa{letter-spacing:-0.011955px;}
.ls9{letter-spacing:-0.010760px;}
.ls23{letter-spacing:-0.010329px;}
.lse{letter-spacing:-0.010162px;}
.ls25{letter-spacing:-0.009564px;}
.ls5{letter-spacing:-0.005978px;}
.ls6{letter-spacing:-0.005380px;}
.lsc{letter-spacing:-0.005081px;}
.ls24{letter-spacing:-0.004782px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005380px;}
.ls1{letter-spacing:0.005978px;}
.ls15{letter-spacing:0.007173px;}
.ls1a{letter-spacing:0.010760px;}
.ls11{letter-spacing:0.011955px;}
.ls14{letter-spacing:0.013629px;}
.ls1e{letter-spacing:0.021519px;}
.ls19{letter-spacing:0.022715px;}
.ls1b{letter-spacing:0.026467px;}
.ls4{letter-spacing:0.534000px;}
.ls17{letter-spacing:0.629510px;}
.ls10{letter-spacing:2.989200px;}
.ls2{letter-spacing:3.015943px;}
.ls3{letter-spacing:13.449600px;}
.ls1c{letter-spacing:13.460360px;}
.ls12{letter-spacing:18.805404px;}
.ls16{letter-spacing:41.878785px;}
.ls1f{letter-spacing:297.289200px;}
.ls18{letter-spacing:314.375529px;}
.ls1d{letter-spacing:330.717741px;}
.ls20{letter-spacing:477.028200px;}
.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;}
}
.ws43{word-spacing:-18.865179px;}
.ws9a{word-spacing:-17.939823px;}
.ws8b{word-spacing:-15.128057px;}
.ws8a{word-spacing:-13.514158px;}
.wsaa{word-spacing:-13.449600px;}
.ws9d{word-spacing:-13.444220px;}
.wsf{word-spacing:-6.141943px;}
.ws37{word-spacing:-0.071731px;}
.ws84{word-spacing:-0.068144px;}
.ws7{word-spacing:-0.065873px;}
.ws36{word-spacing:-0.059776px;}
.ws61{word-spacing:-0.059058px;}
.ws85{word-spacing:-0.053798px;}
.ws64{word-spacing:-0.050211px;}
.ws83{word-spacing:-0.048419px;}
.ws6{word-spacing:-0.045430px;}
.ws2d{word-spacing:-0.040647px;}
.ws82{word-spacing:-0.037659px;}
.ws26{word-spacing:-0.035865px;}
.ws4{word-spacing:-0.034431px;}
.ws2{word-spacing:-0.017215px;}
.wsad{word-spacing:-0.010329px;}
.ws7a{word-spacing:-0.005380px;}
.ws1{word-spacing:0.000000px;}
.wsaf{word-spacing:0.009564px;}
.ws66{word-spacing:0.017933px;}
.ws3{word-spacing:0.025823px;}
.ws72{word-spacing:0.059776px;}
.ws54{word-spacing:0.065753px;}
.wsae{word-spacing:0.086077px;}
.ws5c{word-spacing:0.107596px;}
.ws45{word-spacing:0.167372px;}
.ws65{word-spacing:3.245815px;}
.ws1c{word-spacing:7.564055px;}
.wsb1{word-spacing:8.225143px;}
.ws6d{word-spacing:8.458247px;}
.ws4f{word-spacing:9.414657px;}
.ws92{word-spacing:9.432590px;}
.wsac{word-spacing:9.457759px;}
.ws93{word-spacing:9.468455px;}
.ws3c{word-spacing:9.540186px;}
.ws46{word-spacing:9.701580px;}
.ws1a{word-spacing:9.721371px;}
.wsb3{word-spacing:9.831915px;}
.ws7e{word-spacing:9.866627px;}
.ws96{word-spacing:9.970570px;}
.ws6e{word-spacing:10.251515px;}
.ws4c{word-spacing:10.574304px;}
.ws31{word-spacing:10.610169px;}
.wsa4{word-spacing:10.695122px;}
.ws59{word-spacing:10.891114px;}
.wsa7{word-spacing:11.077091px;}
.ws94{word-spacing:11.321499px;}
.ws30{word-spacing:11.548646px;}
.wsd{word-spacing:11.620454px;}
.ws3a{word-spacing:11.686130px;}
.wsb2{word-spacing:11.897765px;}
.wsb5{word-spacing:11.907329px;}
.ws21{word-spacing:11.925232px;}
.ws91{word-spacing:12.194222px;}
.ws98{word-spacing:12.475849px;}
.ws57{word-spacing:12.511033px;}
.wsa6{word-spacing:12.572686px;}
.wsa5{word-spacing:12.588826px;}
.ws4a{word-spacing:12.618629px;}
.ws2b{word-spacing:12.661653px;}
.ws17{word-spacing:12.691043px;}
.ws2c{word-spacing:12.763271px;}
.ws58{word-spacing:12.845776px;}
.ws9f{word-spacing:13.180608px;}
.ws38{word-spacing:13.270183px;}
.ws7d{word-spacing:13.342003px;}
.wsa{word-spacing:13.347383px;}
.ws7c{word-spacing:13.352763px;}
.wsa3{word-spacing:13.363523px;}
.ws39{word-spacing:13.365824px;}
.ws7b{word-spacing:13.385042px;}
.wsb{word-spacing:13.395802px;}
.ws2e{word-spacing:13.401181px;}
.ws9e{word-spacing:13.417321px;}
.ws1b{word-spacing:13.428081px;}
.ws5a{word-spacing:13.449510px;}
.ws99{word-spacing:13.449600px;}
.ws1d{word-spacing:13.471119px;}
.ws1f{word-spacing:13.535677px;}
.ws1e{word-spacing:13.557197px;}
.ws23{word-spacing:13.598949px;}
.wsb4{word-spacing:13.657563px;}
.ws4b{word-spacing:13.694590px;}
.ws62{word-spacing:13.700568px;}
.ws60{word-spacing:13.706545px;}
.ws95{word-spacing:13.760343px;}
.ws32{word-spacing:13.802186px;}
.ws24{word-spacing:14.035311px;}
.ws28{word-spacing:14.065199px;}
.ws14{word-spacing:14.073661px;}
.ws56{word-spacing:14.077154px;}
.wsa8{word-spacing:14.369553px;}
.ws51{word-spacing:14.399942px;}
.ws34{word-spacing:14.573291px;}
.ws5{word-spacing:14.806416px;}
.ws71{word-spacing:14.878147px;}
.ws9{word-spacing:14.884124px;}
.ws63{word-spacing:14.896080px;}
.ws8{word-spacing:14.925967px;}
.ws44{word-spacing:14.937922px;}
.ws3d{word-spacing:14.949878px;}
.ws5b{word-spacing:14.955855px;}
.ws12{word-spacing:15.111971px;}
.ws19{word-spacing:15.230327px;}
.ws22{word-spacing:15.272666px;}
.ws4d{word-spacing:15.434060px;}
.ws41{word-spacing:15.541656px;}
.ws68{word-spacing:16.001928px;}
.ws18{word-spacing:16.204078px;}
.ws55{word-spacing:16.300806px;}
.ws16{word-spacing:16.419272px;}
.wsc{word-spacing:16.451551px;}
.ws50{word-spacing:16.557841px;}
.ws53{word-spacing:16.569796px;}
.wse{word-spacing:16.731302px;}
.ws10{word-spacing:16.892698px;}
.wsa2{word-spacing:16.903457px;}
.ws9c{word-spacing:16.908837px;}
.ws40{word-spacing:17.000181px;}
.ws13{word-spacing:17.011054px;}
.ws3b{word-spacing:17.048001px;}
.wsa0{word-spacing:17.124031px;}
.ws9b{word-spacing:17.231628px;}
.ws48{word-spacing:17.639780px;}
.ws49{word-spacing:17.693578px;}
.ws52{word-spacing:17.825084px;}
.ws33{word-spacing:18.016366px;}
.ws67{word-spacing:18.123962px;}
.ws3e{word-spacing:18.327199px;}
.ws6c{word-spacing:18.386975px;}
.ws3f{word-spacing:18.392952px;}
.ws2a{word-spacing:18.620099px;}
.ws42{word-spacing:18.763561px;}
.ws5f{word-spacing:18.877134px;}
.wsa1{word-spacing:18.904758px;}
.wsab{word-spacing:19.157610px;}
.wsa9{word-spacing:19.179130px;}
.ws5e{word-spacing:19.642262px;}
.ws4e{word-spacing:19.809634px;}
.ws25{word-spacing:19.827567px;}
.ws27{word-spacing:19.971028px;}
.ws15{word-spacing:20.050664px;}
.ws47{word-spacing:20.120467px;}
.ws5d{word-spacing:20.228063px;}
.ws2f{word-spacing:20.293816px;}
.ws90{word-spacing:21.429553px;}
.ws29{word-spacing:22.278366px;}
.ws35{word-spacing:22.935898px;}
.ws11{word-spacing:23.934908px;}
.ws70{word-spacing:25.697530px;}
.ws7f{word-spacing:28.147323px;}
.ws97{word-spacing:28.384036px;}
.ws6f{word-spacing:30.234498px;}
.ws79{word-spacing:30.766501px;}
.ws69{word-spacing:34.107957px;}
.ws76{word-spacing:35.357267px;}
.ws6a{word-spacing:39.505694px;}
.ws6b{word-spacing:39.547537px;}
.ws77{word-spacing:40.964219px;}
.ws78{word-spacing:41.018017px;}
.ws8f{word-spacing:41.818940px;}
.ws74{word-spacing:41.830965px;}
.ws20{word-spacing:41.833286px;}
.ws75{word-spacing:41.884763px;}
.ws73{word-spacing:42.273304px;}
.ws81{word-spacing:119.925740px;}
.ws86{word-spacing:122.676568px;}
.ws8d{word-spacing:139.214924px;}
.ws8e{word-spacing:139.215524px;}
.ws88{word-spacing:139.239403px;}
.wsb0{word-spacing:143.217230px;}
.ws8c{word-spacing:261.792101px;}
.ws87{word-spacing:261.794521px;}
.ws89{word-spacing:265.692913px;}
.ws80{word-spacing:399.234514px;}
.ws0{word-spacing:520.801080px;}
._17{margin-left:-19.208525px;}
._18{margin-left:-17.921452px;}
._1f{margin-left:-13.465740px;}
._e{margin-left:-7.221792px;}
._d{margin-left:-5.879073px;}
._10{margin-left:-4.271593px;}
._f{margin-left:-2.759858px;}
._c{margin-left:-1.282550px;}
._11{width:1.350929px;}
._1b{width:2.455490px;}
._1d{width:4.938693px;}
._12{width:8.757296px;}
._13{width:12.458626px;}
._14{width:15.217093px;}
._16{width:17.370789px;}
._20{width:20.228198px;}
._1c{width:29.696717px;}
._1e{width:35.463905px;}
._1a{width:49.828940px;}
._19{width:59.765936px;}
._21{width:82.216375px;}
._3{width:151.873140px;}
._15{width:168.372852px;}
._4{width:175.849140px;}
._2{width:325.861140px;}
._5{width:367.819080px;}
._1{width:376.837140px;}
._8{width:381.373080px;}
._6{width:388.879140px;}
._0{width:430.783200px;}
._7{width:477.277080px;}
._b{width:480.355140px;}
._9{width:486.349080px;}
._a{width:510.325140px;}
._22{width:936.732665px;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fsa{font-size:44.832000px;}
.fs4{font-size:45.429600px;}
.fsd{font-size:47.820600px;}
.fs9{font-size:50.809200px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.775600px;}
.fsb{font-size:60.000000px;}
.fs5{font-size:65.872800px;}
.fs8{font-size:71.730600px;}
.fs2{font-size:86.077200px;}
.fsc{font-size:103.293000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:49.419638px;}
.y77{bottom:64.363894px;}
.y76{bottom:79.308150px;}
.y2b{bottom:84.451005px;}
.ya3{bottom:94.021362px;}
.yda{bottom:94.021988px;}
.y2a{bottom:106.651005px;}
.y75{bottom:110.451274px;}
.yd9{bottom:110.452019px;}
.ya2{bottom:111.949559px;}
.yd8{bottom:126.895500px;}
.y74{bottom:128.392920px;}
.y29{bottom:128.851005px;}
.ya1{bottom:140.123294px;}
.y73{bottom:146.321117px;}
.y28{bottom:151.051005px;}
.yd7{bottom:161.158500px;}
.y72{bottom:164.249314px;}
.y27{bottom:173.251005px;}
.y71{bottom:182.190960px;}
.ya0{bottom:183.255872px;}
.ybf{bottom:188.371174px;}
.yc1{bottom:189.009150px;}
.y26{bottom:195.826035px;}
.y70{bottom:200.119157px;}
.y9f{bottom:201.184069px;}
.ybe{bottom:206.299370px;}
.yd6{bottom:208.772519px;}
.y25{bottom:218.026035px;}
.y6f{bottom:218.060803px;}
.y9e{bottom:219.112266px;}
.ybd{bottom:224.241017px;}
.yd5{bottom:225.216000px;}
.y6e{bottom:235.989000px;}
.y9d{bottom:237.053912px;}
.y24{bottom:240.226035px;}
.ybc{bottom:242.169214px;}
.y9c{bottom:254.982109px;}
.yd3{bottom:259.559070px;}
.ybb{bottom:260.097410px;}
.y23{bottom:262.426050px;}
.yd4{bottom:262.786650px;}
.y6d{bottom:271.237500px;}
.y9b{bottom:272.910306px;}
.yd2{bottom:277.487267px;}
.yba{bottom:278.039057px;}
.y22{bottom:284.626050px;}
.y9a{bottom:290.851952px;}
.yd1{bottom:295.428913px;}
.y51{bottom:305.176020px;}
.y21{bottom:306.826050px;}
.yb9{bottom:307.928351px;}
.y99{bottom:308.780149px;}
.yd0{bottom:313.357110px;}
.y50{bottom:321.376020px;}
.y98{bottom:326.721795px;}
.y20{bottom:329.026050px;}
.ycf{bottom:331.285307px;}
.y6c{bottom:333.263805px;}
.y4f{bottom:344.326050px;}
.y97{bottom:344.649992px;}
.yce{bottom:349.226953px;}
.y6b{bottom:349.707286px;}
.y1f{bottom:351.226050px;}
.yb8{bottom:352.748096px;}
.y4e{bottom:360.526050px;}
.y96{bottom:362.578189px;}
.ycd{bottom:367.155150px;}
.yb7{bottom:370.689742px;}
.y1e{bottom:373.426050px;}
.y4d{bottom:376.726050px;}
.y95{bottom:380.519835px;}
.y6a{bottom:382.431508px;}
.yb6{bottom:388.617939px;}
.y4c{bottom:392.926050px;}
.y1d{bottom:395.626050px;}
.y94{bottom:398.448032px;}
.y69{bottom:398.874989px;}
.ycc{bottom:402.916650px;}
.yb5{bottom:406.559586px;}
.y4b{bottom:409.126050px;}
.y68{bottom:415.305020px;}
.y93{bottom:416.376229px;}
.y1c{bottom:418.201050px;}
.yb4{bottom:424.487782px;}
.y4a{bottom:425.326050px;}
.y67{bottom:431.748501px;}
.y92{bottom:434.317875px;}
.y1b{bottom:440.401050px;}
.y49{bottom:441.526050px;}
.yb3{bottom:442.415979px;}
.y66{bottom:448.191982px;}
.y91{bottom:452.246072px;}
.y48{bottom:457.726050px;}
.ycb{bottom:459.265500px;}
.yb2{bottom:460.357626px;}
.y1a{bottom:462.601050px;}
.y65{bottom:464.622013px;}
.y90{bottom:470.174269px;}
.y47{bottom:473.926050px;}
.yb1{bottom:478.285822px;}
.y64{bottom:481.065494px;}
.yc9{bottom:481.365150px;}
.y19{bottom:484.801065px;}
.yca{bottom:486.252000px;}
.y8f{bottom:488.115915px;}
.y46{bottom:490.126050px;}
.yb0{bottom:496.214019px;}
.y63{bottom:497.508975px;}
.yc8{bottom:499.616443px;}
.yc7{bottom:503.235150px;}
.y45{bottom:506.326050px;}
.y18{bottom:507.001065px;}
.y62{bottom:513.939007px;}
.yaf{bottom:514.155666px;}
.y8e{bottom:516.289650px;}
.yc6{bottom:526.616469px;}
.y17{bottom:529.201065px;}
.y61{bottom:530.382488px;}
.yae{bottom:532.083862px;}
.yc5{bottom:543.046500px;}
.y44{bottom:544.276050px;}
.y60{bottom:546.825969px;}
.yad{bottom:550.012059px;}
.y8d{bottom:550.444500px;}
.y16{bottom:551.401065px;}
.yc0{bottom:557.734650px;}
.y5f{bottom:563.256000px;}
.y43{bottom:566.476050px;}
.y15{bottom:573.601065px;}
.yc4{bottom:579.022740px;}
.y5d{bottom:579.698016px;}
.yac{bottom:579.901354px;}
.y5e{bottom:582.655500px;}
.y42{bottom:588.676050px;}
.y8c{bottom:594.844384px;}
.yc3{bottom:595.452771px;}
.y14{bottom:595.801065px;}
.y5c{bottom:596.141497px;}
.yab{bottom:597.843000px;}
.y41{bottom:610.876065px;}
.y8b{bottom:612.786030px;}
.y13{bottom:618.001065px;}
.y8a{bottom:630.714227px;}
.y40{bottom:633.076065px;}
.yaa{bottom:633.699000px;}
.y12{bottom:640.576080px;}
.yc2{bottom:641.731500px;}
.y89{bottom:648.642424px;}
.yea{bottom:653.117704px;}
.y3f{bottom:655.276065px;}
.y5b{bottom:655.662702px;}
.y11{bottom:662.776080px;}
.y88{bottom:666.584070px;}
.ye9{bottom:669.561185px;}
.y5a{bottom:673.591019px;}
.y3e{bottom:677.476065px;}
.ya9{bottom:681.529453px;}
.y87{bottom:684.512267px;}
.y10{bottom:684.976080px;}
.ye8{bottom:686.004666px;}
.y59{bottom:690.034500px;}
.ya8{bottom:699.456384px;}
.y3d{bottom:699.676065px;}
.ye7{bottom:702.434697px;}
.y86{bottom:702.440464px;}
.yf2{bottom:706.262625px;}
.yf{bottom:707.176095px;}
.ya7{bottom:717.384581px;}
.ye6{bottom:718.878178px;}
.y58{bottom:720.085303px;}
.y85{bottom:720.382110px;}
.yf1{bottom:721.206563px;}
.y3c{bottom:721.876065px;}
.ye{bottom:729.376095px;}
.ye5{bottom:735.321659px;}
.ya6{bottom:735.326228px;}
.yf0{bottom:736.150500px;}
.y57{bottom:738.013500px;}
.y84{bottom:738.310307px;}
.y3b{bottom:744.076065px;}
.yd{bottom:751.576095px;}
.ye4{bottom:751.751691px;}
.ya5{bottom:753.254424px;}
.y83{bottom:756.238504px;}
.yef{bottom:757.670063px;}
.y3a{bottom:766.651080px;}
.ye3{bottom:768.195172px;}
.yee{bottom:772.614000px;}
.yc{bottom:773.776095px;}
.y82{bottom:774.179803px;}
.ya4{bottom:783.143719px;}
.ye2{bottom:784.638653px;}
.y39{bottom:788.851080px;}
.y81{bottom:792.107070px;}
.y56{bottom:792.133650px;}
.yb{bottom:795.976095px;}
.yed{bottom:797.116500px;}
.ye1{bottom:801.068684px;}
.y80{bottom:810.035267px;}
.y38{bottom:811.051080px;}
.ye0{bottom:817.512165px;}
.ya{bottom:818.176095px;}
.y55{bottom:819.026319px;}
.y79{bottom:825.000000px;}
.y7f{bottom:827.976913px;}
.y37{bottom:833.251095px;}
.ydf{bottom:833.955646px;}
.y9{bottom:840.376095px;}
.y7e{bottom:845.905110px;}
.y54{bottom:845.931900px;}
.yde{bottom:850.385677px;}
.y36{bottom:855.451095px;}
.yec{bottom:857.664150px;}
.y7d{bottom:863.833307px;}
.y8{bottom:865.951095px;}
.ydd{bottom:866.829158px;}
.y53{bottom:872.824569px;}
.y35{bottom:877.651095px;}
.y7c{bottom:881.774953px;}
.ydc{bottom:883.272639px;}
.y7{bottom:888.151095px;}
.yeb{bottom:897.192150px;}
.ydb{bottom:899.702670px;}
.y7b{bottom:899.703150px;}
.y52{bottom:899.730150px;}
.y34{bottom:899.851095px;}
.y6{bottom:910.351095px;}
.y33{bottom:922.051095px;}
.y5{bottom:926.551095px;}
.y7a{bottom:934.519650px;}
.y32{bottom:944.251095px;}
.y4{bottom:949.501095px;}
.y31{bottom:966.451095px;}
.y3{bottom:972.451095px;}
.y30{bottom:989.026095px;}
.y2f{bottom:1011.226095px;}
.y2{bottom:1030.245180px;}
.y2e{bottom:1033.426095px;}
.y2d{bottom:1055.626095px;}
.y1{bottom:1066.245180px;}
.y2c{bottom:1077.826095px;}
.hc{height:27.945093px;}
.h16{height:31.255565px;}
.h1a{height:32.900573px;}
.he{height:34.956730px;}
.h9{height:37.013299px;}
.h3{height:37.520508px;}
.h8{height:41.125613px;}
.h11{height:41.127000px;}
.h10{height:41.129333px;}
.h13{height:41.130675px;}
.ha{height:43.395975px;}
.h19{height:44.712261px;}
.h14{height:47.503987px;}
.hb{height:50.301504px;}
.h17{height:50.804165px;}
.h15{height:51.488127px;}
.hf{height:52.200000px;}
.h12{height:55.890186px;}
.hd{height:67.068111px;}
.h7{height:78.009247px;}
.h6{height:80.482182px;}
.h2{height:81.328125px;}
.h18{height:96.578955px;}
.h5{height:999.000000px;}
.h4{height:999.213000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551215px;}
.w2{width:659.055000px;}
.w3{width:659.250000px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:15.000000px;}
.x10{left:46.480500px;}
.x13{left:59.103000px;}
.x3{left:66.776580px;}
.x5{left:69.776685px;}
.x20{left:76.964069px;}
.x11{left:80.365500px;}
.x14{left:81.512872px;}
.x1a{left:84.847500px;}
.x23{left:87.210000px;}
.x1d{left:90.814089px;}
.x1f{left:98.226569px;}
.xc{left:103.383000px;}
.x16{left:111.496632px;}
.xf{left:122.877344px;}
.x1{left:126.779535px;}
.xa{left:129.856252px;}
.x22{left:136.714500px;}
.x9{left:138.414477px;}
.x18{left:151.686000px;}
.x7{left:162.189000px;}
.x17{left:163.350000px;}
.x24{left:168.831000px;}
.x19{left:172.935000px;}
.x8{left:175.270582px;}
.x1e{left:202.594500px;}
.xb{left:207.831435px;}
.x4{left:232.603425px;}
.x6{left:235.603470px;}
.xe{left:238.019370px;}
.x21{left:253.948500px;}
.xd{left:282.594885px;}
.x15{left:339.390000px;}
.x2{left:352.559565px;}
.x1b{left:382.076995px;}
.x1c{left:440.451000px;}
@media print{
.v4{vertical-align:-19.296000pt;}
.v9{vertical-align:-17.375467pt;}
.v5{vertical-align:-7.964693pt;}
.v2{vertical-align:-2.594133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594133pt;}
.v8{vertical-align:3.746513pt;}
.v7{vertical-align:12.866513pt;}
.v6{vertical-align:17.375467pt;}
.v1{vertical-align:19.296000pt;}
.ls21{letter-spacing:-4.394732pt;}
.ls26{letter-spacing:-2.371902pt;}
.ls8{letter-spacing:-1.182229pt;}
.lsf{letter-spacing:-0.022582pt;}
.lsb{letter-spacing:-0.021254pt;}
.ls13{letter-spacing:-0.015940pt;}
.ls22{letter-spacing:-0.014346pt;}
.lsd{letter-spacing:-0.013549pt;}
.lsa{letter-spacing:-0.010627pt;}
.ls9{letter-spacing:-0.009564pt;}
.ls23{letter-spacing:-0.009182pt;}
.lse{letter-spacing:-0.009033pt;}
.ls25{letter-spacing:-0.008501pt;}
.ls5{letter-spacing:-0.005313pt;}
.ls6{letter-spacing:-0.004782pt;}
.lsc{letter-spacing:-0.004516pt;}
.ls24{letter-spacing:-0.004251pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004782pt;}
.ls1{letter-spacing:0.005313pt;}
.ls15{letter-spacing:0.006376pt;}
.ls1a{letter-spacing:0.009564pt;}
.ls11{letter-spacing:0.010627pt;}
.ls14{letter-spacing:0.012115pt;}
.ls1e{letter-spacing:0.019128pt;}
.ls19{letter-spacing:0.020191pt;}
.ls1b{letter-spacing:0.023526pt;}
.ls4{letter-spacing:0.474667pt;}
.ls17{letter-spacing:0.559565pt;}
.ls10{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.680838pt;}
.ls3{letter-spacing:11.955200pt;}
.ls1c{letter-spacing:11.964764pt;}
.ls12{letter-spacing:16.715914pt;}
.ls16{letter-spacing:37.225587pt;}
.ls1f{letter-spacing:264.257067pt;}
.ls18{letter-spacing:279.444915pt;}
.ls1d{letter-spacing:293.971325pt;}
.ls20{letter-spacing:424.025067pt;}
.ws43{word-spacing:-16.769048pt;}
.ws9a{word-spacing:-15.946509pt;}
.ws8b{word-spacing:-13.447162pt;}
.ws8a{word-spacing:-12.012585pt;}
.wsaa{word-spacing:-11.955200pt;}
.ws9d{word-spacing:-11.950418pt;}
.wsf{word-spacing:-5.459505pt;}
.ws37{word-spacing:-0.063761pt;}
.ws84{word-spacing:-0.060573pt;}
.ws7{word-spacing:-0.058554pt;}
.ws36{word-spacing:-0.053134pt;}
.ws61{word-spacing:-0.052496pt;}
.ws85{word-spacing:-0.047821pt;}
.ws64{word-spacing:-0.044632pt;}
.ws83{word-spacing:-0.043039pt;}
.ws6{word-spacing:-0.040382pt;}
.ws2d{word-spacing:-0.036131pt;}
.ws82{word-spacing:-0.033475pt;}
.ws26{word-spacing:-0.031880pt;}
.ws4{word-spacing:-0.030605pt;}
.ws2{word-spacing:-0.015303pt;}
.wsad{word-spacing:-0.009182pt;}
.ws7a{word-spacing:-0.004782pt;}
.ws1{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.008501pt;}
.ws66{word-spacing:0.015940pt;}
.ws3{word-spacing:0.022954pt;}
.ws72{word-spacing:0.053134pt;}
.ws54{word-spacing:0.058447pt;}
.wsae{word-spacing:0.076513pt;}
.ws5c{word-spacing:0.095641pt;}
.ws45{word-spacing:0.148775pt;}
.ws65{word-spacing:2.885169pt;}
.ws1c{word-spacing:6.723604pt;}
.wsb1{word-spacing:7.311238pt;}
.ws6d{word-spacing:7.518442pt;}
.ws4f{word-spacing:8.368584pt;}
.ws92{word-spacing:8.384524pt;}
.wsac{word-spacing:8.406897pt;}
.ws93{word-spacing:8.416404pt;}
.ws3c{word-spacing:8.480165pt;}
.ws46{word-spacing:8.623627pt;}
.ws1a{word-spacing:8.641219pt;}
.wsb3{word-spacing:8.739480pt;}
.ws7e{word-spacing:8.770335pt;}
.ws96{word-spacing:8.862729pt;}
.ws6e{word-spacing:9.112458pt;}
.ws4c{word-spacing:9.399381pt;}
.ws31{word-spacing:9.431261pt;}
.wsa4{word-spacing:9.506775pt;}
.ws59{word-spacing:9.680991pt;}
.wsa7{word-spacing:9.846303pt;}
.ws94{word-spacing:10.063554pt;}
.ws30{word-spacing:10.265463pt;}
.wsd{word-spacing:10.329293pt;}
.ws3a{word-spacing:10.387671pt;}
.wsb2{word-spacing:10.575791pt;}
.wsb5{word-spacing:10.584293pt;}
.ws21{word-spacing:10.600206pt;}
.ws91{word-spacing:10.839309pt;}
.ws98{word-spacing:11.089644pt;}
.ws57{word-spacing:11.120918pt;}
.wsa6{word-spacing:11.175721pt;}
.wsa5{word-spacing:11.190067pt;}
.ws4a{word-spacing:11.216559pt;}
.ws2b{word-spacing:11.254802pt;}
.ws17{word-spacing:11.280927pt;}
.ws2c{word-spacing:11.345130pt;}
.ws58{word-spacing:11.418468pt;}
.ws9f{word-spacing:11.716096pt;}
.ws38{word-spacing:11.795718pt;}
.ws7d{word-spacing:11.859558pt;}
.wsa{word-spacing:11.864340pt;}
.ws7c{word-spacing:11.869123pt;}
.wsa3{word-spacing:11.878687pt;}
.ws39{word-spacing:11.880733pt;}
.ws7b{word-spacing:11.897815pt;}
.wsb{word-spacing:11.907379pt;}
.ws2e{word-spacing:11.912161pt;}
.ws9e{word-spacing:11.926508pt;}
.ws1b{word-spacing:11.936072pt;}
.ws5a{word-spacing:11.955120pt;}
.ws99{word-spacing:11.955200pt;}
.ws1d{word-spacing:11.974328pt;}
.ws1f{word-spacing:12.031713pt;}
.ws1e{word-spacing:12.050842pt;}
.ws23{word-spacing:12.087955pt;}
.wsb4{word-spacing:12.140056pt;}
.ws4b{word-spacing:12.172969pt;}
.ws62{word-spacing:12.178282pt;}
.ws60{word-spacing:12.183596pt;}
.ws95{word-spacing:12.231416pt;}
.ws32{word-spacing:12.268610pt;}
.ws24{word-spacing:12.475832pt;}
.ws28{word-spacing:12.502399pt;}
.ws14{word-spacing:12.509921pt;}
.ws56{word-spacing:12.513026pt;}
.wsa8{word-spacing:12.772936pt;}
.ws51{word-spacing:12.799948pt;}
.ws34{word-spacing:12.954037pt;}
.ws5{word-spacing:13.161259pt;}
.ws71{word-spacing:13.225019pt;}
.ws9{word-spacing:13.230333pt;}
.ws63{word-spacing:13.240960pt;}
.ws8{word-spacing:13.267527pt;}
.ws44{word-spacing:13.278153pt;}
.ws3d{word-spacing:13.288780pt;}
.ws5b{word-spacing:13.294093pt;}
.ws12{word-spacing:13.432863pt;}
.ws19{word-spacing:13.538068pt;}
.ws22{word-spacing:13.575703pt;}
.ws4d{word-spacing:13.719164pt;}
.ws41{word-spacing:13.814805pt;}
.ws68{word-spacing:14.223936pt;}
.ws18{word-spacing:14.403625pt;}
.ws55{word-spacing:14.489605pt;}
.ws16{word-spacing:14.594908pt;}
.wsc{word-spacing:14.623601pt;}
.ws50{word-spacing:14.718081pt;}
.ws53{word-spacing:14.728708pt;}
.wse{word-spacing:14.872269pt;}
.ws10{word-spacing:15.015731pt;}
.wsa2{word-spacing:15.025295pt;}
.ws9c{word-spacing:15.030077pt;}
.ws40{word-spacing:15.111272pt;}
.ws13{word-spacing:15.120937pt;}
.ws3b{word-spacing:15.153779pt;}
.wsa0{word-spacing:15.221361pt;}
.ws9b{word-spacing:15.317002pt;}
.ws48{word-spacing:15.679804pt;}
.ws49{word-spacing:15.727625pt;}
.ws52{word-spacing:15.844519pt;}
.ws33{word-spacing:16.014547pt;}
.ws67{word-spacing:16.110188pt;}
.ws3e{word-spacing:16.290844pt;}
.ws6c{word-spacing:16.343977pt;}
.ws3f{word-spacing:16.349291pt;}
.ws2a{word-spacing:16.551199pt;}
.ws42{word-spacing:16.678721pt;}
.ws5f{word-spacing:16.779675pt;}
.wsa1{word-spacing:16.804229pt;}
.wsab{word-spacing:17.028987pt;}
.wsa9{word-spacing:17.048115pt;}
.ws5e{word-spacing:17.459789pt;}
.ws4e{word-spacing:17.608563pt;}
.ws25{word-spacing:17.624504pt;}
.ws27{word-spacing:17.752025pt;}
.ws15{word-spacing:17.822812pt;}
.ws47{word-spacing:17.884860pt;}
.ws5d{word-spacing:17.980500pt;}
.ws2f{word-spacing:18.038948pt;}
.ws90{word-spacing:19.048491pt;}
.ws29{word-spacing:19.802992pt;}
.ws35{word-spacing:20.387465pt;}
.ws11{word-spacing:21.275474pt;}
.ws70{word-spacing:22.842249pt;}
.ws7f{word-spacing:25.019843pt;}
.ws97{word-spacing:25.230254pt;}
.ws6f{word-spacing:26.875110pt;}
.ws79{word-spacing:27.348001pt;}
.ws69{word-spacing:30.318184pt;}
.ws76{word-spacing:31.428682pt;}
.ws6a{word-spacing:35.116172pt;}
.ws6b{word-spacing:35.153366pt;}
.ws77{word-spacing:36.412639pt;}
.ws78{word-spacing:36.460459pt;}
.ws8f{word-spacing:37.172391pt;}
.ws74{word-spacing:37.183080pt;}
.ws20{word-spacing:37.185143pt;}
.ws75{word-spacing:37.230900pt;}
.ws73{word-spacing:37.576271pt;}
.ws81{word-spacing:106.600658pt;}
.ws86{word-spacing:109.045838pt;}
.ws8d{word-spacing:123.746599pt;}
.ws8e{word-spacing:123.747133pt;}
.ws88{word-spacing:123.768358pt;}
.wsb0{word-spacing:127.304204pt;}
.ws8c{word-spacing:232.704090pt;}
.ws87{word-spacing:232.706241pt;}
.ws89{word-spacing:236.171478pt;}
.ws80{word-spacing:354.875123pt;}
.ws0{word-spacing:462.934293pt;}
._17{margin-left:-17.074245pt;}
._18{margin-left:-15.930180pt;}
._1f{margin-left:-11.969546pt;}
._e{margin-left:-6.419370pt;}
._d{margin-left:-5.225842pt;}
._10{margin-left:-3.796972pt;}
._f{margin-left:-2.453207pt;}
._c{margin-left:-1.140045pt;}
._11{width:1.200825pt;}
._1b{width:2.182658pt;}
._1d{width:4.389949pt;}
._12{width:7.784263pt;}
._13{width:11.074335pt;}
._14{width:13.526305pt;}
._16{width:15.440702pt;}
._20{width:17.980621pt;}
._1c{width:26.397082pt;}
._1e{width:31.523471pt;}
._1a{width:44.292391pt;}
._19{width:53.125276pt;}
._21{width:73.081222pt;}
._3{width:134.998347pt;}
._15{width:149.664758pt;}
._4{width:156.310347pt;}
._2{width:289.654347pt;}
._5{width:326.950293pt;}
._1{width:334.966347pt;}
._8{width:338.998293pt;}
._6{width:345.670347pt;}
._0{width:382.918400pt;}
._7{width:424.246293pt;}
._b{width:426.982347pt;}
._9{width:432.310293pt;}
._a{width:453.622347pt;}
._22{width:832.651258pt;}
.fs7{font-size:26.566933pt;}
.fsa{font-size:39.850667pt;}
.fs4{font-size:40.381867pt;}
.fsd{font-size:42.507200pt;}
.fs9{font-size:45.163733pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.133867pt;}
.fsb{font-size:53.333333pt;}
.fs5{font-size:58.553600pt;}
.fs8{font-size:63.760533pt;}
.fs2{font-size:76.513067pt;}
.fsc{font-size:91.816000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:43.928567pt;}
.y77{bottom:57.212350pt;}
.y76{bottom:70.496133pt;}
.y2b{bottom:75.067560pt;}
.ya3{bottom:83.574544pt;}
.yda{bottom:83.575100pt;}
.y2a{bottom:94.800893pt;}
.y75{bottom:98.178910pt;}
.yd9{bottom:98.179572pt;}
.ya2{bottom:99.510719pt;}
.yd8{bottom:112.796000pt;}
.y74{bottom:114.127040pt;}
.y29{bottom:114.534227pt;}
.ya1{bottom:124.554039pt;}
.y73{bottom:130.063215pt;}
.y28{bottom:134.267560pt;}
.yd7{bottom:143.252000pt;}
.y72{bottom:145.999390pt;}
.y27{bottom:154.000893pt;}
.y71{bottom:161.947520pt;}
.ya0{bottom:162.894109pt;}
.ybf{bottom:167.441043pt;}
.yc1{bottom:168.008133pt;}
.y26{bottom:174.067587pt;}
.y70{bottom:177.883695pt;}
.y9f{bottom:178.830284pt;}
.ybe{bottom:183.377218pt;}
.yd6{bottom:185.575572pt;}
.y25{bottom:193.800920pt;}
.y6f{bottom:193.831825pt;}
.y9e{bottom:194.766459pt;}
.ybd{bottom:199.325348pt;}
.yd5{bottom:200.192000pt;}
.y6e{bottom:209.768000pt;}
.y9d{bottom:210.714589pt;}
.y24{bottom:213.534253pt;}
.ybc{bottom:215.261523pt;}
.y9c{bottom:226.650764pt;}
.yd3{bottom:230.719173pt;}
.ybb{bottom:231.197698pt;}
.y23{bottom:233.267600pt;}
.yd4{bottom:233.588133pt;}
.y6d{bottom:241.100000pt;}
.y9b{bottom:242.586939pt;}
.yd2{bottom:246.655348pt;}
.yba{bottom:247.145828pt;}
.y22{bottom:253.000933pt;}
.y9a{bottom:258.535069pt;}
.yd1{bottom:262.603478pt;}
.y51{bottom:271.267573pt;}
.y21{bottom:272.734267pt;}
.yb9{bottom:273.714090pt;}
.y99{bottom:274.471244pt;}
.yd0{bottom:278.539653pt;}
.y50{bottom:285.667573pt;}
.y98{bottom:290.419374pt;}
.y20{bottom:292.467600pt;}
.ycf{bottom:294.475828pt;}
.y6c{bottom:296.234493pt;}
.y4f{bottom:306.067600pt;}
.y97{bottom:306.355549pt;}
.yce{bottom:310.423958pt;}
.y6b{bottom:310.850921pt;}
.y1f{bottom:312.200933pt;}
.yb8{bottom:313.553863pt;}
.y4e{bottom:320.467600pt;}
.y96{bottom:322.291724pt;}
.ycd{bottom:326.360133pt;}
.yb7{bottom:329.501993pt;}
.y1e{bottom:331.934267pt;}
.y4d{bottom:334.867600pt;}
.y95{bottom:338.239854pt;}
.y6a{bottom:339.939118pt;}
.yb6{bottom:345.438168pt;}
.y4c{bottom:349.267600pt;}
.y1d{bottom:351.667600pt;}
.y94{bottom:354.176029pt;}
.y69{bottom:354.555546pt;}
.ycc{bottom:358.148133pt;}
.yb5{bottom:361.386298pt;}
.y4b{bottom:363.667600pt;}
.y68{bottom:369.160018pt;}
.y93{bottom:370.112204pt;}
.y1c{bottom:371.734267pt;}
.yb4{bottom:377.322473pt;}
.y4a{bottom:378.067600pt;}
.y67{bottom:383.776445pt;}
.y92{bottom:386.060334pt;}
.y1b{bottom:391.467600pt;}
.y49{bottom:392.467600pt;}
.yb3{bottom:393.258648pt;}
.y66{bottom:398.392873pt;}
.y91{bottom:401.996509pt;}
.y48{bottom:406.867600pt;}
.ycb{bottom:408.236000pt;}
.yb2{bottom:409.206778pt;}
.y1a{bottom:411.200933pt;}
.y65{bottom:412.997345pt;}
.y90{bottom:417.932684pt;}
.y47{bottom:421.267600pt;}
.yb1{bottom:425.142953pt;}
.y64{bottom:427.613773pt;}
.yc9{bottom:427.880133pt;}
.y19{bottom:430.934280pt;}
.yca{bottom:432.224000pt;}
.y8f{bottom:433.880814pt;}
.y46{bottom:435.667600pt;}
.yb0{bottom:441.079128pt;}
.y63{bottom:442.230200pt;}
.yc8{bottom:444.103505pt;}
.yc7{bottom:447.320133pt;}
.y45{bottom:450.067600pt;}
.y18{bottom:450.667613pt;}
.y62{bottom:456.834673pt;}
.yaf{bottom:457.027258pt;}
.y8e{bottom:458.924133pt;}
.yc6{bottom:468.103528pt;}
.y17{bottom:470.400947pt;}
.y61{bottom:471.451100pt;}
.yae{bottom:472.963433pt;}
.yc5{bottom:482.708000pt;}
.y44{bottom:483.800933pt;}
.y60{bottom:486.067528pt;}
.yad{bottom:488.899608pt;}
.y8d{bottom:489.284000pt;}
.y16{bottom:490.134280pt;}
.yc0{bottom:495.764133pt;}
.y5f{bottom:500.672000pt;}
.y43{bottom:503.534267pt;}
.y15{bottom:509.867613pt;}
.yc4{bottom:514.686880pt;}
.y5d{bottom:515.287126pt;}
.yac{bottom:515.467870pt;}
.y5e{bottom:517.916000pt;}
.y42{bottom:523.267600pt;}
.y8c{bottom:528.750563pt;}
.yc3{bottom:529.291352pt;}
.y14{bottom:529.600947pt;}
.y5c{bottom:529.903553pt;}
.yab{bottom:531.416000pt;}
.y41{bottom:543.000947pt;}
.y8b{bottom:544.698693pt;}
.y13{bottom:549.334280pt;}
.y8a{bottom:560.634868pt;}
.y40{bottom:562.734280pt;}
.yaa{bottom:563.288000pt;}
.y12{bottom:569.400960pt;}
.yc2{bottom:570.428000pt;}
.y89{bottom:576.571043pt;}
.yea{bottom:580.549070pt;}
.y3f{bottom:582.467613pt;}
.y5b{bottom:582.811291pt;}
.y11{bottom:589.134293pt;}
.y88{bottom:592.519173pt;}
.ye9{bottom:595.165498pt;}
.y5a{bottom:598.747572pt;}
.y3e{bottom:602.200947pt;}
.ya9{bottom:605.803958pt;}
.y87{bottom:608.455348pt;}
.y10{bottom:608.867627pt;}
.ye8{bottom:609.781925pt;}
.y59{bottom:613.364000pt;}
.ya8{bottom:621.739008pt;}
.y3d{bottom:621.934280pt;}
.ye7{bottom:624.386398pt;}
.y86{bottom:624.391523pt;}
.yf2{bottom:627.789000pt;}
.yf{bottom:628.600973pt;}
.ya7{bottom:637.675183pt;}
.ye6{bottom:639.002825pt;}
.y58{bottom:640.075825pt;}
.y85{bottom:640.339653pt;}
.yf1{bottom:641.072500pt;}
.y3c{bottom:641.667613pt;}
.ye{bottom:648.334307pt;}
.ye5{bottom:653.619253pt;}
.ya6{bottom:653.623313pt;}
.yf0{bottom:654.356000pt;}
.y57{bottom:656.012000pt;}
.y84{bottom:656.275828pt;}
.y3b{bottom:661.400947pt;}
.yd{bottom:668.067640pt;}
.ye4{bottom:668.223725pt;}
.ya5{bottom:669.559488pt;}
.y83{bottom:672.212003pt;}
.yef{bottom:673.484500pt;}
.y3a{bottom:681.467627pt;}
.ye3{bottom:682.840153pt;}
.yee{bottom:686.768000pt;}
.yc{bottom:687.800973pt;}
.y82{bottom:688.159825pt;}
.ya4{bottom:696.127750pt;}
.ye2{bottom:697.456580pt;}
.y39{bottom:701.200960pt;}
.y81{bottom:704.095173pt;}
.y56{bottom:704.118800pt;}
.yb{bottom:707.534307pt;}
.yed{bottom:708.548000pt;}
.ye1{bottom:712.061052pt;}
.y80{bottom:720.031348pt;}
.y38{bottom:720.934293pt;}
.ye0{bottom:726.677480pt;}
.ya{bottom:727.267640pt;}
.y55{bottom:728.023395pt;}
.y79{bottom:733.333333pt;}
.y7f{bottom:735.979478pt;}
.y37{bottom:740.667640pt;}
.ydf{bottom:741.293907pt;}
.y9{bottom:747.000973pt;}
.y7e{bottom:751.915653pt;}
.y54{bottom:751.939467pt;}
.yde{bottom:755.898380pt;}
.y36{bottom:760.400973pt;}
.yec{bottom:762.368133pt;}
.y7d{bottom:767.851828pt;}
.y8{bottom:769.734307pt;}
.ydd{bottom:770.514807pt;}
.y53{bottom:775.844062pt;}
.y35{bottom:780.134307pt;}
.y7c{bottom:783.799958pt;}
.ydc{bottom:785.131235pt;}
.y7{bottom:789.467640pt;}
.yeb{bottom:797.504133pt;}
.ydb{bottom:799.735707pt;}
.y7b{bottom:799.736133pt;}
.y52{bottom:799.760133pt;}
.y34{bottom:799.867640pt;}
.y6{bottom:809.200973pt;}
.y33{bottom:819.600973pt;}
.y5{bottom:823.600973pt;}
.y7a{bottom:830.684133pt;}
.y32{bottom:839.334307pt;}
.y4{bottom:844.000973pt;}
.y31{bottom:859.067640pt;}
.y3{bottom:864.400973pt;}
.y30{bottom:879.134307pt;}
.y2f{bottom:898.867640pt;}
.y2{bottom:915.773493pt;}
.y2e{bottom:918.600973pt;}
.y2d{bottom:938.334307pt;}
.y1{bottom:947.773493pt;}
.y2c{bottom:958.067640pt;}
.hc{height:24.840083pt;}
.h16{height:27.782724pt;}
.h1a{height:29.244954pt;}
.he{height:31.072649pt;}
.h9{height:32.900710pt;}
.h3{height:33.351562pt;}
.h8{height:36.556100pt;}
.h11{height:36.557333pt;}
.h10{height:36.559407pt;}
.h13{height:36.560600pt;}
.ha{height:38.574200pt;}
.h19{height:39.744232pt;}
.h14{height:42.225766pt;}
.hb{height:44.712448pt;}
.h17{height:45.159258pt;}
.h15{height:45.767224pt;}
.hf{height:46.400000pt;}
.h12{height:49.680165pt;}
.hd{height:59.616099pt;}
.h7{height:69.341553pt;}
.h6{height:71.539717pt;}
.h2{height:72.291667pt;}
.h18{height:85.847960pt;}
.h5{height:888.000000pt;}
.h4{height:888.189333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267747pt;}
.w2{width:585.826667pt;}
.w3{width:586.000000pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:13.333333pt;}
.x10{left:41.316000pt;}
.x13{left:52.536000pt;}
.x3{left:59.356960pt;}
.x5{left:62.023720pt;}
.x20{left:68.412506pt;}
.x11{left:71.436000pt;}
.x14{left:72.455887pt;}
.x1a{left:75.420000pt;}
.x23{left:77.520000pt;}
.x1d{left:80.723635pt;}
.x1f{left:87.312506pt;}
.xc{left:91.896000pt;}
.x16{left:99.108118pt;}
.xf{left:109.224306pt;}
.x1{left:112.692920pt;}
.xa{left:115.427779pt;}
.x22{left:121.524000pt;}
.x9{left:123.035091pt;}
.x18{left:134.832000pt;}
.x7{left:144.168000pt;}
.x17{left:145.200000pt;}
.x24{left:150.072000pt;}
.x19{left:153.720000pt;}
.x8{left:155.796073pt;}
.x1e{left:180.084000pt;}
.xb{left:184.739054pt;}
.x4{left:206.758600pt;}
.x6{left:209.425307pt;}
.xe{left:211.572773pt;}
.x21{left:225.732000pt;}
.xd{left:251.195453pt;}
.x15{left:301.680000pt;}
.x2{left:313.386280pt;}
.x1b{left:339.623996pt;}
.x1c{left:391.512000pt;}
}




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