
    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_f5200474251633a4c6264576.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.717285;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_3be1eb05e678a797ab16916c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956543;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_17a9722e5fa184b5282acf31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944336;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_349c71464fe9bc21b6eb1254.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899902;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_81f1cb49d34429120ea5e07f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_e28f9ad6d14f77c8187fc706.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_69f549aaed2611febf96f438.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_7a6855f1d92f470f254ca49d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_cffcf21033222f029b36bfef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_6da28cd429c156ab42bef4b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d29e4a36140e0c1d37763c19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4b5971fadff2edc31b4a2e3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e3e83aaed3fb38bcc96eacea.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6e5ecce92d06f756a65a80a5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5a66297aac473660db7f3a59.woff2')format("woff");}.fff{font-family:fff;line-height:0.687500;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.216388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216388,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls18{letter-spacing:-2.376000px;}
.ls2d{letter-spacing:-2.160000px;}
.ls34{letter-spacing:-2.159136px;}
.ls47{letter-spacing:-1.905120px;}
.ls2e{letter-spacing:-1.728000px;}
.ls35{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-1.439424px;}
.ls38{letter-spacing:-1.296000px;}
.ls3f{letter-spacing:-0.973728px;}
.ls26{letter-spacing:-0.955584px;}
.ls1c{letter-spacing:-0.936000px;}
.ls31{letter-spacing:-0.931392px;}
.ls2f{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.719712px;}
.lsf{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.508032px;}
.ls20{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.483840px;}
.ls27{letter-spacing:-0.465696px;}
.ls22{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.038304px;}
.ls28{letter-spacing:-0.018144px;}
.ls7{letter-spacing:-0.011987px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017981px;}
.ls46{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.023974px;}
.ls2{letter-spacing:0.029968px;}
.lsc{letter-spacing:0.076608px;}
.ls0{letter-spacing:0.093858px;}
.ls4{letter-spacing:0.100811px;}
.ls1{letter-spacing:0.107763px;}
.ls5{letter-spacing:0.118192px;}
.lse{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.465696px;}
.ls13{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.508032px;}
.ls16{letter-spacing:0.648000px;}
.ls3b{letter-spacing:0.719280px;}
.ls2a{letter-spacing:0.719712px;}
.ls9{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.722304px;}
.ls1b{letter-spacing:1.152000px;}
.ls42{letter-spacing:1.440000px;}
.ls3c{letter-spacing:2.160000px;}
.ls23{letter-spacing:3.600000px;}
.ls12{letter-spacing:4.464000px;}
.ls1f{letter-spacing:5.040000px;}
.ls15{letter-spacing:6.480000px;}
.ls39{letter-spacing:7.920000px;}
.ls29{letter-spacing:9.360000px;}
.ls3e{letter-spacing:9.371520px;}
.ls40{letter-spacing:10.811520px;}
.ls36{letter-spacing:11.664000px;}
.ls48{letter-spacing:12.240000px;}
.ls25{letter-spacing:13.680000px;}
.ls24{letter-spacing:13.691520px;}
.ls21{letter-spacing:15.120000px;}
.ls37{letter-spacing:15.984000px;}
.ls44{letter-spacing:16.560000px;}
.ls43{letter-spacing:18.000000px;}
.ls45{letter-spacing:26.640000px;}
.ls1e{letter-spacing:27.504000px;}
.ls1d{letter-spacing:31.824000px;}
.ls11{letter-spacing:33.264000px;}
.ls41{letter-spacing:35.280000px;}
.ls14{letter-spacing:63.504000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.648000px;}
.ws12{word-spacing:-18.504000px;}
.ws24{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.ws17{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.208000px;}
.ws15{word-spacing:-16.560000px;}
.ws19{word-spacing:-15.768000px;}
.ws1b{word-spacing:-15.628032px;}
.ws21{word-spacing:-15.585696px;}
.ws1d{word-spacing:-15.120000px;}
.ws18{word-spacing:-15.101856px;}
.ws1f{word-spacing:-14.654304px;}
.ws1c{word-spacing:-14.636160px;}
.ws25{word-spacing:-14.188608px;}
.ws20{word-spacing:-14.164416px;}
.ws22{word-spacing:-13.680576px;}
.ws23{word-spacing:-12.960864px;}
.ws3{word-spacing:-0.152954px;}
.ws0{word-spacing:-0.142525px;}
.ws1{word-spacing:-0.135573px;}
.ws2{word-spacing:-0.128621px;}
.ws7{word-spacing:-0.089903px;}
.wsb{word-spacing:-0.083909px;}
.ws4{word-spacing:-0.077916px;}
.ws14{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.059935px;}
.ws9{word-spacing:-0.047948px;}
.wsc{word-spacing:0.000000px;}
.ws8{word-spacing:9.409798px;}
.wsa{word-spacing:10.069083px;}
.ws6{word-spacing:21.139082px;}
._2b{margin-left:-17.280000px;}
._23{margin-left:-3.745652px;}
._b{margin-left:-2.016000px;}
._7{margin-left:-1.008000px;}
._8{width:1.008000px;}
._5{width:2.124616px;}
._4{width:3.182550px;}
._3{width:4.361999px;}
._2{width:6.269203px;}
._c{width:7.333594px;}
._f{width:8.424000px;}
._d{width:9.432000px;}
._1b{width:10.800000px;}
._1e{width:11.952000px;}
._e{width:13.680000px;}
._a{width:15.192000px;}
._9{width:16.200000px;}
._2a{width:17.259840px;}
._1a{width:19.944000px;}
._1d{width:21.456000px;}
._20{width:22.752000px;}
._13{width:23.832000px;}
._11{width:25.056000px;}
._12{width:26.136000px;}
._10{width:27.648000px;}
._1c{width:28.767925px;}
._0{width:29.984075px;}
._22{width:31.896000px;}
._16{width:33.192000px;}
._17{width:34.776000px;}
._15{width:36.072000px;}
._14{width:37.368000px;}
._21{width:38.592000px;}
._25{width:39.888000px;}
._18{width:41.040000px;}
._24{width:42.984000px;}
._26{width:44.352000px;}
._1f{width:46.064196px;}
._29{width:47.607804px;}
._27{width:48.744000px;}
._28{width:50.400000px;}
._2c{width:54.648000px;}
._2d{width:55.800000px;}
._19{width:62.640000px;}
._2e{width:64.080000px;}
._2f{width:69.912000px;}
._6{width:1068.190768px;}
._1{width:1786.896065px;}
.fc2{color:transparent;}
.fc1{color:rgb(92,6,140);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:34.762312px;}
.fs9{font-size:38.880000px;}
.fs3{font-size:39.557113px;}
.fs8{font-size:47.520000px;}
.fs1{font-size:49.146716px;}
.fs0{font-size:53.992931px;}
.fs4{font-size:59.935020px;}
.fsa{font-size:60.480000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:180.000000px;}
.fs7{font-size:191.520000px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.000006px;}
.y43{bottom:4.859970px;}
.y7{bottom:10.498626px;}
.y13{bottom:24.972900px;}
.y6{bottom:28.496269px;}
.y1{bottom:37.495091px;}
.y12{bottom:38.158650px;}
.y11{bottom:50.445300px;}
.y42{bottom:51.818730px;}
.y5{bottom:53.992931px;}
.y41{bottom:56.678694px;}
.y2{bottom:59.992140px;}
.y10{bottom:62.731950px;}
.yf{bottom:75.018750px;}
.y4{bottom:79.489593px;}
.ye{bottom:87.305400px;}
.y3{bottom:97.487237px;}
.yd{bottom:99.592050px;}
.y92{bottom:108.518694px;}
.yc{bottom:111.878700px;}
.y64{bottom:114.278694px;}
.y9c{bottom:117.158694px;}
.y171{bottom:117.518694px;}
.yb{bottom:124.165350px;}
.yc9{bottom:124.358694px;}
.y73{bottom:124.718694px;}
.y72{bottom:125.078694px;}
.y40{bottom:125.438694px;}
.y111{bottom:131.918694px;}
.yd2{bottom:134.438694px;}
.y107{bottom:134.798694px;}
.ya8{bottom:143.078694px;}
.y9b{bottom:143.798694px;}
.y63{bottom:145.238694px;}
.y71{bottom:145.598694px;}
.y17f{bottom:147.758694px;}
.ya7{bottom:148.478694px;}
.y9a{bottom:149.198694px;}
.y91{bottom:155.318694px;}
.yeb{bottom:155.678694px;}
.y3f{bottom:156.758694px;}
.yc6{bottom:161.798694px;}
.y110{bottom:162.878694px;}
.yd1{bottom:165.398694px;}
.y106{bottom:166.118694px;}
.y70{bottom:166.478694px;}
.y120{bottom:166.838694px;}
.ya6{bottom:168.638694px;}
.y17e{bottom:173.678694px;}
.y122{bottom:174.038694px;}
.y62{bottom:176.198694px;}
.y170{bottom:179.438694px;}
.y90{bottom:181.238694px;}
.yc8{bottom:186.278694px;}
.y8f{bottom:186.638694px;}
.y6f{bottom:186.998694px;}
.y3e{bottom:187.718694px;}
.ye2{bottom:189.878694px;}
.y99{bottom:190.958694px;}
.y10f{bottom:193.838694px;}
.ya5{bottom:194.558694px;}
.y8{bottom:195.710100px;}
.yd0{bottom:196.358694px;}
.y105{bottom:197.078694px;}
.y17d{bottom:199.598694px;}
.y8e{bottom:199.958694px;}
.y159{bottom:207.158694px;}
.y61{bottom:207.518694px;}
.y6e{bottom:207.878694px;}
.y16f{bottom:210.398694px;}
.yc5{bottom:211.478694px;}
.y11d{bottom:213.278694px;}
.ye1{bottom:215.798694px;}
.y98{bottom:216.878694px;}
.yc7{bottom:217.238694px;}
.yea{bottom:217.598694px;}
.y3d{bottom:218.678694px;}
.ya4{bottom:220.478694px;}
.y10e{bottom:224.798694px;}
.y17c{bottom:225.518694px;}
.ycf{bottom:227.318694px;}
.y104{bottom:228.038694px;}
.y6d{bottom:228.398694px;}
.y121{bottom:230.918694px;}
.y158{bottom:233.078694px;}
.y60{bottom:238.478694px;}
.y25{bottom:238.641300px;}
.y13c{bottom:239.198694px;}
.y16e{bottom:241.358694px;}
.ye0{bottom:241.718694px;}
.yc4{bottom:242.438694px;}
.y97{bottom:242.798694px;}
.ya3{bottom:246.398694px;}
.y96{bottom:248.198694px;}
.y8d{bottom:248.558694px;}
.ye9{bottom:248.918694px;}
.y6c{bottom:249.278694px;}
.y3c{bottom:249.638694px;}
.y17b{bottom:251.438694px;}
.y14f{bottom:251.798694px;}
.y10d{bottom:255.758694px;}
.yce{bottom:258.638694px;}
.y103{bottom:258.998694px;}
.y24{bottom:259.318950px;}
.ydf{bottom:260.438694px;}
.y128{bottom:265.118694px;}
.y5f{bottom:269.438694px;}
.y6b{bottom:269.798694px;}
.ya2{bottom:272.318694px;}
.y16d{bottom:272.678694px;}
.yc3{bottom:273.398694px;}
.y17a{bottom:277.358694px;}
.y8c{bottom:279.518694px;}
.ye8{bottom:279.878694px;}
.y3b{bottom:280.958694px;}
.y95{bottom:282.398694px;}
.y157{bottom:284.918694px;}
.y10c{bottom:287.078694px;}
.ycd{bottom:289.598694px;}
.y102{bottom:289.958694px;}
.y6a{bottom:290.318694px;}
.y23{bottom:293.182200px;}
.y154{bottom:295.718694px;}
.ya1{bottom:298.238694px;}
.y5e{bottom:300.398694px;}
.y179{bottom:302.918694px;}
.ya0{bottom:303.638694px;}
.yc2{bottom:304.358694px;}
.y8b{bottom:310.478694px;}
.ye7{bottom:310.838694px;}
.y69{bottom:311.198694px;}
.y3a{bottom:311.918694px;}
.y9f{bottom:316.958694px;}
.y10b{bottom:318.038694px;}
.ycc{bottom:320.558694px;}
.y101{bottom:321.278694px;}
.ydd{bottom:324.158694px;}
.y156{bottom:324.518694px;}
.y22{bottom:326.745750px;}
.y178{bottom:328.838694px;}
.y5d{bottom:331.358694px;}
.y68{bottom:331.718694px;}
.y16c{bottom:334.598694px;}
.yc1{bottom:335.678694px;}
.y8a{bottom:341.438694px;}
.ye6{bottom:341.798694px;}
.y39{bottom:342.878694px;}
.y10a{bottom:348.998694px;}
.ydc{bottom:350.078694px;}
.ycb{bottom:351.518694px;}
.y100{bottom:352.238694px;}
.y67{bottom:352.598694px;}
.y177{bottom:354.758694px;}
.y21{bottom:360.009750px;}
.y5c{bottom:362.678694px;}
.y16b{bottom:365.558694px;}
.yc0{bottom:366.638694px;}
.y89{bottom:372.758694px;}
.y66{bottom:373.118694px;}
.y38{bottom:373.838694px;}
.ydb{bottom:375.638694px;}
.y109{bottom:379.958694px;}
.y176{bottom:380.678694px;}
.y14e{bottom:382.838694px;}
.yff{bottom:383.198694px;}
.y20{bottom:393.573450px;}
.y5b{bottom:393.638694px;}
.y65{bottom:393.998694px;}
.y16a{bottom:396.878694px;}
.ybf{bottom:397.598694px;}
.y37{bottom:400.478694px;}
.y13a{bottom:401.558694px;}
.yda{bottom:401.918694px;}
.y88{bottom:403.718694px;}
.ye5{bottom:404.078694px;}
.y175{bottom:406.238694px;}
.yd9{bottom:407.318694px;}
.y108{bottom:411.278694px;}
.y174{bottom:411.638694px;}
.y14d{bottom:413.798694px;}
.yfe{bottom:414.158694px;}
.y5a{bottom:424.598694px;}
.y1f{bottom:427.137000px;}
.y139{bottom:427.478694px;}
.y169{bottom:427.838694px;}
.y11c{bottom:428.558694px;}
.y138{bottom:432.878694px;}
.y87{bottom:434.678694px;}
.ye4{bottom:435.038694px;}
.y173{bottom:438.638694px;}
.y94{bottom:440.798694px;}
.ybe{bottom:442.238694px;}
.y14c{bottom:444.758694px;}
.yfd{bottom:445.478694px;}
.yd8{bottom:448.718694px;}
.y36{bottom:452.318694px;}
.y137{bottom:453.398694px;}
.y59{bottom:455.558694px;}
.ye3{bottom:455.918694px;}
.y136{bottom:458.798694px;}
.y11b{bottom:459.878694px;}
.y86{bottom:465.638694px;}
.ybd{bottom:473.198694px;}
.yd7{bottom:474.278694px;}
.y14b{bottom:475.718694px;}
.y1e{bottom:476.283750px;}
.yfc{bottom:476.438694px;}
.y135{bottom:479.318694px;}
.yd6{bottom:479.678694px;}
.y168{bottom:485.798694px;}
.y58{bottom:486.878694px;}
.y11a{bottom:490.838694px;}
.yd5{bottom:492.998694px;}
.y85{bottom:496.958694px;}
.ybc{bottom:504.158694px;}
.y35{bottom:504.878694px;}
.y134{bottom:505.238694px;}
.y14a{bottom:507.038694px;}
.yfb{bottom:507.398694px;}
.y1d{bottom:512.544450px;}
.y167{bottom:516.758694px;}
.y57{bottom:517.838694px;}
.y119{bottom:521.798694px;}
.yd4{bottom:523.958694px;}
.y84{bottom:527.918694px;}
.y133{bottom:531.158694px;}
.ybb{bottom:535.478694px;}
.y149{bottom:537.998694px;}
.yfa{bottom:538.358694px;}
.y166{bottom:548.078694px;}
.y56{bottom:548.798694px;}
.y1c{bottom:549.104850px;}
.y118{bottom:552.758694px;}
.y132{bottom:557.078694px;}
.y83{bottom:558.878694px;}
.y34{bottom:559.958694px;}
.yba{bottom:566.438694px;}
.y148{bottom:568.958694px;}
.yf9{bottom:569.678694px;}
.y165{bottom:579.038694px;}
.y55{bottom:579.758694px;}
.y131{bottom:582.638694px;}
.y117{bottom:584.078694px;}
.y1b{bottom:585.665100px;}
.y82{bottom:589.838694px;}
.yb9{bottom:597.398694px;}
.y147{bottom:599.918694px;}
.yf8{bottom:600.638694px;}
.y130{bottom:608.558694px;}
.y164{bottom:609.998694px;}
.y54{bottom:611.078694px;}
.y116{bottom:615.038694px;}
.y33{bottom:615.398694px;}
.y9e{bottom:617.198694px;}
.y81{bottom:621.158694px;}
.yf7{bottom:621.518694px;}
.yb7{bottom:628.358694px;}
.y146{bottom:630.878694px;}
.y187{bottom:631.598694px;}
.yb8{bottom:634.478694px;}
.y1a{bottom:635.111550px;}
.y163{bottom:640.958694px;}
.y53{bottom:642.038694px;}
.y115{bottom:645.998694px;}
.y189{bottom:647.078694px;}
.y80{bottom:652.118694px;}
.yf6{bottom:652.478694px;}
.yb6{bottom:659.678694px;}
.y12f{bottom:660.398694px;}
.y144{bottom:662.198694px;}
.y186{bottom:662.558694px;}
.y145{bottom:668.318694px;}
.y32{bottom:670.478694px;}
.y19{bottom:671.372250px;}
.y162{bottom:672.278694px;}
.y52{bottom:672.998694px;}
.y188{bottom:675.878694px;}
.y114{bottom:676.958694px;}
.y172{bottom:679.118694px;}
.y7f{bottom:683.078694px;}
.yf5{bottom:683.438694px;}
.y12e{bottom:686.318694px;}
.yb5{bottom:690.638694px;}
.y143{bottom:693.158694px;}
.y185{bottom:693.878694px;}
.y161{bottom:703.238694px;}
.y51{bottom:703.958694px;}
.y18{bottom:707.932650px;}
.y113{bottom:708.278694px;}
.y13b{bottom:710.078694px;}
.y12d{bottom:712.238694px;}
.y7e{bottom:714.038694px;}
.yf4{bottom:714.398694px;}
.yb4{bottom:721.598694px;}
.y142{bottom:724.118694px;}
.y31{bottom:724.838694px;}
.y160{bottom:734.198694px;}
.y50{bottom:735.278694px;}
.y12c{bottom:738.158694px;}
.y11f{bottom:739.238694px;}
.y12b{bottom:743.558694px;}
.y17{bottom:744.493050px;}
.y7d{bottom:745.358694px;}
.y184{bottom:745.718694px;}
.yb3{bottom:752.558694px;}
.y141{bottom:755.078694px;}
.y12a{bottom:756.878694px;}
.y15f{bottom:765.158694px;}
.y4f{bottom:766.238694px;}
.y183{bottom:766.598694px;}
.y11e{bottom:770.198694px;}
.y30{bottom:770.918694px;}
.y155{bottom:772.358694px;}
.y7c{bottom:776.318694px;}
.yf3{bottom:776.678694px;}
.y16{bottom:778.356300px;}
.yb2{bottom:783.878694px;}
.y140{bottom:786.398694px;}
.y182{bottom:787.118694px;}
.y15e{bottom:796.478694px;}
.y4e{bottom:797.198694px;}
.y127{bottom:801.158694px;}
.y2f{bottom:801.878694px;}
.y9d{bottom:803.318694px;}
.y7b{bottom:807.278694px;}
.yf2{bottom:807.638694px;}
.y181{bottom:807.998694px;}
.y15{bottom:811.919850px;}
.y153{bottom:813.398694px;}
.yb1{bottom:814.838694px;}
.y13f{bottom:817.358694px;}
.y15d{bottom:827.438694px;}
.y4d{bottom:828.158694px;}
.y180{bottom:828.518694px;}
.y126{bottom:832.478694px;}
.y2e{bottom:832.838694px;}
.y7a{bottom:838.238694px;}
.yf1{bottom:838.598694px;}
.y14{bottom:845.483550px;}
.yb0{bottom:845.798694px;}
.y13e{bottom:848.318694px;}
.y15c{bottom:858.398694px;}
.y4c{bottom:859.478694px;}
.y125{bottom:863.438694px;}
.y2d{bottom:863.798694px;}
.y79{bottom:869.558694px;}
.yaf{bottom:876.758694px;}
.ya{bottom:883.242600px;}
.y4b{bottom:890.438694px;}
.y2c{bottom:894.758694px;}
.y93{bottom:896.558694px;}
.y77{bottom:900.518694px;}
.yf0{bottom:900.878694px;}
.y78{bottom:906.638694px;}
.yae{bottom:908.078694px;}
.y15b{bottom:910.598694px;}
.y4a{bottom:921.398694px;}
.y2b{bottom:926.078694px;}
.y129{bottom:927.518694px;}
.y76{bottom:931.478694px;}
.yef{bottom:931.838694px;}
.y152{bottom:937.598694px;}
.yad{bottom:939.038694px;}
.y15a{bottom:941.558694px;}
.y49{bottom:952.358694px;}
.y2a{bottom:957.038694px;}
.y75{bottom:962.438694px;}
.yee{bottom:962.798694px;}
.yac{bottom:969.998694px;}
.y48{bottom:983.678694px;}
.y29{bottom:987.998694px;}
.y13d{bottom:989.798694px;}
.yca{bottom:993.398694px;}
.y74{bottom:993.758694px;}
.yab{bottom:1000.958694px;}
.y28{bottom:1014.638694px;}
.y112{bottom:1020.758694px;}
.y9{bottom:1024.689300px;}
.y151{bottom:1024.718694px;}
.yed{bottom:1025.078694px;}
.yaa{bottom:1032.278694px;}
.y47{bottom:1045.598694px;}
.yec{bottom:1045.958694px;}
.y150{bottom:1055.678694px;}
.y27{bottom:1056.758694px;}
.ya9{bottom:1062.878694px;}
.y124{bottom:1063.238694px;}
.y46{bottom:1076.558694px;}
.y123{bottom:1094.198694px;}
.y45{bottom:1107.878694px;}
.yde{bottom:1113.998694px;}
.y44{bottom:1138.838694px;}
.yd3{bottom:1144.958694px;}
.h15{height:21.960000px;}
.h9{height:24.085801px;}
.h1b{height:25.913672px;}
.ha{height:28.668723px;}
.hb{height:32.623029px;}
.h8{height:34.052339px;}
.h19{height:34.114922px;}
.h6{height:38.069235px;}
.h2{height:38.728328px;}
.h4{height:39.703786px;}
.h5{height:39.730150px;}
.hd{height:41.527243px;}
.h18{height:41.696016px;}
.h1c{height:41.993438px;}
.h14{height:47.988281px;}
.hc{height:49.428832px;}
.h16{height:49.992188px;}
.h1a{height:53.067656px;}
.h1d{height:53.717344px;}
.h13{height:63.175781px;}
.h10{height:63.949219px;}
.h3{height:112.485270px;}
.h12{height:129.706172px;}
.hf{height:159.873047px;}
.h11{height:170.104922px;}
.h7{height:1021.392900px;}
.h17{height:1249.898694px;}
.he{height:1262.834694px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:9.000000px;}
.w7{width:18.360000px;}
.w4{width:697.993350px;}
.w3{width:772.402200px;}
.w6{width:879.977550px;}
.w2{width:892.383150px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x9{left:-22.438140px;}
.x0{left:0.000000px;}
.x6{left:6.490775px;}
.x1e{left:12.935850px;}
.x3{left:27.404053px;}
.xc{left:30.566835px;}
.x2{left:60.257250px;}
.x7{left:79.200440px;}
.xb{left:92.499795px;}
.x8{left:97.460955px;}
.x4{left:116.366619px;}
.x12{left:128.315850px;}
.x22{left:133.355850px;}
.x3a{left:138.395850px;}
.x5{left:147.859860px;}
.x2d{left:151.380000px;}
.x1d{left:155.315850px;}
.xd{left:164.231445px;}
.x15{left:168.275850px;}
.x2e{left:170.435850px;}
.x14{left:174.395850px;}
.x1a{left:181.235850px;}
.x35{left:182.315850px;}
.x1c{left:208.235850px;}
.x3b{left:220.860000px;}
.xe{left:234.277545px;}
.x3c{left:246.035850px;}
.x42{left:252.180000px;}
.x10{left:255.220545px;}
.x28{left:260.100000px;}
.x36{left:263.700000px;}
.x1b{left:267.635850px;}
.x43{left:277.355850px;}
.x29{left:279.155850px;}
.x4e{left:283.500000px;}
.x37{left:288.875850px;}
.x11{left:293.195850px;}
.x4b{left:298.260000px;}
.x2f{left:301.500000px;}
.x4f{left:308.675850px;}
.x1f{left:309.780000px;}
.x4a{left:317.675850px;}
.x30{left:320.555850px;}
.x4c{left:323.435850px;}
.x20{left:328.835850px;}
.x49{left:337.860000px;}
.x21{left:344.315850px;}
.x3d{left:346.475850px;}
.xf{left:348.440895px;}
.x31{left:353.700000px;}
.x16{left:357.635850px;}
.x25{left:363.060000px;}
.x44{left:366.660000px;}
.x2a{left:373.140000px;}
.x26{left:382.115850px;}
.x2b{left:392.195850px;}
.x19{left:397.955850px;}
.x18{left:401.915850px;}
.x47{left:427.140000px;}
.x27{left:438.095850px;}
.xa{left:439.311045px;}
.x17{left:442.775850px;}
.x13{left:446.915850px;}
.x48{left:452.315850px;}
.x45{left:457.740000px;}
.x52{left:471.780000px;}
.x2c{left:473.195850px;}
.x46{left:482.915850px;}
.x53{left:496.955850px;}
.x40{left:501.660000px;}
.x3e{left:512.820000px;}
.x41{left:526.835850px;}
.x3f{left:537.995850px;}
.x38{left:541.620000px;}
.x39{left:566.795850px;}
.x50{left:672.660000px;}
.x51{left:697.835850px;}
.x23{left:710.820000px;}
.x24{left:729.875850px;}
.x4d{left:735.660000px;}
.x32{left:741.420000px;}
.x33{left:760.475850px;}
.x34{left:765.515850px;}
.x1{left:806.129464px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls18{letter-spacing:-2.112000pt;}
.ls2d{letter-spacing:-1.920000pt;}
.ls34{letter-spacing:-1.919232pt;}
.ls47{letter-spacing:-1.693440pt;}
.ls2e{letter-spacing:-1.536000pt;}
.ls35{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-1.279488pt;}
.ls38{letter-spacing:-1.152000pt;}
.ls3f{letter-spacing:-0.865536pt;}
.ls26{letter-spacing:-0.849408pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls31{letter-spacing:-0.827904pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.639744pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.451584pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.430080pt;}
.ls27{letter-spacing:-0.413952pt;}
.ls22{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.034048pt;}
.ls28{letter-spacing:-0.016128pt;}
.ls7{letter-spacing:-0.010655pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015983pt;}
.ls46{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.021310pt;}
.ls2{letter-spacing:0.026638pt;}
.lsc{letter-spacing:0.068096pt;}
.ls0{letter-spacing:0.083430pt;}
.ls4{letter-spacing:0.089610pt;}
.ls1{letter-spacing:0.095789pt;}
.ls5{letter-spacing:0.105059pt;}
.lse{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.413952pt;}
.ls13{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.451584pt;}
.ls16{letter-spacing:0.576000pt;}
.ls3b{letter-spacing:0.639360pt;}
.ls2a{letter-spacing:0.639744pt;}
.ls9{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.642048pt;}
.ls1b{letter-spacing:1.024000pt;}
.ls42{letter-spacing:1.280000pt;}
.ls3c{letter-spacing:1.920000pt;}
.ls23{letter-spacing:3.200000pt;}
.ls12{letter-spacing:3.968000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls39{letter-spacing:7.040000pt;}
.ls29{letter-spacing:8.320000pt;}
.ls3e{letter-spacing:8.330240pt;}
.ls40{letter-spacing:9.610240pt;}
.ls36{letter-spacing:10.368000pt;}
.ls48{letter-spacing:10.880000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls24{letter-spacing:12.170240pt;}
.ls21{letter-spacing:13.440000pt;}
.ls37{letter-spacing:14.208000pt;}
.ls44{letter-spacing:14.720000pt;}
.ls43{letter-spacing:16.000000pt;}
.ls45{letter-spacing:23.680000pt;}
.ls1e{letter-spacing:24.448000pt;}
.ls1d{letter-spacing:28.288000pt;}
.ls11{letter-spacing:29.568000pt;}
.ls41{letter-spacing:31.360000pt;}
.ls14{letter-spacing:56.448000pt;}
.ws11{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.576000pt;}
.ws12{word-spacing:-16.448000pt;}
.ws24{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.ws17{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.016000pt;}
.ws1b{word-spacing:-13.891584pt;}
.ws21{word-spacing:-13.853952pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.423872pt;}
.ws1f{word-spacing:-13.026048pt;}
.ws1c{word-spacing:-13.009920pt;}
.ws25{word-spacing:-12.612096pt;}
.ws20{word-spacing:-12.590592pt;}
.ws22{word-spacing:-12.160512pt;}
.ws23{word-spacing:-11.520768pt;}
.ws3{word-spacing:-0.135959pt;}
.ws0{word-spacing:-0.126689pt;}
.ws1{word-spacing:-0.120509pt;}
.ws2{word-spacing:-0.114329pt;}
.ws7{word-spacing:-0.079913pt;}
.wsb{word-spacing:-0.074586pt;}
.ws4{word-spacing:-0.069258pt;}
.ws14{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.053276pt;}
.ws9{word-spacing:-0.042620pt;}
.wsc{word-spacing:0.000000pt;}
.ws8{word-spacing:8.364265pt;}
.wsa{word-spacing:8.950296pt;}
.ws6{word-spacing:18.790295pt;}
._2b{margin-left:-15.360000pt;}
._23{margin-left:-3.329468pt;}
._b{margin-left:-1.792000pt;}
._7{margin-left:-0.896000pt;}
._8{width:0.896000pt;}
._5{width:1.888548pt;}
._4{width:2.828933pt;}
._3{width:3.877333pt;}
._2{width:5.572625pt;}
._c{width:6.518750pt;}
._f{width:7.488000pt;}
._d{width:8.384000pt;}
._1b{width:9.600000pt;}
._1e{width:10.624000pt;}
._e{width:12.160000pt;}
._a{width:13.504000pt;}
._9{width:14.400000pt;}
._2a{width:15.342080pt;}
._1a{width:17.728000pt;}
._1d{width:19.072000pt;}
._20{width:20.224000pt;}
._13{width:21.184000pt;}
._11{width:22.272000pt;}
._12{width:23.232000pt;}
._10{width:24.576000pt;}
._1c{width:25.571489pt;}
._0{width:26.652511pt;}
._22{width:28.352000pt;}
._16{width:29.504000pt;}
._17{width:30.912000pt;}
._15{width:32.064000pt;}
._14{width:33.216000pt;}
._21{width:34.304000pt;}
._25{width:35.456000pt;}
._18{width:36.480000pt;}
._24{width:38.208000pt;}
._26{width:39.424000pt;}
._1f{width:40.945952pt;}
._29{width:42.318048pt;}
._27{width:43.328000pt;}
._28{width:44.800000pt;}
._2c{width:48.576000pt;}
._2d{width:49.600000pt;}
._19{width:55.680000pt;}
._2e{width:56.960000pt;}
._2f{width:62.144000pt;}
._6{width:949.502905pt;}
._1{width:1588.352057pt;}
.fs2{font-size:30.899833pt;}
.fs9{font-size:34.560000pt;}
.fs3{font-size:35.161878pt;}
.fs8{font-size:42.240000pt;}
.fs1{font-size:43.685970pt;}
.fs0{font-size:47.993717pt;}
.fs4{font-size:53.275573pt;}
.fsa{font-size:53.760000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:160.000000pt;}
.fs7{font-size:170.240000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.000005pt;}
.y43{bottom:4.319973pt;}
.y7{bottom:9.332112pt;}
.y13{bottom:22.198133pt;}
.y6{bottom:25.330017pt;}
.y1{bottom:33.328970pt;}
.y12{bottom:33.918800pt;}
.y11{bottom:44.840267pt;}
.y42{bottom:46.061093pt;}
.y5{bottom:47.993717pt;}
.y41{bottom:50.381062pt;}
.y2{bottom:53.326347pt;}
.y10{bottom:55.761733pt;}
.yf{bottom:66.683333pt;}
.y4{bottom:70.657416pt;}
.ye{bottom:77.604800pt;}
.y3{bottom:86.655322pt;}
.yd{bottom:88.526267pt;}
.y92{bottom:96.461062pt;}
.yc{bottom:99.447733pt;}
.y64{bottom:101.581062pt;}
.y9c{bottom:104.141062pt;}
.y171{bottom:104.461062pt;}
.yb{bottom:110.369200pt;}
.yc9{bottom:110.541062pt;}
.y73{bottom:110.861062pt;}
.y72{bottom:111.181062pt;}
.y40{bottom:111.501062pt;}
.y111{bottom:117.261062pt;}
.yd2{bottom:119.501062pt;}
.y107{bottom:119.821062pt;}
.ya8{bottom:127.181062pt;}
.y9b{bottom:127.821062pt;}
.y63{bottom:129.101062pt;}
.y71{bottom:129.421062pt;}
.y17f{bottom:131.341062pt;}
.ya7{bottom:131.981062pt;}
.y9a{bottom:132.621062pt;}
.y91{bottom:138.061062pt;}
.yeb{bottom:138.381062pt;}
.y3f{bottom:139.341062pt;}
.yc6{bottom:143.821062pt;}
.y110{bottom:144.781062pt;}
.yd1{bottom:147.021062pt;}
.y106{bottom:147.661062pt;}
.y70{bottom:147.981062pt;}
.y120{bottom:148.301062pt;}
.ya6{bottom:149.901062pt;}
.y17e{bottom:154.381062pt;}
.y122{bottom:154.701062pt;}
.y62{bottom:156.621062pt;}
.y170{bottom:159.501062pt;}
.y90{bottom:161.101062pt;}
.yc8{bottom:165.581062pt;}
.y8f{bottom:165.901062pt;}
.y6f{bottom:166.221062pt;}
.y3e{bottom:166.861062pt;}
.ye2{bottom:168.781062pt;}
.y99{bottom:169.741062pt;}
.y10f{bottom:172.301062pt;}
.ya5{bottom:172.941062pt;}
.y8{bottom:173.964533pt;}
.yd0{bottom:174.541062pt;}
.y105{bottom:175.181062pt;}
.y17d{bottom:177.421062pt;}
.y8e{bottom:177.741062pt;}
.y159{bottom:184.141062pt;}
.y61{bottom:184.461062pt;}
.y6e{bottom:184.781062pt;}
.y16f{bottom:187.021062pt;}
.yc5{bottom:187.981062pt;}
.y11d{bottom:189.581062pt;}
.ye1{bottom:191.821062pt;}
.y98{bottom:192.781062pt;}
.yc7{bottom:193.101062pt;}
.yea{bottom:193.421062pt;}
.y3d{bottom:194.381062pt;}
.ya4{bottom:195.981062pt;}
.y10e{bottom:199.821062pt;}
.y17c{bottom:200.461062pt;}
.ycf{bottom:202.061062pt;}
.y104{bottom:202.701062pt;}
.y6d{bottom:203.021062pt;}
.y121{bottom:205.261062pt;}
.y158{bottom:207.181062pt;}
.y60{bottom:211.981062pt;}
.y25{bottom:212.125600pt;}
.y13c{bottom:212.621062pt;}
.y16e{bottom:214.541062pt;}
.ye0{bottom:214.861062pt;}
.yc4{bottom:215.501062pt;}
.y97{bottom:215.821062pt;}
.ya3{bottom:219.021062pt;}
.y96{bottom:220.621062pt;}
.y8d{bottom:220.941062pt;}
.ye9{bottom:221.261062pt;}
.y6c{bottom:221.581062pt;}
.y3c{bottom:221.901062pt;}
.y17b{bottom:223.501062pt;}
.y14f{bottom:223.821062pt;}
.y10d{bottom:227.341062pt;}
.yce{bottom:229.901062pt;}
.y103{bottom:230.221062pt;}
.y24{bottom:230.505733pt;}
.ydf{bottom:231.501062pt;}
.y128{bottom:235.661062pt;}
.y5f{bottom:239.501062pt;}
.y6b{bottom:239.821062pt;}
.ya2{bottom:242.061062pt;}
.y16d{bottom:242.381062pt;}
.yc3{bottom:243.021062pt;}
.y17a{bottom:246.541062pt;}
.y8c{bottom:248.461062pt;}
.ye8{bottom:248.781062pt;}
.y3b{bottom:249.741062pt;}
.y95{bottom:251.021062pt;}
.y157{bottom:253.261062pt;}
.y10c{bottom:255.181062pt;}
.ycd{bottom:257.421062pt;}
.y102{bottom:257.741062pt;}
.y6a{bottom:258.061062pt;}
.y23{bottom:260.606400pt;}
.y154{bottom:262.861062pt;}
.ya1{bottom:265.101062pt;}
.y5e{bottom:267.021062pt;}
.y179{bottom:269.261062pt;}
.ya0{bottom:269.901062pt;}
.yc2{bottom:270.541062pt;}
.y8b{bottom:275.981062pt;}
.ye7{bottom:276.301062pt;}
.y69{bottom:276.621062pt;}
.y3a{bottom:277.261062pt;}
.y9f{bottom:281.741062pt;}
.y10b{bottom:282.701062pt;}
.ycc{bottom:284.941062pt;}
.y101{bottom:285.581062pt;}
.ydd{bottom:288.141062pt;}
.y156{bottom:288.461062pt;}
.y22{bottom:290.440667pt;}
.y178{bottom:292.301062pt;}
.y5d{bottom:294.541062pt;}
.y68{bottom:294.861062pt;}
.y16c{bottom:297.421062pt;}
.yc1{bottom:298.381062pt;}
.y8a{bottom:303.501062pt;}
.ye6{bottom:303.821062pt;}
.y39{bottom:304.781062pt;}
.y10a{bottom:310.221062pt;}
.ydc{bottom:311.181062pt;}
.ycb{bottom:312.461062pt;}
.y100{bottom:313.101062pt;}
.y67{bottom:313.421062pt;}
.y177{bottom:315.341062pt;}
.y21{bottom:320.008667pt;}
.y5c{bottom:322.381062pt;}
.y16b{bottom:324.941062pt;}
.yc0{bottom:325.901062pt;}
.y89{bottom:331.341062pt;}
.y66{bottom:331.661062pt;}
.y38{bottom:332.301062pt;}
.ydb{bottom:333.901062pt;}
.y109{bottom:337.741062pt;}
.y176{bottom:338.381062pt;}
.y14e{bottom:340.301062pt;}
.yff{bottom:340.621062pt;}
.y20{bottom:349.843067pt;}
.y5b{bottom:349.901062pt;}
.y65{bottom:350.221062pt;}
.y16a{bottom:352.781062pt;}
.ybf{bottom:353.421062pt;}
.y37{bottom:355.981062pt;}
.y13a{bottom:356.941062pt;}
.yda{bottom:357.261062pt;}
.y88{bottom:358.861062pt;}
.ye5{bottom:359.181062pt;}
.y175{bottom:361.101062pt;}
.yd9{bottom:362.061062pt;}
.y108{bottom:365.581062pt;}
.y174{bottom:365.901062pt;}
.y14d{bottom:367.821062pt;}
.yfe{bottom:368.141062pt;}
.y5a{bottom:377.421062pt;}
.y1f{bottom:379.677333pt;}
.y139{bottom:379.981062pt;}
.y169{bottom:380.301062pt;}
.y11c{bottom:380.941062pt;}
.y138{bottom:384.781062pt;}
.y87{bottom:386.381062pt;}
.ye4{bottom:386.701062pt;}
.y173{bottom:389.901062pt;}
.y94{bottom:391.821062pt;}
.ybe{bottom:393.101062pt;}
.y14c{bottom:395.341062pt;}
.yfd{bottom:395.981062pt;}
.yd8{bottom:398.861062pt;}
.y36{bottom:402.061062pt;}
.y137{bottom:403.021062pt;}
.y59{bottom:404.941062pt;}
.ye3{bottom:405.261062pt;}
.y136{bottom:407.821062pt;}
.y11b{bottom:408.781062pt;}
.y86{bottom:413.901062pt;}
.ybd{bottom:420.621062pt;}
.yd7{bottom:421.581062pt;}
.y14b{bottom:422.861062pt;}
.y1e{bottom:423.363333pt;}
.yfc{bottom:423.501062pt;}
.y135{bottom:426.061062pt;}
.yd6{bottom:426.381062pt;}
.y168{bottom:431.821062pt;}
.y58{bottom:432.781062pt;}
.y11a{bottom:436.301062pt;}
.yd5{bottom:438.221062pt;}
.y85{bottom:441.741062pt;}
.ybc{bottom:448.141062pt;}
.y35{bottom:448.781062pt;}
.y134{bottom:449.101062pt;}
.y14a{bottom:450.701062pt;}
.yfb{bottom:451.021062pt;}
.y1d{bottom:455.595067pt;}
.y167{bottom:459.341062pt;}
.y57{bottom:460.301062pt;}
.y119{bottom:463.821062pt;}
.yd4{bottom:465.741062pt;}
.y84{bottom:469.261062pt;}
.y133{bottom:472.141062pt;}
.ybb{bottom:475.981062pt;}
.y149{bottom:478.221062pt;}
.yfa{bottom:478.541062pt;}
.y166{bottom:487.181062pt;}
.y56{bottom:487.821062pt;}
.y1c{bottom:488.093200pt;}
.y118{bottom:491.341062pt;}
.y132{bottom:495.181062pt;}
.y83{bottom:496.781062pt;}
.y34{bottom:497.741062pt;}
.yba{bottom:503.501062pt;}
.y148{bottom:505.741062pt;}
.yf9{bottom:506.381062pt;}
.y165{bottom:514.701062pt;}
.y55{bottom:515.341062pt;}
.y131{bottom:517.901062pt;}
.y117{bottom:519.181062pt;}
.y1b{bottom:520.591200pt;}
.y82{bottom:524.301062pt;}
.yb9{bottom:531.021062pt;}
.y147{bottom:533.261062pt;}
.yf8{bottom:533.901062pt;}
.y130{bottom:540.941062pt;}
.y164{bottom:542.221062pt;}
.y54{bottom:543.181062pt;}
.y116{bottom:546.701062pt;}
.y33{bottom:547.021062pt;}
.y9e{bottom:548.621062pt;}
.y81{bottom:552.141062pt;}
.yf7{bottom:552.461062pt;}
.yb7{bottom:558.541062pt;}
.y146{bottom:560.781062pt;}
.y187{bottom:561.421062pt;}
.yb8{bottom:563.981062pt;}
.y1a{bottom:564.543600pt;}
.y163{bottom:569.741062pt;}
.y53{bottom:570.701062pt;}
.y115{bottom:574.221062pt;}
.y189{bottom:575.181062pt;}
.y80{bottom:579.661062pt;}
.yf6{bottom:579.981062pt;}
.yb6{bottom:586.381062pt;}
.y12f{bottom:587.021062pt;}
.y144{bottom:588.621062pt;}
.y186{bottom:588.941062pt;}
.y145{bottom:594.061062pt;}
.y32{bottom:595.981062pt;}
.y19{bottom:596.775333pt;}
.y162{bottom:597.581062pt;}
.y52{bottom:598.221062pt;}
.y188{bottom:600.781062pt;}
.y114{bottom:601.741062pt;}
.y172{bottom:603.661062pt;}
.y7f{bottom:607.181062pt;}
.yf5{bottom:607.501062pt;}
.y12e{bottom:610.061062pt;}
.yb5{bottom:613.901062pt;}
.y143{bottom:616.141062pt;}
.y185{bottom:616.781062pt;}
.y161{bottom:625.101062pt;}
.y51{bottom:625.741062pt;}
.y18{bottom:629.273467pt;}
.y113{bottom:629.581062pt;}
.y13b{bottom:631.181062pt;}
.y12d{bottom:633.101062pt;}
.y7e{bottom:634.701062pt;}
.yf4{bottom:635.021062pt;}
.yb4{bottom:641.421062pt;}
.y142{bottom:643.661062pt;}
.y31{bottom:644.301062pt;}
.y160{bottom:652.621062pt;}
.y50{bottom:653.581062pt;}
.y12c{bottom:656.141062pt;}
.y11f{bottom:657.101062pt;}
.y12b{bottom:660.941062pt;}
.y17{bottom:661.771600pt;}
.y7d{bottom:662.541062pt;}
.y184{bottom:662.861062pt;}
.yb3{bottom:668.941062pt;}
.y141{bottom:671.181062pt;}
.y12a{bottom:672.781062pt;}
.y15f{bottom:680.141062pt;}
.y4f{bottom:681.101062pt;}
.y183{bottom:681.421062pt;}
.y11e{bottom:684.621062pt;}
.y30{bottom:685.261062pt;}
.y155{bottom:686.541062pt;}
.y7c{bottom:690.061062pt;}
.yf3{bottom:690.381062pt;}
.y16{bottom:691.872267pt;}
.yb2{bottom:696.781062pt;}
.y140{bottom:699.021062pt;}
.y182{bottom:699.661062pt;}
.y15e{bottom:707.981062pt;}
.y4e{bottom:708.621062pt;}
.y127{bottom:712.141062pt;}
.y2f{bottom:712.781062pt;}
.y9d{bottom:714.061062pt;}
.y7b{bottom:717.581062pt;}
.yf2{bottom:717.901062pt;}
.y181{bottom:718.221062pt;}
.y15{bottom:721.706533pt;}
.y153{bottom:723.021062pt;}
.yb1{bottom:724.301062pt;}
.y13f{bottom:726.541062pt;}
.y15d{bottom:735.501062pt;}
.y4d{bottom:736.141062pt;}
.y180{bottom:736.461062pt;}
.y126{bottom:739.981062pt;}
.y2e{bottom:740.301062pt;}
.y7a{bottom:745.101062pt;}
.yf1{bottom:745.421062pt;}
.y14{bottom:751.540933pt;}
.yb0{bottom:751.821062pt;}
.y13e{bottom:754.061062pt;}
.y15c{bottom:763.021062pt;}
.y4c{bottom:763.981062pt;}
.y125{bottom:767.501062pt;}
.y2d{bottom:767.821062pt;}
.y79{bottom:772.941062pt;}
.yaf{bottom:779.341062pt;}
.ya{bottom:785.104533pt;}
.y4b{bottom:791.501062pt;}
.y2c{bottom:795.341062pt;}
.y93{bottom:796.941062pt;}
.y77{bottom:800.461062pt;}
.yf0{bottom:800.781062pt;}
.y78{bottom:805.901062pt;}
.yae{bottom:807.181062pt;}
.y15b{bottom:809.421062pt;}
.y4a{bottom:819.021062pt;}
.y2b{bottom:823.181062pt;}
.y129{bottom:824.461062pt;}
.y76{bottom:827.981062pt;}
.yef{bottom:828.301062pt;}
.y152{bottom:833.421062pt;}
.yad{bottom:834.701062pt;}
.y15a{bottom:836.941062pt;}
.y49{bottom:846.541062pt;}
.y2a{bottom:850.701062pt;}
.y75{bottom:855.501062pt;}
.yee{bottom:855.821062pt;}
.yac{bottom:862.221062pt;}
.y48{bottom:874.381062pt;}
.y29{bottom:878.221062pt;}
.y13d{bottom:879.821062pt;}
.yca{bottom:883.021062pt;}
.y74{bottom:883.341062pt;}
.yab{bottom:889.741062pt;}
.y28{bottom:901.901062pt;}
.y112{bottom:907.341062pt;}
.y9{bottom:910.834933pt;}
.y151{bottom:910.861062pt;}
.yed{bottom:911.181062pt;}
.yaa{bottom:917.581062pt;}
.y47{bottom:929.421062pt;}
.yec{bottom:929.741062pt;}
.y150{bottom:938.381062pt;}
.y27{bottom:939.341062pt;}
.ya9{bottom:944.781062pt;}
.y124{bottom:945.101062pt;}
.y46{bottom:956.941062pt;}
.y123{bottom:972.621062pt;}
.y45{bottom:984.781062pt;}
.yde{bottom:990.221062pt;}
.y44{bottom:1012.301062pt;}
.yd3{bottom:1017.741062pt;}
.h15{height:19.520000pt;}
.h9{height:21.409601pt;}
.h1b{height:23.034375pt;}
.ha{height:25.483309pt;}
.hb{height:28.998248pt;}
.h8{height:30.268746pt;}
.h19{height:30.324375pt;}
.h6{height:33.839320pt;}
.h2{height:34.425181pt;}
.h4{height:35.292255pt;}
.h5{height:35.315689pt;}
.hd{height:36.913105pt;}
.h18{height:37.063125pt;}
.h1c{height:37.327500pt;}
.h14{height:42.656250pt;}
.hc{height:43.936740pt;}
.h16{height:44.437500pt;}
.h1a{height:47.171250pt;}
.h1d{height:47.748750pt;}
.h13{height:56.156250pt;}
.h10{height:56.843750pt;}
.h3{height:99.986907pt;}
.h12{height:115.294375pt;}
.hf{height:142.109375pt;}
.h11{height:151.204375pt;}
.h7{height:907.904800pt;}
.h17{height:1111.021062pt;}
.he{height:1122.519728pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:8.000000pt;}
.w7{width:16.320000pt;}
.w4{width:620.438533pt;}
.w3{width:686.579733pt;}
.w6{width:782.202267pt;}
.w2{width:793.229467pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x9{left:-19.945013pt;}
.x0{left:0.000000pt;}
.x6{left:5.769578pt;}
.x1e{left:11.498533pt;}
.x3{left:24.359158pt;}
.xc{left:27.170520pt;}
.x2{left:53.562000pt;}
.x7{left:70.400391pt;}
.xb{left:82.222040pt;}
.x8{left:86.631960pt;}
.x4{left:103.436994pt;}
.x12{left:114.058533pt;}
.x22{left:118.538533pt;}
.x3a{left:123.018533pt;}
.x5{left:131.430987pt;}
.x2d{left:134.560000pt;}
.x1d{left:138.058533pt;}
.xd{left:145.983507pt;}
.x15{left:149.578533pt;}
.x2e{left:151.498533pt;}
.x14{left:155.018533pt;}
.x1a{left:161.098533pt;}
.x35{left:162.058533pt;}
.x1c{left:185.098533pt;}
.x3b{left:196.320000pt;}
.xe{left:208.246707pt;}
.x3c{left:218.698533pt;}
.x42{left:224.160000pt;}
.x10{left:226.862707pt;}
.x28{left:231.200000pt;}
.x36{left:234.400000pt;}
.x1b{left:237.898533pt;}
.x43{left:246.538533pt;}
.x29{left:248.138533pt;}
.x4e{left:252.000000pt;}
.x37{left:256.778533pt;}
.x11{left:260.618533pt;}
.x4b{left:265.120000pt;}
.x2f{left:268.000000pt;}
.x4f{left:274.378533pt;}
.x1f{left:275.360000pt;}
.x4a{left:282.378533pt;}
.x30{left:284.938533pt;}
.x4c{left:287.498533pt;}
.x20{left:292.298533pt;}
.x49{left:300.320000pt;}
.x21{left:306.058533pt;}
.x3d{left:307.978533pt;}
.xf{left:309.725240pt;}
.x31{left:314.400000pt;}
.x16{left:317.898533pt;}
.x25{left:322.720000pt;}
.x44{left:325.920000pt;}
.x2a{left:331.680000pt;}
.x26{left:339.658533pt;}
.x2b{left:348.618533pt;}
.x19{left:353.738533pt;}
.x18{left:357.258533pt;}
.x47{left:379.680000pt;}
.x27{left:389.418533pt;}
.xa{left:390.498707pt;}
.x17{left:393.578533pt;}
.x13{left:397.258533pt;}
.x48{left:402.058533pt;}
.x45{left:406.880000pt;}
.x52{left:419.360000pt;}
.x2c{left:420.618533pt;}
.x46{left:429.258533pt;}
.x53{left:441.738533pt;}
.x40{left:445.920000pt;}
.x3e{left:455.840000pt;}
.x41{left:468.298533pt;}
.x3f{left:478.218533pt;}
.x38{left:481.440000pt;}
.x39{left:503.818533pt;}
.x50{left:597.920000pt;}
.x51{left:620.298533pt;}
.x23{left:631.840000pt;}
.x24{left:648.778533pt;}
.x4d{left:653.920000pt;}
.x32{left:659.040000pt;}
.x33{left:675.978533pt;}
.x34{left:680.458533pt;}
.x1{left:716.559523pt;}
}




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