
    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_eb34909ebce597b2c4757562.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088000;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_2fe66c715d025d0e14718173.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.223000;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_9df42e27575ded500a47c228.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055000;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_4174226dd270cd6d551d270e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_4752fd2778d19bfbb2ee622c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_109614c03c1917ac2cf7e3c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050000;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_7d9074b29ff9bea4319378b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148438;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_c97a61e1b2de11e680fbb719.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_6871bf63e2e06b58e706dbdb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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);}
.v1{vertical-align:-20.790000px;}
.v2{vertical-align:-17.820600px;}
.v3{vertical-align:-15.840000px;}
.v7{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.500000px;}
.v4{vertical-align:15.840000px;}
.v6{vertical-align:20.538000px;}
.lsc{letter-spacing:-3.345900px;}
.ls29{letter-spacing:-1.982400px;}
.ls36{letter-spacing:-1.260000px;}
.ls42{letter-spacing:-1.085400px;}
.ls41{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.955200px;}
.ls37{letter-spacing:-0.945000px;}
.ls3a{letter-spacing:-0.648000px;}
.ls38{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.604800px;}
.ls22{letter-spacing:-0.550800px;}
.ls21{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.435240px;}
.ls3f{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.161820px;}
.ls17{letter-spacing:-0.067200px;}
.ls14{letter-spacing:-0.057600px;}
.ls2a{letter-spacing:-0.054000px;}
.ls40{letter-spacing:-0.043560px;}
.ls26{letter-spacing:-0.038400px;}
.ls1e{letter-spacing:-0.035280px;}
.ls3b{letter-spacing:-0.021600px;}
.ls1c{letter-spacing:-0.017640px;}
.ls39{letter-spacing:-0.016200px;}
.ls1d{letter-spacing:-0.011760px;}
.ls20{letter-spacing:-0.011160px;}
.ls23{letter-spacing:-0.010800px;}
.ls16{letter-spacing:-0.009600px;}
.ls1b{letter-spacing:-0.005880px;}
.ls3c{letter-spacing:-0.005400px;}
.lsd{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000180px;}
.ls33{letter-spacing:0.000840px;}
.lsb{letter-spacing:0.003000px;}
.ls7{letter-spacing:0.005280px;}
.ls4{letter-spacing:0.005400px;}
.ls31{letter-spacing:0.005940px;}
.ls27{letter-spacing:0.009600px;}
.ls5{letter-spacing:0.010800px;}
.ls30{letter-spacing:0.014520px;}
.ls18{letter-spacing:0.019200px;}
.ls2f{letter-spacing:0.029040px;}
.ls35{letter-spacing:0.032400px;}
.ls13{letter-spacing:0.033600px;}
.ls1{letter-spacing:0.039060px;}
.ls12{letter-spacing:0.043200px;}
.lsf{letter-spacing:0.050220px;}
.ls2d{letter-spacing:0.067200px;}
.ls8{letter-spacing:0.091200px;}
.ls2e{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.105600px;}
.lsa{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.297600px;}
.ls6{letter-spacing:0.366000px;}
.ls10{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.475200px;}
.ls2{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.525000px;}
.ls28{letter-spacing:0.532800px;}
.ls9{letter-spacing:0.624000px;}
.ls3{letter-spacing:0.672000px;}
.ls2b{letter-spacing:0.768000px;}
.ls15{letter-spacing:1.012800px;}
.ls34{letter-spacing:1.765800px;}
.ls0{letter-spacing:4.809600px;}
.ls3e{letter-spacing:5.562000px;}
.ls25{letter-spacing:267.974400px;}
.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;}
}
.ws5{word-spacing:-252.091200px;}
.ws4b{word-spacing:-63.000000px;}
.ws49{word-spacing:-54.000000px;}
.ws1{word-spacing:-48.000000px;}
.wsa4{word-spacing:-15.750000px;}
.ws4a{word-spacing:-15.057240px;}
.ws2{word-spacing:-15.028200px;}
.wsa5{word-spacing:-14.984640px;}
.ws4c{word-spacing:-14.805000px;}
.wsb{word-spacing:-10.944000px;}
.wsd{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.651200px;}
.wse{word-spacing:-10.464000px;}
.ws3{word-spacing:-9.135000px;}
.ws0{word-spacing:-8.738100px;}
.ws4{word-spacing:-6.639840px;}
.wsad{word-spacing:-2.822400px;}
.ws5b{word-spacing:-2.696400px;}
.wsac{word-spacing:-2.690100px;}
.ws8f{word-spacing:-2.620800px;}
.wsc3{word-spacing:-2.597400px;}
.ws2d{word-spacing:-2.482200px;}
.ws87{word-spacing:-2.444400px;}
.ws38{word-spacing:-2.337300px;}
.ws98{word-spacing:-2.261700px;}
.ws22{word-spacing:-2.122680px;}
.ws21{word-spacing:-2.116800px;}
.ws1d{word-spacing:-2.088000px;}
.ws90{word-spacing:-2.072700px;}
.ws73{word-spacing:-2.066400px;}
.wsa7{word-spacing:-2.028600px;}
.ws7a{word-spacing:-2.016000px;}
.wsd0{word-spacing:-2.014200px;}
.ws92{word-spacing:-1.877400px;}
.ws3a{word-spacing:-1.839600px;}
.ws4d{word-spacing:-1.765800px;}
.wsb5{word-spacing:-1.755000px;}
.ws1e{word-spacing:-1.737600px;}
.ws72{word-spacing:-1.726200px;}
.ws89{word-spacing:-1.650600px;}
.wsb0{word-spacing:-1.631700px;}
.ws8e{word-spacing:-1.581300px;}
.wsa1{word-spacing:-1.449000px;}
.wsd2{word-spacing:-1.431000px;}
.ws57{word-spacing:-1.417500px;}
.wsa9{word-spacing:-1.398600px;}
.ws9f{word-spacing:-1.064700px;}
.wsc6{word-spacing:-1.047600px;}
.ws2a{word-spacing:-1.033200px;}
.ws20{word-spacing:-0.999600px;}
.ws99{word-spacing:-0.938700px;}
.ws74{word-spacing:-0.926100px;}
.wsb4{word-spacing:-0.918000px;}
.ws9d{word-spacing:-0.711900px;}
.ws7f{word-spacing:-0.667800px;}
.ws88{word-spacing:-0.630000px;}
.ws53{word-spacing:-0.422100px;}
.wsc8{word-spacing:-0.356400px;}
.ws44{word-spacing:-0.297600px;}
.wsbe{word-spacing:-0.280800px;}
.wsab{word-spacing:-0.195300px;}
.wsc7{word-spacing:-0.194400px;}
.ws60{word-spacing:-0.189000px;}
.ws47{word-spacing:-0.100800px;}
.ws46{word-spacing:-0.067200px;}
.ws78{word-spacing:-0.050400px;}
.ws12{word-spacing:-0.050220px;}
.ws13{word-spacing:-0.039060px;}
.ws17{word-spacing:-0.033600px;}
.ws4e{word-spacing:-0.032400px;}
.ws6e{word-spacing:-0.014520px;}
.ws45{word-spacing:-0.010800px;}
.ws10{word-spacing:-0.009600px;}
.ws43{word-spacing:-0.005400px;}
.wsf{word-spacing:0.000000px;}
.ws95{word-spacing:0.005400px;}
.ws1c{word-spacing:0.009600px;}
.ws42{word-spacing:0.010800px;}
.ws35{word-spacing:0.011160px;}
.ws26{word-spacing:0.011760px;}
.ws93{word-spacing:0.016200px;}
.ws27{word-spacing:0.017640px;}
.ws94{word-spacing:0.021600px;}
.ws28{word-spacing:0.035280px;}
.ws18{word-spacing:0.057600px;}
.ws1a{word-spacing:0.067200px;}
.ws8c{word-spacing:0.088200px;}
.ws16{word-spacing:0.139200px;}
.wsca{word-spacing:0.145800px;}
.ws34{word-spacing:0.161820px;}
.ws50{word-spacing:0.252000px;}
.ws86{word-spacing:0.283500px;}
.wsae{word-spacing:0.289800px;}
.ws5e{word-spacing:0.302400px;}
.ws7b{word-spacing:0.315000px;}
.ws62{word-spacing:0.340200px;}
.ws5d{word-spacing:0.365400px;}
.ws11{word-spacing:0.435240px;}
.wsbd{word-spacing:0.437400px;}
.ws33{word-spacing:0.548100px;}
.wsb8{word-spacing:0.572400px;}
.ws76{word-spacing:0.661500px;}
.ws85{word-spacing:0.900900px;}
.ws8d{word-spacing:0.907200px;}
.wsc1{word-spacing:0.928800px;}
.wscd{word-spacing:0.934200px;}
.ws84{word-spacing:1.310400px;}
.ws3f{word-spacing:1.423800px;}
.ws77{word-spacing:1.442700px;}
.wsce{word-spacing:1.506600px;}
.ws8a{word-spacing:1.562400px;}
.ws1f{word-spacing:1.740480px;}
.wsba{word-spacing:1.917000px;}
.ws52{word-spacing:1.927800px;}
.ws32{word-spacing:1.959300px;}
.ws66{word-spacing:2.179800px;}
.wsb9{word-spacing:2.214000px;}
.ws31{word-spacing:2.337300px;}
.wsa8{word-spacing:2.343600px;}
.ws14{word-spacing:2.366400px;}
.ws70{word-spacing:2.469600px;}
.ws3b{word-spacing:2.614500px;}
.ws15{word-spacing:2.692800px;}
.ws5a{word-spacing:2.772000px;}
.ws82{word-spacing:2.778300px;}
.ws6f{word-spacing:2.784600px;}
.ws6c{word-spacing:2.822400px;}
.ws23{word-spacing:2.916480px;}
.ws24{word-spacing:2.928240px;}
.ws68{word-spacing:3.137400px;}
.ws75{word-spacing:3.206700px;}
.ws6d{word-spacing:3.257100px;}
.ws51{word-spacing:3.339000px;}
.wscc{word-spacing:3.364200px;}
.ws4f{word-spacing:3.389400px;}
.ws25{word-spacing:3.392760px;}
.ws19{word-spacing:3.460800px;}
.ws6b{word-spacing:3.559500px;}
.ws2b{word-spacing:3.792600px;}
.ws3d{word-spacing:4.258800px;}
.wsa0{word-spacing:4.340700px;}
.wsc0{word-spacing:4.368600px;}
.wsa2{word-spacing:4.403700px;}
.ws2f{word-spacing:4.869900px;}
.wsaa{word-spacing:4.970700px;}
.ws3e{word-spacing:5.065200px;}
.wsc4{word-spacing:5.086800px;}
.ws2e{word-spacing:5.178600px;}
.wsc2{word-spacing:5.194800px;}
.ws9b{word-spacing:5.285700px;}
.ws9c{word-spacing:5.292000px;}
.ws81{word-spacing:5.380200px;}
.wsb7{word-spacing:5.416200px;}
.ws9a{word-spacing:5.436900px;}
.ws97{word-spacing:5.493600px;}
.wsbb{word-spacing:5.718600px;}
.ws2c{word-spacing:6.029100px;}
.ws71{word-spacing:6.161400px;}
.ws56{word-spacing:6.167700px;}
.wsbf{word-spacing:6.210000px;}
.ws5f{word-spacing:6.426000px;}
.ws30{word-spacing:6.633900px;}
.ws54{word-spacing:6.652800px;}
.ws7d{word-spacing:6.659100px;}
.wsa6{word-spacing:6.715800px;}
.ws55{word-spacing:6.766200px;}
.ws69{word-spacing:6.848100px;}
.ws29{word-spacing:7.156800px;}
.ws7e{word-spacing:7.421400px;}
.ws79{word-spacing:7.698600px;}
.ws59{word-spacing:7.793100px;}
.ws37{word-spacing:7.805700px;}
.wsbc{word-spacing:7.857000px;}
.ws64{word-spacing:7.912800px;}
.ws65{word-spacing:7.919100px;}
.wsaf{word-spacing:8.019900px;}
.ws6a{word-spacing:8.599500px;}
.wsb6{word-spacing:8.812800px;}
.ws63{word-spacing:8.971200px;}
.ws83{word-spacing:9.040500px;}
.ws1b{word-spacing:9.187200px;}
.wsb1{word-spacing:9.368100px;}
.ws8b{word-spacing:9.746100px;}
.ws9e{word-spacing:10.445400px;}
.ws67{word-spacing:10.848600px;}
.ws7c{word-spacing:11.415600px;}
.ws80{word-spacing:11.440800px;}
.ws61{word-spacing:11.661300px;}
.ws41{word-spacing:11.781000px;}
.wsd1{word-spacing:11.842200px;}
.wsc5{word-spacing:12.603600px;}
.ws58{word-spacing:14.395500px;}
.ws39{word-spacing:14.408100px;}
.wscf{word-spacing:14.974200px;}
.ws91{word-spacing:15.264900px;}
.ws5c{word-spacing:18.622800px;}
.ws36{word-spacing:20.556900px;}
.ws40{word-spacing:22.787100px;}
.wscb{word-spacing:23.803200px;}
.wsb2{word-spacing:26.882100px;}
.ws3c{word-spacing:28.318500px;}
.wsc9{word-spacing:34.603200px;}
.ws48{word-spacing:45.616200px;}
.wsa3{word-spacing:45.698700px;}
.wsb3{word-spacing:59.599800px;}
.ws8{word-spacing:180.787200px;}
.ws6{word-spacing:202.492800px;}
.wsa{word-spacing:203.140800px;}
.ws7{word-spacing:204.979200px;}
.ws9{word-spacing:208.171200px;}
.ws96{word-spacing:1443.366000px;}
._b{margin-left:-269.980800px;}
._d{margin-left:-268.454400px;}
._c{margin-left:-267.446400px;}
._f{margin-left:-266.404800px;}
._1e{margin-left:-60.621660px;}
._20{margin-left:-54.287460px;}
._e{margin-left:-52.924800px;}
._25{margin-left:-34.755300px;}
._28{margin-left:-12.868800px;}
._7{margin-left:-11.427900px;}
._5{margin-left:-8.349600px;}
._1c{margin-left:-7.042200px;}
._6{margin-left:-5.879340px;}
._4{margin-left:-4.762800px;}
._1{margin-left:-3.476100px;}
._3{margin-left:-1.705500px;}
._2{width:1.020000px;}
._0{width:2.257200px;}
._15{width:3.306000px;}
._1d{width:5.183400px;}
._26{width:29.235600px;}
._27{width:34.614000px;}
._24{width:38.194200px;}
._23{width:49.156200px;}
._22{width:55.231200px;}
._21{width:57.385800px;}
._1f{width:61.354800px;}
._a{width:166.896000px;}
._8{width:195.999000px;}
._9{width:216.240000px;}
._10{width:248.140800px;}
._14{width:250.923600px;}
._12{width:265.564800px;}
._17{width:267.451200px;}
._19{width:268.753500px;}
._13{width:269.845440px;}
._1a{width:277.150200px;}
._11{width:292.180800px;}
._18{width:293.469600px;}
._16{width:296.034000px;}
._1b{width:1969.023600px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.840000px;}
.fsa{font-size:31.320000px;}
.fs8{font-size:36.540000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:55.800000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:58.800000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:72.600000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.671350px;}
.y2{bottom:45.796350px;}
.y11{bottom:85.121850px;}
.y9a{bottom:85.124100px;}
.y7e{bottom:85.127100px;}
.ya5{bottom:87.064350px;}
.y10{bottom:99.521850px;}
.y99{bottom:104.184600px;}
.y7d{bottom:104.221350px;}
.y47{bottom:104.669850px;}
.ya4{bottom:105.964350px;}
.y46{bottom:107.777850px;}
.yf{bottom:113.921850px;}
.y45{bottom:122.177850px;}
.y98{bottom:123.226350px;}
.y7c{bottom:123.294600px;}
.ya3{bottom:124.864350px;}
.ye{bottom:128.321850px;}
.y44{bottom:136.577850px;}
.y97{bottom:142.268100px;}
.y7b{bottom:142.367850px;}
.yd{bottom:142.721850px;}
.ya2{bottom:143.764350px;}
.yc{bottom:157.121850px;}
.y43{bottom:158.633850px;}
.y96{bottom:161.309850px;}
.y7a{bottom:161.441100px;}
.ya1{bottom:162.664350px;}
.yb{bottom:171.521850px;}
.y42{bottom:174.833850px;}
.y95{bottom:180.351600px;}
.y79{bottom:180.542100px;}
.ya0{bottom:181.564350px;}
.ya{bottom:185.921850px;}
.y94{bottom:199.393350px;}
.y78{bottom:199.615350px;}
.y93{bottom:218.435100px;}
.y77{bottom:218.688600px;}
.y38{bottom:220.783350px;}
.yac{bottom:221.339850px;}
.y41{bottom:221.461350px;}
.y92{bottom:237.539850px;}
.y76{bottom:237.761850px;}
.y40{bottom:238.969350px;}
.yab{bottom:256.048350px;}
.y3f{bottom:256.477350px;}
.y91{bottom:256.581600px;}
.y75{bottom:256.835100px;}
.y3e{bottom:273.985350px;}
.y90{bottom:275.623350px;}
.y74{bottom:275.924100px;}
.y3d{bottom:291.493350px;}
.y8f{bottom:294.665100px;}
.y73{bottom:294.997350px;}
.y3c{bottom:309.001350px;}
.y8e{bottom:313.706850px;}
.y72{bottom:314.070600px;}
.y3b{bottom:326.509350px;}
.y8d{bottom:332.748600px;}
.y71{bottom:333.154350px;}
.y3a{bottom:348.565200px;}
.y8c{bottom:351.790350px;}
.y70{bottom:352.227600px;}
.y39{bottom:364.765200px;}
.y8b{bottom:370.832100px;}
.y6f{bottom:371.300850px;}
.y8a{bottom:389.873850px;}
.y6e{bottom:403.129350px;}
.y89{bottom:408.915600px;}
.y88{bottom:427.957350px;}
.y6d{bottom:437.069850px;}
.y37{bottom:438.068850px;}
.y87{bottom:446.999100px;}
.y36{bottom:456.968850px;}
.y86{bottom:466.040850px;}
.y35{bottom:475.868850px;}
.y6c{bottom:483.839100px;}
.y85{bottom:485.082600px;}
.yaa{bottom:494.417850px;}
.y34{bottom:494.768850px;}
.ya8{bottom:496.645350px;}
.y25{bottom:500.788350px;}
.y6b{bottom:502.912350px;}
.y84{bottom:504.124350px;}
.y33{bottom:513.668850px;}
.y24{bottom:519.688350px;}
.y6a{bottom:521.985600px;}
.y83{bottom:523.166100px;}
.y32{bottom:532.568850px;}
.y23{bottom:538.588350px;}
.y69{bottom:541.058850px;}
.y82{bottom:542.207850px;}
.y31{bottom:551.468850px;}
.y22{bottom:557.488350px;}
.y68{bottom:560.132100px;}
.y81{bottom:561.249600px;}
.y30{bottom:570.368850px;}
.y21{bottom:576.388350px;}
.y67{bottom:579.205350px;}
.y80{bottom:580.291350px;}
.y2f{bottom:589.268850px;}
.y20{bottom:595.288350px;}
.y66{bottom:598.278600px;}
.y7f{bottom:599.333100px;}
.y2e{bottom:608.168850px;}
.y1f{bottom:614.188350px;}
.y65{bottom:617.351850px;}
.yc5{bottom:619.874850px;}
.ye8{bottom:620.914200px;}
.y1e{bottom:633.088350px;}
.y9e{bottom:633.814350px;}
.ye7{bottom:635.914200px;}
.yc4{bottom:636.074850px;}
.y64{bottom:636.425100px;}
.y2d{bottom:639.824850px;}
.y9d{bottom:650.014350px;}
.y1d{bottom:651.988350px;}
.yc3{bottom:652.274850px;}
.y63{bottom:655.498350px;}
.ye6{bottom:659.321850px;}
.yc2{bottom:668.474850px;}
.y1c{bottom:670.888350px;}
.y62{bottom:674.571600px;}
.ye5{bottom:675.521850px;}
.yc1{bottom:684.674850px;}
.y2c{bottom:686.336850px;}
.y1b{bottom:689.788350px;}
.ye4{bottom:691.424850px;}
.y61{bottom:693.644850px;}
.yc0{bottom:700.874850px;}
.y2b{bottom:705.236850px;}
.ye3{bottom:707.327850px;}
.y1a{bottom:708.688350px;}
.y60{bottom:712.718100px;}
.ybf{bottom:717.074850px;}
.ye2{bottom:723.230850px;}
.y2a{bottom:724.136850px;}
.ya9{bottom:725.942850px;}
.y5f{bottom:731.791350px;}
.ybe{bottom:733.274850px;}
.ya7{bottom:733.448850px;}
.ye1{bottom:739.133850px;}
.y19{bottom:740.344350px;}
.y29{bottom:743.036850px;}
.y5e{bottom:750.864600px;}
.ye0{bottom:755.036850px;}
.ybd{bottom:762.229350px;}
.y5d{bottom:770.039250px;}
.ydf{bottom:770.939850px;}
.yde{bottom:786.842850px;}
.y18{bottom:787.875150px;}
.y5c{bottom:789.112500px;}
.ydd{bottom:802.745850px;}
.y5b{bottom:808.185750px;}
.ybc{bottom:808.741200px;}
.y17{bottom:813.173850px;}
.ydc{bottom:818.648850px;}
.y5a{bottom:827.259000px;}
.ybb{bottom:827.641200px;}
.y16{bottom:830.975550px;}
.ydb{bottom:834.551850px;}
.y59{bottom:846.332250px;}
.yba{bottom:846.541200px;}
.y15{bottom:848.777250px;}
.yda{bottom:850.454850px;}
.y58{bottom:865.405500px;}
.yd9{bottom:866.357850px;}
.y14{bottom:866.578950px;}
.yb9{bottom:878.197200px;}
.yd8{bottom:882.260850px;}
.y13{bottom:884.380650px;}
.y57{bottom:884.478750px;}
.yd7{bottom:898.163850px;}
.y12{bottom:902.182350px;}
.y56{bottom:903.552000px;}
.y9c{bottom:911.981700px;}
.yd6{bottom:914.066850px;}
.y55{bottom:922.625250px;}
.yb8{bottom:924.709350px;}
.y9b{bottom:928.181700px;}
.yd5{bottom:929.969850px;}
.y54{bottom:941.698500px;}
.yb7{bottom:943.609350px;}
.y9{bottom:944.422650px;}
.yd4{bottom:945.872850px;}
.ya6{bottom:948.112350px;}
.y53{bottom:960.771750px;}
.y8{bottom:960.925500px;}
.yd3{bottom:961.775850px;}
.yb6{bottom:962.509350px;}
.y7{bottom:977.428350px;}
.yd2{bottom:977.678850px;}
.y52{bottom:979.845000px;}
.yb5{bottom:981.409350px;}
.yd1{bottom:993.581850px;}
.y51{bottom:998.918250px;}
.yb4{bottom:1000.309350px;}
.yd0{bottom:1009.484850px;}
.y6{bottom:1015.187850px;}
.y50{bottom:1017.991500px;}
.yb3{bottom:1019.209350px;}
.ycf{bottom:1025.387850px;}
.y4f{bottom:1037.064750px;}
.yb2{bottom:1038.109350px;}
.y5{bottom:1039.187850px;}
.yce{bottom:1041.290850px;}
.y4e{bottom:1056.138000px;}
.yb1{bottom:1057.009350px;}
.ycd{bottom:1057.193850px;}
.ycc{bottom:1073.096850px;}
.y4d{bottom:1075.211250px;}
.yb0{bottom:1075.909650px;}
.ycb{bottom:1088.999850px;}
.y4c{bottom:1094.284500px;}
.yaf{bottom:1094.809650px;}
.yca{bottom:1104.902850px;}
.y4b{bottom:1113.357750px;}
.yae{bottom:1113.709650px;}
.yc9{bottom:1120.805850px;}
.y4a{bottom:1132.431000px;}
.yad{bottom:1132.609650px;}
.y28{bottom:1134.409800px;}
.yc8{bottom:1136.708850px;}
.y4{bottom:1150.359600px;}
.y27{bottom:1150.912650px;}
.yc7{bottom:1152.611850px;}
.y49{bottom:1164.265500px;}
.y3{bottom:1166.853000px;}
.y26{bottom:1167.415500px;}
.yc6{bottom:1168.514850px;}
.y9f{bottom:1198.314300px;}
.y48{bottom:1198.330950px;}
.hc{height:40.224000px;}
.h2{height:42.738000px;}
.hb{height:45.036000px;}
.ha{height:45.252000px;}
.he{height:45.252600px;}
.h5{height:46.760400px;}
.h6{height:47.109375px;}
.h1{height:47.766000px;}
.h10{height:48.375000px;}
.h7{height:49.274400px;}
.hd{height:49.570312px;}
.hf{height:52.998047px;}
.h3{height:57.212400px;}
.h9{height:61.831055px;}
.h8{height:70.639800px;}
.h4{height:80.064000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:84.997650px;}
.x1a{left:93.501600px;}
.x6{left:97.753650px;}
.x7{left:106.257450px;}
.x20{left:119.017650px;}
.x1c{left:126.769800px;}
.x1d{left:254.157300px;}
.xa{left:410.774700px;}
.xc{left:459.168300px;}
.x12{left:468.129300px;}
.x11{left:470.769300px;}
.x13{left:473.217300px;}
.xb{left:480.430800px;}
.x22{left:489.939300px;}
.x21{left:493.197150px;}
.xf{left:494.733300px;}
.x10{left:497.505300px;}
.xe{left:499.497300px;}
.xd{left:501.804300px;}
.x1b{left:510.582300px;}
.x5{left:527.072250px;}
.x14{left:546.033300px;}
.x15{left:565.017300px;}
.x19{left:572.980800px;}
.x4{left:604.313400px;}
.x3{left:614.524800px;}
.x1f{left:627.810300px;}
.x1e{left:628.917300px;}
.x16{left:637.345800px;}
.x9{left:644.004750px;}
.x17{left:650.293800px;}
.x8{left:717.088800px;}
.x18{left:726.109800px;}
.x1{left:774.036300px;}
@media print{
.v1{vertical-align:-18.480000pt;}
.v2{vertical-align:-15.840533pt;}
.v3{vertical-align:-14.080000pt;}
.v7{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.000000pt;}
.v4{vertical-align:14.080000pt;}
.v6{vertical-align:18.256000pt;}
.lsc{letter-spacing:-2.974133pt;}
.ls29{letter-spacing:-1.762133pt;}
.ls36{letter-spacing:-1.120000pt;}
.ls42{letter-spacing:-0.964800pt;}
.ls41{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.849067pt;}
.ls37{letter-spacing:-0.840000pt;}
.ls3a{letter-spacing:-0.576000pt;}
.ls38{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.537600pt;}
.ls22{letter-spacing:-0.489600pt;}
.ls21{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.386880pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.143840pt;}
.ls17{letter-spacing:-0.059733pt;}
.ls14{letter-spacing:-0.051200pt;}
.ls2a{letter-spacing:-0.048000pt;}
.ls40{letter-spacing:-0.038720pt;}
.ls26{letter-spacing:-0.034133pt;}
.ls1e{letter-spacing:-0.031360pt;}
.ls3b{letter-spacing:-0.019200pt;}
.ls1c{letter-spacing:-0.015680pt;}
.ls39{letter-spacing:-0.014400pt;}
.ls1d{letter-spacing:-0.010453pt;}
.ls20{letter-spacing:-0.009920pt;}
.ls23{letter-spacing:-0.009600pt;}
.ls16{letter-spacing:-0.008533pt;}
.ls1b{letter-spacing:-0.005227pt;}
.ls3c{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000160pt;}
.ls33{letter-spacing:0.000747pt;}
.lsb{letter-spacing:0.002667pt;}
.ls7{letter-spacing:0.004693pt;}
.ls4{letter-spacing:0.004800pt;}
.ls31{letter-spacing:0.005280pt;}
.ls27{letter-spacing:0.008533pt;}
.ls5{letter-spacing:0.009600pt;}
.ls30{letter-spacing:0.012907pt;}
.ls18{letter-spacing:0.017067pt;}
.ls2f{letter-spacing:0.025813pt;}
.ls35{letter-spacing:0.028800pt;}
.ls13{letter-spacing:0.029867pt;}
.ls1{letter-spacing:0.034720pt;}
.ls12{letter-spacing:0.038400pt;}
.lsf{letter-spacing:0.044640pt;}
.ls2d{letter-spacing:0.059733pt;}
.ls8{letter-spacing:0.081067pt;}
.ls2e{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.093867pt;}
.lsa{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.264533pt;}
.ls6{letter-spacing:0.325333pt;}
.ls10{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.422400pt;}
.ls2{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.466667pt;}
.ls28{letter-spacing:0.473600pt;}
.ls9{letter-spacing:0.554667pt;}
.ls3{letter-spacing:0.597333pt;}
.ls2b{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.900267pt;}
.ls34{letter-spacing:1.569600pt;}
.ls0{letter-spacing:4.275200pt;}
.ls3e{letter-spacing:4.944000pt;}
.ls25{letter-spacing:238.199467pt;}
.ws5{word-spacing:-224.081067pt;}
.ws4b{word-spacing:-56.000000pt;}
.ws49{word-spacing:-48.000000pt;}
.ws1{word-spacing:-42.666667pt;}
.wsa4{word-spacing:-14.000000pt;}
.ws4a{word-spacing:-13.384213pt;}
.ws2{word-spacing:-13.358400pt;}
.wsa5{word-spacing:-13.319680pt;}
.ws4c{word-spacing:-13.160000pt;}
.wsb{word-spacing:-9.728000pt;}
.wsd{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.467733pt;}
.wse{word-spacing:-9.301333pt;}
.ws3{word-spacing:-8.120000pt;}
.ws0{word-spacing:-7.767200pt;}
.ws4{word-spacing:-5.902080pt;}
.wsad{word-spacing:-2.508800pt;}
.ws5b{word-spacing:-2.396800pt;}
.wsac{word-spacing:-2.391200pt;}
.ws8f{word-spacing:-2.329600pt;}
.wsc3{word-spacing:-2.308800pt;}
.ws2d{word-spacing:-2.206400pt;}
.ws87{word-spacing:-2.172800pt;}
.ws38{word-spacing:-2.077600pt;}
.ws98{word-spacing:-2.010400pt;}
.ws22{word-spacing:-1.886827pt;}
.ws21{word-spacing:-1.881600pt;}
.ws1d{word-spacing:-1.856000pt;}
.ws90{word-spacing:-1.842400pt;}
.ws73{word-spacing:-1.836800pt;}
.wsa7{word-spacing:-1.803200pt;}
.ws7a{word-spacing:-1.792000pt;}
.wsd0{word-spacing:-1.790400pt;}
.ws92{word-spacing:-1.668800pt;}
.ws3a{word-spacing:-1.635200pt;}
.ws4d{word-spacing:-1.569600pt;}
.wsb5{word-spacing:-1.560000pt;}
.ws1e{word-spacing:-1.544533pt;}
.ws72{word-spacing:-1.534400pt;}
.ws89{word-spacing:-1.467200pt;}
.wsb0{word-spacing:-1.450400pt;}
.ws8e{word-spacing:-1.405600pt;}
.wsa1{word-spacing:-1.288000pt;}
.wsd2{word-spacing:-1.272000pt;}
.ws57{word-spacing:-1.260000pt;}
.wsa9{word-spacing:-1.243200pt;}
.ws9f{word-spacing:-0.946400pt;}
.wsc6{word-spacing:-0.931200pt;}
.ws2a{word-spacing:-0.918400pt;}
.ws20{word-spacing:-0.888533pt;}
.ws99{word-spacing:-0.834400pt;}
.ws74{word-spacing:-0.823200pt;}
.wsb4{word-spacing:-0.816000pt;}
.ws9d{word-spacing:-0.632800pt;}
.ws7f{word-spacing:-0.593600pt;}
.ws88{word-spacing:-0.560000pt;}
.ws53{word-spacing:-0.375200pt;}
.wsc8{word-spacing:-0.316800pt;}
.ws44{word-spacing:-0.264533pt;}
.wsbe{word-spacing:-0.249600pt;}
.wsab{word-spacing:-0.173600pt;}
.wsc7{word-spacing:-0.172800pt;}
.ws60{word-spacing:-0.168000pt;}
.ws47{word-spacing:-0.089600pt;}
.ws46{word-spacing:-0.059733pt;}
.ws78{word-spacing:-0.044800pt;}
.ws12{word-spacing:-0.044640pt;}
.ws13{word-spacing:-0.034720pt;}
.ws17{word-spacing:-0.029867pt;}
.ws4e{word-spacing:-0.028800pt;}
.ws6e{word-spacing:-0.012907pt;}
.ws45{word-spacing:-0.009600pt;}
.ws10{word-spacing:-0.008533pt;}
.ws43{word-spacing:-0.004800pt;}
.wsf{word-spacing:0.000000pt;}
.ws95{word-spacing:0.004800pt;}
.ws1c{word-spacing:0.008533pt;}
.ws42{word-spacing:0.009600pt;}
.ws35{word-spacing:0.009920pt;}
.ws26{word-spacing:0.010453pt;}
.ws93{word-spacing:0.014400pt;}
.ws27{word-spacing:0.015680pt;}
.ws94{word-spacing:0.019200pt;}
.ws28{word-spacing:0.031360pt;}
.ws18{word-spacing:0.051200pt;}
.ws1a{word-spacing:0.059733pt;}
.ws8c{word-spacing:0.078400pt;}
.ws16{word-spacing:0.123733pt;}
.wsca{word-spacing:0.129600pt;}
.ws34{word-spacing:0.143840pt;}
.ws50{word-spacing:0.224000pt;}
.ws86{word-spacing:0.252000pt;}
.wsae{word-spacing:0.257600pt;}
.ws5e{word-spacing:0.268800pt;}
.ws7b{word-spacing:0.280000pt;}
.ws62{word-spacing:0.302400pt;}
.ws5d{word-spacing:0.324800pt;}
.ws11{word-spacing:0.386880pt;}
.wsbd{word-spacing:0.388800pt;}
.ws33{word-spacing:0.487200pt;}
.wsb8{word-spacing:0.508800pt;}
.ws76{word-spacing:0.588000pt;}
.ws85{word-spacing:0.800800pt;}
.ws8d{word-spacing:0.806400pt;}
.wsc1{word-spacing:0.825600pt;}
.wscd{word-spacing:0.830400pt;}
.ws84{word-spacing:1.164800pt;}
.ws3f{word-spacing:1.265600pt;}
.ws77{word-spacing:1.282400pt;}
.wsce{word-spacing:1.339200pt;}
.ws8a{word-spacing:1.388800pt;}
.ws1f{word-spacing:1.547093pt;}
.wsba{word-spacing:1.704000pt;}
.ws52{word-spacing:1.713600pt;}
.ws32{word-spacing:1.741600pt;}
.ws66{word-spacing:1.937600pt;}
.wsb9{word-spacing:1.968000pt;}
.ws31{word-spacing:2.077600pt;}
.wsa8{word-spacing:2.083200pt;}
.ws14{word-spacing:2.103467pt;}
.ws70{word-spacing:2.195200pt;}
.ws3b{word-spacing:2.324000pt;}
.ws15{word-spacing:2.393600pt;}
.ws5a{word-spacing:2.464000pt;}
.ws82{word-spacing:2.469600pt;}
.ws6f{word-spacing:2.475200pt;}
.ws6c{word-spacing:2.508800pt;}
.ws23{word-spacing:2.592427pt;}
.ws24{word-spacing:2.602880pt;}
.ws68{word-spacing:2.788800pt;}
.ws75{word-spacing:2.850400pt;}
.ws6d{word-spacing:2.895200pt;}
.ws51{word-spacing:2.968000pt;}
.wscc{word-spacing:2.990400pt;}
.ws4f{word-spacing:3.012800pt;}
.ws25{word-spacing:3.015787pt;}
.ws19{word-spacing:3.076267pt;}
.ws6b{word-spacing:3.164000pt;}
.ws2b{word-spacing:3.371200pt;}
.ws3d{word-spacing:3.785600pt;}
.wsa0{word-spacing:3.858400pt;}
.wsc0{word-spacing:3.883200pt;}
.wsa2{word-spacing:3.914400pt;}
.ws2f{word-spacing:4.328800pt;}
.wsaa{word-spacing:4.418400pt;}
.ws3e{word-spacing:4.502400pt;}
.wsc4{word-spacing:4.521600pt;}
.ws2e{word-spacing:4.603200pt;}
.wsc2{word-spacing:4.617600pt;}
.ws9b{word-spacing:4.698400pt;}
.ws9c{word-spacing:4.704000pt;}
.ws81{word-spacing:4.782400pt;}
.wsb7{word-spacing:4.814400pt;}
.ws9a{word-spacing:4.832800pt;}
.ws97{word-spacing:4.883200pt;}
.wsbb{word-spacing:5.083200pt;}
.ws2c{word-spacing:5.359200pt;}
.ws71{word-spacing:5.476800pt;}
.ws56{word-spacing:5.482400pt;}
.wsbf{word-spacing:5.520000pt;}
.ws5f{word-spacing:5.712000pt;}
.ws30{word-spacing:5.896800pt;}
.ws54{word-spacing:5.913600pt;}
.ws7d{word-spacing:5.919200pt;}
.wsa6{word-spacing:5.969600pt;}
.ws55{word-spacing:6.014400pt;}
.ws69{word-spacing:6.087200pt;}
.ws29{word-spacing:6.361600pt;}
.ws7e{word-spacing:6.596800pt;}
.ws79{word-spacing:6.843200pt;}
.ws59{word-spacing:6.927200pt;}
.ws37{word-spacing:6.938400pt;}
.wsbc{word-spacing:6.984000pt;}
.ws64{word-spacing:7.033600pt;}
.ws65{word-spacing:7.039200pt;}
.wsaf{word-spacing:7.128800pt;}
.ws6a{word-spacing:7.644000pt;}
.wsb6{word-spacing:7.833600pt;}
.ws63{word-spacing:7.974400pt;}
.ws83{word-spacing:8.036000pt;}
.ws1b{word-spacing:8.166400pt;}
.wsb1{word-spacing:8.327200pt;}
.ws8b{word-spacing:8.663200pt;}
.ws9e{word-spacing:9.284800pt;}
.ws67{word-spacing:9.643200pt;}
.ws7c{word-spacing:10.147200pt;}
.ws80{word-spacing:10.169600pt;}
.ws61{word-spacing:10.365600pt;}
.ws41{word-spacing:10.472000pt;}
.wsd1{word-spacing:10.526400pt;}
.wsc5{word-spacing:11.203200pt;}
.ws58{word-spacing:12.796000pt;}
.ws39{word-spacing:12.807200pt;}
.wscf{word-spacing:13.310400pt;}
.ws91{word-spacing:13.568800pt;}
.ws5c{word-spacing:16.553600pt;}
.ws36{word-spacing:18.272800pt;}
.ws40{word-spacing:20.255200pt;}
.wscb{word-spacing:21.158400pt;}
.wsb2{word-spacing:23.895200pt;}
.ws3c{word-spacing:25.172000pt;}
.wsc9{word-spacing:30.758400pt;}
.ws48{word-spacing:40.547733pt;}
.wsa3{word-spacing:40.621067pt;}
.wsb3{word-spacing:52.977600pt;}
.ws8{word-spacing:160.699733pt;}
.ws6{word-spacing:179.993600pt;}
.wsa{word-spacing:180.569600pt;}
.ws7{word-spacing:182.203733pt;}
.ws9{word-spacing:185.041067pt;}
.ws96{word-spacing:1282.992000pt;}
._b{margin-left:-239.982933pt;}
._d{margin-left:-238.626133pt;}
._c{margin-left:-237.730133pt;}
._f{margin-left:-236.804267pt;}
._1e{margin-left:-53.885920pt;}
._20{margin-left:-48.255520pt;}
._e{margin-left:-47.044267pt;}
._25{margin-left:-30.893600pt;}
._28{margin-left:-11.438933pt;}
._7{margin-left:-10.158133pt;}
._5{margin-left:-7.421867pt;}
._1c{margin-left:-6.259733pt;}
._6{margin-left:-5.226080pt;}
._4{margin-left:-4.233600pt;}
._1{margin-left:-3.089867pt;}
._3{margin-left:-1.516000pt;}
._2{width:0.906667pt;}
._0{width:2.006400pt;}
._15{width:2.938667pt;}
._1d{width:4.607467pt;}
._26{width:25.987200pt;}
._27{width:30.768000pt;}
._24{width:33.950400pt;}
._23{width:43.694400pt;}
._22{width:49.094400pt;}
._21{width:51.009600pt;}
._1f{width:54.537600pt;}
._a{width:148.352000pt;}
._8{width:174.221333pt;}
._9{width:192.213333pt;}
._10{width:220.569600pt;}
._14{width:223.043200pt;}
._12{width:236.057600pt;}
._17{width:237.734400pt;}
._19{width:238.892000pt;}
._13{width:239.862613pt;}
._1a{width:246.355733pt;}
._11{width:259.716267pt;}
._18{width:260.861867pt;}
._16{width:263.141333pt;}
._1b{width:1750.243200pt;}
.fsb{font-size:24.746667pt;}
.fsa{font-size:27.840000pt;}
.fs8{font-size:32.480000pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:49.600000pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:52.266667pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:64.533333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.707867pt;}
.y2{bottom:40.707867pt;}
.y11{bottom:75.663867pt;}
.y9a{bottom:75.665867pt;}
.y7e{bottom:75.668533pt;}
.ya5{bottom:77.390533pt;}
.y10{bottom:88.463867pt;}
.y99{bottom:92.608533pt;}
.y7d{bottom:92.641200pt;}
.y47{bottom:93.039867pt;}
.ya4{bottom:94.190533pt;}
.y46{bottom:95.802533pt;}
.yf{bottom:101.263867pt;}
.y45{bottom:108.602533pt;}
.y98{bottom:109.534533pt;}
.y7c{bottom:109.595200pt;}
.ya3{bottom:110.990533pt;}
.ye{bottom:114.063867pt;}
.y44{bottom:121.402533pt;}
.y97{bottom:126.460533pt;}
.y7b{bottom:126.549200pt;}
.yd{bottom:126.863867pt;}
.ya2{bottom:127.790533pt;}
.yc{bottom:139.663867pt;}
.y43{bottom:141.007867pt;}
.y96{bottom:143.386533pt;}
.y7a{bottom:143.503200pt;}
.ya1{bottom:144.590533pt;}
.yb{bottom:152.463867pt;}
.y42{bottom:155.407867pt;}
.y95{bottom:160.312533pt;}
.y79{bottom:160.481867pt;}
.ya0{bottom:161.390533pt;}
.ya{bottom:165.263867pt;}
.y94{bottom:177.238533pt;}
.y78{bottom:177.435867pt;}
.y93{bottom:194.164533pt;}
.y77{bottom:194.389867pt;}
.y38{bottom:196.251867pt;}
.yac{bottom:196.746533pt;}
.y41{bottom:196.854533pt;}
.y92{bottom:211.146533pt;}
.y76{bottom:211.343867pt;}
.y40{bottom:212.417200pt;}
.yab{bottom:227.598533pt;}
.y3f{bottom:227.979867pt;}
.y91{bottom:228.072533pt;}
.y75{bottom:228.297867pt;}
.y3e{bottom:243.542533pt;}
.y90{bottom:244.998533pt;}
.y74{bottom:245.265867pt;}
.y3d{bottom:259.105200pt;}
.y8f{bottom:261.924533pt;}
.y73{bottom:262.219867pt;}
.y3c{bottom:274.667867pt;}
.y8e{bottom:278.850533pt;}
.y72{bottom:279.173867pt;}
.y3b{bottom:290.230533pt;}
.y8d{bottom:295.776533pt;}
.y71{bottom:296.137200pt;}
.y3a{bottom:309.835733pt;}
.y8c{bottom:312.702533pt;}
.y70{bottom:313.091200pt;}
.y39{bottom:324.235733pt;}
.y8b{bottom:329.628533pt;}
.y6f{bottom:330.045200pt;}
.y8a{bottom:346.554533pt;}
.y6e{bottom:358.337200pt;}
.y89{bottom:363.480533pt;}
.y88{bottom:380.406533pt;}
.y6d{bottom:388.506533pt;}
.y37{bottom:389.394533pt;}
.y87{bottom:397.332533pt;}
.y36{bottom:406.194533pt;}
.y86{bottom:414.258533pt;}
.y35{bottom:422.994533pt;}
.y6c{bottom:430.079200pt;}
.y85{bottom:431.184533pt;}
.yaa{bottom:439.482533pt;}
.y34{bottom:439.794533pt;}
.ya8{bottom:441.462533pt;}
.y25{bottom:445.145200pt;}
.y6b{bottom:447.033200pt;}
.y84{bottom:448.110533pt;}
.y33{bottom:456.594533pt;}
.y24{bottom:461.945200pt;}
.y6a{bottom:463.987200pt;}
.y83{bottom:465.036533pt;}
.y32{bottom:473.394533pt;}
.y23{bottom:478.745200pt;}
.y69{bottom:480.941200pt;}
.y82{bottom:481.962533pt;}
.y31{bottom:490.194533pt;}
.y22{bottom:495.545200pt;}
.y68{bottom:497.895200pt;}
.y81{bottom:498.888533pt;}
.y30{bottom:506.994533pt;}
.y21{bottom:512.345200pt;}
.y67{bottom:514.849200pt;}
.y80{bottom:515.814533pt;}
.y2f{bottom:523.794533pt;}
.y20{bottom:529.145200pt;}
.y66{bottom:531.803200pt;}
.y7f{bottom:532.740533pt;}
.y2e{bottom:540.594533pt;}
.y1f{bottom:545.945200pt;}
.y65{bottom:548.757200pt;}
.yc5{bottom:550.999867pt;}
.ye8{bottom:551.923733pt;}
.y1e{bottom:562.745200pt;}
.y9e{bottom:563.390533pt;}
.ye7{bottom:565.257067pt;}
.yc4{bottom:565.399867pt;}
.y64{bottom:565.711200pt;}
.y2d{bottom:568.733200pt;}
.y9d{bottom:577.790533pt;}
.y1d{bottom:579.545200pt;}
.yc3{bottom:579.799867pt;}
.y63{bottom:582.665200pt;}
.ye6{bottom:586.063867pt;}
.yc2{bottom:594.199867pt;}
.y1c{bottom:596.345200pt;}
.y62{bottom:599.619200pt;}
.ye5{bottom:600.463867pt;}
.yc1{bottom:608.599867pt;}
.y2c{bottom:610.077200pt;}
.y1b{bottom:613.145200pt;}
.ye4{bottom:614.599867pt;}
.y61{bottom:616.573200pt;}
.yc0{bottom:622.999867pt;}
.y2b{bottom:626.877200pt;}
.ye3{bottom:628.735867pt;}
.y1a{bottom:629.945200pt;}
.y60{bottom:633.527200pt;}
.ybf{bottom:637.399867pt;}
.ye2{bottom:642.871867pt;}
.y2a{bottom:643.677200pt;}
.ya9{bottom:645.282533pt;}
.y5f{bottom:650.481200pt;}
.ybe{bottom:651.799867pt;}
.ya7{bottom:651.954533pt;}
.ye1{bottom:657.007867pt;}
.y19{bottom:658.083867pt;}
.y29{bottom:660.477200pt;}
.y5e{bottom:667.435200pt;}
.ye0{bottom:671.143867pt;}
.ybd{bottom:677.537200pt;}
.y5d{bottom:684.479333pt;}
.ydf{bottom:685.279867pt;}
.yde{bottom:699.415867pt;}
.y18{bottom:700.333467pt;}
.y5c{bottom:701.433333pt;}
.ydd{bottom:713.551867pt;}
.y5b{bottom:718.387333pt;}
.ybc{bottom:718.881067pt;}
.y17{bottom:722.821200pt;}
.ydc{bottom:727.687867pt;}
.y5a{bottom:735.341333pt;}
.ybb{bottom:735.681067pt;}
.y16{bottom:738.644933pt;}
.ydb{bottom:741.823867pt;}
.y59{bottom:752.295333pt;}
.yba{bottom:752.481067pt;}
.y15{bottom:754.468667pt;}
.yda{bottom:755.959867pt;}
.y58{bottom:769.249333pt;}
.yd9{bottom:770.095867pt;}
.y14{bottom:770.292400pt;}
.yb9{bottom:780.619733pt;}
.yd8{bottom:784.231867pt;}
.y13{bottom:786.116133pt;}
.y57{bottom:786.203333pt;}
.yd7{bottom:798.367867pt;}
.y12{bottom:801.939867pt;}
.y56{bottom:803.157333pt;}
.y9c{bottom:810.650400pt;}
.yd6{bottom:812.503867pt;}
.y55{bottom:820.111333pt;}
.yb8{bottom:821.963867pt;}
.y9b{bottom:825.050400pt;}
.yd5{bottom:826.639867pt;}
.y54{bottom:837.065333pt;}
.yb7{bottom:838.763867pt;}
.y9{bottom:839.486800pt;}
.yd4{bottom:840.775867pt;}
.ya6{bottom:842.766533pt;}
.y53{bottom:854.019333pt;}
.y8{bottom:854.156000pt;}
.yd3{bottom:854.911867pt;}
.yb6{bottom:855.563867pt;}
.y7{bottom:868.825200pt;}
.yd2{bottom:869.047867pt;}
.y52{bottom:870.973333pt;}
.yb5{bottom:872.363867pt;}
.yd1{bottom:883.183867pt;}
.y51{bottom:887.927333pt;}
.yb4{bottom:889.163867pt;}
.yd0{bottom:897.319867pt;}
.y6{bottom:902.389200pt;}
.y50{bottom:904.881333pt;}
.yb3{bottom:905.963867pt;}
.ycf{bottom:911.455867pt;}
.y4f{bottom:921.835333pt;}
.yb2{bottom:922.763867pt;}
.y5{bottom:923.722533pt;}
.yce{bottom:925.591867pt;}
.y4e{bottom:938.789333pt;}
.yb1{bottom:939.563867pt;}
.ycd{bottom:939.727867pt;}
.ycc{bottom:953.863867pt;}
.y4d{bottom:955.743333pt;}
.yb0{bottom:956.364133pt;}
.ycb{bottom:967.999867pt;}
.y4c{bottom:972.697333pt;}
.yaf{bottom:973.164133pt;}
.yca{bottom:982.135867pt;}
.y4b{bottom:989.651333pt;}
.yae{bottom:989.964133pt;}
.yc9{bottom:996.271867pt;}
.y4a{bottom:1006.605333pt;}
.yad{bottom:1006.764133pt;}
.y28{bottom:1008.364267pt;}
.yc8{bottom:1010.407867pt;}
.y4{bottom:1022.541867pt;}
.y27{bottom:1023.033467pt;}
.yc7{bottom:1024.543867pt;}
.y49{bottom:1034.902667pt;}
.y3{bottom:1037.202667pt;}
.y26{bottom:1037.702667pt;}
.yc6{bottom:1038.679867pt;}
.y9f{bottom:1065.168267pt;}
.y48{bottom:1065.183067pt;}
.hc{height:35.754667pt;}
.h2{height:37.989333pt;}
.hb{height:40.032000pt;}
.ha{height:40.224000pt;}
.he{height:40.224533pt;}
.h5{height:41.564800pt;}
.h6{height:41.875000pt;}
.h1{height:42.458667pt;}
.h10{height:43.000000pt;}
.h7{height:43.799467pt;}
.hd{height:44.062500pt;}
.hf{height:47.109375pt;}
.h3{height:50.855467pt;}
.h9{height:54.960938pt;}
.h8{height:62.790933pt;}
.h4{height:71.168000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:75.553467pt;}
.x1a{left:83.112533pt;}
.x6{left:86.892133pt;}
.x7{left:94.451067pt;}
.x20{left:105.793467pt;}
.x1c{left:112.684267pt;}
.x1d{left:225.917600pt;}
.xa{left:365.133067pt;}
.xc{left:408.149600pt;}
.x12{left:416.114933pt;}
.x11{left:418.461600pt;}
.x13{left:420.637600pt;}
.xb{left:427.049600pt;}
.x22{left:435.501600pt;}
.x21{left:438.397467pt;}
.xf{left:439.762933pt;}
.x10{left:442.226933pt;}
.xe{left:443.997600pt;}
.xd{left:446.048267pt;}
.x1b{left:453.850933pt;}
.x5{left:468.508667pt;}
.x14{left:485.362933pt;}
.x15{left:502.237600pt;}
.x19{left:509.316267pt;}
.x4{left:537.167467pt;}
.x3{left:546.244267pt;}
.x1f{left:558.053600pt;}
.x1e{left:559.037600pt;}
.x16{left:566.529600pt;}
.x9{left:572.448667pt;}
.x17{left:578.038933pt;}
.x8{left:637.412267pt;}
.x18{left:645.430933pt;}
.x1{left:688.032267pt;}
}




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