
    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_46784e9de49e89fe5dacaedb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_b924b7a394e18c24f5a9c8e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_bfe05ee662adc788ef0ae96f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.189000;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_d3656f6f2a1c563fd39347b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175000;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_9264c18e6edb39f0a1ed2ae5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.103154;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_b9b83e67703f2796deb8285c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.175000;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_5595cdba7c8a55f5fb88a8eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.054000;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_2901813d15cef6a93255a460.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109000;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_8e2b202b48420b3b5a1e1853.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100000;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_b935c56740073405fce80819.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106154;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_1a14e13c7f0b74ba4ed60fa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.160000;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_21d00748b0bd842965e72571.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.145000;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_209788341a227f34979c087a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.156000;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_dbb581b4215f8c23c1007665.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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_3b2a20940a3d4381df6d42cd.woff2')format("woff");}.fff{font-family:fff;line-height:1.103154;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:ff10;src:url('chunks/assets/font_030752cc31cc1e2a138fa788.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.156000;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:ff11;src:url('chunks/assets/font_0f028395d8c1f789057ca417.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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:ff12;src:url('chunks/assets/font_79fddac2dad5c515a467d8d0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.145000;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:ff13;src:url('chunks/assets/font_6eebb265fbc88f0b5ef4b436.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.584000px;}
.ls18{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.296000px;}
.ls2b{letter-spacing:-1.224000px;}
.ls46{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-1.020000px;}
.ls29{letter-spacing:-1.014000px;}
.ls41{letter-spacing:-0.990000px;}
.ls19{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.948000px;}
.ls12{letter-spacing:-0.864000px;}
.ls3c{letter-spacing:-0.840000px;}
.ls34{letter-spacing:-0.828000px;}
.ls2a{letter-spacing:-0.804000px;}
.ls1d{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.714000px;}
.ls39{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.618000px;}
.ls3b{letter-spacing:-0.612000px;}
.ls31{letter-spacing:-0.590400px;}
.ls20{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.387600px;}
.ls33{letter-spacing:-0.363000px;}
.lsf{letter-spacing:-0.295200px;}
.lsd{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.263400px;}
.ls4{letter-spacing:-0.227400px;}
.ls2d{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.198600px;}
.ls2e{letter-spacing:-0.184200px;}
.ls3f{letter-spacing:-0.164400px;}
.ls35{letter-spacing:-0.158400px;}
.ls21{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.141000px;}
.ls5{letter-spacing:-0.130800px;}
.ls1a{letter-spacing:-0.115200px;}
.ls1c{letter-spacing:-0.097200px;}
.lse{letter-spacing:-0.093600px;}
.ls23{letter-spacing:-0.072000px;}
.ls30{letter-spacing:-0.057600px;}
.ls2{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.017280px;}
.ls2c{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.103800px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.174000px;}
.ls37{letter-spacing:0.233280px;}
.ls26{letter-spacing:0.258600px;}
.ls2f{letter-spacing:0.276600px;}
.ls0{letter-spacing:0.278640px;}
.ls25{letter-spacing:0.288000px;}
.ls45{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.413400px;}
.ls38{letter-spacing:0.498240px;}
.ls42{letter-spacing:0.579000px;}
.ls8{letter-spacing:0.589800px;}
.lsb{letter-spacing:0.636000px;}
.ls22{letter-spacing:0.648000px;}
.ls36{letter-spacing:0.750000px;}
.ls6{letter-spacing:0.864000px;}
.ls44{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.152000px;}
.ls1e{letter-spacing:3.312000px;}
.ls1f{letter-spacing:4.752000px;}
.ls15{letter-spacing:6.912000px;}
.ls24{letter-spacing:10.224000px;}
.ls16{letter-spacing:17.585280px;}
.ls40{letter-spacing:30.764160px;}
.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;}
}
.ws0{word-spacing:-41.760000px;}
.ws26{word-spacing:-18.945840px;}
.ws2d{word-spacing:-18.299640px;}
.ws20{word-spacing:-18.195840px;}
.ws25{word-spacing:-18.037440px;}
.ws2b{word-spacing:-18.031440px;}
.ws22{word-spacing:-17.832840px;}
.ws28{word-spacing:-17.583840px;}
.ws21{word-spacing:-17.577840px;}
.ws29{word-spacing:-17.355840px;}
.ws2c{word-spacing:-17.205840px;}
.ws2a{word-spacing:-17.175840px;}
.ws16{word-spacing:-17.136000px;}
.ws14{word-spacing:-16.992000px;}
.ws1d{word-spacing:-16.920000px;}
.wsb{word-spacing:-16.848000px;}
.ws13{word-spacing:-16.776000px;}
.ws15{word-spacing:-16.704000px;}
.ws12{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.200000px;}
.ws1a{word-spacing:-15.984000px;}
.ws17{word-spacing:-15.336000px;}
.ws1e{word-spacing:-15.120000px;}
.ws24{word-spacing:-14.826240px;}
.wsd{word-spacing:-14.763000px;}
.ws6{word-spacing:-14.619840px;}
.ws5{word-spacing:-13.983840px;}
.ws27{word-spacing:-13.962240px;}
.ws4{word-spacing:-13.720440px;}
.ws3{word-spacing:-13.483920px;}
.ws11{word-spacing:-13.309920px;}
.ws7{word-spacing:-13.269840px;}
.ws1c{word-spacing:-13.179840px;}
.wse{word-spacing:-12.337920px;}
.ws19{word-spacing:-11.988000px;}
.ws23{word-spacing:-11.808000px;}
.ws1b{word-spacing:-10.080000px;}
.ws18{word-spacing:-9.906600px;}
.ws8{word-spacing:-9.648000px;}
.ws1f{word-spacing:-9.590400px;}
.ws10{word-spacing:-9.550800px;}
.ws1{word-spacing:-9.544440px;}
.wsf{word-spacing:-9.532800px;}
.ws2{word-spacing:-9.396000px;}
.wsa{word-spacing:-8.823840px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-2.928480px;}
._0{margin-left:-1.586880px;}
._1{width:1.738080px;}
._2{width:3.054000px;}
._6{width:4.142400px;}
._9{width:5.558400px;}
._4{width:7.482960px;}
._3{width:8.777520px;}
._5{width:10.756800px;}
._8{width:11.905200px;}
._e{width:13.631280px;}
._7{width:14.731920px;}
._b{width:15.822240px;}
._21{width:17.009760px;}
._f{width:18.083520px;}
._12{width:19.944000px;}
._d{width:21.096000px;}
._c{width:22.449120px;}
._18{width:23.531040px;}
._1c{width:25.462080px;}
._1d{width:26.792160px;}
._1b{width:29.954880px;}
._24{width:31.346400px;}
._13{width:34.560000px;}
._14{width:35.705760px;}
._16{width:37.146720px;}
._15{width:38.413440px;}
._17{width:40.717440px;}
._10{width:41.912640px;}
._11{width:43.417920px;}
._1e{width:45.572640px;}
._1f{width:46.979040px;}
._22{width:50.388480px;}
._23{width:51.865920px;}
._26{width:56.426880px;}
._25{width:57.574080px;}
._20{width:69.631680px;}
._29{width:70.688640px;}
._28{width:155.259360px;}
._27{width:156.681120px;}
._19{width:210.669120px;}
._1a{width:211.933920px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs0{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fsa{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:105.120000px;}
.y10{bottom:-16.710000px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.060000px;}
.y1b{bottom:3.420000px;}
.y34{bottom:4.140000px;}
.y17{bottom:4.500000px;}
.y14{bottom:18.000000px;}
.y1a{bottom:20.010000px;}
.y12{bottom:28.260000px;}
.y13{bottom:32.940000px;}
.y19{bottom:36.390000px;}
.y32{bottom:88.776000px;}
.yed{bottom:89.136000px;}
.y79{bottom:90.216000px;}
.y10f{bottom:92.736000px;}
.y92{bottom:93.276000px;}
.yec{bottom:93.636000px;}
.y14f{bottom:101.016000px;}
.y31{bottom:104.436000px;}
.y138{bottom:104.796000px;}
.yb2{bottom:108.576000px;}
.y56{bottom:108.756000px;}
.y91{bottom:108.936000px;}
.yeb{bottom:109.656000px;}
.y16e{bottom:110.196000px;}
.y13d{bottom:111.816000px;}
.y78{bottom:111.996000px;}
.y10e{bottom:114.516000px;}
.y30{bottom:120.096000px;}
.y90{bottom:120.456000px;}
.y2f{bottom:124.596000px;}
.yea{bottom:125.316000px;}
.y93{bottom:126.216000px;}
.y130{bottom:128.196000px;}
.yca{bottom:129.096000px;}
.yb1{bottom:130.356000px;}
.y55{bottom:130.536000px;}
.y13c{bottom:133.596000px;}
.y77{bottom:133.776000px;}
.y2e{bottom:135.756000px;}
.y10d{bottom:136.296000px;}
.y2d{bottom:140.256000px;}
.ye9{bottom:140.976000px;}
.y8f{bottom:147.996000px;}
.y14e{bottom:148.176000px;}
.ye3{bottom:149.076000px;}
.y12f{bottom:149.976000px;}
.yc9{bottom:150.870000px;}
.y88{bottom:151.410000px;}
.y2c{bottom:151.770000px;}
.y54{bottom:152.310000px;}
.y137{bottom:153.570000px;}
.y13b{bottom:155.370000px;}
.y76{bottom:155.730000px;}
.ye8{bottom:156.630000px;}
.y16d{bottom:157.350000px;}
.y10c{bottom:158.070000px;}
.ye7{bottom:161.130000px;}
.y87{bottom:167.070000px;}
.y8e{bottom:169.770000px;}
.ye2{bottom:170.850000px;}
.yb0{bottom:171.390000px;}
.y12e{bottom:171.750000px;}
.y14d{bottom:171.930000px;}
.yc8{bottom:172.650000px;}
.ye6{bottom:172.830000px;}
.y53{bottom:174.270000px;}
.y13a{bottom:177.150000px;}
.y75{bottom:177.510000px;}
.y2b{bottom:180.930000px;}
.y16c{bottom:181.110000px;}
.y86{bottom:182.730000px;}
.y85{bottom:187.230000px;}
.y8d{bottom:191.550000px;}
.ye1{bottom:192.630000px;}
.yaf{bottom:192.810000px;}
.y12d{bottom:193.530000px;}
.yc7{bottom:194.430000px;}
.y136{bottom:195.330000px;}
.y14c{bottom:195.510000px;}
.y52{bottom:196.050000px;}
.y10b{bottom:197.130000px;}
.y2a{bottom:198.210000px;}
.y84{bottom:198.750000px;}
.y74{bottom:199.290000px;}
.y16b{bottom:204.690000px;}
.y8c{bottom:213.330000px;}
.ye0{bottom:214.410000px;}
.y10a{bottom:215.310000px;}
.y29{bottom:215.490000px;}
.yc6{bottom:216.210000px;}
.y135{bottom:216.390000px;}
.y51{bottom:217.830000px;}
.y139{bottom:218.190000px;}
.y14b{bottom:219.090000px;}
.y73{bottom:221.070000px;}
.y16a{bottom:228.270000px;}
.y109{bottom:233.490000px;}
.y8b{bottom:235.110000px;}
.ydf{bottom:236.190000px;}
.y12c{bottom:237.090000px;}
.y134{bottom:237.450000px;}
.yc5{bottom:237.990000px;}
.y50{bottom:239.610000px;}
.y14a{bottom:242.670000px;}
.y72{bottom:242.850000px;}
.y28{bottom:247.710000px;}
.y108{bottom:251.670000px;}
.y169{bottom:251.850000px;}
.yae{bottom:252.750000px;}
.y83{bottom:256.890000px;}
.yde{bottom:257.970000px;}
.y133{bottom:258.330000px;}
.y12b{bottom:258.870000px;}
.yc4{bottom:259.950000px;}
.y4f{bottom:261.390000px;}
.ye5{bottom:262.830000px;}
.y71{bottom:264.630000px;}
.y27{bottom:266.070000px;}
.y149{bottom:266.250000px;}
.y107{bottom:269.850000px;}
.yad{bottom:273.630000px;}
.y168{bottom:275.430000px;}
.y82{bottom:278.670000px;}
.y132{bottom:279.390000px;}
.ydd{bottom:279.750000px;}
.y12a{bottom:280.650000px;}
.yc3{bottom:281.730000px;}
.y4e{bottom:283.170000px;}
.y26{bottom:284.250000px;}
.ye4{bottom:284.610000px;}
.y70{bottom:286.410000px;}
.y106{bottom:288.030000px;}
.y148{bottom:290.010000px;}
.yac{bottom:294.690000px;}
.y167{bottom:299.235000px;}
.y131{bottom:300.495000px;}
.y81{bottom:300.675000px;}
.ydc{bottom:301.575000px;}
.y25{bottom:302.475000px;}
.yc2{bottom:303.555000px;}
.y4d{bottom:304.995000px;}
.y105{bottom:306.255000px;}
.y147{bottom:313.635000px;}
.yab{bottom:315.795000px;}
.y24{bottom:320.655000px;}
.y80{bottom:322.455000px;}
.y166{bottom:322.815000px;}
.ydb{bottom:323.355000px;}
.y129{bottom:324.255000px;}
.yc1{bottom:325.335000px;}
.y4c{bottom:326.775000px;}
.y6f{bottom:327.495000px;}
.yaa{bottom:336.675000px;}
.y146{bottom:337.215000px;}
.y23{bottom:338.835000px;}
.y104{bottom:343.155000px;}
.y7f{bottom:344.235000px;}
.yda{bottom:345.315000px;}
.y128{bottom:346.215000px;}
.y165{bottom:346.395000px;}
.yc0{bottom:347.115000px;}
.y4b{bottom:348.555000px;}
.y6e{bottom:349.095000px;}
.y22{bottom:356.835000px;}
.ya9{bottom:357.735000px;}
.y145{bottom:360.795000px;}
.y103{bottom:364.935000px;}
.y7e{bottom:366.015000px;}
.yd9{bottom:367.095000px;}
.y127{bottom:367.995000px;}
.ybf{bottom:368.895000px;}
.y164{bottom:369.975000px;}
.y4a{bottom:370.335000px;}
.y6d{bottom:370.515000px;}
.y21{bottom:375.015000px;}
.ya8{bottom:378.795000px;}
.y144{bottom:384.375000px;}
.y102{bottom:386.715000px;}
.y7d{bottom:387.795000px;}
.yd8{bottom:388.875000px;}
.y126{bottom:389.775000px;}
.ybe{bottom:390.675000px;}
.y49{bottom:392.295000px;}
.y20{bottom:393.195000px;}
.y163{bottom:393.555000px;}
.ya7{bottom:399.675000px;}
.y143{bottom:407.955000px;}
.y101{bottom:408.495000px;}
.y7c{bottom:409.575000px;}
.yd7{bottom:410.655000px;}
.y1f{bottom:411.375000px;}
.y125{bottom:411.555000px;}
.ybd{bottom:412.455000px;}
.y48{bottom:414.075000px;}
.y162{bottom:417.315000px;}
.ya6{bottom:420.735000px;}
.y1e{bottom:429.375000px;}
.y100{bottom:430.275000px;}
.y6c{bottom:431.355000px;}
.y142{bottom:431.715000px;}
.yd6{bottom:432.435000px;}
.y124{bottom:433.335000px;}
.ybc{bottom:434.235000px;}
.y47{bottom:435.855000px;}
.y161{bottom:440.895000px;}
.ya5{bottom:441.795000px;}
.yff{bottom:452.055000px;}
.y6b{bottom:453.135000px;}
.yd5{bottom:454.215000px;}
.y123{bottom:455.115000px;}
.y141{bottom:455.295000px;}
.ybb{bottom:456.015000px;}
.y46{bottom:457.635000px;}
.y1d{bottom:462.675000px;}
.y160{bottom:464.475000px;}
.yfe{bottom:473.835000px;}
.y6a{bottom:474.915000px;}
.yd4{bottom:475.995000px;}
.y122{bottom:476.895000px;}
.yba{bottom:477.975000px;}
.y140{bottom:478.875000px;}
.y45{bottom:479.415000px;}
.y1c{bottom:480.675000px;}
.ya4{bottom:483.735000px;}
.y15f{bottom:488.055000px;}
.yfd{bottom:495.615000px;}
.y69{bottom:496.695000px;}
.yd3{bottom:497.775000px;}
.y121{bottom:498.675000px;}
.y18{bottom:499.575000px;}
.yb9{bottom:499.755000px;}
.y44{bottom:501.195000px;}
.y13f{bottom:502.455000px;}
.ya3{bottom:504.825000px;}
.y15e{bottom:511.665000px;}
.yfc{bottom:517.605000px;}
.y68{bottom:518.685000px;}
.yd2{bottom:519.585000px;}
.y120{bottom:520.485000px;}
.yb8{bottom:521.565000px;}
.y43{bottom:523.005000px;}
.ya2{bottom:525.705000px;}
.y15d{bottom:535.245000px;}
.yfb{bottom:539.385000px;}
.y67{bottom:540.465000px;}
.yd1{bottom:541.365000px;}
.y11f{bottom:542.265000px;}
.yb7{bottom:543.345000px;}
.y13e{bottom:544.965000px;}
.ya1{bottom:546.765000px;}
.y15c{bottom:559.005000px;}
.y16{bottom:560.985000px;}
.yfa{bottom:561.165000px;}
.y66{bottom:562.245000px;}
.y42{bottom:563.865000px;}
.y11e{bottom:564.225000px;}
.yb6{bottom:565.125000px;}
.ya0{bottom:567.825000px;}
.y8a{bottom:568.185000px;}
.y15b{bottom:582.585000px;}
.yf9{bottom:582.945000px;}
.yd0{bottom:583.305000px;}
.y65{bottom:584.025000px;}
.y11d{bottom:586.005000px;}
.yb5{bottom:586.905000px;}
.y9f{bottom:588.705000px;}
.y11{bottom:594.105000px;}
.ycf{bottom:600.585000px;}
.yf8{bottom:604.725000px;}
.y64{bottom:605.805000px;}
.y15a{bottom:606.165000px;}
.y11c{bottom:607.785000px;}
.yb4{bottom:608.685000px;}
.y9e{bottom:609.765000px;}
.yce{bottom:617.865000px;}
.y41{bottom:623.085000px;}
.yf7{bottom:626.505000px;}
.y63{bottom:627.585000px;}
.y11b{bottom:629.565000px;}
.y159{bottom:629.745000px;}
.y9d{bottom:630.825000px;}
.ycd{bottom:635.145000px;}
.y40{bottom:640.365000px;}
.yf6{bottom:648.285000px;}
.y62{bottom:649.365000px;}
.yb3{bottom:650.085000px;}
.y11a{bottom:651.345000px;}
.y9c{bottom:651.705000px;}
.ycc{bottom:652.245000px;}
.yf{bottom:653.295000px;}
.y158{bottom:653.325000px;}
.yd{bottom:663.045000px;}
.ye{bottom:667.545000px;}
.yf5{bottom:670.065000px;}
.y61{bottom:671.145000px;}
.y119{bottom:673.125000px;}
.y3f{bottom:673.485000px;}
.y9b{bottom:673.845000px;}
.y89{bottom:677.085000px;}
.yb{bottom:679.605000px;}
.yc{bottom:684.105000px;}
.y3e{bottom:691.845000px;}
.y60{bottom:692.925000px;}
.y9a{bottom:695.625000px;}
.y7b{bottom:698.865000px;}
.y157{bottom:700.665000px;}
.y3d{bottom:709.845000px;}
.yf4{bottom:713.670000px;}
.ya{bottom:714.210000px;}
.y5f{bottom:714.750000px;}
.y118{bottom:715.110000px;}
.y99{bottom:717.450000px;}
.y156{bottom:724.290000px;}
.y3c{bottom:728.070000px;}
.y117{bottom:732.390000px;}
.yf3{bottom:735.630000px;}
.y5e{bottom:736.710000px;}
.y98{bottom:739.230000px;}
.y7a{bottom:742.650000px;}
.y9{bottom:743.550000px;}
.y3b{bottom:746.250000px;}
.y155{bottom:747.870000px;}
.y116{bottom:749.490000px;}
.yf2{bottom:757.410000px;}
.y5d{bottom:758.490000px;}
.y97{bottom:761.010000px;}
.y3a{bottom:764.430000px;}
.y115{bottom:766.770000px;}
.y154{bottom:771.450000px;}
.y16f{bottom:771.810000px;}
.yf1{bottom:779.190000px;}
.y5c{bottom:780.270000px;}
.y39{bottom:782.610000px;}
.y96{bottom:782.790000px;}
.y114{bottom:784.050000px;}
.y8{bottom:789.270000px;}
.y153{bottom:795.210000px;}
.y38{bottom:800.790000px;}
.yf0{bottom:800.970000px;}
.y113{bottom:801.330000px;}
.y5b{bottom:802.050000px;}
.y95{bottom:804.570000px;}
.y112{bottom:818.610000px;}
.y152{bottom:818.790000px;}
.y37{bottom:818.970000px;}
.y7{bottom:823.470000px;}
.y5a{bottom:823.830000px;}
.y94{bottom:826.350000px;}
.y111{bottom:835.890000px;}
.y36{bottom:836.970000px;}
.y151{bottom:842.370000px;}
.yef{bottom:842.550000px;}
.y59{bottom:845.610000px;}
.y110{bottom:852.990000px;}
.y6{bottom:857.670000px;}
.y150{bottom:865.950000px;}
.yee{bottom:866.130000px;}
.y58{bottom:867.390000px;}
.y35{bottom:870.270000px;}
.ycb{bottom:873.330000px;}
.y5{bottom:921.390000px;}
.y57{bottom:928.080000px;}
.y33{bottom:929.340000px;}
.y4{bottom:934.200000px;}
.y3{bottom:946.800000px;}
.y2{bottom:959.580000px;}
.y1{bottom:972.180000px;}
.h7{height:0.035980px;}
.h14{height:16.380000px;}
.h1b{height:17.640000px;}
.hc{height:21.240000px;}
.h12{height:26.218080px;}
.ha{height:26.671680px;}
.h6{height:27.004320px;}
.h2{height:34.159680px;}
.h19{height:34.284960px;}
.h1a{height:36.540000px;}
.h13{height:41.824080px;}
.h15{height:44.172000px;}
.h9{height:45.000000px;}
.h5{height:45.650160px;}
.hb{height:46.698480px;}
.h1c{height:46.818000px;}
.h10{height:46.869120px;}
.h16{height:49.062960px;}
.h11{height:49.242240px;}
.hf{height:49.421520px;}
.he{height:49.536000px;}
.hd{height:54.023040px;}
.h8{height:59.112000px;}
.h17{height:59.152320px;}
.h18{height:62.208000px;}
.h1f{height:63.504000px;}
.h21{height:63.840960px;}
.h20{height:67.184640px;}
.h1d{height:68.956875px;}
.h22{height:69.439680px;}
.h1e{height:74.004654px;}
.h4{height:79.380000px;}
.h23{height:79.925027px;}
.h3{height:93.872160px;}
.h1{height:1020.000000px;}
.h0{height:1020.060000px;}
.w8{width:42.480000px;}
.w7{width:42.516000px;}
.w5{width:266.835000px;}
.w6{width:267.015000px;}
.w4{width:533.850000px;}
.w3{width:721.439978px;}
.w2{width:721.439989px;}
.w0{width:721.440000px;}
.w1{width:721.500000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x13{left:23.760000px;}
.x12{left:28.440000px;}
.x26{left:32.076000px;}
.x1a{left:36.576000px;}
.xf{left:37.800000px;}
.x11{left:41.040000px;}
.xe{left:85.536000px;}
.x9{left:93.635989px;}
.x23{left:114.875989px;}
.x5{left:120.995989px;}
.x15{left:123.335989px;}
.x17{left:126.935989px;}
.x7{left:128.915989px;}
.x2d{left:130.535989px;}
.x4{left:135.575989px;}
.x2{left:142.055989px;}
.x18{left:144.755989px;}
.x8{left:147.455989px;}
.x21{left:224.174978px;}
.x27{left:226.514978px;}
.x22{left:229.034989px;}
.x28{left:231.554989px;}
.xa{left:267.734978px;}
.xb{left:271.694989px;}
.x3{left:276.014989px;}
.x2b{left:286.274978px;}
.xc{left:287.714978px;}
.xd{left:291.674989px;}
.x2c{left:294.734989px;}
.x6{left:297.254989px;}
.x16{left:339.404989px;}
.x10{left:352.365000px;}
.x1{left:360.824989px;}
.x24{left:372.344978px;}
.x25{left:376.844989px;}
.x29{left:398.444978px;}
.x2a{left:403.304989px;}
.x1b{left:502.889978px;}
.x1c{left:507.029989px;}
.x1d{left:555.449978px;}
.x1e{left:560.129989px;}
.x1f{left:623.879978px;}
.x20{left:628.199989px;}
.x19{left:642.420000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.408000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.152000pt;}
.ls2b{letter-spacing:-1.088000pt;}
.ls46{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.906667pt;}
.ls29{letter-spacing:-0.901333pt;}
.ls41{letter-spacing:-0.880000pt;}
.ls19{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.842667pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls3c{letter-spacing:-0.746667pt;}
.ls34{letter-spacing:-0.736000pt;}
.ls2a{letter-spacing:-0.714667pt;}
.ls1d{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.634667pt;}
.ls39{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.549333pt;}
.ls3b{letter-spacing:-0.544000pt;}
.ls31{letter-spacing:-0.524800pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.344533pt;}
.ls33{letter-spacing:-0.322667pt;}
.lsf{letter-spacing:-0.262400pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.234133pt;}
.ls4{letter-spacing:-0.202133pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.176533pt;}
.ls2e{letter-spacing:-0.163733pt;}
.ls3f{letter-spacing:-0.146133pt;}
.ls35{letter-spacing:-0.140800pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.125333pt;}
.ls5{letter-spacing:-0.116267pt;}
.ls1a{letter-spacing:-0.102400pt;}
.ls1c{letter-spacing:-0.086400pt;}
.lse{letter-spacing:-0.083200pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls30{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.015360pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.092267pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.154667pt;}
.ls37{letter-spacing:0.207360pt;}
.ls26{letter-spacing:0.229867pt;}
.ls2f{letter-spacing:0.245867pt;}
.ls0{letter-spacing:0.247680pt;}
.ls25{letter-spacing:0.256000pt;}
.ls45{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.367467pt;}
.ls38{letter-spacing:0.442880pt;}
.ls42{letter-spacing:0.514667pt;}
.ls8{letter-spacing:0.524267pt;}
.lsb{letter-spacing:0.565333pt;}
.ls22{letter-spacing:0.576000pt;}
.ls36{letter-spacing:0.666667pt;}
.ls6{letter-spacing:0.768000pt;}
.ls44{letter-spacing:0.896000pt;}
.ls28{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:2.944000pt;}
.ls1f{letter-spacing:4.224000pt;}
.ls15{letter-spacing:6.144000pt;}
.ls24{letter-spacing:9.088000pt;}
.ls16{letter-spacing:15.631360pt;}
.ls40{letter-spacing:27.345920pt;}
.ws0{word-spacing:-37.120000pt;}
.ws26{word-spacing:-16.840747pt;}
.ws2d{word-spacing:-16.266347pt;}
.ws20{word-spacing:-16.174080pt;}
.ws25{word-spacing:-16.033280pt;}
.ws2b{word-spacing:-16.027947pt;}
.ws22{word-spacing:-15.851413pt;}
.ws28{word-spacing:-15.630080pt;}
.ws21{word-spacing:-15.624747pt;}
.ws29{word-spacing:-15.427413pt;}
.ws2c{word-spacing:-15.294080pt;}
.ws2a{word-spacing:-15.267413pt;}
.ws16{word-spacing:-15.232000pt;}
.ws14{word-spacing:-15.104000pt;}
.ws1d{word-spacing:-15.040000pt;}
.wsb{word-spacing:-14.976000pt;}
.ws13{word-spacing:-14.912000pt;}
.ws15{word-spacing:-14.848000pt;}
.ws12{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.400000pt;}
.ws1a{word-spacing:-14.208000pt;}
.ws17{word-spacing:-13.632000pt;}
.ws1e{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.178880pt;}
.wsd{word-spacing:-13.122667pt;}
.ws6{word-spacing:-12.995413pt;}
.ws5{word-spacing:-12.430080pt;}
.ws27{word-spacing:-12.410880pt;}
.ws4{word-spacing:-12.195947pt;}
.ws3{word-spacing:-11.985707pt;}
.ws11{word-spacing:-11.831040pt;}
.ws7{word-spacing:-11.795413pt;}
.ws1c{word-spacing:-11.715413pt;}
.wse{word-spacing:-10.967040pt;}
.ws19{word-spacing:-10.656000pt;}
.ws23{word-spacing:-10.496000pt;}
.ws1b{word-spacing:-8.960000pt;}
.ws18{word-spacing:-8.805867pt;}
.ws8{word-spacing:-8.576000pt;}
.ws1f{word-spacing:-8.524800pt;}
.ws10{word-spacing:-8.489600pt;}
.ws1{word-spacing:-8.483947pt;}
.wsf{word-spacing:-8.473600pt;}
.ws2{word-spacing:-8.352000pt;}
.wsa{word-spacing:-7.843413pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-2.603093pt;}
._0{margin-left:-1.410560pt;}
._1{width:1.544960pt;}
._2{width:2.714667pt;}
._6{width:3.682133pt;}
._9{width:4.940800pt;}
._4{width:6.651520pt;}
._3{width:7.802240pt;}
._5{width:9.561600pt;}
._8{width:10.582400pt;}
._e{width:12.116693pt;}
._7{width:13.095040pt;}
._b{width:14.064213pt;}
._21{width:15.119787pt;}
._f{width:16.074240pt;}
._12{width:17.728000pt;}
._d{width:18.752000pt;}
._c{width:19.954773pt;}
._18{width:20.916480pt;}
._1c{width:22.632960pt;}
._1d{width:23.815253pt;}
._1b{width:26.626560pt;}
._24{width:27.863467pt;}
._13{width:30.720000pt;}
._14{width:31.738453pt;}
._16{width:33.019307pt;}
._15{width:34.145280pt;}
._17{width:36.193280pt;}
._10{width:37.255680pt;}
._11{width:38.593707pt;}
._1e{width:40.509013pt;}
._1f{width:41.759147pt;}
._22{width:44.789760pt;}
._23{width:46.103040pt;}
._26{width:50.157227pt;}
._25{width:51.176960pt;}
._20{width:61.894827pt;}
._29{width:62.834347pt;}
._28{width:138.008320pt;}
._27{width:139.272107pt;}
._19{width:187.261440pt;}
._1a{width:188.385707pt;}
.fs4{font-size:26.880000pt;}
.fs0{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fsa{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:93.440000pt;}
.y10{bottom:-14.853333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:2.720000pt;}
.y1b{bottom:3.040000pt;}
.y34{bottom:3.680000pt;}
.y17{bottom:4.000000pt;}
.y14{bottom:16.000000pt;}
.y1a{bottom:17.786667pt;}
.y12{bottom:25.120000pt;}
.y13{bottom:29.280000pt;}
.y19{bottom:32.346667pt;}
.y32{bottom:78.912000pt;}
.yed{bottom:79.232000pt;}
.y79{bottom:80.192000pt;}
.y10f{bottom:82.432000pt;}
.y92{bottom:82.912000pt;}
.yec{bottom:83.232000pt;}
.y14f{bottom:89.792000pt;}
.y31{bottom:92.832000pt;}
.y138{bottom:93.152000pt;}
.yb2{bottom:96.512000pt;}
.y56{bottom:96.672000pt;}
.y91{bottom:96.832000pt;}
.yeb{bottom:97.472000pt;}
.y16e{bottom:97.952000pt;}
.y13d{bottom:99.392000pt;}
.y78{bottom:99.552000pt;}
.y10e{bottom:101.792000pt;}
.y30{bottom:106.752000pt;}
.y90{bottom:107.072000pt;}
.y2f{bottom:110.752000pt;}
.yea{bottom:111.392000pt;}
.y93{bottom:112.192000pt;}
.y130{bottom:113.952000pt;}
.yca{bottom:114.752000pt;}
.yb1{bottom:115.872000pt;}
.y55{bottom:116.032000pt;}
.y13c{bottom:118.752000pt;}
.y77{bottom:118.912000pt;}
.y2e{bottom:120.672000pt;}
.y10d{bottom:121.152000pt;}
.y2d{bottom:124.672000pt;}
.ye9{bottom:125.312000pt;}
.y8f{bottom:131.552000pt;}
.y14e{bottom:131.712000pt;}
.ye3{bottom:132.512000pt;}
.y12f{bottom:133.312000pt;}
.yc9{bottom:134.106667pt;}
.y88{bottom:134.586667pt;}
.y2c{bottom:134.906667pt;}
.y54{bottom:135.386667pt;}
.y137{bottom:136.506667pt;}
.y13b{bottom:138.106667pt;}
.y76{bottom:138.426667pt;}
.ye8{bottom:139.226667pt;}
.y16d{bottom:139.866667pt;}
.y10c{bottom:140.506667pt;}
.ye7{bottom:143.226667pt;}
.y87{bottom:148.506667pt;}
.y8e{bottom:150.906667pt;}
.ye2{bottom:151.866667pt;}
.yb0{bottom:152.346667pt;}
.y12e{bottom:152.666667pt;}
.y14d{bottom:152.826667pt;}
.yc8{bottom:153.466667pt;}
.ye6{bottom:153.626667pt;}
.y53{bottom:154.906667pt;}
.y13a{bottom:157.466667pt;}
.y75{bottom:157.786667pt;}
.y2b{bottom:160.826667pt;}
.y16c{bottom:160.986667pt;}
.y86{bottom:162.426667pt;}
.y85{bottom:166.426667pt;}
.y8d{bottom:170.266667pt;}
.ye1{bottom:171.226667pt;}
.yaf{bottom:171.386667pt;}
.y12d{bottom:172.026667pt;}
.yc7{bottom:172.826667pt;}
.y136{bottom:173.626667pt;}
.y14c{bottom:173.786667pt;}
.y52{bottom:174.266667pt;}
.y10b{bottom:175.226667pt;}
.y2a{bottom:176.186667pt;}
.y84{bottom:176.666667pt;}
.y74{bottom:177.146667pt;}
.y16b{bottom:181.946667pt;}
.y8c{bottom:189.626667pt;}
.ye0{bottom:190.586667pt;}
.y10a{bottom:191.386667pt;}
.y29{bottom:191.546667pt;}
.yc6{bottom:192.186667pt;}
.y135{bottom:192.346667pt;}
.y51{bottom:193.626667pt;}
.y139{bottom:193.946667pt;}
.y14b{bottom:194.746667pt;}
.y73{bottom:196.506667pt;}
.y16a{bottom:202.906667pt;}
.y109{bottom:207.546667pt;}
.y8b{bottom:208.986667pt;}
.ydf{bottom:209.946667pt;}
.y12c{bottom:210.746667pt;}
.y134{bottom:211.066667pt;}
.yc5{bottom:211.546667pt;}
.y50{bottom:212.986667pt;}
.y14a{bottom:215.706667pt;}
.y72{bottom:215.866667pt;}
.y28{bottom:220.186667pt;}
.y108{bottom:223.706667pt;}
.y169{bottom:223.866667pt;}
.yae{bottom:224.666667pt;}
.y83{bottom:228.346667pt;}
.yde{bottom:229.306667pt;}
.y133{bottom:229.626667pt;}
.y12b{bottom:230.106667pt;}
.yc4{bottom:231.066667pt;}
.y4f{bottom:232.346667pt;}
.ye5{bottom:233.626667pt;}
.y71{bottom:235.226667pt;}
.y27{bottom:236.506667pt;}
.y149{bottom:236.666667pt;}
.y107{bottom:239.866667pt;}
.yad{bottom:243.226667pt;}
.y168{bottom:244.826667pt;}
.y82{bottom:247.706667pt;}
.y132{bottom:248.346667pt;}
.ydd{bottom:248.666667pt;}
.y12a{bottom:249.466667pt;}
.yc3{bottom:250.426667pt;}
.y4e{bottom:251.706667pt;}
.y26{bottom:252.666667pt;}
.ye4{bottom:252.986667pt;}
.y70{bottom:254.586667pt;}
.y106{bottom:256.026667pt;}
.y148{bottom:257.786667pt;}
.yac{bottom:261.946667pt;}
.y167{bottom:265.986667pt;}
.y131{bottom:267.106667pt;}
.y81{bottom:267.266667pt;}
.ydc{bottom:268.066667pt;}
.y25{bottom:268.866667pt;}
.yc2{bottom:269.826667pt;}
.y4d{bottom:271.106667pt;}
.y105{bottom:272.226667pt;}
.y147{bottom:278.786667pt;}
.yab{bottom:280.706667pt;}
.y24{bottom:285.026667pt;}
.y80{bottom:286.626667pt;}
.y166{bottom:286.946667pt;}
.ydb{bottom:287.426667pt;}
.y129{bottom:288.226667pt;}
.yc1{bottom:289.186667pt;}
.y4c{bottom:290.466667pt;}
.y6f{bottom:291.106667pt;}
.yaa{bottom:299.266667pt;}
.y146{bottom:299.746667pt;}
.y23{bottom:301.186667pt;}
.y104{bottom:305.026667pt;}
.y7f{bottom:305.986667pt;}
.yda{bottom:306.946667pt;}
.y128{bottom:307.746667pt;}
.y165{bottom:307.906667pt;}
.yc0{bottom:308.546667pt;}
.y4b{bottom:309.826667pt;}
.y6e{bottom:310.306667pt;}
.y22{bottom:317.186667pt;}
.ya9{bottom:317.986667pt;}
.y145{bottom:320.706667pt;}
.y103{bottom:324.386667pt;}
.y7e{bottom:325.346667pt;}
.yd9{bottom:326.306667pt;}
.y127{bottom:327.106667pt;}
.ybf{bottom:327.906667pt;}
.y164{bottom:328.866667pt;}
.y4a{bottom:329.186667pt;}
.y6d{bottom:329.346667pt;}
.y21{bottom:333.346667pt;}
.ya8{bottom:336.706667pt;}
.y144{bottom:341.666667pt;}
.y102{bottom:343.746667pt;}
.y7d{bottom:344.706667pt;}
.yd8{bottom:345.666667pt;}
.y126{bottom:346.466667pt;}
.ybe{bottom:347.266667pt;}
.y49{bottom:348.706667pt;}
.y20{bottom:349.506667pt;}
.y163{bottom:349.826667pt;}
.ya7{bottom:355.266667pt;}
.y143{bottom:362.626667pt;}
.y101{bottom:363.106667pt;}
.y7c{bottom:364.066667pt;}
.yd7{bottom:365.026667pt;}
.y1f{bottom:365.666667pt;}
.y125{bottom:365.826667pt;}
.ybd{bottom:366.626667pt;}
.y48{bottom:368.066667pt;}
.y162{bottom:370.946667pt;}
.ya6{bottom:373.986667pt;}
.y1e{bottom:381.666667pt;}
.y100{bottom:382.466667pt;}
.y6c{bottom:383.426667pt;}
.y142{bottom:383.746667pt;}
.yd6{bottom:384.386667pt;}
.y124{bottom:385.186667pt;}
.ybc{bottom:385.986667pt;}
.y47{bottom:387.426667pt;}
.y161{bottom:391.906667pt;}
.ya5{bottom:392.706667pt;}
.yff{bottom:401.826667pt;}
.y6b{bottom:402.786667pt;}
.yd5{bottom:403.746667pt;}
.y123{bottom:404.546667pt;}
.y141{bottom:404.706667pt;}
.ybb{bottom:405.346667pt;}
.y46{bottom:406.786667pt;}
.y1d{bottom:411.266667pt;}
.y160{bottom:412.866667pt;}
.yfe{bottom:421.186667pt;}
.y6a{bottom:422.146667pt;}
.yd4{bottom:423.106667pt;}
.y122{bottom:423.906667pt;}
.yba{bottom:424.866667pt;}
.y140{bottom:425.666667pt;}
.y45{bottom:426.146667pt;}
.y1c{bottom:427.266667pt;}
.ya4{bottom:429.986667pt;}
.y15f{bottom:433.826667pt;}
.yfd{bottom:440.546667pt;}
.y69{bottom:441.506667pt;}
.yd3{bottom:442.466667pt;}
.y121{bottom:443.266667pt;}
.y18{bottom:444.066667pt;}
.yb9{bottom:444.226667pt;}
.y44{bottom:445.506667pt;}
.y13f{bottom:446.626667pt;}
.ya3{bottom:448.733333pt;}
.y15e{bottom:454.813333pt;}
.yfc{bottom:460.093333pt;}
.y68{bottom:461.053333pt;}
.yd2{bottom:461.853333pt;}
.y120{bottom:462.653333pt;}
.yb8{bottom:463.613333pt;}
.y43{bottom:464.893333pt;}
.ya2{bottom:467.293333pt;}
.y15d{bottom:475.773333pt;}
.yfb{bottom:479.453333pt;}
.y67{bottom:480.413333pt;}
.yd1{bottom:481.213333pt;}
.y11f{bottom:482.013333pt;}
.yb7{bottom:482.973333pt;}
.y13e{bottom:484.413333pt;}
.ya1{bottom:486.013333pt;}
.y15c{bottom:496.893333pt;}
.y16{bottom:498.653333pt;}
.yfa{bottom:498.813333pt;}
.y66{bottom:499.773333pt;}
.y42{bottom:501.213333pt;}
.y11e{bottom:501.533333pt;}
.yb6{bottom:502.333333pt;}
.ya0{bottom:504.733333pt;}
.y8a{bottom:505.053333pt;}
.y15b{bottom:517.853333pt;}
.yf9{bottom:518.173333pt;}
.yd0{bottom:518.493333pt;}
.y65{bottom:519.133333pt;}
.y11d{bottom:520.893333pt;}
.yb5{bottom:521.693333pt;}
.y9f{bottom:523.293333pt;}
.y11{bottom:528.093333pt;}
.ycf{bottom:533.853333pt;}
.yf8{bottom:537.533333pt;}
.y64{bottom:538.493333pt;}
.y15a{bottom:538.813333pt;}
.y11c{bottom:540.253333pt;}
.yb4{bottom:541.053333pt;}
.y9e{bottom:542.013333pt;}
.yce{bottom:549.213333pt;}
.y41{bottom:553.853333pt;}
.yf7{bottom:556.893333pt;}
.y63{bottom:557.853333pt;}
.y11b{bottom:559.613333pt;}
.y159{bottom:559.773333pt;}
.y9d{bottom:560.733333pt;}
.ycd{bottom:564.573333pt;}
.y40{bottom:569.213333pt;}
.yf6{bottom:576.253333pt;}
.y62{bottom:577.213333pt;}
.yb3{bottom:577.853333pt;}
.y11a{bottom:578.973333pt;}
.y9c{bottom:579.293333pt;}
.ycc{bottom:579.773333pt;}
.yf{bottom:580.706667pt;}
.y158{bottom:580.733333pt;}
.yd{bottom:589.373333pt;}
.ye{bottom:593.373333pt;}
.yf5{bottom:595.613333pt;}
.y61{bottom:596.573333pt;}
.y119{bottom:598.333333pt;}
.y3f{bottom:598.653333pt;}
.y9b{bottom:598.973333pt;}
.y89{bottom:601.853333pt;}
.yb{bottom:604.093333pt;}
.yc{bottom:608.093333pt;}
.y3e{bottom:614.973333pt;}
.y60{bottom:615.933333pt;}
.y9a{bottom:618.333333pt;}
.y7b{bottom:621.213333pt;}
.y157{bottom:622.813333pt;}
.y3d{bottom:630.973333pt;}
.yf4{bottom:634.373333pt;}
.ya{bottom:634.853333pt;}
.y5f{bottom:635.333333pt;}
.y118{bottom:635.653333pt;}
.y99{bottom:637.733333pt;}
.y156{bottom:643.813333pt;}
.y3c{bottom:647.173333pt;}
.y117{bottom:651.013333pt;}
.yf3{bottom:653.893333pt;}
.y5e{bottom:654.853333pt;}
.y98{bottom:657.093333pt;}
.y7a{bottom:660.133333pt;}
.y9{bottom:660.933333pt;}
.y3b{bottom:663.333333pt;}
.y155{bottom:664.773333pt;}
.y116{bottom:666.213333pt;}
.yf2{bottom:673.253333pt;}
.y5d{bottom:674.213333pt;}
.y97{bottom:676.453333pt;}
.y3a{bottom:679.493333pt;}
.y115{bottom:681.573333pt;}
.y154{bottom:685.733333pt;}
.y16f{bottom:686.053333pt;}
.yf1{bottom:692.613333pt;}
.y5c{bottom:693.573333pt;}
.y39{bottom:695.653333pt;}
.y96{bottom:695.813333pt;}
.y114{bottom:696.933333pt;}
.y8{bottom:701.573333pt;}
.y153{bottom:706.853333pt;}
.y38{bottom:711.813333pt;}
.yf0{bottom:711.973333pt;}
.y113{bottom:712.293333pt;}
.y5b{bottom:712.933333pt;}
.y95{bottom:715.173333pt;}
.y112{bottom:727.653333pt;}
.y152{bottom:727.813333pt;}
.y37{bottom:727.973333pt;}
.y7{bottom:731.973333pt;}
.y5a{bottom:732.293333pt;}
.y94{bottom:734.533333pt;}
.y111{bottom:743.013333pt;}
.y36{bottom:743.973333pt;}
.y151{bottom:748.773333pt;}
.yef{bottom:748.933333pt;}
.y59{bottom:751.653333pt;}
.y110{bottom:758.213333pt;}
.y6{bottom:762.373333pt;}
.y150{bottom:769.733333pt;}
.yee{bottom:769.893333pt;}
.y58{bottom:771.013333pt;}
.y35{bottom:773.573333pt;}
.ycb{bottom:776.293333pt;}
.y5{bottom:819.013333pt;}
.y57{bottom:824.960000pt;}
.y33{bottom:826.080000pt;}
.y4{bottom:830.400000pt;}
.y3{bottom:841.600000pt;}
.y2{bottom:852.960000pt;}
.y1{bottom:864.160000pt;}
.h7{height:0.031983pt;}
.h14{height:14.560000pt;}
.h1b{height:15.680000pt;}
.hc{height:18.880000pt;}
.h12{height:23.304960pt;}
.ha{height:23.708160pt;}
.h6{height:24.003840pt;}
.h2{height:30.364160pt;}
.h19{height:30.475520pt;}
.h1a{height:32.480000pt;}
.h13{height:37.176960pt;}
.h15{height:39.264000pt;}
.h9{height:40.000000pt;}
.h5{height:40.577920pt;}
.hb{height:41.509760pt;}
.h1c{height:41.616000pt;}
.h10{height:41.661440pt;}
.h16{height:43.611520pt;}
.h11{height:43.770880pt;}
.hf{height:43.930240pt;}
.he{height:44.032000pt;}
.hd{height:48.020480pt;}
.h8{height:52.544000pt;}
.h17{height:52.579840pt;}
.h18{height:55.296000pt;}
.h1f{height:56.448000pt;}
.h21{height:56.747520pt;}
.h20{height:59.719680pt;}
.h1d{height:61.295000pt;}
.h22{height:61.724160pt;}
.h1e{height:65.781915pt;}
.h4{height:70.560000pt;}
.h23{height:71.044468pt;}
.h3{height:83.441920pt;}
.h1{height:906.666667pt;}
.h0{height:906.720000pt;}
.w8{width:37.760000pt;}
.w7{width:37.792000pt;}
.w5{width:237.186667pt;}
.w6{width:237.346667pt;}
.w4{width:474.533333pt;}
.w3{width:641.279981pt;}
.w2{width:641.279990pt;}
.w0{width:641.280000pt;}
.w1{width:641.333333pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x13{left:21.120000pt;}
.x12{left:25.280000pt;}
.x26{left:28.512000pt;}
.x1a{left:32.512000pt;}
.xf{left:33.600000pt;}
.x11{left:36.480000pt;}
.xe{left:76.032000pt;}
.x9{left:83.231990pt;}
.x23{left:102.111990pt;}
.x5{left:107.551990pt;}
.x15{left:109.631990pt;}
.x17{left:112.831990pt;}
.x7{left:114.591990pt;}
.x2d{left:116.031990pt;}
.x4{left:120.511990pt;}
.x2{left:126.271990pt;}
.x18{left:128.671990pt;}
.x8{left:131.071990pt;}
.x21{left:199.266648pt;}
.x27{left:201.346648pt;}
.x22{left:203.586657pt;}
.x28{left:205.826657pt;}
.xa{left:237.986648pt;}
.xb{left:241.506657pt;}
.x3{left:245.346657pt;}
.x2b{left:254.466648pt;}
.xc{left:255.746648pt;}
.xd{left:259.266657pt;}
.x2c{left:261.986657pt;}
.x6{left:264.226657pt;}
.x16{left:301.693324pt;}
.x10{left:313.213333pt;}
.x1{left:320.733324pt;}
.x24{left:330.973314pt;}
.x25{left:334.973324pt;}
.x29{left:354.173314pt;}
.x2a{left:358.493324pt;}
.x1b{left:447.013314pt;}
.x1c{left:450.693324pt;}
.x1d{left:493.733314pt;}
.x1e{left:497.893324pt;}
.x1f{left:554.559981pt;}
.x20{left:558.399990pt;}
.x19{left:571.040000pt;}
}




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