
    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_a138264f661e1d53948e12ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3d7b06a74ba1a6454dbd75f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_149664055d9d521c01971064.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_530f079b09da8c65efc01c75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_b30c2aaf38ba9312368a34b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0e8e8c97e1ebc8a9bac0df64.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_bedd3487edb6787d66f71589.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.022500;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_7fcdcbcd1a46b7e0b90b1bc4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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_c8b73ac485396359f8b72880.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020020;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_5a52d9b37ad0a89d504df3f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_f8591e0f30977de1d9cf8c24.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_c8660df6fff54fee343f5f1b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.020996;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_df2fda5847cc939be1b53467.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.020996;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_2b90cc06aaa2300fad8bbf05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999512;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_958117dd669f092d998af4c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-80.220000px;}
.v3{vertical-align:-43.200000px;}
.ve{vertical-align:-35.280000px;}
.v2{vertical-align:-32.400000px;}
.vb{vertical-align:-30.960000px;}
.v9{vertical-align:-23.040000px;}
.v4{vertical-align:-20.160000px;}
.v6{vertical-align:-17.280000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.340000px;}
.v8{vertical-align:45.960000px;}
.vd{vertical-align:48.240000px;}
.v5{vertical-align:67.140000px;}
.va{vertical-align:115.056000px;}
.ls26{letter-spacing:-4.752000px;}
.ls36{letter-spacing:-1.446000px;}
.ls33{letter-spacing:-0.642000px;}
.ls46{letter-spacing:-0.596400px;}
.ls18{letter-spacing:-0.388800px;}
.ls1a{letter-spacing:-0.348600px;}
.ls48{letter-spacing:-0.298200px;}
.ls40{letter-spacing:-0.295800px;}
.ls43{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.245400px;}
.ls35{letter-spacing:-0.211800px;}
.ls31{letter-spacing:-0.204600px;}
.ls2c{letter-spacing:-0.197400px;}
.ls17{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.132600px;}
.ls38{letter-spacing:-0.128400px;}
.ls34{letter-spacing:-0.121200px;}
.lse{letter-spacing:-0.117600px;}
.lsf{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.090600px;}
.ls30{letter-spacing:-0.072000px;}
.ls3f{letter-spacing:-0.064200px;}
.ls16{letter-spacing:-0.057000px;}
.ls4{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.037440px;}
.ls15{letter-spacing:-0.004032px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.003606px;}
.ls1d{letter-spacing:0.023040px;}
.ls44{letter-spacing:0.043800px;}
.ls11{letter-spacing:0.046680px;}
.ls39{letter-spacing:0.050400px;}
.ls24{letter-spacing:0.090600px;}
.ls12{letter-spacing:0.101400px;}
.ls25{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.120960px;}
.ls47{letter-spacing:0.123600px;}
.ls45{letter-spacing:0.123840px;}
.ls23{letter-spacing:0.181200px;}
.ls2d{letter-spacing:0.200400px;}
.ls2e{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.232200px;}
.ls1f{letter-spacing:0.241920px;}
.ls19{letter-spacing:0.244800px;}
.lsc{letter-spacing:0.267600px;}
.ls1e{letter-spacing:0.281856px;}
.ls20{letter-spacing:0.282240px;}
.ls27{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.316800px;}
.ls2b{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.348600px;}
.ls32{letter-spacing:19.046880px;}
.lsa{letter-spacing:23.495040px;}
.ls3b{letter-spacing:32.414496px;}
.ls3c{letter-spacing:33.146496px;}
.ls28{letter-spacing:37.560960px;}
.ls42{letter-spacing:39.456000px;}
.ls41{letter-spacing:39.817440px;}
.ls1{letter-spacing:48.481920px;}
.ls22{letter-spacing:119.520000px;}
.ls1b{letter-spacing:122.133600px;}
.ls14{letter-spacing:122.145600px;}
.ls1c{letter-spacing:122.184000px;}
.ls13{letter-spacing:122.196000px;}
.ls9{letter-spacing:123.753600px;}
.ls5{letter-spacing:123.804000px;}
.ls3{letter-spacing:124.956000px;}
.ls29{letter-spacing:125.013600px;}
.ls2{letter-spacing:125.064000px;}
.ls7{letter-spacing:127.785600px;}
.ls6{letter-spacing:127.836000px;}
.ls10{letter-spacing:395.450688px;}
.ls2a{letter-spacing:396.371520px;}
.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;}
}
.wsd{word-spacing:-128.304000px;}
.ws30{word-spacing:-120.290400px;}
.ws13{word-spacing:-60.048000px;}
.ws10{word-spacing:-48.839040px;}
.ws1e{word-spacing:-44.435520px;}
.ws1f{word-spacing:-44.230920px;}
.ws37{word-spacing:-40.072032px;}
.ws34{word-spacing:-40.032000px;}
.ws36{word-spacing:-39.744000px;}
.ws14{word-spacing:-36.810480px;}
.wsa{word-spacing:-36.770712px;}
.wsb{word-spacing:-36.665280px;}
.ws16{word-spacing:-36.629280px;}
.ws5{word-spacing:-36.538680px;}
.ws1c{word-spacing:-35.985312px;}
.ws12{word-spacing:-35.977080px;}
.wsc{word-spacing:-35.913312px;}
.ws31{word-spacing:-35.668512px;}
.ws17{word-spacing:-35.651520px;}
.ws0{word-spacing:-35.628480px;}
.wse{word-spacing:-35.611512px;}
.ws1d{word-spacing:-35.596512px;}
.wsf{word-spacing:-35.279880px;}
.ws28{word-spacing:-34.562166px;}
.ws27{word-spacing:-34.558560px;}
.ws2c{word-spacing:-33.698952px;}
.ws2{word-spacing:-33.466752px;}
.ws29{word-spacing:-33.426720px;}
.ws15{word-spacing:-26.621280px;}
.ws25{word-spacing:-24.280320px;}
.ws24{word-spacing:-24.276120px;}
.ws22{word-spacing:-24.226152px;}
.ws23{word-spacing:-22.991952px;}
.ws3b{word-spacing:-22.741680px;}
.ws3a{word-spacing:-22.701912px;}
.ws3c{word-spacing:-22.658112px;}
.ws38{word-spacing:-22.618080px;}
.ws39{word-spacing:-22.021680px;}
.ws1b{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.016000px;}
.ws20{word-spacing:-19.070784px;}
.ws11{word-spacing:-18.454752px;}
.ws7{word-spacing:-18.414720px;}
.ws21{word-spacing:-18.396240px;}
.ws9{word-spacing:-17.814240px;}
.ws3{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.560000px;}
.ws1a{word-spacing:-15.012000px;}
.ws2a{word-spacing:-1.559280px;}
.ws2e{word-spacing:-1.054080px;}
.ws2b{word-spacing:-0.899136px;}
.ws2d{word-spacing:-0.706080px;}
.ws26{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.128160px;}
.ws1{word-spacing:0.000000px;}
.ws2f{word-spacing:0.115872px;}
.ws6{word-spacing:45.318720px;}
.ws32{word-spacing:73.416960px;}
.ws33{word-spacing:73.496952px;}
.ws19{word-spacing:100.464000px;}
.ws35{word-spacing:4912.316520px;}
._1b{margin-left:-10.785600px;}
._14{margin-left:-8.959680px;}
._11{margin-left:-6.200640px;}
._1a{margin-left:-4.784928px;}
._6{margin-left:-2.841600px;}
._0{margin-left:-1.152576px;}
._4{width:1.272000px;}
._2{width:2.857584px;}
._1c{width:3.869088px;}
._1d{width:20.116896px;}
._8{width:32.250432px;}
._5{width:34.253472px;}
._12{width:37.753728px;}
._15{width:39.945600px;}
._16{width:41.034096px;}
._17{width:43.815360px;}
._18{width:63.850752px;}
._19{width:65.056800px;}
._b{width:67.260000px;}
._3{width:81.504000px;}
._1{width:82.528272px;}
._a{width:84.960000px;}
._10{width:119.520000px;}
._c{width:131.880000px;}
._13{width:396.371520px;}
._d{width:414.949536px;}
._9{width:717.270672px;}
._f{width:975.104256px;}
._e{width:1059.288672px;}
._7{width:1196.922720px;}
.fc10{color:rgb(0,115,184);}
.fce{color:rgb(127,127,127);}
.fc0{color:rgb(93,108,116);}
.fc2{color:rgb(0,10,16);}
.fc6{color:rgb(102,99,105);}
.fc7{color:transparent;}
.fcf{color:rgb(119,189,64);}
.fc1{color:rgb(64,170,155);}
.fcd{color:rgb(75,75,75);}
.fc3{color:rgb(121,11,26);}
.fc4{color:rgb(0,0,0);}
.fc11{color:rgb(118,118,118);}
.fc8{color:rgb(89,89,89);}
.fc9{color:rgb(37,150,190);}
.fca{color:rgb(181,181,181);}
.fcb{color:rgb(255,255,255);}
.fcc{color:rgb(13,13,13);}
.fc5{color:rgb(0,12,32);}
.fs1d{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fs1b{font-size:54.000000px;}
.fsf{font-size:56.160000px;}
.fs9{font-size:59.760000px;}
.fs13{font-size:64.080000px;}
.fs11{font-size:66.240000px;}
.fs16{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs22{font-size:81.360000px;}
.fs23{font-size:81.504000px;}
.fse{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs17{font-size:84.960000px;}
.fsb{font-size:87.840000px;}
.fs12{font-size:95.760000px;}
.fsd{font-size:117.360000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fs3{font-size:128.160000px;}
.fs14{font-size:128.304000px;}
.fsa{font-size:131.760000px;}
.fsc{font-size:131.904000px;}
.fs18{font-size:144.000000px;}
.fs19{font-size:144.144000px;}
.fs1c{font-size:159.840000px;}
.fs2{font-size:159.984000px;}
.fs1f{font-size:167.760000px;}
.fs21{font-size:167.904000px;}
.fs4{font-size:175.680000px;}
.fs15{font-size:175.824000px;}
.fs20{font-size:192.240000px;}
.fs1a{font-size:216.000000px;}
.fs1e{font-size:239.760000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.904000px;}
.y5c{bottom:5.910000px;}
.y47{bottom:5.940000px;}
.y4b{bottom:5.970000px;}
.y5f{bottom:6.012000px;}
.y62{bottom:6.015000px;}
.y59{bottom:6.090000px;}
.y7b{bottom:10.440000px;}
.y98{bottom:22.428000px;}
.y97{bottom:23.688000px;}
.y52{bottom:24.810000px;}
.y46{bottom:24.840000px;}
.y4a{bottom:24.870000px;}
.y5e{bottom:24.912000px;}
.y61{bottom:24.915000px;}
.y58{bottom:24.990000px;}
.y65{bottom:25.050000px;}
.y36{bottom:28.440000px;}
.yde{bottom:30.672000px;}
.y28{bottom:32.796000px;}
.y33{bottom:33.048000px;}
.y4f{bottom:34.560000px;}
.y4c{bottom:35.100000px;}
.y44{bottom:40.896000px;}
.y43{bottom:40.932000px;}
.y64{bottom:43.950000px;}
.ycc{bottom:48.564000px;}
.ydd{bottom:48.672000px;}
.y96{bottom:48.888000px;}
.y14{bottom:48.924000px;}
.y15{bottom:51.192000px;}
.y7{bottom:51.336000px;}
.y34{bottom:51.444000px;}
.y100{bottom:58.788000px;}
.y29{bottom:59.688000px;}
.y9a{bottom:61.164000px;}
.y5d{bottom:64.980000px;}
.y8b{bottom:68.580000px;}
.y21{bottom:69.084000px;}
.y42{bottom:69.732000px;}
.y95{bottom:74.088000px;}
.y7e{bottom:80.460000px;}
.yff{bottom:83.088000px;}
.yaa{bottom:84.456000px;}
.y5a{bottom:85.104000px;}
.y13{bottom:90.720000px;}
.ya9{bottom:93.456000px;}
.ya8{bottom:102.456000px;}
.yb6{bottom:104.832000px;}
.ya7{bottom:111.456000px;}
.yea{bottom:111.564000px;}
.y20{bottom:112.644000px;}
.yfe{bottom:114.948000px;}
.ya6{bottom:120.456000px;}
.y12{bottom:126.756000px;}
.yb5{bottom:130.068000px;}
.y3b{bottom:132.264000px;}
.y50{bottom:132.270000px;}
.yb3{bottom:132.300000px;}
.y2a{bottom:134.208000px;}
.yda{bottom:137.736000px;}
.ye0{bottom:138.564000px;}
.yfd{bottom:139.248000px;}
.ya2{bottom:139.896000px;}
.y51{bottom:142.920000px;}
.y72{bottom:143.676000px;}
.y4e{bottom:151.920000px;}
.ye9{bottom:154.770000px;}
.yb4{bottom:155.265000px;}
.y1f{bottom:156.210000px;}
.ydf{bottom:156.570000px;}
.y92{bottom:157.170000px;}
.yb2{bottom:157.500000px;}
.y11{bottom:162.750000px;}
.y60{bottom:163.260000px;}
.y4d{bottom:170.280000px;}
.yfc{bottom:171.105000px;}
.y45{bottom:177.120000px;}
.yd9{bottom:183.630000px;}
.ya1{bottom:185.790000px;}
.y71{bottom:186.870000px;}
.y1e{bottom:192.210000px;}
.y3a{bottom:197.250000px;}
.y10{bottom:198.750000px;}
.y2e{bottom:202.170000px;}
.yfb{bottom:202.830000px;}
.y91{bottom:203.070000px;}
.y5{bottom:204.150000px;}
.ye8{bottom:205.530000px;}
.y8a{bottom:211.530000px;}
.y2b{bottom:218.310000px;}
.y55{bottom:223.125000px;}
.yfa{bottom:227.130000px;}
.y1d{bottom:228.240000px;}
.y48{bottom:228.960000px;}
.yd8{bottom:229.530000px;}
.y49{bottom:235.260000px;}
.y30{bottom:240.120000px;}
.y54{bottom:242.025000px;}
.y2f{bottom:248.430000px;}
.y90{bottom:248.970000px;}
.y4{bottom:250.050000px;}
.ya0{bottom:253.470000px;}
.y84{bottom:256.830000px;}
.yf9{bottom:258.990000px;}
.y7a{bottom:261.150000px;}
.y39{bottom:262.440000px;}
.y89{bottom:268.950000px;}
.y1c{bottom:271.620000px;}
.yd7{bottom:275.475000px;}
.y70{bottom:281.055000px;}
.yd4{bottom:281.265000px;}
.yf8{bottom:283.290000px;}
.y7d{bottom:284.580000px;}
.y63{bottom:285.300000px;}
.y105{bottom:285.585000px;}
.yf{bottom:285.735000px;}
.y5b{bottom:287.640000px;}
.y83{bottom:296.460000px;}
.y79{bottom:297.150000px;}
.y32{bottom:297.900000px;}
.y9f{bottom:299.415000px;}
.ye7{bottom:302.220000px;}
.y2c{bottom:302.400000px;}
.y1b{bottom:307.620000px;}
.y6a{bottom:308.520000px;}
.yf7{bottom:315.150000px;}
.y31{bottom:317.700000px;}
.yd6{bottom:321.375000px;}
.ye{bottom:321.735000px;}
.yc7{bottom:321.915000px;}
.y6f{bottom:324.255000px;}
.y88{bottom:326.415000px;}
.y38{bottom:327.600000px;}
.y104{bottom:331.485000px;}
.y8f{bottom:338.475000px;}
.ya5{bottom:338.970000px;}
.y78{bottom:340.530000px;}
.y9e{bottom:345.315000px;}
.ye6{bottom:345.420000px;}
.y56{bottom:346.320000px;}
.yf6{bottom:346.830000px;}
.y1a{bottom:351.900000px;}
.ycb{bottom:357.690000px;}
.yd{bottom:357.735000px;}
.y69{bottom:358.380000px;}
.yd3{bottom:363.930000px;}
.yd5{bottom:367.275000px;}
.yf5{bottom:371.160000px;}
.y66{bottom:372.420000px;}
.y87{bottom:376.275000px;}
.y103{bottom:377.385000px;}
.ybe{bottom:382.350000px;}
.y3{bottom:382.395000px;}
.y2d{bottom:386.070000px;}
.ya4{bottom:387.075000px;}
.y27{bottom:387.870000px;}
.yc6{bottom:393.915000px;}
.ye5{bottom:396.000000px;}
.y6e{bottom:396.975000px;}
.yca{bottom:398.055000px;}
.y67{bottom:399.420000px;}
.yf4{bottom:403.020000px;}
.yae{bottom:407.985000px;}
.y3f{bottom:408.270000px;}
.yd2{bottom:410.730000px;}
.y57{bottom:410.760000px;}
.y9d{bottom:413.175000px;}
.y8e{bottom:413.535000px;}
.y68{bottom:415.830000px;}
.ybd{bottom:418.350000px;}
.yb1{bottom:422.070000px;}
.y102{bottom:423.330000px;}
.y19{bottom:425.055000px;}
.yc5{bottom:429.915000px;}
.y77{bottom:431.820000px;}
.y86{bottom:433.725000px;}
.yf3{bottom:434.880000px;}
.ya3{bottom:435.135000px;}
.yc{bottom:437.325000px;}
.yc9{bottom:438.375000px;}
.y2{bottom:440.895000px;}
.y82{bottom:441.000000px;}
.y26{bottom:441.285000px;}
.yb0{bottom:447.270000px;}
.ybc{bottom:454.350000px;}
.yd1{bottom:457.530000px;}
.yad{bottom:458.430000px;}
.y9c{bottom:459.105000px;}
.yf2{bottom:459.180000px;}
.y101{bottom:461.670000px;}
.y3e{bottom:465.690000px;}
.yc4{bottom:465.945000px;}
.y25{bottom:466.485000px;}
.y6d{bottom:469.545000px;}
.y76{bottom:471.420000px;}
.yaf{bottom:472.470000px;}
.yb{bottom:473.325000px;}
.y8d{bottom:475.845000px;}
.y18{bottom:486.825000px;}
.y73{bottom:489.525000px;}
.ybb{bottom:490.350000px;}
.yf1{bottom:490.860000px;}
.y85{bottom:491.145000px;}
.ye4{bottom:492.690000px;}
.y106{bottom:493.530000px;}
.y81{bottom:495.000000px;}
.yc8{bottom:497.595000px;}
.yd0{bottom:504.360000px;}
.y9b{bottom:505.005000px;}
.yac{bottom:508.830000px;}
.ya{bottom:509.325000px;}
.yf0{bottom:515.190000px;}
.y1{bottom:520.305000px;}
.y3d{bottom:523.110000px;}
.yba{bottom:526.395000px;}
.y7c{bottom:531.360000px;}
.ye3{bottom:535.890000px;}
.yc3{bottom:537.945000px;}
.y23{bottom:539.850000px;}
.y6c{bottom:542.085000px;}
.y9{bottom:545.325000px;}
.yef{bottom:547.050000px;}
.y17{bottom:548.745000px;}
.y80{bottom:549.030000px;}
.y8c{bottom:550.905000px;}
.ycf{bottom:551.160000px;}
.yb9{bottom:562.395000px;}
.y75{bottom:565.770000px;}
.yee{bottom:571.350000px;}
.yc2{bottom:573.945000px;}
.y3c{bottom:580.575000px;}
.y6b{bottom:585.285000px;}
.y37{bottom:585.975000px;}
.ye2{bottom:586.515000px;}
.y16{bottom:588.345000px;}
.y7f{bottom:588.630000px;}
.y8{bottom:589.245000px;}
.y35{bottom:597.855000px;}
.y22{bottom:598.710000px;}
.yce{bottom:602.100000px;}
.yed{bottom:603.210000px;}
.y74{bottom:605.370000px;}
.ye1{bottom:609.915000px;}
.yc1{bottom:609.990000px;}
.yc0{bottom:625.860000px;}
.yec{bottom:627.510000px;}
.yeb{bottom:651.810000px;}
.y99{bottom:658.545000px;}
.y93{bottom:663.330000px;}
.y94{bottom:665.895000px;}
.y41{bottom:668.340000px;}
.yab{bottom:671.220000px;}
.ydc{bottom:671.295000px;}
.ybf{bottom:680.070000px;}
.y6{bottom:689.040000px;}
.ycd{bottom:691.950000px;}
.yb8{bottom:693.105000px;}
.y24{bottom:694.695000px;}
.ydb{bottom:716.295000px;}
.y40{bottom:721.110000px;}
.yb7{bottom:721.980000px;}
.h22{height:30.077578px;}
.h16{height:43.020000px;}
.h20{height:56.320312px;}
.h1f{height:58.660313px;}
.h19{height:62.100000px;}
.h9{height:62.327813px;}
.hf{height:69.086250px;}
.h1a{height:69.236437px;}
.h6{height:75.093750px;}
.h18{height:81.360000px;}
.h26{height:83.787539px;}
.h27{height:83.930766px;}
.h32{height:84.855937px;}
.h33{height:85.006125px;}
.h28{height:86.255508px;}
.h29{height:86.402953px;}
.hc{height:87.859687px;}
.he{height:88.009875px;}
.h14{height:99.874688px;}
.h11{height:100.414687px;}
.h2d{height:104.211914px;}
.h2c{height:104.336719px;}
.h34{height:114.956016px;}
.h10{height:115.046250px;}
.h7{height:125.406562px;}
.h8{height:125.556750px;}
.h2f{height:127.540195px;}
.h30{height:127.649672px;}
.h1c{height:129.164062px;}
.h4{height:133.666875px;}
.h12{height:133.817062px;}
.ha{height:137.421562px;}
.hb{height:137.571750px;}
.h1b{height:150.187500px;}
.h1d{height:150.337688px;}
.h25{height:150.476133px;}
.hd{height:154.999688px;}
.h21{height:166.708125px;}
.h3{height:166.858313px;}
.h24{height:174.968437px;}
.h2e{height:182.566406px;}
.h5{height:183.228750px;}
.h13{height:183.378938px;}
.h2b{height:193.746094px;}
.h2a{height:200.500313px;}
.h23{height:201.997800px;}
.h15{height:214.930688px;}
.h1e{height:225.281250px;}
.h31{height:248.740313px;}
.h2{height:300.375000px;}
.h1{height:300.525188px;}
.h17{height:425.340000px;}
.h0{height:810.000000px;}
.w3{width:45.360000px;}
.wf{width:53.640000px;}
.w9{width:63.000000px;}
.w2{width:77.760000px;}
.w8{width:83.520000px;}
.w4{width:86.940000px;}
.w7{width:92.700000px;}
.wb{width:107.280000px;}
.w6{width:116.640000px;}
.wd{width:142.560000px;}
.wc{width:144.540000px;}
.we{width:146.340000px;}
.wa{width:147.240000px;}
.w5{width:484.920000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x19{left:4.890000px;}
.x1b{left:6.270000px;}
.x33{left:14.970000px;}
.x27{left:19.590000px;}
.x1a{left:22.530000px;}
.x1d{left:27.210000px;}
.x23{left:29.985000px;}
.x2c{left:37.230000px;}
.x24{left:49.935000px;}
.x30{left:51.585000px;}
.x44{left:53.927979px;}
.x2e{left:55.905000px;}
.x2a{left:57.270000px;}
.x31{left:61.380000px;}
.x9{left:73.655979px;}
.x52{left:77.471979px;}
.x1{left:82.223979px;}
.x2{left:83.519979px;}
.x12{left:87.479979px;}
.x50{left:93.023979px;}
.x6{left:94.031979px;}
.x8{left:101.447979px;}
.x34{left:124.271979px;}
.x4{left:125.999979px;}
.x15{left:136.511979px;}
.x43{left:141.983979px;}
.xc{left:149.147979px;}
.xa{left:159.149979px;}
.xb{left:161.714979px;}
.x5{left:167.759979px;}
.x14{left:202.034979px;}
.x7{left:210.419979px;}
.x1f{left:218.415000px;}
.x21{left:243.255000px;}
.x16{left:256.604979px;}
.x53{left:274.424979px;}
.xd{left:290.804979px;}
.x55{left:311.789979px;}
.xe{left:314.249979px;}
.x3a{left:327.599979px;}
.x3b{left:405.254979px;}
.x28{left:430.889979px;}
.x41{left:475.709979px;}
.x3e{left:484.229979px;}
.x18{left:486.900000px;}
.x56{left:490.469979px;}
.x4f{left:525.959979px;}
.x47{left:537.149979px;}
.xf{left:541.004979px;}
.x46{left:549.569979px;}
.x11{left:553.784979px;}
.x45{left:557.489979px;}
.x4d{left:572.399979px;}
.x10{left:599.504979px;}
.x35{left:601.019979px;}
.x4e{left:604.829979px;}
.x39{left:632.849979px;}
.x38{left:635.039979px;}
.x54{left:645.839979px;}
.x17{left:830.669979px;}
.x2d{left:850.680000px;}
.x2f{left:851.940000px;}
.x1e{left:882.900000px;}
.x49{left:890.849979px;}
.x4b{left:892.259979px;}
.x48{left:913.889979px;}
.x4c{left:927.539979px;}
.x22{left:952.380000px;}
.x25{left:956.700000px;}
.x4a{left:963.029979px;}
.x26{left:1025.280000px;}
.x32{left:1044.720000px;}
.x20{left:1084.140000px;}
.x2b{left:1088.280000px;}
.x3d{left:1093.319979px;}
.x3f{left:1139.189979px;}
.x13{left:1190.189979px;}
.x40{left:1194.224979px;}
.x29{left:1196.820000px;}
.x1c{left:1229.580000px;}
.x3c{left:1269.359979px;}
.x37{left:1335.854979px;}
.x36{left:1337.114979px;}
.x3{left:1346.729979px;}
.x51{left:1409.069979px;}
.x42{left:1420.049979px;}
@media print{
.v1{vertical-align:-71.306667pt;}
.v3{vertical-align:-38.400000pt;}
.ve{vertical-align:-31.360000pt;}
.v2{vertical-align:-28.800000pt;}
.vb{vertical-align:-27.520000pt;}
.v9{vertical-align:-20.480000pt;}
.v4{vertical-align:-17.920000pt;}
.v6{vertical-align:-15.360000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.080000pt;}
.v8{vertical-align:40.853333pt;}
.vd{vertical-align:42.880000pt;}
.v5{vertical-align:59.680000pt;}
.va{vertical-align:102.272000pt;}
.ls26{letter-spacing:-4.224000pt;}
.ls36{letter-spacing:-1.285333pt;}
.ls33{letter-spacing:-0.570667pt;}
.ls46{letter-spacing:-0.530133pt;}
.ls18{letter-spacing:-0.345600pt;}
.ls1a{letter-spacing:-0.309867pt;}
.ls48{letter-spacing:-0.265067pt;}
.ls40{letter-spacing:-0.262933pt;}
.ls43{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.218133pt;}
.ls35{letter-spacing:-0.188267pt;}
.ls31{letter-spacing:-0.181867pt;}
.ls2c{letter-spacing:-0.175467pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.117867pt;}
.ls38{letter-spacing:-0.114133pt;}
.ls34{letter-spacing:-0.107733pt;}
.lse{letter-spacing:-0.104533pt;}
.lsf{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.080533pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls3f{letter-spacing:-0.057067pt;}
.ls16{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls15{letter-spacing:-0.003584pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.003205pt;}
.ls1d{letter-spacing:0.020480pt;}
.ls44{letter-spacing:0.038933pt;}
.ls11{letter-spacing:0.041493pt;}
.ls39{letter-spacing:0.044800pt;}
.ls24{letter-spacing:0.080533pt;}
.ls12{letter-spacing:0.090133pt;}
.ls25{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.107520pt;}
.ls47{letter-spacing:0.109867pt;}
.ls45{letter-spacing:0.110080pt;}
.ls23{letter-spacing:0.161067pt;}
.ls2d{letter-spacing:0.178133pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.206400pt;}
.ls1f{letter-spacing:0.215040pt;}
.ls19{letter-spacing:0.217600pt;}
.lsc{letter-spacing:0.237867pt;}
.ls1e{letter-spacing:0.250539pt;}
.ls20{letter-spacing:0.250880pt;}
.ls27{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.281600pt;}
.ls2b{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.309867pt;}
.ls32{letter-spacing:16.930560pt;}
.lsa{letter-spacing:20.884480pt;}
.ls3b{letter-spacing:28.812885pt;}
.ls3c{letter-spacing:29.463552pt;}
.ls28{letter-spacing:33.387520pt;}
.ls42{letter-spacing:35.072000pt;}
.ls41{letter-spacing:35.393280pt;}
.ls1{letter-spacing:43.095040pt;}
.ls22{letter-spacing:106.240000pt;}
.ls1b{letter-spacing:108.563200pt;}
.ls14{letter-spacing:108.573867pt;}
.ls1c{letter-spacing:108.608000pt;}
.ls13{letter-spacing:108.618667pt;}
.ls9{letter-spacing:110.003200pt;}
.ls5{letter-spacing:110.048000pt;}
.ls3{letter-spacing:111.072000pt;}
.ls29{letter-spacing:111.123200pt;}
.ls2{letter-spacing:111.168000pt;}
.ls7{letter-spacing:113.587200pt;}
.ls6{letter-spacing:113.632000pt;}
.ls10{letter-spacing:351.511723pt;}
.ls2a{letter-spacing:352.330240pt;}
.wsd{word-spacing:-114.048000pt;}
.ws30{word-spacing:-106.924800pt;}
.ws13{word-spacing:-53.376000pt;}
.ws10{word-spacing:-43.412480pt;}
.ws1e{word-spacing:-39.498240pt;}
.ws1f{word-spacing:-39.316373pt;}
.ws37{word-spacing:-35.619584pt;}
.ws34{word-spacing:-35.584000pt;}
.ws36{word-spacing:-35.328000pt;}
.ws14{word-spacing:-32.720427pt;}
.wsa{word-spacing:-32.685077pt;}
.wsb{word-spacing:-32.591360pt;}
.ws16{word-spacing:-32.559360pt;}
.ws5{word-spacing:-32.478827pt;}
.ws1c{word-spacing:-31.986944pt;}
.ws12{word-spacing:-31.979627pt;}
.wsc{word-spacing:-31.922944pt;}
.ws31{word-spacing:-31.705344pt;}
.ws17{word-spacing:-31.690240pt;}
.ws0{word-spacing:-31.669760pt;}
.wse{word-spacing:-31.654677pt;}
.ws1d{word-spacing:-31.641344pt;}
.wsf{word-spacing:-31.359893pt;}
.ws28{word-spacing:-30.721925pt;}
.ws27{word-spacing:-30.718720pt;}
.ws2c{word-spacing:-29.954624pt;}
.ws2{word-spacing:-29.748224pt;}
.ws29{word-spacing:-29.712640pt;}
.ws15{word-spacing:-23.663360pt;}
.ws25{word-spacing:-21.582507pt;}
.ws24{word-spacing:-21.578773pt;}
.ws22{word-spacing:-21.534357pt;}
.ws23{word-spacing:-20.437291pt;}
.ws3b{word-spacing:-20.214827pt;}
.ws3a{word-spacing:-20.179477pt;}
.ws3c{word-spacing:-20.140544pt;}
.ws38{word-spacing:-20.104960pt;}
.ws39{word-spacing:-19.574827pt;}
.ws1b{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws20{word-spacing:-16.951808pt;}
.ws11{word-spacing:-16.404224pt;}
.ws7{word-spacing:-16.368640pt;}
.ws21{word-spacing:-16.352213pt;}
.ws9{word-spacing:-15.834880pt;}
.ws3{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-13.344000pt;}
.ws2a{word-spacing:-1.386027pt;}
.ws2e{word-spacing:-0.936960pt;}
.ws2b{word-spacing:-0.799232pt;}
.ws2d{word-spacing:-0.627627pt;}
.ws26{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.113920pt;}
.ws1{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.102997pt;}
.ws6{word-spacing:40.283307pt;}
.ws32{word-spacing:65.259520pt;}
.ws33{word-spacing:65.330624pt;}
.ws19{word-spacing:89.301333pt;}
.ws35{word-spacing:4366.503573pt;}
._1b{margin-left:-9.587200pt;}
._14{margin-left:-7.964160pt;}
._11{margin-left:-5.511680pt;}
._1a{margin-left:-4.253269pt;}
._6{margin-left:-2.525867pt;}
._0{margin-left:-1.024512pt;}
._4{width:1.130667pt;}
._2{width:2.540075pt;}
._1c{width:3.439189pt;}
._1d{width:17.881685pt;}
._8{width:28.667051pt;}
._5{width:30.447531pt;}
._12{width:33.558869pt;}
._15{width:35.507200pt;}
._16{width:36.474752pt;}
._17{width:38.946987pt;}
._18{width:56.756224pt;}
._19{width:57.828267pt;}
._b{width:59.786667pt;}
._3{width:72.448000pt;}
._1{width:73.358464pt;}
._a{width:75.520000pt;}
._10{width:106.240000pt;}
._c{width:117.226667pt;}
._13{width:352.330240pt;}
._d{width:368.844032pt;}
._9{width:637.573931pt;}
._f{width:866.759339pt;}
._e{width:941.589931pt;}
._7{width:1063.931307pt;}
.fs1d{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fs1b{font-size:48.000000pt;}
.fsf{font-size:49.920000pt;}
.fs9{font-size:53.120000pt;}
.fs13{font-size:56.960000pt;}
.fs11{font-size:58.880000pt;}
.fs16{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs22{font-size:72.320000pt;}
.fs23{font-size:72.448000pt;}
.fse{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs17{font-size:75.520000pt;}
.fsb{font-size:78.080000pt;}
.fs12{font-size:85.120000pt;}
.fsd{font-size:104.320000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fs3{font-size:113.920000pt;}
.fs14{font-size:114.048000pt;}
.fsa{font-size:117.120000pt;}
.fsc{font-size:117.248000pt;}
.fs18{font-size:128.000000pt;}
.fs19{font-size:128.128000pt;}
.fs1c{font-size:142.080000pt;}
.fs2{font-size:142.208000pt;}
.fs1f{font-size:149.120000pt;}
.fs21{font-size:149.248000pt;}
.fs4{font-size:156.160000pt;}
.fs15{font-size:156.288000pt;}
.fs20{font-size:170.880000pt;}
.fs1a{font-size:192.000000pt;}
.fs1e{font-size:213.120000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.248000pt;}
.y5c{bottom:5.253333pt;}
.y47{bottom:5.280000pt;}
.y4b{bottom:5.306667pt;}
.y5f{bottom:5.344000pt;}
.y62{bottom:5.346667pt;}
.y59{bottom:5.413333pt;}
.y7b{bottom:9.280000pt;}
.y98{bottom:19.936000pt;}
.y97{bottom:21.056000pt;}
.y52{bottom:22.053333pt;}
.y46{bottom:22.080000pt;}
.y4a{bottom:22.106667pt;}
.y5e{bottom:22.144000pt;}
.y61{bottom:22.146667pt;}
.y58{bottom:22.213333pt;}
.y65{bottom:22.266667pt;}
.y36{bottom:25.280000pt;}
.yde{bottom:27.264000pt;}
.y28{bottom:29.152000pt;}
.y33{bottom:29.376000pt;}
.y4f{bottom:30.720000pt;}
.y4c{bottom:31.200000pt;}
.y44{bottom:36.352000pt;}
.y43{bottom:36.384000pt;}
.y64{bottom:39.066667pt;}
.ycc{bottom:43.168000pt;}
.ydd{bottom:43.264000pt;}
.y96{bottom:43.456000pt;}
.y14{bottom:43.488000pt;}
.y15{bottom:45.504000pt;}
.y7{bottom:45.632000pt;}
.y34{bottom:45.728000pt;}
.y100{bottom:52.256000pt;}
.y29{bottom:53.056000pt;}
.y9a{bottom:54.368000pt;}
.y5d{bottom:57.760000pt;}
.y8b{bottom:60.960000pt;}
.y21{bottom:61.408000pt;}
.y42{bottom:61.984000pt;}
.y95{bottom:65.856000pt;}
.y7e{bottom:71.520000pt;}
.yff{bottom:73.856000pt;}
.yaa{bottom:75.072000pt;}
.y5a{bottom:75.648000pt;}
.y13{bottom:80.640000pt;}
.ya9{bottom:83.072000pt;}
.ya8{bottom:91.072000pt;}
.yb6{bottom:93.184000pt;}
.ya7{bottom:99.072000pt;}
.yea{bottom:99.168000pt;}
.y20{bottom:100.128000pt;}
.yfe{bottom:102.176000pt;}
.ya6{bottom:107.072000pt;}
.y12{bottom:112.672000pt;}
.yb5{bottom:115.616000pt;}
.y3b{bottom:117.568000pt;}
.y50{bottom:117.573333pt;}
.yb3{bottom:117.600000pt;}
.y2a{bottom:119.296000pt;}
.yda{bottom:122.432000pt;}
.ye0{bottom:123.168000pt;}
.yfd{bottom:123.776000pt;}
.ya2{bottom:124.352000pt;}
.y51{bottom:127.040000pt;}
.y72{bottom:127.712000pt;}
.y4e{bottom:135.040000pt;}
.ye9{bottom:137.573333pt;}
.yb4{bottom:138.013333pt;}
.y1f{bottom:138.853333pt;}
.ydf{bottom:139.173333pt;}
.y92{bottom:139.706667pt;}
.yb2{bottom:140.000000pt;}
.y11{bottom:144.666667pt;}
.y60{bottom:145.120000pt;}
.y4d{bottom:151.360000pt;}
.yfc{bottom:152.093333pt;}
.y45{bottom:157.440000pt;}
.yd9{bottom:163.226667pt;}
.ya1{bottom:165.146667pt;}
.y71{bottom:166.106667pt;}
.y1e{bottom:170.853333pt;}
.y3a{bottom:175.333333pt;}
.y10{bottom:176.666667pt;}
.y2e{bottom:179.706667pt;}
.yfb{bottom:180.293333pt;}
.y91{bottom:180.506667pt;}
.y5{bottom:181.466667pt;}
.ye8{bottom:182.693333pt;}
.y8a{bottom:188.026667pt;}
.y2b{bottom:194.053333pt;}
.y55{bottom:198.333333pt;}
.yfa{bottom:201.893333pt;}
.y1d{bottom:202.880000pt;}
.y48{bottom:203.520000pt;}
.yd8{bottom:204.026667pt;}
.y49{bottom:209.120000pt;}
.y30{bottom:213.440000pt;}
.y54{bottom:215.133333pt;}
.y2f{bottom:220.826667pt;}
.y90{bottom:221.306667pt;}
.y4{bottom:222.266667pt;}
.ya0{bottom:225.306667pt;}
.y84{bottom:228.293333pt;}
.yf9{bottom:230.213333pt;}
.y7a{bottom:232.133333pt;}
.y39{bottom:233.280000pt;}
.y89{bottom:239.066667pt;}
.y1c{bottom:241.440000pt;}
.yd7{bottom:244.866667pt;}
.y70{bottom:249.826667pt;}
.yd4{bottom:250.013333pt;}
.yf8{bottom:251.813333pt;}
.y7d{bottom:252.960000pt;}
.y63{bottom:253.600000pt;}
.y105{bottom:253.853333pt;}
.yf{bottom:253.986667pt;}
.y5b{bottom:255.680000pt;}
.y83{bottom:263.520000pt;}
.y79{bottom:264.133333pt;}
.y32{bottom:264.800000pt;}
.y9f{bottom:266.146667pt;}
.ye7{bottom:268.640000pt;}
.y2c{bottom:268.800000pt;}
.y1b{bottom:273.440000pt;}
.y6a{bottom:274.240000pt;}
.yf7{bottom:280.133333pt;}
.y31{bottom:282.400000pt;}
.yd6{bottom:285.666667pt;}
.ye{bottom:285.986667pt;}
.yc7{bottom:286.146667pt;}
.y6f{bottom:288.226667pt;}
.y88{bottom:290.146667pt;}
.y38{bottom:291.200000pt;}
.y104{bottom:294.653333pt;}
.y8f{bottom:300.866667pt;}
.ya5{bottom:301.306667pt;}
.y78{bottom:302.693333pt;}
.y9e{bottom:306.946667pt;}
.ye6{bottom:307.040000pt;}
.y56{bottom:307.840000pt;}
.yf6{bottom:308.293333pt;}
.y1a{bottom:312.800000pt;}
.ycb{bottom:317.946667pt;}
.yd{bottom:317.986667pt;}
.y69{bottom:318.560000pt;}
.yd3{bottom:323.493333pt;}
.yd5{bottom:326.466667pt;}
.yf5{bottom:329.920000pt;}
.y66{bottom:331.040000pt;}
.y87{bottom:334.466667pt;}
.y103{bottom:335.453333pt;}
.ybe{bottom:339.866667pt;}
.y3{bottom:339.906667pt;}
.y2d{bottom:343.173333pt;}
.ya4{bottom:344.066667pt;}
.y27{bottom:344.773333pt;}
.yc6{bottom:350.146667pt;}
.ye5{bottom:352.000000pt;}
.y6e{bottom:352.866667pt;}
.yca{bottom:353.826667pt;}
.y67{bottom:355.040000pt;}
.yf4{bottom:358.240000pt;}
.yae{bottom:362.653333pt;}
.y3f{bottom:362.906667pt;}
.yd2{bottom:365.093333pt;}
.y57{bottom:365.120000pt;}
.y9d{bottom:367.266667pt;}
.y8e{bottom:367.586667pt;}
.y68{bottom:369.626667pt;}
.ybd{bottom:371.866667pt;}
.yb1{bottom:375.173333pt;}
.y102{bottom:376.293333pt;}
.y19{bottom:377.826667pt;}
.yc5{bottom:382.146667pt;}
.y77{bottom:383.840000pt;}
.y86{bottom:385.533333pt;}
.yf3{bottom:386.560000pt;}
.ya3{bottom:386.786667pt;}
.yc{bottom:388.733333pt;}
.yc9{bottom:389.666667pt;}
.y2{bottom:391.906667pt;}
.y82{bottom:392.000000pt;}
.y26{bottom:392.253333pt;}
.yb0{bottom:397.573333pt;}
.ybc{bottom:403.866667pt;}
.yd1{bottom:406.693333pt;}
.yad{bottom:407.493333pt;}
.y9c{bottom:408.093333pt;}
.yf2{bottom:408.160000pt;}
.y101{bottom:410.373333pt;}
.y3e{bottom:413.946667pt;}
.yc4{bottom:414.173333pt;}
.y25{bottom:414.653333pt;}
.y6d{bottom:417.373333pt;}
.y76{bottom:419.040000pt;}
.yaf{bottom:419.973333pt;}
.yb{bottom:420.733333pt;}
.y8d{bottom:422.973333pt;}
.y18{bottom:432.733333pt;}
.y73{bottom:435.133333pt;}
.ybb{bottom:435.866667pt;}
.yf1{bottom:436.320000pt;}
.y85{bottom:436.573333pt;}
.ye4{bottom:437.946667pt;}
.y106{bottom:438.693333pt;}
.y81{bottom:440.000000pt;}
.yc8{bottom:442.306667pt;}
.yd0{bottom:448.320000pt;}
.y9b{bottom:448.893333pt;}
.yac{bottom:452.293333pt;}
.ya{bottom:452.733333pt;}
.yf0{bottom:457.946667pt;}
.y1{bottom:462.493333pt;}
.y3d{bottom:464.986667pt;}
.yba{bottom:467.906667pt;}
.y7c{bottom:472.320000pt;}
.ye3{bottom:476.346667pt;}
.yc3{bottom:478.173333pt;}
.y23{bottom:479.866667pt;}
.y6c{bottom:481.853333pt;}
.y9{bottom:484.733333pt;}
.yef{bottom:486.266667pt;}
.y17{bottom:487.773333pt;}
.y80{bottom:488.026667pt;}
.y8c{bottom:489.693333pt;}
.ycf{bottom:489.920000pt;}
.yb9{bottom:499.906667pt;}
.y75{bottom:502.906667pt;}
.yee{bottom:507.866667pt;}
.yc2{bottom:510.173333pt;}
.y3c{bottom:516.066667pt;}
.y6b{bottom:520.253333pt;}
.y37{bottom:520.866667pt;}
.ye2{bottom:521.346667pt;}
.y16{bottom:522.973333pt;}
.y7f{bottom:523.226667pt;}
.y8{bottom:523.773333pt;}
.y35{bottom:531.426667pt;}
.y22{bottom:532.186667pt;}
.yce{bottom:535.200000pt;}
.yed{bottom:536.186667pt;}
.y74{bottom:538.106667pt;}
.ye1{bottom:542.146667pt;}
.yc1{bottom:542.213333pt;}
.yc0{bottom:556.320000pt;}
.yec{bottom:557.786667pt;}
.yeb{bottom:579.386667pt;}
.y99{bottom:585.373333pt;}
.y93{bottom:589.626667pt;}
.y94{bottom:591.906667pt;}
.y41{bottom:594.080000pt;}
.yab{bottom:596.640000pt;}
.ydc{bottom:596.706667pt;}
.ybf{bottom:604.506667pt;}
.y6{bottom:612.480000pt;}
.ycd{bottom:615.066667pt;}
.yb8{bottom:616.093333pt;}
.y24{bottom:617.506667pt;}
.ydb{bottom:636.706667pt;}
.y40{bottom:640.986667pt;}
.yb7{bottom:641.760000pt;}
.h22{height:26.735625pt;}
.h16{height:38.240000pt;}
.h20{height:50.062500pt;}
.h1f{height:52.142500pt;}
.h19{height:55.200000pt;}
.h9{height:55.402500pt;}
.hf{height:61.410000pt;}
.h1a{height:61.543500pt;}
.h6{height:66.750000pt;}
.h18{height:72.320000pt;}
.h26{height:74.477812pt;}
.h27{height:74.605125pt;}
.h32{height:75.427500pt;}
.h33{height:75.561000pt;}
.h28{height:76.671562pt;}
.h29{height:76.802625pt;}
.hc{height:78.097500pt;}
.he{height:78.231000pt;}
.h14{height:88.777500pt;}
.h11{height:89.257500pt;}
.h2d{height:92.632812pt;}
.h2c{height:92.743750pt;}
.h34{height:102.183125pt;}
.h10{height:102.263333pt;}
.h7{height:111.472500pt;}
.h8{height:111.606000pt;}
.h2f{height:113.369062pt;}
.h30{height:113.466375pt;}
.h1c{height:114.812500pt;}
.h4{height:118.815000pt;}
.h12{height:118.948500pt;}
.ha{height:122.152500pt;}
.hb{height:122.286000pt;}
.h1b{height:133.500000pt;}
.h1d{height:133.633500pt;}
.h25{height:133.756563pt;}
.hd{height:137.777500pt;}
.h21{height:148.185000pt;}
.h3{height:148.318500pt;}
.h24{height:155.527500pt;}
.h2e{height:162.281250pt;}
.h5{height:162.870000pt;}
.h13{height:163.003500pt;}
.h2b{height:172.218750pt;}
.h2a{height:178.222500pt;}
.h23{height:179.553600pt;}
.h15{height:191.049500pt;}
.h1e{height:200.250000pt;}
.h31{height:221.102500pt;}
.h2{height:267.000000pt;}
.h1{height:267.133500pt;}
.h17{height:378.080000pt;}
.h0{height:720.000000pt;}
.w3{width:40.320000pt;}
.wf{width:47.680000pt;}
.w9{width:56.000000pt;}
.w2{width:69.120000pt;}
.w8{width:74.240000pt;}
.w4{width:77.280000pt;}
.w7{width:82.400000pt;}
.wb{width:95.360000pt;}
.w6{width:103.680000pt;}
.wd{width:126.720000pt;}
.wc{width:128.480000pt;}
.we{width:130.080000pt;}
.wa{width:130.880000pt;}
.w5{width:431.040000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x19{left:4.346667pt;}
.x1b{left:5.573333pt;}
.x33{left:13.306667pt;}
.x27{left:17.413333pt;}
.x1a{left:20.026667pt;}
.x1d{left:24.186667pt;}
.x23{left:26.653333pt;}
.x2c{left:33.093333pt;}
.x24{left:44.386667pt;}
.x30{left:45.853333pt;}
.x44{left:47.935981pt;}
.x2e{left:49.693333pt;}
.x2a{left:50.906667pt;}
.x31{left:54.560000pt;}
.x9{left:65.471981pt;}
.x52{left:68.863981pt;}
.x1{left:73.087981pt;}
.x2{left:74.239981pt;}
.x12{left:77.759981pt;}
.x50{left:82.687981pt;}
.x6{left:83.583981pt;}
.x8{left:90.175981pt;}
.x34{left:110.463981pt;}
.x4{left:111.999981pt;}
.x15{left:121.343981pt;}
.x43{left:126.207981pt;}
.xc{left:132.575981pt;}
.xa{left:141.466648pt;}
.xb{left:143.746648pt;}
.x5{left:149.119981pt;}
.x14{left:179.586648pt;}
.x7{left:187.039981pt;}
.x1f{left:194.146667pt;}
.x21{left:216.226667pt;}
.x16{left:228.093314pt;}
.x53{left:243.933314pt;}
.xd{left:258.493314pt;}
.x55{left:277.146648pt;}
.xe{left:279.333314pt;}
.x3a{left:291.199981pt;}
.x3b{left:360.226648pt;}
.x28{left:383.013314pt;}
.x41{left:422.853314pt;}
.x3e{left:430.426648pt;}
.x18{left:432.800000pt;}
.x56{left:435.973314pt;}
.x4f{left:467.519981pt;}
.x47{left:477.466648pt;}
.xf{left:480.893314pt;}
.x46{left:488.506648pt;}
.x11{left:492.253314pt;}
.x45{left:495.546648pt;}
.x4d{left:508.799981pt;}
.x10{left:532.893314pt;}
.x35{left:534.239981pt;}
.x4e{left:537.626648pt;}
.x39{left:562.533314pt;}
.x38{left:564.479981pt;}
.x54{left:574.079981pt;}
.x17{left:738.373314pt;}
.x2d{left:756.160000pt;}
.x2f{left:757.280000pt;}
.x1e{left:784.800000pt;}
.x49{left:791.866648pt;}
.x4b{left:793.119981pt;}
.x48{left:812.346648pt;}
.x4c{left:824.479981pt;}
.x22{left:846.560000pt;}
.x25{left:850.400000pt;}
.x4a{left:856.026648pt;}
.x26{left:911.360000pt;}
.x32{left:928.640000pt;}
.x20{left:963.680000pt;}
.x2b{left:967.360000pt;}
.x3d{left:971.839981pt;}
.x3f{left:1012.613314pt;}
.x13{left:1057.946648pt;}
.x40{left:1061.533314pt;}
.x29{left:1063.840000pt;}
.x1c{left:1092.960000pt;}
.x3c{left:1128.319981pt;}
.x37{left:1187.426648pt;}
.x36{left:1188.546648pt;}
.x3{left:1197.093314pt;}
.x51{left:1252.506648pt;}
.x42{left:1262.266648pt;}
}




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