
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf8a0c1920ce8705d42d59c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c95057b04b6b9e5a3e335bbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_fdea924829d6562e4277de6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e0e27b7f960e5ec292b3ffde.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_7327ce18bc55a1ec517129e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_b510b547ce2849398c372023.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_d6576a083a69f2bfd392927b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_61a9c3300d1bd6e7ecc955a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls3d{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.370200px;}
.ls53{letter-spacing:-0.367200px;}
.ls5e{letter-spacing:-0.346200px;}
.ls7{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.288600px;}
.ls73{letter-spacing:-0.283200px;}
.ls35{letter-spacing:-0.226200px;}
.ls6f{letter-spacing:-0.187200px;}
.lsc{letter-spacing:-0.175200px;}
.ls45{letter-spacing:-0.163200px;}
.ls5d{letter-spacing:-0.157800px;}
.ls63{letter-spacing:-0.148800px;}
.ls69{letter-spacing:-0.143400px;}
.ls49{letter-spacing:-0.129000px;}
.ls4b{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.107400px;}
.ls66{letter-spacing:-0.106800px;}
.ls4d{letter-spacing:-0.103800px;}
.ls65{letter-spacing:-0.094800px;}
.ls48{letter-spacing:-0.093600px;}
.ls47{letter-spacing:-0.087600px;}
.ls10{letter-spacing:-0.053400px;}
.ls30{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.052800px;}
.ls31{letter-spacing:-0.052560px;}
.ls12{letter-spacing:-0.039000px;}
.ls2f{letter-spacing:-0.038880px;}
.ls58{letter-spacing:-0.036000px;}
.ls52{letter-spacing:-0.019320px;}
.ls64{letter-spacing:-0.015120px;}
.ls34{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.004032px;}
.ls18{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.ls6b{letter-spacing:0.038880px;}
.ls32{letter-spacing:0.049680px;}
.ls50{letter-spacing:0.051840px;}
.ls5{letter-spacing:0.060480px;}
.ls36{letter-spacing:0.060600px;}
.ls71{letter-spacing:0.063600px;}
.ls17{letter-spacing:0.078000px;}
.ls3e{letter-spacing:0.091200px;}
.ls74{letter-spacing:0.121200px;}
.ls38{letter-spacing:0.132600px;}
.ls70{letter-spacing:0.155400px;}
.ls21{letter-spacing:0.157200px;}
.ls2b{letter-spacing:0.157680px;}
.ls23{letter-spacing:0.166320px;}
.ls0{letter-spacing:0.168480px;}
.ls27{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.195000px;}
.ls5a{letter-spacing:0.198000px;}
.ls4c{letter-spacing:0.206400px;}
.ls3b{letter-spacing:0.209400px;}
.ls19{letter-spacing:0.211680px;}
.ls2e{letter-spacing:0.211800px;}
.ls33{letter-spacing:0.246000px;}
.ls76{letter-spacing:0.249000px;}
.ls5c{letter-spacing:0.255600px;}
.ls1b{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.265200px;}
.ls46{letter-spacing:0.276600px;}
.ls3f{letter-spacing:0.286800px;}
.ls41{letter-spacing:0.288000px;}
.ls54{letter-spacing:0.309000px;}
.lsb{letter-spacing:0.310800px;}
.ls42{letter-spacing:0.319680px;}
.ls5b{letter-spacing:0.328800px;}
.ls29{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.341400px;}
.ls59{letter-spacing:0.343200px;}
.lsf{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.364800px;}
.ls26{letter-spacing:0.366000px;}
.ls67{letter-spacing:0.373800px;}
.ls44{letter-spacing:0.381312px;}
.ls37{letter-spacing:0.390000px;}
.ls61{letter-spacing:0.499680px;}
.ls13{letter-spacing:0.501000px;}
.ls2c{letter-spacing:0.532800px;}
.ls5f{letter-spacing:0.540000px;}
.ls6a{letter-spacing:0.598800px;}
.ls4a{letter-spacing:0.618000px;}
.lsd{letter-spacing:0.666000px;}
.ls57{letter-spacing:0.678000px;}
.ls11{letter-spacing:0.684000px;}
.ls3c{letter-spacing:0.732000px;}
.ls39{letter-spacing:0.798000px;}
.ls3a{letter-spacing:0.876000px;}
.ls68{letter-spacing:0.924000px;}
.ls62{letter-spacing:0.930000px;}
.ls6d{letter-spacing:1.039680px;}
.ls15{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.252800px;}
.ls75{letter-spacing:1.254000px;}
.ls1c{letter-spacing:1.972800px;}
.ls1d{letter-spacing:2.692800px;}
.ls2a{letter-spacing:3.412800px;}
.ls1e{letter-spacing:4.132800px;}
.ls1f{letter-spacing:4.852800px;}
.ls20{letter-spacing:6.292800px;}
.ls28{letter-spacing:7.732800px;}
.ls6e{letter-spacing:9.892800px;}
.ls4e{letter-spacing:12.052800px;}
.ls60{letter-spacing:15.652800px;}
.ls4{letter-spacing:17.812800px;}
.ls6c{letter-spacing:18.532800px;}
.ls22{letter-spacing:20.152800px;}
.ls51{letter-spacing:35.946720px;}
.ls56{letter-spacing:44.586720px;}
.ls72{letter-spacing:57.412800px;}
.ls43{letter-spacing:64.026720px;}
.ls24{letter-spacing:64.890720px;}
.ls1a{letter-spacing:71.226720px;}
.ls3{letter-spacing:72.449280px;}
.ls55{letter-spacing:78.426720px;}
.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;}
}
.ws3e{word-spacing:-59.904000px;}
.ws19{word-spacing:-59.760000px;}
.ws0{word-spacing:-38.880000px;}
.ws3{word-spacing:-18.874200px;}
.ws5{word-spacing:-14.883600px;}
.ws4{word-spacing:-14.838000px;}
.ws11{word-spacing:-14.572800px;}
.ws12{word-spacing:-14.227200px;}
.ws46{word-spacing:-14.077200px;}
.ws4c{word-spacing:-14.071200px;}
.ws27{word-spacing:-14.023200px;}
.ws25{word-spacing:-13.945200px;}
.ws2a{word-spacing:-13.879200px;}
.wsd{word-spacing:-13.831200px;}
.ws3d{word-spacing:-13.825200px;}
.ws7{word-spacing:-13.813200px;}
.ws35{word-spacing:-13.765200px;}
.ws4e{word-spacing:-13.746000px;}
.wsf{word-spacing:-13.648200px;}
.ws23{word-spacing:-13.537200px;}
.ws4b{word-spacing:-13.521000px;}
.ws29{word-spacing:-13.513200px;}
.ws2f{word-spacing:-13.512000px;}
.wsb{word-spacing:-13.504200px;}
.ws40{word-spacing:-13.490400px;}
.ws42{word-spacing:-13.476000px;}
.ws2d{word-spacing:-13.465680px;}
.ws3c{word-spacing:-13.456200px;}
.ws31{word-spacing:-13.423800px;}
.ws43{word-spacing:-13.402800px;}
.ws54{word-spacing:-13.396200px;}
.ws1f{word-spacing:-13.393200px;}
.ws17{word-spacing:-13.359000px;}
.ws28{word-spacing:-13.356600px;}
.ws37{word-spacing:-13.353600px;}
.ws41{word-spacing:-13.345200px;}
.ws2e{word-spacing:-13.342200px;}
.ws26{word-spacing:-13.304400px;}
.ws50{word-spacing:-13.302600px;}
.ws24{word-spacing:-13.279800px;}
.ws52{word-spacing:-13.268400px;}
.ws2c{word-spacing:-13.238400px;}
.ws15{word-spacing:-13.225200px;}
.ws53{word-spacing:-13.210800px;}
.ws1e{word-spacing:-13.196880px;}
.ws4f{word-spacing:-13.186080px;}
.ws39{word-spacing:-13.178880px;}
.ws8{word-spacing:-13.160400px;}
.ws18{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws20{word-spacing:-13.136400px;}
.ws48{word-spacing:-13.132080px;}
.ws3f{word-spacing:-13.111200px;}
.ws1a{word-spacing:-13.108320px;}
.wse{word-spacing:-13.108200px;}
.ws1c{word-spacing:-13.094640px;}
.ws9{word-spacing:-13.094400px;}
.ws1b{word-spacing:-13.093920px;}
.wsc{word-spacing:-13.093800px;}
.ws32{word-spacing:-13.091280px;}
.ws33{word-spacing:-13.085280px;}
.ws49{word-spacing:-13.052400px;}
.ws34{word-spacing:-13.049880px;}
.ws38{word-spacing:-13.043400px;}
.ws4a{word-spacing:-13.040400px;}
.ws13{word-spacing:-13.039800px;}
.ws36{word-spacing:-13.026000px;}
.ws4d{word-spacing:-13.003800px;}
.ws47{word-spacing:-12.998400px;}
.ws44{word-spacing:-12.989400px;}
.ws30{word-spacing:-12.984000px;}
.ws6{word-spacing:-12.972000px;}
.ws21{word-spacing:-12.921000px;}
.ws51{word-spacing:-12.864000px;}
.ws10{word-spacing:-12.858600px;}
.ws3b{word-spacing:-12.811680px;}
.ws45{word-spacing:-12.801000px;}
.ws2b{word-spacing:-12.139200px;}
.ws1{word-spacing:-9.652800px;}
.ws2{word-spacing:-9.609000px;}
.ws22{word-spacing:-8.614200px;}
.ws1d{word-spacing:-8.614080px;}
.ws3a{word-spacing:-8.565960px;}
.ws14{word-spacing:-8.553600px;}
.ws16{word-spacing:0.000000px;}
._d{margin-left:-3.691919px;}
._b{margin-left:-2.591280px;}
._0{margin-left:-1.134000px;}
._1{width:1.013160px;}
._2{width:2.139365px;}
._8{width:3.468596px;}
._f{width:4.608720px;}
._5{width:6.369120px;}
._4{width:8.243281px;}
._3{width:9.333840px;}
._11{width:10.436160px;}
._e{width:12.147000px;}
._13{width:14.301603px;}
._12{width:15.904560px;}
._c{width:16.978200px;}
._9{width:18.821520px;}
._a{width:19.900803px;}
._10{width:21.219694px;}
._17{width:23.164680px;}
._7{width:24.393360px;}
._6{width:25.734600px;}
._16{width:28.487520px;}
._1d{width:29.606040px;}
._14{width:30.891240px;}
._15{width:32.258640px;}
._19{width:33.421683px;}
._18{width:35.526720px;}
._22{width:36.653162px;}
._1b{width:55.367282px;}
._1c{width:56.779680px;}
._20{width:57.835916px;}
._1f{width:58.859401px;}
._1e{width:60.254400px;}
._21{width:66.675963px;}
._1a{width:109.315201px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs8{font-size:39.024000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.440000px;}
.y28{bottom:74.160000px;}
.y1{bottom:101.520000px;}
.y58{bottom:121.140000px;}
.yee{bottom:124.020000px;}
.y119{bottom:124.740000px;}
.ya1{bottom:126.900000px;}
.yed{bottom:141.660000px;}
.y118{bottom:142.380000px;}
.ya0{bottom:144.540000px;}
.y13d{bottom:152.100000px;}
.yc8{bottom:156.600000px;}
.y57{bottom:156.780000px;}
.y7a{bottom:158.760000px;}
.y9f{bottom:162.000000px;}
.yec{bottom:168.300000px;}
.y117{bottom:168.840000px;}
.y13c{bottom:169.740000px;}
.yc7{bottom:174.240000px;}
.y56{bottom:174.420000px;}
.y79{bottom:176.400000px;}
.y9e{bottom:179.640000px;}
.y116{bottom:186.480000px;}
.y26{bottom:188.100000px;}
.y55{bottom:191.880000px;}
.y78{bottom:194.040000px;}
.yeb{bottom:194.760000px;}
.y13b{bottom:196.380000px;}
.y115{bottom:204.120000px;}
.y25{bottom:205.740000px;}
.y9d{bottom:206.100000px;}
.y54{bottom:209.520000px;}
.yc6{bottom:209.880000px;}
.y13a{bottom:214.020000px;}
.yea{bottom:221.400000px;}
.y24{bottom:223.380000px;}
.y53{bottom:227.190000px;}
.yc5{bottom:227.550000px;}
.y77{bottom:229.530000px;}
.y114{bottom:230.610000px;}
.y139{bottom:231.510000px;}
.y23{bottom:240.870000px;}
.y9c{bottom:241.770000px;}
.y52{bottom:244.650000px;}
.yc4{bottom:245.010000px;}
.y76{bottom:247.170000px;}
.ye9{bottom:248.070000px;}
.y113{bottom:248.250000px;}
.y138{bottom:258.150000px;}
.y22{bottom:258.510000px;}
.y9b{bottom:259.410000px;}
.y51{bottom:262.290000px;}
.y75{bottom:264.810000px;}
.ye8{bottom:274.530000px;}
.y112{bottom:274.890000px;}
.y137{bottom:275.790000px;}
.y21{bottom:276.150000px;}
.y9a{bottom:277.050000px;}
.yc3{bottom:280.650000px;}
.y50{bottom:288.930000px;}
.ye7{bottom:292.170000px;}
.y111{bottom:292.530000px;}
.y136{bottom:293.250000px;}
.y20{bottom:293.790000px;}
.y99{bottom:294.510000px;}
.yc2{bottom:298.290000px;}
.y74{bottom:300.270000px;}
.y1f{bottom:311.250000px;}
.y73{bottom:317.910000px;}
.ye6{bottom:318.810000px;}
.y110{bottom:318.990000px;}
.y14b{bottom:319.530000px;}
.y135{bottom:319.890000px;}
.y98{bottom:321.150000px;}
.y4f{bottom:324.390000px;}
.yc1{bottom:324.750000px;}
.y1e{bottom:328.890000px;}
.y72{bottom:335.550000px;}
.ye5{bottom:336.450000px;}
.y10f{bottom:336.630000px;}
.y14a{bottom:337.170000px;}
.y134{bottom:337.530000px;}
.y4e{bottom:342.030000px;}
.y1d{bottom:346.530000px;}
.y71{bottom:353.190000px;}
.y97{bottom:356.790000px;}
.y4d{bottom:359.670000px;}
.yc0{bottom:360.390000px;}
.ye4{bottom:362.910000px;}
.y10e{bottom:363.270000px;}
.y149{bottom:363.630000px;}
.y1c{bottom:363.990000px;}
.y4c{bottom:377.310000px;}
.ybf{bottom:378.030000px;}
.ye3{bottom:380.550000px;}
.y10d{bottom:380.910000px;}
.y148{bottom:381.270000px;}
.y1b{bottom:381.630000px;}
.y96{bottom:383.250000px;}
.y70{bottom:388.650000px;}
.y4b{bottom:394.770000px;}
.y1a{bottom:399.270000px;}
.ybe{bottom:404.670000px;}
.y6f{bottom:406.290000px;}
.ye2{bottom:407.190000px;}
.y10c{bottom:407.370000px;}
.y147{bottom:407.730000px;}
.y4a{bottom:412.410000px;}
.y95{bottom:418.890000px;}
.y6e{bottom:423.930000px;}
.ye1{bottom:424.830000px;}
.y10b{bottom:425.010000px;}
.y133{bottom:425.730000px;}
.y19{bottom:425.910000px;}
.y49{bottom:430.050000px;}
.y146{bottom:434.370000px;}
.y6d{bottom:441.570000px;}
.y132{bottom:443.370000px;}
.y94{bottom:445.530000px;}
.ye0{bottom:451.290000px;}
.y10a{bottom:451.470000px;}
.y145{bottom:452.010000px;}
.y48{bottom:456.510000px;}
.ybd{bottom:456.915000px;}
.y6c{bottom:459.075000px;}
.y131{bottom:461.055000px;}
.ydf{bottom:468.975000px;}
.ybc{bottom:470.775000px;}
.y18{bottom:474.375000px;}
.y109{bottom:478.155000px;}
.y144{bottom:478.515000px;}
.y93{bottom:481.035000px;}
.y6b{bottom:485.895000px;}
.y130{bottom:487.515000px;}
.ybb{bottom:488.235000px;}
.y47{bottom:492.195000px;}
.y17{bottom:492.375000px;}
.yde{bottom:495.795000px;}
.y143{bottom:496.155000px;}
.y12f{bottom:505.155000px;}
.yba{bottom:506.595000px;}
.y92{bottom:507.675000px;}
.y46{bottom:509.835000px;}
.y108{bottom:513.435000px;}
.y12e{bottom:522.795000px;}
.yb9{bottom:525.135000px;}
.y16{bottom:529.275000px;}
.y6a{bottom:534.315000px;}
.y107{bottom:539.895000px;}
.y91{bottom:543.315000px;}
.ydd{bottom:544.035000px;}
.y45{bottom:545.295000px;}
.y15{bottom:546.915000px;}
.y12d{bottom:549.255000px;}
.y69{bottom:551.955000px;}
.y106{bottom:557.535000px;}
.y90{bottom:560.955000px;}
.yb8{bottom:561.495000px;}
.ydc{bottom:561.675000px;}
.y44{bottom:562.935000px;}
.y14{bottom:564.555000px;}
.y12c{bottom:566.895000px;}
.y68{bottom:569.415000px;}
.y105{bottom:575.175000px;}
.ydb{bottom:579.315000px;}
.y13{bottom:582.195000px;}
.y8f{bottom:587.415000px;}
.yb7{bottom:588.135000px;}
.y12b{bottom:593.535000px;}
.yda{bottom:596.955000px;}
.y43{bottom:598.575000px;}
.y12{bottom:599.655000px;}
.y104{bottom:601.635000px;}
.y67{bottom:605.055000px;}
.y12a{bottom:611.175000px;}
.yd9{bottom:614.415000px;}
.y42{bottom:616.215000px;}
.y11{bottom:617.295000px;}
.y8e{bottom:623.055000px;}
.yb6{bottom:623.775000px;}
.y103{bottom:628.275000px;}
.y41{bottom:633.675000px;}
.y10{bottom:634.935000px;}
.y129{bottom:637.635000px;}
.y66{bottom:640.515000px;}
.yb5{bottom:641.235000px;}
.y102{bottom:645.915000px;}
.y8d{bottom:649.515000px;}
.yd8{bottom:650.055000px;}
.yf{bottom:652.395000px;}
.y128{bottom:655.275000px;}
.y65{bottom:658.155000px;}
.yb4{bottom:659.595000px;}
.yd7{bottom:667.695000px;}
.y40{bottom:669.315000px;}
.ye{bottom:670.035000px;}
.y101{bottom:672.375000px;}
.yb3{bottom:678.135000px;}
.y127{bottom:681.915000px;}
.y8c{bottom:685.155000px;}
.y3f{bottom:686.955000px;}
.y100{bottom:690.045000px;}
.y64{bottom:693.645000px;}
.yb2{bottom:696.525000px;}
.y126{bottom:699.585000px;}
.y8b{bottom:702.825000px;}
.y3e{bottom:704.445000px;}
.yd{bottom:705.705000px;}
.yff{bottom:716.685000px;}
.y125{bottom:717.045000px;}
.y8a{bottom:720.465000px;}
.y3d{bottom:722.085000px;}
.yc{bottom:723.345000px;}
.y142{bottom:726.045000px;}
.y63{bottom:730.185000px;}
.yb1{bottom:733.065000px;}
.y89{bottom:738.105000px;}
.yb{bottom:740.805000px;}
.yfe{bottom:743.145000px;}
.y124{bottom:743.685000px;}
.y3c{bottom:757.545000px;}
.ya{bottom:758.445000px;}
.yfd{bottom:760.785000px;}
.y123{bottom:761.325000px;}
.y88{bottom:764.565000px;}
.yd6{bottom:764.745000px;}
.y62{bottom:765.825000px;}
.yb0{bottom:768.705000px;}
.y3b{bottom:775.185000px;}
.y122{bottom:778.785000px;}
.y9{bottom:785.265000px;}
.yaf{bottom:786.165000px;}
.yfc{bottom:787.425000px;}
.y141{bottom:787.785000px;}
.y61{bottom:792.645000px;}
.y3a{bottom:792.825000px;}
.y87{bottom:800.205000px;}
.yae{bottom:804.705000px;}
.yfb{bottom:805.065000px;}
.y121{bottom:805.425000px;}
.y39{bottom:810.465000px;}
.yd5{bottom:813.165000px;}
.yad{bottom:822.165000px;}
.y120{bottom:823.065000px;}
.y86{bottom:826.665000px;}
.yd4{bottom:830.805000px;}
.yfa{bottom:831.525000px;}
.y8{bottom:833.505000px;}
.y38{bottom:837.285000px;}
.yac{bottom:840.525000px;}
.y60{bottom:841.065000px;}
.yf9{bottom:849.165000px;}
.y11f{bottom:849.525000px;}
.y5f{bottom:858.705000px;}
.yab{bottom:858.885000px;}
.y85{bottom:862.305000px;}
.yd3{bottom:866.265000px;}
.y11e{bottom:867.165000px;}
.y7{bottom:869.325000px;}
.yf8{bottom:875.805000px;}
.y5e{bottom:876.165000px;}
.yaa{bottom:877.425000px;}
.yd2{bottom:883.905000px;}
.y11d{bottom:884.805000px;}
.y37{bottom:885.525000px;}
.y84{bottom:888.945000px;}
.yf7{bottom:893.445000px;}
.y5d{bottom:893.805000px;}
.ya9{bottom:895.785000px;}
.yd1{bottom:901.545000px;}
.y140{bottom:902.445000px;}
.y36{bottom:903.165000px;}
.y6{bottom:905.325000px;}
.y11c{bottom:911.265000px;}
.y5c{bottom:911.445000px;}
.ya8{bottom:914.145000px;}
.yf6{bottom:919.905000px;}
.y35{bottom:920.805000px;}
.y83{bottom:924.450000px;}
.y5b{bottom:928.950000px;}
.yd0{bottom:937.050000px;}
.yf5{bottom:937.590000px;}
.y34{bottom:938.490000px;}
.y5{bottom:941.370000px;}
.y82{bottom:942.090000px;}
.y11b{bottom:946.590000px;}
.ya7{bottom:950.730000px;}
.ycf{bottom:954.690000px;}
.y5a{bottom:955.590000px;}
.y33{bottom:955.950000px;}
.y81{bottom:959.730000px;}
.yf4{bottom:964.050000px;}
.y11a{bottom:973.050000px;}
.y32{bottom:973.590000px;}
.y4{bottom:977.550000px;}
.yce{bottom:981.330000px;}
.y80{bottom:986.370000px;}
.yf3{bottom:990.690000px;}
.y59{bottom:991.050000px;}
.y31{bottom:991.230000px;}
.yf2{bottom:1008.330000px;}
.y30{bottom:1008.690000px;}
.y3{bottom:1015.710000px;}
.ycd{bottom:1016.970000px;}
.y13f{bottom:1017.330000px;}
.y7f{bottom:1022.190000px;}
.ya6{bottom:1025.970000px;}
.y2f{bottom:1026.330000px;}
.ycc{bottom:1034.610000px;}
.yf1{bottom:1034.970000px;}
.ya5{bottom:1043.610000px;}
.y2e{bottom:1043.970000px;}
.yf0{bottom:1052.610000px;}
.ya4{bottom:1061.070000px;}
.y13e{bottom:1061.430000px;}
.y2d{bottom:1061.610000px;}
.ycb{bottom:1070.070000px;}
.y7e{bottom:1070.430000px;}
.ya3{bottom:1078.710000px;}
.y2c{bottom:1079.070000px;}
.yca{bottom:1087.710000px;}
.y7d{bottom:1088.070000px;}
.y2b{bottom:1096.710000px;}
.ya2{bottom:1105.170000px;}
.yc9{bottom:1105.350000px;}
.y7c{bottom:1105.710000px;}
.y2a{bottom:1114.350000px;}
.yef{bottom:1123.170000px;}
.y7b{bottom:1123.350000px;}
.y29{bottom:1140.810000px;}
.y27{bottom:1194.840000px;}
.h2{height:29.717578px;}
.hc{height:36.698203px;}
.h3{height:39.468516px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.hb{height:52.123500px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.ha{height:61.423863px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:71.639987px;}
.x6{left:95.075987px;}
.x5{left:98.675987px;}
.x9{left:110.555987px;}
.x7{left:122.075987px;}
.x8{left:149.075987px;}
.x2{left:202.349987px;}
.x3{left:791.249987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls53{letter-spacing:-0.326400pt;}
.ls5e{letter-spacing:-0.307733pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.256533pt;}
.ls73{letter-spacing:-0.251733pt;}
.ls35{letter-spacing:-0.201067pt;}
.ls6f{letter-spacing:-0.166400pt;}
.lsc{letter-spacing:-0.155733pt;}
.ls45{letter-spacing:-0.145067pt;}
.ls5d{letter-spacing:-0.140267pt;}
.ls63{letter-spacing:-0.132267pt;}
.ls69{letter-spacing:-0.127467pt;}
.ls49{letter-spacing:-0.114667pt;}
.ls4b{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls66{letter-spacing:-0.094933pt;}
.ls4d{letter-spacing:-0.092267pt;}
.ls65{letter-spacing:-0.084267pt;}
.ls48{letter-spacing:-0.083200pt;}
.ls47{letter-spacing:-0.077867pt;}
.ls10{letter-spacing:-0.047467pt;}
.ls30{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.046933pt;}
.ls31{letter-spacing:-0.046720pt;}
.ls12{letter-spacing:-0.034667pt;}
.ls2f{letter-spacing:-0.034560pt;}
.ls58{letter-spacing:-0.032000pt;}
.ls52{letter-spacing:-0.017173pt;}
.ls64{letter-spacing:-0.013440pt;}
.ls34{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.003584pt;}
.ls18{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.ls6b{letter-spacing:0.034560pt;}
.ls32{letter-spacing:0.044160pt;}
.ls50{letter-spacing:0.046080pt;}
.ls5{letter-spacing:0.053760pt;}
.ls36{letter-spacing:0.053867pt;}
.ls71{letter-spacing:0.056533pt;}
.ls17{letter-spacing:0.069333pt;}
.ls3e{letter-spacing:0.081067pt;}
.ls74{letter-spacing:0.107733pt;}
.ls38{letter-spacing:0.117867pt;}
.ls70{letter-spacing:0.138133pt;}
.ls21{letter-spacing:0.139733pt;}
.ls2b{letter-spacing:0.140160pt;}
.ls23{letter-spacing:0.147840pt;}
.ls0{letter-spacing:0.149760pt;}
.ls27{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.173333pt;}
.ls5a{letter-spacing:0.176000pt;}
.ls4c{letter-spacing:0.183467pt;}
.ls3b{letter-spacing:0.186133pt;}
.ls19{letter-spacing:0.188160pt;}
.ls2e{letter-spacing:0.188267pt;}
.ls33{letter-spacing:0.218667pt;}
.ls76{letter-spacing:0.221333pt;}
.ls5c{letter-spacing:0.227200pt;}
.ls1b{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.235733pt;}
.ls46{letter-spacing:0.245867pt;}
.ls3f{letter-spacing:0.254933pt;}
.ls41{letter-spacing:0.256000pt;}
.ls54{letter-spacing:0.274667pt;}
.lsb{letter-spacing:0.276267pt;}
.ls42{letter-spacing:0.284160pt;}
.ls5b{letter-spacing:0.292267pt;}
.ls29{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.303467pt;}
.ls59{letter-spacing:0.305067pt;}
.lsf{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.324267pt;}
.ls26{letter-spacing:0.325333pt;}
.ls67{letter-spacing:0.332267pt;}
.ls44{letter-spacing:0.338944pt;}
.ls37{letter-spacing:0.346667pt;}
.ls61{letter-spacing:0.444160pt;}
.ls13{letter-spacing:0.445333pt;}
.ls2c{letter-spacing:0.473600pt;}
.ls5f{letter-spacing:0.480000pt;}
.ls6a{letter-spacing:0.532267pt;}
.ls4a{letter-spacing:0.549333pt;}
.lsd{letter-spacing:0.592000pt;}
.ls57{letter-spacing:0.602667pt;}
.ls11{letter-spacing:0.608000pt;}
.ls3c{letter-spacing:0.650667pt;}
.ls39{letter-spacing:0.709333pt;}
.ls3a{letter-spacing:0.778667pt;}
.ls68{letter-spacing:0.821333pt;}
.ls62{letter-spacing:0.826667pt;}
.ls6d{letter-spacing:0.924160pt;}
.ls15{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.113600pt;}
.ls75{letter-spacing:1.114667pt;}
.ls1c{letter-spacing:1.753600pt;}
.ls1d{letter-spacing:2.393600pt;}
.ls2a{letter-spacing:3.033600pt;}
.ls1e{letter-spacing:3.673600pt;}
.ls1f{letter-spacing:4.313600pt;}
.ls20{letter-spacing:5.593600pt;}
.ls28{letter-spacing:6.873600pt;}
.ls6e{letter-spacing:8.793600pt;}
.ls4e{letter-spacing:10.713600pt;}
.ls60{letter-spacing:13.913600pt;}
.ls4{letter-spacing:15.833600pt;}
.ls6c{letter-spacing:16.473600pt;}
.ls22{letter-spacing:17.913600pt;}
.ls51{letter-spacing:31.952640pt;}
.ls56{letter-spacing:39.632640pt;}
.ls72{letter-spacing:51.033600pt;}
.ls43{letter-spacing:56.912640pt;}
.ls24{letter-spacing:57.680640pt;}
.ls1a{letter-spacing:63.312640pt;}
.ls3{letter-spacing:64.399360pt;}
.ls55{letter-spacing:69.712640pt;}
.ws3e{word-spacing:-53.248000pt;}
.ws19{word-spacing:-53.120000pt;}
.ws0{word-spacing:-34.560000pt;}
.ws3{word-spacing:-16.777067pt;}
.ws5{word-spacing:-13.229867pt;}
.ws4{word-spacing:-13.189333pt;}
.ws11{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.646400pt;}
.ws46{word-spacing:-12.513067pt;}
.ws4c{word-spacing:-12.507733pt;}
.ws27{word-spacing:-12.465067pt;}
.ws25{word-spacing:-12.395733pt;}
.ws2a{word-spacing:-12.337067pt;}
.wsd{word-spacing:-12.294400pt;}
.ws3d{word-spacing:-12.289067pt;}
.ws7{word-spacing:-12.278400pt;}
.ws35{word-spacing:-12.235733pt;}
.ws4e{word-spacing:-12.218667pt;}
.wsf{word-spacing:-12.131733pt;}
.ws23{word-spacing:-12.033067pt;}
.ws4b{word-spacing:-12.018667pt;}
.ws29{word-spacing:-12.011733pt;}
.ws2f{word-spacing:-12.010667pt;}
.wsb{word-spacing:-12.003733pt;}
.ws40{word-spacing:-11.991467pt;}
.ws42{word-spacing:-11.978667pt;}
.ws2d{word-spacing:-11.969493pt;}
.ws3c{word-spacing:-11.961067pt;}
.ws31{word-spacing:-11.932267pt;}
.ws43{word-spacing:-11.913600pt;}
.ws54{word-spacing:-11.907733pt;}
.ws1f{word-spacing:-11.905067pt;}
.ws17{word-spacing:-11.874667pt;}
.ws28{word-spacing:-11.872533pt;}
.ws37{word-spacing:-11.869867pt;}
.ws41{word-spacing:-11.862400pt;}
.ws2e{word-spacing:-11.859733pt;}
.ws26{word-spacing:-11.826133pt;}
.ws50{word-spacing:-11.824533pt;}
.ws24{word-spacing:-11.804267pt;}
.ws52{word-spacing:-11.794133pt;}
.ws2c{word-spacing:-11.767467pt;}
.ws15{word-spacing:-11.755733pt;}
.ws53{word-spacing:-11.742933pt;}
.ws1e{word-spacing:-11.730560pt;}
.ws4f{word-spacing:-11.720960pt;}
.ws39{word-spacing:-11.714560pt;}
.ws8{word-spacing:-11.698133pt;}
.ws18{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws20{word-spacing:-11.676800pt;}
.ws48{word-spacing:-11.672960pt;}
.ws3f{word-spacing:-11.654400pt;}
.ws1a{word-spacing:-11.651840pt;}
.wse{word-spacing:-11.651733pt;}
.ws1c{word-spacing:-11.639680pt;}
.ws9{word-spacing:-11.639467pt;}
.ws1b{word-spacing:-11.639040pt;}
.wsc{word-spacing:-11.638933pt;}
.ws32{word-spacing:-11.636693pt;}
.ws33{word-spacing:-11.631360pt;}
.ws49{word-spacing:-11.602133pt;}
.ws34{word-spacing:-11.599893pt;}
.ws38{word-spacing:-11.594133pt;}
.ws4a{word-spacing:-11.591467pt;}
.ws13{word-spacing:-11.590933pt;}
.ws36{word-spacing:-11.578667pt;}
.ws4d{word-spacing:-11.558933pt;}
.ws47{word-spacing:-11.554133pt;}
.ws44{word-spacing:-11.546133pt;}
.ws30{word-spacing:-11.541333pt;}
.ws6{word-spacing:-11.530667pt;}
.ws21{word-spacing:-11.485333pt;}
.ws51{word-spacing:-11.434667pt;}
.ws10{word-spacing:-11.429867pt;}
.ws3b{word-spacing:-11.388160pt;}
.ws45{word-spacing:-11.378667pt;}
.ws2b{word-spacing:-10.790400pt;}
.ws1{word-spacing:-8.580267pt;}
.ws2{word-spacing:-8.541333pt;}
.ws22{word-spacing:-7.657067pt;}
.ws1d{word-spacing:-7.656960pt;}
.ws3a{word-spacing:-7.614187pt;}
.ws14{word-spacing:-7.603200pt;}
.ws16{word-spacing:0.000000pt;}
._d{margin-left:-3.281706pt;}
._b{margin-left:-2.303360pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.900586pt;}
._2{width:1.901658pt;}
._8{width:3.083196pt;}
._f{width:4.096640pt;}
._5{width:5.661440pt;}
._4{width:7.327361pt;}
._3{width:8.296747pt;}
._11{width:9.276587pt;}
._e{width:10.797334pt;}
._13{width:12.712536pt;}
._12{width:14.137387pt;}
._c{width:15.091734pt;}
._9{width:16.730240pt;}
._a{width:17.689603pt;}
._10{width:18.861950pt;}
._17{width:20.590827pt;}
._7{width:21.682987pt;}
._6{width:22.875200pt;}
._16{width:25.322240pt;}
._1d{width:26.316480pt;}
._14{width:27.458880pt;}
._15{width:28.674347pt;}
._19{width:29.708163pt;}
._18{width:31.579307pt;}
._22{width:32.580588pt;}
._1b{width:49.215362pt;}
._1c{width:50.470827pt;}
._20{width:51.409703pt;}
._1f{width:52.319468pt;}
._1e{width:53.559467pt;}
._21{width:59.267523pt;}
._1a{width:97.169068pt;}
.fs0{font-size:34.560000pt;}
.fs8{font-size:34.688000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.280000pt;}
.y28{bottom:65.920000pt;}
.y1{bottom:90.240000pt;}
.y58{bottom:107.680000pt;}
.yee{bottom:110.240000pt;}
.y119{bottom:110.880000pt;}
.ya1{bottom:112.800000pt;}
.yed{bottom:125.920000pt;}
.y118{bottom:126.560000pt;}
.ya0{bottom:128.480000pt;}
.y13d{bottom:135.200000pt;}
.yc8{bottom:139.200000pt;}
.y57{bottom:139.360000pt;}
.y7a{bottom:141.120000pt;}
.y9f{bottom:144.000000pt;}
.yec{bottom:149.600000pt;}
.y117{bottom:150.080000pt;}
.y13c{bottom:150.880000pt;}
.yc7{bottom:154.880000pt;}
.y56{bottom:155.040000pt;}
.y79{bottom:156.800000pt;}
.y9e{bottom:159.680000pt;}
.y116{bottom:165.760000pt;}
.y26{bottom:167.200000pt;}
.y55{bottom:170.560000pt;}
.y78{bottom:172.480000pt;}
.yeb{bottom:173.120000pt;}
.y13b{bottom:174.560000pt;}
.y115{bottom:181.440000pt;}
.y25{bottom:182.880000pt;}
.y9d{bottom:183.200000pt;}
.y54{bottom:186.240000pt;}
.yc6{bottom:186.560000pt;}
.y13a{bottom:190.240000pt;}
.yea{bottom:196.800000pt;}
.y24{bottom:198.560000pt;}
.y53{bottom:201.946667pt;}
.yc5{bottom:202.266667pt;}
.y77{bottom:204.026667pt;}
.y114{bottom:204.986667pt;}
.y139{bottom:205.786667pt;}
.y23{bottom:214.106667pt;}
.y9c{bottom:214.906667pt;}
.y52{bottom:217.466667pt;}
.yc4{bottom:217.786667pt;}
.y76{bottom:219.706667pt;}
.ye9{bottom:220.506667pt;}
.y113{bottom:220.666667pt;}
.y138{bottom:229.466667pt;}
.y22{bottom:229.786667pt;}
.y9b{bottom:230.586667pt;}
.y51{bottom:233.146667pt;}
.y75{bottom:235.386667pt;}
.ye8{bottom:244.026667pt;}
.y112{bottom:244.346667pt;}
.y137{bottom:245.146667pt;}
.y21{bottom:245.466667pt;}
.y9a{bottom:246.266667pt;}
.yc3{bottom:249.466667pt;}
.y50{bottom:256.826667pt;}
.ye7{bottom:259.706667pt;}
.y111{bottom:260.026667pt;}
.y136{bottom:260.666667pt;}
.y20{bottom:261.146667pt;}
.y99{bottom:261.786667pt;}
.yc2{bottom:265.146667pt;}
.y74{bottom:266.906667pt;}
.y1f{bottom:276.666667pt;}
.y73{bottom:282.586667pt;}
.ye6{bottom:283.386667pt;}
.y110{bottom:283.546667pt;}
.y14b{bottom:284.026667pt;}
.y135{bottom:284.346667pt;}
.y98{bottom:285.466667pt;}
.y4f{bottom:288.346667pt;}
.yc1{bottom:288.666667pt;}
.y1e{bottom:292.346667pt;}
.y72{bottom:298.266667pt;}
.ye5{bottom:299.066667pt;}
.y10f{bottom:299.226667pt;}
.y14a{bottom:299.706667pt;}
.y134{bottom:300.026667pt;}
.y4e{bottom:304.026667pt;}
.y1d{bottom:308.026667pt;}
.y71{bottom:313.946667pt;}
.y97{bottom:317.146667pt;}
.y4d{bottom:319.706667pt;}
.yc0{bottom:320.346667pt;}
.ye4{bottom:322.586667pt;}
.y10e{bottom:322.906667pt;}
.y149{bottom:323.226667pt;}
.y1c{bottom:323.546667pt;}
.y4c{bottom:335.386667pt;}
.ybf{bottom:336.026667pt;}
.ye3{bottom:338.266667pt;}
.y10d{bottom:338.586667pt;}
.y148{bottom:338.906667pt;}
.y1b{bottom:339.226667pt;}
.y96{bottom:340.666667pt;}
.y70{bottom:345.466667pt;}
.y4b{bottom:350.906667pt;}
.y1a{bottom:354.906667pt;}
.ybe{bottom:359.706667pt;}
.y6f{bottom:361.146667pt;}
.ye2{bottom:361.946667pt;}
.y10c{bottom:362.106667pt;}
.y147{bottom:362.426667pt;}
.y4a{bottom:366.586667pt;}
.y95{bottom:372.346667pt;}
.y6e{bottom:376.826667pt;}
.ye1{bottom:377.626667pt;}
.y10b{bottom:377.786667pt;}
.y133{bottom:378.426667pt;}
.y19{bottom:378.586667pt;}
.y49{bottom:382.266667pt;}
.y146{bottom:386.106667pt;}
.y6d{bottom:392.506667pt;}
.y132{bottom:394.106667pt;}
.y94{bottom:396.026667pt;}
.ye0{bottom:401.146667pt;}
.y10a{bottom:401.306667pt;}
.y145{bottom:401.786667pt;}
.y48{bottom:405.786667pt;}
.ybd{bottom:406.146667pt;}
.y6c{bottom:408.066667pt;}
.y131{bottom:409.826667pt;}
.ydf{bottom:416.866667pt;}
.ybc{bottom:418.466667pt;}
.y18{bottom:421.666667pt;}
.y109{bottom:425.026667pt;}
.y144{bottom:425.346667pt;}
.y93{bottom:427.586667pt;}
.y6b{bottom:431.906667pt;}
.y130{bottom:433.346667pt;}
.ybb{bottom:433.986667pt;}
.y47{bottom:437.506667pt;}
.y17{bottom:437.666667pt;}
.yde{bottom:440.706667pt;}
.y143{bottom:441.026667pt;}
.y12f{bottom:449.026667pt;}
.yba{bottom:450.306667pt;}
.y92{bottom:451.266667pt;}
.y46{bottom:453.186667pt;}
.y108{bottom:456.386667pt;}
.y12e{bottom:464.706667pt;}
.yb9{bottom:466.786667pt;}
.y16{bottom:470.466667pt;}
.y6a{bottom:474.946667pt;}
.y107{bottom:479.906667pt;}
.y91{bottom:482.946667pt;}
.ydd{bottom:483.586667pt;}
.y45{bottom:484.706667pt;}
.y15{bottom:486.146667pt;}
.y12d{bottom:488.226667pt;}
.y69{bottom:490.626667pt;}
.y106{bottom:495.586667pt;}
.y90{bottom:498.626667pt;}
.yb8{bottom:499.106667pt;}
.ydc{bottom:499.266667pt;}
.y44{bottom:500.386667pt;}
.y14{bottom:501.826667pt;}
.y12c{bottom:503.906667pt;}
.y68{bottom:506.146667pt;}
.y105{bottom:511.266667pt;}
.ydb{bottom:514.946667pt;}
.y13{bottom:517.506667pt;}
.y8f{bottom:522.146667pt;}
.yb7{bottom:522.786667pt;}
.y12b{bottom:527.586667pt;}
.yda{bottom:530.626667pt;}
.y43{bottom:532.066667pt;}
.y12{bottom:533.026667pt;}
.y104{bottom:534.786667pt;}
.y67{bottom:537.826667pt;}
.y12a{bottom:543.266667pt;}
.yd9{bottom:546.146667pt;}
.y42{bottom:547.746667pt;}
.y11{bottom:548.706667pt;}
.y8e{bottom:553.826667pt;}
.yb6{bottom:554.466667pt;}
.y103{bottom:558.466667pt;}
.y41{bottom:563.266667pt;}
.y10{bottom:564.386667pt;}
.y129{bottom:566.786667pt;}
.y66{bottom:569.346667pt;}
.yb5{bottom:569.986667pt;}
.y102{bottom:574.146667pt;}
.y8d{bottom:577.346667pt;}
.yd8{bottom:577.826667pt;}
.yf{bottom:579.906667pt;}
.y128{bottom:582.466667pt;}
.y65{bottom:585.026667pt;}
.yb4{bottom:586.306667pt;}
.yd7{bottom:593.506667pt;}
.y40{bottom:594.946667pt;}
.ye{bottom:595.586667pt;}
.y101{bottom:597.666667pt;}
.yb3{bottom:602.786667pt;}
.y127{bottom:606.146667pt;}
.y8c{bottom:609.026667pt;}
.y3f{bottom:610.626667pt;}
.y100{bottom:613.373333pt;}
.y64{bottom:616.573333pt;}
.yb2{bottom:619.133333pt;}
.y126{bottom:621.853333pt;}
.y8b{bottom:624.733333pt;}
.y3e{bottom:626.173333pt;}
.yd{bottom:627.293333pt;}
.yff{bottom:637.053333pt;}
.y125{bottom:637.373333pt;}
.y8a{bottom:640.413333pt;}
.y3d{bottom:641.853333pt;}
.yc{bottom:642.973333pt;}
.y142{bottom:645.373333pt;}
.y63{bottom:649.053333pt;}
.yb1{bottom:651.613333pt;}
.y89{bottom:656.093333pt;}
.yb{bottom:658.493333pt;}
.yfe{bottom:660.573333pt;}
.y124{bottom:661.053333pt;}
.y3c{bottom:673.373333pt;}
.ya{bottom:674.173333pt;}
.yfd{bottom:676.253333pt;}
.y123{bottom:676.733333pt;}
.y88{bottom:679.613333pt;}
.yd6{bottom:679.773333pt;}
.y62{bottom:680.733333pt;}
.yb0{bottom:683.293333pt;}
.y3b{bottom:689.053333pt;}
.y122{bottom:692.253333pt;}
.y9{bottom:698.013333pt;}
.yaf{bottom:698.813333pt;}
.yfc{bottom:699.933333pt;}
.y141{bottom:700.253333pt;}
.y61{bottom:704.573333pt;}
.y3a{bottom:704.733333pt;}
.y87{bottom:711.293333pt;}
.yae{bottom:715.293333pt;}
.yfb{bottom:715.613333pt;}
.y121{bottom:715.933333pt;}
.y39{bottom:720.413333pt;}
.yd5{bottom:722.813333pt;}
.yad{bottom:730.813333pt;}
.y120{bottom:731.613333pt;}
.y86{bottom:734.813333pt;}
.yd4{bottom:738.493333pt;}
.yfa{bottom:739.133333pt;}
.y8{bottom:740.893333pt;}
.y38{bottom:744.253333pt;}
.yac{bottom:747.133333pt;}
.y60{bottom:747.613333pt;}
.yf9{bottom:754.813333pt;}
.y11f{bottom:755.133333pt;}
.y5f{bottom:763.293333pt;}
.yab{bottom:763.453333pt;}
.y85{bottom:766.493333pt;}
.yd3{bottom:770.013333pt;}
.y11e{bottom:770.813333pt;}
.y7{bottom:772.733333pt;}
.yf8{bottom:778.493333pt;}
.y5e{bottom:778.813333pt;}
.yaa{bottom:779.933333pt;}
.yd2{bottom:785.693333pt;}
.y11d{bottom:786.493333pt;}
.y37{bottom:787.133333pt;}
.y84{bottom:790.173333pt;}
.yf7{bottom:794.173333pt;}
.y5d{bottom:794.493333pt;}
.ya9{bottom:796.253333pt;}
.yd1{bottom:801.373333pt;}
.y140{bottom:802.173333pt;}
.y36{bottom:802.813333pt;}
.y6{bottom:804.733333pt;}
.y11c{bottom:810.013333pt;}
.y5c{bottom:810.173333pt;}
.ya8{bottom:812.573333pt;}
.yf6{bottom:817.693333pt;}
.y35{bottom:818.493333pt;}
.y83{bottom:821.733333pt;}
.y5b{bottom:825.733333pt;}
.yd0{bottom:832.933333pt;}
.yf5{bottom:833.413333pt;}
.y34{bottom:834.213333pt;}
.y5{bottom:836.773333pt;}
.y82{bottom:837.413333pt;}
.y11b{bottom:841.413333pt;}
.ya7{bottom:845.093333pt;}
.ycf{bottom:848.613333pt;}
.y5a{bottom:849.413333pt;}
.y33{bottom:849.733333pt;}
.y81{bottom:853.093333pt;}
.yf4{bottom:856.933333pt;}
.y11a{bottom:864.933333pt;}
.y32{bottom:865.413333pt;}
.y4{bottom:868.933333pt;}
.yce{bottom:872.293333pt;}
.y80{bottom:876.773333pt;}
.yf3{bottom:880.613333pt;}
.y59{bottom:880.933333pt;}
.y31{bottom:881.093333pt;}
.yf2{bottom:896.293333pt;}
.y30{bottom:896.613333pt;}
.y3{bottom:902.853333pt;}
.ycd{bottom:903.973333pt;}
.y13f{bottom:904.293333pt;}
.y7f{bottom:908.613333pt;}
.ya6{bottom:911.973333pt;}
.y2f{bottom:912.293333pt;}
.ycc{bottom:919.653333pt;}
.yf1{bottom:919.973333pt;}
.ya5{bottom:927.653333pt;}
.y2e{bottom:927.973333pt;}
.yf0{bottom:935.653333pt;}
.ya4{bottom:943.173333pt;}
.y13e{bottom:943.493333pt;}
.y2d{bottom:943.653333pt;}
.ycb{bottom:951.173333pt;}
.y7e{bottom:951.493333pt;}
.ya3{bottom:958.853333pt;}
.y2c{bottom:959.173333pt;}
.yca{bottom:966.853333pt;}
.y7d{bottom:967.173333pt;}
.y2b{bottom:974.853333pt;}
.ya2{bottom:982.373333pt;}
.yc9{bottom:982.533333pt;}
.y7c{bottom:982.853333pt;}
.y2a{bottom:990.533333pt;}
.yef{bottom:998.373333pt;}
.y7b{bottom:998.533333pt;}
.y29{bottom:1014.053333pt;}
.y27{bottom:1062.080000pt;}
.h2{height:26.415625pt;}
.hc{height:32.620625pt;}
.h3{height:35.083125pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.hb{height:46.332000pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.ha{height:54.598989pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:63.679988pt;}
.x6{left:84.511988pt;}
.x5{left:87.711988pt;}
.x9{left:98.271988pt;}
.x7{left:108.511988pt;}
.x8{left:132.511988pt;}
.x2{left:179.866655pt;}
.x3{left:703.333322pt;}
}




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