
    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_b65658746e161322c54bb6de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.158000;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_ac4d329fe9228d42e07f6af2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_abe1452ae1141074c9ce3a8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_003d570bdc16d5b4aa1d6956.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_af080348fe1ecd2308f8e615.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.741000;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_a194b45b862e0f5be93b8b0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870000;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_71e3df2411e705a5cf0c4421.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939000;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_d156f4d087804abef40cb89b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_ef2c2590be7d7cf068e43a6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_018533a5d30e3dd847de790e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239223,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.239229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239229,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.322810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322810,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-3.849821px;}
.ls12{letter-spacing:-3.843834px;}
.lse{letter-spacing:-2.155421px;}
.ls10{letter-spacing:-2.152427px;}
.lsf{letter-spacing:-2.149434px;}
.lsc{letter-spacing:-0.436974px;}
.ls18{letter-spacing:-0.013300px;}
.ls16{letter-spacing:-0.010640px;}
.ls13{letter-spacing:-0.007415px;}
.ls19{letter-spacing:-0.005320px;}
.ls14{letter-spacing:-0.004944px;}
.lsa{letter-spacing:-0.003971px;}
.ls15{letter-spacing:-0.002660px;}
.ls9{letter-spacing:-0.001985px;}
.ls17{letter-spacing:-0.001750px;}
.lsb{letter-spacing:-0.001624px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002472px;}
.ls6{letter-spacing:0.002660px;}
.lsd{letter-spacing:0.002994px;}
.ls4{letter-spacing:0.009887px;}
.ls1{letter-spacing:0.026194px;}
.ls3{letter-spacing:0.042809px;}
.ls0{letter-spacing:0.385280px;}
.ls2{letter-spacing:149.015828px;}
.ls8{letter-spacing:277.448331px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(230,231,232),0 0.015em rgb(230,231,232),0.015em 0 rgb(230,231,232),0 -0.015em  rgb(230,231,232);}
.sc1{text-shadow:-0.015em 0 rgb(237,28,36),0 0.015em rgb(237,28,36),0.015em 0 rgb(237,28,36),0 -0.015em  rgb(237,28,36);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(230,231,232);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(237,28,36);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws58{word-spacing:-11.324905px;}
.ws6{word-spacing:-10.974650px;}
.ws24{word-spacing:-10.552496px;}
.ws9a{word-spacing:-10.453826px;}
.ws4f{word-spacing:-8.442065px;}
.ws99{word-spacing:-8.325550px;}
.ws85{word-spacing:-7.746496px;}
.ws88{word-spacing:-7.736609px;}
.ws1e{word-spacing:-4.545529px;}
.wsc{word-spacing:-4.522179px;}
.ws33{word-spacing:-3.944089px;}
.ws28{word-spacing:-3.891701px;}
.ws5b{word-spacing:-3.864478px;}
.ws77{word-spacing:-3.627083px;}
.ws19{word-spacing:-3.607624px;}
.ws8{word-spacing:-3.432497px;}
.ws5e{word-spacing:-2.891548px;}
.ws6f{word-spacing:-2.724204px;}
.ws9b{word-spacing:-2.547588px;}
.ws7{word-spacing:-2.233847px;}
.ws21{word-spacing:-1.994497px;}
.ws9d{word-spacing:-1.981790px;}
.ws62{word-spacing:-1.930293px;}
.ws9f{word-spacing:-1.880006px;}
.ws70{word-spacing:-1.665656px;}
.ws3d{word-spacing:-1.657809px;}
.ws40{word-spacing:-1.655824px;}
.ws32{word-spacing:-1.631521px;}
.ws1a{word-spacing:-1.630631px;}
.ws26{word-spacing:-1.624037px;}
.ws47{word-spacing:-1.489050px;}
.ws43{word-spacing:-1.477138px;}
.ws66{word-spacing:-1.362102px;}
.ws8b{word-spacing:-1.245350px;}
.ws41{word-spacing:-1.177342px;}
.ws56{word-spacing:-1.125609px;}
.ws46{word-spacing:-1.087999px;}
.ws4b{word-spacing:-1.086014px;}
.ws2{word-spacing:-0.996280px;}
.ws74{word-spacing:-0.961255px;}
.ws6e{word-spacing:-0.875637px;}
.ws2c{word-spacing:-0.853181px;}
.ws16{word-spacing:-0.638242px;}
.ws11{word-spacing:-0.634350px;}
.ws3c{word-spacing:-0.611503px;}
.ws45{word-spacing:-0.607532px;}
.ws82{word-spacing:-0.605581px;}
.ws49{word-spacing:-0.577751px;}
.ws48{word-spacing:-0.555912px;}
.ws4a{word-spacing:-0.468554px;}
.ws87{word-spacing:-0.410312px;}
.ws8d{word-spacing:-0.369729px;}
.ws15{word-spacing:-0.272420px;}
.ws7e{word-spacing:-0.248472px;}
.ws5{word-spacing:-0.225720px;}
.ws42{word-spacing:-0.174715px;}
.ws78{word-spacing:-0.132318px;}
.ws1f{word-spacing:-0.037420px;}
.ws86{word-spacing:-0.004944px;}
.ws8e{word-spacing:-0.002660px;}
.ws3b{word-spacing:-0.001985px;}
.ws0{word-spacing:0.000000px;}
.ws3f{word-spacing:0.001985px;}
.ws8f{word-spacing:0.002660px;}
.ws3e{word-spacing:0.003971px;}
.ws44{word-spacing:0.005956px;}
.ws90{word-spacing:0.007980px;}
.ws89{word-spacing:0.009887px;}
.ws97{word-spacing:0.013300px;}
.ws84{word-spacing:0.014831px;}
.ws92{word-spacing:0.023939px;}
.ws95{word-spacing:0.029259px;}
.ws71{word-spacing:0.093401px;}
.ws83{word-spacing:0.304026px;}
.ws34{word-spacing:0.482721px;}
.ws69{word-spacing:0.770561px;}
.ws76{word-spacing:1.148057px;}
.ws4{word-spacing:1.292051px;}
.ws3{word-spacing:1.358210px;}
.ws1c{word-spacing:1.716249px;}
.wsa0{word-spacing:1.880006px;}
.ws25{word-spacing:1.949592px;}
.ws31{word-spacing:1.953334px;}
.ws5d{word-spacing:1.953643px;}
.ws64{word-spacing:2.420650px;}
.ws9e{word-spacing:2.739181px;}
.wsa1{word-spacing:2.757142px;}
.ws65{word-spacing:2.969382px;}
.ws73{word-spacing:3.043325px;}
.ws2a{word-spacing:3.064714px;}
.ws67{word-spacing:3.074459px;}
.ws2e{word-spacing:3.079682px;}
.ws5c{word-spacing:3.891720px;}
.ws7b{word-spacing:3.900713px;}
.ws4d{word-spacing:3.903529px;}
.ws60{word-spacing:3.981230px;}
.ws2f{word-spacing:4.194804px;}
.wsf{word-spacing:4.347051px;}
.ws17{word-spacing:4.479370px;}
.ws50{word-spacing:4.559314px;}
.ws53{word-spacing:5.059252px;}
.ws63{word-spacing:5.191554px;}
.ws4e{word-spacing:5.375272px;}
.ws22{word-spacing:5.381025px;}
.ws6a{word-spacing:5.681911px;}
.ws23{word-spacing:5.706580px;}
.ws5f{word-spacing:5.903739px;}
.ws68{word-spacing:6.242319px;}
.ws20{word-spacing:6.297820px;}
.ws3a{word-spacing:6.301562px;}
.ws10{word-spacing:6.331828px;}
.wsa2{word-spacing:6.334542px;}
.ws79{word-spacing:6.468039px;}
.ws1{word-spacing:6.545873px;}
.ws59{word-spacing:6.549765px;}
.ws37{word-spacing:6.739378px;}
.ws8a{word-spacing:6.744351px;}
.ws1b{word-spacing:7.277516px;}
.ws6d{word-spacing:7.503236px;}
.ws36{word-spacing:7.817080px;}
.ws7f{word-spacing:8.274421px;}
.ws80{word-spacing:8.295376px;}
.ws9c{word-spacing:8.301364px;}
.ws72{word-spacing:8.697994px;}
.wsb{word-spacing:8.721345px;}
.ws18{word-spacing:8.892580px;}
.ws6b{word-spacing:8.939281px;}
.ws29{word-spacing:8.984590px;}
.ws13{word-spacing:9.301211px;}
.ws39{word-spacing:9.459827px;}
.ws9{word-spacing:9.974478px;}
.wsa{word-spacing:10.706122px;}
.ws55{word-spacing:12.049401px;}
.ws81{word-spacing:12.309848px;}
.ws7d{word-spacing:12.330803px;}
.ws38{word-spacing:12.711642px;}
.wse{word-spacing:13.936249px;}
.ws27{word-spacing:14.320711px;}
.ws35{word-spacing:15.926037px;}
.ws5a{word-spacing:16.072804px;}
.ws12{word-spacing:16.917307px;}
.ws14{word-spacing:18.053689px;}
.ws2d{word-spacing:18.511773px;}
.ws6c{word-spacing:18.847600px;}
.ws57{word-spacing:20.494459px;}
.ws2b{word-spacing:21.101251px;}
.wsd{word-spacing:21.591263px;}
.ws61{word-spacing:21.929842px;}
.ws75{word-spacing:23.731709px;}
.ws52{word-spacing:30.008247px;}
.ws54{word-spacing:32.010993px;}
.ws1d{word-spacing:32.526996px;}
.ws7c{word-spacing:36.651135px;}
.ws51{word-spacing:39.773501px;}
.ws7a{word-spacing:41.414016px;}
.ws93{word-spacing:72.490800px;}
.ws96{word-spacing:87.189518px;}
.ws8c{word-spacing:97.499659px;}
.ws91{word-spacing:106.306363px;}
.ws94{word-spacing:106.833027px;}
.ws4c{word-spacing:115.011976px;}
.ws98{word-spacing:121.356190px;}
.ws30{word-spacing:354.178451px;}
._3{margin-left:-1398.943513px;}
._25{margin-left:-159.162858px;}
._4c{margin-left:-6.657855px;}
._4d{margin-left:-3.826636px;}
._4{margin-left:-2.729436px;}
._1{margin-left:-1.605485px;}
._2{width:1.698288px;}
._18{width:2.729925px;}
._1f{width:4.143198px;}
._17{width:5.205719px;}
._9{width:6.592574px;}
._22{width:7.682556px;}
._24{width:14.963107px;}
._15{width:18.732552px;}
._d{width:22.044240px;}
._b{width:23.111130px;}
._14{width:24.158067px;}
._7{width:25.953881px;}
._20{width:33.371499px;}
._12{width:34.588994px;}
._21{width:35.751694px;}
._11{width:39.826319px;}
._10{width:43.998671px;}
._16{width:50.820374px;}
._13{width:68.026340px;}
._1d{width:74.336411px;}
._3b{width:79.080330px;}
._8{width:88.209726px;}
._41{width:115.158576px;}
._19{width:121.475623px;}
._1b{width:125.687454px;}
._1a{width:127.973383px;}
._26{width:129.997940px;}
._f{width:131.883753px;}
._2d{width:146.451780px;}
._3d{width:152.852479px;}
._2e{width:154.064801px;}
._4a{width:159.358825px;}
._42{width:170.804103px;}
._44{width:181.002236px;}
._3c{width:184.464977px;}
._43{width:186.032145px;}
._48{width:187.759121px;}
._39{width:194.441000px;}
._4b{width:197.733491px;}
._3a{width:199.889372px;}
._3e{width:204.732250px;}
._37{width:205.771548px;}
._47{width:209.708093px;}
._3f{width:214.431436px;}
._1c{width:222.661177px;}
._27{width:224.770115px;}
._34{width:229.475727px;}
._23{width:232.793443px;}
._2a{width:235.615578px;}
._38{width:238.472933px;}
._28{width:243.193995px;}
._31{width:248.730737px;}
._c{width:252.156176px;}
._35{width:253.179905px;}
._33{width:254.712396px;}
._36{width:270.358637px;}
._6{width:279.904178px;}
._2c{width:282.368919px;}
._29{width:287.248786px;}
._40{width:289.697207px;}
._2f{width:301.673364px;}
._32{width:303.826267px;}
._30{width:307.728017px;}
._1e{width:312.219195px;}
._2b{width:337.513884px;}
._a{width:375.627019px;}
._e{width:383.104266px;}
._5{width:405.024759px;}
._45{width:427.500040px;}
._46{width:441.499199px;}
._49{width:456.200577px;}
._0{width:781.277249px;}
.fc6{color:rgb(147,149,152);}
.fc4{color:rgb(237,28,36);}
.fc5{color:rgb(46,48,146);}
.fc3{color:rgb(0,166,80);}
.fc8{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(60,150,73);}
.fc7{color:transparent;}
.fc0{color:rgb(65,151,73);}
.fs7{font-size:16.244400px;}
.fsd{font-size:17.498400px;}
.fsa{font-size:19.458600px;}
.fs5{font-size:19.854000px;}
.fsb{font-size:24.717600px;}
.fsc{font-size:26.599200px;}
.fs8{font-size:29.936400px;}
.fs9{font-size:35.923800px;}
.fs4{font-size:37.420200px;}
.fs2{font-size:38.917200px;}
.fs6{font-size:44.298600px;}
.fs3{font-size:44.904600px;}
.fs1{font-size:52.388400px;}
.fs0{font-size:92.802600px;}
.y0{bottom:0.000000px;}
.y82{bottom:6.883719px;}
.y84{bottom:6.883800px;}
.y81{bottom:6.884227px;}
.yb9{bottom:7.158291px;}
.y113{bottom:13.103962px;}
.yb8{bottom:16.136966px;}
.y83{bottom:17.594400px;}
.y80{bottom:17.594723px;}
.y112{bottom:22.075153px;}
.y7f{bottom:27.490200px;}
.ye2{bottom:30.448650px;}
.y111{bottom:31.046343px;}
.y110{bottom:40.017534px;}
.ye1{bottom:41.832905px;}
.y10f{bottom:48.988725px;}
.ydf{bottom:53.217750px;}
.ye0{bottom:53.380350px;}
.y7d{bottom:54.287552px;}
.y10e{bottom:57.959915px;}
.y75{bottom:61.273050px;}
.yde{bottom:64.602300px;}
.y10d{bottom:66.931106px;}
.y10c{bottom:75.902297px;}
.ydd{bottom:75.987300px;}
.y10b{bottom:84.873487px;}
.ydc{bottom:87.371705px;}
.y10a{bottom:93.844678px;}
.y76{bottom:96.202165px;}
.yda{bottom:98.756400px;}
.ydb{bottom:98.919150px;}
.y109{bottom:102.815869px;}
.yd9{bottom:110.140950px;}
.y108{bottom:111.787059px;}
.y107{bottom:120.758250px;}
.yd8{bottom:121.525650px;}
.y77{bottom:131.293724px;}
.yd7{bottom:132.910355px;}
.y106{bottom:140.786100px;}
.yd5{bottom:144.295050px;}
.yd6{bottom:144.457800px;}
.yd4{bottom:155.679900px;}
.y7e{bottom:162.325050px;}
.y78{bottom:166.222839px;}
.yd3{bottom:167.064150px;}
.ye6{bottom:170.369814px;}
.yd2{bottom:178.449884px;}
.ye5{bottom:182.032326px;}
.yd0{bottom:189.833700px;}
.ye4{bottom:193.694838px;}
.y7c{bottom:195.466008px;}
.ycf{bottom:201.218250px;}
.y79{bottom:201.476842px;}
.ye3{bottom:205.357350px;}
.yce{bottom:212.602800px;}
.ycd{bottom:222.198450px;}
.y2c{bottom:232.314961px;}
.ycc{bottom:235.697550px;}
.y7a{bottom:236.568401px;}
.y2b{bottom:243.977473px;}
.ycb{bottom:247.082250px;}
.y2a{bottom:255.639985px;}
.yca{bottom:258.466500px;}
.y29{bottom:267.376439px;}
.y18{bottom:267.379117px;}
.yc9{bottom:269.851350px;}
.y7b{bottom:271.497922px;}
.yc8{bottom:281.236050px;}
.y28{bottom:291.425323px;}
.yc7{bottom:293.759100px;}
.y27{bottom:303.087835px;}
.yd1{bottom:305.143650px;}
.yc6{bottom:306.282150px;}
.y26{bottom:314.750347px;}
.yc5{bottom:317.667000px;}
.y25{bottom:326.412859px;}
.yc4{bottom:329.051400px;}
.ya0{bottom:334.530378px;}
.y24{bottom:338.075371px;}
.yc3{bottom:340.435950px;}
.y9f{bottom:346.192890px;}
.y23{bottom:349.811825px;}
.y17{bottom:349.813859px;}
.yc2{bottom:351.820950px;}
.y9e{bottom:357.855402px;}
.yc1{bottom:363.205500px;}
.y9d{bottom:369.517914px;}
.y22{bottom:373.860709px;}
.yc0{bottom:374.590200px;}
.ya1{bottom:380.038500px;}
.y9c{bottom:381.979201px;}
.y21{bottom:385.523221px;}
.ybf{bottom:385.974600px;}
.y9b{bottom:393.641713px;}
.y20{bottom:397.185733px;}
.ybe{bottom:397.359600px;}
.y9a{bottom:405.304225px;}
.ybd{bottom:408.744150px;}
.y1f{bottom:408.848245px;}
.y99{bottom:416.966737px;}
.ybc{bottom:420.128700px;}
.y1e{bottom:420.584700px;}
.y16{bottom:420.585754px;}
.y98{bottom:428.629249px;}
.ybb{bottom:431.513250px;}
.y97{bottom:440.291761px;}
.yba{bottom:442.897950px;}
.y1d{bottom:444.633583px;}
.y50{bottom:450.035813px;}
.y96{bottom:451.954273px;}
.y1c{bottom:456.296095px;}
.y4f{bottom:461.249712px;}
.y95{bottom:463.616785px;}
.y1b{bottom:468.032550px;}
.y15{bottom:468.033077px;}
.y4e{bottom:472.463610px;}
.y94{bottom:475.279297px;}
.y4d{bottom:483.677508px;}
.y93{bottom:486.941809px;}
.y1a{bottom:492.081434px;}
.y4c{bottom:494.891407px;}
.y8b{bottom:498.606266px;}
.y19{bottom:503.743945px;}
.y4b{bottom:506.105305px;}
.y2d{bottom:515.476508px;}
.y14{bottom:515.480400px;}
.y92{bottom:515.658810px;}
.y4a{bottom:517.319204px;}
.y91{bottom:527.321322px;}
.y49{bottom:528.533102px;}
.y90{bottom:538.983834px;}
.y13{bottom:539.463416px;}
.y31{bottom:539.751678px;}
.y8f{bottom:550.646346px;}
.y52{bottom:555.456001px;}
.y41{bottom:555.459743px;}
.y8e{bottom:562.308858px;}
.y51{bottom:566.679254px;}
.y40{bottom:566.682996px;}
.y8d{bottom:573.971370px;}
.y3f{bottom:577.896895px;}
.yb7{bottom:578.553609px;}
.y8c{bottom:585.633882px;}
.yb6{bottom:587.524800px;}
.y3e{bottom:589.110793px;}
.y8a{bottom:597.296394px;}
.y48{bottom:600.322820px;}
.y104{bottom:607.438950px;}
.y103{bottom:608.488950px;}
.y47{bottom:611.536719px;}
.y3d{bottom:611.537654px;}
.y89{bottom:614.319750px;}
.y102{bottom:621.264450px;}
.y3c{bottom:622.751553px;}
.y46{bottom:633.963580px;}
.y3b{bottom:633.965451px;}
.y101{bottom:634.039800px;}
.y45{bottom:645.177479px;}
.y3a{bottom:645.179350px;}
.y100{bottom:646.990200px;}
.y87{bottom:648.092435px;}
.y39{bottom:656.393248px;}
.y86{bottom:657.071109px;}
.yff{bottom:659.765700px;}
.y88{bottom:666.041552px;}
.y85{bottom:666.042300px;}
.y44{bottom:667.604340px;}
.y38{bottom:667.607146px;}
.yfd{bottom:671.491050px;}
.yfc{bottom:672.541050px;}
.yfe{bottom:675.516000px;}
.y43{bottom:678.818238px;}
.y37{bottom:678.821045px;}
.y53{bottom:683.660850px;}
.yfb{bottom:685.491150px;}
.y42{bottom:690.032137px;}
.y36{bottom:690.034943px;}
.y74{bottom:691.109120px;}
.y54{bottom:697.982037px;}
.yf9{bottom:698.266650px;}
.yfa{bottom:698.374050px;}
.y30{bottom:701.249777px;}
.yf8{bottom:711.217200px;}
.y105{bottom:711.592650px;}
.y55{bottom:712.112128px;}
.y35{bottom:716.956906px;}
.yf7{bottom:723.992550px;}
.y57{bottom:726.052118px;}
.y34{bottom:728.170805px;}
.yf5{bottom:735.717750px;}
.yf4{bottom:736.767750px;}
.y33{bottom:739.384703px;}
.yf6{bottom:739.742850px;}
.y56{bottom:739.800517px;}
.y73{bottom:743.812272px;}
.yf3{bottom:749.718000px;}
.y32{bottom:750.598602px;}
.y59{bottom:753.551063px;}
.y2f{bottom:761.812500px;}
.yf2{bottom:762.493650px;}
.y5b{bottom:767.299958px;}
.yf1{bottom:775.443900px;}
.y2e{bottom:778.789311px;}
.y5a{bottom:781.621145px;}
.yf0{bottom:788.219250px;}
.y58{bottom:794.987850px;}
.yee{bottom:799.944900px;}
.yed{bottom:800.994750px;}
.yef{bottom:803.970000px;}
.y5f{bottom:809.119041px;}
.yec{bottom:813.945150px;}
.y5c{bottom:822.485250px;}
.yeb{bottom:826.720650px;}
.y5d{bottom:836.615838px;}
.y72{bottom:837.761850px;}
.yea{bottom:839.671200px;}
.y5e{bottom:850.746426px;}
.ye9{bottom:852.446400px;}
.y64{bottom:864.878631px;}
.ye8{bottom:865.396800px;}
.ye7{bottom:873.272100px;}
.y66{bottom:878.436431px;}
.y62{bottom:892.184830px;}
.y61{bottom:906.124820px;}
.yb2{bottom:910.169359px;}
.y65{bottom:920.445510px;}
.yb1{bottom:921.831871px;}
.yb5{bottom:933.493410px;}
.yb0{bottom:933.494383px;}
.y63{bottom:934.194405px;}
.yaf{bottom:945.156895px;}
.y60{bottom:947.943300px;}
.yae{bottom:956.819407px;}
.y67{bottom:961.882800px;}
.yf{bottom:963.644356px;}
.yb4{bottom:968.479973px;}
.yad{bottom:968.481919px;}
.ye{bottom:974.870023px;}
.y68{bottom:976.586176px;}
.yac{bottom:980.144431px;}
.yd{bottom:986.095689px;}
.y12{bottom:986.097635px;}
.y69{bottom:989.952882px;}
.yab{bottom:991.806943px;}
.y6{bottom:1000.124367px;}
.yaa{bottom:1003.469455px;}
.y6a{bottom:1003.892375px;}
.yb3{bottom:1015.129048px;}
.ya9{bottom:1015.131967px;}
.y6b{bottom:1017.259080px;}
.yc{bottom:1020.864315px;}
.ya8{bottom:1026.794479px;}
.y6c{bottom:1031.389172px;}
.yb{bottom:1032.090955px;}
.y11{bottom:1032.091928px;}
.ya7{bottom:1038.456990px;}
.ya{bottom:1043.317594px;}
.y6d{bottom:1045.329162px;}
.ya6{bottom:1050.119502px;}
.y9{bottom:1054.544233px;}
.y6e{bottom:1059.077561px;}
.ya5{bottom:1061.782014px;}
.y10{bottom:1065.769900px;}
.y8{bottom:1065.770872px;}
.y6f{bottom:1072.826456px;}
.ya4{bottom:1073.444526px;}
.y7{bottom:1079.242061px;}
.ya3{bottom:1085.107038px;}
.y70{bottom:1086.765949px;}
.y5{bottom:1092.713250px;}
.ya2{bottom:1096.769550px;}
.y71{bottom:1100.323749px;}
.y4{bottom:1118.192356px;}
.y3{bottom:1133.891850px;}
.y2{bottom:1158.888165px;}
.y1{bottom:1186.538700px;}
.hc{height:11.825923px;}
.h18{height:14.313691px;}
.ha{height:14.453712px;}
.h14{height:18.505129px;}
.h16{height:20.218997px;}
.h17{height:21.758146px;}
.he{height:21.793699px;}
.h19{height:22.173093px;}
.h13{height:23.350392px;}
.hf{height:26.151234px;}
.h11{height:26.152526px;}
.h9{height:27.241906px;}
.h12{height:28.331722px;}
.h10{height:28.332045px;}
.hd{height:28.469516px;}
.h15{height:28.837645px;}
.h7{height:29.187756px;}
.h4{height:30.355416px;}
.hb{height:32.825263px;}
.h6{height:33.274309px;}
.h1a{height:34.055762px;}
.h8{height:35.586610px;}
.h3{height:36.893506px;}
.h5{height:37.010257px;}
.h2{height:49.821368px;}
.h1{height:87.976865px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:10.825050px;}
.x35{left:33.987300px;}
.x34{left:48.507997px;}
.x13{left:62.319773px;}
.x2{left:68.515533px;}
.xe{left:70.788899px;}
.x8{left:80.791365px;}
.x7{left:82.657445px;}
.x1{left:85.913700px;}
.x36{left:94.886400px;}
.x14{left:109.011763px;}
.x3{left:114.915300px;}
.x11{left:125.095900px;}
.x4{left:134.085525px;}
.x10{left:146.682678px;}
.xf{left:158.765661px;}
.x9{left:270.016521px;}
.x12{left:280.595541px;}
.x27{left:297.625050px;}
.x2a{left:298.892549px;}
.x26{left:306.981150px;}
.x24{left:310.069694px;}
.x20{left:316.410806px;}
.x28{left:338.039190px;}
.x29{left:342.275939px;}
.x1f{left:382.481060px;}
.x1e{left:410.169900px;}
.x2d{left:414.541650px;}
.x25{left:418.431213px;}
.x21{left:451.248150px;}
.x23{left:452.547702px;}
.x22{left:455.959432px;}
.x2b{left:473.490300px;}
.x5{left:476.620530px;}
.x1c{left:505.073918px;}
.x1b{left:507.747259px;}
.x16{left:509.083800px;}
.x17{left:510.611565px;}
.x15{left:511.948200px;}
.x18{left:515.385600px;}
.x1d{left:516.722260px;}
.x19{left:519.395612px;}
.x1a{left:524.932892px;}
.x2c{left:529.548835px;}
.xa{left:573.396526px;}
.x2e{left:575.790300px;}
.xc{left:578.844074px;}
.xb{left:581.064300px;}
.x3f{left:592.168201px;}
.x3e{left:596.323373px;}
.x30{left:631.110127px;}
.x31{left:636.317248px;}
.x3b{left:651.732750px;}
.x33{left:657.197334px;}
.xd{left:687.670186px;}
.x3c{left:697.283550px;}
.x37{left:715.370250px;}
.x2f{left:717.392478px;}
.x38{left:760.419150px;}
.x39{left:769.629600px;}
.x32{left:820.849904px;}
.x3a{left:832.764750px;}
.x3d{left:859.197900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-3.422063pt;}
.ls12{letter-spacing:-3.416741pt;}
.lse{letter-spacing:-1.915930pt;}
.ls10{letter-spacing:-1.913269pt;}
.lsf{letter-spacing:-1.910608pt;}
.lsc{letter-spacing:-0.388422pt;}
.ls18{letter-spacing:-0.011822pt;}
.ls16{letter-spacing:-0.009457pt;}
.ls13{letter-spacing:-0.006591pt;}
.ls19{letter-spacing:-0.004729pt;}
.ls14{letter-spacing:-0.004394pt;}
.lsa{letter-spacing:-0.003530pt;}
.ls15{letter-spacing:-0.002364pt;}
.ls9{letter-spacing:-0.001765pt;}
.ls17{letter-spacing:-0.001555pt;}
.lsb{letter-spacing:-0.001444pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002197pt;}
.ls6{letter-spacing:0.002364pt;}
.lsd{letter-spacing:0.002661pt;}
.ls4{letter-spacing:0.008788pt;}
.ls1{letter-spacing:0.023284pt;}
.ls3{letter-spacing:0.038052pt;}
.ls0{letter-spacing:0.342471pt;}
.ls2{letter-spacing:132.458514pt;}
.ls8{letter-spacing:246.620739pt;}
.ws58{word-spacing:-10.066582pt;}
.ws6{word-spacing:-9.755245pt;}
.ws24{word-spacing:-9.379997pt;}
.ws9a{word-spacing:-9.292290pt;}
.ws4f{word-spacing:-7.504058pt;}
.ws99{word-spacing:-7.400489pt;}
.ws85{word-spacing:-6.885774pt;}
.ws88{word-spacing:-6.876986pt;}
.ws1e{word-spacing:-4.040470pt;}
.wsc{word-spacing:-4.019714pt;}
.ws33{word-spacing:-3.505857pt;}
.ws28{word-spacing:-3.459290pt;}
.ws5b{word-spacing:-3.435092pt;}
.ws77{word-spacing:-3.224074pt;}
.ws19{word-spacing:-3.206777pt;}
.ws8{word-spacing:-3.051108pt;}
.ws5e{word-spacing:-2.570265pt;}
.ws6f{word-spacing:-2.421515pt;}
.ws9b{word-spacing:-2.264522pt;}
.ws7{word-spacing:-1.985642pt;}
.ws21{word-spacing:-1.772886pt;}
.ws9d{word-spacing:-1.761591pt;}
.ws62{word-spacing:-1.715816pt;}
.ws9f{word-spacing:-1.671116pt;}
.ws70{word-spacing:-1.480583pt;}
.ws3d{word-spacing:-1.473608pt;}
.ws40{word-spacing:-1.471843pt;}
.ws32{word-spacing:-1.450241pt;}
.ws1a{word-spacing:-1.449449pt;}
.ws26{word-spacing:-1.443588pt;}
.ws47{word-spacing:-1.323600pt;}
.ws43{word-spacing:-1.313011pt;}
.ws66{word-spacing:-1.210757pt;}
.ws8b{word-spacing:-1.106978pt;}
.ws41{word-spacing:-1.046526pt;}
.ws56{word-spacing:-1.000541pt;}
.ws46{word-spacing:-0.967110pt;}
.ws4b{word-spacing:-0.965346pt;}
.ws2{word-spacing:-0.885583pt;}
.ws74{word-spacing:-0.854449pt;}
.ws6e{word-spacing:-0.778344pt;}
.ws2c{word-spacing:-0.758383pt;}
.ws16{word-spacing:-0.567326pt;}
.ws11{word-spacing:-0.563867pt;}
.ws3c{word-spacing:-0.543558pt;}
.ws45{word-spacing:-0.540029pt;}
.ws82{word-spacing:-0.538294pt;}
.ws49{word-spacing:-0.513557pt;}
.ws48{word-spacing:-0.494144pt;}
.ws4a{word-spacing:-0.416493pt;}
.ws87{word-spacing:-0.364722pt;}
.ws8d{word-spacing:-0.328648pt;}
.ws15{word-spacing:-0.242151pt;}
.ws7e{word-spacing:-0.220864pt;}
.ws5{word-spacing:-0.200640pt;}
.ws42{word-spacing:-0.155302pt;}
.ws78{word-spacing:-0.117616pt;}
.ws1f{word-spacing:-0.033262pt;}
.ws86{word-spacing:-0.004394pt;}
.ws8e{word-spacing:-0.002364pt;}
.ws3b{word-spacing:-0.001765pt;}
.ws0{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.001765pt;}
.ws8f{word-spacing:0.002364pt;}
.ws3e{word-spacing:0.003530pt;}
.ws44{word-spacing:0.005294pt;}
.ws90{word-spacing:0.007093pt;}
.ws89{word-spacing:0.008788pt;}
.ws97{word-spacing:0.011822pt;}
.ws84{word-spacing:0.013183pt;}
.ws92{word-spacing:0.021279pt;}
.ws95{word-spacing:0.026008pt;}
.ws71{word-spacing:0.083023pt;}
.ws83{word-spacing:0.270246pt;}
.ws34{word-spacing:0.429085pt;}
.ws69{word-spacing:0.684943pt;}
.ws76{word-spacing:1.020495pt;}
.ws4{word-spacing:1.148490pt;}
.ws3{word-spacing:1.207298pt;}
.ws1c{word-spacing:1.525554pt;}
.wsa0{word-spacing:1.671116pt;}
.ws25{word-spacing:1.732971pt;}
.ws31{word-spacing:1.736297pt;}
.ws5d{word-spacing:1.736572pt;}
.ws64{word-spacing:2.151689pt;}
.ws9e{word-spacing:2.434827pt;}
.wsa1{word-spacing:2.450793pt;}
.ws65{word-spacing:2.639451pt;}
.ws73{word-spacing:2.705178pt;}
.ws2a{word-spacing:2.724191pt;}
.ws67{word-spacing:2.732852pt;}
.ws2e{word-spacing:2.737496pt;}
.ws5c{word-spacing:3.459307pt;}
.ws7b{word-spacing:3.467300pt;}
.ws4d{word-spacing:3.469804pt;}
.ws60{word-spacing:3.538871pt;}
.ws2f{word-spacing:3.728715pt;}
.wsf{word-spacing:3.864046pt;}
.ws17{word-spacing:3.981662pt;}
.ws50{word-spacing:4.052723pt;}
.ws53{word-spacing:4.497113pt;}
.ws63{word-spacing:4.614715pt;}
.ws4e{word-spacing:4.778020pt;}
.ws22{word-spacing:4.783133pt;}
.ws6a{word-spacing:5.050588pt;}
.ws23{word-spacing:5.072516pt;}
.ws5f{word-spacing:5.247768pt;}
.ws68{word-spacing:5.548728pt;}
.ws20{word-spacing:5.598062pt;}
.ws3a{word-spacing:5.601388pt;}
.ws10{word-spacing:5.628292pt;}
.wsa2{word-spacing:5.630704pt;}
.ws79{word-spacing:5.749368pt;}
.ws1{word-spacing:5.818554pt;}
.ws59{word-spacing:5.822013pt;}
.ws37{word-spacing:5.990558pt;}
.ws8a{word-spacing:5.994978pt;}
.ws1b{word-spacing:6.468903pt;}
.ws6d{word-spacing:6.669543pt;}
.ws36{word-spacing:6.948515pt;}
.ws7f{word-spacing:7.355041pt;}
.ws80{word-spacing:7.373668pt;}
.ws9c{word-spacing:7.378990pt;}
.ws72{word-spacing:7.731550pt;}
.wsb{word-spacing:7.752306pt;}
.ws18{word-spacing:7.904516pt;}
.ws6b{word-spacing:7.946027pt;}
.ws29{word-spacing:7.986302pt;}
.ws13{word-spacing:8.267743pt;}
.ws39{word-spacing:8.408735pt;}
.ws9{word-spacing:8.866203pt;}
.wsa{word-spacing:9.516553pt;}
.ws55{word-spacing:10.710579pt;}
.ws81{word-spacing:10.942087pt;}
.ws7d{word-spacing:10.960714pt;}
.ws38{word-spacing:11.299237pt;}
.wse{word-spacing:12.387777pt;}
.ws27{word-spacing:12.729520pt;}
.ws35{word-spacing:14.156477pt;}
.ws5a{word-spacing:14.286937pt;}
.ws12{word-spacing:15.037606pt;}
.ws14{word-spacing:16.047724pt;}
.ws2d{word-spacing:16.454909pt;}
.ws6c{word-spacing:16.753422pt;}
.ws57{word-spacing:18.217297pt;}
.ws2b{word-spacing:18.756667pt;}
.wsd{word-spacing:19.192233pt;}
.ws61{word-spacing:19.493193pt;}
.ws75{word-spacing:21.094852pt;}
.ws52{word-spacing:26.673998pt;}
.ws54{word-spacing:28.454216pt;}
.ws1d{word-spacing:28.912885pt;}
.ws7c{word-spacing:32.578786pt;}
.ws51{word-spacing:35.354223pt;}
.ws7a{word-spacing:36.812458pt;}
.ws93{word-spacing:64.436266pt;}
.ws96{word-spacing:77.501793pt;}
.ws8c{word-spacing:86.666364pt;}
.ws91{word-spacing:94.494545pt;}
.ws94{word-spacing:94.962691pt;}
.ws4c{word-spacing:102.232868pt;}
.ws98{word-spacing:107.872169pt;}
.ws30{word-spacing:314.825290pt;}
._3{margin-left:-1243.505345pt;}
._25{margin-left:-141.478096pt;}
._4c{margin-left:-5.918094pt;}
._4d{margin-left:-3.401454pt;}
._4{margin-left:-2.426165pt;}
._1{margin-left:-1.427098pt;}
._2{width:1.509589pt;}
._18{width:2.426600pt;}
._1f{width:3.682842pt;}
._17{width:4.627306pt;}
._9{width:5.860065pt;}
._22{width:6.828939pt;}
._24{width:13.300539pt;}
._15{width:16.651157pt;}
._d{width:19.594880pt;}
._b{width:20.543226pt;}
._14{width:21.473837pt;}
._7{width:23.070116pt;}
._20{width:29.663555pt;}
._12{width:30.745772pt;}
._21{width:31.779283pt;}
._11{width:35.401172pt;}
._10{width:39.109930pt;}
._16{width:45.173665pt;}
._13{width:60.467858pt;}
._1d{width:66.076810pt;}
._3b{width:70.293627pt;}
._8{width:78.408645pt;}
._41{width:102.363179pt;}
._19{width:107.978332pt;}
._1b{width:111.722181pt;}
._1a{width:113.754118pt;}
._26{width:115.553724pt;}
._f{width:117.230003pt;}
._2d{width:130.179360pt;}
._3d{width:135.868871pt;}
._2e{width:136.946490pt;}
._4a{width:141.652289pt;}
._42{width:151.825869pt;}
._44{width:160.890877pt;}
._3c{width:163.968868pt;}
._43{width:165.361907pt;}
._48{width:166.896996pt;}
._39{width:172.836445pt;}
._4b{width:175.763103pt;}
._3a{width:177.679442pt;}
._3e{width:181.984222pt;}
._37{width:182.908043pt;}
._47{width:186.407194pt;}
._3f{width:190.605721pt;}
._1c{width:197.921046pt;}
._27{width:199.795658pt;}
._34{width:203.978424pt;}
._23{width:206.927505pt;}
._2a{width:209.436070pt;}
._38{width:211.975940pt;}
._28{width:216.172440pt;}
._31{width:221.093988pt;}
._c{width:224.138823pt;}
._35{width:225.048804pt;}
._33{width:226.411019pt;}
._36{width:240.318788pt;}
._6{width:248.803713pt;}
._2c{width:250.994595pt;}
._29{width:255.332254pt;}
._40{width:257.508628pt;}
._2f{width:268.154102pt;}
._32{width:270.067793pt;}
._30{width:273.536016pt;}
._1e{width:277.528173pt;}
._2b{width:300.012342pt;}
._a{width:333.890684pt;}
._e{width:340.537125pt;}
._5{width:360.022008pt;}
._45{width:380.000036pt;}
._46{width:392.443733pt;}
._49{width:405.511624pt;}
._0{width:694.468665pt;}
.fs7{font-size:14.439467pt;}
.fsd{font-size:15.554133pt;}
.fsa{font-size:17.296533pt;}
.fs5{font-size:17.648000pt;}
.fsb{font-size:21.971200pt;}
.fsc{font-size:23.643733pt;}
.fs8{font-size:26.610133pt;}
.fs9{font-size:31.932267pt;}
.fs4{font-size:33.262400pt;}
.fs2{font-size:34.593067pt;}
.fs6{font-size:39.376533pt;}
.fs3{font-size:39.915200pt;}
.fs1{font-size:46.567467pt;}
.fs0{font-size:82.491200pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:6.118861pt;}
.y84{bottom:6.118933pt;}
.y81{bottom:6.119313pt;}
.yb9{bottom:6.362925pt;}
.y113{bottom:11.647966pt;}
.yb8{bottom:14.343970pt;}
.y83{bottom:15.639467pt;}
.y80{bottom:15.639754pt;}
.y112{bottom:19.622358pt;}
.y7f{bottom:24.435733pt;}
.ye2{bottom:27.065467pt;}
.y111{bottom:27.596750pt;}
.y110{bottom:35.571141pt;}
.ye1{bottom:37.184805pt;}
.y10f{bottom:43.545533pt;}
.ydf{bottom:47.304667pt;}
.ye0{bottom:47.449200pt;}
.y7d{bottom:48.255602pt;}
.y10e{bottom:51.519925pt;}
.y75{bottom:54.464933pt;}
.yde{bottom:57.424267pt;}
.y10d{bottom:59.494316pt;}
.y10c{bottom:67.468708pt;}
.ydd{bottom:67.544267pt;}
.y10b{bottom:75.443100pt;}
.ydc{bottom:77.663738pt;}
.y10a{bottom:83.417492pt;}
.y76{bottom:85.513036pt;}
.yda{bottom:87.783467pt;}
.ydb{bottom:87.928133pt;}
.y109{bottom:91.391883pt;}
.yd9{bottom:97.903067pt;}
.y108{bottom:99.366275pt;}
.y107{bottom:107.340667pt;}
.yd8{bottom:108.022800pt;}
.y77{bottom:116.705532pt;}
.yd7{bottom:118.142538pt;}
.y106{bottom:125.143200pt;}
.yd5{bottom:128.262267pt;}
.yd6{bottom:128.406933pt;}
.yd4{bottom:138.382133pt;}
.y7e{bottom:144.288933pt;}
.y78{bottom:147.753635pt;}
.yd3{bottom:148.501467pt;}
.ye6{bottom:151.439835pt;}
.yd2{bottom:158.622119pt;}
.ye5{bottom:161.806512pt;}
.yd0{bottom:168.741067pt;}
.ye4{bottom:172.173189pt;}
.y7c{bottom:173.747563pt;}
.ycf{bottom:178.860667pt;}
.y79{bottom:179.090526pt;}
.ye3{bottom:182.539867pt;}
.yce{bottom:188.980267pt;}
.ycd{bottom:197.509733pt;}
.y2c{bottom:206.502188pt;}
.ycc{bottom:209.508933pt;}
.y7a{bottom:210.283023pt;}
.y2b{bottom:216.868865pt;}
.ycb{bottom:219.628667pt;}
.y2a{bottom:227.235542pt;}
.yca{bottom:229.748000pt;}
.y29{bottom:237.667946pt;}
.y18{bottom:237.670326pt;}
.yc9{bottom:239.867867pt;}
.y7b{bottom:241.331486pt;}
.yc8{bottom:249.987600pt;}
.y28{bottom:259.044732pt;}
.yc7{bottom:261.119200pt;}
.y27{bottom:269.411409pt;}
.yd1{bottom:271.238800pt;}
.yc6{bottom:272.250800pt;}
.y26{bottom:279.778086pt;}
.yc5{bottom:282.370667pt;}
.y25{bottom:290.144764pt;}
.yc4{bottom:292.490133pt;}
.ya0{bottom:297.360336pt;}
.y24{bottom:300.511441pt;}
.yc3{bottom:302.609733pt;}
.y9f{bottom:307.727013pt;}
.y23{bottom:310.943845pt;}
.y17{bottom:310.945653pt;}
.yc2{bottom:312.729733pt;}
.y9e{bottom:318.093691pt;}
.yc1{bottom:322.849333pt;}
.y9d{bottom:328.460368pt;}
.y22{bottom:332.320630pt;}
.yc0{bottom:332.969067pt;}
.ya1{bottom:337.812000pt;}
.y9c{bottom:339.537068pt;}
.y21{bottom:342.687308pt;}
.ybf{bottom:343.088533pt;}
.y9b{bottom:349.903745pt;}
.y20{bottom:353.053985pt;}
.ybe{bottom:353.208533pt;}
.y9a{bottom:360.270422pt;}
.ybd{bottom:363.328133pt;}
.y1f{bottom:363.420662pt;}
.y99{bottom:370.637100pt;}
.ybc{bottom:373.447733pt;}
.y1e{bottom:373.853066pt;}
.y16{bottom:373.854004pt;}
.y98{bottom:381.003777pt;}
.ybb{bottom:383.567333pt;}
.y97{bottom:391.370454pt;}
.yba{bottom:393.687067pt;}
.y1d{bottom:395.229852pt;}
.y50{bottom:400.031834pt;}
.y96{bottom:401.737131pt;}
.y1c{bottom:405.596529pt;}
.y4f{bottom:409.999744pt;}
.y95{bottom:412.103809pt;}
.y1b{bottom:416.028933pt;}
.y15{bottom:416.029402pt;}
.y4e{bottom:419.967653pt;}
.y94{bottom:422.470486pt;}
.y4d{bottom:429.935563pt;}
.y93{bottom:432.837163pt;}
.y1a{bottom:437.405719pt;}
.y4c{bottom:439.903473pt;}
.y8b{bottom:443.205570pt;}
.y19{bottom:447.772396pt;}
.y4b{bottom:449.871383pt;}
.y2d{bottom:458.201341pt;}
.y14{bottom:458.204800pt;}
.y92{bottom:458.363387pt;}
.y4a{bottom:459.839292pt;}
.y91{bottom:468.730064pt;}
.y49{bottom:469.807202pt;}
.y90{bottom:479.096742pt;}
.y13{bottom:479.523036pt;}
.y31{bottom:479.779269pt;}
.y8f{bottom:489.463419pt;}
.y52{bottom:493.738667pt;}
.y41{bottom:493.741993pt;}
.y8e{bottom:499.830096pt;}
.y51{bottom:503.714893pt;}
.y40{bottom:503.718219pt;}
.y8d{bottom:510.196773pt;}
.y3f{bottom:513.686128pt;}
.yb7{bottom:514.269875pt;}
.y8c{bottom:520.563451pt;}
.yb6{bottom:522.244267pt;}
.y3e{bottom:523.654038pt;}
.y8a{bottom:530.930128pt;}
.y48{bottom:533.620285pt;}
.y104{bottom:539.945733pt;}
.y103{bottom:540.879067pt;}
.y47{bottom:543.588195pt;}
.y3d{bottom:543.589026pt;}
.y89{bottom:546.062000pt;}
.y102{bottom:552.235067pt;}
.y3c{bottom:553.556936pt;}
.y46{bottom:563.523182pt;}
.y3b{bottom:563.524846pt;}
.y101{bottom:563.590933pt;}
.y45{bottom:573.491092pt;}
.y3a{bottom:573.492755pt;}
.y100{bottom:575.102400pt;}
.y87{bottom:576.082164pt;}
.y39{bottom:583.460665pt;}
.y86{bottom:584.063208pt;}
.yff{bottom:586.458400pt;}
.y88{bottom:592.036935pt;}
.y85{bottom:592.037600pt;}
.y44{bottom:593.426080pt;}
.y38{bottom:593.428575pt;}
.yfd{bottom:596.880933pt;}
.yfc{bottom:597.814267pt;}
.yfe{bottom:600.458667pt;}
.y43{bottom:603.393990pt;}
.y37{bottom:603.396484pt;}
.y53{bottom:607.698533pt;}
.yfb{bottom:609.325467pt;}
.y42{bottom:613.361899pt;}
.y36{bottom:613.364394pt;}
.y74{bottom:614.319218pt;}
.y54{bottom:620.428477pt;}
.yf9{bottom:620.681467pt;}
.yfa{bottom:620.776933pt;}
.y30{bottom:623.333135pt;}
.yf8{bottom:632.193067pt;}
.y105{bottom:632.526800pt;}
.y55{bottom:632.988559pt;}
.y35{bottom:637.295028pt;}
.yf7{bottom:643.548933pt;}
.y57{bottom:645.379661pt;}
.y34{bottom:647.262938pt;}
.yf5{bottom:653.971333pt;}
.yf4{bottom:654.904667pt;}
.y33{bottom:657.230847pt;}
.yf6{bottom:657.549200pt;}
.y56{bottom:657.600459pt;}
.y73{bottom:661.166464pt;}
.yf3{bottom:666.416000pt;}
.y32{bottom:667.198757pt;}
.y59{bottom:669.823167pt;}
.y2f{bottom:677.166667pt;}
.yf2{bottom:677.772133pt;}
.y5b{bottom:682.044407pt;}
.yf1{bottom:689.283467pt;}
.y2e{bottom:692.257165pt;}
.y5a{bottom:694.774351pt;}
.yf0{bottom:700.639333pt;}
.y58{bottom:706.655867pt;}
.yee{bottom:711.062133pt;}
.yed{bottom:711.995333pt;}
.yef{bottom:714.640000pt;}
.y5f{bottom:719.216925pt;}
.yec{bottom:723.506800pt;}
.y5c{bottom:731.098000pt;}
.yeb{bottom:734.862800pt;}
.y5d{bottom:743.658523pt;}
.y72{bottom:744.677200pt;}
.yea{bottom:746.374400pt;}
.y5e{bottom:756.219046pt;}
.ye9{bottom:757.730133pt;}
.y64{bottom:768.781005pt;}
.ye8{bottom:769.241600pt;}
.ye7{bottom:776.241867pt;}
.y66{bottom:780.832383pt;}
.y62{bottom:793.053182pt;}
.y61{bottom:805.444284pt;}
.yb2{bottom:809.039431pt;}
.y65{bottom:818.173787pt;}
.yb1{bottom:819.406108pt;}
.yb5{bottom:829.771920pt;}
.yb0{bottom:829.772785pt;}
.y63{bottom:830.395027pt;}
.yaf{bottom:840.139462pt;}
.y60{bottom:842.616267pt;}
.yae{bottom:850.506140pt;}
.y67{bottom:855.006933pt;}
.yf{bottom:856.572761pt;}
.yb4{bottom:860.871087pt;}
.yad{bottom:860.872817pt;}
.ye{bottom:866.551131pt;}
.y68{bottom:868.076601pt;}
.yac{bottom:871.239494pt;}
.yd{bottom:876.529501pt;}
.y12{bottom:876.531231pt;}
.y69{bottom:879.958117pt;}
.yab{bottom:881.606171pt;}
.y6{bottom:888.999437pt;}
.yaa{bottom:891.972849pt;}
.y6a{bottom:892.348778pt;}
.yb3{bottom:902.336931pt;}
.ya9{bottom:902.339526pt;}
.y6b{bottom:904.230294pt;}
.yc{bottom:907.434947pt;}
.ya8{bottom:912.706203pt;}
.y6c{bottom:916.790375pt;}
.yb{bottom:917.414182pt;}
.y11{bottom:917.415047pt;}
.ya7{bottom:923.072880pt;}
.ya{bottom:927.393417pt;}
.y6d{bottom:929.181477pt;}
.ya6{bottom:933.439558pt;}
.y9{bottom:937.372652pt;}
.y6e{bottom:941.402276pt;}
.ya5{bottom:943.806235pt;}
.y10{bottom:947.351022pt;}
.y8{bottom:947.351887pt;}
.y6f{bottom:953.623516pt;}
.ya4{bottom:954.172912pt;}
.y7{bottom:959.326277pt;}
.ya3{bottom:964.539589pt;}
.y70{bottom:966.014177pt;}
.y5{bottom:971.300667pt;}
.ya2{bottom:974.906267pt;}
.y71{bottom:978.065555pt;}
.y4{bottom:993.948761pt;}
.y3{bottom:1007.903867pt;}
.y2{bottom:1030.122814pt;}
.y1{bottom:1054.701067pt;}
.hc{height:10.511932pt;}
.h18{height:12.723281pt;}
.ha{height:12.847744pt;}
.h14{height:16.449003pt;}
.h16{height:17.972442pt;}
.h17{height:19.340574pt;}
.he{height:19.372177pt;}
.h19{height:19.709416pt;}
.h13{height:20.755904pt;}
.hf{height:23.245542pt;}
.h11{height:23.246690pt;}
.h9{height:24.215027pt;}
.h12{height:25.183753pt;}
.h10{height:25.184040pt;}
.hd{height:25.306237pt;}
.h15{height:25.633462pt;}
.h7{height:25.944672pt;}
.h4{height:26.982592pt;}
.hb{height:29.178011pt;}
.h6{height:29.577163pt;}
.h1a{height:30.271789pt;}
.h8{height:31.632542pt;}
.h3{height:32.794227pt;}
.h5{height:32.898006pt;}
.h2{height:44.285661pt;}
.h1{height:78.201658pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:9.622267pt;}
.x35{left:30.210933pt;}
.x34{left:43.118220pt;}
.x13{left:55.395354pt;}
.x2{left:60.902696pt;}
.xe{left:62.923466pt;}
.x8{left:71.814547pt;}
.x7{left:73.473284pt;}
.x1{left:76.367733pt;}
.x36{left:84.343467pt;}
.x14{left:96.899345pt;}
.x3{left:102.146933pt;}
.x11{left:111.196356pt;}
.x4{left:119.187134pt;}
.x10{left:130.384603pt;}
.xf{left:141.125032pt;}
.x9{left:240.014685pt;}
.x12{left:249.418259pt;}
.x27{left:264.555600pt;}
.x2a{left:265.682266pt;}
.x26{left:272.872133pt;}
.x24{left:275.617506pt;}
.x20{left:281.254049pt;}
.x28{left:300.479280pt;}
.x29{left:304.245279pt;}
.x1f{left:339.983165pt;}
.x1e{left:364.595467pt;}
.x2d{left:368.481467pt;}
.x25{left:371.938856pt;}
.x21{left:401.109467pt;}
.x23{left:402.264624pt;}
.x22{left:405.297273pt;}
.x2b{left:420.880267pt;}
.x5{left:423.662693pt;}
.x1c{left:448.954594pt;}
.x1b{left:451.330897pt;}
.x16{left:452.518933pt;}
.x17{left:453.876947pt;}
.x15{left:455.065067pt;}
.x18{left:458.120533pt;}
.x1d{left:459.308676pt;}
.x19{left:461.684988pt;}
.x1a{left:466.607015pt;}
.x2c{left:470.710076pt;}
.xa{left:509.685801pt;}
.x2e{left:511.813600pt;}
.xc{left:514.528066pt;}
.xb{left:516.501600pt;}
.x3f{left:526.371734pt;}
.x3e{left:530.065221pt;}
.x30{left:560.986779pt;}
.x31{left:565.615332pt;}
.x3b{left:579.318000pt;}
.x33{left:584.175408pt;}
.xd{left:611.262388pt;}
.x3c{left:619.807600pt;}
.x37{left:635.884667pt;}
.x2f{left:637.682203pt;}
.x38{left:675.928133pt;}
.x39{left:684.115200pt;}
.x32{left:729.644359pt;}
.x3a{left:740.235333pt;}
.x3d{left:763.731467pt;}
}




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