
    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_ab12df5bc7ffe44d88fed38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_c9061ec83c0dba098283de1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_46c63261ce53ef5b527a0471.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b525d65a253b6cfcf8a79894.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.338867;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_7d17bbf4e7712638e2b7f783.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.352051;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_e4cefdbfd1b6d38e806d1cbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_65d1d6d4815228e224d87a53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.801000;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_3f94521808414407bfca23eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_745b7a76b7b14bb9a034072b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912109;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_c376bbc59f57e42b81a2d26d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_73301d5e62093771669b624d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7488310212b46701664e6dcf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.378906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_25345d1446f37e7b500167d9.woff2')format("woff");}.fff{font-family:fff;line-height:1.352051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c2cb0e2a8951c8b3416ca1b6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.038086;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:ff11;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.035156;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:ff12;src:url('chunks/assets/font_f1bb120ab0bcf8e7a13b3403.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.287109;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:ff13;src:url('chunks/assets/font_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003906;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:ff14;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003906;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:ff15;src:url('chunks/assets/font_e6522cbcffc00a5b8143c03c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.v4{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.600000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:18.000000px;}
.ls27{letter-spacing:-19.920000px;}
.ls1a{letter-spacing:-2.136000px;}
.ls5e{letter-spacing:-1.716000px;}
.ls51{letter-spacing:-1.338000px;}
.ls55{letter-spacing:-1.296000px;}
.ls4b{letter-spacing:-1.266000px;}
.ls2e{letter-spacing:-0.894000px;}
.ls2c{letter-spacing:-0.786000px;}
.ls10{letter-spacing:-0.726000px;}
.ls54{letter-spacing:-0.460800px;}
.ls4f{letter-spacing:-0.453000px;}
.ls5b{letter-spacing:-0.450600px;}
.ls5a{letter-spacing:-0.417600px;}
.ls5c{letter-spacing:-0.370800px;}
.ls1c{letter-spacing:-0.367800px;}
.lsf{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.240600px;}
.ls50{letter-spacing:-0.223200px;}
.ls29{letter-spacing:-0.181200px;}
.ls53{letter-spacing:-0.163200px;}
.ls2a{letter-spacing:-0.151800px;}
.ls4a{letter-spacing:-0.142800px;}
.ls52{letter-spacing:-0.120000px;}
.ls48{letter-spacing:-0.081600px;}
.ls56{letter-spacing:-0.065400px;}
.ls65{letter-spacing:-0.060600px;}
.ls64{letter-spacing:-0.052560px;}
.ls11{letter-spacing:-0.007920px;}
.lsc{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.015840px;}
.ls4e{letter-spacing:0.024480px;}
.ls2{letter-spacing:0.025920px;}
.ls26{letter-spacing:0.043200px;}
.ls61{letter-spacing:0.044640px;}
.ls60{letter-spacing:0.050400px;}
.ls0{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.064800px;}
.ls4d{letter-spacing:0.071400px;}
.ls13{letter-spacing:0.072480px;}
.ls57{letter-spacing:0.093000px;}
.ls41{letter-spacing:0.103680px;}
.ls59{letter-spacing:0.103800px;}
.ls35{letter-spacing:0.119520px;}
.ls2d{letter-spacing:0.129000px;}
.ls31{letter-spacing:0.147000px;}
.ls28{letter-spacing:0.150000px;}
.ls46{letter-spacing:0.172800px;}
.ls3{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.185760px;}
.ls58{letter-spacing:0.187800px;}
.ls7{letter-spacing:0.189600px;}
.ls49{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.239040px;}
.ls30{letter-spacing:0.259200px;}
.lsd{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.267000px;}
.ls4c{letter-spacing:0.269400px;}
.ls5f{letter-spacing:0.297600px;}
.ls36{letter-spacing:0.302400px;}
.ls14{letter-spacing:0.333120px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.364800px;}
.ls25{letter-spacing:0.365760px;}
.lsb{letter-spacing:0.390960px;}
.ls22{letter-spacing:0.403680px;}
.ls1b{letter-spacing:0.714000px;}
.ls63{letter-spacing:0.864000px;}
.ls6{letter-spacing:1.506240px;}
.ls44{letter-spacing:1.625760px;}
.ls15{letter-spacing:3.785760px;}
.ls34{letter-spacing:4.505760px;}
.ls20{letter-spacing:5.225760px;}
.ls1d{letter-spacing:5.945760px;}
.ls17{letter-spacing:6.665760px;}
.ls39{letter-spacing:7.385760px;}
.ls37{letter-spacing:8.105760px;}
.ls2f{letter-spacing:9.005760px;}
.ls12{letter-spacing:9.360000px;}
.ls3a{letter-spacing:9.545760px;}
.ls21{letter-spacing:9.725760px;}
.ls3b{letter-spacing:10.265760px;}
.ls18{letter-spacing:10.985760px;}
.ls5{letter-spacing:11.586240px;}
.ls47{letter-spacing:11.705760px;}
.ls62{letter-spacing:13.626720px;}
.ls43{letter-spacing:13.865760px;}
.ls1e{letter-spacing:14.009760px;}
.ls42{letter-spacing:14.045760px;}
.ls32{letter-spacing:14.585760px;}
.ls40{letter-spacing:15.305760px;}
.ls3c{letter-spacing:16.025760px;}
.ls16{letter-spacing:16.745760px;}
.ls3f{letter-spacing:17.465760px;}
.ls45{letter-spacing:18.905760px;}
.ls3e{letter-spacing:23.225760px;}
.ls23{letter-spacing:23.945760px;}
.ls38{letter-spacing:26.105760px;}
.lsa{letter-spacing:37.386720px;}
.ls9{letter-spacing:41.868000px;}
.ls3d{letter-spacing:45.545760px;}
.ls19{letter-spacing:46.026720px;}
.ls4{letter-spacing:912.540000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.wsb{word-spacing:-54.000000px;}
.ws19{word-spacing:-48.240000px;}
.ws3{word-spacing:-29.808000px;}
.ws6{word-spacing:-18.175680px;}
.ws4{word-spacing:-18.149760px;}
.ws41{word-spacing:-17.238240px;}
.ws24{word-spacing:-16.691760px;}
.ws2a{word-spacing:-16.676640px;}
.ws27{word-spacing:-16.643640px;}
.ws30{word-spacing:-16.641240px;}
.ws2c{word-spacing:-16.633440px;}
.wsa{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.563840px;}
.ws3a{word-spacing:-16.562040px;}
.ws40{word-spacing:-16.547040px;}
.ws16{word-spacing:-16.524240px;}
.ws2d{word-spacing:-16.521240px;}
.ws8{word-spacing:-16.493760px;}
.ws37{word-spacing:-16.467240px;}
.ws28{word-spacing:-16.445640px;}
.ws29{word-spacing:-16.398720px;}
.ws3e{word-spacing:-16.390080px;}
.ws10{word-spacing:-16.374240px;}
.ws25{word-spacing:-16.350960px;}
.ws36{word-spacing:-16.308840px;}
.ws31{word-spacing:-16.254240px;}
.ws32{word-spacing:-16.211040px;}
.ws2e{word-spacing:-16.151040px;}
.ws14{word-spacing:-16.006440px;}
.ws3d{word-spacing:-16.003440px;}
.ws3b{word-spacing:-15.956640px;}
.ws3c{word-spacing:-15.923640px;}
.ws2b{word-spacing:-15.921240px;}
.ws34{word-spacing:-15.913440px;}
.ws1{word-spacing:-15.300000px;}
.ws26{word-spacing:-15.108240px;}
.ws35{word-spacing:-15.078240px;}
.ws2f{word-spacing:-15.036240px;}
.ws0{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws3f{word-spacing:-14.658240px;}
.ws12{word-spacing:-14.238240px;}
.wsf{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.346760px;}
.ws17{word-spacing:-13.314240px;}
.ws1c{word-spacing:-13.217760px;}
.wsd{word-spacing:-13.140000px;}
.ws23{word-spacing:-13.136160px;}
.ws1d{word-spacing:-13.065960px;}
.ws1e{word-spacing:-12.977160px;}
.ws20{word-spacing:-12.431760px;}
.ws1b{word-spacing:-12.420000px;}
.ws22{word-spacing:-12.323760px;}
.ws2{word-spacing:-12.060000px;}
.ws1a{word-spacing:-11.878800px;}
.ws1f{word-spacing:-1.110240px;}
.ws18{word-spacing:-0.048240px;}
.ws11{word-spacing:0.000000px;}
.ws33{word-spacing:3.705120px;}
.ws13{word-spacing:4.065600px;}
.ws5{word-spacing:4.106880px;}
.ws39{word-spacing:42.932880px;}
.ws15{word-spacing:43.652880px;}
.ws38{word-spacing:44.372880px;}
._8{margin-left:-35.532000px;}
._c{margin-left:-22.808880px;}
._14{margin-left:-19.900080px;}
._29{margin-left:-18.770400px;}
._1a{margin-left:-17.491920px;}
._a{margin-left:-12.991440px;}
._2e{margin-left:-11.378880px;}
._17{margin-left:-10.147440px;}
._7{margin-left:-8.640000px;}
._d{margin-left:-5.923920px;}
._1d{margin-left:-4.842720px;}
._4{margin-left:-3.672000px;}
._12{margin-left:-2.172480px;}
._3{margin-left:-1.163760px;}
._0{width:1.135440px;}
._10{width:2.287440px;}
._5{width:3.456000px;}
._13{width:4.656480px;}
._e{width:5.696640px;}
._16{width:6.739200px;}
._6{width:8.640000px;}
._25{width:9.682800px;}
._18{width:10.756800px;}
._b{width:12.188160px;}
._22{width:13.362960px;}
._21{width:15.150720px;}
._20{width:17.460000px;}
._11{width:18.553920px;}
._f{width:19.661040px;}
._15{width:21.384960px;}
._23{width:22.589280px;}
._26{width:23.724720px;}
._28{width:25.338240px;}
._1b{width:27.131040px;}
._1c{width:28.400400px;}
._1f{width:30.071280px;}
._1e{width:31.079760px;}
._2b{width:33.846000px;}
._9{width:35.208000px;}
._24{width:37.152000px;}
._19{width:38.934000px;}
._2a{width:42.310080px;}
._2d{width:45.201360px;}
._2c{width:46.488240px;}
._2f{width:47.591520px;}
._30{width:88.509120px;}
._31{width:90.154800px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._27{width:353.006880px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:23.760000px;}
.fs4{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.yf9{bottom:2.700000px;}
.yff{bottom:2.880000px;}
.y35{bottom:3.060000px;}
.y33{bottom:3.240000px;}
.y7d{bottom:3.600000px;}
.y14{bottom:3.780000px;}
.y74{bottom:5.220000px;}
.y75{bottom:5.760000px;}
.y15{bottom:5.940000px;}
.y80{bottom:7.920000px;}
.y78{bottom:10.074000px;}
.y4{bottom:10.476000px;}
.y9{bottom:14.040000px;}
.y5{bottom:17.136000px;}
.yfe{bottom:17.460000px;}
.y2c{bottom:19.440000px;}
.y32{bottom:20.520000px;}
.yfd{bottom:32.220000px;}
.y7{bottom:35.460000px;}
.y2b{bottom:35.820000px;}
.y31{bottom:38.340000px;}
.yfc{bottom:46.800000px;}
.y2a{bottom:51.330000px;}
.y30{bottom:57.960000px;}
.y3{bottom:58.140000px;}
.yfb{bottom:61.560000px;}
.y29{bottom:66.810000px;}
.y2f{bottom:75.960000px;}
.y28{bottom:82.470000px;}
.y27{bottom:97.950000px;}
.y34{bottom:106.245000px;}
.y6f{bottom:112.716000px;}
.y26{bottom:113.430000px;}
.yaf{bottom:116.856000px;}
.yf7{bottom:117.216000px;}
.y40{bottom:119.376000px;}
.y79{bottom:120.456000px;}
.y23{bottom:124.245000px;}
.y25{bottom:128.910000px;}
.y6e{bottom:132.696000px;}
.y3f{bottom:134.856000px;}
.ycd{bottom:136.656000px;}
.yae{bottom:136.836000px;}
.yf6{bottom:137.196000px;}
.y22{bottom:140.085000px;}
.y77{bottom:142.056000px;}
.y3e{bottom:150.510000px;}
.y6d{bottom:152.670000px;}
.yad{bottom:156.810000px;}
.yf5{bottom:157.170000px;}
.ycc{bottom:159.690000px;}
.y21{bottom:160.065000px;}
.y76{bottom:162.930000px;}
.y3d{bottom:165.990000px;}
.y6c{bottom:172.650000px;}
.yac{bottom:176.790000px;}
.yf4{bottom:177.150000px;}
.y20{bottom:180.045000px;}
.y3c{bottom:181.470000px;}
.ycb{bottom:182.550000px;}
.y73{bottom:183.810000px;}
.y6b{bottom:192.630000px;}
.yab{bottom:196.770000px;}
.y3b{bottom:196.950000px;}
.y1f{bottom:200.025000px;}
.yca{bottom:205.590000px;}
.y72{bottom:207.030000px;}
.y3a{bottom:212.610000px;}
.yaa{bottom:216.570000px;}
.yf3{bottom:216.930000px;}
.y71{bottom:219.810000px;}
.y1e{bottom:220.005000px;}
.y39{bottom:228.090000px;}
.yc9{bottom:228.450000px;}
.y6a{bottom:232.410000px;}
.y70{bottom:235.830000px;}
.ya9{bottom:236.550000px;}
.yf2{bottom:236.910000px;}
.y1d{bottom:239.805000px;}
.y38{bottom:243.570000px;}
.yc8{bottom:251.490000px;}
.y69{bottom:252.390000px;}
.ya8{bottom:256.530000px;}
.yf1{bottom:256.890000px;}
.y1c{bottom:259.785000px;}
.y37{bottom:259.950000px;}
.y68{bottom:272.370000px;}
.yc7{bottom:274.350000px;}
.ya7{bottom:276.510000px;}
.yf0{bottom:276.870000px;}
.y36{bottom:279.030000px;}
.y1b{bottom:279.795000px;}
.y16{bottom:292.350000px;}
.ya6{bottom:296.490000px;}
.yef{bottom:296.850000px;}
.yc6{bottom:297.210000px;}
.y1a{bottom:299.775000px;}
.y67{bottom:312.330000px;}
.ya5{bottom:316.470000px;}
.yee{bottom:316.830000px;}
.y19{bottom:319.755000px;}
.yc5{bottom:320.295000px;}
.y66{bottom:332.355000px;}
.ya4{bottom:336.315000px;}
.yed{bottom:336.675000px;}
.y18{bottom:339.735000px;}
.yc4{bottom:343.155000px;}
.y65{bottom:352.155000px;}
.ya3{bottom:356.295000px;}
.yec{bottom:356.655000px;}
.y17{bottom:358.995000px;}
.yc3{bottom:366.195000px;}
.y64{bottom:372.135000px;}
.ya2{bottom:376.275000px;}
.yeb{bottom:376.635000px;}
.yc2{bottom:389.055000px;}
.y63{bottom:392.115000px;}
.ya1{bottom:396.255000px;}
.yea{bottom:396.615000px;}
.y2e{bottom:411.915000px;}
.y62{bottom:412.095000px;}
.ya0{bottom:416.235000px;}
.ye9{bottom:416.595000px;}
.y61{bottom:432.075000px;}
.yc1{bottom:434.955000px;}
.y9f{bottom:436.215000px;}
.ye8{bottom:436.575000px;}
.y60{bottom:452.055000px;}
.y9e{bottom:456.015000px;}
.ye7{bottom:456.375000px;}
.yc0{bottom:457.995000px;}
.y5f{bottom:471.855000px;}
.y9d{bottom:475.995000px;}
.ye6{bottom:476.355000px;}
.ybf{bottom:480.855000px;}
.y5e{bottom:491.835000px;}
.y9c{bottom:495.975000px;}
.ye5{bottom:496.335000px;}
.y2d{bottom:503.175000px;}
.ybe{bottom:503.895000px;}
.y5d{bottom:511.815000px;}
.y9b{bottom:515.955000px;}
.ye4{bottom:516.315000px;}
.y24{bottom:523.875000px;}
.ybd{bottom:526.755000px;}
.y5c{bottom:531.795000px;}
.y9a{bottom:535.935000px;}
.ye3{bottom:536.295000px;}
.ybc{bottom:549.795000px;}
.y5b{bottom:551.775000px;}
.y99{bottom:555.915000px;}
.ye2{bottom:556.275000px;}
.y5a{bottom:571.785000px;}
.ybb{bottom:572.685000px;}
.y98{bottom:575.745000px;}
.ye1{bottom:576.105000px;}
.y59{bottom:591.765000px;}
.y97{bottom:595.725000px;}
.ye0{bottom:596.085000px;}
.y58{bottom:611.565000px;}
.y96{bottom:615.705000px;}
.ydf{bottom:616.065000px;}
.yba{bottom:618.585000px;}
.y57{bottom:631.545000px;}
.y95{bottom:635.685000px;}
.yde{bottom:636.045000px;}
.yb9{bottom:641.445000px;}
.y56{bottom:651.525000px;}
.y94{bottom:655.665000px;}
.ydd{bottom:656.025000px;}
.yb8{bottom:664.485000px;}
.y13{bottom:666.105000px;}
.y55{bottom:671.505000px;}
.y93{bottom:675.645000px;}
.ydc{bottom:676.005000px;}
.yb7{bottom:687.345000px;}
.y54{bottom:691.485000px;}
.y92{bottom:695.625000px;}
.ydb{bottom:695.805000px;}
.y12{bottom:704.265000px;}
.yb6{bottom:710.385000px;}
.y53{bottom:711.465000px;}
.yfa{bottom:712.725000px;}
.y91{bottom:715.425000px;}
.y11{bottom:726.225000px;}
.y52{bottom:731.265000px;}
.yb5{bottom:733.245000px;}
.y90{bottom:735.405000px;}
.y51{bottom:751.245000px;}
.y8f{bottom:755.385000px;}
.y10{bottom:755.565000px;}
.yb4{bottom:756.285000px;}
.y50{bottom:771.225000px;}
.y8e{bottom:775.365000px;}
.yf{bottom:777.525000px;}
.yb3{bottom:779.145000px;}
.yf8{bottom:786.885000px;}
.y4f{bottom:791.205000px;}
.y8d{bottom:795.345000px;}
.ye{bottom:802.005000px;}
.yb2{bottom:802.185000px;}
.y4e{bottom:811.185000px;}
.y8c{bottom:815.325000px;}
.yda{bottom:822.210000px;}
.yb1{bottom:825.090000px;}
.yd{bottom:830.490000px;}
.y4d{bottom:831.210000px;}
.y8b{bottom:835.170000px;}
.yd9{bottom:842.190000px;}
.yb0{bottom:848.130000px;}
.y4c{bottom:851.010000px;}
.y8a{bottom:854.430000px;}
.yd8{bottom:861.990000px;}
.yc{bottom:866.490000px;}
.y89{bottom:870.450000px;}
.y4b{bottom:870.990000px;}
.yd7{bottom:881.970000px;}
.y88{bottom:884.130000px;}
.y4a{bottom:890.970000px;}
.y87{bottom:900.870000px;}
.yb{bottom:901.410000px;}
.yd6{bottom:901.950000px;}
.y49{bottom:910.950000px;}
.y86{bottom:917.430000px;}
.yd5{bottom:921.930000px;}
.ya{bottom:930.210000px;}
.y48{bottom:930.930000px;}
.y85{bottom:936.510000px;}
.yd4{bottom:941.910000px;}
.y8{bottom:945.510000px;}
.y84{bottom:949.290000px;}
.y47{bottom:950.910000px;}
.yd3{bottom:961.890000px;}
.y83{bottom:967.110000px;}
.y46{bottom:970.710000px;}
.y82{bottom:978.990000px;}
.yd2{bottom:981.690000px;}
.y45{bottom:990.690000px;}
.y81{bottom:995.010000px;}
.yd1{bottom:1001.670000px;}
.y7f{bottom:1008.690000px;}
.y44{bottom:1010.670000px;}
.yd0{bottom:1024.710000px;}
.y7e{bottom:1025.430000px;}
.y43{bottom:1030.650000px;}
.y7c{bottom:1041.990000px;}
.ycf{bottom:1047.570000px;}
.y42{bottom:1050.630000px;}
.y7b{bottom:1061.070000px;}
.yce{bottom:1070.460000px;}
.y41{bottom:1070.640000px;}
.y7a{bottom:1073.880000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h2b{height:14.580000px;}
.h27{height:15.840000px;}
.h26{height:16.020000px;}
.h11{height:19.980000px;}
.h21{height:20.160000px;}
.h20{height:26.648438px;}
.h3{height:31.716000px;}
.h29{height:32.976562px;}
.h25{height:33.683203px;}
.h23{height:34.036523px;}
.h2e{height:35.694141px;}
.h1e{height:35.708906px;}
.h2c{height:36.068555px;}
.h28{height:36.227109px;}
.h1b{height:37.705078px;}
.h1a{height:38.100586px;}
.h6{height:39.336328px;}
.h16{height:39.999023px;}
.h4{height:41.726953px;}
.h12{height:42.164648px;}
.h2a{height:44.236406px;}
.h17{height:44.265586px;}
.h1c{height:44.878359px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h14{height:47.867760px;}
.h24{height:47.980898px;}
.h22{height:49.394180px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.h1f{height:52.055859px;}
.h5{height:58.271484px;}
.h10{height:64.487109px;}
.h1d{height:65.946094px;}
.h2d{height:73.440000px;}
.hf{height:75.410156px;}
.ha{height:76.201172px;}
.hd{height:77.695312px;}
.he{height:79.945312px;}
.hc{height:86.508000px;}
.h18{height:90.360000px;}
.hb{height:116.542969px;}
.h19{height:118.836000px;}
.h15{height:141.516000px;}
.h7{height:153.930000px;}
.h13{height:373.035000px;}
.h0{height:1188.000000px;}
.we{width:28.260000px;}
.w14{width:28.440000px;}
.w10{width:37.440000px;}
.w2{width:39.096000px;}
.w15{width:45.540000px;}
.wf{width:47.160000px;}
.w11{width:57.636000px;}
.w16{width:59.076000px;}
.wb{width:73.800000px;}
.w9{width:84.240000px;}
.wa{width:84.276000px;}
.w8{width:95.040000px;}
.w12{width:100.620000px;}
.w17{width:105.480000px;}
.wd{width:111.456000px;}
.w13{width:112.896000px;}
.w7{width:151.410000px;}
.wc{width:151.950000px;}
.w6{width:220.170000px;}
.w18{width:358.230000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x29{left:-6.840014px;}
.x0{left:0.000000px;}
.xf{left:6.480000px;}
.x3{left:8.460000px;}
.x2e{left:9.720000px;}
.x31{left:10.980000px;}
.x3b{left:12.240000px;}
.x26{left:14.400000px;}
.x3a{left:16.020000px;}
.x34{left:18.225000px;}
.xe{left:19.980000px;}
.x22{left:25.914000px;}
.x12{left:27.360000px;}
.x24{left:28.440000px;}
.x3c{left:29.565000px;}
.x25{left:31.530000px;}
.x10{left:34.065000px;}
.x11{left:35.865000px;}
.x27{left:36.900000px;}
.x21{left:39.240000px;}
.x23{left:41.400000px;}
.x1d{left:43.200000px;}
.x6{left:45.540000px;}
.x35{left:50.220000px;}
.x3d{left:52.740000px;}
.x2{left:53.999986px;}
.x37{left:55.260000px;}
.x2c{left:56.520000px;}
.x1{left:60.659986px;}
.x1b{left:63.534000px;}
.x13{left:65.519986px;}
.x28{left:76.005000px;}
.x3f{left:84.059986px;}
.x17{left:88.199986px;}
.x43{left:89.280000px;}
.x4{left:100.836000px;}
.x5{left:108.035986px;}
.x9{left:120.095986px;}
.x1a{left:136.836000px;}
.xc{left:154.649986px;}
.x2d{left:168.870000px;}
.x2a{left:173.549986px;}
.x2f{left:198.030000px;}
.x36{left:219.989986px;}
.x38{left:244.290000px;}
.x30{left:245.910000px;}
.x2b{left:252.569986px;}
.x39{left:282.630000px;}
.x32{left:284.070000px;}
.x1c{left:288.975000px;}
.x33{left:342.435000px;}
.x19{left:385.454986px;}
.xb{left:389.594986px;}
.xa{left:414.614986px;}
.x8{left:459.074986px;}
.x18{left:461.954986px;}
.x1e{left:469.875000px;}
.x3e{left:475.634986px;}
.x14{left:478.334986px;}
.x15{left:479.804986px;}
.x40{left:502.664986px;}
.x42{left:504.825000px;}
.x16{left:506.804986px;}
.x41{left:526.604986px;}
.x1f{left:554.865000px;}
.x20{left:629.385000px;}
.xd{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v4{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.200000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:16.000000pt;}
.ls27{letter-spacing:-17.706667pt;}
.ls1a{letter-spacing:-1.898667pt;}
.ls5e{letter-spacing:-1.525333pt;}
.ls51{letter-spacing:-1.189333pt;}
.ls55{letter-spacing:-1.152000pt;}
.ls4b{letter-spacing:-1.125333pt;}
.ls2e{letter-spacing:-0.794667pt;}
.ls2c{letter-spacing:-0.698667pt;}
.ls10{letter-spacing:-0.645333pt;}
.ls54{letter-spacing:-0.409600pt;}
.ls4f{letter-spacing:-0.402667pt;}
.ls5b{letter-spacing:-0.400533pt;}
.ls5a{letter-spacing:-0.371200pt;}
.ls5c{letter-spacing:-0.329600pt;}
.ls1c{letter-spacing:-0.326933pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.213867pt;}
.ls50{letter-spacing:-0.198400pt;}
.ls29{letter-spacing:-0.161067pt;}
.ls53{letter-spacing:-0.145067pt;}
.ls2a{letter-spacing:-0.134933pt;}
.ls4a{letter-spacing:-0.126933pt;}
.ls52{letter-spacing:-0.106667pt;}
.ls48{letter-spacing:-0.072533pt;}
.ls56{letter-spacing:-0.058133pt;}
.ls65{letter-spacing:-0.053867pt;}
.ls64{letter-spacing:-0.046720pt;}
.ls11{letter-spacing:-0.007040pt;}
.lsc{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.014080pt;}
.ls4e{letter-spacing:0.021760pt;}
.ls2{letter-spacing:0.023040pt;}
.ls26{letter-spacing:0.038400pt;}
.ls61{letter-spacing:0.039680pt;}
.ls60{letter-spacing:0.044800pt;}
.ls0{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.057600pt;}
.ls4d{letter-spacing:0.063467pt;}
.ls13{letter-spacing:0.064427pt;}
.ls57{letter-spacing:0.082667pt;}
.ls41{letter-spacing:0.092160pt;}
.ls59{letter-spacing:0.092267pt;}
.ls35{letter-spacing:0.106240pt;}
.ls2d{letter-spacing:0.114667pt;}
.ls31{letter-spacing:0.130667pt;}
.ls28{letter-spacing:0.133333pt;}
.ls46{letter-spacing:0.153600pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165120pt;}
.ls58{letter-spacing:0.166933pt;}
.ls7{letter-spacing:0.168533pt;}
.ls49{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.212480pt;}
.ls30{letter-spacing:0.230400pt;}
.lsd{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.237333pt;}
.ls4c{letter-spacing:0.239467pt;}
.ls5f{letter-spacing:0.264533pt;}
.ls36{letter-spacing:0.268800pt;}
.ls14{letter-spacing:0.296107pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.324267pt;}
.ls25{letter-spacing:0.325120pt;}
.lsb{letter-spacing:0.347520pt;}
.ls22{letter-spacing:0.358827pt;}
.ls1b{letter-spacing:0.634667pt;}
.ls63{letter-spacing:0.768000pt;}
.ls6{letter-spacing:1.338880pt;}
.ls44{letter-spacing:1.445120pt;}
.ls15{letter-spacing:3.365120pt;}
.ls34{letter-spacing:4.005120pt;}
.ls20{letter-spacing:4.645120pt;}
.ls1d{letter-spacing:5.285120pt;}
.ls17{letter-spacing:5.925120pt;}
.ls39{letter-spacing:6.565120pt;}
.ls37{letter-spacing:7.205120pt;}
.ls2f{letter-spacing:8.005120pt;}
.ls12{letter-spacing:8.320000pt;}
.ls3a{letter-spacing:8.485120pt;}
.ls21{letter-spacing:8.645120pt;}
.ls3b{letter-spacing:9.125120pt;}
.ls18{letter-spacing:9.765120pt;}
.ls5{letter-spacing:10.298880pt;}
.ls47{letter-spacing:10.405120pt;}
.ls62{letter-spacing:12.112640pt;}
.ls43{letter-spacing:12.325120pt;}
.ls1e{letter-spacing:12.453120pt;}
.ls42{letter-spacing:12.485120pt;}
.ls32{letter-spacing:12.965120pt;}
.ls40{letter-spacing:13.605120pt;}
.ls3c{letter-spacing:14.245120pt;}
.ls16{letter-spacing:14.885120pt;}
.ls3f{letter-spacing:15.525120pt;}
.ls45{letter-spacing:16.805120pt;}
.ls3e{letter-spacing:20.645120pt;}
.ls23{letter-spacing:21.285120pt;}
.ls38{letter-spacing:23.205120pt;}
.lsa{letter-spacing:33.232640pt;}
.ls9{letter-spacing:37.216000pt;}
.ls3d{letter-spacing:40.485120pt;}
.ls19{letter-spacing:40.912640pt;}
.ls4{letter-spacing:811.146667pt;}
.wse{word-spacing:-53.120000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws19{word-spacing:-42.880000pt;}
.ws3{word-spacing:-26.496000pt;}
.ws6{word-spacing:-16.156160pt;}
.ws4{word-spacing:-16.133120pt;}
.ws41{word-spacing:-15.322880pt;}
.ws24{word-spacing:-14.837120pt;}
.ws2a{word-spacing:-14.823680pt;}
.ws27{word-spacing:-14.794347pt;}
.ws30{word-spacing:-14.792213pt;}
.ws2c{word-spacing:-14.785280pt;}
.wsa{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.723413pt;}
.ws3a{word-spacing:-14.721813pt;}
.ws40{word-spacing:-14.708480pt;}
.ws16{word-spacing:-14.688213pt;}
.ws2d{word-spacing:-14.685547pt;}
.ws8{word-spacing:-14.661120pt;}
.ws37{word-spacing:-14.637547pt;}
.ws28{word-spacing:-14.618347pt;}
.ws29{word-spacing:-14.576640pt;}
.ws3e{word-spacing:-14.568960pt;}
.ws10{word-spacing:-14.554880pt;}
.ws25{word-spacing:-14.534187pt;}
.ws36{word-spacing:-14.496747pt;}
.ws31{word-spacing:-14.448213pt;}
.ws32{word-spacing:-14.409813pt;}
.ws2e{word-spacing:-14.356480pt;}
.ws14{word-spacing:-14.227947pt;}
.ws3d{word-spacing:-14.225280pt;}
.ws3b{word-spacing:-14.183680pt;}
.ws3c{word-spacing:-14.154347pt;}
.ws2b{word-spacing:-14.152213pt;}
.ws34{word-spacing:-14.145280pt;}
.ws1{word-spacing:-13.600000pt;}
.ws26{word-spacing:-13.429547pt;}
.ws35{word-spacing:-13.402880pt;}
.ws2f{word-spacing:-13.365547pt;}
.ws0{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3f{word-spacing:-13.029547pt;}
.ws12{word-spacing:-12.656213pt;}
.wsf{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.863787pt;}
.ws17{word-spacing:-11.834880pt;}
.ws1c{word-spacing:-11.749120pt;}
.wsd{word-spacing:-11.680000pt;}
.ws23{word-spacing:-11.676587pt;}
.ws1d{word-spacing:-11.614187pt;}
.ws1e{word-spacing:-11.535253pt;}
.ws20{word-spacing:-11.050453pt;}
.ws1b{word-spacing:-11.040000pt;}
.ws22{word-spacing:-10.954453pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.558933pt;}
.ws1f{word-spacing:-0.986880pt;}
.ws18{word-spacing:-0.042880pt;}
.ws11{word-spacing:0.000000pt;}
.ws33{word-spacing:3.293440pt;}
.ws13{word-spacing:3.613867pt;}
.ws5{word-spacing:3.650560pt;}
.ws39{word-spacing:38.162560pt;}
.ws15{word-spacing:38.802560pt;}
.ws38{word-spacing:39.442560pt;}
._8{margin-left:-31.584000pt;}
._c{margin-left:-20.274560pt;}
._14{margin-left:-17.688960pt;}
._29{margin-left:-16.684800pt;}
._1a{margin-left:-15.548373pt;}
._a{margin-left:-11.547947pt;}
._2e{margin-left:-10.114560pt;}
._17{margin-left:-9.019947pt;}
._7{margin-left:-7.680000pt;}
._d{margin-left:-5.265707pt;}
._1d{margin-left:-4.304640pt;}
._4{margin-left:-3.264000pt;}
._12{margin-left:-1.931093pt;}
._3{margin-left:-1.034453pt;}
._0{width:1.009280pt;}
._10{width:2.033280pt;}
._5{width:3.072000pt;}
._13{width:4.139093pt;}
._e{width:5.063680pt;}
._16{width:5.990400pt;}
._6{width:7.680000pt;}
._25{width:8.606933pt;}
._18{width:9.561600pt;}
._b{width:10.833920pt;}
._22{width:11.878187pt;}
._21{width:13.467307pt;}
._20{width:15.520000pt;}
._11{width:16.492373pt;}
._f{width:17.476480pt;}
._15{width:19.008853pt;}
._23{width:20.079360pt;}
._26{width:21.088640pt;}
._28{width:22.522880pt;}
._1b{width:24.116480pt;}
._1c{width:25.244800pt;}
._1f{width:26.730027pt;}
._1e{width:27.626453pt;}
._2b{width:30.085333pt;}
._9{width:31.296000pt;}
._24{width:33.024000pt;}
._19{width:34.608000pt;}
._2a{width:37.608960pt;}
._2d{width:40.178987pt;}
._2c{width:41.322880pt;}
._2f{width:42.303573pt;}
._30{width:78.674773pt;}
._31{width:80.137600pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._27{width:313.783893pt;}
.fs8{font-size:21.120000pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.yf9{bottom:2.400000pt;}
.yff{bottom:2.560000pt;}
.y35{bottom:2.720000pt;}
.y33{bottom:2.880000pt;}
.y7d{bottom:3.200000pt;}
.y14{bottom:3.360000pt;}
.y74{bottom:4.640000pt;}
.y75{bottom:5.120000pt;}
.y15{bottom:5.280000pt;}
.y80{bottom:7.040000pt;}
.y78{bottom:8.954667pt;}
.y4{bottom:9.312000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:15.232000pt;}
.yfe{bottom:15.520000pt;}
.y2c{bottom:17.280000pt;}
.y32{bottom:18.240000pt;}
.yfd{bottom:28.640000pt;}
.y7{bottom:31.520000pt;}
.y2b{bottom:31.840000pt;}
.y31{bottom:34.080000pt;}
.yfc{bottom:41.600000pt;}
.y2a{bottom:45.626667pt;}
.y30{bottom:51.520000pt;}
.y3{bottom:51.680000pt;}
.yfb{bottom:54.720000pt;}
.y29{bottom:59.386667pt;}
.y2f{bottom:67.520000pt;}
.y28{bottom:73.306667pt;}
.y27{bottom:87.066667pt;}
.y34{bottom:94.440000pt;}
.y6f{bottom:100.192000pt;}
.y26{bottom:100.826667pt;}
.yaf{bottom:103.872000pt;}
.yf7{bottom:104.192000pt;}
.y40{bottom:106.112000pt;}
.y79{bottom:107.072000pt;}
.y23{bottom:110.440000pt;}
.y25{bottom:114.586667pt;}
.y6e{bottom:117.952000pt;}
.y3f{bottom:119.872000pt;}
.ycd{bottom:121.472000pt;}
.yae{bottom:121.632000pt;}
.yf6{bottom:121.952000pt;}
.y22{bottom:124.520000pt;}
.y77{bottom:126.272000pt;}
.y3e{bottom:133.786667pt;}
.y6d{bottom:135.706667pt;}
.yad{bottom:139.386667pt;}
.yf5{bottom:139.706667pt;}
.ycc{bottom:141.946667pt;}
.y21{bottom:142.280000pt;}
.y76{bottom:144.826667pt;}
.y3d{bottom:147.546667pt;}
.y6c{bottom:153.466667pt;}
.yac{bottom:157.146667pt;}
.yf4{bottom:157.466667pt;}
.y20{bottom:160.040000pt;}
.y3c{bottom:161.306667pt;}
.ycb{bottom:162.266667pt;}
.y73{bottom:163.386667pt;}
.y6b{bottom:171.226667pt;}
.yab{bottom:174.906667pt;}
.y3b{bottom:175.066667pt;}
.y1f{bottom:177.800000pt;}
.yca{bottom:182.746667pt;}
.y72{bottom:184.026667pt;}
.y3a{bottom:188.986667pt;}
.yaa{bottom:192.506667pt;}
.yf3{bottom:192.826667pt;}
.y71{bottom:195.386667pt;}
.y1e{bottom:195.560000pt;}
.y39{bottom:202.746667pt;}
.yc9{bottom:203.066667pt;}
.y6a{bottom:206.586667pt;}
.y70{bottom:209.626667pt;}
.ya9{bottom:210.266667pt;}
.yf2{bottom:210.586667pt;}
.y1d{bottom:213.160000pt;}
.y38{bottom:216.506667pt;}
.yc8{bottom:223.546667pt;}
.y69{bottom:224.346667pt;}
.ya8{bottom:228.026667pt;}
.yf1{bottom:228.346667pt;}
.y1c{bottom:230.920000pt;}
.y37{bottom:231.066667pt;}
.y68{bottom:242.106667pt;}
.yc7{bottom:243.866667pt;}
.ya7{bottom:245.786667pt;}
.yf0{bottom:246.106667pt;}
.y36{bottom:248.026667pt;}
.y1b{bottom:248.706667pt;}
.y16{bottom:259.866667pt;}
.ya6{bottom:263.546667pt;}
.yef{bottom:263.866667pt;}
.yc6{bottom:264.186667pt;}
.y1a{bottom:266.466667pt;}
.y67{bottom:277.626667pt;}
.ya5{bottom:281.306667pt;}
.yee{bottom:281.626667pt;}
.y19{bottom:284.226667pt;}
.yc5{bottom:284.706667pt;}
.y66{bottom:295.426667pt;}
.ya4{bottom:298.946667pt;}
.yed{bottom:299.266667pt;}
.y18{bottom:301.986667pt;}
.yc4{bottom:305.026667pt;}
.y65{bottom:313.026667pt;}
.ya3{bottom:316.706667pt;}
.yec{bottom:317.026667pt;}
.y17{bottom:319.106667pt;}
.yc3{bottom:325.506667pt;}
.y64{bottom:330.786667pt;}
.ya2{bottom:334.466667pt;}
.yeb{bottom:334.786667pt;}
.yc2{bottom:345.826667pt;}
.y63{bottom:348.546667pt;}
.ya1{bottom:352.226667pt;}
.yea{bottom:352.546667pt;}
.y2e{bottom:366.146667pt;}
.y62{bottom:366.306667pt;}
.ya0{bottom:369.986667pt;}
.ye9{bottom:370.306667pt;}
.y61{bottom:384.066667pt;}
.yc1{bottom:386.626667pt;}
.y9f{bottom:387.746667pt;}
.ye8{bottom:388.066667pt;}
.y60{bottom:401.826667pt;}
.y9e{bottom:405.346667pt;}
.ye7{bottom:405.666667pt;}
.yc0{bottom:407.106667pt;}
.y5f{bottom:419.426667pt;}
.y9d{bottom:423.106667pt;}
.ye6{bottom:423.426667pt;}
.ybf{bottom:427.426667pt;}
.y5e{bottom:437.186667pt;}
.y9c{bottom:440.866667pt;}
.ye5{bottom:441.186667pt;}
.y2d{bottom:447.266667pt;}
.ybe{bottom:447.906667pt;}
.y5d{bottom:454.946667pt;}
.y9b{bottom:458.626667pt;}
.ye4{bottom:458.946667pt;}
.y24{bottom:465.666667pt;}
.ybd{bottom:468.226667pt;}
.y5c{bottom:472.706667pt;}
.y9a{bottom:476.386667pt;}
.ye3{bottom:476.706667pt;}
.ybc{bottom:488.706667pt;}
.y5b{bottom:490.466667pt;}
.y99{bottom:494.146667pt;}
.ye2{bottom:494.466667pt;}
.y5a{bottom:508.253333pt;}
.ybb{bottom:509.053333pt;}
.y98{bottom:511.773333pt;}
.ye1{bottom:512.093333pt;}
.y59{bottom:526.013333pt;}
.y97{bottom:529.533333pt;}
.ye0{bottom:529.853333pt;}
.y58{bottom:543.613333pt;}
.y96{bottom:547.293333pt;}
.ydf{bottom:547.613333pt;}
.yba{bottom:549.853333pt;}
.y57{bottom:561.373333pt;}
.y95{bottom:565.053333pt;}
.yde{bottom:565.373333pt;}
.yb9{bottom:570.173333pt;}
.y56{bottom:579.133333pt;}
.y94{bottom:582.813333pt;}
.ydd{bottom:583.133333pt;}
.yb8{bottom:590.653333pt;}
.y13{bottom:592.093333pt;}
.y55{bottom:596.893333pt;}
.y93{bottom:600.573333pt;}
.ydc{bottom:600.893333pt;}
.yb7{bottom:610.973333pt;}
.y54{bottom:614.653333pt;}
.y92{bottom:618.333333pt;}
.ydb{bottom:618.493333pt;}
.y12{bottom:626.013333pt;}
.yb6{bottom:631.453333pt;}
.y53{bottom:632.413333pt;}
.yfa{bottom:633.533333pt;}
.y91{bottom:635.933333pt;}
.y11{bottom:645.533333pt;}
.y52{bottom:650.013333pt;}
.yb5{bottom:651.773333pt;}
.y90{bottom:653.693333pt;}
.y51{bottom:667.773333pt;}
.y8f{bottom:671.453333pt;}
.y10{bottom:671.613333pt;}
.yb4{bottom:672.253333pt;}
.y50{bottom:685.533333pt;}
.y8e{bottom:689.213333pt;}
.yf{bottom:691.133333pt;}
.yb3{bottom:692.573333pt;}
.yf8{bottom:699.453333pt;}
.y4f{bottom:703.293333pt;}
.y8d{bottom:706.973333pt;}
.ye{bottom:712.893333pt;}
.yb2{bottom:713.053333pt;}
.y4e{bottom:721.053333pt;}
.y8c{bottom:724.733333pt;}
.yda{bottom:730.853333pt;}
.yb1{bottom:733.413333pt;}
.yd{bottom:738.213333pt;}
.y4d{bottom:738.853333pt;}
.y8b{bottom:742.373333pt;}
.yd9{bottom:748.613333pt;}
.yb0{bottom:753.893333pt;}
.y4c{bottom:756.453333pt;}
.y8a{bottom:759.493333pt;}
.yd8{bottom:766.213333pt;}
.yc{bottom:770.213333pt;}
.y89{bottom:773.733333pt;}
.y4b{bottom:774.213333pt;}
.yd7{bottom:783.973333pt;}
.y88{bottom:785.893333pt;}
.y4a{bottom:791.973333pt;}
.y87{bottom:800.773333pt;}
.yb{bottom:801.253333pt;}
.yd6{bottom:801.733333pt;}
.y49{bottom:809.733333pt;}
.y86{bottom:815.493333pt;}
.yd5{bottom:819.493333pt;}
.ya{bottom:826.853333pt;}
.y48{bottom:827.493333pt;}
.y85{bottom:832.453333pt;}
.yd4{bottom:837.253333pt;}
.y8{bottom:840.453333pt;}
.y84{bottom:843.813333pt;}
.y47{bottom:845.253333pt;}
.yd3{bottom:855.013333pt;}
.y83{bottom:859.653333pt;}
.y46{bottom:862.853333pt;}
.y82{bottom:870.213333pt;}
.yd2{bottom:872.613333pt;}
.y45{bottom:880.613333pt;}
.y81{bottom:884.453333pt;}
.yd1{bottom:890.373333pt;}
.y7f{bottom:896.613333pt;}
.y44{bottom:898.373333pt;}
.yd0{bottom:910.853333pt;}
.y7e{bottom:911.493333pt;}
.y43{bottom:916.133333pt;}
.y7c{bottom:926.213333pt;}
.ycf{bottom:931.173333pt;}
.y42{bottom:933.893333pt;}
.y7b{bottom:943.173333pt;}
.yce{bottom:951.520000pt;}
.y41{bottom:951.680000pt;}
.y7a{bottom:954.560000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h2b{height:12.960000pt;}
.h27{height:14.080000pt;}
.h26{height:14.240000pt;}
.h11{height:17.760000pt;}
.h21{height:17.920000pt;}
.h20{height:23.687500pt;}
.h3{height:28.192000pt;}
.h29{height:29.312500pt;}
.h25{height:29.940625pt;}
.h23{height:30.254687pt;}
.h2e{height:31.728125pt;}
.h1e{height:31.741250pt;}
.h2c{height:32.060937pt;}
.h28{height:32.201875pt;}
.h1b{height:33.515625pt;}
.h1a{height:33.867188pt;}
.h6{height:34.965625pt;}
.h16{height:35.554688pt;}
.h4{height:37.090625pt;}
.h12{height:37.479688pt;}
.h2a{height:39.321250pt;}
.h17{height:39.347188pt;}
.h1c{height:39.891875pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h14{height:42.549120pt;}
.h24{height:42.649687pt;}
.h22{height:43.905937pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.h1f{height:46.271875pt;}
.h5{height:51.796875pt;}
.h10{height:57.321875pt;}
.h1d{height:58.618750pt;}
.h2d{height:65.280000pt;}
.hf{height:67.031250pt;}
.ha{height:67.734375pt;}
.hd{height:69.062500pt;}
.he{height:71.062500pt;}
.hc{height:76.896000pt;}
.h18{height:80.320000pt;}
.hb{height:103.593750pt;}
.h19{height:105.632000pt;}
.h15{height:125.792000pt;}
.h7{height:136.826667pt;}
.h13{height:331.586667pt;}
.h0{height:1056.000000pt;}
.we{width:25.120000pt;}
.w14{width:25.280000pt;}
.w10{width:33.280000pt;}
.w2{width:34.752000pt;}
.w15{width:40.480000pt;}
.wf{width:41.920000pt;}
.w11{width:51.232000pt;}
.w16{width:52.512000pt;}
.wb{width:65.600000pt;}
.w9{width:74.880000pt;}
.wa{width:74.912000pt;}
.w8{width:84.480000pt;}
.w12{width:89.440000pt;}
.w17{width:93.760000pt;}
.wd{width:99.072000pt;}
.w13{width:100.352000pt;}
.w7{width:134.586667pt;}
.wc{width:135.066667pt;}
.w6{width:195.706667pt;}
.w18{width:318.426667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x29{left:-6.080012pt;}
.x0{left:0.000000pt;}
.xf{left:5.760000pt;}
.x3{left:7.520000pt;}
.x2e{left:8.640000pt;}
.x31{left:9.760000pt;}
.x3b{left:10.880000pt;}
.x26{left:12.800000pt;}
.x3a{left:14.240000pt;}
.x34{left:16.200000pt;}
.xe{left:17.760000pt;}
.x22{left:23.034667pt;}
.x12{left:24.320000pt;}
.x24{left:25.280000pt;}
.x3c{left:26.280000pt;}
.x25{left:28.026667pt;}
.x10{left:30.280000pt;}
.x11{left:31.880000pt;}
.x27{left:32.800000pt;}
.x21{left:34.880000pt;}
.x23{left:36.800000pt;}
.x1d{left:38.400000pt;}
.x6{left:40.480000pt;}
.x35{left:44.640000pt;}
.x3d{left:46.880000pt;}
.x2{left:47.999988pt;}
.x37{left:49.120000pt;}
.x2c{left:50.240000pt;}
.x1{left:53.919988pt;}
.x1b{left:56.474667pt;}
.x13{left:58.239988pt;}
.x28{left:67.560000pt;}
.x3f{left:74.719988pt;}
.x17{left:78.399988pt;}
.x43{left:79.360000pt;}
.x4{left:89.632000pt;}
.x5{left:96.031988pt;}
.x9{left:106.751988pt;}
.x1a{left:121.632000pt;}
.xc{left:137.466655pt;}
.x2d{left:150.106667pt;}
.x2a{left:154.266655pt;}
.x2f{left:176.026667pt;}
.x36{left:195.546655pt;}
.x38{left:217.146667pt;}
.x30{left:218.586667pt;}
.x2b{left:224.506655pt;}
.x39{left:251.226667pt;}
.x32{left:252.506667pt;}
.x1c{left:256.866667pt;}
.x33{left:304.386667pt;}
.x19{left:342.626655pt;}
.xb{left:346.306655pt;}
.xa{left:368.546655pt;}
.x8{left:408.066655pt;}
.x18{left:410.626655pt;}
.x1e{left:417.666667pt;}
.x3e{left:422.786655pt;}
.x14{left:425.186655pt;}
.x15{left:426.493321pt;}
.x40{left:446.813321pt;}
.x42{left:448.733333pt;}
.x16{left:450.493321pt;}
.x41{left:468.093321pt;}
.x1f{left:493.213333pt;}
.x20{left:559.453333pt;}
.xd{left:570.973333pt;}
.x7{left:722.213333pt;}
}




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