
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_399e8f4cb6ba947bb5868a0c.woff')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_976ddc38928b879c4dde276b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_e51752e035e83aa5dcff4983.woff')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_df516b01ad1b9ba7a9e36508.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ec70b421b591df7a751a462.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_622a18dff33b37f0aa56489a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_86c86a479bd8942f3a842468.woff')format("woff");}.ff9{font-family:ff9;line-height:1.083984;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_c65c26ab7d0ed95b6653d179.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d6c95e32d3f6155d1036abf4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3197f93061f9f3bce952064b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.736816;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_fbcac351f1012e1e7fa7ceff.woff')format("woff");}.ffd{font-family:ffd;line-height:1.345215;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_1f443a515cf8e929613621db.woff')format("woff");}.ffe{font-family:ffe;line-height:1.329590;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_d3320fbb33b494a5a7dfc8bd.woff')format("woff");}.fff{font-family:fff;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4f51cef98c90bf4e7236c709.woff')format("woff");}.ff10{font-family:ff10;line-height:0.751953;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_9ce98675c781c995757aefa1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921875;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_a91b3e0261e1bfb78ed19777.woff')format("woff");}.ff12{font-family:ff12;line-height:0.946777;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_3e5a41407474cfd70028aed6.woff')format("woff");}.ff13{font-family:ff13;line-height:0.966309;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_e6c026a18f339d63ea9e33a6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ab33430e97bada13ccdfd443.woff')format("woff");}.ff16{font-family:ff16;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_ba6051f35b75d5991c616b7c.woff')format("woff");}.ff18{font-family:ff18;line-height:1.133301;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:ff19;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_0faf7a7fd21ab55aecb2e410.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.751953;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.312573px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.312573px;}
.lsa6{letter-spacing:-19.920000px;}
.ls42{letter-spacing:-2.136000px;}
.ls3d{letter-spacing:-1.631719px;}
.ls8a{letter-spacing:-1.446000px;}
.lsa4{letter-spacing:-1.296000px;}
.ls87{letter-spacing:-0.726000px;}
.ls4a{letter-spacing:-0.540000px;}
.lsa0{letter-spacing:-0.460800px;}
.ls6a{letter-spacing:-0.450600px;}
.ls49{letter-spacing:-0.379470px;}
.ls9f{letter-spacing:-0.367800px;}
.ls6b{letter-spacing:-0.336000px;}
.ls30{letter-spacing:-0.298200px;}
.lsa5{letter-spacing:-0.266400px;}
.ls3b{letter-spacing:-0.265629px;}
.ls86{letter-spacing:-0.265200px;}
.ls32{letter-spacing:-0.248400px;}
.ls36{letter-spacing:-0.226200px;}
.ls68{letter-spacing:-0.223200px;}
.ls71{letter-spacing:-0.216000px;}
.ls88{letter-spacing:-0.205200px;}
.ls8b{letter-spacing:-0.202800px;}
.ls41{letter-spacing:-0.132600px;}
.ls89{letter-spacing:-0.111000px;}
.ls46{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.106800px;}
.ls84{letter-spacing:-0.105000px;}
.ls35{letter-spacing:-0.089400px;}
.ls6f{letter-spacing:-0.078000px;}
.ls45{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.047520px;}
.ls31{letter-spacing:-0.007920px;}
.ls85{letter-spacing:-0.005040px;}
.ls2d{letter-spacing:0.000000px;}
.lsa2{letter-spacing:0.010800px;}
.ls3e{letter-spacing:0.024480px;}
.ls2e{letter-spacing:0.033120px;}
.ls6{letter-spacing:0.066960px;}
.ls69{letter-spacing:0.101400px;}
.ls26{letter-spacing:0.102240px;}
.ls60{letter-spacing:0.109440px;}
.ls5f{letter-spacing:0.141120px;}
.ls33{letter-spacing:0.147000px;}
.ls53{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.152640px;}
.ls58{letter-spacing:0.161760px;}
.ls70{letter-spacing:0.166200px;}
.ls1b{letter-spacing:0.172800px;}
.ls2c{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.185760px;}
.lsa3{letter-spacing:0.189600px;}
.ls38{letter-spacing:0.189735px;}
.ls6d{letter-spacing:0.204600px;}
.ls3c{letter-spacing:0.208708px;}
.ls18{letter-spacing:0.209400px;}
.ls7{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.248400px;}
.ls1e{letter-spacing:0.259200px;}
.ls3a{letter-spacing:0.265629px;}
.ls3f{letter-spacing:0.267000px;}
.ls6c{letter-spacing:0.268800px;}
.ls16{letter-spacing:0.269400px;}
.ls63{letter-spacing:0.277800px;}
.ls57{letter-spacing:0.279600px;}
.ls47{letter-spacing:0.284602px;}
.ls6e{letter-spacing:0.297600px;}
.ls2f{letter-spacing:0.298200px;}
.ls34{letter-spacing:0.302400px;}
.ls66{letter-spacing:0.303600px;}
.ls54{letter-spacing:0.305760px;}
.ls51{letter-spacing:0.336960px;}
.ls9c{letter-spacing:0.352200px;}
.ls0{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.365040px;}
.ls3{letter-spacing:0.365760px;}
.ls80{letter-spacing:0.421920px;}
.ls61{letter-spacing:0.456480px;}
.lsf{letter-spacing:0.474337px;}
.ls39{letter-spacing:0.493310px;}
.ls37{letter-spacing:0.645098px;}
.ls59{letter-spacing:0.645120px;}
.ls77{letter-spacing:0.692640px;}
.ls9{letter-spacing:0.712080px;}
.ls40{letter-spacing:0.714000px;}
.ls48{letter-spacing:0.834833px;}
.ls1{letter-spacing:0.905760px;}
.ls83{letter-spacing:0.906000px;}
.ls4f{letter-spacing:1.056960px;}
.ls96{letter-spacing:1.601760px;}
.ls4e{letter-spacing:1.625760px;}
.lsa1{letter-spacing:1.686000px;}
.ls4b{letter-spacing:2.321760px;}
.ls4d{letter-spacing:2.345760px;}
.ls4c{letter-spacing:3.065760px;}
.ls8f{letter-spacing:3.128400px;}
.ls90{letter-spacing:3.185760px;}
.ls15{letter-spacing:3.785760px;}
.ls82{letter-spacing:3.905760px;}
.lsb{letter-spacing:4.269032px;}
.lsa{letter-spacing:4.458767px;}
.ls17{letter-spacing:4.505760px;}
.ls8c{letter-spacing:4.685760px;}
.ls93{letter-spacing:5.201760px;}
.ls64{letter-spacing:5.225760px;}
.ls19{letter-spacing:5.945760px;}
.ls1a{letter-spacing:6.665760px;}
.ls7b{letter-spacing:6.785760px;}
.ls95{letter-spacing:6.845760px;}
.ls10{letter-spacing:7.304788px;}
.ls7d{letter-spacing:7.361760px;}
.ls79{letter-spacing:7.385760px;}
.ls11{letter-spacing:7.431278px;}
.ls8e{letter-spacing:7.505760px;}
.ls7e{letter-spacing:7.565760px;}
.ls12{letter-spacing:8.063727px;}
.ls5c{letter-spacing:8.105760px;}
.ls91{letter-spacing:8.225760px;}
.ls81{letter-spacing:8.285760px;}
.lsc{letter-spacing:8.348330px;}
.ls9e{letter-spacing:8.801760px;}
.lse{letter-spacing:8.822666px;}
.ls5a{letter-spacing:8.825760px;}
.ls5b{letter-spacing:8.945760px;}
.ls98{letter-spacing:9.360000px;}
.ls94{letter-spacing:9.521760px;}
.ls5e{letter-spacing:9.545760px;}
.lsd{letter-spacing:9.581605px;}
.ls72{letter-spacing:9.665760px;}
.ls7c{letter-spacing:9.725760px;}
.ls1c{letter-spacing:10.985760px;}
.ls1d{letter-spacing:11.165760px;}
.ls5d{letter-spacing:11.705760px;}
.ls8d{letter-spacing:11.768400px;}
.ls20{letter-spacing:12.425760px;}
.ls67{letter-spacing:13.145760px;}
.ls7f{letter-spacing:13.265760px;}
.ls55{letter-spacing:13.865760px;}
.ls7a{letter-spacing:14.561760px;}
.ls56{letter-spacing:14.585760px;}
.ls92{letter-spacing:14.705760px;}
.ls73{letter-spacing:15.305760px;}
.ls75{letter-spacing:15.485760px;}
.ls62{letter-spacing:15.786720px;}
.ls74{letter-spacing:16.025760px;}
.ls97{letter-spacing:16.745760px;}
.ls65{letter-spacing:17.424000px;}
.ls76{letter-spacing:17.465760px;}
.ls78{letter-spacing:18.185760px;}
.ls1f{letter-spacing:19.625760px;}
.ls9d{letter-spacing:20.321760px;}
.ls22{letter-spacing:20.345760px;}
.ls21{letter-spacing:21.065760px;}
.ls25{letter-spacing:21.128400px;}
.ls23{letter-spacing:21.185760px;}
.ls24{letter-spacing:21.245760px;}
.ls2b{letter-spacing:23.225760px;}
.ls27{letter-spacing:25.385760px;}
.ls52{letter-spacing:25.505280px;}
.ls29{letter-spacing:30.425760px;}
.ls2a{letter-spacing:30.545760px;}
.ls9a{letter-spacing:32.585760px;}
.ls9b{letter-spacing:32.765760px;}
.ls50{letter-spacing:34.506720px;}
.ls28{letter-spacing:37.625760px;}
.ls13{letter-spacing:77.886120px;}
.ls14{letter-spacing:78.075855px;}
.ls8{letter-spacing:198.968400px;}
.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;}
}
.ws41{word-spacing:-60.112200px;}
.ws35{word-spacing:-60.063600px;}
.ws5{word-spacing:-60.058200px;}
.ws2e{word-spacing:-60.039600px;}
.ws33{word-spacing:-60.037800px;}
.ws7{word-spacing:-59.999040px;}
.ws4{word-spacing:-59.793120px;}
.ws2{word-spacing:-59.760000px;}
.ws3b{word-spacing:-59.557200px;}
.ws2a{word-spacing:-59.424000px;}
.ws23{word-spacing:-57.755262px;}
.ws11{word-spacing:-57.565527px;}
.ws22{word-spacing:-57.205031px;}
.ws14{word-spacing:-57.186057px;}
.ws15{word-spacing:-57.129137px;}
.ws12{word-spacing:-57.110163px;}
.ws10{word-spacing:-56.920429px;}
.ws24{word-spacing:-56.540959px;}
.ws16{word-spacing:-55.288710px;}
.wsc{word-spacing:-51.875280px;}
.ws31{word-spacing:-51.870480px;}
.ws19{word-spacing:-51.842280px;}
.ws1a{word-spacing:-51.832080px;}
.ws36{word-spacing:-51.811920px;}
.ws9{word-spacing:-51.782280px;}
.ws1b{word-spacing:-51.745680px;}
.ws2d{word-spacing:-51.722880px;}
.wsb{word-spacing:-51.719880px;}
.ws27{word-spacing:-51.674280px;}
.ws18{word-spacing:-51.597360px;}
.ws3f{word-spacing:-51.583680px;}
.ws8{word-spacing:-51.572880px;}
.ws32{word-spacing:-51.494880px;}
.ws37{word-spacing:-51.467880px;}
.ws3a{word-spacing:-51.461880px;}
.ws39{word-spacing:-51.367680px;}
.wsa{word-spacing:-51.324480px;}
.ws38{word-spacing:-51.307680px;}
.ws3d{word-spacing:-51.205080px;}
.ws28{word-spacing:-51.122280px;}
.ws3e{word-spacing:-51.112080px;}
.ws40{word-spacing:-50.276880px;}
.ws1c{word-spacing:-49.436880px;}
.ws3{word-spacing:-41.832000px;}
.ws1f{word-spacing:-39.381840px;}
.ws3c{word-spacing:-38.664720px;}
.ws13{word-spacing:-38.022846px;}
.ws2f{word-spacing:-35.616960px;}
.ws1e{word-spacing:-35.257680px;}
.ws30{word-spacing:-31.493520px;}
.ws34{word-spacing:-20.304000px;}
.ws2c{word-spacing:-19.083000px;}
.ws43{word-spacing:-17.088240px;}
.ws6{word-spacing:-17.031600px;}
.ws29{word-spacing:-16.924800px;}
.ws2b{word-spacing:-16.643040px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.374240px;}
.ws42{word-spacing:-16.366320px;}
.ws17{word-spacing:-16.222322px;}
.ws1{word-spacing:-15.300000px;}
.ws25{word-spacing:-14.940000px;}
.ws21{word-spacing:-13.392000px;}
.wsf{word-spacing:-10.440000px;}
.wse{word-spacing:-10.213800px;}
.ws20{word-spacing:-8.928000px;}
.ws1d{word-spacing:-0.059760px;}
.ws26{word-spacing:0.000000px;}
._12{margin-left:-20.766660px;}
._c{margin-left:-19.181593px;}
._1{margin-left:-18.138960px;}
._17{margin-left:-12.876368px;}
._11{margin-left:-11.029200px;}
._e{margin-left:-9.869700px;}
._7{margin-left:-8.727799px;}
._15{margin-left:-6.132720px;}
._10{margin-left:-5.120953px;}
._2{margin-left:-4.063680px;}
._6{margin-left:-2.288160px;}
._0{margin-left:-1.093680px;}
._4{width:1.171920px;}
._5{width:3.140400px;}
._3{width:4.242960px;}
._9{width:5.688848px;}
._a{width:7.489299px;}
._b{width:9.083080px;}
._8{width:10.830660px;}
._f{width:11.931560px;}
._19{width:13.819020px;}
._16{width:14.825280px;}
._18{width:18.003840px;}
._d{width:19.980553px;}
._1b{width:21.044040px;}
._13{width:24.957120px;}
._1a{width:26.864220px;}
._14{width:37.876080px;}
._1c{width:39.809520px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs6{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y51{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y42{bottom:10.260000px;}
.y4f{bottom:13.140000px;}
.y4{bottom:22.710000px;}
.y4e{bottom:34.020000px;}
.y41{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y40{bottom:51.120000px;}
.y37{bottom:55.125000px;}
.y7{bottom:57.060000px;}
.y4d{bottom:57.240000px;}
.y3f{bottom:62.274000px;}
.y3e{bottom:73.974000px;}
.y36{bottom:78.885000px;}
.y4c{bottom:80.094000px;}
.y3d{bottom:87.114000px;}
.y38{bottom:88.956000px;}
.y4b{bottom:99.354000px;}
.y3c{bottom:100.074000px;}
.y9d{bottom:101.916000px;}
.y35{bottom:103.905000px;}
.y4a{bottom:115.914000px;}
.y3b{bottom:122.034000px;}
.y79{bottom:123.696000px;}
.y49{bottom:123.834000px;}
.y34{bottom:125.325000px;}
.yc3{bottom:132.696000px;}
.y9c{bottom:138.816000px;}
.y48{bottom:139.314000px;}
.y78{bottom:143.676000px;}
.y33{bottom:145.305000px;}
.yc2{bottom:152.670000px;}
.y47{bottom:154.974000px;}
.y9b{bottom:158.790000px;}
.y32{bottom:165.285000px;}
.y77{bottom:167.250000px;}
.y46{bottom:170.454000px;}
.yc1{bottom:172.470000px;}
.y9a{bottom:178.770000px;}
.y3a{bottom:184.134000px;}
.y31{bottom:185.265000px;}
.y45{bottom:185.934000px;}
.yc0{bottom:192.450000px;}
.y39{bottom:194.754000px;}
.y99{bottom:198.570000px;}
.y44{bottom:201.414000px;}
.y76{bottom:202.530000px;}
.y30{bottom:205.065000px;}
.ybf{bottom:212.430000px;}
.y75{bottom:222.510000px;}
.y98{bottom:223.770000px;}
.y2f{bottom:225.045000px;}
.ybe{bottom:236.010000px;}
.y2e{bottom:245.025000px;}
.y74{bottom:246.090000px;}
.y1f{bottom:250.965000px;}
.ybd{bottom:257.430000px;}
.y2d{bottom:265.005000px;}
.y1e{bottom:275.085000px;}
.ybc{bottom:282.630000px;}
.y73{bottom:282.990000px;}
.y2c{bottom:285.015000px;}
.y97{bottom:290.010000px;}
.y1d{bottom:299.235000px;}
.y72{bottom:302.970000px;}
.y2b{bottom:308.595000px;}
.y96{bottom:309.990000px;}
.y11{bottom:313.770000px;}
.ybb{bottom:317.910000px;}
.y71{bottom:322.770000px;}
.y1c{bottom:323.535000px;}
.y95{bottom:329.835000px;}
.y2a{bottom:332.895000px;}
.yba{bottom:337.935000px;}
.y70{bottom:346.575000px;}
.y1b{bottom:347.655000px;}
.y94{bottom:349.815000px;}
.y29{bottom:355.575000px;}
.yb9{bottom:357.915000px;}
.y93{bottom:369.795000px;}
.y6f{bottom:371.595000px;}
.y1a{bottom:371.775000px;}
.yb8{bottom:377.895000px;}
.y28{bottom:378.075000px;}
.y92{bottom:389.775000px;}
.y6e{bottom:393.015000px;}
.y19{bottom:395.895000px;}
.y27{bottom:400.755000px;}
.yb7{bottom:408.135000px;}
.y91{bottom:409.755000px;}
.y6d{bottom:416.595000px;}
.y18{bottom:420.015000px;}
.y26{bottom:423.255000px;}
.yb6{bottom:428.115000px;}
.y90{bottom:433.335000px;}
.y6c{bottom:441.795000px;}
.y17{bottom:444.135000px;}
.y25{bottom:445.935000px;}
.yb5{bottom:451.695000px;}
.y8f{bottom:454.755000px;}
.y6b{bottom:466.815000px;}
.y16{bottom:468.255000px;}
.y24{bottom:468.435000px;}
.y8e{bottom:474.735000px;}
.y23{bottom:491.115000px;}
.y15{bottom:492.555000px;}
.y8d{bottom:498.315000px;}
.y6a{bottom:498.675000px;}
.yb4{bottom:510.915000px;}
.y22{bottom:513.615000px;}
.y14{bottom:516.675000px;}
.y69{bottom:518.475000px;}
.yb3{bottom:530.895000px;}
.y21{bottom:536.295000px;}
.y13{bottom:540.795000px;}
.y68{bottom:543.675000px;}
.y8c{bottom:549.075000px;}
.yb2{bottom:550.695000px;}
.y20{bottom:558.840000px;}
.y12{bottom:564.960000px;}
.y67{bottom:567.255000px;}
.y8b{bottom:568.875000px;}
.yb1{bottom:570.675000px;}
.y8a{bottom:588.855000px;}
.yb0{bottom:590.655000px;}
.y66{bottom:593.895000px;}
.y89{bottom:608.865000px;}
.yaf{bottom:610.665000px;}
.y65{bottom:618.945000px;}
.y88{bottom:628.845000px;}
.yae{bottom:630.645000px;}
.y64{bottom:649.185000px;}
.yad{bottom:654.225000px;}
.y87{bottom:659.085000px;}
.y63{bottom:669.165000px;}
.y86{bottom:679.065000px;}
.y62{bottom:694.185000px;}
.y85{bottom:702.645000px;}
.yac{bottom:713.445000px;}
.y61{bottom:717.945000px;}
.yab{bottom:733.425000px;}
.y60{bottom:744.765000px;}
.y84{bottom:753.225000px;}
.y5f{bottom:771.765000px;}
.y83{bottom:773.205000px;}
.yaa{bottom:793.185000px;}
.y82{bottom:796.965000px;}
.y5e{bottom:798.585000px;}
.ya9{bottom:813.165000px;}
.y81{bottom:821.985000px;}
.y5d{bottom:827.025000px;}
.ya8{bottom:833.145000px;}
.y80{bottom:843.405000px;}
.y5c{bottom:852.045000px;}
.ya7{bottom:856.725000px;}
.y7f{bottom:867.030000px;}
.y5b{bottom:875.670000px;}
.y10{bottom:891.150000px;}
.y7e{bottom:892.230000px;}
.yf{bottom:900.150000px;}
.y5a{bottom:900.870000px;}
.yca{bottom:901.050000px;}
.y7d{bottom:913.650000px;}
.ya6{bottom:921.030000px;}
.yc9{bottom:924.630000px;}
.y59{bottom:925.890000px;}
.ye{bottom:926.790000px;}
.y7c{bottom:933.450000px;}
.ya5{bottom:941.010000px;}
.y58{bottom:951.090000px;}
.yc8{bottom:951.450000px;}
.yd{bottom:951.990000px;}
.y7b{bottom:957.030000px;}
.ya4{bottom:960.990000px;}
.yc{bottom:975.570000px;}
.y57{bottom:976.110000px;}
.yc7{bottom:978.450000px;}
.ya3{bottom:980.970000px;}
.yb{bottom:1000.590000px;}
.ya2{bottom:1000.950000px;}
.y56{bottom:1001.130000px;}
.yc6{bottom:1005.270000px;}
.y7a{bottom:1007.790000px;}
.ya1{bottom:1020.930000px;}
.ya{bottom:1025.790000px;}
.y55{bottom:1027.770000px;}
.yc5{bottom:1032.270000px;}
.ya0{bottom:1040.730000px;}
.y9{bottom:1047.210000px;}
.y54{bottom:1047.750000px;}
.yc4{bottom:1059.090000px;}
.y9f{bottom:1060.710000px;}
.y53{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y50{bottom:1075.500000px;}
.y9e{bottom:1084.290000px;}
.y52{bottom:1087.710000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h16{height:8.946914px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h19{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h15{height:38.100586px;}
.h13{height:38.997070px;}
.h14{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h17{height:43.681992px;}
.h1d{height:44.236406px;}
.h5{height:46.251562px;}
.h18{height:52.640279px;}
.h1c{height:55.266328px;}
.h9{height:56.054180px;}
.he{height:61.033819px;}
.hf{height:61.422924px;}
.h1a{height:64.002656px;}
.h8{height:64.487109px;}
.h3{height:65.884219px;}
.h1b{height:67.535156px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:224.100000px;}
.hb{height:574.665000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.056000px;}
.x1a{left:8.136000px;}
.x4{left:12.780000px;}
.x19{left:16.056000px;}
.x1d{left:18.216000px;}
.x17{left:19.656000px;}
.x18{left:26.136000px;}
.x1f{left:29.196000px;}
.x11{left:33.336000px;}
.x6{left:36.000000px;}
.x1e{left:47.736000px;}
.x12{left:50.796000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x20{left:66.270000px;}
.x15{left:73.290000px;}
.x1{left:78.300000px;}
.x16{left:79.590000px;}
.x14{left:82.470000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1c{left:106.770000px;}
.x27{left:113.435987px;}
.x13{left:124.590000px;}
.x5{left:141.345000px;}
.x23{left:159.705000px;}
.x24{left:163.485000px;}
.x3{left:182.370000px;}
.x1b{left:219.090000px;}
.xb{left:280.649987px;}
.xd{left:288.974987px;}
.x25{left:383.115000px;}
.xe{left:438.194987px;}
.xc{left:626.684987px;}
.xa{left:643.424987px;}
.x9{left:766.049987px;}
.x8{left:784.229987px;}
.xf{left:806.729987px;}
@media print{
.v1{vertical-align:-4.722287pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.722287pt;}
.lsa6{letter-spacing:-17.706667pt;}
.ls42{letter-spacing:-1.898667pt;}
.ls3d{letter-spacing:-1.450417pt;}
.ls8a{letter-spacing:-1.285333pt;}
.lsa4{letter-spacing:-1.152000pt;}
.ls87{letter-spacing:-0.645333pt;}
.ls4a{letter-spacing:-0.480000pt;}
.lsa0{letter-spacing:-0.409600pt;}
.ls6a{letter-spacing:-0.400533pt;}
.ls49{letter-spacing:-0.337306pt;}
.ls9f{letter-spacing:-0.326933pt;}
.ls6b{letter-spacing:-0.298667pt;}
.ls30{letter-spacing:-0.265067pt;}
.lsa5{letter-spacing:-0.236800pt;}
.ls3b{letter-spacing:-0.236114pt;}
.ls86{letter-spacing:-0.235733pt;}
.ls32{letter-spacing:-0.220800pt;}
.ls36{letter-spacing:-0.201067pt;}
.ls68{letter-spacing:-0.198400pt;}
.ls71{letter-spacing:-0.192000pt;}
.ls88{letter-spacing:-0.182400pt;}
.ls8b{letter-spacing:-0.180267pt;}
.ls41{letter-spacing:-0.117867pt;}
.ls89{letter-spacing:-0.098667pt;}
.ls46{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.094933pt;}
.ls84{letter-spacing:-0.093333pt;}
.ls35{letter-spacing:-0.079467pt;}
.ls6f{letter-spacing:-0.069333pt;}
.ls45{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.042240pt;}
.ls31{letter-spacing:-0.007040pt;}
.ls85{letter-spacing:-0.004480pt;}
.ls2d{letter-spacing:0.000000pt;}
.lsa2{letter-spacing:0.009600pt;}
.ls3e{letter-spacing:0.021760pt;}
.ls2e{letter-spacing:0.029440pt;}
.ls6{letter-spacing:0.059520pt;}
.ls69{letter-spacing:0.090133pt;}
.ls26{letter-spacing:0.090880pt;}
.ls60{letter-spacing:0.097280pt;}
.ls5f{letter-spacing:0.125440pt;}
.ls33{letter-spacing:0.130667pt;}
.ls53{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.135680pt;}
.ls58{letter-spacing:0.143787pt;}
.ls70{letter-spacing:0.147733pt;}
.ls1b{letter-spacing:0.153600pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.165120pt;}
.lsa3{letter-spacing:0.168533pt;}
.ls38{letter-spacing:0.168653pt;}
.ls6d{letter-spacing:0.181867pt;}
.ls3c{letter-spacing:0.185518pt;}
.ls18{letter-spacing:0.186133pt;}
.ls7{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.220800pt;}
.ls1e{letter-spacing:0.230400pt;}
.ls3a{letter-spacing:0.236114pt;}
.ls3f{letter-spacing:0.237333pt;}
.ls6c{letter-spacing:0.238933pt;}
.ls16{letter-spacing:0.239467pt;}
.ls63{letter-spacing:0.246933pt;}
.ls57{letter-spacing:0.248533pt;}
.ls47{letter-spacing:0.252980pt;}
.ls6e{letter-spacing:0.264533pt;}
.ls2f{letter-spacing:0.265067pt;}
.ls34{letter-spacing:0.268800pt;}
.ls66{letter-spacing:0.269867pt;}
.ls54{letter-spacing:0.271787pt;}
.ls51{letter-spacing:0.299520pt;}
.ls9c{letter-spacing:0.313067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.324480pt;}
.ls3{letter-spacing:0.325120pt;}
.ls80{letter-spacing:0.375040pt;}
.ls61{letter-spacing:0.405760pt;}
.lsf{letter-spacing:0.421633pt;}
.ls39{letter-spacing:0.438498pt;}
.ls37{letter-spacing:0.573421pt;}
.ls59{letter-spacing:0.573440pt;}
.ls77{letter-spacing:0.615680pt;}
.ls9{letter-spacing:0.632960pt;}
.ls40{letter-spacing:0.634667pt;}
.ls48{letter-spacing:0.742074pt;}
.ls1{letter-spacing:0.805120pt;}
.ls83{letter-spacing:0.805333pt;}
.ls4f{letter-spacing:0.939520pt;}
.ls96{letter-spacing:1.423787pt;}
.ls4e{letter-spacing:1.445120pt;}
.lsa1{letter-spacing:1.498667pt;}
.ls4b{letter-spacing:2.063787pt;}
.ls4d{letter-spacing:2.085120pt;}
.ls4c{letter-spacing:2.725120pt;}
.ls8f{letter-spacing:2.780800pt;}
.ls90{letter-spacing:2.831787pt;}
.ls15{letter-spacing:3.365120pt;}
.ls82{letter-spacing:3.471787pt;}
.lsb{letter-spacing:3.794695pt;}
.lsa{letter-spacing:3.963348pt;}
.ls17{letter-spacing:4.005120pt;}
.ls8c{letter-spacing:4.165120pt;}
.ls93{letter-spacing:4.623787pt;}
.ls64{letter-spacing:4.645120pt;}
.ls19{letter-spacing:5.285120pt;}
.ls1a{letter-spacing:5.925120pt;}
.ls7b{letter-spacing:6.031787pt;}
.ls95{letter-spacing:6.085120pt;}
.ls10{letter-spacing:6.493145pt;}
.ls7d{letter-spacing:6.543787pt;}
.ls79{letter-spacing:6.565120pt;}
.ls11{letter-spacing:6.605581pt;}
.ls8e{letter-spacing:6.671787pt;}
.ls7e{letter-spacing:6.725120pt;}
.ls12{letter-spacing:7.167758pt;}
.ls5c{letter-spacing:7.205120pt;}
.ls91{letter-spacing:7.311787pt;}
.ls81{letter-spacing:7.365120pt;}
.lsc{letter-spacing:7.420737pt;}
.ls9e{letter-spacing:7.823787pt;}
.lse{letter-spacing:7.842370pt;}
.ls5a{letter-spacing:7.845120pt;}
.ls5b{letter-spacing:7.951787pt;}
.ls98{letter-spacing:8.320000pt;}
.ls94{letter-spacing:8.463787pt;}
.ls5e{letter-spacing:8.485120pt;}
.lsd{letter-spacing:8.516983pt;}
.ls72{letter-spacing:8.591787pt;}
.ls7c{letter-spacing:8.645120pt;}
.ls1c{letter-spacing:9.765120pt;}
.ls1d{letter-spacing:9.925120pt;}
.ls5d{letter-spacing:10.405120pt;}
.ls8d{letter-spacing:10.460800pt;}
.ls20{letter-spacing:11.045120pt;}
.ls67{letter-spacing:11.685120pt;}
.ls7f{letter-spacing:11.791787pt;}
.ls55{letter-spacing:12.325120pt;}
.ls7a{letter-spacing:12.943787pt;}
.ls56{letter-spacing:12.965120pt;}
.ls92{letter-spacing:13.071787pt;}
.ls73{letter-spacing:13.605120pt;}
.ls75{letter-spacing:13.765120pt;}
.ls62{letter-spacing:14.032640pt;}
.ls74{letter-spacing:14.245120pt;}
.ls97{letter-spacing:14.885120pt;}
.ls65{letter-spacing:15.488000pt;}
.ls76{letter-spacing:15.525120pt;}
.ls78{letter-spacing:16.165120pt;}
.ls1f{letter-spacing:17.445120pt;}
.ls9d{letter-spacing:18.063787pt;}
.ls22{letter-spacing:18.085120pt;}
.ls21{letter-spacing:18.725120pt;}
.ls25{letter-spacing:18.780800pt;}
.ls23{letter-spacing:18.831787pt;}
.ls24{letter-spacing:18.885120pt;}
.ls2b{letter-spacing:20.645120pt;}
.ls27{letter-spacing:22.565120pt;}
.ls52{letter-spacing:22.671360pt;}
.ls29{letter-spacing:27.045120pt;}
.ls2a{letter-spacing:27.151787pt;}
.ls9a{letter-spacing:28.965120pt;}
.ls9b{letter-spacing:29.125120pt;}
.ls50{letter-spacing:30.672640pt;}
.ls28{letter-spacing:33.445120pt;}
.ls13{letter-spacing:69.232107pt;}
.ls14{letter-spacing:69.400760pt;}
.ls8{letter-spacing:176.860800pt;}
.ws41{word-spacing:-53.433067pt;}
.ws35{word-spacing:-53.389867pt;}
.ws5{word-spacing:-53.385067pt;}
.ws2e{word-spacing:-53.368533pt;}
.ws33{word-spacing:-53.366933pt;}
.ws7{word-spacing:-53.332480pt;}
.ws4{word-spacing:-53.149440pt;}
.ws2{word-spacing:-53.120000pt;}
.ws3b{word-spacing:-52.939733pt;}
.ws2a{word-spacing:-52.821333pt;}
.ws23{word-spacing:-51.338010pt;}
.ws11{word-spacing:-51.169357pt;}
.ws22{word-spacing:-50.848916pt;}
.ws14{word-spacing:-50.832051pt;}
.ws15{word-spacing:-50.781455pt;}
.ws12{word-spacing:-50.764590pt;}
.ws10{word-spacing:-50.595937pt;}
.ws24{word-spacing:-50.258630pt;}
.ws16{word-spacing:-49.145520pt;}
.wsc{word-spacing:-46.111360pt;}
.ws31{word-spacing:-46.107093pt;}
.ws19{word-spacing:-46.082027pt;}
.ws1a{word-spacing:-46.072960pt;}
.ws36{word-spacing:-46.055040pt;}
.ws9{word-spacing:-46.028693pt;}
.ws1b{word-spacing:-45.996160pt;}
.ws2d{word-spacing:-45.975893pt;}
.wsb{word-spacing:-45.973227pt;}
.ws27{word-spacing:-45.932693pt;}
.ws18{word-spacing:-45.864320pt;}
.ws3f{word-spacing:-45.852160pt;}
.ws8{word-spacing:-45.842560pt;}
.ws32{word-spacing:-45.773227pt;}
.ws37{word-spacing:-45.749227pt;}
.ws3a{word-spacing:-45.743893pt;}
.ws39{word-spacing:-45.660160pt;}
.wsa{word-spacing:-45.621760pt;}
.ws38{word-spacing:-45.606827pt;}
.ws3d{word-spacing:-45.515627pt;}
.ws28{word-spacing:-45.442027pt;}
.ws3e{word-spacing:-45.432960pt;}
.ws40{word-spacing:-44.690560pt;}
.ws1c{word-spacing:-43.943893pt;}
.ws3{word-spacing:-37.184000pt;}
.ws1f{word-spacing:-35.006080pt;}
.ws3c{word-spacing:-34.368640pt;}
.ws13{word-spacing:-33.798086pt;}
.ws2f{word-spacing:-31.659520pt;}
.ws1e{word-spacing:-31.340160pt;}
.ws30{word-spacing:-27.994240pt;}
.ws34{word-spacing:-18.048000pt;}
.ws2c{word-spacing:-16.962667pt;}
.ws43{word-spacing:-15.189547pt;}
.ws6{word-spacing:-15.139200pt;}
.ws29{word-spacing:-15.044267pt;}
.ws2b{word-spacing:-14.793813pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.554880pt;}
.ws42{word-spacing:-14.547840pt;}
.ws17{word-spacing:-14.419842pt;}
.ws1{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.280000pt;}
.ws21{word-spacing:-11.904000pt;}
.wsf{word-spacing:-9.280000pt;}
.wse{word-spacing:-9.078933pt;}
.ws20{word-spacing:-7.936000pt;}
.ws1d{word-spacing:-0.053120pt;}
.ws26{word-spacing:0.000000pt;}
._12{margin-left:-18.459253pt;}
._c{margin-left:-17.050305pt;}
._1{margin-left:-16.123520pt;}
._17{margin-left:-11.445660pt;}
._11{margin-left:-9.803733pt;}
._e{margin-left:-8.773067pt;}
._7{margin-left:-7.758044pt;}
._15{margin-left:-5.451307pt;}
._10{margin-left:-4.551958pt;}
._2{margin-left:-3.612160pt;}
._6{margin-left:-2.033920pt;}
._0{margin-left:-0.972160pt;}
._4{width:1.041707pt;}
._5{width:2.791467pt;}
._3{width:3.771520pt;}
._9{width:5.056754pt;}
._a{width:6.657154pt;}
._b{width:8.073849pt;}
._8{width:9.627253pt;}
._f{width:10.605831pt;}
._19{width:12.283573pt;}
._16{width:13.178027pt;}
._18{width:16.003413pt;}
._d{width:17.760491pt;}
._1b{width:18.705813pt;}
._13{width:22.184107pt;}
._1a{width:23.879307pt;}
._14{width:33.667627pt;}
._1c{width:35.386240pt;}
.fs4{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs6{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y51{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y42{bottom:9.120000pt;}
.y4f{bottom:11.680000pt;}
.y4{bottom:20.186667pt;}
.y4e{bottom:30.240000pt;}
.y41{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y40{bottom:45.440000pt;}
.y37{bottom:49.000000pt;}
.y7{bottom:50.720000pt;}
.y4d{bottom:50.880000pt;}
.y3f{bottom:55.354667pt;}
.y3e{bottom:65.754667pt;}
.y36{bottom:70.120000pt;}
.y4c{bottom:71.194667pt;}
.y3d{bottom:77.434667pt;}
.y38{bottom:79.072000pt;}
.y4b{bottom:88.314667pt;}
.y3c{bottom:88.954667pt;}
.y9d{bottom:90.592000pt;}
.y35{bottom:92.360000pt;}
.y4a{bottom:103.034667pt;}
.y3b{bottom:108.474667pt;}
.y79{bottom:109.952000pt;}
.y49{bottom:110.074667pt;}
.y34{bottom:111.400000pt;}
.yc3{bottom:117.952000pt;}
.y9c{bottom:123.392000pt;}
.y48{bottom:123.834667pt;}
.y78{bottom:127.712000pt;}
.y33{bottom:129.160000pt;}
.yc2{bottom:135.706667pt;}
.y47{bottom:137.754667pt;}
.y9b{bottom:141.146667pt;}
.y32{bottom:146.920000pt;}
.y77{bottom:148.666667pt;}
.y46{bottom:151.514667pt;}
.yc1{bottom:153.306667pt;}
.y9a{bottom:158.906667pt;}
.y3a{bottom:163.674667pt;}
.y31{bottom:164.680000pt;}
.y45{bottom:165.274667pt;}
.yc0{bottom:171.066667pt;}
.y39{bottom:173.114667pt;}
.y99{bottom:176.506667pt;}
.y44{bottom:179.034667pt;}
.y76{bottom:180.026667pt;}
.y30{bottom:182.280000pt;}
.ybf{bottom:188.826667pt;}
.y75{bottom:197.786667pt;}
.y98{bottom:198.906667pt;}
.y2f{bottom:200.040000pt;}
.ybe{bottom:209.786667pt;}
.y2e{bottom:217.800000pt;}
.y74{bottom:218.746667pt;}
.y1f{bottom:223.080000pt;}
.ybd{bottom:228.826667pt;}
.y2d{bottom:235.560000pt;}
.y1e{bottom:244.520000pt;}
.ybc{bottom:251.226667pt;}
.y73{bottom:251.546667pt;}
.y2c{bottom:253.346667pt;}
.y97{bottom:257.786667pt;}
.y1d{bottom:265.986667pt;}
.y72{bottom:269.306667pt;}
.y2b{bottom:274.306667pt;}
.y96{bottom:275.546667pt;}
.y11{bottom:278.906667pt;}
.ybb{bottom:282.586667pt;}
.y71{bottom:286.906667pt;}
.y1c{bottom:287.586667pt;}
.y95{bottom:293.186667pt;}
.y2a{bottom:295.906667pt;}
.yba{bottom:300.386667pt;}
.y70{bottom:308.066667pt;}
.y1b{bottom:309.026667pt;}
.y94{bottom:310.946667pt;}
.y29{bottom:316.066667pt;}
.yb9{bottom:318.146667pt;}
.y93{bottom:328.706667pt;}
.y6f{bottom:330.306667pt;}
.y1a{bottom:330.466667pt;}
.yb8{bottom:335.906667pt;}
.y28{bottom:336.066667pt;}
.y92{bottom:346.466667pt;}
.y6e{bottom:349.346667pt;}
.y19{bottom:351.906667pt;}
.y27{bottom:356.226667pt;}
.yb7{bottom:362.786667pt;}
.y91{bottom:364.226667pt;}
.y6d{bottom:370.306667pt;}
.y18{bottom:373.346667pt;}
.y26{bottom:376.226667pt;}
.yb6{bottom:380.546667pt;}
.y90{bottom:385.186667pt;}
.y6c{bottom:392.706667pt;}
.y17{bottom:394.786667pt;}
.y25{bottom:396.386667pt;}
.yb5{bottom:401.506667pt;}
.y8f{bottom:404.226667pt;}
.y6b{bottom:414.946667pt;}
.y16{bottom:416.226667pt;}
.y24{bottom:416.386667pt;}
.y8e{bottom:421.986667pt;}
.y23{bottom:436.546667pt;}
.y15{bottom:437.826667pt;}
.y8d{bottom:442.946667pt;}
.y6a{bottom:443.266667pt;}
.yb4{bottom:454.146667pt;}
.y22{bottom:456.546667pt;}
.y14{bottom:459.266667pt;}
.y69{bottom:460.866667pt;}
.yb3{bottom:471.906667pt;}
.y21{bottom:476.706667pt;}
.y13{bottom:480.706667pt;}
.y68{bottom:483.266667pt;}
.y8c{bottom:488.066667pt;}
.yb2{bottom:489.506667pt;}
.y20{bottom:496.746667pt;}
.y12{bottom:502.186667pt;}
.y67{bottom:504.226667pt;}
.y8b{bottom:505.666667pt;}
.yb1{bottom:507.266667pt;}
.y8a{bottom:523.426667pt;}
.yb0{bottom:525.026667pt;}
.y66{bottom:527.906667pt;}
.y89{bottom:541.213333pt;}
.yaf{bottom:542.813333pt;}
.y65{bottom:550.173333pt;}
.y88{bottom:558.973333pt;}
.yae{bottom:560.573333pt;}
.y64{bottom:577.053333pt;}
.yad{bottom:581.533333pt;}
.y87{bottom:585.853333pt;}
.y63{bottom:594.813333pt;}
.y86{bottom:603.613333pt;}
.y62{bottom:617.053333pt;}
.y85{bottom:624.573333pt;}
.yac{bottom:634.173333pt;}
.y61{bottom:638.173333pt;}
.yab{bottom:651.933333pt;}
.y60{bottom:662.013333pt;}
.y84{bottom:669.533333pt;}
.y5f{bottom:686.013333pt;}
.y83{bottom:687.293333pt;}
.yaa{bottom:705.053333pt;}
.y82{bottom:708.413333pt;}
.y5e{bottom:709.853333pt;}
.ya9{bottom:722.813333pt;}
.y81{bottom:730.653333pt;}
.y5d{bottom:735.133333pt;}
.ya8{bottom:740.573333pt;}
.y80{bottom:749.693333pt;}
.y5c{bottom:757.373333pt;}
.ya7{bottom:761.533333pt;}
.y7f{bottom:770.693333pt;}
.y5b{bottom:778.373333pt;}
.y10{bottom:792.133333pt;}
.y7e{bottom:793.093333pt;}
.yf{bottom:800.133333pt;}
.y5a{bottom:800.773333pt;}
.yca{bottom:800.933333pt;}
.y7d{bottom:812.133333pt;}
.ya6{bottom:818.693333pt;}
.yc9{bottom:821.893333pt;}
.y59{bottom:823.013333pt;}
.ye{bottom:823.813333pt;}
.y7c{bottom:829.733333pt;}
.ya5{bottom:836.453333pt;}
.y58{bottom:845.413333pt;}
.yc8{bottom:845.733333pt;}
.yd{bottom:846.213333pt;}
.y7b{bottom:850.693333pt;}
.ya4{bottom:854.213333pt;}
.yc{bottom:867.173333pt;}
.y57{bottom:867.653333pt;}
.yc7{bottom:869.733333pt;}
.ya3{bottom:871.973333pt;}
.yb{bottom:889.413333pt;}
.ya2{bottom:889.733333pt;}
.y56{bottom:889.893333pt;}
.yc6{bottom:893.573333pt;}
.y7a{bottom:895.813333pt;}
.ya1{bottom:907.493333pt;}
.ya{bottom:911.813333pt;}
.y55{bottom:913.573333pt;}
.yc5{bottom:917.573333pt;}
.ya0{bottom:925.093333pt;}
.y9{bottom:930.853333pt;}
.y54{bottom:931.333333pt;}
.yc4{bottom:941.413333pt;}
.y9f{bottom:942.853333pt;}
.y53{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y50{bottom:956.000000pt;}
.y9e{bottom:963.813333pt;}
.y52{bottom:966.853333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h16{height:7.952812pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h19{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h15{height:33.867188pt;}
.h13{height:34.664062pt;}
.h14{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h17{height:38.828437pt;}
.h1d{height:39.321250pt;}
.h5{height:41.112500pt;}
.h18{height:46.791359pt;}
.h1c{height:49.125625pt;}
.h9{height:49.825938pt;}
.he{height:54.252284pt;}
.hf{height:54.598154pt;}
.h1a{height:56.891250pt;}
.h8{height:57.321875pt;}
.h3{height:58.563750pt;}
.h1b{height:60.031250pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:199.200000pt;}
.hb{height:510.813333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.272000pt;}
.x1a{left:7.232000pt;}
.x4{left:11.360000pt;}
.x19{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x17{left:17.472000pt;}
.x18{left:23.232000pt;}
.x1f{left:25.952000pt;}
.x11{left:29.632000pt;}
.x6{left:32.000000pt;}
.x1e{left:42.432000pt;}
.x12{left:45.152000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x20{left:58.906667pt;}
.x15{left:65.146667pt;}
.x1{left:69.600000pt;}
.x16{left:70.746667pt;}
.x14{left:73.306667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x27{left:100.831988pt;}
.x13{left:110.746667pt;}
.x5{left:125.640000pt;}
.x23{left:141.960000pt;}
.x24{left:145.320000pt;}
.x3{left:162.106667pt;}
.x1b{left:194.746667pt;}
.xb{left:249.466655pt;}
.xd{left:256.866655pt;}
.x25{left:340.546667pt;}
.xe{left:389.506655pt;}
.xc{left:557.053322pt;}
.xa{left:571.933322pt;}
.x9{left:680.933322pt;}
.x8{left:697.093322pt;}
.xf{left:717.093322pt;}
}




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