
    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_9074bfec7dbef222e56150e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_d8bae1190696b860dbaaef1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e1de893dbda0ae982695063d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_d63c735000c612dbbb441e4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_76dadf3c27af8f1e613e0a18.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_1c1393a5e0921b6f14ffa568.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9e287c9bac7058478c1467ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.676270;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_0087f785db551e14000500a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_c401bbf308d7f618efbb73ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_cbf313cc1053f20b2e3e0076.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_01697f5b3a060d9e9a3c6b75.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_6d4e18da22f91362a3d951e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.272949;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_999f7ffcfd9487131bdcda90.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_05930f8c0870bda3aa05d2d8.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_1cb71a7f0ba5e236d6fc3a12.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_50008c65c6c8e20686317c2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_e652736fd3dfce482caa5e59.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_314a177693e685713d9fc681.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_17f86ea19fbe64389dcaad37.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_8a98d4587653b4fc025632a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_f8298e012c421ddb5acec6eb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_3b3f0bb620dd6b2e312998c9.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m6{transform:matrix(0.000000,-0.249577,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249577,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249577,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.251720,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251720,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251720,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.v1d{vertical-align:-149.760000px;}
.v1c{vertical-align:-122.400000px;}
.v19{vertical-align:-116.640000px;}
.vb{vertical-align:-95.040000px;}
.vc{vertical-align:-73.440000px;}
.v18{vertical-align:-70.560000px;}
.va{vertical-align:-69.120000px;}
.v1a{vertical-align:-60.480000px;}
.v16{vertical-align:-57.600000px;}
.v15{vertical-align:-54.720000px;}
.v1b{vertical-align:-51.840000px;}
.vd{vertical-align:-43.200000px;}
.v2{vertical-align:-33.120000px;}
.v5{vertical-align:-30.240000px;}
.v11{vertical-align:-27.360000px;}
.v9{vertical-align:-25.920000px;}
.v7{vertical-align:-24.480000px;}
.v17{vertical-align:-20.160000px;}
.v1e{vertical-align:-18.720000px;}
.v10{vertical-align:-10.080000px;}
.v3{vertical-align:-8.639400px;}
.v20{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.440000px;}
.v13{vertical-align:7.200000px;}
.ve{vertical-align:18.720000px;}
.v6{vertical-align:24.480000px;}
.v8{vertical-align:25.920000px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.vf{vertical-align:34.560000px;}
.v14{vertical-align:51.840000px;}
.v1f{vertical-align:57.600000px;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.012120px;}
.ls4{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.118800px;}
.ls7{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.121104px;}
.lsb{letter-spacing:0.125040px;}
.lsa{letter-spacing:0.125640px;}
.ls0{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.242352px;}
.ls9{letter-spacing:0.285120px;}
.lse{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.356875px;}
.ls18{letter-spacing:0.401760px;}
.ls19{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480618px;}
.ls8{letter-spacing:0.513648px;}
.ls11{letter-spacing:0.601992px;}
.ls16{letter-spacing:0.674568px;}
.ls14{letter-spacing:0.680400px;}
.ls13{letter-spacing:0.874800px;}
.ls17{letter-spacing:0.920808px;}
.ls10{letter-spacing:0.997920px;}
.ls12{letter-spacing:1.198152px;}
.ls1c{letter-spacing:16.301162px;}
.ls1b{letter-spacing:16.318037px;}
.ls1d{letter-spacing:58.199154px;}
.ls20{letter-spacing:109.117267px;}
.ls1f{letter-spacing:207.536827px;}
.ls21{letter-spacing:983.054815px;}
.ls1e{letter-spacing:1112.027507px;}
.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;}
}
.ws1c{word-spacing:-23.218560px;}
.ws23{word-spacing:-22.577520px;}
.ws13{word-spacing:-22.234440px;}
.ws20{word-spacing:-20.016000px;}
.ws8{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws10{word-spacing:-17.120808px;}
.wsd{word-spacing:-16.880400px;}
.ws1d{word-spacing:-16.813440px;}
.wsc{word-spacing:-16.801992px;}
.ws11{word-spacing:-16.601760px;}
.wse{word-spacing:-16.524000px;}
.ws29{word-spacing:-15.587460px;}
.ws36{word-spacing:-13.834392px;}
.ws21{word-spacing:-13.210560px;}
.ws7{word-spacing:-12.236875px;}
.wsa{word-spacing:-12.165120px;}
.ws6{word-spacing:-12.122352px;}
.ws2{word-spacing:-12.120000px;}
.ws34{word-spacing:-12.079656px;}
.ws1{word-spacing:-11.998800px;}
.wsf{word-spacing:-10.561104px;}
.ws9{word-spacing:-0.572688px;}
.ws12{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.079980px;}
.wsb{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.060480px;}
.ws0{word-spacing:-0.059040px;}
.ws4{word-spacing:0.000000px;}
.ws35{word-spacing:2.273520px;}
.ws1f{word-spacing:17.362367px;}
.ws37{word-spacing:20.114708px;}
.ws16{word-spacing:23.355522px;}
.ws17{word-spacing:24.785682px;}
.ws26{word-spacing:58.731715px;}
.ws39{word-spacing:106.832451px;}
.ws18{word-spacing:117.621892px;}
.ws2b{word-spacing:121.015989px;}
.ws19{word-spacing:122.126784px;}
.ws2e{word-spacing:155.539110px;}
.ws2f{word-spacing:164.193754px;}
.ws22{word-spacing:166.013332px;}
.ws27{word-spacing:171.405957px;}
.ws32{word-spacing:174.290838px;}
.ws1b{word-spacing:176.472829px;}
.ws31{word-spacing:180.060600px;}
.ws2d{word-spacing:180.235221px;}
.ws28{word-spacing:187.272803px;}
.ws25{word-spacing:190.332305px;}
.ws24{word-spacing:195.927447px;}
.ws1a{word-spacing:202.001278px;}
.ws38{word-spacing:214.789038px;}
.ws14{word-spacing:253.302716px;}
.ws30{word-spacing:330.074424px;}
.ws2a{word-spacing:1096.440047px;}
.ws33{word-spacing:1099.523897px;}
.ws2c{word-spacing:1670.530451px;}
._20{margin-left:-2930.255940px;}
._1e{margin-left:-2926.152000px;}
._22{margin-left:-2922.552000px;}
._18{margin-left:-2907.144000px;}
._21{margin-left:-2892.239940px;}
._f{margin-left:-2882.203140px;}
._10{margin-left:-2873.734356px;}
._14{margin-left:-2858.976000px;}
._1f{margin-left:-2846.160000px;}
._13{margin-left:-2844.144000px;}
._17{margin-left:-2840.241600px;}
._1a{margin-left:-2813.659200px;}
._15{margin-left:-2810.088000px;}
._1d{margin-left:-2802.312000px;}
._11{margin-left:-2778.336000px;}
._16{margin-left:-2740.032000px;}
._1c{margin-left:-2722.176000px;}
._1b{margin-left:-2670.840000px;}
._7{margin-left:-2056.320000px;}
._4{margin-left:-2017.128120px;}
._19{margin-left:-1936.367940px;}
._23{margin-left:-1902.456000px;}
._a{margin-left:-1666.751940px;}
._e{margin-left:-1554.623940px;}
._b{margin-left:-814.248060px;}
._9{margin-left:-794.759940px;}
._d{margin-left:-464.616000px;}
._2f{margin-left:-355.881788px;}
._2c{margin-left:-338.572501px;}
._c{margin-left:-206.640000px;}
._12{margin-left:-203.400000px;}
._8{margin-left:-166.320000px;}
._1{margin-left:-3.672000px;}
._2{margin-left:-1.882320px;}
._25{width:1.279664px;}
._2b{width:2.282238px;}
._27{width:3.358567px;}
._0{width:7.992000px;}
._5{width:15.768000px;}
._24{width:18.461282px;}
._2a{width:20.446008px;}
._29{width:23.870097px;}
._32{width:40.546278px;}
._31{width:140.155389px;}
._6{width:198.000060px;}
._33{width:215.478646px;}
._28{width:312.661187px;}
._26{width:332.332282px;}
._2d{width:390.047992px;}
._30{width:423.224126px;}
._2e{width:541.394683px;}
._3{width:845.999760px;}
._34{width:883.291006px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:37.380000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:42.000000px;}
.fs10{font-size:43.452000px;}
.fs2{font-size:47.520000px;}
.fs12{font-size:49.764000px;}
.fsc{font-size:54.720000px;}
.fs9{font-size:54.822000px;}
.fse{font-size:56.070000px;}
.fs0{font-size:59.040000px;}
.fs6{font-size:60.480000px;}
.fs11{font-size:62.142000px;}
.fs4{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:79.980000px;}
.fsb{font-size:83.520000px;}
.fs8{font-size:90.114000px;}
.fsa{font-size:140.052000px;}
.fsd{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y4f{bottom:12.960000px;}
.y1{bottom:18.368595px;}
.y1e{bottom:21.000000px;}
.y2{bottom:37.782840px;}
.y4b{bottom:38.142840px;}
.y4e{bottom:41.400000px;}
.y3{bottom:52.551435px;}
.y70{bottom:55.080000px;}
.y4d{bottom:69.840000px;}
.y84{bottom:94.680000px;}
.y81{bottom:96.120000px;}
.y82{bottom:96.840000px;}
.y7f{bottom:98.280000px;}
.y83{bottom:108.000000px;}
.y85{bottom:109.080000px;}
.y80{bottom:109.440000px;}
.y7e{bottom:110.520000px;}
.y4a{bottom:112.662840px;}
.y46{bottom:113.382840px;}
.y6f{bottom:118.422840px;}
.yf8{bottom:133.200015px;}
.yf7{bottom:133.560015px;}
.ydf{bottom:138.240000px;}
.y49{bottom:143.622855px;}
.y45{bottom:144.342855px;}
.y103{bottom:149.040000px;}
.y6e{bottom:149.382855px;}
.ye7{bottom:150.120000px;}
.y86{bottom:160.200000px;}
.y102{bottom:167.040000px;}
.y79{bottom:172.440000px;}
.y48{bottom:174.942855px;}
.y44{bottom:175.302855px;}
.y6d{bottom:180.702855px;}
.y101{bottom:185.040000px;}
.yeb{bottom:186.480000px;}
.y47{bottom:205.902855px;}
.y43{bottom:206.262855px;}
.y6c{bottom:211.662855px;}
.y1c{bottom:212.742855px;}
.y105{bottom:215.640000px;}
.yea{bottom:222.840000px;}
.y42{bottom:237.582855px;}
.y7a{bottom:238.680000px;}
.y6b{bottom:242.622855px;}
.y1b{bottom:254.142855px;}
.ye9{bottom:259.200000px;}
.ya3{bottom:260.280000px;}
.y100{bottom:261.360000px;}
.ye4{bottom:264.240000px;}
.y41{bottom:268.542855px;}
.ye5{bottom:270.000000px;}
.y6a{bottom:273.582855px;}
.yff{bottom:279.360000px;}
.ya2{bottom:284.040000px;}
.y1a{bottom:295.542855px;}
.ye8{bottom:295.560000px;}
.yfe{bottom:297.360000px;}
.y40{bottom:299.502855px;}
.y69{bottom:304.902855px;}
.y7b{bottom:304.920000px;}
.ye6{bottom:309.600000px;}
.y9f{bottom:313.200015px;}
.yfd{bottom:315.360000px;}
.yfa{bottom:317.160015px;}
.y8b{bottom:329.400000px;}
.y3f{bottom:330.462855px;}
.yef{bottom:332.280000px;}
.yfc{bottom:333.360000px;}
.y19{bottom:333.702855px;}
.y68{bottom:335.862855px;}
.y9a{bottom:336.960000px;}
.yec{bottom:344.160000px;}
.yf0{bottom:345.960000px;}
.y8d{bottom:346.680000px;}
.yfb{bottom:351.360000px;}
.y9e{bottom:352.800015px;}
.y18{bottom:354.942855px;}
.ye0{bottom:357.480000px;}
.yf9{bottom:360.360015px;}
.y3e{bottom:361.782855px;}
.y67{bottom:366.822855px;}
.y7c{bottom:371.160000px;}
.y89{bottom:374.040000px;}
.y8c{bottom:380.160000px;}
.y17{bottom:384.822855px;}
.yca{bottom:384.840000px;}
.yce{bottom:389.160000px;}
.y9d{bottom:392.040015px;}
.y3d{bottom:392.742855px;}
.ya1{bottom:394.200000px;}
.y66{bottom:397.782855px;}
.ycb{bottom:400.680000px;}
.ye3{bottom:405.360000px;}
.ya0{bottom:417.600000px;}
.yf3{bottom:422.280000px;}
.y16{bottom:422.622855px;}
.y3c{bottom:423.702855px;}
.yf4{bottom:423.720000px;}
.y97{bottom:425.880000px;}
.y98{bottom:427.320000px;}
.y106{bottom:428.040000px;}
.y65{bottom:429.102855px;}
.yc8{bottom:431.280000px;}
.y9c{bottom:431.280015px;}
.y8a{bottom:433.440000px;}
.y7d{bottom:437.400000px;}
.ya6{bottom:441.720000px;}
.y88{bottom:443.520000px;}
.ye2{bottom:453.240000px;}
.y95{bottom:454.320000px;}
.y3b{bottom:454.662855px;}
.y15{bottom:455.742855px;}
.ycd{bottom:455.760000px;}
.y36{bottom:456.102855px;}
.y64{bottom:460.062855px;}
.yc6{bottom:460.800000px;}
.yc7{bottom:462.240000px;}
.yc9{bottom:468.000000px;}
.y9b{bottom:470.880015px;}
.y99{bottom:476.640000px;}
.ycc{bottom:478.440000px;}
.y3a{bottom:485.982855px;}
.y94{bottom:486.720000px;}
.y63{bottom:491.022855px;}
.y78{bottom:492.480015px;}
.y71{bottom:494.640000px;}
.y14{bottom:497.142855px;}
.ye1{bottom:501.120000px;}
.y35{bottom:502.182855px;}
.ya4{bottom:507.600000px;}
.y39{bottom:516.942855px;}
.ycf{bottom:518.040000px;}
.y62{bottom:521.982855px;}
.y34{bottom:532.782855px;}
.y76{bottom:540.360000px;}
.yee{bottom:542.160000px;}
.y13{bottom:546.822855px;}
.y38{bottom:547.902855px;}
.y61{bottom:552.942855px;}
.ydb{bottom:569.880000px;}
.y37{bottom:578.862855px;}
.y33{bottom:579.222855px;}
.y12{bottom:579.942855px;}
.y60{bottom:584.262855px;}
.y75{bottom:585.360000px;}
.yd1{bottom:606.240000px;}
.ya9{bottom:607.320000px;}
.ya8{bottom:608.400000px;}
.y32{bottom:610.182855px;}
.yde{bottom:610.920000px;}
.yd8{bottom:612.720000px;}
.y5f{bottom:615.222855px;}
.yd0{bottom:617.400000px;}
.yd6{bottom:619.200000px;}
.y5a{bottom:623.502855px;}
.yd2{bottom:624.240000px;}
.yd9{bottom:628.560000px;}
.y11{bottom:629.622855px;}
.yaa{bottom:630.720000px;}
.y74{bottom:631.080000px;}
.ya7{bottom:631.800000px;}
.y31{bottom:641.142855px;}
.y5e{bottom:646.182855px;}
.ydd{bottom:651.960000px;}
.y59{bottom:654.822855px;}
.yaf{bottom:658.440000px;}
.y90{bottom:658.800000px;}
.ybd{bottom:659.520030px;}
.y10{bottom:662.742855px;}
.yd3{bottom:668.520000px;}
.yd4{bottom:670.320000px;}
.y30{bottom:672.102855px;}
.y73{bottom:675.000000px;}
.y5d{bottom:677.142855px;}
.yb7{bottom:677.880015px;}
.yd5{bottom:684.360000px;}
.yc5{bottom:684.720000px;}
.ybc{bottom:685.440030px;}
.y58{bottom:685.782855px;}
.yf1{bottom:688.680000px;}
.y8e{bottom:689.400000px;}
.yf2{bottom:690.120000px;}
.y91{bottom:690.840000px;}
.ydc{bottom:693.000000px;}
.yc2{bottom:693.360000px;}
.y57{bottom:694.062855px;}
.yb3{bottom:694.080000px;}
.yf5{bottom:695.880015px;}
.yf6{bottom:697.320015px;}
.yd7{bottom:698.760000px;}
.yb6{bottom:700.560015px;}
.y2f{bottom:703.062855px;}
.yf{bottom:704.142855px;}
.yc4{bottom:707.760000px;}
.y5c{bottom:708.462855px;}
.y92{bottom:711.360000px;}
.ybb{bottom:711.360030px;}
.yc1{bottom:716.760000px;}
.yb2{bottom:717.480000px;}
.y72{bottom:719.640000px;}
.yae{bottom:722.880000px;}
.y26{bottom:723.942855px;}
.y56{bottom:725.022855px;}
.y8f{bottom:727.200000px;}
.yda{bottom:729.360000px;}
.y2e{bottom:734.382855px;}
.y5b{bottom:737.262855px;}
.yba{bottom:737.280030px;}
.yc0{bottom:740.160000px;}
.yb1{bottom:740.880000px;}
.y87{bottom:749.160000px;}
.yed{bottom:750.240000px;}
.ye{bottom:753.822855px;}
.yad{bottom:755.280000px;}
.y77{bottom:755.640000px;}
.y55{bottom:755.982855px;}
.yb9{bottom:763.200030px;}
.ybf{bottom:763.560000px;}
.yb0{bottom:764.280000px;}
.y25{bottom:765.342855px;}
.yb4{bottom:770.040000px;}
.y54{bottom:779.022855px;}
.ya5{bottom:785.160000px;}
.yd{bottom:786.942855px;}
.y96{bottom:786.960000px;}
.yac{bottom:787.680000px;}
.yb8{bottom:789.120030px;}
.yab{bottom:791.640000px;}
.y2d{bottom:796.302855px;}
.y24{bottom:806.742855px;}
.y104{bottom:807.120000px;}
.y93{bottom:807.840000px;}
.yb5{bottom:811.080000px;}
.ybe{bottom:811.440000px;}
.y53{bottom:814.671450px;}
.yc3{bottom:815.040000px;}
.y2c{bottom:827.262855px;}
.yc{bottom:836.622855px;}
.y52{bottom:843.831450px;}
.y23{bottom:848.142855px;}
.y2b{bottom:858.582855px;}
.y51{bottom:872.991450px;}
.yb{bottom:878.022855px;}
.y22{bottom:889.542855px;}
.ya{bottom:890.622855px;}
.y50{bottom:902.151450px;}
.y9{bottom:911.142855px;}
.y2a{bottom:920.502705px;}
.y21{bottom:930.942855px;}
.y4c{bottom:931.311450px;}
.y8{bottom:932.022855px;}
.y29{bottom:951.462855px;}
.y7{bottom:952.542855px;}
.y20{bottom:961.902855px;}
.y28{bottom:982.782855px;}
.y6{bottom:988.182855px;}
.y1f{bottom:1003.302855px;}
.y27{bottom:1013.742855px;}
.y5{bottom:1044.702855px;}
.y1d{bottom:1165.500000px;}
.h3{height:17.639985px;}
.h14{height:28.440030px;}
.h26{height:29.568164px;}
.h17{height:32.205937px;}
.h7{height:33.018047px;}
.h2{height:41.253047px;}
.h8{height:43.804688px;}
.h10{height:43.917188px;}
.h15{height:45.024609px;}
.h2a{height:45.319078px;}
.hd{height:48.761719px;}
.h4{height:48.796875px;}
.h22{height:49.561875px;}
.hb{height:49.992188px;}
.h5{height:50.027344px;}
.he{height:50.308594px;}
.h25{height:58.479258px;}
.h13{height:58.521797px;}
.h12{height:58.542188px;}
.h16{height:59.255859px;}
.h27{height:59.919258px;}
.h2d{height:62.163910px;}
.h1b{height:63.078750px;}
.h2f{height:64.518750px;}
.h2b{height:64.812164px;}
.hc{height:65.302734px;}
.h28{height:65.679258px;}
.ha{height:66.114844px;}
.h18{height:66.114964px;}
.h9{height:66.115444px;}
.h6{height:66.138047px;}
.h23{height:75.093750px;}
.h1f{height:81.151582px;}
.h1c{height:83.416641px;}
.h11{height:85.319910px;}
.hf{height:85.320000px;}
.h20{height:87.108750px;}
.h24{height:93.039258px;}
.h1d{height:93.986086px;}
.h2c{height:107.161875px;}
.h29{height:110.319258px;}
.h1e{height:142.103543px;}
.h21{height:150.187500px;}
.h2e{height:151.627500px;}
.h1a{height:892.500000px;}
.h19{height:892.800000px;}
.h1{height:1151.262750px;}
.h0{height:1188.000000px;}
.w2{width:8.640015px;}
.w3{width:16.560015px;}
.w4{width:122.039985px;}
.w6{width:152.280000px;}
.w5{width:163.440000px;}
.w7{width:206.280000px;}
.w1{width:881.262750px;}
.w0{width:918.000000px;}
.w8{width:1262.880000px;}
.w9{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:7.560000px;}
.x1{left:18.368550px;}
.x11{left:57.960000px;}
.xb{left:68.040000px;}
.x6c{left:102.240000px;}
.x9{left:105.120000px;}
.x2{left:108.359985px;}
.x42{left:109.440000px;}
.x12{left:117.720000px;}
.x69{left:118.800000px;}
.xc{left:124.568565px;}
.x62{left:127.080000px;}
.x3b{left:132.480000px;}
.x64{left:133.560000px;}
.x8{left:153.360000px;}
.x48{left:157.680000px;}
.x7{left:162.359850px;}
.x5f{left:165.240000px;}
.x5e{left:167.760000px;}
.x6b{left:172.080000px;}
.x5a{left:174.600000px;}
.x49{left:175.680000px;}
.x35{left:177.480000px;}
.x32{left:178.920000px;}
.x5d{left:180.000000px;}
.x33{left:181.080000px;}
.x36{left:191.160000px;}
.x52{left:196.560000px;}
.x3f{left:199.080000px;}
.x28{left:206.280000px;}
.x37{left:216.000000px;}
.x4b{left:226.440000px;}
.x5b{left:228.240000px;}
.x54{left:230.760000px;}
.xe{left:247.328550px;}
.x3d{left:250.920000px;}
.x15{left:253.440015px;}
.x39{left:259.560000px;}
.x67{left:265.320000px;}
.x16{left:267.840000px;}
.x6a{left:271.080000px;}
.x3c{left:274.680000px;}
.x17{left:276.840000px;}
.x59{left:278.280000px;}
.x13{left:283.320000px;}
.x5{left:287.372880px;}
.x3e{left:290.880000px;}
.x63{left:292.320000px;}
.x4e{left:296.280000px;}
.x41{left:310.680000px;}
.x53{left:315.000000px;}
.x4f{left:316.440000px;}
.x3a{left:317.520000px;}
.x34{left:336.600000px;}
.x4c{left:354.240000px;}
.x18{left:355.320000px;}
.x2c{left:357.480000px;}
.x30{left:361.080000px;}
.x29{left:363.960000px;}
.x14{left:370.440000px;}
.x19{left:384.120000px;}
.xf{left:411.488550px;}
.x1a{left:413.280000px;}
.x4d{left:415.440000px;}
.x40{left:429.480000px;}
.x1b{left:442.080000px;}
.x61{left:451.439970px;}
.x60{left:455.039970px;}
.xa{left:457.568550px;}
.x6{left:458.648550px;}
.x3{left:462.608550px;}
.x66{left:478.800000px;}
.x1c{left:486.720000px;}
.x55{left:508.320000px;}
.x50{left:511.560000px;}
.x1d{left:515.520000px;}
.x46{left:517.320000px;}
.x38{left:518.400000px;}
.x1e{left:544.320000px;}
.x43{left:555.119985px;}
.x10{left:564.488550px;}
.x1f{left:573.480000px;}
.x51{left:574.920000px;}
.x44{left:579.960015px;}
.x45{left:588.240015px;}
.x57{left:604.440000px;}
.x2d{left:612.720000px;}
.x20{left:616.320000px;}
.x56{left:640.440000px;}
.x65{left:643.320000px;}
.x21{left:645.120000px;}
.x2e{left:667.080000px;}
.x22{left:673.920000px;}
.x2a{left:682.200000px;}
.x23{left:702.720000px;}
.x58{left:705.240000px;}
.x5c{left:707.400000px;}
.x4{left:709.681500px;}
.x24{left:745.200000px;}
.x2b{left:751.680000px;}
.x25{left:774.000000px;}
.x2f{left:794.880000px;}
.x26{left:802.800000px;}
.x47{left:817.200000px;}
.x27{left:831.960000px;}
.x4a{left:862.560000px;}
.x68{left:877.680000px;}
.x31{left:943.920000px;}
@media print{
.v1d{vertical-align:-133.120000pt;}
.v1c{vertical-align:-108.800000pt;}
.v19{vertical-align:-103.680000pt;}
.vb{vertical-align:-84.480000pt;}
.vc{vertical-align:-65.280000pt;}
.v18{vertical-align:-62.720000pt;}
.va{vertical-align:-61.440000pt;}
.v1a{vertical-align:-53.760000pt;}
.v16{vertical-align:-51.200000pt;}
.v15{vertical-align:-48.640000pt;}
.v1b{vertical-align:-46.080000pt;}
.vd{vertical-align:-38.400000pt;}
.v2{vertical-align:-29.440000pt;}
.v5{vertical-align:-26.880000pt;}
.v11{vertical-align:-24.320000pt;}
.v9{vertical-align:-23.040000pt;}
.v7{vertical-align:-21.760000pt;}
.v17{vertical-align:-17.920000pt;}
.v1e{vertical-align:-16.640000pt;}
.v10{vertical-align:-8.960000pt;}
.v3{vertical-align:-7.679467pt;}
.v20{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.280000pt;}
.v13{vertical-align:6.400000pt;}
.ve{vertical-align:16.640000pt;}
.v6{vertical-align:21.760000pt;}
.v8{vertical-align:23.040000pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.vf{vertical-align:30.720000pt;}
.v14{vertical-align:46.080000pt;}
.v1f{vertical-align:51.200000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.010773pt;}
.ls4{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.105600pt;}
.ls7{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.107648pt;}
.lsb{letter-spacing:0.111147pt;}
.lsa{letter-spacing:0.111680pt;}
.ls0{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.215424pt;}
.ls9{letter-spacing:0.253440pt;}
.lse{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.317222pt;}
.ls18{letter-spacing:0.357120pt;}
.ls19{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.427216pt;}
.ls8{letter-spacing:0.456576pt;}
.ls11{letter-spacing:0.535104pt;}
.ls16{letter-spacing:0.599616pt;}
.ls14{letter-spacing:0.604800pt;}
.ls13{letter-spacing:0.777600pt;}
.ls17{letter-spacing:0.818496pt;}
.ls10{letter-spacing:0.887040pt;}
.ls12{letter-spacing:1.065024pt;}
.ls1c{letter-spacing:14.489922pt;}
.ls1b{letter-spacing:14.504922pt;}
.ls1d{letter-spacing:51.732581pt;}
.ls20{letter-spacing:96.993126pt;}
.ls1f{letter-spacing:184.477179pt;}
.ls21{letter-spacing:873.826502pt;}
.ls1e{letter-spacing:988.468895pt;}
.ws1c{word-spacing:-20.638720pt;}
.ws23{word-spacing:-20.068907pt;}
.ws13{word-spacing:-19.763947pt;}
.ws20{word-spacing:-17.792000pt;}
.ws8{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws10{word-spacing:-15.218496pt;}
.wsd{word-spacing:-15.004800pt;}
.ws1d{word-spacing:-14.945280pt;}
.wsc{word-spacing:-14.935104pt;}
.ws11{word-spacing:-14.757120pt;}
.wse{word-spacing:-14.688000pt;}
.ws29{word-spacing:-13.855520pt;}
.ws36{word-spacing:-12.297237pt;}
.ws21{word-spacing:-11.742720pt;}
.ws7{word-spacing:-10.877222pt;}
.wsa{word-spacing:-10.813440pt;}
.ws6{word-spacing:-10.775424pt;}
.ws2{word-spacing:-10.773333pt;}
.ws34{word-spacing:-10.737472pt;}
.ws1{word-spacing:-10.665600pt;}
.wsf{word-spacing:-9.387648pt;}
.ws9{word-spacing:-0.509056pt;}
.ws12{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.071093pt;}
.wsb{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.053760pt;}
.ws0{word-spacing:-0.052480pt;}
.ws4{word-spacing:0.000000pt;}
.ws35{word-spacing:2.020906pt;}
.ws1f{word-spacing:15.433215pt;}
.ws37{word-spacing:17.879741pt;}
.ws16{word-spacing:20.760464pt;}
.ws17{word-spacing:22.031717pt;}
.ws26{word-spacing:52.205969pt;}
.ws39{word-spacing:94.962178pt;}
.ws18{word-spacing:104.552793pt;}
.ws2b{word-spacing:107.569768pt;}
.ws19{word-spacing:108.557141pt;}
.ws2e{word-spacing:138.256987pt;}
.ws2f{word-spacing:145.950003pt;}
.ws22{word-spacing:147.567406pt;}
.ws27{word-spacing:152.360850pt;}
.ws32{word-spacing:154.925189pt;}
.ws1b{word-spacing:156.864737pt;}
.ws31{word-spacing:160.053867pt;}
.ws2d{word-spacing:160.209085pt;}
.ws28{word-spacing:166.464714pt;}
.ws25{word-spacing:169.184272pt;}
.ws24{word-spacing:174.157731pt;}
.ws1a{word-spacing:179.556691pt;}
.ws38{word-spacing:190.923589pt;}
.ws14{word-spacing:225.157970pt;}
.ws30{word-spacing:293.399488pt;}
.ws2a{word-spacing:974.613375pt;}
.ws33{word-spacing:977.354575pt;}
.ws2c{word-spacing:1484.915957pt;}
._20{margin-left:-2604.671947pt;}
._1e{margin-left:-2601.024000pt;}
._22{margin-left:-2597.824000pt;}
._18{margin-left:-2584.128000pt;}
._21{margin-left:-2570.879947pt;}
._f{margin-left:-2561.958347pt;}
._10{margin-left:-2554.430539pt;}
._14{margin-left:-2541.312000pt;}
._1f{margin-left:-2529.920000pt;}
._13{margin-left:-2528.128000pt;}
._17{margin-left:-2524.659200pt;}
._1a{margin-left:-2501.030400pt;}
._15{margin-left:-2497.856000pt;}
._1d{margin-left:-2490.944000pt;}
._11{margin-left:-2469.632000pt;}
._16{margin-left:-2435.584000pt;}
._1c{margin-left:-2419.712000pt;}
._1b{margin-left:-2374.080000pt;}
._7{margin-left:-1827.840000pt;}
._4{margin-left:-1793.002773pt;}
._19{margin-left:-1721.215947pt;}
._23{margin-left:-1691.072000pt;}
._a{margin-left:-1481.557280pt;}
._e{margin-left:-1381.887947pt;}
._b{margin-left:-723.776053pt;}
._9{margin-left:-706.453280pt;}
._d{margin-left:-412.992000pt;}
._2f{margin-left:-316.339367pt;}
._2c{margin-left:-300.953334pt;}
._c{margin-left:-183.680000pt;}
._12{margin-left:-180.800000pt;}
._8{margin-left:-147.840000pt;}
._1{margin-left:-3.264000pt;}
._2{margin-left:-1.673173pt;}
._25{width:1.137479pt;}
._2b{width:2.028656pt;}
._27{width:2.985392pt;}
._0{width:7.104000pt;}
._5{width:14.016000pt;}
._24{width:16.410029pt;}
._2a{width:18.174229pt;}
._29{width:21.217864pt;}
._32{width:36.041136pt;}
._31{width:124.582568pt;}
._6{width:176.000053pt;}
._33{width:191.536575pt;}
._28{width:277.921055pt;}
._26{width:295.406473pt;}
._2d{width:346.709326pt;}
._30{width:376.199223pt;}
._2e{width:481.239718pt;}
._3{width:751.999787pt;}
._34{width:785.147561pt;}
.fsf{font-size:33.226667pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:37.333333pt;}
.fs10{font-size:38.624000pt;}
.fs2{font-size:42.240000pt;}
.fs12{font-size:44.234667pt;}
.fsc{font-size:48.640000pt;}
.fs9{font-size:48.730667pt;}
.fse{font-size:49.840000pt;}
.fs0{font-size:52.480000pt;}
.fs6{font-size:53.760000pt;}
.fs11{font-size:55.237333pt;}
.fs4{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:71.093333pt;}
.fsb{font-size:74.240000pt;}
.fs8{font-size:80.101333pt;}
.fsa{font-size:124.490667pt;}
.fsd{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y4f{bottom:11.520000pt;}
.y1{bottom:16.327640pt;}
.y1e{bottom:18.666667pt;}
.y2{bottom:33.584747pt;}
.y4b{bottom:33.904747pt;}
.y4e{bottom:36.800000pt;}
.y3{bottom:46.712387pt;}
.y70{bottom:48.960000pt;}
.y4d{bottom:62.080000pt;}
.y84{bottom:84.160000pt;}
.y81{bottom:85.440000pt;}
.y82{bottom:86.080000pt;}
.y7f{bottom:87.360000pt;}
.y83{bottom:96.000000pt;}
.y85{bottom:96.960000pt;}
.y80{bottom:97.280000pt;}
.y7e{bottom:98.240000pt;}
.y4a{bottom:100.144747pt;}
.y46{bottom:100.784747pt;}
.y6f{bottom:105.264747pt;}
.yf8{bottom:118.400013pt;}
.yf7{bottom:118.720013pt;}
.ydf{bottom:122.880000pt;}
.y49{bottom:127.664760pt;}
.y45{bottom:128.304760pt;}
.y103{bottom:132.480000pt;}
.y6e{bottom:132.784760pt;}
.ye7{bottom:133.440000pt;}
.y86{bottom:142.400000pt;}
.y102{bottom:148.480000pt;}
.y79{bottom:153.280000pt;}
.y48{bottom:155.504760pt;}
.y44{bottom:155.824760pt;}
.y6d{bottom:160.624760pt;}
.y101{bottom:164.480000pt;}
.yeb{bottom:165.760000pt;}
.y47{bottom:183.024760pt;}
.y43{bottom:183.344760pt;}
.y6c{bottom:188.144760pt;}
.y1c{bottom:189.104760pt;}
.y105{bottom:191.680000pt;}
.yea{bottom:198.080000pt;}
.y42{bottom:211.184760pt;}
.y7a{bottom:212.160000pt;}
.y6b{bottom:215.664760pt;}
.y1b{bottom:225.904760pt;}
.ye9{bottom:230.400000pt;}
.ya3{bottom:231.360000pt;}
.y100{bottom:232.320000pt;}
.ye4{bottom:234.880000pt;}
.y41{bottom:238.704760pt;}
.ye5{bottom:240.000000pt;}
.y6a{bottom:243.184760pt;}
.yff{bottom:248.320000pt;}
.ya2{bottom:252.480000pt;}
.y1a{bottom:262.704760pt;}
.ye8{bottom:262.720000pt;}
.yfe{bottom:264.320000pt;}
.y40{bottom:266.224760pt;}
.y69{bottom:271.024760pt;}
.y7b{bottom:271.040000pt;}
.ye6{bottom:275.200000pt;}
.y9f{bottom:278.400013pt;}
.yfd{bottom:280.320000pt;}
.yfa{bottom:281.920013pt;}
.y8b{bottom:292.800000pt;}
.y3f{bottom:293.744760pt;}
.yef{bottom:295.360000pt;}
.yfc{bottom:296.320000pt;}
.y19{bottom:296.624760pt;}
.y68{bottom:298.544760pt;}
.y9a{bottom:299.520000pt;}
.yec{bottom:305.920000pt;}
.yf0{bottom:307.520000pt;}
.y8d{bottom:308.160000pt;}
.yfb{bottom:312.320000pt;}
.y9e{bottom:313.600013pt;}
.y18{bottom:315.504760pt;}
.ye0{bottom:317.760000pt;}
.yf9{bottom:320.320013pt;}
.y3e{bottom:321.584760pt;}
.y67{bottom:326.064760pt;}
.y7c{bottom:329.920000pt;}
.y89{bottom:332.480000pt;}
.y8c{bottom:337.920000pt;}
.y17{bottom:342.064760pt;}
.yca{bottom:342.080000pt;}
.yce{bottom:345.920000pt;}
.y9d{bottom:348.480013pt;}
.y3d{bottom:349.104760pt;}
.ya1{bottom:350.400000pt;}
.y66{bottom:353.584760pt;}
.ycb{bottom:356.160000pt;}
.ye3{bottom:360.320000pt;}
.ya0{bottom:371.200000pt;}
.yf3{bottom:375.360000pt;}
.y16{bottom:375.664760pt;}
.y3c{bottom:376.624760pt;}
.yf4{bottom:376.640000pt;}
.y97{bottom:378.560000pt;}
.y98{bottom:379.840000pt;}
.y106{bottom:380.480000pt;}
.y65{bottom:381.424760pt;}
.yc8{bottom:383.360000pt;}
.y9c{bottom:383.360013pt;}
.y8a{bottom:385.280000pt;}
.y7d{bottom:388.800000pt;}
.ya6{bottom:392.640000pt;}
.y88{bottom:394.240000pt;}
.ye2{bottom:402.880000pt;}
.y95{bottom:403.840000pt;}
.y3b{bottom:404.144760pt;}
.y15{bottom:405.104760pt;}
.ycd{bottom:405.120000pt;}
.y36{bottom:405.424760pt;}
.y64{bottom:408.944760pt;}
.yc6{bottom:409.600000pt;}
.yc7{bottom:410.880000pt;}
.yc9{bottom:416.000000pt;}
.y9b{bottom:418.560013pt;}
.y99{bottom:423.680000pt;}
.ycc{bottom:425.280000pt;}
.y3a{bottom:431.984760pt;}
.y94{bottom:432.640000pt;}
.y63{bottom:436.464760pt;}
.y78{bottom:437.760013pt;}
.y71{bottom:439.680000pt;}
.y14{bottom:441.904760pt;}
.ye1{bottom:445.440000pt;}
.y35{bottom:446.384760pt;}
.ya4{bottom:451.200000pt;}
.y39{bottom:459.504760pt;}
.ycf{bottom:460.480000pt;}
.y62{bottom:463.984760pt;}
.y34{bottom:473.584760pt;}
.y76{bottom:480.320000pt;}
.yee{bottom:481.920000pt;}
.y13{bottom:486.064760pt;}
.y38{bottom:487.024760pt;}
.y61{bottom:491.504760pt;}
.ydb{bottom:506.560000pt;}
.y37{bottom:514.544760pt;}
.y33{bottom:514.864760pt;}
.y12{bottom:515.504760pt;}
.y60{bottom:519.344760pt;}
.y75{bottom:520.320000pt;}
.yd1{bottom:538.880000pt;}
.ya9{bottom:539.840000pt;}
.ya8{bottom:540.800000pt;}
.y32{bottom:542.384760pt;}
.yde{bottom:543.040000pt;}
.yd8{bottom:544.640000pt;}
.y5f{bottom:546.864760pt;}
.yd0{bottom:548.800000pt;}
.yd6{bottom:550.400000pt;}
.y5a{bottom:554.224760pt;}
.yd2{bottom:554.880000pt;}
.yd9{bottom:558.720000pt;}
.y11{bottom:559.664760pt;}
.yaa{bottom:560.640000pt;}
.y74{bottom:560.960000pt;}
.ya7{bottom:561.600000pt;}
.y31{bottom:569.904760pt;}
.y5e{bottom:574.384760pt;}
.ydd{bottom:579.520000pt;}
.y59{bottom:582.064760pt;}
.yaf{bottom:585.280000pt;}
.y90{bottom:585.600000pt;}
.ybd{bottom:586.240027pt;}
.y10{bottom:589.104760pt;}
.yd3{bottom:594.240000pt;}
.yd4{bottom:595.840000pt;}
.y30{bottom:597.424760pt;}
.y73{bottom:600.000000pt;}
.y5d{bottom:601.904760pt;}
.yb7{bottom:602.560013pt;}
.yd5{bottom:608.320000pt;}
.yc5{bottom:608.640000pt;}
.ybc{bottom:609.280027pt;}
.y58{bottom:609.584760pt;}
.yf1{bottom:612.160000pt;}
.y8e{bottom:612.800000pt;}
.yf2{bottom:613.440000pt;}
.y91{bottom:614.080000pt;}
.ydc{bottom:616.000000pt;}
.yc2{bottom:616.320000pt;}
.y57{bottom:616.944760pt;}
.yb3{bottom:616.960000pt;}
.yf5{bottom:618.560013pt;}
.yf6{bottom:619.840013pt;}
.yd7{bottom:621.120000pt;}
.yb6{bottom:622.720013pt;}
.y2f{bottom:624.944760pt;}
.yf{bottom:625.904760pt;}
.yc4{bottom:629.120000pt;}
.y5c{bottom:629.744760pt;}
.y92{bottom:632.320000pt;}
.ybb{bottom:632.320027pt;}
.yc1{bottom:637.120000pt;}
.yb2{bottom:637.760000pt;}
.y72{bottom:639.680000pt;}
.yae{bottom:642.560000pt;}
.y26{bottom:643.504760pt;}
.y56{bottom:644.464760pt;}
.y8f{bottom:646.400000pt;}
.yda{bottom:648.320000pt;}
.y2e{bottom:652.784760pt;}
.y5b{bottom:655.344760pt;}
.yba{bottom:655.360027pt;}
.yc0{bottom:657.920000pt;}
.yb1{bottom:658.560000pt;}
.y87{bottom:665.920000pt;}
.yed{bottom:666.880000pt;}
.ye{bottom:670.064760pt;}
.yad{bottom:671.360000pt;}
.y77{bottom:671.680000pt;}
.y55{bottom:671.984760pt;}
.yb9{bottom:678.400027pt;}
.ybf{bottom:678.720000pt;}
.yb0{bottom:679.360000pt;}
.y25{bottom:680.304760pt;}
.yb4{bottom:684.480000pt;}
.y54{bottom:692.464760pt;}
.ya5{bottom:697.920000pt;}
.yd{bottom:699.504760pt;}
.y96{bottom:699.520000pt;}
.yac{bottom:700.160000pt;}
.yb8{bottom:701.440027pt;}
.yab{bottom:703.680000pt;}
.y2d{bottom:707.824760pt;}
.y24{bottom:717.104760pt;}
.y104{bottom:717.440000pt;}
.y93{bottom:718.080000pt;}
.yb5{bottom:720.960000pt;}
.ybe{bottom:721.280000pt;}
.y53{bottom:724.152400pt;}
.yc3{bottom:724.480000pt;}
.y2c{bottom:735.344760pt;}
.yc{bottom:743.664760pt;}
.y52{bottom:750.072400pt;}
.y23{bottom:753.904760pt;}
.y2b{bottom:763.184760pt;}
.y51{bottom:775.992400pt;}
.yb{bottom:780.464760pt;}
.y22{bottom:790.704760pt;}
.ya{bottom:791.664760pt;}
.y50{bottom:801.912400pt;}
.y9{bottom:809.904760pt;}
.y2a{bottom:818.224627pt;}
.y21{bottom:827.504760pt;}
.y4c{bottom:827.832400pt;}
.y8{bottom:828.464760pt;}
.y29{bottom:845.744760pt;}
.y7{bottom:846.704760pt;}
.y20{bottom:855.024760pt;}
.y28{bottom:873.584760pt;}
.y6{bottom:878.384760pt;}
.y1f{bottom:891.824760pt;}
.y27{bottom:901.104760pt;}
.y5{bottom:928.624760pt;}
.y1d{bottom:1036.000000pt;}
.h3{height:15.679987pt;}
.h14{height:25.280027pt;}
.h26{height:26.282813pt;}
.h17{height:28.627500pt;}
.h7{height:29.349375pt;}
.h2{height:36.669375pt;}
.h8{height:38.937500pt;}
.h10{height:39.037500pt;}
.h15{height:40.021875pt;}
.h2a{height:40.283625pt;}
.hd{height:43.343750pt;}
.h4{height:43.375000pt;}
.h22{height:44.055000pt;}
.hb{height:44.437500pt;}
.h5{height:44.468750pt;}
.he{height:44.718750pt;}
.h25{height:51.981563pt;}
.h13{height:52.019375pt;}
.h12{height:52.037500pt;}
.h16{height:52.671875pt;}
.h27{height:53.261563pt;}
.h2d{height:55.256809pt;}
.h1b{height:56.070000pt;}
.h2f{height:57.350000pt;}
.h2b{height:57.610813pt;}
.hc{height:58.046875pt;}
.h28{height:58.381563pt;}
.ha{height:58.768750pt;}
.h18{height:58.768857pt;}
.h9{height:58.769283pt;}
.h6{height:58.789375pt;}
.h23{height:66.750000pt;}
.h1f{height:72.134740pt;}
.h1c{height:74.148125pt;}
.h11{height:75.839920pt;}
.hf{height:75.840000pt;}
.h20{height:77.430000pt;}
.h24{height:82.701562pt;}
.h1d{height:83.543188pt;}
.h2c{height:95.255000pt;}
.h29{height:98.061563pt;}
.h1e{height:126.314260pt;}
.h21{height:133.500000pt;}
.h2e{height:134.780000pt;}
.h1a{height:793.333333pt;}
.h19{height:793.600000pt;}
.h1{height:1023.344667pt;}
.h0{height:1056.000000pt;}
.w2{width:7.680013pt;}
.w3{width:14.720013pt;}
.w4{width:108.479987pt;}
.w6{width:135.360000pt;}
.w5{width:145.280000pt;}
.w7{width:183.360000pt;}
.w1{width:783.344667pt;}
.w0{width:816.000000pt;}
.w8{width:1122.560000pt;}
.w9{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.720000pt;}
.x1{left:16.327600pt;}
.x11{left:51.520000pt;}
.xb{left:60.480000pt;}
.x6c{left:90.880000pt;}
.x9{left:93.440000pt;}
.x2{left:96.319987pt;}
.x42{left:97.280000pt;}
.x12{left:104.640000pt;}
.x69{left:105.600000pt;}
.xc{left:110.727613pt;}
.x62{left:112.960000pt;}
.x3b{left:117.760000pt;}
.x64{left:118.720000pt;}
.x8{left:136.320000pt;}
.x48{left:140.160000pt;}
.x7{left:144.319867pt;}
.x5f{left:146.880000pt;}
.x5e{left:149.120000pt;}
.x6b{left:152.960000pt;}
.x5a{left:155.200000pt;}
.x49{left:156.160000pt;}
.x35{left:157.760000pt;}
.x32{left:159.040000pt;}
.x5d{left:160.000000pt;}
.x33{left:160.960000pt;}
.x36{left:169.920000pt;}
.x52{left:174.720000pt;}
.x3f{left:176.960000pt;}
.x28{left:183.360000pt;}
.x37{left:192.000000pt;}
.x4b{left:201.280000pt;}
.x5b{left:202.880000pt;}
.x54{left:205.120000pt;}
.xe{left:219.847600pt;}
.x3d{left:223.040000pt;}
.x15{left:225.280013pt;}
.x39{left:230.720000pt;}
.x67{left:235.840000pt;}
.x16{left:238.080000pt;}
.x6a{left:240.960000pt;}
.x3c{left:244.160000pt;}
.x17{left:246.080000pt;}
.x59{left:247.360000pt;}
.x13{left:251.840000pt;}
.x5{left:255.442560pt;}
.x3e{left:258.560000pt;}
.x63{left:259.840000pt;}
.x4e{left:263.360000pt;}
.x41{left:276.160000pt;}
.x53{left:280.000000pt;}
.x4f{left:281.280000pt;}
.x3a{left:282.240000pt;}
.x34{left:299.200000pt;}
.x4c{left:314.880000pt;}
.x18{left:315.840000pt;}
.x2c{left:317.760000pt;}
.x30{left:320.960000pt;}
.x29{left:323.520000pt;}
.x14{left:329.280000pt;}
.x19{left:341.440000pt;}
.xf{left:365.767600pt;}
.x1a{left:367.360000pt;}
.x4d{left:369.280000pt;}
.x40{left:381.760000pt;}
.x1b{left:392.960000pt;}
.x61{left:401.279973pt;}
.x60{left:404.479973pt;}
.xa{left:406.727600pt;}
.x6{left:407.687600pt;}
.x3{left:411.207600pt;}
.x66{left:425.600000pt;}
.x1c{left:432.640000pt;}
.x55{left:451.840000pt;}
.x50{left:454.720000pt;}
.x1d{left:458.240000pt;}
.x46{left:459.840000pt;}
.x38{left:460.800000pt;}
.x1e{left:483.840000pt;}
.x43{left:493.439987pt;}
.x10{left:501.767600pt;}
.x1f{left:509.760000pt;}
.x51{left:511.040000pt;}
.x44{left:515.520013pt;}
.x45{left:522.880013pt;}
.x57{left:537.280000pt;}
.x2d{left:544.640000pt;}
.x20{left:547.840000pt;}
.x56{left:569.280000pt;}
.x65{left:571.840000pt;}
.x21{left:573.440000pt;}
.x2e{left:592.960000pt;}
.x22{left:599.040000pt;}
.x2a{left:606.400000pt;}
.x23{left:624.640000pt;}
.x58{left:626.880000pt;}
.x5c{left:628.800000pt;}
.x4{left:630.828000pt;}
.x24{left:662.400000pt;}
.x2b{left:668.160000pt;}
.x25{left:688.000000pt;}
.x2f{left:706.560000pt;}
.x26{left:713.600000pt;}
.x47{left:726.400000pt;}
.x27{left:739.520000pt;}
.x4a{left:766.720000pt;}
.x68{left:780.160000pt;}
.x31{left:839.040000pt;}
}




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