
    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_011fd345a5c4b9a6dcd7c128.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_7ca52cfc6bce3b67886a3a6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_1bf38164ca4a20b91b6dca27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.696000;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_46f14f5ad0e0d704e0502ed3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_a174e254656d4dd4e1235b56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_38a3d4f5c4dcfa481de7ccb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.755000;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_4e2cb4eccf2c43db4901a4a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_8076baea49e9293314128ccb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_6c3962d6c5a47d18f76d4601.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_bd5e610aa0f3bf3cd420cc01.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_d616a07023b51e6dcfbfe461.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.620000;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_af280990875386532d6d78db.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_9330f7252e44cf9ac6fa51af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678000;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_69ebce696cc5cb6c050f2901.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.049000;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_a42915268ae5a5711b9d1fbb.woff2')format("woff");}.fff{font-family:fff;line-height:0.888000;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_f2809f0d5d585ced2b111f99.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-8.964000px;}
.va{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:13.596000px;}
.v7{vertical-align:15.108000px;}
.v4{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v5{vertical-align:23.736000px;}
.vb{vertical-align:30.054000px;}
.v6{vertical-align:31.476000px;}
.v3{vertical-align:40.440000px;}
.v8{vertical-align:56.784000px;}
.v9{vertical-align:97.788000px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000065px;}
.ls17{letter-spacing:0.000300px;}
.ls2{letter-spacing:0.001002px;}
.ls1d{letter-spacing:0.001140px;}
.ls3c{letter-spacing:0.001409px;}
.ls4b{letter-spacing:0.001490px;}
.ls3b{letter-spacing:0.001690px;}
.ls7{letter-spacing:0.001866px;}
.lse{letter-spacing:0.002338px;}
.ls37{letter-spacing:0.003220px;}
.ls3a{letter-spacing:0.003269px;}
.ls38{letter-spacing:0.005096px;}
.ls2e{letter-spacing:0.005306px;}
.ls3e{letter-spacing:0.005781px;}
.ls21{letter-spacing:0.006065px;}
.ls5{letter-spacing:1.290579px;}
.ls12{letter-spacing:1.655249px;}
.lsc{letter-spacing:1.661249px;}
.ls39{letter-spacing:2.420908px;}
.ls22{letter-spacing:2.983140px;}
.ls0{letter-spacing:2.984525px;}
.ls11{letter-spacing:2.987251px;}
.ls18{letter-spacing:2.989140px;}
.ls1{letter-spacing:2.990525px;}
.ls42{letter-spacing:2.991954px;}
.ls47{letter-spacing:3.422408px;}
.lsb{letter-spacing:4.278579px;}
.ls45{letter-spacing:4.490450px;}
.lsd{letter-spacing:7.170538px;}
.ls2a{letter-spacing:13.278538px;}
.ls2b{letter-spacing:13.284538px;}
.ls35{letter-spacing:13.692305px;}
.ls4d{letter-spacing:14.690800px;}
.ls4e{letter-spacing:14.691031px;}
.ls16{letter-spacing:14.699306px;}
.ls46{letter-spacing:16.235306px;}
.ls4a{letter-spacing:16.268525px;}
.ls49{letter-spacing:16.602538px;}
.ls52{letter-spacing:18.429487px;}
.ls27{letter-spacing:19.591140px;}
.ls43{letter-spacing:19.593954px;}
.ls29{letter-spacing:19.597140px;}
.ls2f{letter-spacing:19.772800px;}
.ls20{letter-spacing:19.925306px;}
.ls2d{letter-spacing:20.558408px;}
.ls1b{letter-spacing:20.878379px;}
.ls23{letter-spacing:20.884379px;}
.ls19{letter-spacing:21.210305px;}
.ls48{letter-spacing:21.806823px;}
.ls4f{letter-spacing:22.178800px;}
.ls50{letter-spacing:22.179954px;}
.ls3f{letter-spacing:22.361306px;}
.ls8{letter-spacing:22.910525px;}
.lsa{letter-spacing:22.919373px;}
.ls33{letter-spacing:23.121220px;}
.ls10{letter-spacing:23.123373px;}
.ls30{letter-spacing:23.151031px;}
.ls51{letter-spacing:23.211954px;}
.ls9{letter-spacing:23.375251px;}
.ls2c{letter-spacing:23.652305px;}
.ls1c{letter-spacing:23.778538px;}
.ls1a{letter-spacing:24.202379px;}
.ls41{letter-spacing:25.351140px;}
.ls13{letter-spacing:25.610525px;}
.ls40{letter-spacing:25.784408px;}
.ls6{letter-spacing:26.108525px;}
.ls31{letter-spacing:26.439220px;}
.ls32{letter-spacing:26.442305px;}
.ls28{letter-spacing:26.658538px;}
.ls26{letter-spacing:27.323306px;}
.ls3d{letter-spacing:27.764338px;}
.ls1f{letter-spacing:28.393690px;}
.ls4{letter-spacing:29.889030px;}
.ls34{letter-spacing:36.102538px;}
.ls44{letter-spacing:36.108538px;}
.ls14{letter-spacing:52.248538px;}
.ls4c{letter-spacing:116.125793px;}
.ls15{letter-spacing:716.294525px;}
.ls36{letter-spacing:787.615140px;}
.lsf{letter-spacing:792.890525px;}
.ls25{letter-spacing:828.841690px;}
.ls1e{letter-spacing:875.334300px;}
.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;}
}
.ws51{word-spacing:-59.775600px;}
.ws49{word-spacing:-16.605662px;}
.ws57{word-spacing:-3.338540px;}
.ws56{word-spacing:-3.332540px;}
.ws58{word-spacing:-3.326193px;}
.ws8{word-spacing:-2.770618px;}
.ws9{word-spacing:-2.555424px;}
.ws3b{word-spacing:-2.199742px;}
.ws47{word-spacing:-2.020415px;}
.ws7f{word-spacing:-1.960640px;}
.ws14{word-spacing:-1.900864px;}
.ws3e{word-spacing:-1.841088px;}
.wsac{word-spacing:-1.802246px;}
.ws28{word-spacing:-1.781313px;}
.ws80{word-spacing:-1.721537px;}
.ws93{word-spacing:-1.422659px;}
.ws3c{word-spacing:-1.362884px;}
.ws32{word-spacing:-1.123781px;}
.wsd{word-spacing:-1.049069px;}
.ws34{word-spacing:-0.765128px;}
.wsc{word-spacing:-0.511085px;}
.ws94{word-spacing:-0.466250px;}
.ws6d{word-spacing:-0.373371px;}
.ws13{word-spacing:-0.346698px;}
.ws3f{word-spacing:-0.286923px;}
.ws2d{word-spacing:-0.167372px;}
.ws41{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws4d{word-spacing:-0.041843px;}
.ws4a{word-spacing:-0.015471px;}
.ws24{word-spacing:0.000000px;}
.ws60{word-spacing:0.011955px;}
.ws84{word-spacing:0.071731px;}
.ws2b{word-spacing:0.131506px;}
.ws8d{word-spacing:0.310833px;}
.wsab{word-spacing:0.349690px;}
.ws73{word-spacing:0.370609px;}
.ws72{word-spacing:0.490160px;}
.ws5a{word-spacing:0.549936px;}
.ws85{word-spacing:0.609711px;}
.ws29{word-spacing:0.669487px;}
.ws7{word-spacing:0.672480px;}
.ws5e{word-spacing:0.729262px;}
.ws40{word-spacing:0.789038px;}
.ws2f{word-spacing:0.848814px;}
.ws86{word-spacing:0.968365px;}
.wsa{word-spacing:0.995270px;}
.wsb{word-spacing:1.102867px;}
.ws90{word-spacing:1.147692px;}
.ws5b{word-spacing:1.207467px;}
.ws39{word-spacing:1.267243px;}
.ws74{word-spacing:1.327018px;}
.ws78{word-spacing:1.373123px;}
.ws7b{word-spacing:1.386794px;}
.ws99{word-spacing:1.446570px;}
.ws5c{word-spacing:1.506345px;}
.ws23{word-spacing:1.566121px;}
.ws15{word-spacing:1.805223px;}
.ws75{word-spacing:1.864999px;}
.ws12{word-spacing:1.924774px;}
.ws92{word-spacing:1.984550px;}
.wsa5{word-spacing:2.017440px;}
.ws45{word-spacing:2.104101px;}
.ws11{word-spacing:2.163877px;}
.wse{word-spacing:2.178835px;}
.ws2e{word-spacing:2.223652px;}
.ws9a{word-spacing:2.340230px;}
.ws21{word-spacing:2.402979px;}
.ws20{word-spacing:2.582306px;}
.ws25{word-spacing:2.701857px;}
.ws2c{word-spacing:2.821408px;}
.ws48{word-spacing:3.000735px;}
.wsa3{word-spacing:3.039610px;}
.ws43{word-spacing:3.060511px;}
.ws9c{word-spacing:3.088439px;}
.ws3{word-spacing:3.093408px;}
.ws88{word-spacing:3.120286px;}
.ws5d{word-spacing:3.180062px;}
.ws76{word-spacing:3.290231px;}
.ws1{word-spacing:3.299613px;}
.ws5f{word-spacing:3.313012px;}
.ws54{word-spacing:3.320462px;}
.ws2{word-spacing:3.359389px;}
.ws22{word-spacing:3.538716px;}
.ws30{word-spacing:3.598491px;}
.ws1d{word-spacing:3.658267px;}
.ws17{word-spacing:3.777818px;}
.ws4e{word-spacing:3.897369px;}
.ws91{word-spacing:4.076696px;}
.wsae{word-spacing:4.276973px;}
.ws27{word-spacing:4.435350px;}
.wsa0{word-spacing:4.492166px;}
.ws97{word-spacing:4.734228px;}
.ws7e{word-spacing:4.794003px;}
.wsa7{word-spacing:4.922554px;}
.ws1f{word-spacing:4.973330px;}
.ws7c{word-spacing:5.033106px;}
.ws9f{word-spacing:5.083949px;}
.ws33{word-spacing:5.152657px;}
.ws53{word-spacing:5.272208px;}
.ws9d{word-spacing:5.299142px;}
.ws7d{word-spacing:5.331984px;}
.ws1b{word-spacing:5.451535px;}
.ws82{word-spacing:5.571086px;}
.ws98{word-spacing:5.630862px;}
.ws65{word-spacing:5.750413px;}
.ws66{word-spacing:5.751892px;}
.ws77{word-spacing:5.774362px;}
.ws89{word-spacing:5.810188px;}
.ws44{word-spacing:5.869964px;}
.ws8a{word-spacing:5.929740px;}
.ws1c{word-spacing:5.989515px;}
.ws81{word-spacing:6.228618px;}
.ws4f{word-spacing:6.348169px;}
.wsa9{word-spacing:6.375110px;}
.ws8c{word-spacing:6.401948px;}
.ws3a{word-spacing:6.467720px;}
.wsa8{word-spacing:6.482707px;}
.ws1a{word-spacing:6.527496px;}
.ws50{word-spacing:6.587271px;}
.ws67{word-spacing:6.766598px;}
.ws46{word-spacing:6.826374px;}
.ws2a{word-spacing:6.886149px;}
.ws1e{word-spacing:7.005700px;}
.ws18{word-spacing:7.065476px;}
.wsa2{word-spacing:7.074490px;}
.ws42{word-spacing:7.364354px;}
.ws87{word-spacing:7.424130px;}
.ws52{word-spacing:7.432821px;}
.ws8e{word-spacing:7.483905px;}
.ws79{word-spacing:7.543681px;}
.ws19{word-spacing:7.603456px;}
.ws9e{word-spacing:7.827667px;}
.ws35{word-spacing:7.902334px;}
.wsa6{word-spacing:7.935264px;}
.ws6{word-spacing:8.042861px;}
.ws37{word-spacing:8.141437px;}
.ws7a{word-spacing:8.201212px;}
.ws68{word-spacing:8.500090px;}
.ws95{word-spacing:8.619642px;}
.ws26{word-spacing:8.739193px;}
.ws9b{word-spacing:8.796038px;}
.ws16{word-spacing:8.978295px;}
.ws36{word-spacing:9.157622px;}
.ws8f{word-spacing:9.277173px;}
.ws83{word-spacing:9.695602px;}
.ws62{word-spacing:9.922750px;}
.wsad{word-spacing:9.979603px;}
.wsa1{word-spacing:10.033402px;}
.ws38{word-spacing:10.054256px;}
.ws96{word-spacing:10.472685px;}
.wsa4{word-spacing:10.678982px;}
.ws55{word-spacing:10.711788px;}
.ws63{word-spacing:11.130217px;}
.ws31{word-spacing:11.369319px;}
.ws4c{word-spacing:12.265953px;}
.ws4b{word-spacing:12.564831px;}
.ws70{word-spacing:13.219239px;}
.wsaa{word-spacing:18.373175px;}
.ws61{word-spacing:18.644944px;}
.ws6a{word-spacing:19.547251px;}
.ws6e{word-spacing:21.604206px;}
.ws6f{word-spacing:21.970206px;}
.ws6c{word-spacing:23.159251px;}
.ws3d{word-spacing:26.827469px;}
.ws5{word-spacing:29.829450px;}
.wsf{word-spacing:29.832310px;}
.ws0{word-spacing:32.192873px;}
.ws64{word-spacing:33.128944px;}
.ws10{word-spacing:80.625869px;}
.ws8b{word-spacing:81.567892px;}
.ws59{word-spacing:550.425680px;}
.ws71{word-spacing:673.710165px;}
.ws6b{word-spacing:714.946206px;}
.ws69{word-spacing:749.357251px;}
._22{margin-left:-6.916647px;}
._0{margin-left:-5.336786px;}
._5{margin-left:-4.051863px;}
._1{margin-left:-2.754470px;}
._2{margin-left:-1.011869px;}
._4{width:1.139616px;}
._3{width:2.259984px;}
._20{width:3.287658px;}
._9{width:5.404049px;}
._1e{width:6.515540px;}
._d{width:9.982525px;}
._1a{width:16.122760px;}
._8{width:17.330020px;}
._16{width:18.452851px;}
._6{width:20.327910px;}
._19{width:21.727229px;}
._1f{width:23.197309px;}
._1d{width:25.179007px;}
._a{width:27.546191px;}
._c{width:28.739551px;}
._1b{width:29.745333px;}
._b{width:31.162804px;}
._24{width:35.561193px;}
._e{width:39.387573px;}
._21{width:41.312052px;}
._17{width:44.358952px;}
._23{width:46.110862px;}
._25{width:47.886209px;}
._18{width:53.596566px;}
._14{width:55.139645px;}
._1c{width:62.580977px;}
._15{width:68.343573px;}
._7{width:80.697600px;}
._13{width:83.187573px;}
._f{width:90.609581px;}
._12{width:148.063448px;}
._10{width:152.052780px;}
._11{width:167.251114px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yd2{bottom:178.261500px;}
.y73{bottom:186.144000px;}
.y4e{bottom:193.615500px;}
.y25{bottom:193.617000px;}
.y72{bottom:196.395000px;}
.y101{bottom:207.843000px;}
.y24{bottom:211.549500px;}
.y4d{bottom:212.082000px;}
.y100{bottom:224.281500px;}
.ya2{bottom:228.408000px;}
.y23{bottom:229.482000px;}
.y4c{bottom:230.014500px;}
.y71{bottom:238.302000px;}
.yff{bottom:240.720000px;}
.ya1{bottom:246.340500px;}
.y22{bottom:247.414500px;}
.y4b{bottom:248.481000px;}
.y70{bottom:256.236000px;}
.yfe{bottom:256.342500px;}
.ya0{bottom:264.273000px;}
.y21{bottom:265.347000px;}
.y4a{bottom:266.413500px;}
.yfd{bottom:272.781000px;}
.y6f{bottom:274.168500px;}
.y20{bottom:283.279500px;}
.yb5{bottom:283.281000px;}
.y49{bottom:284.880000px;}
.yfc{bottom:288.402000px;}
.y9f{bottom:290.434500px;}
.y6e{bottom:292.101000px;}
.y9c{bottom:297.814500px;}
.y1f{bottom:301.213500px;}
.y48{bottom:302.812500px;}
.yfb{bottom:304.840500px;}
.y9b{bottom:308.065500px;}
.y6d{bottom:310.573500px;}
.y1e{bottom:319.146000px;}
.yfa{bottom:320.463000px;}
.y9e{bottom:322.263000px;}
.y9d{bottom:326.746500px;}
.y6c{bottom:328.506000px;}
.y47{bottom:334.834500px;}
.yf9{bottom:336.901500px;}
.yda{bottom:337.012500px;}
.y1d{bottom:337.078500px;}
.y9a{bottom:339.699000px;}
.y97{bottom:347.079000px;}
.yf8{bottom:352.524000px;}
.y1c{bottom:355.011000px;}
.y96{bottom:357.330000px;}
.y6b{bottom:367.069500px;}
.yf7{bottom:368.962500px;}
.y99{bottom:371.527500px;}
.y1b{bottom:372.943500px;}
.y46{bottom:373.366500px;}
.yb4{bottom:374.821500px;}
.y98{bottom:376.011000px;}
.yf6{bottom:384.585000px;}
.yd9{bottom:384.768000px;}
.y1a{bottom:390.877500px;}
.yb3{bottom:392.904000px;}
.yf5{bottom:401.023500px;}
.yd8{bottom:402.700500px;}
.yd1{bottom:406.881000px;}
.y95{bottom:407.908500px;}
.y19{bottom:408.810000px;}
.yb2{bottom:409.342500px;}
.y6a{bottom:410.614500px;}
.yf4{bottom:416.646000px;}
.yd7{bottom:420.633000px;}
.y69{bottom:420.865500px;}
.y45{bottom:423.853500px;}
.yd0{bottom:424.813500px;}
.yb1{bottom:425.781000px;}
.y94{bottom:425.841000px;}
.y18{bottom:426.742500px;}
.yf3{bottom:433.083000px;}
.yd6{bottom:438.565500px;}
.y44{bottom:441.787500px;}
.yb0{bottom:442.219500px;}
.ycf{bottom:442.746000px;}
.y93{bottom:443.773500px;}
.y17{bottom:444.675000px;}
.yf2{bottom:449.521500px;}
.y43{bottom:459.720000px;}
.yce{bottom:460.678500px;}
.y92{bottom:461.706000px;}
.y68{bottom:462.192000px;}
.yaf{bottom:462.243000px;}
.y16{bottom:462.607500px;}
.yf1{bottom:465.144000px;}
.y42{bottom:478.186500px;}
.ycd{bottom:478.611000px;}
.yae{bottom:478.681500px;}
.y67{bottom:480.124500px;}
.y15{bottom:480.540000px;}
.y91{bottom:480.597000px;}
.yf0{bottom:481.582500px;}
.yd5{bottom:492.955500px;}
.yad{bottom:495.120000px;}
.y41{bottom:496.119000px;}
.ycc{bottom:496.543500px;}
.yef{bottom:498.021000px;}
.y14{bottom:498.474000px;}
.y90{bottom:498.529500px;}
.y66{bottom:503.122500px;}
.yd4{bottom:510.888000px;}
.yac{bottom:511.558500px;}
.y65{bottom:513.373500px;}
.yee{bottom:513.643500px;}
.y40{bottom:514.051500px;}
.ycb{bottom:514.477500px;}
.y13{bottom:516.406500px;}
.y8f{bottom:516.462000px;}
.yab{bottom:528.595500px;}
.yed{bottom:530.082000px;}
.y3f{bottom:531.984000px;}
.yca{bottom:532.410000px;}
.y12{bottom:534.339000px;}
.y8d{bottom:544.657500px;}
.yec{bottom:545.704500px;}
.y3e{bottom:549.916500px;}
.yc9{bottom:550.663500px;}
.y8a{bottom:552.039000px;}
.y11{bottom:552.271500px;}
.y64{bottom:554.698500px;}
.yeb{bottom:562.143000px;}
.y89{bottom:562.288500px;}
.y3d{bottom:567.849000px;}
.yc8{bottom:568.596000px;}
.y63{bottom:572.632500px;}
.y8c{bottom:576.486000px;}
.yaa{bottom:577.422000px;}
.yea{bottom:578.581500px;}
.y8b{bottom:581.134500px;}
.y3c{bottom:585.783000px;}
.y8e{bottom:586.083000px;}
.yc7{bottom:586.528500px;}
.y10{bottom:587.514000px;}
.y62{bottom:590.565000px;}
.ye9{bottom:594.202500px;}
.ya9{bottom:595.354500px;}
.y88{bottom:598.239000px;}
.y3b{bottom:603.715500px;}
.yc6{bottom:604.461000px;}
.y87{bottom:605.620500px;}
.y61{bottom:608.497500px;}
.ye8{bottom:610.641000px;}
.ya8{bottom:613.287000px;}
.y86{bottom:615.871500px;}
.y3a{bottom:621.648000px;}
.yc5{bottom:622.393500px;}
.ye7{bottom:627.079500px;}
.ya7{bottom:631.219500px;}
.y60{bottom:631.494000px;}
.yf{bottom:634.713000px;}
.y39{bottom:639.580500px;}
.yc4{bottom:640.327500px;}
.y5f{bottom:641.745000px;}
.ye6{bottom:642.702000px;}
.ya6{bottom:649.152000px;}
.y38{bottom:657.513000px;}
.yc3{bottom:658.260000px;}
.y85{bottom:658.866000px;}
.ye5{bottom:659.140500px;}
.ya5{bottom:667.086000px;}
.y37{bottom:675.445500px;}
.ye4{bottom:675.579000px;}
.yc2{bottom:676.192500px;}
.y84{bottom:676.800000px;}
.ye{bottom:681.693000px;}
.y5e{bottom:683.071500px;}
.ye3{bottom:691.201500px;}
.y36{bottom:693.379500px;}
.yc1{bottom:694.125000px;}
.y83{bottom:694.732500px;}
.yd{bottom:698.131500px;}
.ya4{bottom:700.891500px;}
.y5d{bottom:701.004000px;}
.ye2{bottom:707.640000px;}
.y35{bottom:711.312000px;}
.yc0{bottom:712.057500px;}
.y82{bottom:712.665000px;}
.yc{bottom:714.570000px;}
.ya3{bottom:718.614000px;}
.y5c{bottom:718.936500px;}
.ye1{bottom:723.262500px;}
.y34{bottom:729.778500px;}
.ybf{bottom:729.990000px;}
.y81{bottom:730.597500px;}
.yb{bottom:731.008500px;}
.y5b{bottom:736.869000px;}
.ye0{bottom:739.701000px;}
.ya{bottom:747.447000px;}
.y33{bottom:747.711000px;}
.ybe{bottom:747.924000px;}
.y80{bottom:748.530000px;}
.y5a{bottom:754.803000px;}
.y9{bottom:763.885500px;}
.yd3{bottom:764.437500px;}
.y32{bottom:765.643500px;}
.ybd{bottom:766.176000px;}
.y7f{bottom:767.419500px;}
.ydf{bottom:769.992000px;}
.y59{bottom:772.735500px;}
.y8{bottom:780.322500px;}
.y31{bottom:783.576000px;}
.ybc{bottom:784.110000px;}
.y7e{bottom:785.353500px;}
.y58{bottom:790.668000px;}
.y7{bottom:796.761000px;}
.y30{bottom:801.508500px;}
.ybb{bottom:802.042500px;}
.y57{bottom:808.600500px;}
.y7d{bottom:811.513500px;}
.y6{bottom:813.199500px;}
.yde{bottom:814.548000px;}
.y2f{bottom:819.441000px;}
.yba{bottom:819.975000px;}
.y56{bottom:826.533000px;}
.y7c{bottom:829.372500px;}
.ydd{bottom:832.480500px;}
.y2e{bottom:837.375000px;}
.yb9{bottom:837.907500px;}
.y55{bottom:845.005500px;}
.ydc{bottom:850.413000px;}
.y2d{bottom:855.307500px;}
.yb8{bottom:855.840000px;}
.y54{bottom:862.938000px;}
.y7b{bottom:869.065500px;}
.y5{bottom:872.695500px;}
.y2c{bottom:873.240000px;}
.yb7{bottom:873.774000px;}
.ydb{bottom:883.015500px;}
.y7a{bottom:886.999500px;}
.y4{bottom:889.134000px;}
.y2b{bottom:891.172500px;}
.yb6{bottom:891.706500px;}
.y53{bottom:894.445500px;}
.y2a{bottom:909.639000px;}
.y52{bottom:912.378000px;}
.y77{bottom:913.159500px;}
.y3{bottom:920.455500px;}
.y79{bottom:920.541000px;}
.y29{bottom:927.571500px;}
.y74{bottom:930.792000px;}
.y51{bottom:930.850500px;}
.y78{bottom:940.902000px;}
.y76{bottom:944.988000px;}
.y28{bottom:945.504000px;}
.y50{bottom:949.323000px;}
.y75{bottom:949.471500px;}
.y27{bottom:963.436500px;}
.y4f{bottom:967.255500px;}
.y2{bottom:972.403500px;}
.y26{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.hc{height:0.000000px;}
.hb{height:31.382100px;}
.h13{height:36.744307px;}
.h3{height:40.348800px;}
.hd{height:42.799330px;}
.h4{height:44.831700px;}
.h2{height:49.975733px;}
.h14{height:49.981733px;}
.h5{height:50.211840px;}
.h12{height:53.944800px;}
.hf{height:56.784000px;}
.h11{height:58.339733px;}
.he{height:59.939700px;}
.h1{height:60.254040px;}
.ha{height:83.239330px;}
.h8{height:85.265700px;}
.h6{height:85.271700px;}
.h7{height:85.835700px;}
.h10{height:97.788000px;}
.h9{height:126.269700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:202.147500px;}
.x2{left:204.754500px;}
.x32{left:209.058000px;}
.x4{left:211.153500px;}
.x31{left:215.272500px;}
.x29{left:216.726000px;}
.x1{left:223.530000px;}
.x8{left:224.563500px;}
.x9{left:227.551500px;}
.x6{left:244.666500px;}
.x30{left:246.904500px;}
.x3{left:249.655500px;}
.x2e{left:261.640500px;}
.x2d{left:284.011500px;}
.x2c{left:287.467500px;}
.x2a{left:289.197000px;}
.x5{left:355.752000px;}
.x16{left:362.998500px;}
.x1d{left:364.840500px;}
.x28{left:396.153000px;}
.xc{left:397.776000px;}
.x24{left:406.108500px;}
.x1e{left:407.550000px;}
.xa{left:410.572500px;}
.xf{left:416.385000px;}
.x1a{left:417.399000px;}
.x17{left:423.229500px;}
.x11{left:425.029500px;}
.x20{left:427.009500px;}
.x1f{left:430.414500px;}
.x1b{left:450.949500px;}
.x25{left:453.001500px;}
.x13{left:456.705000px;}
.x14{left:457.818000px;}
.x12{left:461.239500px;}
.xd{left:463.843500px;}
.x23{left:465.939000px;}
.x1c{left:467.493000px;}
.x26{left:470.580000px;}
.x10{left:471.750000px;}
.x15{left:480.862500px;}
.x18{left:487.714500px;}
.xb{left:490.453500px;}
.x27{left:496.806000px;}
.xe{left:500.097000px;}
.x19{left:502.557000px;}
.x2f{left:506.695500px;}
.x21{left:539.409000px;}
.x2b{left:596.094000px;}
.x22{left:701.791500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.va{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:12.085333pt;}
.v7{vertical-align:13.429333pt;}
.v4{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v5{vertical-align:21.098667pt;}
.vb{vertical-align:26.714667pt;}
.v6{vertical-align:27.978667pt;}
.v3{vertical-align:35.946667pt;}
.v8{vertical-align:50.474667pt;}
.v9{vertical-align:86.922667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000058pt;}
.ls17{letter-spacing:0.000267pt;}
.ls2{letter-spacing:0.000891pt;}
.ls1d{letter-spacing:0.001014pt;}
.ls3c{letter-spacing:0.001253pt;}
.ls4b{letter-spacing:0.001324pt;}
.ls3b{letter-spacing:0.001503pt;}
.ls7{letter-spacing:0.001659pt;}
.lse{letter-spacing:0.002079pt;}
.ls37{letter-spacing:0.002863pt;}
.ls3a{letter-spacing:0.002906pt;}
.ls38{letter-spacing:0.004530pt;}
.ls2e{letter-spacing:0.004716pt;}
.ls3e{letter-spacing:0.005138pt;}
.ls21{letter-spacing:0.005391pt;}
.ls5{letter-spacing:1.147181pt;}
.ls12{letter-spacing:1.471333pt;}
.lsc{letter-spacing:1.476666pt;}
.ls39{letter-spacing:2.151919pt;}
.ls22{letter-spacing:2.651680pt;}
.ls0{letter-spacing:2.652911pt;}
.ls11{letter-spacing:2.655334pt;}
.ls18{letter-spacing:2.657014pt;}
.ls1{letter-spacing:2.658245pt;}
.ls42{letter-spacing:2.659514pt;}
.ls47{letter-spacing:3.042140pt;}
.lsb{letter-spacing:3.803181pt;}
.ls45{letter-spacing:3.991511pt;}
.lsd{letter-spacing:6.373812pt;}
.ls2a{letter-spacing:11.803145pt;}
.ls2b{letter-spacing:11.808479pt;}
.ls35{letter-spacing:12.170938pt;}
.ls4d{letter-spacing:13.058489pt;}
.ls4e{letter-spacing:13.058694pt;}
.ls16{letter-spacing:13.066050pt;}
.ls46{letter-spacing:14.431383pt;}
.ls4a{letter-spacing:14.460911pt;}
.ls49{letter-spacing:14.757812pt;}
.ls52{letter-spacing:16.381766pt;}
.ls27{letter-spacing:17.414347pt;}
.ls43{letter-spacing:17.416848pt;}
.ls29{letter-spacing:17.419680pt;}
.ls2f{letter-spacing:17.575822pt;}
.ls20{letter-spacing:17.711383pt;}
.ls2d{letter-spacing:18.274140pt;}
.ls1b{letter-spacing:18.558559pt;}
.ls23{letter-spacing:18.563892pt;}
.ls19{letter-spacing:18.853605pt;}
.ls48{letter-spacing:19.383842pt;}
.ls4f{letter-spacing:19.714489pt;}
.ls50{letter-spacing:19.715514pt;}
.ls3f{letter-spacing:19.876716pt;}
.ls8{letter-spacing:20.364911pt;}
.lsa{letter-spacing:20.372776pt;}
.ls33{letter-spacing:20.552196pt;}
.ls10{letter-spacing:20.554109pt;}
.ls30{letter-spacing:20.578694pt;}
.ls51{letter-spacing:20.632848pt;}
.ls9{letter-spacing:20.778001pt;}
.ls2c{letter-spacing:21.024271pt;}
.ls1c{letter-spacing:21.136479pt;}
.ls1a{letter-spacing:21.513225pt;}
.ls41{letter-spacing:22.534347pt;}
.ls13{letter-spacing:22.764911pt;}
.ls40{letter-spacing:22.919474pt;}
.ls6{letter-spacing:23.207578pt;}
.ls31{letter-spacing:23.501529pt;}
.ls32{letter-spacing:23.504271pt;}
.ls28{letter-spacing:23.696479pt;}
.ls26{letter-spacing:24.287383pt;}
.ls3d{letter-spacing:24.679412pt;}
.ls1f{letter-spacing:25.238836pt;}
.ls4{letter-spacing:26.568027pt;}
.ls34{letter-spacing:32.091145pt;}
.ls44{letter-spacing:32.096479pt;}
.ls14{letter-spacing:46.443145pt;}
.ls4c{letter-spacing:103.222927pt;}
.ls15{letter-spacing:636.706245pt;}
.ls36{letter-spacing:700.102347pt;}
.lsf{letter-spacing:704.791578pt;}
.ls25{letter-spacing:736.748169pt;}
.ls1e{letter-spacing:778.074933pt;}
.ws51{word-spacing:-53.133867pt;}
.ws49{word-spacing:-14.760588pt;}
.ws57{word-spacing:-2.967591pt;}
.ws56{word-spacing:-2.962258pt;}
.ws58{word-spacing:-2.956616pt;}
.ws8{word-spacing:-2.462771pt;}
.ws9{word-spacing:-2.271488pt;}
.ws3b{word-spacing:-1.955326pt;}
.ws47{word-spacing:-1.795925pt;}
.ws7f{word-spacing:-1.742791pt;}
.ws14{word-spacing:-1.689657pt;}
.ws3e{word-spacing:-1.636523pt;}
.wsac{word-spacing:-1.601997pt;}
.ws28{word-spacing:-1.583389pt;}
.ws80{word-spacing:-1.530255pt;}
.ws93{word-spacing:-1.264586pt;}
.ws3c{word-spacing:-1.211452pt;}
.ws32{word-spacing:-0.998917pt;}
.wsd{word-spacing:-0.932506pt;}
.ws34{word-spacing:-0.680113pt;}
.wsc{word-spacing:-0.454298pt;}
.ws94{word-spacing:-0.414444pt;}
.ws6d{word-spacing:-0.331886pt;}
.ws13{word-spacing:-0.308176pt;}
.ws3f{word-spacing:-0.255043pt;}
.ws2d{word-spacing:-0.148775pt;}
.ws41{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws4d{word-spacing:-0.037194pt;}
.ws4a{word-spacing:-0.013752pt;}
.ws24{word-spacing:0.000000pt;}
.ws60{word-spacing:0.010627pt;}
.ws84{word-spacing:0.063761pt;}
.ws2b{word-spacing:0.116895pt;}
.ws8d{word-spacing:0.276296pt;}
.wsab{word-spacing:0.310835pt;}
.ws73{word-spacing:0.329430pt;}
.ws72{word-spacing:0.435698pt;}
.ws5a{word-spacing:0.488832pt;}
.ws85{word-spacing:0.541965pt;}
.ws29{word-spacing:0.595099pt;}
.ws7{word-spacing:0.597760pt;}
.ws5e{word-spacing:0.648233pt;}
.ws40{word-spacing:0.701367pt;}
.ws2f{word-spacing:0.754501pt;}
.ws86{word-spacing:0.860769pt;}
.wsa{word-spacing:0.884685pt;}
.wsb{word-spacing:0.980326pt;}
.ws90{word-spacing:1.020170pt;}
.ws5b{word-spacing:1.073304pt;}
.ws39{word-spacing:1.126438pt;}
.ws74{word-spacing:1.179572pt;}
.ws78{word-spacing:1.220553pt;}
.ws7b{word-spacing:1.232706pt;}
.ws99{word-spacing:1.285840pt;}
.ws5c{word-spacing:1.338973pt;}
.ws23{word-spacing:1.392107pt;}
.ws15{word-spacing:1.604643pt;}
.ws75{word-spacing:1.657777pt;}
.ws12{word-spacing:1.710911pt;}
.ws92{word-spacing:1.764044pt;}
.wsa5{word-spacing:1.793280pt;}
.ws45{word-spacing:1.870312pt;}
.ws11{word-spacing:1.923446pt;}
.wse{word-spacing:1.936742pt;}
.ws2e{word-spacing:1.976580pt;}
.ws9a{word-spacing:2.080205pt;}
.ws21{word-spacing:2.135981pt;}
.ws20{word-spacing:2.295383pt;}
.ws25{word-spacing:2.401651pt;}
.ws2c{word-spacing:2.507919pt;}
.ws48{word-spacing:2.667320pt;}
.wsa3{word-spacing:2.701875pt;}
.ws43{word-spacing:2.720454pt;}
.ws9c{word-spacing:2.745279pt;}
.ws3{word-spacing:2.749696pt;}
.ws88{word-spacing:2.773588pt;}
.ws5d{word-spacing:2.826722pt;}
.ws76{word-spacing:2.924650pt;}
.ws1{word-spacing:2.932989pt;}
.ws5f{word-spacing:2.944900pt;}
.ws54{word-spacing:2.951521pt;}
.ws2{word-spacing:2.986123pt;}
.ws22{word-spacing:3.145525pt;}
.ws30{word-spacing:3.198659pt;}
.ws1d{word-spacing:3.251793pt;}
.ws17{word-spacing:3.358060pt;}
.ws4e{word-spacing:3.464328pt;}
.ws91{word-spacing:3.623730pt;}
.wsae{word-spacing:3.801754pt;}
.ws27{word-spacing:3.942533pt;}
.wsa0{word-spacing:3.993037pt;}
.ws97{word-spacing:4.208202pt;}
.ws7e{word-spacing:4.261336pt;}
.wsa7{word-spacing:4.375603pt;}
.ws1f{word-spacing:4.420738pt;}
.ws7c{word-spacing:4.473872pt;}
.ws9f{word-spacing:4.519066pt;}
.ws33{word-spacing:4.580139pt;}
.ws53{word-spacing:4.686407pt;}
.ws9d{word-spacing:4.710349pt;}
.ws7d{word-spacing:4.739541pt;}
.ws1b{word-spacing:4.845809pt;}
.ws82{word-spacing:4.952076pt;}
.ws98{word-spacing:5.005210pt;}
.ws65{word-spacing:5.111478pt;}
.ws66{word-spacing:5.112793pt;}
.ws77{word-spacing:5.132766pt;}
.ws89{word-spacing:5.164612pt;}
.ws44{word-spacing:5.217746pt;}
.ws8a{word-spacing:5.270880pt;}
.ws1c{word-spacing:5.324013pt;}
.ws81{word-spacing:5.536549pt;}
.ws4f{word-spacing:5.642817pt;}
.wsa9{word-spacing:5.666765pt;}
.ws8c{word-spacing:5.690621pt;}
.ws3a{word-spacing:5.749084pt;}
.wsa8{word-spacing:5.762406pt;}
.ws1a{word-spacing:5.802218pt;}
.ws50{word-spacing:5.855352pt;}
.ws67{word-spacing:6.014754pt;}
.ws46{word-spacing:6.067888pt;}
.ws2a{word-spacing:6.121021pt;}
.ws1e{word-spacing:6.227289pt;}
.ws18{word-spacing:6.280423pt;}
.wsa2{word-spacing:6.288435pt;}
.ws42{word-spacing:6.546092pt;}
.ws87{word-spacing:6.599226pt;}
.ws52{word-spacing:6.606952pt;}
.ws8e{word-spacing:6.652360pt;}
.ws79{word-spacing:6.705494pt;}
.ws19{word-spacing:6.758628pt;}
.ws9e{word-spacing:6.957926pt;}
.ws35{word-spacing:7.024297pt;}
.wsa6{word-spacing:7.053568pt;}
.ws6{word-spacing:7.149210pt;}
.ws37{word-spacing:7.236833pt;}
.ws7a{word-spacing:7.289967pt;}
.ws68{word-spacing:7.555636pt;}
.ws95{word-spacing:7.661904pt;}
.ws26{word-spacing:7.768171pt;}
.ws9b{word-spacing:7.818701pt;}
.ws16{word-spacing:7.980707pt;}
.ws36{word-spacing:8.140108pt;}
.ws8f{word-spacing:8.246376pt;}
.ws83{word-spacing:8.618313pt;}
.ws62{word-spacing:8.820222pt;}
.wsad{word-spacing:8.870758pt;}
.wsa1{word-spacing:8.918579pt;}
.ws38{word-spacing:8.937116pt;}
.ws96{word-spacing:9.309053pt;}
.wsa4{word-spacing:9.492429pt;}
.ws55{word-spacing:9.521589pt;}
.ws63{word-spacing:9.893526pt;}
.ws31{word-spacing:10.106061pt;}
.ws4c{word-spacing:10.903069pt;}
.ws4b{word-spacing:11.168739pt;}
.ws70{word-spacing:11.750435pt;}
.wsaa{word-spacing:16.331711pt;}
.ws61{word-spacing:16.573283pt;}
.ws6a{word-spacing:17.375334pt;}
.ws6e{word-spacing:19.203739pt;}
.ws6f{word-spacing:19.529072pt;}
.ws6c{word-spacing:20.586001pt;}
.ws3d{word-spacing:23.846639pt;}
.ws5{word-spacing:26.515067pt;}
.wsf{word-spacing:26.517609pt;}
.ws0{word-spacing:28.615887pt;}
.ws64{word-spacing:29.447950pt;}
.ws10{word-spacing:71.667439pt;}
.ws8b{word-spacing:72.504793pt;}
.ws59{word-spacing:489.267271pt;}
.ws71{word-spacing:598.853480pt;}
.ws6b{word-spacing:635.507739pt;}
.ws69{word-spacing:666.095334pt;}
._22{margin-left:-6.148131pt;}
._0{margin-left:-4.743810pt;}
._5{margin-left:-3.601656pt;}
._1{margin-left:-2.448418pt;}
._2{margin-left:-0.899439pt;}
._4{width:1.012992pt;}
._3{width:2.008875pt;}
._20{width:2.922363pt;}
._9{width:4.803599pt;}
._1e{width:5.791591pt;}
._d{width:8.873356pt;}
._1a{width:14.331342pt;}
._8{width:15.404462pt;}
._16{width:16.402534pt;}
._6{width:18.069253pt;}
._19{width:19.313092pt;}
._1f{width:20.619830pt;}
._1d{width:22.381339pt;}
._a{width:24.485503pt;}
._c{width:25.546267pt;}
._1b{width:26.440296pt;}
._b{width:27.700270pt;}
._24{width:31.609950pt;}
._e{width:35.011176pt;}
._21{width:36.721824pt;}
._17{width:39.430180pt;}
._23{width:40.987433pt;}
._25{width:42.565519pt;}
._18{width:47.641392pt;}
._14{width:49.013017pt;}
._1c{width:55.627535pt;}
._15{width:60.749843pt;}
._7{width:71.731200pt;}
._13{width:73.944509pt;}
._f{width:80.541850pt;}
._12{width:131.611953pt;}
._10{width:135.158026pt;}
._11{width:148.667657pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:158.454667pt;}
.y73{bottom:165.461333pt;}
.y4e{bottom:172.102667pt;}
.y25{bottom:172.104000pt;}
.y72{bottom:174.573333pt;}
.y101{bottom:184.749333pt;}
.y24{bottom:188.044000pt;}
.y4d{bottom:188.517333pt;}
.y100{bottom:199.361333pt;}
.ya2{bottom:203.029333pt;}
.y23{bottom:203.984000pt;}
.y4c{bottom:204.457333pt;}
.y71{bottom:211.824000pt;}
.yff{bottom:213.973333pt;}
.ya1{bottom:218.969333pt;}
.y22{bottom:219.924000pt;}
.y4b{bottom:220.872000pt;}
.y70{bottom:227.765333pt;}
.yfe{bottom:227.860000pt;}
.ya0{bottom:234.909333pt;}
.y21{bottom:235.864000pt;}
.y4a{bottom:236.812000pt;}
.yfd{bottom:242.472000pt;}
.y6f{bottom:243.705333pt;}
.y20{bottom:251.804000pt;}
.yb5{bottom:251.805333pt;}
.y49{bottom:253.226667pt;}
.yfc{bottom:256.357333pt;}
.y9f{bottom:258.164000pt;}
.y6e{bottom:259.645333pt;}
.y9c{bottom:264.724000pt;}
.y1f{bottom:267.745333pt;}
.y48{bottom:269.166667pt;}
.yfb{bottom:270.969333pt;}
.y9b{bottom:273.836000pt;}
.y6d{bottom:276.065333pt;}
.y1e{bottom:283.685333pt;}
.yfa{bottom:284.856000pt;}
.y9e{bottom:286.456000pt;}
.y9d{bottom:290.441333pt;}
.y6c{bottom:292.005333pt;}
.y47{bottom:297.630667pt;}
.yf9{bottom:299.468000pt;}
.yda{bottom:299.566667pt;}
.y1d{bottom:299.625333pt;}
.y9a{bottom:301.954667pt;}
.y97{bottom:308.514667pt;}
.yf8{bottom:313.354667pt;}
.y1c{bottom:315.565333pt;}
.y96{bottom:317.626667pt;}
.y6b{bottom:326.284000pt;}
.yf7{bottom:327.966667pt;}
.y99{bottom:330.246667pt;}
.y1b{bottom:331.505333pt;}
.y46{bottom:331.881333pt;}
.yb4{bottom:333.174667pt;}
.y98{bottom:334.232000pt;}
.yf6{bottom:341.853333pt;}
.yd9{bottom:342.016000pt;}
.y1a{bottom:347.446667pt;}
.yb3{bottom:349.248000pt;}
.yf5{bottom:356.465333pt;}
.yd8{bottom:357.956000pt;}
.yd1{bottom:361.672000pt;}
.y95{bottom:362.585333pt;}
.y19{bottom:363.386667pt;}
.yb2{bottom:363.860000pt;}
.y6a{bottom:364.990667pt;}
.yf4{bottom:370.352000pt;}
.yd7{bottom:373.896000pt;}
.y69{bottom:374.102667pt;}
.y45{bottom:376.758667pt;}
.yd0{bottom:377.612000pt;}
.yb1{bottom:378.472000pt;}
.y94{bottom:378.525333pt;}
.y18{bottom:379.326667pt;}
.yf3{bottom:384.962667pt;}
.yd6{bottom:389.836000pt;}
.y44{bottom:392.700000pt;}
.yb0{bottom:393.084000pt;}
.ycf{bottom:393.552000pt;}
.y93{bottom:394.465333pt;}
.y17{bottom:395.266667pt;}
.yf2{bottom:399.574667pt;}
.y43{bottom:408.640000pt;}
.yce{bottom:409.492000pt;}
.y92{bottom:410.405333pt;}
.y68{bottom:410.837333pt;}
.yaf{bottom:410.882667pt;}
.y16{bottom:411.206667pt;}
.yf1{bottom:413.461333pt;}
.y42{bottom:425.054667pt;}
.ycd{bottom:425.432000pt;}
.yae{bottom:425.494667pt;}
.y67{bottom:426.777333pt;}
.y15{bottom:427.146667pt;}
.y91{bottom:427.197333pt;}
.yf0{bottom:428.073333pt;}
.yd5{bottom:438.182667pt;}
.yad{bottom:440.106667pt;}
.y41{bottom:440.994667pt;}
.ycc{bottom:441.372000pt;}
.yef{bottom:442.685333pt;}
.y14{bottom:443.088000pt;}
.y90{bottom:443.137333pt;}
.y66{bottom:447.220000pt;}
.yd4{bottom:454.122667pt;}
.yac{bottom:454.718667pt;}
.y65{bottom:456.332000pt;}
.yee{bottom:456.572000pt;}
.y40{bottom:456.934667pt;}
.ycb{bottom:457.313333pt;}
.y13{bottom:459.028000pt;}
.y8f{bottom:459.077333pt;}
.yab{bottom:469.862667pt;}
.yed{bottom:471.184000pt;}
.y3f{bottom:472.874667pt;}
.yca{bottom:473.253333pt;}
.y12{bottom:474.968000pt;}
.y8d{bottom:484.140000pt;}
.yec{bottom:485.070667pt;}
.y3e{bottom:488.814667pt;}
.yc9{bottom:489.478667pt;}
.y8a{bottom:490.701333pt;}
.y11{bottom:490.908000pt;}
.y64{bottom:493.065333pt;}
.yeb{bottom:499.682667pt;}
.y89{bottom:499.812000pt;}
.y3d{bottom:504.754667pt;}
.yc8{bottom:505.418667pt;}
.y63{bottom:509.006667pt;}
.y8c{bottom:512.432000pt;}
.yaa{bottom:513.264000pt;}
.yea{bottom:514.294667pt;}
.y8b{bottom:516.564000pt;}
.y3c{bottom:520.696000pt;}
.y8e{bottom:520.962667pt;}
.yc7{bottom:521.358667pt;}
.y10{bottom:522.234667pt;}
.y62{bottom:524.946667pt;}
.ye9{bottom:528.180000pt;}
.ya9{bottom:529.204000pt;}
.y88{bottom:531.768000pt;}
.y3b{bottom:536.636000pt;}
.yc6{bottom:537.298667pt;}
.y87{bottom:538.329333pt;}
.y61{bottom:540.886667pt;}
.ye8{bottom:542.792000pt;}
.ya8{bottom:545.144000pt;}
.y86{bottom:547.441333pt;}
.y3a{bottom:552.576000pt;}
.yc5{bottom:553.238667pt;}
.ye7{bottom:557.404000pt;}
.ya7{bottom:561.084000pt;}
.y60{bottom:561.328000pt;}
.yf{bottom:564.189333pt;}
.y39{bottom:568.516000pt;}
.yc4{bottom:569.180000pt;}
.y5f{bottom:570.440000pt;}
.ye6{bottom:571.290667pt;}
.ya6{bottom:577.024000pt;}
.y38{bottom:584.456000pt;}
.yc3{bottom:585.120000pt;}
.y85{bottom:585.658667pt;}
.ye5{bottom:585.902667pt;}
.ya5{bottom:592.965333pt;}
.y37{bottom:600.396000pt;}
.ye4{bottom:600.514667pt;}
.yc2{bottom:601.060000pt;}
.y84{bottom:601.600000pt;}
.ye{bottom:605.949333pt;}
.y5e{bottom:607.174667pt;}
.ye3{bottom:614.401333pt;}
.y36{bottom:616.337333pt;}
.yc1{bottom:617.000000pt;}
.y83{bottom:617.540000pt;}
.yd{bottom:620.561333pt;}
.ya4{bottom:623.014667pt;}
.y5d{bottom:623.114667pt;}
.ye2{bottom:629.013333pt;}
.y35{bottom:632.277333pt;}
.yc0{bottom:632.940000pt;}
.y82{bottom:633.480000pt;}
.yc{bottom:635.173333pt;}
.ya3{bottom:638.768000pt;}
.y5c{bottom:639.054667pt;}
.ye1{bottom:642.900000pt;}
.y34{bottom:648.692000pt;}
.ybf{bottom:648.880000pt;}
.y81{bottom:649.420000pt;}
.yb{bottom:649.785333pt;}
.y5b{bottom:654.994667pt;}
.ye0{bottom:657.512000pt;}
.ya{bottom:664.397333pt;}
.y33{bottom:664.632000pt;}
.ybe{bottom:664.821333pt;}
.y80{bottom:665.360000pt;}
.y5a{bottom:670.936000pt;}
.y9{bottom:679.009333pt;}
.yd3{bottom:679.500000pt;}
.y32{bottom:680.572000pt;}
.ybd{bottom:681.045333pt;}
.y7f{bottom:682.150667pt;}
.ydf{bottom:684.437333pt;}
.y59{bottom:686.876000pt;}
.y8{bottom:693.620000pt;}
.y31{bottom:696.512000pt;}
.ybc{bottom:696.986667pt;}
.y7e{bottom:698.092000pt;}
.y58{bottom:702.816000pt;}
.y7{bottom:708.232000pt;}
.y30{bottom:712.452000pt;}
.ybb{bottom:712.926667pt;}
.y57{bottom:718.756000pt;}
.y7d{bottom:721.345333pt;}
.y6{bottom:722.844000pt;}
.yde{bottom:724.042667pt;}
.y2f{bottom:728.392000pt;}
.yba{bottom:728.866667pt;}
.y56{bottom:734.696000pt;}
.y7c{bottom:737.220000pt;}
.ydd{bottom:739.982667pt;}
.y2e{bottom:744.333333pt;}
.yb9{bottom:744.806667pt;}
.y55{bottom:751.116000pt;}
.ydc{bottom:755.922667pt;}
.y2d{bottom:760.273333pt;}
.yb8{bottom:760.746667pt;}
.y54{bottom:767.056000pt;}
.y7b{bottom:772.502667pt;}
.y5{bottom:775.729333pt;}
.y2c{bottom:776.213333pt;}
.yb7{bottom:776.688000pt;}
.ydb{bottom:784.902667pt;}
.y7a{bottom:788.444000pt;}
.y4{bottom:790.341333pt;}
.y2b{bottom:792.153333pt;}
.yb6{bottom:792.628000pt;}
.y53{bottom:795.062667pt;}
.y2a{bottom:808.568000pt;}
.y52{bottom:811.002667pt;}
.y77{bottom:811.697333pt;}
.y3{bottom:818.182667pt;}
.y79{bottom:818.258667pt;}
.y29{bottom:824.508000pt;}
.y74{bottom:827.370667pt;}
.y51{bottom:827.422667pt;}
.y78{bottom:836.357333pt;}
.y76{bottom:839.989333pt;}
.y28{bottom:840.448000pt;}
.y50{bottom:843.842667pt;}
.y75{bottom:843.974667pt;}
.y27{bottom:856.388000pt;}
.y4f{bottom:859.782667pt;}
.y2{bottom:864.358667pt;}
.y26{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.hc{height:0.000000pt;}
.hb{height:27.895200pt;}
.h13{height:32.661606pt;}
.h3{height:35.865600pt;}
.hd{height:38.043849pt;}
.h4{height:39.850400pt;}
.h2{height:44.422874pt;}
.h14{height:44.428207pt;}
.h5{height:44.632747pt;}
.h12{height:47.950933pt;}
.hf{height:50.474667pt;}
.h11{height:51.857540pt;}
.he{height:53.279733pt;}
.h1{height:53.559147pt;}
.ha{height:73.990515pt;}
.h8{height:75.791733pt;}
.h6{height:75.797067pt;}
.h7{height:76.298400pt;}
.h10{height:86.922667pt;}
.h9{height:112.239733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:179.686667pt;}
.x2{left:182.004000pt;}
.x32{left:185.829333pt;}
.x4{left:187.692000pt;}
.x31{left:191.353333pt;}
.x29{left:192.645333pt;}
.x1{left:198.693333pt;}
.x8{left:199.612000pt;}
.x9{left:202.268000pt;}
.x6{left:217.481333pt;}
.x30{left:219.470667pt;}
.x3{left:221.916000pt;}
.x2e{left:232.569333pt;}
.x2d{left:252.454667pt;}
.x2c{left:255.526667pt;}
.x2a{left:257.064000pt;}
.x5{left:316.224000pt;}
.x16{left:322.665333pt;}
.x1d{left:324.302667pt;}
.x28{left:352.136000pt;}
.xc{left:353.578667pt;}
.x24{left:360.985333pt;}
.x1e{left:362.266667pt;}
.xa{left:364.953333pt;}
.xf{left:370.120000pt;}
.x1a{left:371.021333pt;}
.x17{left:376.204000pt;}
.x11{left:377.804000pt;}
.x20{left:379.564000pt;}
.x1f{left:382.590667pt;}
.x1b{left:400.844000pt;}
.x25{left:402.668000pt;}
.x13{left:405.960000pt;}
.x14{left:406.949333pt;}
.x12{left:409.990667pt;}
.xd{left:412.305333pt;}
.x23{left:414.168000pt;}
.x1c{left:415.549333pt;}
.x26{left:418.293333pt;}
.x10{left:419.333333pt;}
.x15{left:427.433333pt;}
.x18{left:433.524000pt;}
.xb{left:435.958667pt;}
.x27{left:441.605333pt;}
.xe{left:444.530667pt;}
.x19{left:446.717333pt;}
.x2f{left:450.396000pt;}
.x21{left:479.474667pt;}
.x2b{left:529.861333pt;}
.x22{left:623.814667pt;}
}




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