
    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_179ec20edddc972e4ca3b70b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_179ec20edddc972e4ca3b70b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985000;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_53bcde720235146ab6bfdba5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985000;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_2b3812673682da84d5d9be76.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.013000;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_6553c6821311722a65ed0b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_56086f2db270651a7e413888.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_5a653998b787c9dc5ead5195.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6ba4ef836813707b26f1d58.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4c1a20838525faba4a85f9f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_179ec20edddc972e4ca3b70b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_179ec20edddc972e4ca3b70b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_8e5292dc8f7a8c2485228ee1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.979000px;}
.ls19{letter-spacing:-1.358973px;}
.ls10{letter-spacing:-1.275000px;}
.ls1a{letter-spacing:-1.100121px;}
.ls11{letter-spacing:-0.153000px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.008400px;}
.ls4{letter-spacing:0.009000px;}
.ls6{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.126600px;}
.ls1e{letter-spacing:0.497400px;}
.lse{letter-spacing:0.718800px;}
.lsc{letter-spacing:0.719400px;}
.lsd{letter-spacing:0.720720px;}
.ls1d{letter-spacing:1.810200px;}
.ls1b{letter-spacing:1.983600px;}
.ls13{letter-spacing:2.478000px;}
.lsb{letter-spacing:2.840400px;}
.ls17{letter-spacing:4.008000px;}
.ls7{letter-spacing:4.175400px;}
.ls8{letter-spacing:4.176000px;}
.ls15{letter-spacing:4.745400px;}
.ls5{letter-spacing:6.113400px;}
.ls0{letter-spacing:7.245000px;}
.ls14{letter-spacing:8.056800px;}
.ls1c{letter-spacing:8.499600px;}
.ls23{letter-spacing:9.015000px;}
.ls21{letter-spacing:12.134400px;}
.ls25{letter-spacing:14.425800px;}
.ls24{letter-spacing:14.426400px;}
.ls12{letter-spacing:15.750000px;}
.ls1f{letter-spacing:28.188600px;}
.ls20{letter-spacing:28.189200px;}
.ls22{letter-spacing:29.355600px;}
.ls16{letter-spacing:48.976350px;}
.ls3{letter-spacing:72.289800px;}
.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;}
}
.ws0{word-spacing:-29.274000px;}
.ws1{word-spacing:-15.750000px;}
.ws5{word-spacing:-15.185520px;}
.ws7{word-spacing:-14.464800px;}
.ws4{word-spacing:-14.250000px;}
.ws50{word-spacing:-12.750000px;}
.ws4f{word-spacing:-11.025000px;}
.ws3{word-spacing:-9.975000px;}
.ws2{word-spacing:-9.182250px;}
.ws4e{word-spacing:-7.823277px;}
.ws51{word-spacing:-6.333129px;}
.ws99{word-spacing:-4.158000px;}
.wsdf{word-spacing:-3.339000px;}
.wsd2{word-spacing:-2.907000px;}
.ws64{word-spacing:-2.898000px;}
.wsa1{word-spacing:-2.772000px;}
.ws35{word-spacing:-2.646000px;}
.ws9b{word-spacing:-2.457000px;}
.ws94{word-spacing:-2.394000px;}
.wsba{word-spacing:-2.268000px;}
.ws61{word-spacing:-2.142000px;}
.ws57{word-spacing:-2.088000px;}
.ws74{word-spacing:-2.079000px;}
.ws89{word-spacing:-2.040000px;}
.ws91{word-spacing:-1.938000px;}
.ws77{word-spacing:-1.890000px;}
.ws4a{word-spacing:-1.872000px;}
.ws96{word-spacing:-1.827000px;}
.ws8a{word-spacing:-1.734000px;}
.wsa7{word-spacing:-1.683000px;}
.ws97{word-spacing:-1.638000px;}
.ws4d{word-spacing:-1.584000px;}
.ws56{word-spacing:-1.575000px;}
.wsb3{word-spacing:-1.530000px;}
.wsf{word-spacing:-1.449000px;}
.wsc{word-spacing:-1.344000px;}
.ws1c{word-spacing:-1.326000px;}
.ws1a{word-spacing:-1.275000px;}
.wsb{word-spacing:-1.200000px;}
.wsd0{word-spacing:-1.071000px;}
.wsbf{word-spacing:-0.945000px;}
.wsc1{word-spacing:-0.882000px;}
.wsd5{word-spacing:-0.765000px;}
.wsb5{word-spacing:-0.714000px;}
.ws95{word-spacing:-0.693000px;}
.ws25{word-spacing:-0.663000px;}
.wse2{word-spacing:-0.630000px;}
.wsae{word-spacing:-0.612000px;}
.wsc0{word-spacing:-0.567000px;}
.ws47{word-spacing:-0.408000px;}
.ws45{word-spacing:-0.357000px;}
.ws13{word-spacing:-0.315000px;}
.ws71{word-spacing:-0.255000px;}
.wsc6{word-spacing:-0.252000px;}
.wse1{word-spacing:-0.126000px;}
.ws81{word-spacing:-0.102000px;}
.ws92{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.ws73{word-spacing:0.126000px;}
.ws21{word-spacing:0.153000px;}
.ws98{word-spacing:0.189000px;}
.wscf{word-spacing:0.255000px;}
.ws46{word-spacing:0.306000px;}
.wsc3{word-spacing:0.315000px;}
.wsaa{word-spacing:0.459000px;}
.ws10{word-spacing:0.504000px;}
.wsc9{word-spacing:0.510000px;}
.ws5d{word-spacing:0.567000px;}
.wsac{word-spacing:0.816000px;}
.ws39{word-spacing:0.819000px;}
.ws49{word-spacing:0.867000px;}
.ws62{word-spacing:0.945000px;}
.wsb1{word-spacing:1.020000px;}
.ws90{word-spacing:1.071000px;}
.ws3e{word-spacing:1.173000px;}
.ws93{word-spacing:1.224000px;}
.ws3f{word-spacing:1.275000px;}
.ws8e{word-spacing:1.326000px;}
.wsab{word-spacing:1.377000px;}
.ws68{word-spacing:1.638000px;}
.wsc8{word-spacing:1.836000px;}
.ws70{word-spacing:1.887000px;}
.ws3c{word-spacing:1.890000px;}
.ws3d{word-spacing:1.938000px;}
.wsc2{word-spacing:1.953000px;}
.wsa6{word-spacing:1.989000px;}
.wsd3{word-spacing:2.040000px;}
.ws9c{word-spacing:2.079000px;}
.wsa3{word-spacing:2.142000px;}
.ws2a{word-spacing:2.205000px;}
.ws82{word-spacing:2.295000px;}
.ws9{word-spacing:2.304000px;}
.ws8f{word-spacing:2.346000px;}
.ws14{word-spacing:2.394000px;}
.wsd4{word-spacing:2.397000px;}
.ws60{word-spacing:2.457000px;}
.ws24{word-spacing:2.550000px;}
.wsa9{word-spacing:2.703000px;}
.wscc{word-spacing:2.805000px;}
.ws2b{word-spacing:2.835000px;}
.ws40{word-spacing:2.856000px;}
.ws53{word-spacing:2.898000px;}
.ws41{word-spacing:2.907000px;}
.ws20{word-spacing:3.009000px;}
.wsdb{word-spacing:3.024000px;}
.ws4c{word-spacing:3.120000px;}
.wsa4{word-spacing:3.213000px;}
.wsbe{word-spacing:3.276000px;}
.ws6f{word-spacing:3.315000px;}
.ws31{word-spacing:3.465000px;}
.ws48{word-spacing:3.468000px;}
.ws22{word-spacing:3.570000px;}
.wsb2{word-spacing:3.621000px;}
.ws4b{word-spacing:3.648000px;}
.ws29{word-spacing:3.654000px;}
.wsc4{word-spacing:3.717000px;}
.wsea{word-spacing:3.780000px;}
.ws28{word-spacing:3.927000px;}
.wsdd{word-spacing:3.969000px;}
.ws8c{word-spacing:4.029000px;}
.wsed{word-spacing:4.080000px;}
.ws36{word-spacing:4.095000px;}
.ws7f{word-spacing:4.158000px;}
.ws1d{word-spacing:4.182000px;}
.ws2c{word-spacing:4.221000px;}
.wsa5{word-spacing:4.284000px;}
.ws9a{word-spacing:4.410000px;}
.wsce{word-spacing:4.437000px;}
.ws52{word-spacing:4.536000px;}
.ws43{word-spacing:4.539000px;}
.wsb4{word-spacing:4.641000px;}
.ws6e{word-spacing:4.743000px;}
.wse5{word-spacing:4.788000px;}
.wsb0{word-spacing:4.845000px;}
.ws63{word-spacing:4.914000px;}
.ws72{word-spacing:5.103000px;}
.wsa{word-spacing:5.136000px;}
.ws23{word-spacing:5.151000px;}
.ws6b{word-spacing:5.166000px;}
.ws9e{word-spacing:5.418000px;}
.ws9f{word-spacing:5.481000px;}
.ws3b{word-spacing:5.544000px;}
.ws69{word-spacing:5.607000px;}
.ws27{word-spacing:5.610000px;}
.ws8d{word-spacing:5.712000px;}
.wsbd{word-spacing:5.733000px;}
.ws87{word-spacing:5.763000px;}
.wse3{word-spacing:5.985000px;}
.ws19{word-spacing:6.120000px;}
.ws32{word-spacing:6.237000px;}
.ws83{word-spacing:6.273000px;}
.wsa8{word-spacing:6.426000px;}
.wsda{word-spacing:6.489000px;}
.ws15{word-spacing:6.615000px;}
.wsde{word-spacing:6.678000px;}
.ws5f{word-spacing:6.741000px;}
.ws1f{word-spacing:6.783000px;}
.ws11{word-spacing:6.867000px;}
.ws85{word-spacing:6.936000px;}
.ws16{word-spacing:7.056000px;}
.wscb{word-spacing:7.089000px;}
.ws7e{word-spacing:7.119000px;}
.ws1e{word-spacing:7.140000px;}
.wsdc{word-spacing:7.308000px;}
.ws3a{word-spacing:7.497000px;}
.ws44{word-spacing:7.548000px;}
.ws55{word-spacing:7.623000px;}
.wsd9{word-spacing:7.686000px;}
.ws26{word-spacing:7.701000px;}
.ws12{word-spacing:7.749000px;}
.ws17{word-spacing:7.875000px;}
.ws34{word-spacing:7.938000px;}
.wsc5{word-spacing:8.001000px;}
.ws6d{word-spacing:8.058000px;}
.wsb8{word-spacing:8.127000px;}
.wse6{word-spacing:8.379000px;}
.ws75{word-spacing:8.442000px;}
.ws2f{word-spacing:8.505000px;}
.wsc7{word-spacing:8.517000px;}
.ws38{word-spacing:8.568000px;}
.ws5c{word-spacing:8.757000px;}
.wsec{word-spacing:8.823000px;}
.wsd8{word-spacing:9.027000px;}
.ws1b{word-spacing:9.282000px;}
.ws33{word-spacing:9.387000px;}
.ws88{word-spacing:9.435000px;}
.wsad{word-spacing:9.741000px;}
.ws8b{word-spacing:9.843000px;}
.ws80{word-spacing:9.954000px;}
.wsa2{word-spacing:10.017000px;}
.ws42{word-spacing:10.047000px;}
.wsaf{word-spacing:10.455000px;}
.ws6c{word-spacing:10.557000px;}
.ws59{word-spacing:10.584000px;}
.ws6a{word-spacing:10.647000px;}
.ws2d{word-spacing:10.710000px;}
.wsbb{word-spacing:11.592000px;}
.ws18{word-spacing:11.781000px;}
.ws79{word-spacing:11.844000px;}
.wscd{word-spacing:12.138000px;}
.wsd1{word-spacing:12.444000px;}
.wsb6{word-spacing:12.537000px;}
.ws5a{word-spacing:12.726000px;}
.ws7d{word-spacing:12.789000px;}
.wsd{word-spacing:12.912000px;}
.ws76{word-spacing:12.915000px;}
.wse7{word-spacing:13.167000px;}
.ws7b{word-spacing:13.230000px;}
.ws9d{word-spacing:13.293000px;}
.wsb7{word-spacing:13.419000px;}
.wse9{word-spacing:13.482000px;}
.wsbc{word-spacing:13.986000px;}
.wseb{word-spacing:14.433000px;}
.wse8{word-spacing:14.931000px;}
.ws86{word-spacing:14.994000px;}
.ws37{word-spacing:15.498000px;}
.wsa0{word-spacing:16.569000px;}
.wse4{word-spacing:17.325000px;}
.ws30{word-spacing:17.577000px;}
.wse0{word-spacing:17.703000px;}
.ws54{word-spacing:17.955000px;}
.ws66{word-spacing:18.018000px;}
.ws67{word-spacing:18.396000px;}
.ws84{word-spacing:18.768000px;}
.ws65{word-spacing:18.837000px;}
.ws78{word-spacing:19.404000px;}
.ws5b{word-spacing:20.790000px;}
.wsb9{word-spacing:21.168000px;}
.ws5e{word-spacing:21.294000px;}
.ws7c{word-spacing:21.861000px;}
.wsd6{word-spacing:21.981000px;}
.ws58{word-spacing:22.869000px;}
.ws2e{word-spacing:26.397000px;}
.wsca{word-spacing:28.203000px;}
.wsd7{word-spacing:29.376000px;}
.ws7a{word-spacing:29.925000px;}
.wse{word-spacing:70.416000px;}
.ws6{word-spacing:680.773080px;}
._7{margin-left:-16.320000px;}
._9{margin-left:-8.168700px;}
._3{margin-left:-6.974100px;}
._1{margin-left:-5.620200px;}
._11{margin-left:-4.533900px;}
._0{margin-left:-3.465000px;}
._2{margin-left:-1.920000px;}
._a{width:1.566300px;}
._8{width:2.576400px;}
._14{width:3.608100px;}
._f{width:4.744800px;}
._4{width:6.124800px;}
._e{width:8.142000px;}
._13{width:9.228600px;}
._c{width:10.591800px;}
._10{width:12.581100px;}
._d{width:18.804900px;}
._12{width:21.951600px;}
._5{width:48.144000px;}
._6{width:62.740050px;}
._b{width:72.504000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:29.733000px;}
.fs6{font-size:36.729000px;}
.fs8{font-size:39.900000px;}
.fsb{font-size:44.100000px;}
.fs3{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fs4{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:63.779400px;}
.y2b{bottom:63.779550px;}
.y92{bottom:78.779400px;}
.y2a{bottom:78.779550px;}
.y74{bottom:83.025150px;}
.y73{bottom:93.779400px;}
.y42{bottom:93.779550px;}
.ya4{bottom:98.025150px;}
.y29{bottom:98.025300px;}
.y72{bottom:108.779400px;}
.y28{bottom:108.779550px;}
.y91{bottom:123.779400px;}
.y27{bottom:123.779550px;}
.y71{bottom:128.025150px;}
.y90{bottom:138.779400px;}
.y26{bottom:138.779550px;}
.y70{bottom:143.025150px;}
.y6f{bottom:153.779400px;}
.y25{bottom:153.779550px;}
.y6e{bottom:168.779400px;}
.y24{bottom:168.779550px;}
.y6d{bottom:183.779400px;}
.y23{bottom:183.779550px;}
.ye8{bottom:188.025300px;}
.y6c{bottom:198.779400px;}
.y22{bottom:198.779550px;}
.y6b{bottom:213.779400px;}
.y21{bottom:213.779550px;}
.y8f{bottom:228.779400px;}
.y6a{bottom:233.025150px;}
.y20{bottom:233.025300px;}
.yc5{bottom:243.779400px;}
.y1f{bottom:243.779550px;}
.y8e{bottom:248.025150px;}
.y8d{bottom:258.779400px;}
.y1e{bottom:258.779550px;}
.y8c{bottom:273.779400px;}
.y1d{bottom:273.779550px;}
.y41{bottom:278.025300px;}
.y8b{bottom:288.779400px;}
.y40{bottom:288.779550px;}
.ye7{bottom:289.282650px;}
.y1c{bottom:293.025300px;}
.ya3{bottom:303.779400px;}
.y1b{bottom:303.779550px;}
.y8a{bottom:308.025150px;}
.ye6{bottom:308.032650px;}
.y69{bottom:318.069600px;}
.y89{bottom:318.779400px;}
.y1a{bottom:318.779550px;}
.yc4{bottom:323.025150px;}
.ye5{bottom:326.782650px;}
.ya2{bottom:333.779400px;}
.y68{bottom:336.819600px;}
.y88{bottom:338.025150px;}
.ye4{bottom:345.532650px;}
.y87{bottom:348.779400px;}
.yc3{bottom:353.025150px;}
.y67{bottom:355.569600px;}
.y3f{bottom:359.777400px;}
.y86{bottom:363.779400px;}
.ye3{bottom:364.282650px;}
.y66{bottom:374.319600px;}
.y3e{bottom:378.527400px;}
.y85{bottom:378.779400px;}
.y19{bottom:378.818850px;}
.ye2{bottom:383.032650px;}
.y65{bottom:393.069600px;}
.y84{bottom:393.779400px;}
.y3d{bottom:397.277400px;}
.y18{bottom:397.568850px;}
.yc2{bottom:398.025150px;}
.ye1{bottom:401.782650px;}
.ya1{bottom:408.779400px;}
.y64{bottom:411.819600px;}
.y83{bottom:413.025150px;}
.y3c{bottom:416.027400px;}
.y17{bottom:416.318850px;}
.ye0{bottom:420.532650px;}
.ya0{bottom:423.779400px;}
.yc1{bottom:428.025150px;}
.y63{bottom:430.569600px;}
.y3b{bottom:434.777400px;}
.y16{bottom:435.068850px;}
.y9f{bottom:438.779400px;}
.y62{bottom:449.319600px;}
.y3a{bottom:453.527400px;}
.y9e{bottom:453.779400px;}
.y15{bottom:453.818850px;}
.ydf{bottom:455.014950px;}
.y61{bottom:468.069600px;}
.y9d{bottom:468.779400px;}
.y39{bottom:472.277400px;}
.y14{bottom:472.568850px;}
.yc0{bottom:473.097600px;}
.y38{bottom:491.027400px;}
.y13{bottom:491.318850px;}
.ybf{bottom:491.847600px;}
.y60{bottom:494.048100px;}
.y37{bottom:509.777400px;}
.y12{bottom:510.068850px;}
.ybe{bottom:510.597600px;}
.y5f{bottom:512.798100px;}
.yde{bottom:513.532650px;}
.y9c{bottom:513.548100px;}
.y36{bottom:528.527400px;}
.y11{bottom:528.818850px;}
.ybd{bottom:529.347600px;}
.y5e{bottom:531.548100px;}
.ydd{bottom:532.282650px;}
.y9b{bottom:532.298100px;}
.y35{bottom:547.277400px;}
.y10{bottom:547.568850px;}
.ybc{bottom:548.097600px;}
.y5d{bottom:550.298100px;}
.ydc{bottom:551.032650px;}
.y9a{bottom:551.048100px;}
.y34{bottom:566.027400px;}
.ybb{bottom:566.847600px;}
.y5c{bottom:569.048100px;}
.ydb{bottom:569.782650px;}
.y99{bottom:569.798100px;}
.y33{bottom:584.777400px;}
.yba{bottom:585.597600px;}
.yf{bottom:586.303050px;}
.y5b{bottom:587.798100px;}
.yda{bottom:588.532650px;}
.y98{bottom:588.548100px;}
.y32{bottom:603.527400px;}
.yb9{bottom:604.347600px;}
.y5a{bottom:606.548100px;}
.yd9{bottom:607.282650px;}
.y97{bottom:607.298100px;}
.y31{bottom:622.277400px;}
.y82{bottom:622.280250px;}
.yb8{bottom:623.097600px;}
.y59{bottom:625.298100px;}
.yd8{bottom:626.032650px;}
.y96{bottom:626.048100px;}
.y30{bottom:641.027400px;}
.y81{bottom:642.530250px;}
.y58{bottom:644.048100px;}
.yd7{bottom:644.782650px;}
.y95{bottom:644.798100px;}
.yb7{bottom:649.075950px;}
.ye{bottom:653.324700px;}
.y2f{bottom:659.777400px;}
.y57{bottom:662.798100px;}
.yd6{bottom:663.532650px;}
.y94{bottom:663.548100px;}
.yb6{bottom:667.825950px;}
.yd{bottom:668.324700px;}
.y2e{bottom:678.527400px;}
.y56{bottom:681.548100px;}
.yd5{bottom:682.282650px;}
.y93{bottom:682.298100px;}
.yc{bottom:683.324700px;}
.yb5{bottom:686.575950px;}
.y2d{bottom:697.277400px;}
.yb{bottom:698.324700px;}
.y55{bottom:700.298100px;}
.yd4{bottom:701.032650px;}
.y80{bottom:701.048100px;}
.yb4{bottom:705.325950px;}
.y2c{bottom:716.027400px;}
.ya{bottom:717.576750px;}
.y54{bottom:719.048100px;}
.yd3{bottom:719.782650px;}
.y7f{bottom:719.798100px;}
.yb3{bottom:724.075950px;}
.y53{bottom:737.798100px;}
.yd2{bottom:738.532650px;}
.y7e{bottom:738.548100px;}
.yb2{bottom:742.825950px;}
.y52{bottom:756.548100px;}
.yd1{bottom:757.282650px;}
.y7d{bottom:757.298100px;}
.yb1{bottom:761.575950px;}
.y51{bottom:775.298100px;}
.yd0{bottom:776.032650px;}
.y7c{bottom:776.048100px;}
.yb0{bottom:780.325950px;}
.y50{bottom:794.048100px;}
.ycf{bottom:794.782650px;}
.y7b{bottom:794.798100px;}
.yaf{bottom:799.075950px;}
.y44{bottom:804.616650px;}
.yce{bottom:813.532650px;}
.y7a{bottom:813.548100px;}
.yae{bottom:817.825950px;}
.y43{bottom:819.616650px;}
.y4f{bottom:828.530250px;}
.ycd{bottom:832.282650px;}
.y79{bottom:832.298100px;}
.y9{bottom:834.616650px;}
.yad{bottom:843.804300px;}
.y4e{bottom:848.780250px;}
.y8{bottom:849.616650px;}
.ycc{bottom:851.032650px;}
.y78{bottom:851.048100px;}
.yac{bottom:862.554300px;}
.y7{bottom:864.616650px;}
.ycb{bottom:869.782650px;}
.y77{bottom:869.798100px;}
.y6{bottom:879.616650px;}
.yab{bottom:881.304300px;}
.yca{bottom:888.532650px;}
.y76{bottom:888.548100px;}
.yaa{bottom:900.054300px;}
.yc9{bottom:907.282650px;}
.y4d{bottom:907.298100px;}
.ya9{bottom:918.804300px;}
.yc8{bottom:926.032650px;}
.y4c{bottom:926.048100px;}
.ya8{bottom:937.554300px;}
.yc7{bottom:944.782650px;}
.y4b{bottom:944.798100px;}
.ya7{bottom:956.304300px;}
.y45{bottom:956.467950px;}
.yc6{bottom:963.532650px;}
.y4a{bottom:963.548100px;}
.ya6{bottom:982.282650px;}
.y49{bottom:982.298100px;}
.ya5{bottom:1001.032650px;}
.y48{bottom:1001.048100px;}
.y1{bottom:1072.250850px;}
.y5{bottom:1088.033400px;}
.y4{bottom:1116.533400px;}
.y47{bottom:1171.350000px;}
.y3{bottom:1171.351350px;}
.y46{bottom:1195.628700px;}
.y2{bottom:1195.630050px;}
.hb{height:25.550203px;}
.he{height:30.554109px;}
.h7{height:35.280000px;}
.hc{height:35.411133px;}
.hf{height:35.436035px;}
.h5{height:36.624000px;}
.h6{height:37.485000px;}
.h3{height:39.690000px;}
.hd{height:42.533203px;}
.h11{height:43.743164px;}
.h13{height:43.773926px;}
.h2{height:46.305000px;}
.ha{height:47.537109px;}
.h10{height:51.268200px;}
.h12{height:51.610412px;}
.h9{height:52.541016px;}
.h8{height:52.920000px;}
.h4{height:74.970000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.610400px;}
.x6{left:64.004850px;}
.x5{left:68.256900px;}
.x7{left:85.264650px;}
.xf{left:102.047250px;}
.x4{left:234.308550px;}
.xb{left:236.151600px;}
.x2{left:265.783350px;}
.xd{left:274.909650px;}
.x3{left:396.838350px;}
.x8{left:467.941950px;}
.xa{left:472.193850px;}
.x9{left:489.201750px;}
.xe{left:505.984200px;}
.x1{left:846.141750px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.648000pt;}
.ls19{letter-spacing:-1.207976pt;}
.ls10{letter-spacing:-1.133333pt;}
.ls1a{letter-spacing:-0.977885pt;}
.ls11{letter-spacing:-0.136000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.007467pt;}
.ls4{letter-spacing:0.008000pt;}
.ls6{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.112533pt;}
.ls1e{letter-spacing:0.442133pt;}
.lse{letter-spacing:0.638933pt;}
.lsc{letter-spacing:0.639467pt;}
.lsd{letter-spacing:0.640640pt;}
.ls1d{letter-spacing:1.609067pt;}
.ls1b{letter-spacing:1.763200pt;}
.ls13{letter-spacing:2.202667pt;}
.lsb{letter-spacing:2.524800pt;}
.ls17{letter-spacing:3.562667pt;}
.ls7{letter-spacing:3.711467pt;}
.ls8{letter-spacing:3.712000pt;}
.ls15{letter-spacing:4.218133pt;}
.ls5{letter-spacing:5.434133pt;}
.ls0{letter-spacing:6.440000pt;}
.ls14{letter-spacing:7.161600pt;}
.ls1c{letter-spacing:7.555200pt;}
.ls23{letter-spacing:8.013333pt;}
.ls21{letter-spacing:10.786133pt;}
.ls25{letter-spacing:12.822933pt;}
.ls24{letter-spacing:12.823467pt;}
.ls12{letter-spacing:14.000000pt;}
.ls1f{letter-spacing:25.056533pt;}
.ls20{letter-spacing:25.057067pt;}
.ls22{letter-spacing:26.093867pt;}
.ls16{letter-spacing:43.534533pt;}
.ls3{letter-spacing:64.257600pt;}
.ws0{word-spacing:-26.021333pt;}
.ws1{word-spacing:-14.000000pt;}
.ws5{word-spacing:-13.498240pt;}
.ws7{word-spacing:-12.857600pt;}
.ws4{word-spacing:-12.666667pt;}
.ws50{word-spacing:-11.333333pt;}
.ws4f{word-spacing:-9.800000pt;}
.ws3{word-spacing:-8.866667pt;}
.ws2{word-spacing:-8.162000pt;}
.ws4e{word-spacing:-6.954024pt;}
.ws51{word-spacing:-5.629448pt;}
.ws99{word-spacing:-3.696000pt;}
.wsdf{word-spacing:-2.968000pt;}
.wsd2{word-spacing:-2.584000pt;}
.ws64{word-spacing:-2.576000pt;}
.wsa1{word-spacing:-2.464000pt;}
.ws35{word-spacing:-2.352000pt;}
.ws9b{word-spacing:-2.184000pt;}
.ws94{word-spacing:-2.128000pt;}
.wsba{word-spacing:-2.016000pt;}
.ws61{word-spacing:-1.904000pt;}
.ws57{word-spacing:-1.856000pt;}
.ws74{word-spacing:-1.848000pt;}
.ws89{word-spacing:-1.813333pt;}
.ws91{word-spacing:-1.722667pt;}
.ws77{word-spacing:-1.680000pt;}
.ws4a{word-spacing:-1.664000pt;}
.ws96{word-spacing:-1.624000pt;}
.ws8a{word-spacing:-1.541333pt;}
.wsa7{word-spacing:-1.496000pt;}
.ws97{word-spacing:-1.456000pt;}
.ws4d{word-spacing:-1.408000pt;}
.ws56{word-spacing:-1.400000pt;}
.wsb3{word-spacing:-1.360000pt;}
.wsf{word-spacing:-1.288000pt;}
.wsc{word-spacing:-1.194667pt;}
.ws1c{word-spacing:-1.178667pt;}
.ws1a{word-spacing:-1.133333pt;}
.wsb{word-spacing:-1.066667pt;}
.wsd0{word-spacing:-0.952000pt;}
.wsbf{word-spacing:-0.840000pt;}
.wsc1{word-spacing:-0.784000pt;}
.wsd5{word-spacing:-0.680000pt;}
.wsb5{word-spacing:-0.634667pt;}
.ws95{word-spacing:-0.616000pt;}
.ws25{word-spacing:-0.589333pt;}
.wse2{word-spacing:-0.560000pt;}
.wsae{word-spacing:-0.544000pt;}
.wsc0{word-spacing:-0.504000pt;}
.ws47{word-spacing:-0.362667pt;}
.ws45{word-spacing:-0.317333pt;}
.ws13{word-spacing:-0.280000pt;}
.ws71{word-spacing:-0.226667pt;}
.wsc6{word-spacing:-0.224000pt;}
.wse1{word-spacing:-0.112000pt;}
.ws81{word-spacing:-0.090667pt;}
.ws92{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.ws73{word-spacing:0.112000pt;}
.ws21{word-spacing:0.136000pt;}
.ws98{word-spacing:0.168000pt;}
.wscf{word-spacing:0.226667pt;}
.ws46{word-spacing:0.272000pt;}
.wsc3{word-spacing:0.280000pt;}
.wsaa{word-spacing:0.408000pt;}
.ws10{word-spacing:0.448000pt;}
.wsc9{word-spacing:0.453333pt;}
.ws5d{word-spacing:0.504000pt;}
.wsac{word-spacing:0.725333pt;}
.ws39{word-spacing:0.728000pt;}
.ws49{word-spacing:0.770667pt;}
.ws62{word-spacing:0.840000pt;}
.wsb1{word-spacing:0.906667pt;}
.ws90{word-spacing:0.952000pt;}
.ws3e{word-spacing:1.042667pt;}
.ws93{word-spacing:1.088000pt;}
.ws3f{word-spacing:1.133333pt;}
.ws8e{word-spacing:1.178667pt;}
.wsab{word-spacing:1.224000pt;}
.ws68{word-spacing:1.456000pt;}
.wsc8{word-spacing:1.632000pt;}
.ws70{word-spacing:1.677333pt;}
.ws3c{word-spacing:1.680000pt;}
.ws3d{word-spacing:1.722667pt;}
.wsc2{word-spacing:1.736000pt;}
.wsa6{word-spacing:1.768000pt;}
.wsd3{word-spacing:1.813333pt;}
.ws9c{word-spacing:1.848000pt;}
.wsa3{word-spacing:1.904000pt;}
.ws2a{word-spacing:1.960000pt;}
.ws82{word-spacing:2.040000pt;}
.ws9{word-spacing:2.048000pt;}
.ws8f{word-spacing:2.085333pt;}
.ws14{word-spacing:2.128000pt;}
.wsd4{word-spacing:2.130667pt;}
.ws60{word-spacing:2.184000pt;}
.ws24{word-spacing:2.266667pt;}
.wsa9{word-spacing:2.402667pt;}
.wscc{word-spacing:2.493333pt;}
.ws2b{word-spacing:2.520000pt;}
.ws40{word-spacing:2.538667pt;}
.ws53{word-spacing:2.576000pt;}
.ws41{word-spacing:2.584000pt;}
.ws20{word-spacing:2.674667pt;}
.wsdb{word-spacing:2.688000pt;}
.ws4c{word-spacing:2.773333pt;}
.wsa4{word-spacing:2.856000pt;}
.wsbe{word-spacing:2.912000pt;}
.ws6f{word-spacing:2.946667pt;}
.ws31{word-spacing:3.080000pt;}
.ws48{word-spacing:3.082667pt;}
.ws22{word-spacing:3.173333pt;}
.wsb2{word-spacing:3.218667pt;}
.ws4b{word-spacing:3.242667pt;}
.ws29{word-spacing:3.248000pt;}
.wsc4{word-spacing:3.304000pt;}
.wsea{word-spacing:3.360000pt;}
.ws28{word-spacing:3.490667pt;}
.wsdd{word-spacing:3.528000pt;}
.ws8c{word-spacing:3.581333pt;}
.wsed{word-spacing:3.626667pt;}
.ws36{word-spacing:3.640000pt;}
.ws7f{word-spacing:3.696000pt;}
.ws1d{word-spacing:3.717333pt;}
.ws2c{word-spacing:3.752000pt;}
.wsa5{word-spacing:3.808000pt;}
.ws9a{word-spacing:3.920000pt;}
.wsce{word-spacing:3.944000pt;}
.ws52{word-spacing:4.032000pt;}
.ws43{word-spacing:4.034667pt;}
.wsb4{word-spacing:4.125333pt;}
.ws6e{word-spacing:4.216000pt;}
.wse5{word-spacing:4.256000pt;}
.wsb0{word-spacing:4.306667pt;}
.ws63{word-spacing:4.368000pt;}
.ws72{word-spacing:4.536000pt;}
.wsa{word-spacing:4.565333pt;}
.ws23{word-spacing:4.578667pt;}
.ws6b{word-spacing:4.592000pt;}
.ws9e{word-spacing:4.816000pt;}
.ws9f{word-spacing:4.872000pt;}
.ws3b{word-spacing:4.928000pt;}
.ws69{word-spacing:4.984000pt;}
.ws27{word-spacing:4.986667pt;}
.ws8d{word-spacing:5.077333pt;}
.wsbd{word-spacing:5.096000pt;}
.ws87{word-spacing:5.122667pt;}
.wse3{word-spacing:5.320000pt;}
.ws19{word-spacing:5.440000pt;}
.ws32{word-spacing:5.544000pt;}
.ws83{word-spacing:5.576000pt;}
.wsa8{word-spacing:5.712000pt;}
.wsda{word-spacing:5.768000pt;}
.ws15{word-spacing:5.880000pt;}
.wsde{word-spacing:5.936000pt;}
.ws5f{word-spacing:5.992000pt;}
.ws1f{word-spacing:6.029333pt;}
.ws11{word-spacing:6.104000pt;}
.ws85{word-spacing:6.165333pt;}
.ws16{word-spacing:6.272000pt;}
.wscb{word-spacing:6.301333pt;}
.ws7e{word-spacing:6.328000pt;}
.ws1e{word-spacing:6.346667pt;}
.wsdc{word-spacing:6.496000pt;}
.ws3a{word-spacing:6.664000pt;}
.ws44{word-spacing:6.709333pt;}
.ws55{word-spacing:6.776000pt;}
.wsd9{word-spacing:6.832000pt;}
.ws26{word-spacing:6.845333pt;}
.ws12{word-spacing:6.888000pt;}
.ws17{word-spacing:7.000000pt;}
.ws34{word-spacing:7.056000pt;}
.wsc5{word-spacing:7.112000pt;}
.ws6d{word-spacing:7.162667pt;}
.wsb8{word-spacing:7.224000pt;}
.wse6{word-spacing:7.448000pt;}
.ws75{word-spacing:7.504000pt;}
.ws2f{word-spacing:7.560000pt;}
.wsc7{word-spacing:7.570667pt;}
.ws38{word-spacing:7.616000pt;}
.ws5c{word-spacing:7.784000pt;}
.wsec{word-spacing:7.842667pt;}
.wsd8{word-spacing:8.024000pt;}
.ws1b{word-spacing:8.250667pt;}
.ws33{word-spacing:8.344000pt;}
.ws88{word-spacing:8.386667pt;}
.wsad{word-spacing:8.658667pt;}
.ws8b{word-spacing:8.749333pt;}
.ws80{word-spacing:8.848000pt;}
.wsa2{word-spacing:8.904000pt;}
.ws42{word-spacing:8.930667pt;}
.wsaf{word-spacing:9.293333pt;}
.ws6c{word-spacing:9.384000pt;}
.ws59{word-spacing:9.408000pt;}
.ws6a{word-spacing:9.464000pt;}
.ws2d{word-spacing:9.520000pt;}
.wsbb{word-spacing:10.304000pt;}
.ws18{word-spacing:10.472000pt;}
.ws79{word-spacing:10.528000pt;}
.wscd{word-spacing:10.789333pt;}
.wsd1{word-spacing:11.061333pt;}
.wsb6{word-spacing:11.144000pt;}
.ws5a{word-spacing:11.312000pt;}
.ws7d{word-spacing:11.368000pt;}
.wsd{word-spacing:11.477333pt;}
.ws76{word-spacing:11.480000pt;}
.wse7{word-spacing:11.704000pt;}
.ws7b{word-spacing:11.760000pt;}
.ws9d{word-spacing:11.816000pt;}
.wsb7{word-spacing:11.928000pt;}
.wse9{word-spacing:11.984000pt;}
.wsbc{word-spacing:12.432000pt;}
.wseb{word-spacing:12.829333pt;}
.wse8{word-spacing:13.272000pt;}
.ws86{word-spacing:13.328000pt;}
.ws37{word-spacing:13.776000pt;}
.wsa0{word-spacing:14.728000pt;}
.wse4{word-spacing:15.400000pt;}
.ws30{word-spacing:15.624000pt;}
.wse0{word-spacing:15.736000pt;}
.ws54{word-spacing:15.960000pt;}
.ws66{word-spacing:16.016000pt;}
.ws67{word-spacing:16.352000pt;}
.ws84{word-spacing:16.682667pt;}
.ws65{word-spacing:16.744000pt;}
.ws78{word-spacing:17.248000pt;}
.ws5b{word-spacing:18.480000pt;}
.wsb9{word-spacing:18.816000pt;}
.ws5e{word-spacing:18.928000pt;}
.ws7c{word-spacing:19.432000pt;}
.wsd6{word-spacing:19.538667pt;}
.ws58{word-spacing:20.328000pt;}
.ws2e{word-spacing:23.464000pt;}
.wsca{word-spacing:25.069333pt;}
.wsd7{word-spacing:26.112000pt;}
.ws7a{word-spacing:26.600000pt;}
.wse{word-spacing:62.592000pt;}
.ws6{word-spacing:605.131627pt;}
._7{margin-left:-14.506667pt;}
._9{margin-left:-7.261067pt;}
._3{margin-left:-6.199200pt;}
._1{margin-left:-4.995733pt;}
._11{margin-left:-4.030133pt;}
._0{margin-left:-3.080000pt;}
._2{margin-left:-1.706667pt;}
._a{width:1.392267pt;}
._8{width:2.290133pt;}
._14{width:3.207200pt;}
._f{width:4.217600pt;}
._4{width:5.444267pt;}
._e{width:7.237333pt;}
._13{width:8.203200pt;}
._c{width:9.414933pt;}
._10{width:11.183200pt;}
._d{width:16.715467pt;}
._12{width:19.512533pt;}
._5{width:42.794667pt;}
._6{width:55.768933pt;}
._b{width:64.448000pt;}
.fs9{font-size:26.429333pt;}
.fs6{font-size:32.648000pt;}
.fs8{font-size:35.466667pt;}
.fsb{font-size:39.200000pt;}
.fs3{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fs4{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:56.692800pt;}
.y2b{bottom:56.692933pt;}
.y92{bottom:70.026133pt;}
.y2a{bottom:70.026267pt;}
.y74{bottom:73.800133pt;}
.y73{bottom:83.359467pt;}
.y42{bottom:83.359600pt;}
.ya4{bottom:87.133467pt;}
.y29{bottom:87.133600pt;}
.y72{bottom:96.692800pt;}
.y28{bottom:96.692933pt;}
.y91{bottom:110.026133pt;}
.y27{bottom:110.026267pt;}
.y71{bottom:113.800133pt;}
.y90{bottom:123.359467pt;}
.y26{bottom:123.359600pt;}
.y70{bottom:127.133467pt;}
.y6f{bottom:136.692800pt;}
.y25{bottom:136.692933pt;}
.y6e{bottom:150.026133pt;}
.y24{bottom:150.026267pt;}
.y6d{bottom:163.359467pt;}
.y23{bottom:163.359600pt;}
.ye8{bottom:167.133600pt;}
.y6c{bottom:176.692800pt;}
.y22{bottom:176.692933pt;}
.y6b{bottom:190.026133pt;}
.y21{bottom:190.026267pt;}
.y8f{bottom:203.359467pt;}
.y6a{bottom:207.133467pt;}
.y20{bottom:207.133600pt;}
.yc5{bottom:216.692800pt;}
.y1f{bottom:216.692933pt;}
.y8e{bottom:220.466800pt;}
.y8d{bottom:230.026133pt;}
.y1e{bottom:230.026267pt;}
.y8c{bottom:243.359467pt;}
.y1d{bottom:243.359600pt;}
.y41{bottom:247.133600pt;}
.y8b{bottom:256.692800pt;}
.y40{bottom:256.692933pt;}
.ye7{bottom:257.140133pt;}
.y1c{bottom:260.466933pt;}
.ya3{bottom:270.026133pt;}
.y1b{bottom:270.026267pt;}
.y8a{bottom:273.800133pt;}
.ye6{bottom:273.806800pt;}
.y69{bottom:282.728533pt;}
.y89{bottom:283.359467pt;}
.y1a{bottom:283.359600pt;}
.yc4{bottom:287.133467pt;}
.ye5{bottom:290.473467pt;}
.ya2{bottom:296.692800pt;}
.y68{bottom:299.395200pt;}
.y88{bottom:300.466800pt;}
.ye4{bottom:307.140133pt;}
.y87{bottom:310.026133pt;}
.yc3{bottom:313.800133pt;}
.y67{bottom:316.061867pt;}
.y3f{bottom:319.802133pt;}
.y86{bottom:323.359467pt;}
.ye3{bottom:323.806800pt;}
.y66{bottom:332.728533pt;}
.y3e{bottom:336.468800pt;}
.y85{bottom:336.692800pt;}
.y19{bottom:336.727867pt;}
.ye2{bottom:340.473467pt;}
.y65{bottom:349.395200pt;}
.y84{bottom:350.026133pt;}
.y3d{bottom:353.135467pt;}
.y18{bottom:353.394533pt;}
.yc2{bottom:353.800133pt;}
.ye1{bottom:357.140133pt;}
.ya1{bottom:363.359467pt;}
.y64{bottom:366.061867pt;}
.y83{bottom:367.133467pt;}
.y3c{bottom:369.802133pt;}
.y17{bottom:370.061200pt;}
.ye0{bottom:373.806800pt;}
.ya0{bottom:376.692800pt;}
.yc1{bottom:380.466800pt;}
.y63{bottom:382.728533pt;}
.y3b{bottom:386.468800pt;}
.y16{bottom:386.727867pt;}
.y9f{bottom:390.026133pt;}
.y62{bottom:399.395200pt;}
.y3a{bottom:403.135467pt;}
.y9e{bottom:403.359467pt;}
.y15{bottom:403.394533pt;}
.ydf{bottom:404.457733pt;}
.y61{bottom:416.061867pt;}
.y9d{bottom:416.692800pt;}
.y39{bottom:419.802133pt;}
.y14{bottom:420.061200pt;}
.yc0{bottom:420.531200pt;}
.y38{bottom:436.468800pt;}
.y13{bottom:436.727867pt;}
.ybf{bottom:437.197867pt;}
.y60{bottom:439.153867pt;}
.y37{bottom:453.135467pt;}
.y12{bottom:453.394533pt;}
.ybe{bottom:453.864533pt;}
.y5f{bottom:455.820533pt;}
.yde{bottom:456.473467pt;}
.y9c{bottom:456.487200pt;}
.y36{bottom:469.802133pt;}
.y11{bottom:470.061200pt;}
.ybd{bottom:470.531200pt;}
.y5e{bottom:472.487200pt;}
.ydd{bottom:473.140133pt;}
.y9b{bottom:473.153867pt;}
.y35{bottom:486.468800pt;}
.y10{bottom:486.727867pt;}
.ybc{bottom:487.197867pt;}
.y5d{bottom:489.153867pt;}
.ydc{bottom:489.806800pt;}
.y9a{bottom:489.820533pt;}
.y34{bottom:503.135467pt;}
.ybb{bottom:503.864533pt;}
.y5c{bottom:505.820533pt;}
.ydb{bottom:506.473467pt;}
.y99{bottom:506.487200pt;}
.y33{bottom:519.802133pt;}
.yba{bottom:520.531200pt;}
.yf{bottom:521.158267pt;}
.y5b{bottom:522.487200pt;}
.yda{bottom:523.140133pt;}
.y98{bottom:523.153867pt;}
.y32{bottom:536.468800pt;}
.yb9{bottom:537.197867pt;}
.y5a{bottom:539.153867pt;}
.yd9{bottom:539.806800pt;}
.y97{bottom:539.820533pt;}
.y31{bottom:553.135467pt;}
.y82{bottom:553.138000pt;}
.yb8{bottom:553.864533pt;}
.y59{bottom:555.820533pt;}
.yd8{bottom:556.473467pt;}
.y96{bottom:556.487200pt;}
.y30{bottom:569.802133pt;}
.y81{bottom:571.138000pt;}
.y58{bottom:572.487200pt;}
.yd7{bottom:573.140133pt;}
.y95{bottom:573.153867pt;}
.yb7{bottom:576.956400pt;}
.ye{bottom:580.733067pt;}
.y2f{bottom:586.468800pt;}
.y57{bottom:589.153867pt;}
.yd6{bottom:589.806800pt;}
.y94{bottom:589.820533pt;}
.yb6{bottom:593.623067pt;}
.yd{bottom:594.066400pt;}
.y2e{bottom:603.135467pt;}
.y56{bottom:605.820533pt;}
.yd5{bottom:606.473467pt;}
.y93{bottom:606.487200pt;}
.yc{bottom:607.399733pt;}
.yb5{bottom:610.289733pt;}
.y2d{bottom:619.802133pt;}
.yb{bottom:620.733067pt;}
.y55{bottom:622.487200pt;}
.yd4{bottom:623.140133pt;}
.y80{bottom:623.153867pt;}
.yb4{bottom:626.956400pt;}
.y2c{bottom:636.468800pt;}
.ya{bottom:637.846000pt;}
.y54{bottom:639.153867pt;}
.yd3{bottom:639.806800pt;}
.y7f{bottom:639.820533pt;}
.yb3{bottom:643.623067pt;}
.y53{bottom:655.820533pt;}
.yd2{bottom:656.473467pt;}
.y7e{bottom:656.487200pt;}
.yb2{bottom:660.289733pt;}
.y52{bottom:672.487200pt;}
.yd1{bottom:673.140133pt;}
.y7d{bottom:673.153867pt;}
.yb1{bottom:676.956400pt;}
.y51{bottom:689.153867pt;}
.yd0{bottom:689.806800pt;}
.y7c{bottom:689.820533pt;}
.yb0{bottom:693.623067pt;}
.y50{bottom:705.820533pt;}
.ycf{bottom:706.473467pt;}
.y7b{bottom:706.487200pt;}
.yaf{bottom:710.289733pt;}
.y44{bottom:715.214800pt;}
.yce{bottom:723.140133pt;}
.y7a{bottom:723.153867pt;}
.yae{bottom:726.956400pt;}
.y43{bottom:728.548133pt;}
.y4f{bottom:736.471333pt;}
.ycd{bottom:739.806800pt;}
.y79{bottom:739.820533pt;}
.y9{bottom:741.881467pt;}
.yad{bottom:750.048267pt;}
.y4e{bottom:754.471333pt;}
.y8{bottom:755.214800pt;}
.ycc{bottom:756.473467pt;}
.y78{bottom:756.487200pt;}
.yac{bottom:766.714933pt;}
.y7{bottom:768.548133pt;}
.ycb{bottom:773.140133pt;}
.y77{bottom:773.153867pt;}
.y6{bottom:781.881467pt;}
.yab{bottom:783.381600pt;}
.yca{bottom:789.806800pt;}
.y76{bottom:789.820533pt;}
.yaa{bottom:800.048267pt;}
.yc9{bottom:806.473467pt;}
.y4d{bottom:806.487200pt;}
.ya9{bottom:816.714933pt;}
.yc8{bottom:823.140133pt;}
.y4c{bottom:823.153867pt;}
.ya8{bottom:833.381600pt;}
.yc7{bottom:839.806800pt;}
.y4b{bottom:839.820533pt;}
.ya7{bottom:850.048267pt;}
.y45{bottom:850.193733pt;}
.yc6{bottom:856.473467pt;}
.y4a{bottom:856.487200pt;}
.ya6{bottom:873.140133pt;}
.y49{bottom:873.153867pt;}
.ya5{bottom:889.806800pt;}
.y48{bottom:889.820533pt;}
.y1{bottom:953.111867pt;}
.y5{bottom:967.140800pt;}
.y4{bottom:992.474133pt;}
.y47{bottom:1041.200000pt;}
.y3{bottom:1041.201200pt;}
.y46{bottom:1062.781067pt;}
.y2{bottom:1062.782267pt;}
.hb{height:22.711292pt;}
.he{height:27.159208pt;}
.h7{height:31.360000pt;}
.hc{height:31.476562pt;}
.hf{height:31.498698pt;}
.h5{height:32.554667pt;}
.h6{height:33.320000pt;}
.h3{height:35.280000pt;}
.hd{height:37.807292pt;}
.h11{height:38.882812pt;}
.h13{height:38.910156pt;}
.h2{height:41.160000pt;}
.ha{height:42.255208pt;}
.h10{height:45.571733pt;}
.h12{height:45.875922pt;}
.h9{height:46.703125pt;}
.h8{height:47.040000pt;}
.h4{height:66.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.431467pt;}
.x6{left:56.893200pt;}
.x5{left:60.672800pt;}
.x7{left:75.790800pt;}
.xf{left:90.708667pt;}
.x4{left:208.274267pt;}
.xb{left:209.912533pt;}
.x2{left:236.251867pt;}
.xd{left:244.364133pt;}
.x3{left:352.745200pt;}
.x8{left:415.948400pt;}
.xa{left:419.727867pt;}
.x9{left:434.846000pt;}
.xe{left:449.763733pt;}
.x1{left:752.126000pt;}
}




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