
    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_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_731bdf485b538f0168c68202.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.239000;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_2b4fcb0ce4ef78575881b557.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3e0f437a8721b872fdcea77d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6fa306011a69ed8de5fd9e26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.256000;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_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_74cf3ce356d631b12f036562.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_048e436a1b73b5756b9d2168.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.303000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3c42f1c2f63f4fa783c0afe3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_962d7fde4eb22eee43ffa098.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b8072fc279b814c07d06bddd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls11{letter-spacing:-3.552000px;}
.lsb{letter-spacing:-2.220000px;}
.lsc{letter-spacing:-2.064000px;}
.ls8{letter-spacing:-1.776000px;}
.lsd{letter-spacing:-1.320000px;}
.lse{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000033px;}
.lsa{letter-spacing:0.000583px;}
.ls9{letter-spacing:0.528000px;}
.ls10{letter-spacing:30.703191px;}
.lsf{letter-spacing:53.015435px;}
.ls1{letter-spacing:53.015985px;}
.ls0{letter-spacing:53.016030px;}
.ls4{letter-spacing:59.906411px;}
.ls5{letter-spacing:79.922401px;}
.ls6{letter-spacing:125.696984px;}
.ls7{letter-spacing:145.712975px;}
.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;}
}
.ws13{word-spacing:-15.000000px;}
.ws78{word-spacing:-13.680000px;}
.ws8b{word-spacing:-13.332000px;}
.ws6c{word-spacing:-12.780000px;}
.ws61{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.120000px;}
.ws5c{word-spacing:-12.000000px;}
.ws31{word-spacing:-11.340000px;}
.ws0{word-spacing:-9.408000px;}
.ws7b{word-spacing:-9.216000px;}
.wsaa{word-spacing:-8.448000px;}
.wsab{word-spacing:-8.400000px;}
.ws45{word-spacing:-3.180000px;}
.ws26{word-spacing:-3.060000px;}
.ws44{word-spacing:-2.940000px;}
.ws64{word-spacing:-2.880000px;}
.wsa0{word-spacing:-2.736000px;}
.ws47{word-spacing:-2.580000px;}
.ws4d{word-spacing:-2.520000px;}
.wsa7{word-spacing:-2.496000px;}
.ws1a{word-spacing:-2.340000px;}
.ws84{word-spacing:-2.256000px;}
.ws7e{word-spacing:-2.220000px;}
.ws59{word-spacing:-2.160000px;}
.ws1b{word-spacing:-2.100000px;}
.ws34{word-spacing:-1.980000px;}
.ws1d{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.800000px;}
.ws6b{word-spacing:-1.680000px;}
.ws8d{word-spacing:-1.488000px;}
.ws90{word-spacing:-1.440000px;}
.ws89{word-spacing:-1.392000px;}
.ws62{word-spacing:-1.380000px;}
.ws2d{word-spacing:-1.320000px;}
.ws52{word-spacing:-1.260000px;}
.ws4f{word-spacing:-1.140000px;}
.ws3b{word-spacing:-1.080000px;}
.ws4a{word-spacing:-0.900000px;}
.ws11{word-spacing:-0.840000px;}
.ws93{word-spacing:-0.816000px;}
.ws53{word-spacing:-0.720000px;}
.wsac{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.540000px;}
.wsae{word-spacing:-0.528000px;}
.ws96{word-spacing:-0.480000px;}
.ws71{word-spacing:-0.360000px;}
.ws91{word-spacing:-0.336000px;}
.ws9c{word-spacing:-0.240000px;}
.ws9b{word-spacing:-0.192000px;}
.ws54{word-spacing:-0.180000px;}
.ws72{word-spacing:-0.060000px;}
.ws2c{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws48{word-spacing:0.120000px;}
.ws63{word-spacing:0.180000px;}
.ws94{word-spacing:0.192000px;}
.ws5b{word-spacing:0.240000px;}
.ws43{word-spacing:0.360000px;}
.ws6f{word-spacing:0.480000px;}
.ws28{word-spacing:0.600000px;}
.wsa8{word-spacing:0.816000px;}
.wsa1{word-spacing:0.864000px;}
.wsd{word-spacing:0.960000px;}
.ws3c{word-spacing:1.020000px;}
.ws29{word-spacing:1.200000px;}
.ws30{word-spacing:1.260000px;}
.ws41{word-spacing:1.320000px;}
.wsa{word-spacing:1.440000px;}
.ws88{word-spacing:1.488000px;}
.wsa3{word-spacing:1.584000px;}
.ws4c{word-spacing:1.620000px;}
.ws99{word-spacing:1.728000px;}
.ws85{word-spacing:1.776000px;}
.ws9a{word-spacing:1.872000px;}
.ws56{word-spacing:1.920000px;}
.wsa5{word-spacing:1.968000px;}
.ws46{word-spacing:1.980000px;}
.ws1c{word-spacing:2.040000px;}
.ws70{word-spacing:2.064000px;}
.ws7{word-spacing:2.160000px;}
.ws73{word-spacing:2.220000px;}
.ws24{word-spacing:2.280000px;}
.ws6{word-spacing:2.400000px;}
.ws40{word-spacing:2.460000px;}
.ws19{word-spacing:2.520000px;}
.ws76{word-spacing:2.700000px;}
.ws7a{word-spacing:2.760000px;}
.ws83{word-spacing:2.784000px;}
.ws3e{word-spacing:2.820000px;}
.ws14{word-spacing:2.832000px;}
.wsa6{word-spacing:2.880000px;}
.ws2b{word-spacing:3.060000px;}
.wsb1{word-spacing:3.168000px;}
.ws65{word-spacing:3.180000px;}
.ws9{word-spacing:3.240000px;}
.ws32{word-spacing:3.300000px;}
.ws17{word-spacing:3.360000px;}
.ws37{word-spacing:3.420000px;}
.ws86{word-spacing:3.456000px;}
.ws50{word-spacing:3.600000px;}
.ws51{word-spacing:3.660000px;}
.ws15{word-spacing:3.720000px;}
.ws75{word-spacing:3.780000px;}
.ws21{word-spacing:3.840000px;}
.ws74{word-spacing:3.900000px;}
.ws7f{word-spacing:4.080000px;}
.ws7d{word-spacing:4.140000px;}
.wsb0{word-spacing:4.224000px;}
.ws4b{word-spacing:4.380000px;}
.ws87{word-spacing:4.416000px;}
.ws38{word-spacing:4.440000px;}
.wse{word-spacing:4.500000px;}
.ws81{word-spacing:4.560000px;}
.ws3f{word-spacing:4.620000px;}
.ws35{word-spacing:4.860000px;}
.ws2e{word-spacing:4.920000px;}
.ws92{word-spacing:5.088000px;}
.ws58{word-spacing:5.100000px;}
.ws2a{word-spacing:5.220000px;}
.ws66{word-spacing:5.400000px;}
.ws1e{word-spacing:5.460000px;}
.ws95{word-spacing:5.616000px;}
.wsa4{word-spacing:5.664000px;}
.wsad{word-spacing:5.808000px;}
.ws8c{word-spacing:5.856000px;}
.ws82{word-spacing:5.904000px;}
.ws9d{word-spacing:5.952000px;}
.ws79{word-spacing:6.000000px;}
.ws3a{word-spacing:6.120000px;}
.ws49{word-spacing:6.240000px;}
.ws8{word-spacing:6.300000px;}
.ws55{word-spacing:6.420000px;}
.ws7c{word-spacing:6.480000px;}
.ws57{word-spacing:6.540000px;}
.ws80{word-spacing:6.600000px;}
.ws36{word-spacing:7.200000px;}
.ws16{word-spacing:7.260000px;}
.wsb{word-spacing:7.380000px;}
.ws25{word-spacing:7.500000px;}
.wsaf{word-spacing:7.680000px;}
.ws5{word-spacing:7.740000px;}
.ws77{word-spacing:7.800000px;}
.ws2f{word-spacing:7.920000px;}
.ws8f{word-spacing:7.968000px;}
.ws5a{word-spacing:7.980000px;}
.ws9e{word-spacing:8.016000px;}
.ws12{word-spacing:8.100000px;}
.ws23{word-spacing:8.220000px;}
.ws4{word-spacing:8.280000px;}
.ws8e{word-spacing:8.304000px;}
.ws33{word-spacing:8.460000px;}
.ws1f{word-spacing:8.520000px;}
.ws27{word-spacing:8.640000px;}
.ws39{word-spacing:8.760000px;}
.ws8a{word-spacing:8.832000px;}
.ws20{word-spacing:9.060000px;}
.wsc{word-spacing:9.240000px;}
.wsa9{word-spacing:9.264000px;}
.ws22{word-spacing:10.200000px;}
.ws4e{word-spacing:10.500000px;}
.ws67{word-spacing:10.860000px;}
.ws3d{word-spacing:11.220000px;}
.ws97{word-spacing:16.944000px;}
.ws42{word-spacing:16.980000px;}
.ws9f{word-spacing:17.760000px;}
.ws98{word-spacing:18.336000px;}
.wsf{word-spacing:19.668000px;}
.wsa2{word-spacing:20.016000px;}
.ws5d{word-spacing:67.922401px;}
.ws5f{word-spacing:109.712975px;}
.ws69{word-spacing:113.866333px;}
.ws60{word-spacing:115.040975px;}
.ws5e{word-spacing:133.712975px;}
.ws6d{word-spacing:273.832772px;}
.ws6e{word-spacing:289.816772px;}
.ws6a{word-spacing:425.866333px;}
.ws68{word-spacing:1131.307139px;}
._36{margin-left:-66.351585px;}
._26{margin-left:-15.000000px;}
._25{margin-left:-8.321430px;}
._d{margin-left:-6.472800px;}
._33{margin-left:-5.101200px;}
._1{margin-left:-4.075200px;}
._9{margin-left:-2.120400px;}
._0{margin-left:-1.060800px;}
._2{width:1.000800px;}
._6{width:2.550000px;}
._a{width:3.582000px;}
._5{width:4.596000px;}
._4{width:5.718000px;}
._3{width:6.996000px;}
._8{width:8.046000px;}
._e{width:9.101999px;}
._10{width:10.416003px;}
._11{width:11.573994px;}
._f{width:13.710000px;}
._35{width:15.109206px;}
._13{width:16.497594px;}
._7{width:17.518203px;}
._c{width:18.660000px;}
._32{width:19.668000px;}
._34{width:20.674799px;}
._15{width:33.840000px;}
._14{width:37.200000px;}
._12{width:38.820000px;}
._2e{width:49.537741px;}
._37{width:56.255991px;}
._18{width:79.922401px;}
._23{width:114.491425px;}
._b{width:124.176573px;}
._1e{width:145.712975px;}
._30{width:153.062397px;}
._2b{width:282.817741px;}
._21{width:335.771425px;}
._31{width:351.638397px;}
._2c{width:370.849741px;}
._1b{width:399.380388px;}
._28{width:413.866333px;}
._2f{width:435.653341px;}
._2a{width:437.866333px;}
._20{width:462.443425px;}
._24{width:498.486625px;}
._29{width:514.801741px;}
._1f{width:523.739425px;}
._1a{width:526.052388px;}
._19{width:587.348388px;}
._16{width:588.692379px;}
._2d{width:738.250141px;}
._22{width:803.203825px;}
._1d{width:827.723425px;}
._27{width:857.836739px;}
._1c{width:866.812788px;}
._17{width:891.332388px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:46.736100px;}
.y51{bottom:46.771650px;}
.y90{bottom:90.001350px;}
.y21{bottom:90.001499px;}
.y50{bottom:90.425102px;}
.yb3{bottom:97.179450px;}
.y121{bottom:97.854904px;}
.y4f{bottom:108.425102px;}
.yb2{bottom:111.429450px;}
.y120{bottom:112.104904px;}
.ye7{bottom:112.925102px;}
.yb1{bottom:125.679450px;}
.y11f{bottom:126.354904px;}
.y4e{bottom:126.425102px;}
.ye6{bottom:127.175102px;}
.yb0{bottom:139.929450px;}
.y11e{bottom:140.604904px;}
.ye5{bottom:141.425102px;}
.y4d{bottom:144.425102px;}
.yaf{bottom:154.179450px;}
.y11d{bottom:154.854904px;}
.ye4{bottom:155.675102px;}
.y1a{bottom:158.173199px;}
.y12d{bottom:161.792095px;}
.y4c{bottom:162.425102px;}
.yae{bottom:168.429450px;}
.y11c{bottom:169.104904px;}
.ye3{bottom:169.925102px;}
.y19{bottom:176.173199px;}
.y4b{bottom:180.425102px;}
.y12c{bottom:180.842102px;}
.yad{bottom:182.679450px;}
.y11b{bottom:183.354904px;}
.ye2{bottom:184.175102px;}
.y18{bottom:194.173210px;}
.yac{bottom:196.929450px;}
.y11a{bottom:197.604904px;}
.y12b{bottom:197.792107px;}
.y4a{bottom:198.425102px;}
.yab{bottom:211.179450px;}
.y119{bottom:211.854904px;}
.ye1{bottom:212.675102px;}
.y49{bottom:216.425102px;}
.y12a{bottom:216.842102px;}
.y118{bottom:226.104904px;}
.ye0{bottom:226.925102px;}
.y17{bottom:230.173210px;}
.y48{bottom:234.425102px;}
.y117{bottom:240.354904px;}
.y129{bottom:241.174049px;}
.ydf{bottom:241.175102px;}
.yaa{bottom:243.427940px;}
.y47{bottom:252.425102px;}
.y116{bottom:254.604904px;}
.y128{bottom:255.424049px;}
.yde{bottom:255.425102px;}
.y115{bottom:268.854904px;}
.ydd{bottom:269.675102px;}
.y46{bottom:270.425102px;}
.y8d{bottom:272.980957px;}
.ya9{bottom:275.676590px;}
.y127{bottom:277.174049px;}
.y114{bottom:283.104904px;}
.ydc{bottom:283.925102px;}
.y45{bottom:288.425102px;}
.ya8{bottom:289.926590px;}
.y126{bottom:291.424049px;}
.y16{bottom:296.205757px;}
.y113{bottom:297.354904px;}
.ydb{bottom:298.175102px;}
.y44{bottom:306.425102px;}
.y112{bottom:311.604904px;}
.yda{bottom:312.425102px;}
.y125{bottom:313.174049px;}
.y15{bottom:314.205597px;}
.ya7{bottom:322.175102px;}
.y43{bottom:324.425102px;}
.y111{bottom:325.854904px;}
.yd9{bottom:326.675102px;}
.y124{bottom:327.424049px;}
.y110{bottom:340.104904px;}
.yd8{bottom:340.925102px;}
.y42{bottom:342.425102px;}
.y14{bottom:350.205597px;}
.y10f{bottom:354.354904px;}
.yd7{bottom:355.175102px;}
.ya6{bottom:357.425102px;}
.y41{bottom:360.425102px;}
.y13{bottom:368.205597px;}
.y10e{bottom:368.604904px;}
.yd6{bottom:369.425102px;}
.ya5{bottom:371.675102px;}
.y40{bottom:378.425102px;}
.y10d{bottom:382.854904px;}
.yd5{bottom:383.675102px;}
.ya4{bottom:385.925079px;}
.y12{bottom:386.205734px;}
.y7b{bottom:393.709946px;}
.y3f{bottom:396.425079px;}
.y10c{bottom:397.104904px;}
.ya1{bottom:397.592102px;}
.yd4{bottom:397.925079px;}
.y11{bottom:404.205734px;}
.ya2{bottom:408.361633px;}
.y7a{bottom:410.545944px;}
.y10b{bottom:411.354904px;}
.ya0{bottom:411.842102px;}
.yd3{bottom:412.175079px;}
.y3e{bottom:414.425079px;}
.ya3{bottom:418.175079px;}
.y10{bottom:422.205734px;}
.y10a{bottom:425.604904px;}
.yd2{bottom:426.425079px;}
.y79{bottom:427.370087px;}
.y3d{bottom:432.425079px;}
.y91{bottom:437.521637px;}
.y109{bottom:439.854904px;}
.yf{bottom:440.205734px;}
.yd1{bottom:440.675079px;}
.y78{bottom:444.194412px;}
.y3c{bottom:450.425079px;}
.y108{bottom:454.104904px;}
.y123{bottom:454.479904px;}
.yd0{bottom:454.925079px;}
.ye{bottom:458.205734px;}
.y77{bottom:458.444412px;}
.y107{bottom:468.354904px;}
.y3b{bottom:468.425079px;}
.y122{bottom:468.729904px;}
.ycf{bottom:469.175079px;}
.y94{bottom:474.521255px;}
.y76{bottom:475.268555px;}
.yd{bottom:476.205734px;}
.y106{bottom:482.604904px;}
.yce{bottom:483.425079px;}
.y3a{bottom:486.425079px;}
.y93{bottom:488.771255px;}
.y75{bottom:489.518555px;}
.yc{bottom:494.205734px;}
.y105{bottom:496.854904px;}
.ycd{bottom:497.675079px;}
.y95{bottom:499.540970px;}
.y92{bottom:503.021255px;}
.y39{bottom:504.425079px;}
.y74{bottom:506.342834px;}
.y5a{bottom:509.291382px;}
.y104{bottom:511.104904px;}
.ycc{bottom:511.925079px;}
.yb{bottom:512.205734px;}
.y58{bottom:518.205002px;}
.y5b{bottom:520.060959px;}
.y38{bottom:522.425079px;}
.y73{bottom:523.167160px;}
.y59{bottom:523.541382px;}
.y103{bottom:525.354904px;}
.ycb{bottom:526.175079px;}
.y9f{bottom:530.171402px;}
.ya{bottom:530.205734px;}
.y57{bottom:535.029144px;}
.y97{bottom:536.783569px;}
.y102{bottom:539.604904px;}
.y72{bottom:539.991302px;}
.y37{bottom:540.425079px;}
.y7d{bottom:540.940933px;}
.y7c{bottom:544.421402px;}
.y96{bottom:545.824493px;}
.y9{bottom:548.205734px;}
.y56{bottom:549.279144px;}
.y101{bottom:553.854904px;}
.y71{bottom:554.241302px;}
.yca{bottom:554.675079px;}
.y36{bottom:558.425079px;}
.y55{bottom:566.103470px;}
.y8{bottom:566.205734px;}
.y5c{bottom:566.344482px;}
.y100{bottom:568.104904px;}
.yc9{bottom:568.925079px;}
.y70{bottom:571.065582px;}
.y8b{bottom:576.230392px;}
.y35{bottom:576.425079px;}
.y54{bottom:580.353470px;}
.yff{bottom:582.354904px;}
.yc8{bottom:583.175079px;}
.y7{bottom:584.205734px;}
.y6f{bottom:587.889908px;}
.y34{bottom:594.425079px;}
.yfe{bottom:596.604904px;}
.y53{bottom:597.177750px;}
.yc7{bottom:597.425079px;}
.y6{bottom:602.205734px;}
.y6e{bottom:604.714050px;}
.yfd{bottom:610.854904px;}
.y52{bottom:611.427750px;}
.yc6{bottom:611.675079px;}
.y33{bottom:612.425079px;}
.y5{bottom:620.205734px;}
.y6d{bottom:621.538330px;}
.yfc{bottom:625.104904px;}
.yc5{bottom:625.925079px;}
.y32{bottom:630.425079px;}
.y4{bottom:638.205734px;}
.y6c{bottom:639.106659px;}
.yfb{bottom:639.354904px;}
.yc4{bottom:640.175079px;}
.y31{bottom:648.425079px;}
.yfa{bottom:653.604904px;}
.yc3{bottom:654.425079px;}
.y6b{bottom:655.942657px;}
.y3{bottom:656.205734px;}
.y8e{bottom:659.381241px;}
.y30{bottom:666.425079px;}
.yf9{bottom:667.854904px;}
.yc2{bottom:668.675079px;}
.y8c{bottom:673.550079px;}
.yf8{bottom:682.104904px;}
.yc1{bottom:682.925079px;}
.y2f{bottom:684.425079px;}
.yf7{bottom:696.354904px;}
.yc0{bottom:697.175079px;}
.y2e{bottom:702.425079px;}
.y8f{bottom:705.664810px;}
.y1c{bottom:705.723312px;}
.y6a{bottom:707.674942px;}
.yf6{bottom:710.604904px;}
.ybf{bottom:711.425079px;}
.y1b{bottom:719.973312px;}
.y2d{bottom:720.425079px;}
.y69{bottom:721.924942px;}
.y8a{bottom:724.510803px;}
.yf5{bottom:724.854904px;}
.ybe{bottom:725.675079px;}
.y2c{bottom:738.425079px;}
.y68{bottom:738.749084px;}
.yf4{bottom:739.104904px;}
.ybd{bottom:739.925079px;}
.y89{bottom:741.335083px;}
.y67{bottom:752.999084px;}
.yf3{bottom:753.354904px;}
.ybc{bottom:754.175079px;}
.y2b{bottom:756.425079px;}
.y88{bottom:758.159409px;}
.y20{bottom:758.737198px;}
.yf2{bottom:767.604904px;}
.ybb{bottom:768.425079px;}
.y66{bottom:769.823364px;}
.y2a{bottom:774.425079px;}
.y87{bottom:774.983734px;}
.yf1{bottom:781.854858px;}
.yba{bottom:782.675079px;}
.y65{bottom:786.647736px;}
.y86{bottom:789.233734px;}
.y29{bottom:792.425079px;}
.yf0{bottom:796.104858px;}
.yb9{bottom:796.925079px;}
.y1f{bottom:801.186035px;}
.y64{bottom:803.471832px;}
.y98{bottom:803.663544px;}
.y85{bottom:806.057831px;}
.yef{bottom:810.354858px;}
.y28{bottom:810.425079px;}
.yb8{bottom:811.175079px;}
.y63{bottom:820.296112px;}
.y84{bottom:822.882111px;}
.y1e{bottom:823.686035px;}
.yee{bottom:824.604858px;}
.yb7{bottom:825.425079px;}
.y83{bottom:825.456482px;}
.y27{bottom:828.425079px;}
.y62{bottom:837.120483px;}
.yed{bottom:838.854858px;}
.yb6{bottom:839.675079px;}
.y82{bottom:839.706482px;}
.y1d{bottom:846.186035px;}
.y26{bottom:846.425079px;}
.yec{bottom:853.104858px;}
.yb5{bottom:853.925079px;}
.y61{bottom:853.944580px;}
.y9c{bottom:854.624268px;}
.y81{bottom:856.530579px;}
.y25{bottom:864.425079px;}
.yeb{bottom:867.354858px;}
.yb4{bottom:868.175079px;}
.y60{bottom:870.768860px;}
.y9b{bottom:871.448547px;}
.y80{bottom:874.099091px;}
.yea{bottom:881.604858px;}
.y24{bottom:882.425079px;}
.y9a{bottom:888.272827px;}
.y5f{bottom:888.337372px;}
.y7f{bottom:888.349091px;}
.y9d{bottom:895.175079px;}
.ye9{bottom:895.854858px;}
.y23{bottom:900.425079px;}
.y5e{bottom:905.173187px;}
.y99{bottom:905.852875px;}
.y5d{bottom:905.944611px;}
.y7e{bottom:909.425079px;}
.ye8{bottom:910.104858px;}
.y9e{bottom:914.690277px;}
.y2{bottom:924.938965px;}
.y1{bottom:939.188965px;}
.h15{height:29.482031px;}
.h14{height:33.328125px;}
.hf{height:33.351562px;}
.h4{height:41.689453px;}
.ha{height:42.117188px;}
.h12{height:42.163879px;}
.h11{height:42.164062px;}
.h2{height:45.456000px;}
.he{height:46.224000px;}
.h13{height:47.472000px;}
.h10{height:50.027344px;}
.h5{height:52.646484px;}
.h6{height:57.780000px;}
.hc{height:58.800000px;}
.h3{height:59.340000px;}
.hd{height:60.600000px;}
.h9{height:64.824000px;}
.h7{height:65.274000px;}
.hb{height:72.000000px;}
.h8{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.xe{left:90.123299px;}
.x4{left:93.543303px;}
.xf{left:97.795200px;}
.x6{left:101.240398px;}
.x7{left:102.516003px;}
.x9{left:118.963646px;}
.x5{left:137.243546px;}
.xb{left:178.578152px;}
.xd{left:250.866142px;}
.x8{left:352.013100px;}
.x3{left:394.909332px;}
.xc{left:416.598587px;}
.x2{left:521.162704px;}
.xa{left:532.065170px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls11{letter-spacing:-3.157333pt;}
.lsb{letter-spacing:-1.973333pt;}
.lsc{letter-spacing:-1.834667pt;}
.ls8{letter-spacing:-1.578667pt;}
.lsd{letter-spacing:-1.173333pt;}
.lse{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000029pt;}
.lsa{letter-spacing:0.000518pt;}
.ls9{letter-spacing:0.469333pt;}
.ls10{letter-spacing:27.291725pt;}
.lsf{letter-spacing:47.124831pt;}
.ls1{letter-spacing:47.125320pt;}
.ls0{letter-spacing:47.125360pt;}
.ls4{letter-spacing:53.250143pt;}
.ls5{letter-spacing:71.042135pt;}
.ls6{letter-spacing:111.730652pt;}
.ls7{letter-spacing:129.522644pt;}
.ws13{word-spacing:-13.333333pt;}
.ws78{word-spacing:-12.160000pt;}
.ws8b{word-spacing:-11.850667pt;}
.ws6c{word-spacing:-11.360000pt;}
.ws61{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.773333pt;}
.ws5c{word-spacing:-10.666667pt;}
.ws31{word-spacing:-10.080000pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7b{word-spacing:-8.192000pt;}
.wsaa{word-spacing:-7.509333pt;}
.wsab{word-spacing:-7.466667pt;}
.ws45{word-spacing:-2.826667pt;}
.ws26{word-spacing:-2.720000pt;}
.ws44{word-spacing:-2.613333pt;}
.ws64{word-spacing:-2.560000pt;}
.wsa0{word-spacing:-2.432000pt;}
.ws47{word-spacing:-2.293333pt;}
.ws4d{word-spacing:-2.240000pt;}
.wsa7{word-spacing:-2.218667pt;}
.ws1a{word-spacing:-2.080000pt;}
.ws84{word-spacing:-2.005333pt;}
.ws7e{word-spacing:-1.973333pt;}
.ws59{word-spacing:-1.920000pt;}
.ws1b{word-spacing:-1.866667pt;}
.ws34{word-spacing:-1.760000pt;}
.ws1d{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.600000pt;}
.ws6b{word-spacing:-1.493333pt;}
.ws8d{word-spacing:-1.322667pt;}
.ws90{word-spacing:-1.280000pt;}
.ws89{word-spacing:-1.237333pt;}
.ws62{word-spacing:-1.226667pt;}
.ws2d{word-spacing:-1.173333pt;}
.ws52{word-spacing:-1.120000pt;}
.ws4f{word-spacing:-1.013333pt;}
.ws3b{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.800000pt;}
.ws11{word-spacing:-0.746667pt;}
.ws93{word-spacing:-0.725333pt;}
.ws53{word-spacing:-0.640000pt;}
.wsac{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.480000pt;}
.wsae{word-spacing:-0.469333pt;}
.ws96{word-spacing:-0.426667pt;}
.ws71{word-spacing:-0.320000pt;}
.ws91{word-spacing:-0.298667pt;}
.ws9c{word-spacing:-0.213333pt;}
.ws9b{word-spacing:-0.170667pt;}
.ws54{word-spacing:-0.160000pt;}
.ws72{word-spacing:-0.053333pt;}
.ws2c{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws48{word-spacing:0.106667pt;}
.ws63{word-spacing:0.160000pt;}
.ws94{word-spacing:0.170667pt;}
.ws5b{word-spacing:0.213333pt;}
.ws43{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.426667pt;}
.ws28{word-spacing:0.533333pt;}
.wsa8{word-spacing:0.725333pt;}
.wsa1{word-spacing:0.768000pt;}
.wsd{word-spacing:0.853333pt;}
.ws3c{word-spacing:0.906667pt;}
.ws29{word-spacing:1.066667pt;}
.ws30{word-spacing:1.120000pt;}
.ws41{word-spacing:1.173333pt;}
.wsa{word-spacing:1.280000pt;}
.ws88{word-spacing:1.322667pt;}
.wsa3{word-spacing:1.408000pt;}
.ws4c{word-spacing:1.440000pt;}
.ws99{word-spacing:1.536000pt;}
.ws85{word-spacing:1.578667pt;}
.ws9a{word-spacing:1.664000pt;}
.ws56{word-spacing:1.706667pt;}
.wsa5{word-spacing:1.749333pt;}
.ws46{word-spacing:1.760000pt;}
.ws1c{word-spacing:1.813333pt;}
.ws70{word-spacing:1.834667pt;}
.ws7{word-spacing:1.920000pt;}
.ws73{word-spacing:1.973333pt;}
.ws24{word-spacing:2.026667pt;}
.ws6{word-spacing:2.133333pt;}
.ws40{word-spacing:2.186667pt;}
.ws19{word-spacing:2.240000pt;}
.ws76{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.453333pt;}
.ws83{word-spacing:2.474667pt;}
.ws3e{word-spacing:2.506667pt;}
.ws14{word-spacing:2.517333pt;}
.wsa6{word-spacing:2.560000pt;}
.ws2b{word-spacing:2.720000pt;}
.wsb1{word-spacing:2.816000pt;}
.ws65{word-spacing:2.826667pt;}
.ws9{word-spacing:2.880000pt;}
.ws32{word-spacing:2.933333pt;}
.ws17{word-spacing:2.986667pt;}
.ws37{word-spacing:3.040000pt;}
.ws86{word-spacing:3.072000pt;}
.ws50{word-spacing:3.200000pt;}
.ws51{word-spacing:3.253333pt;}
.ws15{word-spacing:3.306667pt;}
.ws75{word-spacing:3.360000pt;}
.ws21{word-spacing:3.413333pt;}
.ws74{word-spacing:3.466667pt;}
.ws7f{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.680000pt;}
.wsb0{word-spacing:3.754667pt;}
.ws4b{word-spacing:3.893333pt;}
.ws87{word-spacing:3.925333pt;}
.ws38{word-spacing:3.946667pt;}
.wse{word-spacing:4.000000pt;}
.ws81{word-spacing:4.053333pt;}
.ws3f{word-spacing:4.106667pt;}
.ws35{word-spacing:4.320000pt;}
.ws2e{word-spacing:4.373333pt;}
.ws92{word-spacing:4.522667pt;}
.ws58{word-spacing:4.533333pt;}
.ws2a{word-spacing:4.640000pt;}
.ws66{word-spacing:4.800000pt;}
.ws1e{word-spacing:4.853333pt;}
.ws95{word-spacing:4.992000pt;}
.wsa4{word-spacing:5.034667pt;}
.wsad{word-spacing:5.162667pt;}
.ws8c{word-spacing:5.205333pt;}
.ws82{word-spacing:5.248000pt;}
.ws9d{word-spacing:5.290667pt;}
.ws79{word-spacing:5.333333pt;}
.ws3a{word-spacing:5.440000pt;}
.ws49{word-spacing:5.546667pt;}
.ws8{word-spacing:5.600000pt;}
.ws55{word-spacing:5.706667pt;}
.ws7c{word-spacing:5.760000pt;}
.ws57{word-spacing:5.813333pt;}
.ws80{word-spacing:5.866667pt;}
.ws36{word-spacing:6.400000pt;}
.ws16{word-spacing:6.453333pt;}
.wsb{word-spacing:6.560000pt;}
.ws25{word-spacing:6.666667pt;}
.wsaf{word-spacing:6.826667pt;}
.ws5{word-spacing:6.880000pt;}
.ws77{word-spacing:6.933333pt;}
.ws2f{word-spacing:7.040000pt;}
.ws8f{word-spacing:7.082667pt;}
.ws5a{word-spacing:7.093333pt;}
.ws9e{word-spacing:7.125333pt;}
.ws12{word-spacing:7.200000pt;}
.ws23{word-spacing:7.306667pt;}
.ws4{word-spacing:7.360000pt;}
.ws8e{word-spacing:7.381333pt;}
.ws33{word-spacing:7.520000pt;}
.ws1f{word-spacing:7.573333pt;}
.ws27{word-spacing:7.680000pt;}
.ws39{word-spacing:7.786667pt;}
.ws8a{word-spacing:7.850667pt;}
.ws20{word-spacing:8.053333pt;}
.wsc{word-spacing:8.213333pt;}
.wsa9{word-spacing:8.234667pt;}
.ws22{word-spacing:9.066667pt;}
.ws4e{word-spacing:9.333333pt;}
.ws67{word-spacing:9.653333pt;}
.ws3d{word-spacing:9.973333pt;}
.ws97{word-spacing:15.061333pt;}
.ws42{word-spacing:15.093333pt;}
.ws9f{word-spacing:15.786667pt;}
.ws98{word-spacing:16.298667pt;}
.wsf{word-spacing:17.482667pt;}
.wsa2{word-spacing:17.792000pt;}
.ws5d{word-spacing:60.375468pt;}
.ws5f{word-spacing:97.522644pt;}
.ws69{word-spacing:101.214518pt;}
.ws60{word-spacing:102.258644pt;}
.ws5e{word-spacing:118.855977pt;}
.ws6d{word-spacing:243.406909pt;}
.ws6e{word-spacing:257.614909pt;}
.ws6a{word-spacing:378.547852pt;}
.ws68{word-spacing:1005.606346pt;}
._36{margin-left:-58.979187pt;}
._26{margin-left:-13.333333pt;}
._25{margin-left:-7.396827pt;}
._d{margin-left:-5.753600pt;}
._33{margin-left:-4.534400pt;}
._1{margin-left:-3.622400pt;}
._9{margin-left:-1.884800pt;}
._0{margin-left:-0.942933pt;}
._2{width:0.889600pt;}
._6{width:2.266667pt;}
._a{width:3.184000pt;}
._5{width:4.085333pt;}
._4{width:5.082667pt;}
._3{width:6.218667pt;}
._8{width:7.152000pt;}
._e{width:8.090666pt;}
._10{width:9.258669pt;}
._11{width:10.287994pt;}
._f{width:12.186667pt;}
._35{width:13.430405pt;}
._13{width:14.664528pt;}
._7{width:15.571736pt;}
._c{width:16.586667pt;}
._32{width:17.482667pt;}
._34{width:18.377599pt;}
._15{width:30.080000pt;}
._14{width:33.066667pt;}
._12{width:34.506667pt;}
._2e{width:44.033548pt;}
._37{width:50.005325pt;}
._18{width:71.042135pt;}
._23{width:101.770156pt;}
._b{width:110.379176pt;}
._1e{width:129.522644pt;}
._30{width:136.055464pt;}
._2b{width:251.393548pt;}
._21{width:298.463489pt;}
._31{width:312.567464pt;}
._2c{width:329.644215pt;}
._1b{width:355.004789pt;}
._28{width:367.881185pt;}
._2f{width:387.247415pt;}
._2a{width:389.214518pt;}
._20{width:411.060822pt;}
._24{width:443.099222pt;}
._29{width:457.601548pt;}
._1f{width:465.546156pt;}
._1a{width:467.602123pt;}
._19{width:522.087456pt;}
._16{width:523.282115pt;}
._2d{width:656.222348pt;}
._22{width:713.958956pt;}
._1d{width:735.754156pt;}
._27{width:762.521546pt;}
._1c{width:770.500256pt;}
._17{width:792.295456pt;}
.fs7{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:41.543200pt;}
.y51{bottom:41.574800pt;}
.y90{bottom:80.001200pt;}
.y21{bottom:80.001333pt;}
.y50{bottom:80.377869pt;}
.yb3{bottom:86.381733pt;}
.y121{bottom:86.982137pt;}
.y4f{bottom:96.377869pt;}
.yb2{bottom:99.048400pt;}
.y120{bottom:99.648804pt;}
.ye7{bottom:100.377869pt;}
.yb1{bottom:111.715067pt;}
.y11f{bottom:112.315470pt;}
.y4e{bottom:112.377869pt;}
.ye6{bottom:113.044535pt;}
.yb0{bottom:124.381733pt;}
.y11e{bottom:124.982137pt;}
.ye5{bottom:125.711202pt;}
.y4d{bottom:128.377869pt;}
.yaf{bottom:137.048400pt;}
.y11d{bottom:137.648804pt;}
.ye4{bottom:138.377869pt;}
.y1a{bottom:140.598399pt;}
.y12d{bottom:143.815196pt;}
.y4c{bottom:144.377869pt;}
.yae{bottom:149.715067pt;}
.y11c{bottom:150.315470pt;}
.ye3{bottom:151.044535pt;}
.y19{bottom:156.598399pt;}
.y4b{bottom:160.377869pt;}
.y12c{bottom:160.748535pt;}
.yad{bottom:162.381733pt;}
.y11b{bottom:162.982137pt;}
.ye2{bottom:163.711202pt;}
.y18{bottom:172.598409pt;}
.yac{bottom:175.048400pt;}
.y11a{bottom:175.648804pt;}
.y12b{bottom:175.815206pt;}
.y4a{bottom:176.377869pt;}
.yab{bottom:187.715067pt;}
.y119{bottom:188.315470pt;}
.ye1{bottom:189.044535pt;}
.y49{bottom:192.377869pt;}
.y12a{bottom:192.748535pt;}
.y118{bottom:200.982137pt;}
.ye0{bottom:201.711202pt;}
.y17{bottom:204.598409pt;}
.y48{bottom:208.377869pt;}
.y117{bottom:213.648804pt;}
.y129{bottom:214.376933pt;}
.ydf{bottom:214.377869pt;}
.yaa{bottom:216.380391pt;}
.y47{bottom:224.377869pt;}
.y116{bottom:226.315470pt;}
.y128{bottom:227.043599pt;}
.yde{bottom:227.044535pt;}
.y115{bottom:238.982137pt;}
.ydd{bottom:239.711202pt;}
.y46{bottom:240.377869pt;}
.y8d{bottom:242.649740pt;}
.ya9{bottom:245.045858pt;}
.y127{bottom:246.376933pt;}
.y114{bottom:251.648804pt;}
.ydc{bottom:252.377869pt;}
.y45{bottom:256.377869pt;}
.ya8{bottom:257.712524pt;}
.y126{bottom:259.043599pt;}
.y16{bottom:263.294006pt;}
.y113{bottom:264.315470pt;}
.ydb{bottom:265.044535pt;}
.y44{bottom:272.377869pt;}
.y112{bottom:276.982137pt;}
.yda{bottom:277.711202pt;}
.y125{bottom:278.376933pt;}
.y15{bottom:279.293864pt;}
.ya7{bottom:286.377869pt;}
.y43{bottom:288.377869pt;}
.y111{bottom:289.648804pt;}
.yd9{bottom:290.377869pt;}
.y124{bottom:291.043599pt;}
.y110{bottom:302.315470pt;}
.yd8{bottom:303.044535pt;}
.y42{bottom:304.377869pt;}
.y14{bottom:311.293864pt;}
.y10f{bottom:314.982137pt;}
.yd7{bottom:315.711202pt;}
.ya6{bottom:317.711202pt;}
.y41{bottom:320.377869pt;}
.y13{bottom:327.293864pt;}
.y10e{bottom:327.648804pt;}
.yd6{bottom:328.377869pt;}
.ya5{bottom:330.377869pt;}
.y40{bottom:336.377869pt;}
.y10d{bottom:340.315470pt;}
.yd5{bottom:341.044535pt;}
.ya4{bottom:343.044515pt;}
.y12{bottom:343.293986pt;}
.y7b{bottom:349.964396pt;}
.y3f{bottom:352.377848pt;}
.y10c{bottom:352.982137pt;}
.ya1{bottom:353.415202pt;}
.yd4{bottom:353.711182pt;}
.y11{bottom:359.293986pt;}
.ya2{bottom:362.988118pt;}
.y7a{bottom:364.929728pt;}
.y10b{bottom:365.648804pt;}
.ya0{bottom:366.081868pt;}
.yd3{bottom:366.377848pt;}
.y3e{bottom:368.377848pt;}
.ya3{bottom:371.711182pt;}
.y10{bottom:375.293986pt;}
.y10a{bottom:378.315470pt;}
.yd2{bottom:379.044515pt;}
.y79{bottom:379.884521pt;}
.y3d{bottom:384.377848pt;}
.y91{bottom:388.908122pt;}
.y109{bottom:390.982137pt;}
.yf{bottom:391.293986pt;}
.yd1{bottom:391.711182pt;}
.y78{bottom:394.839478pt;}
.y3c{bottom:400.377848pt;}
.y108{bottom:403.648804pt;}
.y123{bottom:403.982137pt;}
.yd0{bottom:404.377848pt;}
.ye{bottom:407.293986pt;}
.y77{bottom:407.506144pt;}
.y107{bottom:416.315470pt;}
.y3b{bottom:416.377848pt;}
.y122{bottom:416.648804pt;}
.ycf{bottom:417.044515pt;}
.y94{bottom:421.796672pt;}
.y76{bottom:422.460938pt;}
.yd{bottom:423.293986pt;}
.y106{bottom:428.982137pt;}
.yce{bottom:429.711182pt;}
.y3a{bottom:432.377848pt;}
.y93{bottom:434.463338pt;}
.y75{bottom:435.127604pt;}
.yc{bottom:439.293986pt;}
.y105{bottom:441.648804pt;}
.ycd{bottom:442.377848pt;}
.y95{bottom:444.036418pt;}
.y92{bottom:447.130005pt;}
.y39{bottom:448.377848pt;}
.y74{bottom:450.082520pt;}
.y5a{bottom:452.703451pt;}
.y104{bottom:454.315470pt;}
.ycc{bottom:455.044515pt;}
.yb{bottom:455.293986pt;}
.y58{bottom:460.626668pt;}
.y5b{bottom:462.276408pt;}
.y38{bottom:464.377848pt;}
.y73{bottom:465.037476pt;}
.y59{bottom:465.370117pt;}
.y103{bottom:466.982137pt;}
.ycb{bottom:467.711182pt;}
.y9f{bottom:471.263468pt;}
.ya{bottom:471.293986pt;}
.y57{bottom:475.581462pt;}
.y97{bottom:477.140951pt;}
.y102{bottom:479.648804pt;}
.y72{bottom:479.992269pt;}
.y37{bottom:480.377848pt;}
.y7d{bottom:480.836385pt;}
.y7c{bottom:483.930135pt;}
.y96{bottom:485.177327pt;}
.y9{bottom:487.293986pt;}
.y56{bottom:488.248128pt;}
.y101{bottom:492.315470pt;}
.y71{bottom:492.658936pt;}
.yca{bottom:493.044515pt;}
.y36{bottom:496.377848pt;}
.y55{bottom:503.203084pt;}
.y8{bottom:503.293986pt;}
.y5c{bottom:503.417318pt;}
.y100{bottom:504.982137pt;}
.yc9{bottom:505.711182pt;}
.y70{bottom:507.613851pt;}
.y8b{bottom:512.204793pt;}
.y35{bottom:512.377848pt;}
.y54{bottom:515.869751pt;}
.yff{bottom:517.648804pt;}
.yc8{bottom:518.377848pt;}
.y7{bottom:519.293986pt;}
.y6f{bottom:522.568807pt;}
.y34{bottom:528.377848pt;}
.yfe{bottom:530.315470pt;}
.y53{bottom:530.824666pt;}
.yc7{bottom:531.044515pt;}
.y6{bottom:535.293986pt;}
.y6e{bottom:537.523600pt;}
.yfd{bottom:542.982137pt;}
.y52{bottom:543.491333pt;}
.yc6{bottom:543.711182pt;}
.y33{bottom:544.377848pt;}
.y5{bottom:551.293986pt;}
.y6d{bottom:552.478516pt;}
.yfc{bottom:555.648804pt;}
.yc5{bottom:556.377848pt;}
.y32{bottom:560.377848pt;}
.y4{bottom:567.293986pt;}
.y6c{bottom:568.094808pt;}
.yfb{bottom:568.315470pt;}
.yc4{bottom:569.044515pt;}
.y31{bottom:576.377848pt;}
.yfa{bottom:580.982137pt;}
.yc3{bottom:581.711182pt;}
.y6b{bottom:583.060140pt;}
.y3{bottom:583.293986pt;}
.y8e{bottom:586.116659pt;}
.y30{bottom:592.377848pt;}
.yf9{bottom:593.648804pt;}
.yc2{bottom:594.377848pt;}
.y8c{bottom:598.711182pt;}
.yf8{bottom:606.315470pt;}
.yc1{bottom:607.044515pt;}
.y2f{bottom:608.377848pt;}
.yf7{bottom:618.982137pt;}
.yc0{bottom:619.711182pt;}
.y2e{bottom:624.377848pt;}
.y8f{bottom:627.257609pt;}
.y1c{bottom:627.309611pt;}
.y6a{bottom:629.044393pt;}
.yf6{bottom:631.648804pt;}
.ybf{bottom:632.377848pt;}
.y1b{bottom:639.976278pt;}
.y2d{bottom:640.377848pt;}
.y69{bottom:641.711060pt;}
.y8a{bottom:644.009603pt;}
.yf5{bottom:644.315470pt;}
.ybe{bottom:645.044515pt;}
.y2c{bottom:656.377848pt;}
.y68{bottom:656.665853pt;}
.yf4{bottom:656.982137pt;}
.ybd{bottom:657.711182pt;}
.y89{bottom:658.964518pt;}
.y67{bottom:669.332520pt;}
.yf3{bottom:669.648804pt;}
.ybc{bottom:670.377848pt;}
.y2b{bottom:672.377848pt;}
.y88{bottom:673.919474pt;}
.y20{bottom:674.433065pt;}
.yf2{bottom:682.315470pt;}
.ybb{bottom:683.044515pt;}
.y66{bottom:684.287435pt;}
.y2a{bottom:688.377848pt;}
.y87{bottom:688.874430pt;}
.yf1{bottom:694.982096pt;}
.yba{bottom:695.711182pt;}
.y65{bottom:699.242432pt;}
.y86{bottom:701.541097pt;}
.y29{bottom:704.377848pt;}
.yf0{bottom:707.648763pt;}
.yb9{bottom:708.377848pt;}
.y1f{bottom:712.165365pt;}
.y64{bottom:714.197184pt;}
.y98{bottom:714.367594pt;}
.y85{bottom:716.495850pt;}
.yef{bottom:720.315430pt;}
.y28{bottom:720.377848pt;}
.yb8{bottom:721.044515pt;}
.y63{bottom:729.152100pt;}
.y84{bottom:731.450765pt;}
.y1e{bottom:732.165365pt;}
.yee{bottom:732.982096pt;}
.yb7{bottom:733.711182pt;}
.y83{bottom:733.739095pt;}
.y27{bottom:736.377848pt;}
.y62{bottom:744.107096pt;}
.yed{bottom:745.648763pt;}
.yb6{bottom:746.377848pt;}
.y82{bottom:746.405762pt;}
.y1d{bottom:752.165365pt;}
.y26{bottom:752.377848pt;}
.yec{bottom:758.315430pt;}
.yb5{bottom:759.044515pt;}
.y61{bottom:759.061849pt;}
.y9c{bottom:759.666016pt;}
.y81{bottom:761.360514pt;}
.y25{bottom:768.377848pt;}
.yeb{bottom:770.982096pt;}
.yb4{bottom:771.711182pt;}
.y60{bottom:774.016764pt;}
.y9b{bottom:774.620931pt;}
.y80{bottom:776.976969pt;}
.yea{bottom:783.648763pt;}
.y24{bottom:784.377848pt;}
.y9a{bottom:789.575846pt;}
.y5f{bottom:789.633219pt;}
.y7f{bottom:789.643636pt;}
.y9d{bottom:795.711182pt;}
.ye9{bottom:796.315430pt;}
.y23{bottom:800.377848pt;}
.y5e{bottom:804.598389pt;}
.y99{bottom:805.202555pt;}
.y5d{bottom:805.284098pt;}
.y7e{bottom:808.377848pt;}
.ye8{bottom:808.982096pt;}
.y9e{bottom:813.058024pt;}
.y2{bottom:822.167969pt;}
.y1{bottom:834.834635pt;}
.h15{height:26.206250pt;}
.h14{height:29.625000pt;}
.hf{height:29.645833pt;}
.h4{height:37.057292pt;}
.ha{height:37.437500pt;}
.h12{height:37.479004pt;}
.h11{height:37.479167pt;}
.h2{height:40.405333pt;}
.he{height:41.088000pt;}
.h13{height:42.197333pt;}
.h10{height:44.468750pt;}
.h5{height:46.796875pt;}
.h6{height:51.360000pt;}
.hc{height:52.266667pt;}
.h3{height:52.746667pt;}
.hd{height:53.866667pt;}
.h9{height:57.621333pt;}
.h7{height:58.021333pt;}
.hb{height:64.000000pt;}
.h8{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.xe{left:80.109599pt;}
.x4{left:83.149602pt;}
.xf{left:86.929067pt;}
.x6{left:89.991465pt;}
.x7{left:91.125336pt;}
.x9{left:105.745463pt;}
.x5{left:121.994263pt;}
.xb{left:158.736135pt;}
.xd{left:222.992126pt;}
.x8{left:312.900533pt;}
.x3{left:351.030518pt;}
.xc{left:370.309855pt;}
.x2{left:463.255737pt;}
.xa{left:472.946818pt;}
}




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