
    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_40633991b811576b50058a7e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_330e2942732f9ebca14eedf4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_a79f4e41a9ad2ffe2cdf4170.woff')format("woff");}.ff3{font-family:ff3;line-height:1.024414;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_fb43b1f845c12bdc0905da75.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_44431a84e64adec5ddebcfe8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_263496f13ad05f1dd96dd3e2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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_bd4478d1652f5a5699945cd6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_cd0ec5c19f900a28ad418c14.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_57dfb4dee4683b59e91574a8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_db603d140f5417dfd15a7354.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_3a789f3128c543d2bf541e1b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082031;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_fd2bf6c8d6d5cc2e0ea033b0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls15{letter-spacing:-6.768000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls2a{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.266400px;}
.ls17{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.ls3{letter-spacing:0.864000px;}
.ls22{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.875000px;}
.ls5{letter-spacing:2.448000px;}
.ls2d{letter-spacing:2.928000px;}
.ls2e{letter-spacing:3.408000px;}
.ls16{letter-spacing:3.873600px;}
.ls23{letter-spacing:4.075200px;}
.ls7{letter-spacing:4.512000px;}
.ls2b{letter-spacing:4.752000px;}
.ls28{letter-spacing:5.688000px;}
.ls18{letter-spacing:6.033600px;}
.ls29{letter-spacing:6.552000px;}
.ls2{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls14{letter-spacing:10.756800px;}
.ls0{letter-spacing:240.000000px;}
.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;}
}
.ws77{word-spacing:-20.592000px;}
.ws0{word-spacing:-20.232000px;}
.ws83{word-spacing:-20.160000px;}
.ws30{word-spacing:-19.872000px;}
.ws57{word-spacing:-19.440000px;}
.ws1d{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.144000px;}
.ws4b{word-spacing:-17.784000px;}
.ws84{word-spacing:-17.712000px;}
.ws8b{word-spacing:-17.640000px;}
.ws2e{word-spacing:-17.568000px;}
.ws2f{word-spacing:-17.424000px;}
.ws1e{word-spacing:-16.860000px;}
.wsa3{word-spacing:-14.820000px;}
.wsa1{word-spacing:-13.488000px;}
.ws9a{word-spacing:-11.856000px;}
.ws9e{word-spacing:-4.752000px;}
.ws7{word-spacing:-4.512000px;}
.ws60{word-spacing:-2.088000px;}
.ws5f{word-spacing:-2.016000px;}
.ws94{word-spacing:-1.800000px;}
.ws93{word-spacing:-1.224000px;}
.ws95{word-spacing:-0.936000px;}
.ws7c{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.216000px;}
.ws8f{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws5e{word-spacing:0.072000px;}
.wsa2{word-spacing:0.144000px;}
.ws71{word-spacing:0.216000px;}
.ws70{word-spacing:0.288000px;}
.ws16{word-spacing:0.360000px;}
.ws54{word-spacing:0.432000px;}
.ws9b{word-spacing:0.504000px;}
.ws56{word-spacing:0.648000px;}
.wsd{word-spacing:0.720000px;}
.ws7f{word-spacing:0.792000px;}
.ws64{word-spacing:0.864000px;}
.ws6c{word-spacing:0.936000px;}
.ws23{word-spacing:1.008000px;}
.ws86{word-spacing:1.080000px;}
.ws3c{word-spacing:1.152000px;}
.ws92{word-spacing:1.224000px;}
.ws27{word-spacing:1.296000px;}
.ws52{word-spacing:1.368000px;}
.ws46{word-spacing:1.440000px;}
.ws90{word-spacing:1.512000px;}
.ws63{word-spacing:1.584000px;}
.ws58{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws1b{word-spacing:1.872000px;}
.wsb{word-spacing:2.016000px;}
.ws19{word-spacing:2.088000px;}
.ws6a{word-spacing:2.160000px;}
.wsc{word-spacing:2.304000px;}
.ws49{word-spacing:2.400000px;}
.ws39{word-spacing:2.448000px;}
.ws5d{word-spacing:2.520000px;}
.ws25{word-spacing:2.592000px;}
.ws38{word-spacing:2.664000px;}
.ws55{word-spacing:2.736000px;}
.ws15{word-spacing:2.808000px;}
.ws3b{word-spacing:2.880000px;}
.ws68{word-spacing:2.952000px;}
.wsa0{word-spacing:2.976000px;}
.ws3e{word-spacing:3.024000px;}
.ws50{word-spacing:3.096000px;}
.ws10{word-spacing:3.168000px;}
.ws17{word-spacing:3.240000px;}
.ws8{word-spacing:3.300000px;}
.ws3a{word-spacing:3.312000px;}
.ws9f{word-spacing:3.360000px;}
.ws96{word-spacing:3.456000px;}
.ws5b{word-spacing:3.528000px;}
.ws2{word-spacing:3.600000px;}
.ws43{word-spacing:3.672000px;}
.ws3{word-spacing:3.720000px;}
.ws5a{word-spacing:3.816000px;}
.ws65{word-spacing:3.888000px;}
.ws8e{word-spacing:3.960000px;}
.ws13{word-spacing:4.032000px;}
.ws2d{word-spacing:4.104000px;}
.ws7a{word-spacing:4.176000px;}
.ws9{word-spacing:4.200000px;}
.ws6d{word-spacing:4.320000px;}
.ws4e{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws73{word-spacing:4.536000px;}
.ws82{word-spacing:4.608000px;}
.ws3d{word-spacing:4.680000px;}
.ws40{word-spacing:4.752000px;}
.ws14{word-spacing:4.824000px;}
.ws44{word-spacing:4.896000px;}
.ws28{word-spacing:4.968000px;}
.ws12{word-spacing:5.040000px;}
.ws69{word-spacing:5.112000px;}
.ws18{word-spacing:5.184000px;}
.ws42{word-spacing:5.256000px;}
.ws4d{word-spacing:5.328000px;}
.ws8a{word-spacing:5.400000px;}
.ws4f{word-spacing:5.472000px;}
.ws20{word-spacing:5.544000px;}
.ws91{word-spacing:5.616000px;}
.ws75{word-spacing:5.688000px;}
.ws3f{word-spacing:5.760000px;}
.wsa{word-spacing:5.832000px;}
.ws5c{word-spacing:5.904000px;}
.ws41{word-spacing:5.976000px;}
.ws88{word-spacing:6.048000px;}
.ws26{word-spacing:6.120000px;}
.ws24{word-spacing:6.264000px;}
.ws6b{word-spacing:6.336000px;}
.ws33{word-spacing:6.408000px;}
.ws31{word-spacing:6.480000px;}
.ws22{word-spacing:6.552000px;}
.ws7d{word-spacing:6.624000px;}
.ws29{word-spacing:6.696000px;}
.ws2b{word-spacing:6.768000px;}
.ws99{word-spacing:6.840000px;}
.ws74{word-spacing:6.912000px;}
.ws76{word-spacing:6.984000px;}
.ws62{word-spacing:7.056000px;}
.ws81{word-spacing:7.128000px;}
.ws8c{word-spacing:7.200000px;}
.ws32{word-spacing:7.272000px;}
.ws66{word-spacing:7.344000px;}
.ws51{word-spacing:7.488000px;}
.ws53{word-spacing:7.560000px;}
.ws67{word-spacing:7.632000px;}
.ws6f{word-spacing:7.704000px;}
.ws36{word-spacing:7.776000px;}
.ws8d{word-spacing:7.848000px;}
.ws87{word-spacing:7.920000px;}
.ws59{word-spacing:7.992000px;}
.ws48{word-spacing:8.064000px;}
.ws21{word-spacing:8.136000px;}
.ws61{word-spacing:8.208000px;}
.ws89{word-spacing:8.280000px;}
.ws9d{word-spacing:8.352000px;}
.ws4a{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws9c{word-spacing:8.424000px;}
.ws6e{word-spacing:8.496000px;}
.ws1f{word-spacing:8.568000px;}
.ws45{word-spacing:8.640000px;}
.wsf{word-spacing:8.712000px;}
.ws97{word-spacing:8.784000px;}
.ws35{word-spacing:8.856000px;}
.ws2a{word-spacing:8.928000px;}
.ws85{word-spacing:9.144000px;}
.ws7b{word-spacing:9.216000px;}
.ws47{word-spacing:9.288000px;}
.ws7e{word-spacing:9.360000px;}
.ws37{word-spacing:9.432000px;}
.ws1a{word-spacing:9.504000px;}
.ws79{word-spacing:9.576000px;}
.ws4c{word-spacing:9.648000px;}
.ws80{word-spacing:9.720000px;}
.ws72{word-spacing:9.864000px;}
.ws34{word-spacing:9.936000px;}
.ws98{word-spacing:10.008000px;}
.wse{word-spacing:10.080000px;}
.ws11{word-spacing:10.152000px;}
._b{margin-left:-940.387800px;}
._13{margin-left:-28.737600px;}
._e{margin-left:-23.832000px;}
._6{margin-left:-20.808000px;}
._10{margin-left:-19.785600px;}
._15{margin-left:-16.860000px;}
._8{margin-left:-14.560800px;}
._1{margin-left:-11.748000px;}
._16{margin-left:-10.512000px;}
._d{margin-left:-8.858400px;}
._7{margin-left:-7.660800px;}
._0{margin-left:-5.742000px;}
._c{margin-left:-4.056000px;}
._3{margin-left:-2.496000px;}
._5{margin-left:-1.382400px;}
._4{width:1.728000px;}
._9{width:2.743200px;}
._2{width:3.744000px;}
._a{width:4.824000px;}
._12{width:8.568000px;}
._f{width:11.160000px;}
._14{width:70.604400px;}
._11{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y6b{bottom:117.000000px;}
.yb2{bottom:117.984000px;}
.yc3{bottom:118.110000px;}
.yf0{bottom:118.578000px;}
.y46{bottom:119.746050px;}
.y127{bottom:120.282000px;}
.y21{bottom:121.118550px;}
.y8f{bottom:123.300000px;}
.yef{bottom:133.722000px;}
.y126{bottom:135.426000px;}
.y45{bottom:137.746050px;}
.y6a{bottom:139.500000px;}
.yb1{bottom:141.078000px;}
.yc2{bottom:141.204000px;}
.y20{bottom:142.718550px;}
.y8e{bottom:146.250000px;}
.yee{bottom:148.866000px;}
.y125{bottom:150.570000px;}
.y44{bottom:155.746050px;}
.y69{bottom:162.000000px;}
.yed{bottom:164.022000px;}
.yb0{bottom:164.172000px;}
.yc1{bottom:164.298000px;}
.y1f{bottom:164.318550px;}
.y124{bottom:165.714000px;}
.y8d{bottom:169.200000px;}
.y43{bottom:173.746050px;}
.yec{bottom:179.166000px;}
.y123{bottom:180.858000px;}
.y68{bottom:184.500000px;}
.y1e{bottom:185.918550px;}
.yaf{bottom:187.266000px;}
.yc0{bottom:187.392000px;}
.y8c{bottom:192.150000px;}
.yeb{bottom:194.310000px;}
.y122{bottom:196.002000px;}
.y42{bottom:200.376000px;}
.y67{bottom:207.000000px;}
.y1d{bottom:207.518550px;}
.yea{bottom:209.454000px;}
.yae{bottom:210.360000px;}
.ybf{bottom:210.486000px;}
.y121{bottom:211.146000px;}
.y8b{bottom:215.100000px;}
.y41{bottom:222.120000px;}
.ye9{bottom:224.598000px;}
.y120{bottom:226.290000px;}
.y1c{bottom:229.118550px;}
.y66{bottom:229.500000px;}
.yad{bottom:233.454000px;}
.ybe{bottom:233.580000px;}
.y8a{bottom:238.050000px;}
.ye8{bottom:239.742000px;}
.y11f{bottom:241.434000px;}
.y40{bottom:243.864000px;}
.y1b{bottom:250.718550px;}
.y65{bottom:252.000000px;}
.ye7{bottom:254.886000px;}
.yac{bottom:256.548000px;}
.y11e{bottom:256.578000px;}
.ybd{bottom:256.674000px;}
.y89{bottom:261.000000px;}
.y3f{bottom:265.608000px;}
.ye6{bottom:270.030000px;}
.y11d{bottom:271.722000px;}
.y1a{bottom:272.318550px;}
.y64{bottom:274.500000px;}
.yab{bottom:279.642000px;}
.ybc{bottom:279.768000px;}
.y88{bottom:283.950000px;}
.ye5{bottom:285.174000px;}
.y11c{bottom:286.866000px;}
.y3e{bottom:287.352000px;}
.y19{bottom:293.918550px;}
.y63{bottom:297.000000px;}
.ye4{bottom:300.318000px;}
.y11b{bottom:302.010000px;}
.yaa{bottom:302.736000px;}
.ybb{bottom:302.862000px;}
.y87{bottom:306.900000px;}
.y3d{bottom:309.096000px;}
.ye3{bottom:315.462000px;}
.y18{bottom:315.518550px;}
.y11a{bottom:317.154000px;}
.y62{bottom:319.500000px;}
.ya9{bottom:325.830000px;}
.yba{bottom:325.956000px;}
.y86{bottom:329.850000px;}
.ye2{bottom:330.606000px;}
.y3c{bottom:330.840000px;}
.y119{bottom:332.298000px;}
.y17{bottom:337.118550px;}
.y61{bottom:342.000000px;}
.ye1{bottom:345.750000px;}
.y118{bottom:347.442000px;}
.ya8{bottom:348.924000px;}
.yb9{bottom:349.050000px;}
.y3b{bottom:352.584000px;}
.y85{bottom:352.800000px;}
.y16{bottom:358.718550px;}
.ye0{bottom:360.894000px;}
.y117{bottom:362.586000px;}
.y60{bottom:364.500000px;}
.ya7{bottom:372.018000px;}
.yb8{bottom:372.144000px;}
.y3a{bottom:374.328000px;}
.y84{bottom:375.750000px;}
.ydf{bottom:376.038000px;}
.y116{bottom:377.730000px;}
.y15{bottom:380.318550px;}
.y5f{bottom:387.000000px;}
.yde{bottom:391.182000px;}
.y115{bottom:392.874000px;}
.ya6{bottom:395.112000px;}
.yb7{bottom:395.238000px;}
.y83{bottom:398.700000px;}
.y14{bottom:401.918550px;}
.y39{bottom:405.828000px;}
.ydd{bottom:406.326000px;}
.y114{bottom:408.018000px;}
.y5e{bottom:409.500000px;}
.ya5{bottom:418.206000px;}
.yb6{bottom:418.332000px;}
.ydc{bottom:421.470000px;}
.y82{bottom:421.650000px;}
.y113{bottom:423.162000px;}
.y13{bottom:423.518550px;}
.y38{bottom:427.572000px;}
.y5d{bottom:432.000000px;}
.ydb{bottom:436.614000px;}
.y112{bottom:438.306000px;}
.ya4{bottom:441.300000px;}
.yb5{bottom:441.426000px;}
.y81{bottom:444.600000px;}
.y12{bottom:445.118550px;}
.y37{bottom:449.316000px;}
.yda{bottom:451.758000px;}
.y111{bottom:453.450000px;}
.y5c{bottom:454.500000px;}
.y13e{bottom:455.622000px;}
.ya3{bottom:464.400000px;}
.yb4{bottom:464.520000px;}
.y11{bottom:466.718550px;}
.yd9{bottom:466.902000px;}
.y80{bottom:467.550000px;}
.y110{bottom:468.594000px;}
.y36{bottom:471.060000px;}
.y13d{bottom:474.372000px;}
.y5b{bottom:477.000000px;}
.yd8{bottom:482.046000px;}
.y10f{bottom:483.594000px;}
.yb3{bottom:487.614000px;}
.y10{bottom:488.318550px;}
.y7f{bottom:490.500000px;}
.y35{bottom:492.804000px;}
.y13c{bottom:493.122000px;}
.yd7{bottom:497.190000px;}
.y10e{bottom:498.594000px;}
.y5a{bottom:499.500000px;}
.yf{bottom:509.918550px;}
.ya2{bottom:510.708000px;}
.y13b{bottom:511.872000px;}
.yd6{bottom:512.334000px;}
.y7e{bottom:513.450000px;}
.y10d{bottom:513.594000px;}
.y34{bottom:514.548000px;}
.y59{bottom:522.000000px;}
.yd5{bottom:527.478000px;}
.y10c{bottom:528.594000px;}
.y13a{bottom:530.622000px;}
.ye{bottom:531.518550px;}
.ya1{bottom:533.802000px;}
.y33{bottom:536.292000px;}
.y7d{bottom:536.400000px;}
.yd4{bottom:542.622000px;}
.y10b{bottom:543.594000px;}
.y58{bottom:544.500000px;}
.yd{bottom:553.118550px;}
.ya0{bottom:556.896000px;}
.y32{bottom:558.036000px;}
.y10a{bottom:558.594000px;}
.y7c{bottom:559.350000px;}
.y139{bottom:560.622000px;}
.yd3{bottom:564.150000px;}
.y57{bottom:567.000000px;}
.y109{bottom:573.594000px;}
.yc{bottom:574.718550px;}
.y31{bottom:579.780000px;}
.y9f{bottom:579.990000px;}
.y7b{bottom:582.300000px;}
.y108{bottom:588.594000px;}
.y56{bottom:589.500000px;}
.yb{bottom:596.318550px;}
.y30{bottom:601.524000px;}
.y138{bottom:601.872000px;}
.y9e{bottom:603.084000px;}
.y107{bottom:603.594000px;}
.y7a{bottom:605.250000px;}
.yd2{bottom:609.522000px;}
.y55{bottom:612.000000px;}
.ya{bottom:617.918550px;}
.y106{bottom:618.594000px;}
.y137{bottom:620.622000px;}
.y2f{bottom:623.268000px;}
.y9d{bottom:626.178000px;}
.y79{bottom:628.200000px;}
.yd1{bottom:632.166000px;}
.y105{bottom:633.594000px;}
.y54{bottom:634.500000px;}
.y136{bottom:639.372000px;}
.y9{bottom:639.518550px;}
.y2e{bottom:645.012000px;}
.y104{bottom:648.594000px;}
.y9c{bottom:649.272000px;}
.y78{bottom:651.150000px;}
.yd0{bottom:654.810000px;}
.y53{bottom:657.000000px;}
.y135{bottom:658.122000px;}
.y8{bottom:661.118550px;}
.y103{bottom:663.594000px;}
.y2d{bottom:666.756000px;}
.y9b{bottom:672.366000px;}
.y77{bottom:674.100000px;}
.y134{bottom:676.872000px;}
.ycf{bottom:677.454000px;}
.y102{bottom:678.594000px;}
.y52{bottom:679.500000px;}
.y2c{bottom:688.500000px;}
.y101{bottom:693.594000px;}
.y9a{bottom:695.460000px;}
.y133{bottom:695.622000px;}
.y76{bottom:697.050000px;}
.yce{bottom:700.098000px;}
.y51{bottom:702.000000px;}
.y7{bottom:705.218550px;}
.y100{bottom:708.594000px;}
.y2b{bottom:710.250000px;}
.y132{bottom:714.372000px;}
.y99{bottom:718.554000px;}
.y75{bottom:720.000000px;}
.ycd{bottom:722.742000px;}
.yff{bottom:723.594000px;}
.y6{bottom:723.968550px;}
.y50{bottom:724.500000px;}
.y131{bottom:733.122000px;}
.yfe{bottom:738.594000px;}
.y98{bottom:741.648000px;}
.y5{bottom:742.718550px;}
.y74{bottom:742.950000px;}
.ycc{bottom:745.386000px;}
.y4f{bottom:747.000000px;}
.y130{bottom:751.872000px;}
.yfd{bottom:753.594000px;}
.y2a{bottom:753.798000px;}
.y97{bottom:764.742000px;}
.y73{bottom:765.900000px;}
.ycb{bottom:768.030000px;}
.yfc{bottom:768.594000px;}
.y4e{bottom:769.500000px;}
.y12f{bottom:770.622000px;}
.y29{bottom:775.542000px;}
.yfb{bottom:783.594000px;}
.y4{bottom:784.854300px;}
.y96{bottom:787.836000px;}
.y72{bottom:788.850000px;}
.y12e{bottom:789.372000px;}
.yca{bottom:790.674000px;}
.y4d{bottom:792.000000px;}
.y28{bottom:797.286000px;}
.yfa{bottom:798.594000px;}
.y3{bottom:807.354300px;}
.y12d{bottom:808.122000px;}
.y95{bottom:810.930000px;}
.y71{bottom:811.800000px;}
.yc9{bottom:813.318000px;}
.yf9{bottom:813.594000px;}
.y4c{bottom:814.500000px;}
.y27{bottom:819.030000px;}
.y12c{bottom:826.872000px;}
.yf8{bottom:828.594000px;}
.y94{bottom:834.024000px;}
.y70{bottom:834.750000px;}
.yc8{bottom:835.962000px;}
.y4b{bottom:837.000000px;}
.y26{bottom:840.774000px;}
.yf7{bottom:843.594000px;}
.y12b{bottom:845.622000px;}
.y93{bottom:857.118000px;}
.y6f{bottom:857.700000px;}
.yf6{bottom:858.594000px;}
.yc7{bottom:858.606000px;}
.y4a{bottom:859.500000px;}
.y25{bottom:862.518000px;}
.y12a{bottom:864.372000px;}
.yf5{bottom:873.594000px;}
.y2{bottom:874.500000px;}
.y92{bottom:880.212000px;}
.y6e{bottom:880.650000px;}
.yc6{bottom:881.250000px;}
.y49{bottom:882.000000px;}
.y129{bottom:883.122000px;}
.y24{bottom:884.262000px;}
.yf4{bottom:888.594000px;}
.y128{bottom:901.872000px;}
.y91{bottom:903.306000px;}
.yf3{bottom:903.594000px;}
.y6d{bottom:903.600000px;}
.yc5{bottom:903.894000px;}
.y48{bottom:904.500000px;}
.y23{bottom:906.006000px;}
.yf2{bottom:918.594000px;}
.y90{bottom:926.400000px;}
.y6c{bottom:926.550000px;}
.yc4{bottom:926.700000px;}
.y47{bottom:927.000000px;}
.y22{bottom:927.750000px;}
.yf1{bottom:934.050000px;}
.h8{height:33.117188px;}
.h7{height:33.600000px;}
.h9{height:37.593750px;}
.h5{height:41.396484px;}
.h3{height:42.000000px;}
.h1{height:46.992188px;}
.h6{height:49.675781px;}
.ha{height:50.947266px;}
.h4{height:56.390625px;}
.h2{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x2{left:82.381950px;}
.x5{left:112.495950px;}
.x4{left:127.381950px;}
.x8{left:135.526950px;}
.x6{left:142.231950px;}
.x7{left:635.390550px;}
.x3{left:645.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls15{letter-spacing:-6.016000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.236800pt;}
.ls17{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.ls3{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.896000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls27{letter-spacing:1.666667pt;}
.ls5{letter-spacing:2.176000pt;}
.ls2d{letter-spacing:2.602667pt;}
.ls2e{letter-spacing:3.029333pt;}
.ls16{letter-spacing:3.443200pt;}
.ls23{letter-spacing:3.622400pt;}
.ls7{letter-spacing:4.010667pt;}
.ls2b{letter-spacing:4.224000pt;}
.ls28{letter-spacing:5.056000pt;}
.ls18{letter-spacing:5.363200pt;}
.ls29{letter-spacing:5.824000pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls14{letter-spacing:9.561600pt;}
.ls0{letter-spacing:213.333333pt;}
.ws77{word-spacing:-18.304000pt;}
.ws0{word-spacing:-17.984000pt;}
.ws83{word-spacing:-17.920000pt;}
.ws30{word-spacing:-17.664000pt;}
.ws57{word-spacing:-17.280000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.128000pt;}
.ws4b{word-spacing:-15.808000pt;}
.ws84{word-spacing:-15.744000pt;}
.ws8b{word-spacing:-15.680000pt;}
.ws2e{word-spacing:-15.616000pt;}
.ws2f{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-14.986667pt;}
.wsa3{word-spacing:-13.173333pt;}
.wsa1{word-spacing:-11.989333pt;}
.ws9a{word-spacing:-10.538667pt;}
.ws9e{word-spacing:-4.224000pt;}
.ws7{word-spacing:-4.010667pt;}
.ws60{word-spacing:-1.856000pt;}
.ws5f{word-spacing:-1.792000pt;}
.ws94{word-spacing:-1.600000pt;}
.ws93{word-spacing:-1.088000pt;}
.ws95{word-spacing:-0.832000pt;}
.ws7c{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws8f{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.064000pt;}
.wsa2{word-spacing:0.128000pt;}
.ws71{word-spacing:0.192000pt;}
.ws70{word-spacing:0.256000pt;}
.ws16{word-spacing:0.320000pt;}
.ws54{word-spacing:0.384000pt;}
.ws9b{word-spacing:0.448000pt;}
.ws56{word-spacing:0.576000pt;}
.wsd{word-spacing:0.640000pt;}
.ws7f{word-spacing:0.704000pt;}
.ws64{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.832000pt;}
.ws23{word-spacing:0.896000pt;}
.ws86{word-spacing:0.960000pt;}
.ws3c{word-spacing:1.024000pt;}
.ws92{word-spacing:1.088000pt;}
.ws27{word-spacing:1.152000pt;}
.ws52{word-spacing:1.216000pt;}
.ws46{word-spacing:1.280000pt;}
.ws90{word-spacing:1.344000pt;}
.ws63{word-spacing:1.408000pt;}
.ws58{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.664000pt;}
.wsb{word-spacing:1.792000pt;}
.ws19{word-spacing:1.856000pt;}
.ws6a{word-spacing:1.920000pt;}
.wsc{word-spacing:2.048000pt;}
.ws49{word-spacing:2.133333pt;}
.ws39{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.240000pt;}
.ws25{word-spacing:2.304000pt;}
.ws38{word-spacing:2.368000pt;}
.ws55{word-spacing:2.432000pt;}
.ws15{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.560000pt;}
.ws68{word-spacing:2.624000pt;}
.wsa0{word-spacing:2.645333pt;}
.ws3e{word-spacing:2.688000pt;}
.ws50{word-spacing:2.752000pt;}
.ws10{word-spacing:2.816000pt;}
.ws17{word-spacing:2.880000pt;}
.ws8{word-spacing:2.933333pt;}
.ws3a{word-spacing:2.944000pt;}
.ws9f{word-spacing:2.986667pt;}
.ws96{word-spacing:3.072000pt;}
.ws5b{word-spacing:3.136000pt;}
.ws2{word-spacing:3.200000pt;}
.ws43{word-spacing:3.264000pt;}
.ws3{word-spacing:3.306667pt;}
.ws5a{word-spacing:3.392000pt;}
.ws65{word-spacing:3.456000pt;}
.ws8e{word-spacing:3.520000pt;}
.ws13{word-spacing:3.584000pt;}
.ws2d{word-spacing:3.648000pt;}
.ws7a{word-spacing:3.712000pt;}
.ws9{word-spacing:3.733333pt;}
.ws6d{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws73{word-spacing:4.032000pt;}
.ws82{word-spacing:4.096000pt;}
.ws3d{word-spacing:4.160000pt;}
.ws40{word-spacing:4.224000pt;}
.ws14{word-spacing:4.288000pt;}
.ws44{word-spacing:4.352000pt;}
.ws28{word-spacing:4.416000pt;}
.ws12{word-spacing:4.480000pt;}
.ws69{word-spacing:4.544000pt;}
.ws18{word-spacing:4.608000pt;}
.ws42{word-spacing:4.672000pt;}
.ws4d{word-spacing:4.736000pt;}
.ws8a{word-spacing:4.800000pt;}
.ws4f{word-spacing:4.864000pt;}
.ws20{word-spacing:4.928000pt;}
.ws91{word-spacing:4.992000pt;}
.ws75{word-spacing:5.056000pt;}
.ws3f{word-spacing:5.120000pt;}
.wsa{word-spacing:5.184000pt;}
.ws5c{word-spacing:5.248000pt;}
.ws41{word-spacing:5.312000pt;}
.ws88{word-spacing:5.376000pt;}
.ws26{word-spacing:5.440000pt;}
.ws24{word-spacing:5.568000pt;}
.ws6b{word-spacing:5.632000pt;}
.ws33{word-spacing:5.696000pt;}
.ws31{word-spacing:5.760000pt;}
.ws22{word-spacing:5.824000pt;}
.ws7d{word-spacing:5.888000pt;}
.ws29{word-spacing:5.952000pt;}
.ws2b{word-spacing:6.016000pt;}
.ws99{word-spacing:6.080000pt;}
.ws74{word-spacing:6.144000pt;}
.ws76{word-spacing:6.208000pt;}
.ws62{word-spacing:6.272000pt;}
.ws81{word-spacing:6.336000pt;}
.ws8c{word-spacing:6.400000pt;}
.ws32{word-spacing:6.464000pt;}
.ws66{word-spacing:6.528000pt;}
.ws51{word-spacing:6.656000pt;}
.ws53{word-spacing:6.720000pt;}
.ws67{word-spacing:6.784000pt;}
.ws6f{word-spacing:6.848000pt;}
.ws36{word-spacing:6.912000pt;}
.ws8d{word-spacing:6.976000pt;}
.ws87{word-spacing:7.040000pt;}
.ws59{word-spacing:7.104000pt;}
.ws48{word-spacing:7.168000pt;}
.ws21{word-spacing:7.232000pt;}
.ws61{word-spacing:7.296000pt;}
.ws89{word-spacing:7.360000pt;}
.ws9d{word-spacing:7.424000pt;}
.ws4a{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws9c{word-spacing:7.488000pt;}
.ws6e{word-spacing:7.552000pt;}
.ws1f{word-spacing:7.616000pt;}
.ws45{word-spacing:7.680000pt;}
.wsf{word-spacing:7.744000pt;}
.ws97{word-spacing:7.808000pt;}
.ws35{word-spacing:7.872000pt;}
.ws2a{word-spacing:7.936000pt;}
.ws85{word-spacing:8.128000pt;}
.ws7b{word-spacing:8.192000pt;}
.ws47{word-spacing:8.256000pt;}
.ws7e{word-spacing:8.320000pt;}
.ws37{word-spacing:8.384000pt;}
.ws1a{word-spacing:8.448000pt;}
.ws79{word-spacing:8.512000pt;}
.ws4c{word-spacing:8.576000pt;}
.ws80{word-spacing:8.640000pt;}
.ws72{word-spacing:8.768000pt;}
.ws34{word-spacing:8.832000pt;}
.ws98{word-spacing:8.896000pt;}
.wse{word-spacing:8.960000pt;}
.ws11{word-spacing:9.024000pt;}
._b{margin-left:-835.900267pt;}
._13{margin-left:-25.544533pt;}
._e{margin-left:-21.184000pt;}
._6{margin-left:-18.496000pt;}
._10{margin-left:-17.587200pt;}
._15{margin-left:-14.986667pt;}
._8{margin-left:-12.942933pt;}
._1{margin-left:-10.442667pt;}
._16{margin-left:-9.344000pt;}
._d{margin-left:-7.874133pt;}
._7{margin-left:-6.809600pt;}
._0{margin-left:-5.104000pt;}
._c{margin-left:-3.605333pt;}
._3{margin-left:-2.218667pt;}
._5{margin-left:-1.228800pt;}
._4{width:1.536000pt;}
._9{width:2.438400pt;}
._2{width:3.328000pt;}
._a{width:4.288000pt;}
._12{width:7.616000pt;}
._f{width:9.920000pt;}
._14{width:62.759467pt;}
._11{width:179.168000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y6b{bottom:104.000000pt;}
.yb2{bottom:104.874667pt;}
.yc3{bottom:104.986667pt;}
.yf0{bottom:105.402667pt;}
.y46{bottom:106.440933pt;}
.y127{bottom:106.917333pt;}
.y21{bottom:107.660933pt;}
.y8f{bottom:109.600000pt;}
.yef{bottom:118.864000pt;}
.y126{bottom:120.378667pt;}
.y45{bottom:122.440933pt;}
.y6a{bottom:124.000000pt;}
.yb1{bottom:125.402667pt;}
.yc2{bottom:125.514667pt;}
.y20{bottom:126.860933pt;}
.y8e{bottom:130.000000pt;}
.yee{bottom:132.325333pt;}
.y125{bottom:133.840000pt;}
.y44{bottom:138.440933pt;}
.y69{bottom:144.000000pt;}
.yed{bottom:145.797333pt;}
.yb0{bottom:145.930667pt;}
.yc1{bottom:146.042667pt;}
.y1f{bottom:146.060933pt;}
.y124{bottom:147.301333pt;}
.y8d{bottom:150.400000pt;}
.y43{bottom:154.440933pt;}
.yec{bottom:159.258667pt;}
.y123{bottom:160.762667pt;}
.y68{bottom:164.000000pt;}
.y1e{bottom:165.260933pt;}
.yaf{bottom:166.458667pt;}
.yc0{bottom:166.570667pt;}
.y8c{bottom:170.800000pt;}
.yeb{bottom:172.720000pt;}
.y122{bottom:174.224000pt;}
.y42{bottom:178.112000pt;}
.y67{bottom:184.000000pt;}
.y1d{bottom:184.460933pt;}
.yea{bottom:186.181333pt;}
.yae{bottom:186.986667pt;}
.ybf{bottom:187.098667pt;}
.y121{bottom:187.685333pt;}
.y8b{bottom:191.200000pt;}
.y41{bottom:197.440000pt;}
.ye9{bottom:199.642667pt;}
.y120{bottom:201.146667pt;}
.y1c{bottom:203.660933pt;}
.y66{bottom:204.000000pt;}
.yad{bottom:207.514667pt;}
.ybe{bottom:207.626667pt;}
.y8a{bottom:211.600000pt;}
.ye8{bottom:213.104000pt;}
.y11f{bottom:214.608000pt;}
.y40{bottom:216.768000pt;}
.y1b{bottom:222.860933pt;}
.y65{bottom:224.000000pt;}
.ye7{bottom:226.565333pt;}
.yac{bottom:228.042667pt;}
.y11e{bottom:228.069333pt;}
.ybd{bottom:228.154667pt;}
.y89{bottom:232.000000pt;}
.y3f{bottom:236.096000pt;}
.ye6{bottom:240.026667pt;}
.y11d{bottom:241.530667pt;}
.y1a{bottom:242.060933pt;}
.y64{bottom:244.000000pt;}
.yab{bottom:248.570667pt;}
.ybc{bottom:248.682667pt;}
.y88{bottom:252.400000pt;}
.ye5{bottom:253.488000pt;}
.y11c{bottom:254.992000pt;}
.y3e{bottom:255.424000pt;}
.y19{bottom:261.260933pt;}
.y63{bottom:264.000000pt;}
.ye4{bottom:266.949333pt;}
.y11b{bottom:268.453333pt;}
.yaa{bottom:269.098667pt;}
.ybb{bottom:269.210667pt;}
.y87{bottom:272.800000pt;}
.y3d{bottom:274.752000pt;}
.ye3{bottom:280.410667pt;}
.y18{bottom:280.460933pt;}
.y11a{bottom:281.914667pt;}
.y62{bottom:284.000000pt;}
.ya9{bottom:289.626667pt;}
.yba{bottom:289.738667pt;}
.y86{bottom:293.200000pt;}
.ye2{bottom:293.872000pt;}
.y3c{bottom:294.080000pt;}
.y119{bottom:295.376000pt;}
.y17{bottom:299.660933pt;}
.y61{bottom:304.000000pt;}
.ye1{bottom:307.333333pt;}
.y118{bottom:308.837333pt;}
.ya8{bottom:310.154667pt;}
.yb9{bottom:310.266667pt;}
.y3b{bottom:313.408000pt;}
.y85{bottom:313.600000pt;}
.y16{bottom:318.860933pt;}
.ye0{bottom:320.794667pt;}
.y117{bottom:322.298667pt;}
.y60{bottom:324.000000pt;}
.ya7{bottom:330.682667pt;}
.yb8{bottom:330.794667pt;}
.y3a{bottom:332.736000pt;}
.y84{bottom:334.000000pt;}
.ydf{bottom:334.256000pt;}
.y116{bottom:335.760000pt;}
.y15{bottom:338.060933pt;}
.y5f{bottom:344.000000pt;}
.yde{bottom:347.717333pt;}
.y115{bottom:349.221333pt;}
.ya6{bottom:351.210667pt;}
.yb7{bottom:351.322667pt;}
.y83{bottom:354.400000pt;}
.y14{bottom:357.260933pt;}
.y39{bottom:360.736000pt;}
.ydd{bottom:361.178667pt;}
.y114{bottom:362.682667pt;}
.y5e{bottom:364.000000pt;}
.ya5{bottom:371.738667pt;}
.yb6{bottom:371.850667pt;}
.ydc{bottom:374.640000pt;}
.y82{bottom:374.800000pt;}
.y113{bottom:376.144000pt;}
.y13{bottom:376.460933pt;}
.y38{bottom:380.064000pt;}
.y5d{bottom:384.000000pt;}
.ydb{bottom:388.101333pt;}
.y112{bottom:389.605333pt;}
.ya4{bottom:392.266667pt;}
.yb5{bottom:392.378667pt;}
.y81{bottom:395.200000pt;}
.y12{bottom:395.660933pt;}
.y37{bottom:399.392000pt;}
.yda{bottom:401.562667pt;}
.y111{bottom:403.066667pt;}
.y5c{bottom:404.000000pt;}
.y13e{bottom:404.997333pt;}
.ya3{bottom:412.800000pt;}
.yb4{bottom:412.906667pt;}
.y11{bottom:414.860933pt;}
.yd9{bottom:415.024000pt;}
.y80{bottom:415.600000pt;}
.y110{bottom:416.528000pt;}
.y36{bottom:418.720000pt;}
.y13d{bottom:421.664000pt;}
.y5b{bottom:424.000000pt;}
.yd8{bottom:428.485333pt;}
.y10f{bottom:429.861333pt;}
.yb3{bottom:433.434667pt;}
.y10{bottom:434.060933pt;}
.y7f{bottom:436.000000pt;}
.y35{bottom:438.048000pt;}
.y13c{bottom:438.330667pt;}
.yd7{bottom:441.946667pt;}
.y10e{bottom:443.194667pt;}
.y5a{bottom:444.000000pt;}
.yf{bottom:453.260933pt;}
.ya2{bottom:453.962667pt;}
.y13b{bottom:454.997333pt;}
.yd6{bottom:455.408000pt;}
.y7e{bottom:456.400000pt;}
.y10d{bottom:456.528000pt;}
.y34{bottom:457.376000pt;}
.y59{bottom:464.000000pt;}
.yd5{bottom:468.869333pt;}
.y10c{bottom:469.861333pt;}
.y13a{bottom:471.664000pt;}
.ye{bottom:472.460933pt;}
.ya1{bottom:474.490667pt;}
.y33{bottom:476.704000pt;}
.y7d{bottom:476.800000pt;}
.yd4{bottom:482.330667pt;}
.y10b{bottom:483.194667pt;}
.y58{bottom:484.000000pt;}
.yd{bottom:491.660933pt;}
.ya0{bottom:495.018667pt;}
.y32{bottom:496.032000pt;}
.y10a{bottom:496.528000pt;}
.y7c{bottom:497.200000pt;}
.y139{bottom:498.330667pt;}
.yd3{bottom:501.466667pt;}
.y57{bottom:504.000000pt;}
.y109{bottom:509.861333pt;}
.yc{bottom:510.860933pt;}
.y31{bottom:515.360000pt;}
.y9f{bottom:515.546667pt;}
.y7b{bottom:517.600000pt;}
.y108{bottom:523.194667pt;}
.y56{bottom:524.000000pt;}
.yb{bottom:530.060933pt;}
.y30{bottom:534.688000pt;}
.y138{bottom:534.997333pt;}
.y9e{bottom:536.074667pt;}
.y107{bottom:536.528000pt;}
.y7a{bottom:538.000000pt;}
.yd2{bottom:541.797333pt;}
.y55{bottom:544.000000pt;}
.ya{bottom:549.260933pt;}
.y106{bottom:549.861333pt;}
.y137{bottom:551.664000pt;}
.y2f{bottom:554.016000pt;}
.y9d{bottom:556.602667pt;}
.y79{bottom:558.400000pt;}
.yd1{bottom:561.925333pt;}
.y105{bottom:563.194667pt;}
.y54{bottom:564.000000pt;}
.y136{bottom:568.330667pt;}
.y9{bottom:568.460933pt;}
.y2e{bottom:573.344000pt;}
.y104{bottom:576.528000pt;}
.y9c{bottom:577.130667pt;}
.y78{bottom:578.800000pt;}
.yd0{bottom:582.053333pt;}
.y53{bottom:584.000000pt;}
.y135{bottom:584.997333pt;}
.y8{bottom:587.660933pt;}
.y103{bottom:589.861333pt;}
.y2d{bottom:592.672000pt;}
.y9b{bottom:597.658667pt;}
.y77{bottom:599.200000pt;}
.y134{bottom:601.664000pt;}
.ycf{bottom:602.181333pt;}
.y102{bottom:603.194667pt;}
.y52{bottom:604.000000pt;}
.y2c{bottom:612.000000pt;}
.y101{bottom:616.528000pt;}
.y9a{bottom:618.186667pt;}
.y133{bottom:618.330667pt;}
.y76{bottom:619.600000pt;}
.yce{bottom:622.309333pt;}
.y51{bottom:624.000000pt;}
.y7{bottom:626.860933pt;}
.y100{bottom:629.861333pt;}
.y2b{bottom:631.333333pt;}
.y132{bottom:634.997333pt;}
.y99{bottom:638.714667pt;}
.y75{bottom:640.000000pt;}
.ycd{bottom:642.437333pt;}
.yff{bottom:643.194667pt;}
.y6{bottom:643.527600pt;}
.y50{bottom:644.000000pt;}
.y131{bottom:651.664000pt;}
.yfe{bottom:656.528000pt;}
.y98{bottom:659.242667pt;}
.y5{bottom:660.194267pt;}
.y74{bottom:660.400000pt;}
.ycc{bottom:662.565333pt;}
.y4f{bottom:664.000000pt;}
.y130{bottom:668.330667pt;}
.yfd{bottom:669.861333pt;}
.y2a{bottom:670.042667pt;}
.y97{bottom:679.770667pt;}
.y73{bottom:680.800000pt;}
.ycb{bottom:682.693333pt;}
.yfc{bottom:683.194667pt;}
.y4e{bottom:684.000000pt;}
.y12f{bottom:684.997333pt;}
.y29{bottom:689.370667pt;}
.yfb{bottom:696.528000pt;}
.y4{bottom:697.648267pt;}
.y96{bottom:700.298667pt;}
.y72{bottom:701.200000pt;}
.y12e{bottom:701.664000pt;}
.yca{bottom:702.821333pt;}
.y4d{bottom:704.000000pt;}
.y28{bottom:708.698667pt;}
.yfa{bottom:709.861333pt;}
.y3{bottom:717.648267pt;}
.y12d{bottom:718.330667pt;}
.y95{bottom:720.826667pt;}
.y71{bottom:721.600000pt;}
.yc9{bottom:722.949333pt;}
.yf9{bottom:723.194667pt;}
.y4c{bottom:724.000000pt;}
.y27{bottom:728.026667pt;}
.y12c{bottom:734.997333pt;}
.yf8{bottom:736.528000pt;}
.y94{bottom:741.354667pt;}
.y70{bottom:742.000000pt;}
.yc8{bottom:743.077333pt;}
.y4b{bottom:744.000000pt;}
.y26{bottom:747.354667pt;}
.yf7{bottom:749.861333pt;}
.y12b{bottom:751.664000pt;}
.y93{bottom:761.882667pt;}
.y6f{bottom:762.400000pt;}
.yf6{bottom:763.194667pt;}
.yc7{bottom:763.205333pt;}
.y4a{bottom:764.000000pt;}
.y25{bottom:766.682667pt;}
.y12a{bottom:768.330667pt;}
.yf5{bottom:776.528000pt;}
.y2{bottom:777.333333pt;}
.y92{bottom:782.410667pt;}
.y6e{bottom:782.800000pt;}
.yc6{bottom:783.333333pt;}
.y49{bottom:784.000000pt;}
.y129{bottom:784.997333pt;}
.y24{bottom:786.010667pt;}
.yf4{bottom:789.861333pt;}
.y128{bottom:801.664000pt;}
.y91{bottom:802.938667pt;}
.yf3{bottom:803.194667pt;}
.y6d{bottom:803.200000pt;}
.yc5{bottom:803.461333pt;}
.y48{bottom:804.000000pt;}
.y23{bottom:805.338667pt;}
.yf2{bottom:816.528000pt;}
.y90{bottom:823.466667pt;}
.y6c{bottom:823.600000pt;}
.yc4{bottom:823.733333pt;}
.y47{bottom:824.000000pt;}
.y22{bottom:824.666667pt;}
.yf1{bottom:830.266667pt;}
.h8{height:29.437500pt;}
.h7{height:29.866667pt;}
.h9{height:33.416667pt;}
.h5{height:36.796875pt;}
.h3{height:37.333333pt;}
.h1{height:41.770833pt;}
.h6{height:44.156250pt;}
.ha{height:45.286458pt;}
.h4{height:50.125000pt;}
.h2{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x2{left:73.228400pt;}
.x5{left:99.996400pt;}
.x4{left:113.228400pt;}
.x8{left:120.468400pt;}
.x6{left:126.428400pt;}
.x7{left:564.791600pt;}
.x3{left:573.333333pt;}
}




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