
    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_29c7d26ff64fac8aa8f63adc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_02cc14406eba85627b90683d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02cc14406eba85627b90683d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8b68efa62faff8ba39d009d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c457ca340423c956728b5658.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123000;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_29c7d26ff64fac8aa8f63adc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7efc6ed4730ea421a3cae243.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_27577bb7763d3d3a27dd4754.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090000;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_29e7ee050d8270561c7886ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.448320px;}
.ls4{letter-spacing:-1.296000px;}
.ls32{letter-spacing:-0.971280px;}
.ls36{letter-spacing:-0.920160px;}
.ls5{letter-spacing:-0.864000px;}
.ls16{letter-spacing:-0.846720px;}
.ls38{letter-spacing:-0.817920px;}
.ls14{letter-spacing:-0.635040px;}
.ls37{letter-spacing:-0.613440px;}
.ls2b{letter-spacing:-0.562320px;}
.ls10{letter-spacing:-0.511200px;}
.ls3a{letter-spacing:-0.460080px;}
.ls24{letter-spacing:-0.408960px;}
.ls12{letter-spacing:-0.357840px;}
.ls13{letter-spacing:-0.332640px;}
.ls11{letter-spacing:-0.306720px;}
.ls20{letter-spacing:-0.255600px;}
.ls1{letter-spacing:-0.252720px;}
.lsf{letter-spacing:-0.241920px;}
.ls21{letter-spacing:-0.226800px;}
.ls3{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.204480px;}
.ls7{letter-spacing:-0.179280px;}
.ls18{letter-spacing:-0.162000px;}
.ls1e{letter-spacing:-0.153360px;}
.ls2{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.136080px;}
.ls1d{letter-spacing:-0.102240px;}
.lsa{letter-spacing:-0.059760px;}
.ls1c{letter-spacing:-0.051120px;}
.ls9{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.051120px;}
.lsb{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.102240px;}
.ls39{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.179280px;}
.ls15{letter-spacing:0.181440px;}
.ls1f{letter-spacing:0.204480px;}
.ls0{letter-spacing:0.209160px;}
.ls2f{letter-spacing:0.235152px;}
.ls17{letter-spacing:0.241920px;}
.ls19{letter-spacing:0.255600px;}
.ls8{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.306720px;}
.ls28{letter-spacing:0.357840px;}
.lse{letter-spacing:0.511200px;}
.ls34{letter-spacing:0.715680px;}
.ls31{letter-spacing:0.920160px;}
.ls33{letter-spacing:0.971280px;}
.ls35{letter-spacing:1.124640px;}
.ls23{letter-spacing:1.942560px;}
.ls25{letter-spacing:2.826936px;}
.ls27{letter-spacing:3.445488px;}
.ls2d{letter-spacing:4.089600px;}
.ls26{letter-spacing:4.824000px;}
.ls2a{letter-spacing:6.287760px;}
.ls2e{letter-spacing:7.034112px;}
.lsd{letter-spacing:12.013200px;}
.ls30{letter-spacing:17.835768px;}
.lsc{letter-spacing:36.499680px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(33,29,30),0 0.015em rgb(33,29,30),0.015em 0 rgb(33,29,30),0 -0.015em  rgb(33,29,30);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(33,29,30);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.019280px;}
.ws2{word-spacing:-21.456000px;}
.ws1{word-spacing:-20.304000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.868240px;}
.ws3{word-spacing:-17.748720px;}
.ws82{word-spacing:-16.460640px;}
.ws83{word-spacing:-16.256160px;}
.ws15{word-spacing:-16.038000px;}
.ws61{word-spacing:-15.693840px;}
.ws4f{word-spacing:-15.642720px;}
.ws40{word-spacing:-15.540480px;}
.ws97{word-spacing:-15.489360px;}
.ws71{word-spacing:-15.438240px;}
.ws17{word-spacing:-15.387120px;}
.ws11{word-spacing:-15.336000px;}
.ws18{word-spacing:-15.233760px;}
.ws16{word-spacing:-15.131520px;}
.ws5f{word-spacing:-15.080400px;}
.ws13{word-spacing:-15.029280px;}
.ws14{word-spacing:-14.978160px;}
.ws9b{word-spacing:-14.875920px;}
.ws12{word-spacing:-14.824800px;}
.ws60{word-spacing:-14.773680px;}
.ws96{word-spacing:-14.722560px;}
.ws7{word-spacing:-10.872000px;}
.ws6{word-spacing:-10.800000px;}
.ws19{word-spacing:-9.936000px;}
.ws10{word-spacing:-9.072000px;}
.ws70{word-spacing:-4.191840px;}
.ws2b{word-spacing:-3.680640px;}
.ws2a{word-spacing:-3.527280px;}
.ws66{word-spacing:-3.322800px;}
.ws38{word-spacing:-2.811600px;}
.ws7b{word-spacing:-2.709360px;}
.ws86{word-spacing:-2.095920px;}
.ws28{word-spacing:-2.044800px;}
.ws93{word-spacing:-1.891440px;}
.ws44{word-spacing:-1.329120px;}
.ws21{word-spacing:-1.175760px;}
.ws91{word-spacing:-0.971280px;}
.ws87{word-spacing:-0.920160px;}
.ws7e{word-spacing:-0.817920px;}
.wse{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.613440px;}
.wsf{word-spacing:-0.576000px;}
.ws9a{word-spacing:-0.562320px;}
.ws5d{word-spacing:-0.460080px;}
.ws5e{word-spacing:-0.408960px;}
.ws99{word-spacing:-0.357840px;}
.ws6b{word-spacing:-0.306720px;}
.wsd{word-spacing:-0.239040px;}
.ws68{word-spacing:-0.204480px;}
.ws23{word-spacing:-0.153360px;}
.wsb{word-spacing:-0.119520px;}
.ws79{word-spacing:-0.102240px;}
.wsc{word-spacing:0.000000px;}
.ws59{word-spacing:0.051120px;}
.ws20{word-spacing:0.060480px;}
.ws1b{word-spacing:0.102240px;}
.ws1e{word-spacing:0.120960px;}
.ws8{word-spacing:0.144000px;}
.ws58{word-spacing:0.153360px;}
.ws69{word-spacing:0.204480px;}
.ws9{word-spacing:0.216000px;}
.ws48{word-spacing:0.255600px;}
.ws5b{word-spacing:0.306720px;}
.ws3f{word-spacing:0.317520px;}
.ws1c{word-spacing:0.332640px;}
.ws22{word-spacing:0.378000px;}
.ws47{word-spacing:0.408960px;}
.ws81{word-spacing:0.511200px;}
.ws1a{word-spacing:0.544320px;}
.ws57{word-spacing:0.613440px;}
.ws1d{word-spacing:0.635040px;}
.ws24{word-spacing:0.817920px;}
.wsa{word-spacing:0.864000px;}
.ws89{word-spacing:0.869040px;}
.ws88{word-spacing:0.920160px;}
.ws75{word-spacing:0.971280px;}
.ws2c{word-spacing:1.022400px;}
.ws1f{word-spacing:1.149120px;}
.ws7d{word-spacing:1.329120px;}
.ws27{word-spacing:1.533600px;}
.ws6f{word-spacing:1.686960px;}
.ws9c{word-spacing:1.738080px;}
.ws33{word-spacing:2.249280px;}
.ws54{word-spacing:2.453760px;}
.ws8b{word-spacing:2.913840px;}
.ws2d{word-spacing:2.964960px;}
.ws8f{word-spacing:3.476160px;}
.ws73{word-spacing:3.629520px;}
.ws30{word-spacing:3.680640px;}
.ws74{word-spacing:3.885120px;}
.ws32{word-spacing:4.396320px;}
.ws84{word-spacing:4.447440px;}
.ws7a{word-spacing:4.600800px;}
.ws3c{word-spacing:5.112000px;}
.ws8d{word-spacing:5.214240px;}
.ws7f{word-spacing:5.827680px;}
.ws31{word-spacing:5.878800px;}
.ws5c{word-spacing:5.929920px;}
.ws80{word-spacing:6.032160px;}
.ws72{word-spacing:6.543360px;}
.ws41{word-spacing:6.594480px;}
.ws8e{word-spacing:6.645600px;}
.ws56{word-spacing:6.798960px;}
.ws3b{word-spacing:7.310160px;}
.ws3d{word-spacing:7.484400px;}
.ws49{word-spacing:8.025840px;}
.ws8c{word-spacing:8.179200px;}
.ws25{word-spacing:8.741520px;}
.ws26{word-spacing:9.457200px;}
.ws52{word-spacing:10.172880px;}
.ws46{word-spacing:10.888560px;}
.ws4a{word-spacing:11.604240px;}
.ws35{word-spacing:12.115440px;}
.ws8a{word-spacing:12.268800px;}
.ws34{word-spacing:12.319920px;}
.ws64{word-spacing:12.473280px;}
.ws65{word-spacing:12.984480px;}
.ws45{word-spacing:13.035600px;}
.ws6c{word-spacing:13.751280px;}
.ws78{word-spacing:14.006880px;}
.ws4d{word-spacing:14.518080px;}
.ws43{word-spacing:15.233760px;}
.ws85{word-spacing:15.744960px;}
.ws42{word-spacing:15.949440px;}
.ws55{word-spacing:16.665120px;}
.ws36{word-spacing:17.329680px;}
.ws37{word-spacing:17.380800px;}
.ws4b{word-spacing:18.096480px;}
.ws63{word-spacing:19.527840px;}
.ws95{word-spacing:19.578960px;}
.ws3e{word-spacing:19.640880px;}
.ws90{word-spacing:20.192400px;}
.ws62{word-spacing:20.243520px;}
.ws6a{word-spacing:20.959200px;}
.ws5a{word-spacing:21.010320px;}
.ws4e{word-spacing:21.674880px;}
.ws3a{word-spacing:22.390560px;}
.ws39{word-spacing:23.157360px;}
.ws67{word-spacing:23.873040px;}
.ws98{word-spacing:24.588720px;}
.ws76{word-spacing:25.304400px;}
.ws6d{word-spacing:26.020080px;}
.ws94{word-spacing:26.684640px;}
.ws2f{word-spacing:26.735760px;}
.ws4c{word-spacing:28.167120px;}
.ws51{word-spacing:30.314160px;}
.ws77{word-spacing:31.029840px;}
.ws6e{word-spacing:34.659360px;}
.ws2e{word-spacing:36.806400px;}
.ws7c{word-spacing:43.298640px;}
.ws50{word-spacing:44.014320px;}
.ws53{word-spacing:52.653600px;}
.ws92{word-spacing:65.638080px;}
._2{margin-left:-3.312000px;}
._0{margin-left:-1.347840px;}
._1{width:1.296000px;}
._3{width:3.831840px;}
._4{width:7.529760px;}
._6{width:20.072160px;}
._5{width:22.776480px;}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs9{font-size:45.360000px;}
.fs5{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y11{bottom:55.797840px;}
.y4d{bottom:57.772800px;}
.y10{bottom:65.520000px;}
.yf{bottom:75.782340px;}
.y4c{bottom:76.320000px;}
.ye{bottom:91.080000px;}
.y9{bottom:123.600900px;}
.y44{bottom:194.050800px;}
.y80{bottom:197.506260px;}
.yb0{bottom:197.588340px;}
.y11a{bottom:202.127400px;}
.y43{bottom:207.545400px;}
.y133{bottom:212.701680px;}
.y7f{bottom:214.069140px;}
.yaf{bottom:214.151220px;}
.y119{bottom:218.690280px;}
.y42{bottom:221.040000px;}
.yea{bottom:226.215360px;}
.y132{bottom:229.264560px;}
.y7e{bottom:230.632020px;}
.yae{bottom:230.714100px;}
.y118{bottom:235.253160px;}
.y41{bottom:236.340000px;}
.ye9{bottom:242.599320px;}
.y131{bottom:245.648520px;}
.y7d{bottom:247.015980px;}
.yad{bottom:247.098060px;}
.y8{bottom:248.384700px;}
.y117{bottom:251.637120px;}
.ye8{bottom:259.162200px;}
.y7c{bottom:263.578860px;}
.yac{bottom:263.660940px;}
.y116{bottom:268.200000px;}
.y40{bottom:271.790280px;}
.y130{bottom:274.262940px;}
.ye7{bottom:275.725080px;}
.y7b{bottom:280.141740px;}
.y3f{bottom:288.353160px;}
.y7{bottom:289.424850px;}
.y12f{bottom:290.646900px;}
.yab{bottom:292.096440px;}
.ye6{bottom:292.109040px;}
.y7a{bottom:296.704620px;}
.y115{bottom:296.778240px;}
.y3e{bottom:304.916040px;}
.y12e{bottom:307.209780px;}
.y6{bottom:307.422150px;}
.yaa{bottom:308.659320px;}
.ye5{bottom:308.671920px;}
.y79{bottom:313.088580px;}
.y114{bottom:313.162200px;}
.y3d{bottom:321.217920px;}
.ya9{bottom:325.222200px;}
.ye4{bottom:325.234800px;}
.y5{bottom:325.424850px;}
.y78{bottom:329.651460px;}
.y113{bottom:329.725080px;}
.y12d{bottom:335.824200px;}
.y3c{bottom:337.780800px;}
.ya8{bottom:341.785080px;}
.ye3{bottom:341.797680px;}
.y77{bottom:346.214340px;}
.y112{bottom:346.287960px;}
.y12c{bottom:352.208160px;}
.y3b{bottom:354.343680px;}
.ya7{bottom:358.169040px;}
.ye2{bottom:358.181640px;}
.y76{bottom:362.598300px;}
.y111{bottom:362.671920px;}
.y12b{bottom:368.771040px;}
.ya6{bottom:374.731920px;}
.ye1{bottom:374.744520px;}
.y75{bottom:379.161180px;}
.y110{bottom:379.234800px;}
.y3a{bottom:382.779180px;}
.ya5{bottom:391.294800px;}
.ye0{bottom:391.307400px;}
.y74{bottom:395.724060px;}
.y10f{bottom:395.797680px;}
.y12a{bottom:397.206540px;}
.y39{bottom:399.342060px;}
.ya4{bottom:407.857680px;}
.ydf{bottom:407.870280px;}
.y73{bottom:412.286940px;}
.y10e{bottom:412.360560px;}
.y129{bottom:413.769420px;}
.y38{bottom:415.904940px;}
.ya3{bottom:424.241640px;}
.yde{bottom:424.254240px;}
.y72{bottom:428.670900px;}
.y10d{bottom:428.744520px;}
.y37{bottom:432.288900px;}
.ya2{bottom:440.804520px;}
.ydd{bottom:440.817120px;}
.y128{bottom:442.383840px;}
.y71{bottom:445.233780px;}
.y10c{bottom:445.307400px;}
.y36{bottom:448.851780px;}
.ya1{bottom:457.367400px;}
.ydc{bottom:457.373160px;}
.y127{bottom:458.767800px;}
.y70{bottom:461.796660px;}
.y10b{bottom:461.870280px;}
.y35{bottom:465.414660px;}
.yba{bottom:473.848200px;}
.ya0{bottom:473.930280px;}
.ydb{bottom:473.936040px;}
.y6f{bottom:478.359540px;}
.y10a{bottom:478.433160px;}
.y34{bottom:481.977540px;}
.y126{bottom:487.382220px;}
.yb9{bottom:490.232160px;}
.y9f{bottom:490.314240px;}
.yda{bottom:490.320000px;}
.y6e{bottom:494.743500px;}
.y109{bottom:494.817120px;}
.y33{bottom:498.361500px;}
.y125{bottom:503.766180px;}
.yb8{bottom:506.795040px;}
.y9e{bottom:506.877120px;}
.y108{bottom:511.380000px;}
.y32{bottom:514.924380px;}
.yd9{bottom:518.895360px;}
.y6d{bottom:523.357920px;}
.y9d{bottom:523.440000px;}
.y107{bottom:527.937120px;}
.y31{bottom:531.487260px;}
.y124{bottom:532.380600px;}
.yd8{bottom:535.279320px;}
.y6c{bottom:539.741880px;}
.y106{bottom:544.500000px;}
.y30{bottom:548.050140px;}
.y123{bottom:548.943480px;}
.yd7{bottom:551.842200px;}
.y9c{bottom:551.867400px;}
.y6b{bottom:556.304760px;}
.y122{bottom:565.327440px;}
.y4{bottom:565.400850px;}
.yd6{bottom:568.405080px;}
.y9b{bottom:568.430280px;}
.y6a{bottom:572.867640px;}
.y105{bottom:572.907960px;}
.y2f{bottom:576.485640px;}
.y3{bottom:584.840850px;}
.yd5{bottom:584.967960px;}
.y9a{bottom:584.993160px;}
.y69{bottom:589.430520px;}
.y104{bottom:589.470840px;}
.y2e{bottom:593.048520px;}
.y121{bottom:593.941860px;}
.yd4{bottom:601.351920px;}
.y99{bottom:601.377120px;}
.y2{bottom:604.280850px;}
.y68{bottom:605.814480px;}
.y103{bottom:605.854800px;}
.y2d{bottom:609.432480px;}
.y120{bottom:610.325820px;}
.y143{bottom:616.500000px;}
.y98{bottom:617.877000px;}
.yd3{bottom:617.914800px;}
.y67{bottom:622.377360px;}
.y102{bottom:622.417680px;}
.y2c{bottom:625.995360px;}
.y11f{bottom:626.888700px;}
.y142{bottom:633.060000px;}
.yb7{bottom:634.428900px;}
.y97{bottom:634.439880px;}
.yd2{bottom:634.477680px;}
.y66{bottom:638.940240px;}
.y101{bottom:638.980560px;}
.y2b{bottom:642.558240px;}
.yb6{bottom:650.812860px;}
.y96{bottom:650.823840px;}
.yd1{bottom:650.861640px;}
.y65{bottom:655.503120px;}
.y100{bottom:655.543440px;}
.y2a{bottom:659.121120px;}
.y141{bottom:661.496940px;}
.yb5{bottom:667.375740px;}
.y95{bottom:667.386720px;}
.yd0{bottom:667.424520px;}
.y1{bottom:671.420850px;}
.y64{bottom:671.887080px;}
.yff{bottom:671.927400px;}
.y29{bottom:675.505080px;}
.y140{bottom:678.059820px;}
.yb4{bottom:683.938620px;}
.y94{bottom:683.949600px;}
.ycf{bottom:683.987400px;}
.y63{bottom:688.449960px;}
.yfe{bottom:688.490280px;}
.y28{bottom:692.067960px;}
.y13f{bottom:694.622700px;}
.yb3{bottom:700.501500px;}
.y93{bottom:700.512480px;}
.yce{bottom:700.550280px;}
.y62{bottom:705.012840px;}
.yfd{bottom:705.053160px;}
.y27{bottom:708.630840px;}
.y13e{bottom:711.006660px;}
.yb2{bottom:716.885460px;}
.y92{bottom:716.896440px;}
.ycd{bottom:716.934240px;}
.y61{bottom:721.396800px;}
.yfc{bottom:721.437120px;}
.y26{bottom:725.014800px;}
.yb1{bottom:733.448340px;}
.y91{bottom:733.459320px;}
.ycc{bottom:733.497120px;}
.y11e{bottom:737.959680px;}
.yfb{bottom:738.000000px;}
.y13d{bottom:739.621080px;}
.y25{bottom:741.577680px;}
.y60{bottom:750.011220px;}
.y90{bottom:750.022200px;}
.ycb{bottom:750.057120px;}
.yfa{bottom:754.557120px;}
.y13c{bottom:756.005040px;}
.y24{bottom:758.140560px;}
.y5f{bottom:766.574100px;}
.y8f{bottom:766.585080px;}
.yca{bottom:766.620000px;}
.yf9{bottom:771.120000px;}
.y23{bottom:774.703440px;}
.y5e{bottom:782.958060px;}
.y8e{bottom:782.969040px;}
.y13b{bottom:784.619460px;}
.y22{bottom:791.087400px;}
.yc9{bottom:795.012480px;}
.y5d{bottom:799.520940px;}
.yf8{bottom:799.525080px;}
.y8d{bottom:799.531920px;}
.y13a{bottom:801.182340px;}
.y21{bottom:807.650280px;}
.yc8{bottom:811.575360px;}
.y5c{bottom:816.083820px;}
.yf7{bottom:816.087960px;}
.y8c{bottom:816.094800px;}
.y20{bottom:824.213160px;}
.yc7{bottom:827.959320px;}
.y139{bottom:829.617840px;}
.y5b{bottom:832.646700px;}
.yf6{bottom:832.650840px;}
.y8b{bottom:832.657680px;}
.y1f{bottom:840.776040px;}
.yc6{bottom:844.522200px;}
.y138{bottom:846.180720px;}
.y5a{bottom:849.030660px;}
.yf5{bottom:849.034800px;}
.y8a{bottom:849.041640px;}
.y1e{bottom:857.160000px;}
.yc5{bottom:861.085080px;}
.y59{bottom:865.593540px;}
.yf4{bottom:865.597680px;}
.y89{bottom:865.604520px;}
.y1d{bottom:873.900000px;}
.y137{bottom:874.616220px;}
.yc4{bottom:877.647960px;}
.y58{bottom:882.156420px;}
.yf3{bottom:882.160560px;}
.y88{bottom:882.167400px;}
.y1c{bottom:891.167400px;}
.y136{bottom:891.179100px;}
.yc3{bottom:894.031920px;}
.y57{bottom:898.540380px;}
.yf2{bottom:898.544520px;}
.y87{bottom:898.551360px;}
.y1b{bottom:907.730280px;}
.yc2{bottom:910.594800px;}
.y56{bottom:915.103260px;}
.yf1{bottom:915.107400px;}
.y86{bottom:915.114240px;}
.y135{bottom:919.614600px;}
.y1a{bottom:924.293160px;}
.y11d{bottom:927.154800px;}
.yc1{bottom:927.157680px;}
.y55{bottom:931.666140px;}
.yf0{bottom:931.670280px;}
.y85{bottom:931.677120px;}
.y134{bottom:936.177480px;}
.y19{bottom:940.677120px;}
.y11c{bottom:943.717680px;}
.yc0{bottom:943.720560px;}
.y54{bottom:948.229020px;}
.yef{bottom:948.233160px;}
.y84{bottom:948.240000px;}
.y18{bottom:957.240000px;}
.y11b{bottom:960.101640px;}
.ybf{bottom:960.104520px;}
.y53{bottom:964.612980px;}
.yee{bottom:964.617120px;}
.y17{bottom:973.980000px;}
.y83{bottom:976.664520px;}
.ybe{bottom:976.667400px;}
.y52{bottom:981.175860px;}
.yed{bottom:981.180000px;}
.y16{bottom:991.253160px;}
.y82{bottom:993.227400px;}
.ybd{bottom:993.230280px;}
.yec{bottom:997.737120px;}
.y51{bottom:997.738740px;}
.y15{bottom:1007.816040px;}
.y81{bottom:1009.611360px;}
.ybc{bottom:1009.614240px;}
.yeb{bottom:1014.300000px;}
.y14{bottom:1024.200000px;}
.y50{bottom:1026.174240px;}
.ybb{bottom:1026.177120px;}
.y13{bottom:1041.124500px;}
.y4f{bottom:1042.737120px;}
.y12{bottom:1058.580000px;}
.y4e{bottom:1059.300000px;}
.y4b{bottom:1102.320000px;}
.y4a{bottom:1121.051700px;}
.y49{bottom:1136.349360px;}
.y48{bottom:1151.647020px;}
.yd{bottom:1164.242340px;}
.y47{bottom:1166.944680px;}
.yc{bottom:1179.540000px;}
.y46{bottom:1182.242340px;}
.yb{bottom:1193.583600px;}
.y45{bottom:1197.540000px;}
.ya{bottom:1202.580000px;}
.h6{height:24.192000px;}
.h9{height:26.913600px;}
.h5{height:28.800000px;}
.hf{height:40.370400px;}
.h7{height:40.896000px;}
.ha{height:43.200000px;}
.he{height:44.149219px;}
.hb{height:45.496800px;}
.h11{height:45.508320px;}
.h12{height:45.524160px;}
.h10{height:45.748800px;}
.hd{height:45.825120px;}
.h8{height:47.183760px;}
.h4{height:47.808000px;}
.hc{height:49.842000px;}
.h3{height:57.600000px;}
.h2{height:67.392000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:125.811300px;}
.x2{left:208.260000px;}
.x5{left:424.260000px;}
.x6{left:614.340000px;}
.x3{left:617.400000px;}
.x4{left:684.546120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.731840pt;}
.ls4{letter-spacing:-1.152000pt;}
.ls32{letter-spacing:-0.863360pt;}
.ls36{letter-spacing:-0.817920pt;}
.ls5{letter-spacing:-0.768000pt;}
.ls16{letter-spacing:-0.752640pt;}
.ls38{letter-spacing:-0.727040pt;}
.ls14{letter-spacing:-0.564480pt;}
.ls37{letter-spacing:-0.545280pt;}
.ls2b{letter-spacing:-0.499840pt;}
.ls10{letter-spacing:-0.454400pt;}
.ls3a{letter-spacing:-0.408960pt;}
.ls24{letter-spacing:-0.363520pt;}
.ls12{letter-spacing:-0.318080pt;}
.ls13{letter-spacing:-0.295680pt;}
.ls11{letter-spacing:-0.272640pt;}
.ls20{letter-spacing:-0.227200pt;}
.ls1{letter-spacing:-0.224640pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls21{letter-spacing:-0.201600pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.181760pt;}
.ls7{letter-spacing:-0.159360pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls1e{letter-spacing:-0.136320pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.120960pt;}
.ls1d{letter-spacing:-0.090880pt;}
.lsa{letter-spacing:-0.053120pt;}
.ls1c{letter-spacing:-0.045440pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.045440pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.090880pt;}
.ls39{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.159360pt;}
.ls15{letter-spacing:0.161280pt;}
.ls1f{letter-spacing:0.181760pt;}
.ls0{letter-spacing:0.185920pt;}
.ls2f{letter-spacing:0.209024pt;}
.ls17{letter-spacing:0.215040pt;}
.ls19{letter-spacing:0.227200pt;}
.ls8{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.272640pt;}
.ls28{letter-spacing:0.318080pt;}
.lse{letter-spacing:0.454400pt;}
.ls34{letter-spacing:0.636160pt;}
.ls31{letter-spacing:0.817920pt;}
.ls33{letter-spacing:0.863360pt;}
.ls35{letter-spacing:0.999680pt;}
.ls23{letter-spacing:1.726720pt;}
.ls25{letter-spacing:2.512832pt;}
.ls27{letter-spacing:3.062656pt;}
.ls2d{letter-spacing:3.635200pt;}
.ls26{letter-spacing:4.288000pt;}
.ls2a{letter-spacing:5.589120pt;}
.ls2e{letter-spacing:6.252544pt;}
.lsd{letter-spacing:10.678400pt;}
.ls30{letter-spacing:15.854016pt;}
.lsc{letter-spacing:32.444160pt;}
.ws0{word-spacing:-22.239360pt;}
.ws2{word-spacing:-19.072000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.882880pt;}
.ws3{word-spacing:-15.776640pt;}
.ws82{word-spacing:-14.631680pt;}
.ws83{word-spacing:-14.449920pt;}
.ws15{word-spacing:-14.256000pt;}
.ws61{word-spacing:-13.950080pt;}
.ws4f{word-spacing:-13.904640pt;}
.ws40{word-spacing:-13.813760pt;}
.ws97{word-spacing:-13.768320pt;}
.ws71{word-spacing:-13.722880pt;}
.ws17{word-spacing:-13.677440pt;}
.ws11{word-spacing:-13.632000pt;}
.ws18{word-spacing:-13.541120pt;}
.ws16{word-spacing:-13.450240pt;}
.ws5f{word-spacing:-13.404800pt;}
.ws13{word-spacing:-13.359360pt;}
.ws14{word-spacing:-13.313920pt;}
.ws9b{word-spacing:-13.223040pt;}
.ws12{word-spacing:-13.177600pt;}
.ws60{word-spacing:-13.132160pt;}
.ws96{word-spacing:-13.086720pt;}
.ws7{word-spacing:-9.664000pt;}
.ws6{word-spacing:-9.600000pt;}
.ws19{word-spacing:-8.832000pt;}
.ws10{word-spacing:-8.064000pt;}
.ws70{word-spacing:-3.726080pt;}
.ws2b{word-spacing:-3.271680pt;}
.ws2a{word-spacing:-3.135360pt;}
.ws66{word-spacing:-2.953600pt;}
.ws38{word-spacing:-2.499200pt;}
.ws7b{word-spacing:-2.408320pt;}
.ws86{word-spacing:-1.863040pt;}
.ws28{word-spacing:-1.817600pt;}
.ws93{word-spacing:-1.681280pt;}
.ws44{word-spacing:-1.181440pt;}
.ws21{word-spacing:-1.045120pt;}
.ws91{word-spacing:-0.863360pt;}
.ws87{word-spacing:-0.817920pt;}
.ws7e{word-spacing:-0.727040pt;}
.wse{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.545280pt;}
.wsf{word-spacing:-0.512000pt;}
.ws9a{word-spacing:-0.499840pt;}
.ws5d{word-spacing:-0.408960pt;}
.ws5e{word-spacing:-0.363520pt;}
.ws99{word-spacing:-0.318080pt;}
.ws6b{word-spacing:-0.272640pt;}
.wsd{word-spacing:-0.212480pt;}
.ws68{word-spacing:-0.181760pt;}
.ws23{word-spacing:-0.136320pt;}
.wsb{word-spacing:-0.106240pt;}
.ws79{word-spacing:-0.090880pt;}
.wsc{word-spacing:0.000000pt;}
.ws59{word-spacing:0.045440pt;}
.ws20{word-spacing:0.053760pt;}
.ws1b{word-spacing:0.090880pt;}
.ws1e{word-spacing:0.107520pt;}
.ws8{word-spacing:0.128000pt;}
.ws58{word-spacing:0.136320pt;}
.ws69{word-spacing:0.181760pt;}
.ws9{word-spacing:0.192000pt;}
.ws48{word-spacing:0.227200pt;}
.ws5b{word-spacing:0.272640pt;}
.ws3f{word-spacing:0.282240pt;}
.ws1c{word-spacing:0.295680pt;}
.ws22{word-spacing:0.336000pt;}
.ws47{word-spacing:0.363520pt;}
.ws81{word-spacing:0.454400pt;}
.ws1a{word-spacing:0.483840pt;}
.ws57{word-spacing:0.545280pt;}
.ws1d{word-spacing:0.564480pt;}
.ws24{word-spacing:0.727040pt;}
.wsa{word-spacing:0.768000pt;}
.ws89{word-spacing:0.772480pt;}
.ws88{word-spacing:0.817920pt;}
.ws75{word-spacing:0.863360pt;}
.ws2c{word-spacing:0.908800pt;}
.ws1f{word-spacing:1.021440pt;}
.ws7d{word-spacing:1.181440pt;}
.ws27{word-spacing:1.363200pt;}
.ws6f{word-spacing:1.499520pt;}
.ws9c{word-spacing:1.544960pt;}
.ws33{word-spacing:1.999360pt;}
.ws54{word-spacing:2.181120pt;}
.ws8b{word-spacing:2.590080pt;}
.ws2d{word-spacing:2.635520pt;}
.ws8f{word-spacing:3.089920pt;}
.ws73{word-spacing:3.226240pt;}
.ws30{word-spacing:3.271680pt;}
.ws74{word-spacing:3.453440pt;}
.ws32{word-spacing:3.907840pt;}
.ws84{word-spacing:3.953280pt;}
.ws7a{word-spacing:4.089600pt;}
.ws3c{word-spacing:4.544000pt;}
.ws8d{word-spacing:4.634880pt;}
.ws7f{word-spacing:5.180160pt;}
.ws31{word-spacing:5.225600pt;}
.ws5c{word-spacing:5.271040pt;}
.ws80{word-spacing:5.361920pt;}
.ws72{word-spacing:5.816320pt;}
.ws41{word-spacing:5.861760pt;}
.ws8e{word-spacing:5.907200pt;}
.ws56{word-spacing:6.043520pt;}
.ws3b{word-spacing:6.497920pt;}
.ws3d{word-spacing:6.652800pt;}
.ws49{word-spacing:7.134080pt;}
.ws8c{word-spacing:7.270400pt;}
.ws25{word-spacing:7.770240pt;}
.ws26{word-spacing:8.406400pt;}
.ws52{word-spacing:9.042560pt;}
.ws46{word-spacing:9.678720pt;}
.ws4a{word-spacing:10.314880pt;}
.ws35{word-spacing:10.769280pt;}
.ws8a{word-spacing:10.905600pt;}
.ws34{word-spacing:10.951040pt;}
.ws64{word-spacing:11.087360pt;}
.ws65{word-spacing:11.541760pt;}
.ws45{word-spacing:11.587200pt;}
.ws6c{word-spacing:12.223360pt;}
.ws78{word-spacing:12.450560pt;}
.ws4d{word-spacing:12.904960pt;}
.ws43{word-spacing:13.541120pt;}
.ws85{word-spacing:13.995520pt;}
.ws42{word-spacing:14.177280pt;}
.ws55{word-spacing:14.813440pt;}
.ws36{word-spacing:15.404160pt;}
.ws37{word-spacing:15.449600pt;}
.ws4b{word-spacing:16.085760pt;}
.ws63{word-spacing:17.358080pt;}
.ws95{word-spacing:17.403520pt;}
.ws3e{word-spacing:17.458560pt;}
.ws90{word-spacing:17.948800pt;}
.ws62{word-spacing:17.994240pt;}
.ws6a{word-spacing:18.630400pt;}
.ws5a{word-spacing:18.675840pt;}
.ws4e{word-spacing:19.266560pt;}
.ws3a{word-spacing:19.902720pt;}
.ws39{word-spacing:20.584320pt;}
.ws67{word-spacing:21.220480pt;}
.ws98{word-spacing:21.856640pt;}
.ws76{word-spacing:22.492800pt;}
.ws6d{word-spacing:23.128960pt;}
.ws94{word-spacing:23.719680pt;}
.ws2f{word-spacing:23.765120pt;}
.ws4c{word-spacing:25.037440pt;}
.ws51{word-spacing:26.945920pt;}
.ws77{word-spacing:27.582080pt;}
.ws6e{word-spacing:30.808320pt;}
.ws2e{word-spacing:32.716800pt;}
.ws7c{word-spacing:38.487680pt;}
.ws50{word-spacing:39.123840pt;}
.ws53{word-spacing:46.803200pt;}
.ws92{word-spacing:58.344960pt;}
._2{margin-left:-2.944000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.152000pt;}
._3{width:3.406080pt;}
._4{width:6.693120pt;}
._6{width:17.841920pt;}
._5{width:20.245760pt;}
.fs4{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:40.320000pt;}
.fs5{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:49.598080pt;}
.y4d{bottom:51.353600pt;}
.y10{bottom:58.240000pt;}
.yf{bottom:67.362080pt;}
.y4c{bottom:67.840000pt;}
.ye{bottom:80.960000pt;}
.y9{bottom:109.867467pt;}
.y44{bottom:172.489600pt;}
.y80{bottom:175.561120pt;}
.yb0{bottom:175.634080pt;}
.y11a{bottom:179.668800pt;}
.y43{bottom:184.484800pt;}
.y133{bottom:189.068160pt;}
.y7f{bottom:190.283680pt;}
.yaf{bottom:190.356640pt;}
.y119{bottom:194.391360pt;}
.y42{bottom:196.480000pt;}
.yea{bottom:201.080320pt;}
.y132{bottom:203.790720pt;}
.y7e{bottom:205.006240pt;}
.yae{bottom:205.079200pt;}
.y118{bottom:209.113920pt;}
.y41{bottom:210.080000pt;}
.ye9{bottom:215.643840pt;}
.y131{bottom:218.354240pt;}
.y7d{bottom:219.569760pt;}
.yad{bottom:219.642720pt;}
.y8{bottom:220.786400pt;}
.y117{bottom:223.677440pt;}
.ye8{bottom:230.366400pt;}
.y7c{bottom:234.292320pt;}
.yac{bottom:234.365280pt;}
.y116{bottom:238.400000pt;}
.y40{bottom:241.591360pt;}
.y130{bottom:243.789280pt;}
.ye7{bottom:245.088960pt;}
.y7b{bottom:249.014880pt;}
.y3f{bottom:256.313920pt;}
.y7{bottom:257.266533pt;}
.y12f{bottom:258.352800pt;}
.yab{bottom:259.641280pt;}
.ye6{bottom:259.652480pt;}
.y7a{bottom:263.737440pt;}
.y115{bottom:263.802880pt;}
.y3e{bottom:271.036480pt;}
.y12e{bottom:273.075360pt;}
.y6{bottom:273.264133pt;}
.yaa{bottom:274.363840pt;}
.ye5{bottom:274.375040pt;}
.y79{bottom:278.300960pt;}
.y114{bottom:278.366400pt;}
.y3d{bottom:285.527040pt;}
.ya9{bottom:289.086400pt;}
.ye4{bottom:289.097600pt;}
.y5{bottom:289.266533pt;}
.y78{bottom:293.023520pt;}
.y113{bottom:293.088960pt;}
.y12d{bottom:298.510400pt;}
.y3c{bottom:300.249600pt;}
.ya8{bottom:303.808960pt;}
.ye3{bottom:303.820160pt;}
.y77{bottom:307.746080pt;}
.y112{bottom:307.811520pt;}
.y12c{bottom:313.073920pt;}
.y3b{bottom:314.972160pt;}
.ya7{bottom:318.372480pt;}
.ye2{bottom:318.383680pt;}
.y76{bottom:322.309600pt;}
.y111{bottom:322.375040pt;}
.y12b{bottom:327.796480pt;}
.ya6{bottom:333.095040pt;}
.ye1{bottom:333.106240pt;}
.y75{bottom:337.032160pt;}
.y110{bottom:337.097600pt;}
.y3a{bottom:340.248160pt;}
.ya5{bottom:347.817600pt;}
.ye0{bottom:347.828800pt;}
.y74{bottom:351.754720pt;}
.y10f{bottom:351.820160pt;}
.y12a{bottom:353.072480pt;}
.y39{bottom:354.970720pt;}
.ya4{bottom:362.540160pt;}
.ydf{bottom:362.551360pt;}
.y73{bottom:366.477280pt;}
.y10e{bottom:366.542720pt;}
.y129{bottom:367.795040pt;}
.y38{bottom:369.693280pt;}
.ya3{bottom:377.103680pt;}
.yde{bottom:377.114880pt;}
.y72{bottom:381.040800pt;}
.y10d{bottom:381.106240pt;}
.y37{bottom:384.256800pt;}
.ya2{bottom:391.826240pt;}
.ydd{bottom:391.837440pt;}
.y128{bottom:393.230080pt;}
.y71{bottom:395.763360pt;}
.y10c{bottom:395.828800pt;}
.y36{bottom:398.979360pt;}
.ya1{bottom:406.548800pt;}
.ydc{bottom:406.553920pt;}
.y127{bottom:407.793600pt;}
.y70{bottom:410.485920pt;}
.y10b{bottom:410.551360pt;}
.y35{bottom:413.701920pt;}
.yba{bottom:421.198400pt;}
.ya0{bottom:421.271360pt;}
.ydb{bottom:421.276480pt;}
.y6f{bottom:425.208480pt;}
.y10a{bottom:425.273920pt;}
.y34{bottom:428.424480pt;}
.y126{bottom:433.228640pt;}
.yb9{bottom:435.761920pt;}
.y9f{bottom:435.834880pt;}
.yda{bottom:435.840000pt;}
.y6e{bottom:439.772000pt;}
.y109{bottom:439.837440pt;}
.y33{bottom:442.988000pt;}
.y125{bottom:447.792160pt;}
.yb8{bottom:450.484480pt;}
.y9e{bottom:450.557440pt;}
.y108{bottom:454.560000pt;}
.y32{bottom:457.710560pt;}
.yd9{bottom:461.240320pt;}
.y6d{bottom:465.207040pt;}
.y9d{bottom:465.280000pt;}
.y107{bottom:469.277440pt;}
.y31{bottom:472.433120pt;}
.y124{bottom:473.227200pt;}
.yd8{bottom:475.803840pt;}
.y6c{bottom:479.770560pt;}
.y106{bottom:484.000000pt;}
.y30{bottom:487.155680pt;}
.y123{bottom:487.949760pt;}
.yd7{bottom:490.526400pt;}
.y9c{bottom:490.548800pt;}
.y6b{bottom:494.493120pt;}
.y122{bottom:502.513280pt;}
.y4{bottom:502.578533pt;}
.yd6{bottom:505.248960pt;}
.y9b{bottom:505.271360pt;}
.y6a{bottom:509.215680pt;}
.y105{bottom:509.251520pt;}
.y2f{bottom:512.431680pt;}
.y3{bottom:519.858533pt;}
.yd5{bottom:519.971520pt;}
.y9a{bottom:519.993920pt;}
.y69{bottom:523.938240pt;}
.y104{bottom:523.974080pt;}
.y2e{bottom:527.154240pt;}
.y121{bottom:527.948320pt;}
.yd4{bottom:534.535040pt;}
.y99{bottom:534.557440pt;}
.y2{bottom:537.138533pt;}
.y68{bottom:538.501760pt;}
.y103{bottom:538.537600pt;}
.y2d{bottom:541.717760pt;}
.y120{bottom:542.511840pt;}
.y143{bottom:548.000000pt;}
.y98{bottom:549.224000pt;}
.yd3{bottom:549.257600pt;}
.y67{bottom:553.224320pt;}
.y102{bottom:553.260160pt;}
.y2c{bottom:556.440320pt;}
.y11f{bottom:557.234400pt;}
.y142{bottom:562.720000pt;}
.yb7{bottom:563.936800pt;}
.y97{bottom:563.946560pt;}
.yd2{bottom:563.980160pt;}
.y66{bottom:567.946880pt;}
.y101{bottom:567.982720pt;}
.y2b{bottom:571.162880pt;}
.yb6{bottom:578.500320pt;}
.y96{bottom:578.510080pt;}
.yd1{bottom:578.543680pt;}
.y65{bottom:582.669440pt;}
.y100{bottom:582.705280pt;}
.y2a{bottom:585.885440pt;}
.y141{bottom:587.997280pt;}
.yb5{bottom:593.222880pt;}
.y95{bottom:593.232640pt;}
.yd0{bottom:593.266240pt;}
.y1{bottom:596.818533pt;}
.y64{bottom:597.232960pt;}
.yff{bottom:597.268800pt;}
.y29{bottom:600.448960pt;}
.y140{bottom:602.719840pt;}
.yb4{bottom:607.945440pt;}
.y94{bottom:607.955200pt;}
.ycf{bottom:607.988800pt;}
.y63{bottom:611.955520pt;}
.yfe{bottom:611.991360pt;}
.y28{bottom:615.171520pt;}
.y13f{bottom:617.442400pt;}
.yb3{bottom:622.668000pt;}
.y93{bottom:622.677760pt;}
.yce{bottom:622.711360pt;}
.y62{bottom:626.678080pt;}
.yfd{bottom:626.713920pt;}
.y27{bottom:629.894080pt;}
.y13e{bottom:632.005920pt;}
.yb2{bottom:637.231520pt;}
.y92{bottom:637.241280pt;}
.ycd{bottom:637.274880pt;}
.y61{bottom:641.241600pt;}
.yfc{bottom:641.277440pt;}
.y26{bottom:644.457600pt;}
.yb1{bottom:651.954080pt;}
.y91{bottom:651.963840pt;}
.ycc{bottom:651.997440pt;}
.y11e{bottom:655.964160pt;}
.yfb{bottom:656.000000pt;}
.y13d{bottom:657.440960pt;}
.y25{bottom:659.180160pt;}
.y60{bottom:666.676640pt;}
.y90{bottom:666.686400pt;}
.ycb{bottom:666.717440pt;}
.yfa{bottom:670.717440pt;}
.y13c{bottom:672.004480pt;}
.y24{bottom:673.902720pt;}
.y5f{bottom:681.399200pt;}
.y8f{bottom:681.408960pt;}
.yca{bottom:681.440000pt;}
.yf9{bottom:685.440000pt;}
.y23{bottom:688.625280pt;}
.y5e{bottom:695.962720pt;}
.y8e{bottom:695.972480pt;}
.y13b{bottom:697.439520pt;}
.y22{bottom:703.188800pt;}
.yc9{bottom:706.677760pt;}
.y5d{bottom:710.685280pt;}
.yf8{bottom:710.688960pt;}
.y8d{bottom:710.695040pt;}
.y13a{bottom:712.162080pt;}
.y21{bottom:717.911360pt;}
.yc8{bottom:721.400320pt;}
.y5c{bottom:725.407840pt;}
.yf7{bottom:725.411520pt;}
.y8c{bottom:725.417600pt;}
.y20{bottom:732.633920pt;}
.yc7{bottom:735.963840pt;}
.y139{bottom:737.438080pt;}
.y5b{bottom:740.130400pt;}
.yf6{bottom:740.134080pt;}
.y8b{bottom:740.140160pt;}
.y1f{bottom:747.356480pt;}
.yc6{bottom:750.686400pt;}
.y138{bottom:752.160640pt;}
.y5a{bottom:754.693920pt;}
.yf5{bottom:754.697600pt;}
.y8a{bottom:754.703680pt;}
.y1e{bottom:761.920000pt;}
.yc5{bottom:765.408960pt;}
.y59{bottom:769.416480pt;}
.yf4{bottom:769.420160pt;}
.y89{bottom:769.426240pt;}
.y1d{bottom:776.800000pt;}
.y137{bottom:777.436640pt;}
.yc4{bottom:780.131520pt;}
.y58{bottom:784.139040pt;}
.yf3{bottom:784.142720pt;}
.y88{bottom:784.148800pt;}
.y1c{bottom:792.148800pt;}
.y136{bottom:792.159200pt;}
.yc3{bottom:794.695040pt;}
.y57{bottom:798.702560pt;}
.yf2{bottom:798.706240pt;}
.y87{bottom:798.712320pt;}
.y1b{bottom:806.871360pt;}
.yc2{bottom:809.417600pt;}
.y56{bottom:813.425120pt;}
.yf1{bottom:813.428800pt;}
.y86{bottom:813.434880pt;}
.y135{bottom:817.435200pt;}
.y1a{bottom:821.593920pt;}
.y11d{bottom:824.137600pt;}
.yc1{bottom:824.140160pt;}
.y55{bottom:828.147680pt;}
.yf0{bottom:828.151360pt;}
.y85{bottom:828.157440pt;}
.y134{bottom:832.157760pt;}
.y19{bottom:836.157440pt;}
.y11c{bottom:838.860160pt;}
.yc0{bottom:838.862720pt;}
.y54{bottom:842.870240pt;}
.yef{bottom:842.873920pt;}
.y84{bottom:842.880000pt;}
.y18{bottom:850.880000pt;}
.y11b{bottom:853.423680pt;}
.ybf{bottom:853.426240pt;}
.y53{bottom:857.433760pt;}
.yee{bottom:857.437440pt;}
.y17{bottom:865.760000pt;}
.y83{bottom:868.146240pt;}
.ybe{bottom:868.148800pt;}
.y52{bottom:872.156320pt;}
.yed{bottom:872.160000pt;}
.y16{bottom:881.113920pt;}
.y82{bottom:882.868800pt;}
.ybd{bottom:882.871360pt;}
.yec{bottom:886.877440pt;}
.y51{bottom:886.878880pt;}
.y15{bottom:895.836480pt;}
.y81{bottom:897.432320pt;}
.ybc{bottom:897.434880pt;}
.yeb{bottom:901.600000pt;}
.y14{bottom:910.400000pt;}
.y50{bottom:912.154880pt;}
.ybb{bottom:912.157440pt;}
.y13{bottom:925.444000pt;}
.y4f{bottom:926.877440pt;}
.y12{bottom:940.960000pt;}
.y4e{bottom:941.600000pt;}
.y4b{bottom:979.840000pt;}
.y4a{bottom:996.490400pt;}
.y49{bottom:1010.088320pt;}
.y48{bottom:1023.686240pt;}
.yd{bottom:1034.882080pt;}
.y47{bottom:1037.284160pt;}
.yc{bottom:1048.480000pt;}
.y46{bottom:1050.882080pt;}
.yb{bottom:1060.963200pt;}
.y45{bottom:1064.480000pt;}
.ya{bottom:1068.960000pt;}
.h6{height:21.504000pt;}
.h9{height:23.923200pt;}
.h5{height:25.600000pt;}
.hf{height:35.884800pt;}
.h7{height:36.352000pt;}
.ha{height:38.400000pt;}
.he{height:39.243750pt;}
.hb{height:40.441600pt;}
.h11{height:40.451840pt;}
.h12{height:40.465920pt;}
.h10{height:40.665600pt;}
.hd{height:40.733440pt;}
.h8{height:41.941120pt;}
.h4{height:42.496000pt;}
.hc{height:44.304000pt;}
.h3{height:51.200000pt;}
.h2{height:59.904000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:111.832267pt;}
.x2{left:185.120000pt;}
.x5{left:377.120000pt;}
.x6{left:546.080000pt;}
.x3{left:548.800000pt;}
.x4{left:608.485440pt;}
}




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