
    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_3dd017d8682ce70644719a09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_0d379c2b2f92a114755ba0b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_12c56f1668bf62b8afb95e1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a2a1e6d3c19420be6fc2ca96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.859835;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_9af1d389432a15198434c4a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.859835;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_6e16d19d633f7e0dce82cab1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_77f749a0e3f813dee8019a9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_abc7603788e5216e46095cd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_9aaf206e0db1394c3970f1ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_ff353407cd6d9a981a3b66f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_379dd0b1c45da39d4d4247df.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m9{transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m7{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-27.000000px;}
.v3{vertical-align:-24.120000px;}
.vc{vertical-align:-17.857589px;}
.v7{vertical-align:-14.760000px;}
.vb{vertical-align:-11.519662px;}
.v9{vertical-align:-6.120000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.880000px;}
.va{vertical-align:6.120000px;}
.v2{vertical-align:24.120000px;}
.v1{vertical-align:27.000000px;}
.v4{vertical-align:36.000000px;}
.ls40{letter-spacing:-6.060000px;}
.ls1c{letter-spacing:-5.256000px;}
.ls20{letter-spacing:-4.464000px;}
.ls2b{letter-spacing:-2.520000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.193055px;}
.ls13{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.151993px;}
.lsa{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.096528px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.069000px;}
.ls23{letter-spacing:-0.045360px;}
.ls2e{letter-spacing:-0.042441px;}
.ls3a{letter-spacing:-0.024132px;}
.ls3f{letter-spacing:-0.021960px;}
.ls2f{letter-spacing:-0.018999px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.011520px;}
.ls29{letter-spacing:0.018999px;}
.ls21{letter-spacing:0.021960px;}
.ls38{letter-spacing:0.024132px;}
.ls25{letter-spacing:0.033650px;}
.ls27{letter-spacing:0.034353px;}
.ls26{letter-spacing:0.035517px;}
.ls28{letter-spacing:0.041580px;}
.ls35{letter-spacing:0.042740px;}
.ls37{letter-spacing:0.043634px;}
.ls36{letter-spacing:0.045112px;}
.ls4{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.090000px;}
.ls2d{letter-spacing:0.090600px;}
.ls31{letter-spacing:0.113995px;}
.ls41{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.144791px;}
.ls2a{letter-spacing:0.151993px;}
.ls1{letter-spacing:0.174960px;}
.ls0{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.193055px;}
.ls3e{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.720000px;}
.ls24{letter-spacing:1.530000px;}
.ls2{letter-spacing:1.800000px;}
.ls16{letter-spacing:2.801520px;}
.ls18{letter-spacing:2.921520px;}
.ls15{letter-spacing:3.161520px;}
.ls19{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.320000px;}
.ls1e{letter-spacing:5.760000px;}
.ls34{letter-spacing:9.000000px;}
.ls17{letter-spacing:12.881520px;}
.ls3{letter-spacing:14.070000px;}
.ls11{letter-spacing:17.640000px;}
.lse{letter-spacing:17.760000px;}
.ls12{letter-spacing:18.000000px;}
.ls9{letter-spacing:18.120000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws28{word-spacing:-57.768570px;}
.ws1b{word-spacing:-45.481445px;}
.ws3{word-spacing:-36.000000px;}
.ws2d{word-spacing:-20.270777px;}
.ws2b{word-spacing:-20.101854px;}
.ws25{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws32{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws33{word-spacing:-17.640000px;}
.wsb{word-spacing:-17.568000px;}
.ws17{word-spacing:-17.496000px;}
.ws2f{word-spacing:-16.650000px;}
.ws5{word-spacing:-16.470000px;}
.ws2e{word-spacing:-16.448040px;}
.ws14{word-spacing:-16.424640px;}
.ws24{word-spacing:-16.290000px;}
.ws1f{word-spacing:-15.959270px;}
.ws20{word-spacing:-15.845275px;}
.wse{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.826276px;}
.wsf{word-spacing:-15.768000px;}
.ws30{word-spacing:-15.750000px;}
.ws11{word-spacing:-15.624000px;}
.ws16{word-spacing:-15.480000px;}
.ws8{word-spacing:-12.150000px;}
.ws2{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.940000px;}
.ws1{word-spacing:-11.880000px;}
.wsd{word-spacing:-11.790000px;}
.ws18{word-spacing:-10.710000px;}
.ws15{word-spacing:-10.530000px;}
.ws27{word-spacing:-6.957796px;}
.ws1a{word-spacing:-5.477902px;}
.ws1c{word-spacing:-5.435462px;}
.ws4{word-spacing:-0.036000px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:0.288000px;}
.ws29{word-spacing:136.200792px;}
.ws19{word-spacing:164.077973px;}
.ws26{word-spacing:208.404766px;}
.ws21{word-spacing:661.372425px;}
.ws1e{word-spacing:700.352309px;}
.ws22{word-spacing:798.109173px;}
.ws23{word-spacing:802.364978px;}
.ws2c{word-spacing:845.355750px;}
.ws2a{word-spacing:1008.610409px;}
._1b{margin-left:-8.946720px;}
._2{margin-left:-7.341720px;}
._4{margin-left:-5.362080px;}
._3{margin-left:-3.846000px;}
._6{margin-left:-2.826840px;}
._0{margin-left:-1.826280px;}
._1{width:1.872000px;}
._d{width:2.877600px;}
._8{width:3.952800px;}
._9{width:5.006880px;}
._11{width:6.067920px;}
._b{width:7.207440px;}
._a{width:8.564400px;}
._12{width:9.666360px;}
._e{width:10.800000px;}
._f{width:11.952000px;}
._10{width:12.954600px;}
._7{width:13.966560px;}
._18{width:15.264000px;}
._19{width:16.325400px;}
._5{width:17.721720px;}
._15{width:19.800000px;}
._16{width:21.000000px;}
._13{width:22.248000px;}
._20{width:23.400000px;}
._1e{width:24.480000px;}
._1d{width:26.064000px;}
._1f{width:27.072000px;}
._14{width:29.280000px;}
._17{width:30.936000px;}
._1c{width:32.376000px;}
._1a{width:38.784000px;}
._21{width:54.048000px;}
._c{width:846.120000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:19.704685px;}
.fs14{font-size:25.028041px;}
.fsb{font-size:27.897287px;}
.fsa{font-size:27.901157px;}
.fsc{font-size:32.897730px;}
.fs7{font-size:34.911196px;}
.fs16{font-size:35.433931px;}
.fs15{font-size:35.458952px;}
.fs3{font-size:36.000000px;}
.fs10{font-size:37.998263px;}
.fs13{font-size:41.785278px;}
.fs4{font-size:42.120000px;}
.fs6{font-size:44.397934px;}
.fs9{font-size:45.481445px;}
.fse{font-size:45.487754px;}
.fs2{font-size:47.880000px;}
.fs1a{font-size:48.263755px;}
.fs8{font-size:51.120000px;}
.fsf{font-size:56.997394px;}
.fs12{font-size:57.768570px;}
.fs17{font-size:57.809362px;}
.fs1b{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:72.395632px;}
.fs11{font-size:75.996525px;}
.fs18{font-size:80.696998px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y95{bottom:28.536191px;}
.yb2{bottom:29.256157px;}
.ya0{bottom:29.256170px;}
.yb0{bottom:29.331945px;}
.yab{bottom:29.369839px;}
.yc4{bottom:36.245417px;}
.ycc{bottom:37.304296px;}
.ya4{bottom:43.467786px;}
.y8f{bottom:43.467804px;}
.ybf{bottom:55.210897px;}
.ya1{bottom:68.291892px;}
.yac{bottom:68.291900px;}
.ya2{bottom:68.291918px;}
.y96{bottom:73.978209px;}
.y97{bottom:73.978235px;}
.y1{bottom:78.480000px;}
.yaf{bottom:79.738048px;}
.ya9{bottom:80.686905px;}
.y9e{bottom:81.179538px;}
.ycd{bottom:86.741416px;}
.y93{bottom:88.796157px;}
.yc5{bottom:93.963931px;}
.yb1{bottom:95.960310px;}
.y9f{bottom:100.166521px;}
.yaa{bottom:102.136971px;}
.y9c{bottom:102.403733px;}
.ya8{bottom:102.403742px;}
.y9d{bottom:102.403760px;}
.yca{bottom:102.485017px;}
.y94{bottom:106.193123px;}
.y11f{bottom:111.690000px;}
.yc0{bottom:111.822401px;}
.y10b{bottom:111.870000px;}
.yae{bottom:113.508847px;}
.ya7{bottom:113.584634px;}
.y9b{bottom:113.622545px;}
.y75{bottom:114.570000px;}
.y5c{bottom:114.660000px;}
.y84{bottom:117.810000px;}
.y8b{bottom:126.810000px;}
.ycb{bottom:129.729965px;}
.yc9{bottom:130.068806px;}
.yc3{bottom:134.881891px;}
.y144{bottom:135.900000px;}
.ybd{bottom:137.970000px;}
.y46{bottom:140.670000px;}
.yc6{bottom:143.593575px;}
.yc8{bottom:144.270295px;}
.y11e{bottom:146.970000px;}
.y5b{bottom:149.670000px;}
.y83{bottom:152.910000px;}
.y90{bottom:153.567706px;}
.y92{bottom:153.567733px;}
.y10a{bottom:159.030000px;}
.y8a{bottom:161.910000px;}
.y99{bottom:164.938067px;}
.ya6{bottom:164.938076px;}
.y9a{bottom:164.938094px;}
.y151{bottom:170.820000px;}
.y143{bottom:170.910000px;}
.yea{bottom:173.070000px;}
.y45{bottom:175.770000px;}
.y12e{bottom:182.070000px;}
.y5a{bottom:184.770000px;}
.y8d{bottom:187.830000px;}
.y82{bottom:188.010000px;}
.y109{bottom:193.950000px;}
.y11d{bottom:194.130000px;}
.yc1{bottom:195.055079px;}
.y89{bottom:197.010000px;}
.yb5{bottom:198.093728px;}
.yb7{bottom:199.194096px;}
.y150{bottom:206.100000px;}
.ye9{bottom:208.170000px;}
.yc7{bottom:209.497221px;}
.y44{bottom:210.870000px;}
.y2e{bottom:215.550000px;}
.y8c{bottom:218.070000px;}
.yb3{bottom:218.195541px;}
.yad{bottom:218.780527px;}
.ya3{bottom:218.780536px;}
.y59{bottom:219.870000px;}
.y81{bottom:223.110000px;}
.ya5{bottom:223.229836px;}
.y91{bottom:223.229845px;}
.y108{bottom:229.260000px;}
.y88{bottom:232.140000px;}
.y14f{bottom:241.140000px;}
.ye8{bottom:243.300000px;}
.y43{bottom:246.000000px;}
.y142{bottom:253.020000px;}
.yd0{bottom:253.087893px;}
.y2d{bottom:254.100000px;}
.ycf{bottom:254.656465px;}
.y58{bottom:255.000000px;}
.y80{bottom:258.060000px;}
.y12d{bottom:264.180000px;}
.y107{bottom:264.270000px;}
.y87{bottom:267.240000px;}
.ye7{bottom:278.400000px;}
.y42{bottom:281.100000px;}
.yc2{bottom:283.536906px;}
.y14e{bottom:288.120000px;}
.y141{bottom:288.300000px;}
.y57{bottom:290.100000px;}
.y7f{bottom:291.810000px;}
.y2c{bottom:298.200000px;}
.y12c{bottom:299.370000px;}
.y86{bottom:302.160000px;}
.y106{bottom:311.250000px;}
.ye6{bottom:313.500000px;}
.y41{bottom:316.200000px;}
.y15a{bottom:323.220000px;}
.y14d{bottom:323.400000px;}
.y74{bottom:325.110000px;}
.y56{bottom:325.200000px;}
.y140{bottom:335.280000px;}
.yb8{bottom:336.900000px;}
.y85{bottom:339.960000px;}
.y2b{bottom:342.300000px;}
.y7e{bottom:345.180000px;}
.y12b{bottom:346.350000px;}
.y105{bottom:346.440000px;}
.ye5{bottom:348.600000px;}
.y40{bottom:351.300000px;}
.y14c{bottom:358.500000px;}
.y73{bottom:360.210000px;}
.y55{bottom:360.300000px;}
.y6c{bottom:368.850000px;}
.y13f{bottom:370.470000px;}
.yd4{bottom:372.000000px;}
.y12a{bottom:381.540000px;}
.y7d{bottom:383.700000px;}
.y2a{bottom:386.400000px;}
.yf1{bottom:389.550000px;}
.y11c{bottom:393.420000px;}
.y104{bottom:393.600000px;}
.y54{bottom:395.400000px;}
.yb4{bottom:395.898433px;}
.yb6{bottom:402.563964px;}
.y14b{bottom:405.660000px;}
.y6b{bottom:407.100000px;}
.y13e{bottom:417.630000px;}
.y7c{bottom:418.800000px;}
.y29{bottom:421.500000px;}
.y98{bottom:422.067265px;}
.y8e{bottom:422.067275px;}
.y103{bottom:428.520000px;}
.y129{bottom:428.700000px;}
.y53{bottom:430.500000px;}
.y14a{bottom:440.580000px;}
.y11b{bottom:440.760000px;}
.y6a{bottom:442.200000px;}
.y13d{bottom:452.550000px;}
.y7b{bottom:453.900000px;}
.y28{bottom:456.600000px;}
.y128{bottom:463.620000px;}
.y102{bottom:463.800000px;}
.y52{bottom:465.600000px;}
.ydf{bottom:468.300000px;}
.y11a{bottom:475.680000px;}
.y149{bottom:475.770000px;}
.y159{bottom:475.860000px;}
.y69{bottom:477.300000px;}
.yef{bottom:483.690000px;}
.y13c{bottom:487.830000px;}
.y7a{bottom:489.000000px;}
.y27{bottom:491.700000px;}
.y101{bottom:498.900000px;}
.y3f{bottom:500.700000px;}
.ye4{bottom:501.510000px;}
.yde{bottom:503.400000px;}
.yee{bottom:507.090000px;}
.y158{bottom:510.870000px;}
.y119{bottom:510.960000px;}
.y68{bottom:512.400000px;}
.y148{bottom:522.750000px;}
.y13b{bottom:522.930000px;}
.y79{bottom:524.100000px;}
.y26{bottom:526.800000px;}
.yed{bottom:530.310000px;}
.y3e{bottom:535.800000px;}
.ye3{bottom:536.340000px;}
.ydd{bottom:538.500000px;}
.y127{bottom:545.880000px;}
.y118{bottom:545.970000px;}
.y100{bottom:546.060000px;}
.yf0{bottom:547.230000px;}
.y67{bottom:547.500000px;}
.y13a{bottom:557.940000px;}
.y147{bottom:558.030000px;}
.y78{bottom:559.200000px;}
.y14{bottom:561.450000px;}
.y25{bottom:561.900000px;}
.yec{bottom:570.540000px;}
.y3d{bottom:570.900000px;}
.ye2{bottom:571.440000px;}
.ydc{bottom:573.600000px;}
.yff{bottom:580.980000px;}
.y126{bottom:581.160000px;}
.y72{bottom:582.420000px;}
.y66{bottom:582.600000px;}
.y13{bottom:591.240000px;}
.y157{bottom:592.950000px;}
.y146{bottom:593.040000px;}
.y117{bottom:593.130000px;}
.y77{bottom:594.300000px;}
.y24{bottom:597.000000px;}
.y139{bottom:605.100000px;}
.y3c{bottom:606.000000px;}
.ye1{bottom:606.360000px;}
.ydb{bottom:608.700000px;}
.yfe{bottom:616.170000px;}
.y65{bottom:617.700000px;}
.y12{bottom:626.340000px;}
.y116{bottom:628.050000px;}
.y156{bottom:628.230000px;}
.y71{bottom:629.400000px;}
.y23{bottom:632.100000px;}
.y138{bottom:640.020000px;}
.y3b{bottom:641.100000px;}
.yda{bottom:643.800000px;}
.ye0{bottom:648.150000px;}
.y11{bottom:661.470000px;}
.y125{bottom:663.180000px;}
.y155{bottom:663.270000px;}
.yfd{bottom:663.360000px;}
.y64{bottom:664.530000px;}
.yd3{bottom:665.070000px;}
.y22{bottom:667.230000px;}
.y10{bottom:669.750000px;}
.y137{bottom:675.330000px;}
.y3a{bottom:676.230000px;}
.yd9{bottom:685.320000px;}
.yf{bottom:696.570000px;}
.yfc{bottom:698.280000px;}
.y115{bottom:698.370000px;}
.y63{bottom:699.630000px;}
.yd2{bottom:699.990000px;}
.y21{bottom:702.330000px;}
.yd8{bottom:708.720000px;}
.y136{bottom:710.430000px;}
.y39{bottom:711.330000px;}
.ye{bottom:731.670000px;}
.yd7{bottom:732.120000px;}
.yfb{bottom:733.470000px;}
.y62{bottom:734.730000px;}
.y20{bottom:737.430000px;}
.yd1{bottom:741.750000px;}
.y124{bottom:745.350000px;}
.y114{bottom:745.530000px;}
.y70{bottom:746.340000px;}
.y38{bottom:746.430000px;}
.yd6{bottom:755.340000px;}
.y135{bottom:757.590000px;}
.ybc{bottom:758.670000px;}
.yd{bottom:766.770000px;}
.y61{bottom:769.830000px;}
.y1f{bottom:772.530000px;}
.yc{bottom:775.050000px;}
.y113{bottom:780.450000px;}
.yfa{bottom:780.630000px;}
.y51{bottom:781.530000px;}
.yd5{bottom:782.070000px;}
.y134{bottom:792.510000px;}
.y37{bottom:793.230000px;}
.ybb{bottom:793.770000px;}
.y60{bottom:804.930000px;}
.y1e{bottom:807.630000px;}
.yb{bottom:808.620000px;}
.yf9{bottom:815.550000px;}
.y112{bottom:815.730000px;}
.y50{bottom:816.630000px;}
.y123{bottom:827.790000px;}
.y36{bottom:828.330000px;}
.yba{bottom:828.690000px;}
.ya{bottom:836.970000px;}
.y5f{bottom:840.030000px;}
.y1d{bottom:842.730000px;}
.yf8{bottom:850.830000px;}
.y4f{bottom:851.730000px;}
.yb9{bottom:859.560000px;}
.yce{bottom:859.635445px;}
.ybe{bottom:860.378468px;}
.y111{bottom:862.710000px;}
.y133{bottom:862.800000px;}
.y145{bottom:862.890000px;}
.y35{bottom:863.430000px;}
.y5e{bottom:875.130000px;}
.y8{bottom:877.470000px;}
.y1c{bottom:877.830000px;}
.y9{bottom:878.190000px;}
.yf7{bottom:885.930000px;}
.y4e{bottom:886.830000px;}
.y110{bottom:897.900000px;}
.y154{bottom:897.990000px;}
.y34{bottom:898.530000px;}
.y132{bottom:909.960000px;}
.y76{bottom:910.050000px;}
.y5d{bottom:910.230000px;}
.y1b{bottom:912.930000px;}
.y7{bottom:913.920000px;}
.y4d{bottom:921.930000px;}
.yf6{bottom:932.910000px;}
.y153{bottom:933.000000px;}
.y6f{bottom:933.630000px;}
.y122{bottom:944.880000px;}
.y10f{bottom:945.060000px;}
.y33{bottom:945.330000px;}
.y1a{bottom:948.030000px;}
.y6{bottom:949.020000px;}
.y4c{bottom:957.030000px;}
.yf5{bottom:968.100000px;}
.y6e{bottom:968.550000px;}
.y10e{bottom:979.980000px;}
.y121{bottom:980.070000px;}
.y131{bottom:980.160000px;}
.y32{bottom:980.430000px;}
.y19{bottom:983.130000px;}
.y4b{bottom:992.130000px;}
.y5{bottom:994.740000px;}
.y152{bottom:1015.080000px;}
.y10d{bottom:1015.170000px;}
.yf4{bottom:1015.260000px;}
.y31{bottom:1015.530000px;}
.y18{bottom:1018.230000px;}
.y120{bottom:1027.050000px;}
.y4a{bottom:1027.230000px;}
.y4{bottom:1029.300000px;}
.yf3{bottom:1050.180000px;}
.y130{bottom:1050.270000px;}
.y30{bottom:1050.630000px;}
.y17{bottom:1053.330000px;}
.y49{bottom:1062.330000px;}
.y3{bottom:1077.750000px;}
.yf2{bottom:1085.400000px;}
.y6d{bottom:1085.580000px;}
.y2f{bottom:1085.760000px;}
.y16{bottom:1088.460000px;}
.y10c{bottom:1097.280000px;}
.y48{bottom:1097.460000px;}
.y2{bottom:1124.550000px;}
.yeb{bottom:1131.840000px;}
.y15{bottom:1132.290000px;}
.y12f{bottom:1132.380000px;}
.y47{bottom:1132.560000px;}
.ha{height:27.956231px;}
.h16{height:29.095999px;}
.h15{height:29.100035px;}
.h7{height:30.827081px;}
.h17{height:34.311304px;}
.h21{height:36.956483px;}
.h20{height:36.982578px;}
.h6{height:37.625449px;}
.h8{height:41.317910px;}
.h1f{height:43.580739px;}
.h14{height:47.435726px;}
.h18{height:47.442306px;}
.hb{height:48.155449px;}
.h12{height:59.060391px;}
.h1b{height:59.446501px;}
.h1e{height:60.250813px;}
.h22{height:60.293358px;}
.hf{height:64.546875px;}
.h9{height:64.625449px;}
.hc{height:64.657617px;}
.h26{height:66.394687px;}
.h27{height:67.426875px;}
.h10{height:69.923672px;}
.h11{height:70.043672px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.he{height:72.562500px;}
.h5{height:73.991602px;}
.h25{height:75.506382px;}
.h1c{height:79.262001px;}
.h24{height:84.164447px;}
.h3{height:86.170078px;}
.h4{height:94.336523px;}
.h19{height:227.398140px;}
.h13{height:227.398162px;}
.h1d{height:288.831300px;}
.h23{height:289.582528px;}
.h1a{height:431.280300px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:227.421785px;}
.w3{width:227.429676px;}
.w6{width:289.035259px;}
.w7{width:289.035287px;}
.w5{width:444.749807px;}
.w8{width:558.223603px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:30.696258px;}
.x13{left:32.371709px;}
.x18{left:33.849766px;}
.x1b{left:35.053872px;}
.xf{left:39.157125px;}
.x23{left:41.140481px;}
.x26{left:43.018925px;}
.x12{left:49.505794px;}
.x16{left:51.354938px;}
.x1d{left:54.947226px;}
.x20{left:63.349287px;}
.x27{left:68.889959px;}
.x1c{left:96.687622px;}
.x1a{left:99.076460px;}
.x19{left:101.775174px;}
.x14{left:103.556422px;}
.x4{left:106.379987px;}
.x8{left:110.519987px;}
.x5{left:113.399987px;}
.x7{left:116.219987px;}
.x6{left:119.189987px;}
.x11{left:129.826411px;}
.x24{left:131.607531px;}
.x28{left:146.187717px;}
.x2c{left:154.379987px;}
.x22{left:164.993460px;}
.x1f{left:167.395539px;}
.x2{left:178.139987px;}
.xe{left:224.077315px;}
.x10{left:226.674730px;}
.x3{left:241.859987px;}
.x9{left:286.229987px;}
.x21{left:288.075809px;}
.x25{left:436.003866px;}
.xb{left:437.549987px;}
.x15{left:440.948967px;}
.x1{left:442.049987px;}
.xc{left:614.429987px;}
.xa{left:625.139987px;}
.xd{left:668.969987px;}
.x1e{left:725.759987px;}
.x2b{left:738.359987px;}
.x2a{left:784.169987px;}
.x29{left:786.689987px;}
@media print{
.v5{vertical-align:-24.000000pt;}
.v3{vertical-align:-21.440000pt;}
.vc{vertical-align:-15.873413pt;}
.v7{vertical-align:-13.120000pt;}
.vb{vertical-align:-10.239700pt;}
.v9{vertical-align:-5.440000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.560000pt;}
.va{vertical-align:5.440000pt;}
.v2{vertical-align:21.440000pt;}
.v1{vertical-align:24.000000pt;}
.v4{vertical-align:32.000000pt;}
.ls40{letter-spacing:-5.386667pt;}
.ls1c{letter-spacing:-4.672000pt;}
.ls20{letter-spacing:-3.968000pt;}
.ls2b{letter-spacing:-2.240000pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.171604pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.135105pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.085802pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.061333pt;}
.ls23{letter-spacing:-0.040320pt;}
.ls2e{letter-spacing:-0.037725pt;}
.ls3a{letter-spacing:-0.021451pt;}
.ls3f{letter-spacing:-0.019520pt;}
.ls2f{letter-spacing:-0.016888pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.010240pt;}
.ls29{letter-spacing:0.016888pt;}
.ls21{letter-spacing:0.019520pt;}
.ls38{letter-spacing:0.021451pt;}
.ls25{letter-spacing:0.029911pt;}
.ls27{letter-spacing:0.030536pt;}
.ls26{letter-spacing:0.031571pt;}
.ls28{letter-spacing:0.036960pt;}
.ls35{letter-spacing:0.037991pt;}
.ls37{letter-spacing:0.038785pt;}
.ls36{letter-spacing:0.040100pt;}
.ls4{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.080000pt;}
.ls2d{letter-spacing:0.080533pt;}
.ls31{letter-spacing:0.101329pt;}
.ls41{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.128703pt;}
.ls2a{letter-spacing:0.135105pt;}
.ls1{letter-spacing:0.155520pt;}
.ls0{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.171604pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.640000pt;}
.ls24{letter-spacing:1.360000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls16{letter-spacing:2.490240pt;}
.ls18{letter-spacing:2.596907pt;}
.ls15{letter-spacing:2.810240pt;}
.ls19{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:5.120000pt;}
.ls34{letter-spacing:8.000000pt;}
.ls17{letter-spacing:11.450240pt;}
.ls3{letter-spacing:12.506667pt;}
.ls11{letter-spacing:15.680000pt;}
.lse{letter-spacing:15.786667pt;}
.ls12{letter-spacing:16.000000pt;}
.ls9{letter-spacing:16.106667pt;}
.ws12{word-spacing:-64.000000pt;}
.ws28{word-spacing:-51.349840pt;}
.ws1b{word-spacing:-40.427951pt;}
.ws3{word-spacing:-32.000000pt;}
.ws2d{word-spacing:-18.018468pt;}
.ws2b{word-spacing:-17.868314pt;}
.ws25{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws32{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws33{word-spacing:-15.680000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws17{word-spacing:-15.552000pt;}
.ws2f{word-spacing:-14.800000pt;}
.ws5{word-spacing:-14.640000pt;}
.ws2e{word-spacing:-14.620480pt;}
.ws14{word-spacing:-14.599680pt;}
.ws24{word-spacing:-14.480000pt;}
.ws1f{word-spacing:-14.186018pt;}
.ws20{word-spacing:-14.084689pt;}
.wse{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-14.067801pt;}
.wsf{word-spacing:-14.016000pt;}
.ws30{word-spacing:-14.000000pt;}
.ws11{word-spacing:-13.888000pt;}
.ws16{word-spacing:-13.760000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws2{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.613333pt;}
.ws1{word-spacing:-10.560000pt;}
.wsd{word-spacing:-10.480000pt;}
.ws18{word-spacing:-9.520000pt;}
.ws15{word-spacing:-9.360000pt;}
.ws27{word-spacing:-6.184707pt;}
.ws1a{word-spacing:-4.869247pt;}
.ws1c{word-spacing:-4.831521pt;}
.ws4{word-spacing:-0.032000pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:0.256000pt;}
.ws29{word-spacing:121.067371pt;}
.ws19{word-spacing:145.847087pt;}
.ws26{word-spacing:185.248681pt;}
.ws21{word-spacing:587.886600pt;}
.ws1e{word-spacing:622.535386pt;}
.ws22{word-spacing:709.430376pt;}
.ws23{word-spacing:713.213314pt;}
.ws2c{word-spacing:751.427333pt;}
.ws2a{word-spacing:896.542586pt;}
._1b{margin-left:-7.952640pt;}
._2{margin-left:-6.525973pt;}
._4{margin-left:-4.766293pt;}
._3{margin-left:-3.418667pt;}
._6{margin-left:-2.512747pt;}
._0{margin-left:-1.623360pt;}
._1{width:1.664000pt;}
._d{width:2.557867pt;}
._8{width:3.513600pt;}
._9{width:4.450560pt;}
._11{width:5.393707pt;}
._b{width:6.406613pt;}
._a{width:7.612800pt;}
._12{width:8.592320pt;}
._e{width:9.600000pt;}
._f{width:10.624000pt;}
._10{width:11.515200pt;}
._7{width:12.414720pt;}
._18{width:13.568000pt;}
._19{width:14.511467pt;}
._5{width:15.752640pt;}
._15{width:17.600000pt;}
._16{width:18.666667pt;}
._13{width:19.776000pt;}
._20{width:20.800000pt;}
._1e{width:21.760000pt;}
._1d{width:23.168000pt;}
._1f{width:24.064000pt;}
._14{width:26.026667pt;}
._17{width:27.498667pt;}
._1c{width:28.778667pt;}
._1a{width:34.474667pt;}
._21{width:48.042667pt;}
._c{width:752.106667pt;}
.fsd{font-size:17.515276pt;}
.fs14{font-size:22.247148pt;}
.fsb{font-size:24.797588pt;}
.fsa{font-size:24.801028pt;}
.fsc{font-size:29.242426pt;}
.fs7{font-size:31.032174pt;}
.fs16{font-size:31.496828pt;}
.fs15{font-size:31.519068pt;}
.fs3{font-size:32.000000pt;}
.fs10{font-size:33.776233pt;}
.fs13{font-size:37.142469pt;}
.fs4{font-size:37.440000pt;}
.fs6{font-size:39.464831pt;}
.fs9{font-size:40.427951pt;}
.fse{font-size:40.433559pt;}
.fs2{font-size:42.560000pt;}
.fs1a{font-size:42.901115pt;}
.fs8{font-size:45.440000pt;}
.fsf{font-size:50.664350pt;}
.fs12{font-size:51.349840pt;}
.fs17{font-size:51.386099pt;}
.fs1b{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:64.351673pt;}
.fs11{font-size:67.552467pt;}
.fs18{font-size:71.730665pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:25.365503pt;}
.yb2{bottom:26.005473pt;}
.ya0{bottom:26.005484pt;}
.yb0{bottom:26.072840pt;}
.yab{bottom:26.106524pt;}
.yc4{bottom:32.218149pt;}
.ycc{bottom:33.159374pt;}
.ya4{bottom:38.638032pt;}
.y8f{bottom:38.638048pt;}
.ybf{bottom:49.076353pt;}
.ya1{bottom:60.703904pt;}
.yac{bottom:60.703911pt;}
.ya2{bottom:60.703927pt;}
.y96{bottom:65.758408pt;}
.y97{bottom:65.758432pt;}
.y1{bottom:69.760000pt;}
.yaf{bottom:70.878265pt;}
.ya9{bottom:71.721693pt;}
.y9e{bottom:72.159590pt;}
.ycd{bottom:77.103481pt;}
.y93{bottom:78.929917pt;}
.yc5{bottom:83.523494pt;}
.yb1{bottom:85.298053pt;}
.y9f{bottom:89.036908pt;}
.yaa{bottom:90.788419pt;}
.y9c{bottom:91.025541pt;}
.ya8{bottom:91.025548pt;}
.y9d{bottom:91.025564pt;}
.yca{bottom:91.097793pt;}
.y94{bottom:94.393887pt;}
.y11f{bottom:99.280000pt;}
.yc0{bottom:99.397690pt;}
.y10b{bottom:99.440000pt;}
.yae{bottom:100.896753pt;}
.ya7{bottom:100.964119pt;}
.y9b{bottom:100.997817pt;}
.y75{bottom:101.840000pt;}
.y5c{bottom:101.920000pt;}
.y84{bottom:104.720000pt;}
.y8b{bottom:112.720000pt;}
.ycb{bottom:115.315525pt;}
.yc9{bottom:115.616717pt;}
.yc3{bottom:119.895014pt;}
.y144{bottom:120.800000pt;}
.ybd{bottom:122.640000pt;}
.y46{bottom:125.040000pt;}
.yc6{bottom:127.638733pt;}
.yc8{bottom:128.240262pt;}
.y11e{bottom:130.640000pt;}
.y5b{bottom:133.040000pt;}
.y83{bottom:135.920000pt;}
.y90{bottom:136.504628pt;}
.y92{bottom:136.504651pt;}
.y10a{bottom:141.360000pt;}
.y8a{bottom:143.920000pt;}
.y99{bottom:146.611615pt;}
.ya6{bottom:146.611623pt;}
.y9a{bottom:146.611639pt;}
.y151{bottom:151.840000pt;}
.y143{bottom:151.920000pt;}
.yea{bottom:153.840000pt;}
.y45{bottom:156.240000pt;}
.y12e{bottom:161.840000pt;}
.y5a{bottom:164.240000pt;}
.y8d{bottom:166.960000pt;}
.y82{bottom:167.120000pt;}
.y109{bottom:172.400000pt;}
.y11d{bottom:172.560000pt;}
.yc1{bottom:173.382292pt;}
.y89{bottom:175.120000pt;}
.yb5{bottom:176.083314pt;}
.yb7{bottom:177.061419pt;}
.y150{bottom:183.200000pt;}
.ye9{bottom:185.040000pt;}
.yc7{bottom:186.219752pt;}
.y44{bottom:187.440000pt;}
.y2e{bottom:191.600000pt;}
.y8c{bottom:193.840000pt;}
.yb3{bottom:193.951592pt;}
.yad{bottom:194.471579pt;}
.ya3{bottom:194.471588pt;}
.y59{bottom:195.440000pt;}
.y81{bottom:198.320000pt;}
.ya5{bottom:198.426521pt;}
.y91{bottom:198.426529pt;}
.y108{bottom:203.786667pt;}
.y88{bottom:206.346667pt;}
.y14f{bottom:214.346667pt;}
.ye8{bottom:216.266667pt;}
.y43{bottom:218.666667pt;}
.y142{bottom:224.906667pt;}
.yd0{bottom:224.967016pt;}
.y2d{bottom:225.866667pt;}
.ycf{bottom:226.361302pt;}
.y58{bottom:226.666667pt;}
.y80{bottom:229.386667pt;}
.y12d{bottom:234.826667pt;}
.y107{bottom:234.906667pt;}
.y87{bottom:237.546667pt;}
.ye7{bottom:247.466667pt;}
.y42{bottom:249.866667pt;}
.yc2{bottom:252.032805pt;}
.y14e{bottom:256.106667pt;}
.y141{bottom:256.266667pt;}
.y57{bottom:257.866667pt;}
.y7f{bottom:259.386667pt;}
.y2c{bottom:265.066667pt;}
.y12c{bottom:266.106667pt;}
.y86{bottom:268.586667pt;}
.y106{bottom:276.666667pt;}
.ye6{bottom:278.666667pt;}
.y41{bottom:281.066667pt;}
.y15a{bottom:287.306667pt;}
.y14d{bottom:287.466667pt;}
.y74{bottom:288.986667pt;}
.y56{bottom:289.066667pt;}
.y140{bottom:298.026667pt;}
.yb8{bottom:299.466667pt;}
.y85{bottom:302.186667pt;}
.y2b{bottom:304.266667pt;}
.y7e{bottom:306.826667pt;}
.y12b{bottom:307.866667pt;}
.y105{bottom:307.946667pt;}
.ye5{bottom:309.866667pt;}
.y40{bottom:312.266667pt;}
.y14c{bottom:318.666667pt;}
.y73{bottom:320.186667pt;}
.y55{bottom:320.266667pt;}
.y6c{bottom:327.866667pt;}
.y13f{bottom:329.306667pt;}
.yd4{bottom:330.666667pt;}
.y12a{bottom:339.146667pt;}
.y7d{bottom:341.066667pt;}
.y2a{bottom:343.466667pt;}
.yf1{bottom:346.266667pt;}
.y11c{bottom:349.706667pt;}
.y104{bottom:349.866667pt;}
.y54{bottom:351.466667pt;}
.yb4{bottom:351.909718pt;}
.yb6{bottom:357.834634pt;}
.y14b{bottom:360.586667pt;}
.y6b{bottom:361.866667pt;}
.y13e{bottom:371.226667pt;}
.y7c{bottom:372.266667pt;}
.y29{bottom:374.666667pt;}
.y98{bottom:375.170902pt;}
.y8e{bottom:375.170911pt;}
.y103{bottom:380.906667pt;}
.y129{bottom:381.066667pt;}
.y53{bottom:382.666667pt;}
.y14a{bottom:391.626667pt;}
.y11b{bottom:391.786667pt;}
.y6a{bottom:393.066667pt;}
.y13d{bottom:402.266667pt;}
.y7b{bottom:403.466667pt;}
.y28{bottom:405.866667pt;}
.y128{bottom:412.106667pt;}
.y102{bottom:412.266667pt;}
.y52{bottom:413.866667pt;}
.ydf{bottom:416.266667pt;}
.y11a{bottom:422.826667pt;}
.y149{bottom:422.906667pt;}
.y159{bottom:422.986667pt;}
.y69{bottom:424.266667pt;}
.yef{bottom:429.946667pt;}
.y13c{bottom:433.626667pt;}
.y7a{bottom:434.666667pt;}
.y27{bottom:437.066667pt;}
.y101{bottom:443.466667pt;}
.y3f{bottom:445.066667pt;}
.ye4{bottom:445.786667pt;}
.yde{bottom:447.466667pt;}
.yee{bottom:450.746667pt;}
.y158{bottom:454.106667pt;}
.y119{bottom:454.186667pt;}
.y68{bottom:455.466667pt;}
.y148{bottom:464.666667pt;}
.y13b{bottom:464.826667pt;}
.y79{bottom:465.866667pt;}
.y26{bottom:468.266667pt;}
.yed{bottom:471.386667pt;}
.y3e{bottom:476.266667pt;}
.ye3{bottom:476.746667pt;}
.ydd{bottom:478.666667pt;}
.y127{bottom:485.226667pt;}
.y118{bottom:485.306667pt;}
.y100{bottom:485.386667pt;}
.yf0{bottom:486.426667pt;}
.y67{bottom:486.666667pt;}
.y13a{bottom:495.946667pt;}
.y147{bottom:496.026667pt;}
.y78{bottom:497.066667pt;}
.y14{bottom:499.066667pt;}
.y25{bottom:499.466667pt;}
.yec{bottom:507.146667pt;}
.y3d{bottom:507.466667pt;}
.ye2{bottom:507.946667pt;}
.ydc{bottom:509.866667pt;}
.yff{bottom:516.426667pt;}
.y126{bottom:516.586667pt;}
.y72{bottom:517.706667pt;}
.y66{bottom:517.866667pt;}
.y13{bottom:525.546667pt;}
.y157{bottom:527.066667pt;}
.y146{bottom:527.146667pt;}
.y117{bottom:527.226667pt;}
.y77{bottom:528.266667pt;}
.y24{bottom:530.666667pt;}
.y139{bottom:537.866667pt;}
.y3c{bottom:538.666667pt;}
.ye1{bottom:538.986667pt;}
.ydb{bottom:541.066667pt;}
.yfe{bottom:547.706667pt;}
.y65{bottom:549.066667pt;}
.y12{bottom:556.746667pt;}
.y116{bottom:558.266667pt;}
.y156{bottom:558.426667pt;}
.y71{bottom:559.466667pt;}
.y23{bottom:561.866667pt;}
.y138{bottom:568.906667pt;}
.y3b{bottom:569.866667pt;}
.yda{bottom:572.266667pt;}
.ye0{bottom:576.133333pt;}
.y11{bottom:587.973333pt;}
.y125{bottom:589.493333pt;}
.y155{bottom:589.573333pt;}
.yfd{bottom:589.653333pt;}
.y64{bottom:590.693333pt;}
.yd3{bottom:591.173333pt;}
.y22{bottom:593.093333pt;}
.y10{bottom:595.333333pt;}
.y137{bottom:600.293333pt;}
.y3a{bottom:601.093333pt;}
.yd9{bottom:609.173333pt;}
.yf{bottom:619.173333pt;}
.yfc{bottom:620.693333pt;}
.y115{bottom:620.773333pt;}
.y63{bottom:621.893333pt;}
.yd2{bottom:622.213333pt;}
.y21{bottom:624.293333pt;}
.yd8{bottom:629.973333pt;}
.y136{bottom:631.493333pt;}
.y39{bottom:632.293333pt;}
.ye{bottom:650.373333pt;}
.yd7{bottom:650.773333pt;}
.yfb{bottom:651.973333pt;}
.y62{bottom:653.093333pt;}
.y20{bottom:655.493333pt;}
.yd1{bottom:659.333333pt;}
.y124{bottom:662.533333pt;}
.y114{bottom:662.693333pt;}
.y70{bottom:663.413333pt;}
.y38{bottom:663.493333pt;}
.yd6{bottom:671.413333pt;}
.y135{bottom:673.413333pt;}
.ybc{bottom:674.373333pt;}
.yd{bottom:681.573333pt;}
.y61{bottom:684.293333pt;}
.y1f{bottom:686.693333pt;}
.yc{bottom:688.933333pt;}
.y113{bottom:693.733333pt;}
.yfa{bottom:693.893333pt;}
.y51{bottom:694.693333pt;}
.yd5{bottom:695.173333pt;}
.y134{bottom:704.453333pt;}
.y37{bottom:705.093333pt;}
.ybb{bottom:705.573333pt;}
.y60{bottom:715.493333pt;}
.y1e{bottom:717.893333pt;}
.yb{bottom:718.773333pt;}
.yf9{bottom:724.933333pt;}
.y112{bottom:725.093333pt;}
.y50{bottom:725.893333pt;}
.y123{bottom:735.813333pt;}
.y36{bottom:736.293333pt;}
.yba{bottom:736.613333pt;}
.ya{bottom:743.973333pt;}
.y5f{bottom:746.693333pt;}
.y1d{bottom:749.093333pt;}
.yf8{bottom:756.293333pt;}
.y4f{bottom:757.093333pt;}
.yb9{bottom:764.053333pt;}
.yce{bottom:764.120396pt;}
.ybe{bottom:764.780861pt;}
.y111{bottom:766.853333pt;}
.y133{bottom:766.933333pt;}
.y145{bottom:767.013333pt;}
.y35{bottom:767.493333pt;}
.y5e{bottom:777.893333pt;}
.y8{bottom:779.973333pt;}
.y1c{bottom:780.293333pt;}
.y9{bottom:780.613333pt;}
.yf7{bottom:787.493333pt;}
.y4e{bottom:788.293333pt;}
.y110{bottom:798.133333pt;}
.y154{bottom:798.213333pt;}
.y34{bottom:798.693333pt;}
.y132{bottom:808.853333pt;}
.y76{bottom:808.933333pt;}
.y5d{bottom:809.093333pt;}
.y1b{bottom:811.493333pt;}
.y7{bottom:812.373333pt;}
.y4d{bottom:819.493333pt;}
.yf6{bottom:829.253333pt;}
.y153{bottom:829.333333pt;}
.y6f{bottom:829.893333pt;}
.y122{bottom:839.893333pt;}
.y10f{bottom:840.053333pt;}
.y33{bottom:840.293333pt;}
.y1a{bottom:842.693333pt;}
.y6{bottom:843.573333pt;}
.y4c{bottom:850.693333pt;}
.yf5{bottom:860.533333pt;}
.y6e{bottom:860.933333pt;}
.y10e{bottom:871.093333pt;}
.y121{bottom:871.173333pt;}
.y131{bottom:871.253333pt;}
.y32{bottom:871.493333pt;}
.y19{bottom:873.893333pt;}
.y4b{bottom:881.893333pt;}
.y5{bottom:884.213333pt;}
.y152{bottom:902.293333pt;}
.y10d{bottom:902.373333pt;}
.yf4{bottom:902.453333pt;}
.y31{bottom:902.693333pt;}
.y18{bottom:905.093333pt;}
.y120{bottom:912.933333pt;}
.y4a{bottom:913.093333pt;}
.y4{bottom:914.933333pt;}
.yf3{bottom:933.493333pt;}
.y130{bottom:933.573333pt;}
.y30{bottom:933.893333pt;}
.y17{bottom:936.293333pt;}
.y49{bottom:944.293333pt;}
.y3{bottom:958.000000pt;}
.yf2{bottom:964.800000pt;}
.y6d{bottom:964.960000pt;}
.y2f{bottom:965.120000pt;}
.y16{bottom:967.520000pt;}
.y10c{bottom:975.360000pt;}
.y48{bottom:975.520000pt;}
.y2{bottom:999.600000pt;}
.yeb{bottom:1006.080000pt;}
.y15{bottom:1006.480000pt;}
.y12f{bottom:1006.560000pt;}
.y47{bottom:1006.720000pt;}
.ha{height:24.849983pt;}
.h16{height:25.863110pt;}
.h15{height:25.866698pt;}
.h7{height:27.401850pt;}
.h17{height:30.498937pt;}
.h21{height:32.850207pt;}
.h20{height:32.873403pt;}
.h6{height:33.444844pt;}
.h8{height:36.727031pt;}
.h1f{height:38.738435pt;}
.h14{height:42.165090pt;}
.h18{height:42.170939pt;}
.hb{height:42.804844pt;}
.h12{height:52.498125pt;}
.h1b{height:52.841334pt;}
.h1e{height:53.556279pt;}
.h22{height:53.594096pt;}
.hf{height:57.375000pt;}
.h9{height:57.444844pt;}
.hc{height:57.473437pt;}
.h26{height:59.017500pt;}
.h27{height:59.935000pt;}
.h10{height:62.154375pt;}
.h11{height:62.261042pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.he{height:64.500000pt;}
.h5{height:65.770312pt;}
.h25{height:67.116784pt;}
.h1c{height:70.455112pt;}
.h24{height:74.812842pt;}
.h3{height:76.595625pt;}
.h4{height:83.854687pt;}
.h19{height:202.131680pt;}
.h13{height:202.131699pt;}
.h1d{height:256.738933pt;}
.h23{height:257.406691pt;}
.h1a{height:383.360266pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:202.152698pt;}
.w3{width:202.159712pt;}
.w6{width:256.920231pt;}
.w7{width:256.920255pt;}
.w5{width:395.333161pt;}
.w8{width:496.198758pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:27.285563pt;}
.x13{left:28.774853pt;}
.x18{left:30.088681pt;}
.x1b{left:31.158998pt;}
.xf{left:34.806333pt;}
.x23{left:36.569316pt;}
.x26{left:38.239044pt;}
.x12{left:44.005150pt;}
.x16{left:45.648834pt;}
.x1d{left:48.841979pt;}
.x20{left:56.310478pt;}
.x27{left:61.235519pt;}
.x1c{left:85.944553pt;}
.x1a{left:88.067965pt;}
.x19{left:90.466821pt;}
.x14{left:92.050153pt;}
.x4{left:94.559988pt;}
.x8{left:98.239988pt;}
.x5{left:100.799988pt;}
.x7{left:103.306655pt;}
.x6{left:105.946655pt;}
.x11{left:115.401254pt;}
.x24{left:116.984472pt;}
.x28{left:129.944637pt;}
.x2c{left:137.226655pt;}
.x22{left:146.660853pt;}
.x1f{left:148.796035pt;}
.x2{left:158.346655pt;}
.xe{left:199.179836pt;}
.x10{left:201.488649pt;}
.x3{left:214.986655pt;}
.x9{left:254.426655pt;}
.x21{left:256.067386pt;}
.x25{left:387.558992pt;}
.xb{left:388.933322pt;}
.x15{left:391.954637pt;}
.x1{left:392.933322pt;}
.xc{left:546.159988pt;}
.xa{left:555.679988pt;}
.xd{left:594.639988pt;}
.x1e{left:645.119988pt;}
.x2b{left:656.319988pt;}
.x2a{left:697.039988pt;}
.x29{left:699.279988pt;}
}




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