
    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_2a45cab022fee6fa50f178d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_cc6c8b01ad0b545e7bcdaabc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_40eea5bb49be909320499367.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_47c3bac4cfa975b886b69cda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980469;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_864ce1f1d19828282b3ca310.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690430;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_4a24402b52cafd72d5cee915.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012695;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_36c7f1a3ff7039625127c908.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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_a483362e8c4f744884520951.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_4a8335d0ce18d50b1fa28628.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6f6d66b28da731ade46ffa80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.019531;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_0831e75fcb69d668d3107964.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980469;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_1a2833505f30405f7739632a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_907a629600d195f5432c23dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3f04550e2fdfdb7e7295fd9e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_91b18778fdee622beecd7d92.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3087499bc4e84abf1335602c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c3d865974dd2a9d010b28075.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.989746;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;}
.lsb{letter-spacing:-0.405216px;}
.ls9{letter-spacing:-0.310464px;}
.lsa{letter-spacing:-0.279792px;}
.ls1e{letter-spacing:-0.278208px;}
.ls7{letter-spacing:-0.234432px;}
.ls6{letter-spacing:-0.215424px;}
.ls20{letter-spacing:-0.198720px;}
.ls18{letter-spacing:-0.192096px;}
.ls3{letter-spacing:-0.178848px;}
.ls2{letter-spacing:-0.165600px;}
.ls22{letter-spacing:-0.158976px;}
.ls1a{letter-spacing:-0.152352px;}
.ls0{letter-spacing:-0.145728px;}
.ls11{letter-spacing:-0.139104px;}
.ls5{letter-spacing:-0.133056px;}
.ls24{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.125856px;}
.ls4{letter-spacing:-0.119232px;}
.ls8{letter-spacing:-0.114048px;}
.ls1d{letter-spacing:-0.112608px;}
.ls1f{letter-spacing:-0.105984px;}
.ls29{letter-spacing:-0.092736px;}
.ls1b{letter-spacing:-0.086112px;}
.ls19{letter-spacing:-0.079488px;}
.ls1c{letter-spacing:-0.072864px;}
.ls23{letter-spacing:-0.066240px;}
.ls21{letter-spacing:-0.052992px;}
.ls12{letter-spacing:-0.036000px;}
.ls27{letter-spacing:-0.028800px;}
.ls25{letter-spacing:-0.021600px;}
.ls16{letter-spacing:-0.014400px;}
.ls26{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000288px;}
.lsf{letter-spacing:0.007200px;}
.lse{letter-spacing:0.014400px;}
.ls10{letter-spacing:0.021600px;}
.ls2a{letter-spacing:0.027360px;}
.lsd{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.459360px;}
.ls14{letter-spacing:44.495712px;}
.ls15{letter-spacing:49.720320px;}
.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;}
}
.wsf{word-spacing:-0.542880px;}
.wsb5{word-spacing:-0.108000px;}
.ws10{word-spacing:-0.100800px;}
.ws2d{word-spacing:-0.093600px;}
.ws21{word-spacing:-0.086400px;}
.ws23{word-spacing:-0.079200px;}
.wsc{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.066240px;}
.ws7{word-spacing:-0.063360px;}
.ws50{word-spacing:-0.057600px;}
.ws68{word-spacing:-0.050400px;}
.wsa5{word-spacing:-0.043200px;}
.ws33{word-spacing:-0.036000px;}
.ws63{word-spacing:-0.013248px;}
.ws1d{word-spacing:0.000000px;}
.ws5e{word-spacing:0.006624px;}
.ws5b{word-spacing:0.013248px;}
.ws5d{word-spacing:0.019872px;}
.wsc0{word-spacing:0.026496px;}
.ws61{word-spacing:0.039744px;}
.ws5f{word-spacing:0.046368px;}
.wsa{word-spacing:0.050688px;}
.ws4{word-spacing:0.052992px;}
.ws59{word-spacing:0.059616px;}
.ws65{word-spacing:0.066240px;}
.ws6{word-spacing:0.069696px;}
.ws2b{word-spacing:0.072864px;}
.ws0{word-spacing:0.079488px;}
.ws5c{word-spacing:0.086112px;}
.ws64{word-spacing:0.092736px;}
.ws1{word-spacing:0.099360px;}
.ws2{word-spacing:0.112608px;}
.ws5a{word-spacing:0.125856px;}
.ws62{word-spacing:0.132480px;}
.ws8{word-spacing:0.152064px;}
.ws9{word-spacing:0.171072px;}
.wsd{word-spacing:0.183312px;}
.ws60{word-spacing:0.211968px;}
.wsb{word-spacing:0.247104px;}
.wse{word-spacing:0.308736px;}
.ws1e{word-spacing:10.879200px;}
.ws35{word-spacing:10.915200px;}
.ws18{word-spacing:10.944000px;}
.ws1a{word-spacing:11.138400px;}
.ws43{word-spacing:11.167200px;}
.wscb{word-spacing:11.311200px;}
.ws24{word-spacing:11.368800px;}
.wscc{word-spacing:11.412000px;}
.wsb3{word-spacing:11.419200px;}
.ws84{word-spacing:11.440800px;}
.ws58{word-spacing:11.642400px;}
.ws96{word-spacing:11.656800px;}
.wsc4{word-spacing:11.736000px;}
.wsca{word-spacing:11.908800px;}
.ws6c{word-spacing:11.966400px;}
.ws98{word-spacing:12.067200px;}
.wsbd{word-spacing:12.117600px;}
.ws70{word-spacing:12.247200px;}
.wsc3{word-spacing:12.276000px;}
.ws9d{word-spacing:12.405600px;}
.ws42{word-spacing:12.412800px;}
.ws3c{word-spacing:12.556800px;}
.ws2f{word-spacing:12.578400px;}
.ws85{word-spacing:12.636000px;}
.ws7d{word-spacing:12.664800px;}
.ws39{word-spacing:12.816000px;}
.ws55{word-spacing:12.967200px;}
.ws8c{word-spacing:13.154400px;}
.ws20{word-spacing:13.197600px;}
.ws9c{word-spacing:13.219200px;}
.ws1f{word-spacing:13.233600px;}
.wsa2{word-spacing:13.305600px;}
.ws3f{word-spacing:13.521600px;}
.ws14{word-spacing:13.766400px;}
.ws4d{word-spacing:13.773600px;}
.ws25{word-spacing:13.867200px;}
.ws69{word-spacing:14.040000px;}
.wsb7{word-spacing:14.047200px;}
.ws28{word-spacing:14.061600px;}
.ws6f{word-spacing:14.176800px;}
.wsbb{word-spacing:14.263200px;}
.wsa7{word-spacing:14.284800px;}
.ws44{word-spacing:14.320800px;}
.wsac{word-spacing:14.400000px;}
.ws51{word-spacing:14.436000px;}
.ws87{word-spacing:14.464800px;}
.ws99{word-spacing:14.472000px;}
.ws45{word-spacing:14.680800px;}
.wsba{word-spacing:14.875200px;}
.ws8a{word-spacing:14.911200px;}
.ws15{word-spacing:15.134400px;}
.ws89{word-spacing:15.321600px;}
.ws66{word-spacing:15.523200px;}
.ws38{word-spacing:15.638400px;}
.ws54{word-spacing:15.660000px;}
.wsc8{word-spacing:15.681600px;}
.ws16{word-spacing:15.688800px;}
.ws4e{word-spacing:15.717600px;}
.wsb4{word-spacing:15.890400px;}
.ws2c{word-spacing:16.128000px;}
.ws32{word-spacing:16.228800px;}
.ws4f{word-spacing:16.293600px;}
.ws93{word-spacing:16.308000px;}
.ws7f{word-spacing:16.329600px;}
.ws52{word-spacing:16.380000px;}
.ws30{word-spacing:16.437600px;}
.ws3e{word-spacing:16.689600px;}
.ws26{word-spacing:16.732800px;}
.ws81{word-spacing:16.754400px;}
.ws12{word-spacing:16.776000px;}
.ws83{word-spacing:17.035200px;}
.wsa4{word-spacing:17.193600px;}
.ws95{word-spacing:17.395200px;}
.wsc1{word-spacing:17.517600px;}
.ws7a{word-spacing:17.568000px;}
.ws31{word-spacing:17.661600px;}
.ws36{word-spacing:17.683200px;}
.ws19{word-spacing:17.690400px;}
.ws37{word-spacing:17.704800px;}
.wsc7{word-spacing:17.733600px;}
.wsab{word-spacing:17.776800px;}
.ws9b{word-spacing:17.848800px;}
.ws22{word-spacing:17.899200px;}
.ws72{word-spacing:17.920800px;}
.ws13{word-spacing:17.949600px;}
.wsae{word-spacing:18.064800px;}
.ws40{word-spacing:18.158400px;}
.ws97{word-spacing:18.417600px;}
.ws77{word-spacing:18.619200px;}
.ws1b{word-spacing:18.698400px;}
.wsb9{word-spacing:18.741600px;}
.wsb6{word-spacing:18.799200px;}
.wsc6{word-spacing:18.864000px;}
.ws8b{word-spacing:18.957600px;}
.ws86{word-spacing:19.015200px;}
.ws2a{word-spacing:19.303200px;}
.wsb2{word-spacing:19.526400px;}
.ws46{word-spacing:19.562400px;}
.ws48{word-spacing:19.612800px;}
.wsb0{word-spacing:19.994400px;}
.ws8f{word-spacing:20.095200px;}
.ws3b{word-spacing:20.124000px;}
.ws8d{word-spacing:20.131200px;}
.ws80{word-spacing:20.160000px;}
.ws29{word-spacing:20.246400px;}
.ws76{word-spacing:20.455200px;}
.ws57{word-spacing:20.649600px;}
.ws49{word-spacing:20.757600px;}
.wsa3{word-spacing:20.887200px;}
.ws34{word-spacing:20.937600px;}
.ws56{word-spacing:20.952000px;}
.ws71{word-spacing:21.628800px;}
.ws27{word-spacing:21.708000px;}
.ws3a{word-spacing:21.758400px;}
.ws73{word-spacing:21.772800px;}
.ws6a{word-spacing:21.859200px;}
.ws6b{word-spacing:21.916800px;}
.ws94{word-spacing:21.924000px;}
.ws75{word-spacing:22.183200px;}
.ws67{word-spacing:22.197600px;}
.ws9a{word-spacing:22.276800px;}
.wsaf{word-spacing:22.298400px;}
.ws3d{word-spacing:22.593600px;}
.ws53{word-spacing:23.529600px;}
.ws92{word-spacing:23.846400px;}
.ws74{word-spacing:24.098400px;}
.wsa9{word-spacing:24.192000px;}
.wsbc{word-spacing:24.386400px;}
.wsbe{word-spacing:24.415200px;}
.ws78{word-spacing:24.537600px;}
.ws90{word-spacing:24.768000px;}
.ws9e{word-spacing:24.955200px;}
.ws91{word-spacing:25.135200px;}
.ws82{word-spacing:25.394400px;}
.wsbf{word-spacing:25.732800px;}
.wsa6{word-spacing:25.862400px;}
.wsc2{word-spacing:25.920000px;}
.wsc9{word-spacing:26.769600px;}
.wsad{word-spacing:26.949600px;}
.ws88{word-spacing:27.043200px;}
.wsc5{word-spacing:27.244800px;}
.ws2e{word-spacing:27.295200px;}
.wsa0{word-spacing:27.583200px;}
.ws8e{word-spacing:27.676800px;}
.ws41{word-spacing:28.540800px;}
.ws47{word-spacing:28.735200px;}
.ws9f{word-spacing:29.764800px;}
.ws7e{word-spacing:30.052800px;}
.wsb8{word-spacing:30.477600px;}
.ws4b{word-spacing:31.766400px;}
.ws7c{word-spacing:32.378400px;}
.wsa8{word-spacing:32.702400px;}
.ws6d{word-spacing:34.099200px;}
.ws4c{word-spacing:35.496000px;}
.ws4a{word-spacing:35.985600px;}
.wsa1{word-spacing:36.093600px;}
.wsb1{word-spacing:36.777600px;}
.ws17{word-spacing:36.914400px;}
.ws6e{word-spacing:37.332000px;}
.ws79{word-spacing:37.519200px;}
.wsaa{word-spacing:41.486400px;}
.ws7b{word-spacing:43.336800px;}
.ws1c{word-spacing:45.266400px;}
.ws11{word-spacing:47.160000px;}
.ws5{word-spacing:1244.350080px;}
.wscd{word-spacing:1525.655520px;}
._a{margin-left:-5.284800px;}
._8{margin-left:-3.808800px;}
._4{margin-left:-2.583360px;}
._1{margin-left:-1.009440px;}
._0{width:1.059840px;}
._7{width:2.420640px;}
._6{width:3.859200px;}
._5{width:5.386752px;}
._2{width:6.529248px;}
._3{width:7.784352px;}
._9{width:9.295200px;}
._b{width:11.302560px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:4.440000px;}
.y5b{bottom:4.560000px;}
.y89{bottom:5.100000px;}
.ya5{bottom:5.220000px;}
.y59{bottom:19.680000px;}
.y7a{bottom:24.600000px;}
.y88{bottom:25.260000px;}
.ya4{bottom:25.380000px;}
.y79{bottom:44.760000px;}
.y87{bottom:45.420000px;}
.ya3{bottom:45.540000px;}
.y6{bottom:57.240000px;}
.y78{bottom:64.920000px;}
.y86{bottom:65.580000px;}
.ya2{bottom:65.700000px;}
.y5{bottom:76.320000px;}
.y77{bottom:84.720000px;}
.y85{bottom:85.380000px;}
.ya1{bottom:85.860000px;}
.y4{bottom:95.760000px;}
.y76{bottom:104.880000px;}
.y84{bottom:105.540000px;}
.ya0{bottom:106.020000px;}
.y3{bottom:114.840000px;}
.y75{bottom:125.040000px;}
.y83{bottom:125.700000px;}
.y9f{bottom:126.180000px;}
.y74{bottom:145.200000px;}
.y82{bottom:145.860000px;}
.y9e{bottom:146.340000px;}
.ye5{bottom:150.120000px;}
.yef{bottom:154.080000px;}
.yd6{bottom:157.320000px;}
.y57{bottom:161.640000px;}
.y5a{bottom:165.000000px;}
.y73{bottom:165.360000px;}
.y81{bottom:166.020000px;}
.y9d{bottom:166.500000px;}
.y2e{bottom:167.040000px;}
.yb7{bottom:168.480000px;}
.y7c{bottom:169.500000px;}
.yb5{bottom:172.440000px;}
.y56{bottom:183.600000px;}
.y72{bottom:185.520000px;}
.y80{bottom:186.180000px;}
.y9c{bottom:186.660000px;}
.y2d{bottom:189.000000px;}
.yb6{bottom:190.440000px;}
.yb4{bottom:194.400000px;}
.y58{bottom:201.000000px;}
.y55{bottom:205.560000px;}
.y71{bottom:205.680000px;}
.y7f{bottom:206.340000px;}
.y9b{bottom:206.820000px;}
.y2c{bottom:210.960000px;}
.yb3{bottom:216.360000px;}
.y70{bottom:225.840000px;}
.y7e{bottom:226.500000px;}
.y9a{bottom:226.980000px;}
.y54{bottom:227.520000px;}
.ye4{bottom:231.120000px;}
.y2b{bottom:232.920000px;}
.yb2{bottom:238.320000px;}
.y6f{bottom:246.000000px;}
.y7d{bottom:246.660000px;}
.y99{bottom:247.140000px;}
.y53{bottom:249.480000px;}
.yd5{bottom:253.080000px;}
.y2a{bottom:254.880000px;}
.yb1{bottom:260.280000px;}
.y6e{bottom:266.160000px;}
.y98{bottom:267.300000px;}
.y52{bottom:271.440000px;}
.yd4{bottom:275.040000px;}
.y29{bottom:276.840000px;}
.yb0{bottom:282.240000px;}
.y6d{bottom:286.320000px;}
.y97{bottom:287.460000px;}
.y51{bottom:293.400000px;}
.yd3{bottom:297.000000px;}
.y28{bottom:299.160000px;}
.yaf{bottom:304.200000px;}
.y6c{bottom:306.480000px;}
.y96{bottom:307.620000px;}
.ye3{bottom:312.120000px;}
.y50{bottom:315.360000px;}
.yd2{bottom:318.960000px;}
.y27{bottom:321.120000px;}
.yae{bottom:326.160000px;}
.y6b{bottom:326.640000px;}
.y95{bottom:327.780000px;}
.ye2{bottom:334.080000px;}
.y4f{bottom:337.320000px;}
.yee{bottom:340.920000px;}
.y26{bottom:343.080000px;}
.y6a{bottom:346.800000px;}
.y94{bottom:347.940000px;}
.yad{bottom:348.120000px;}
.yd1{bottom:356.040000px;}
.y4e{bottom:359.280000px;}
.y25{bottom:365.040000px;}
.y69{bottom:366.960000px;}
.y93{bottom:368.100000px;}
.yac{bottom:370.080000px;}
.yd0{bottom:378.000000px;}
.y4d{bottom:381.240000px;}
.y24{bottom:387.000000px;}
.y68{bottom:387.120000px;}
.y92{bottom:387.900000px;}
.yab{bottom:392.040000px;}
.ye1{bottom:393.120000px;}
.ycf{bottom:399.960000px;}
.y4c{bottom:403.200000px;}
.y67{bottom:407.280000px;}
.y91{bottom:408.060000px;}
.y23{bottom:408.960000px;}
.yaa{bottom:414.000000px;}
.ye0{bottom:415.080000px;}
.y4b{bottom:425.160000px;}
.y66{bottom:427.440000px;}
.y90{bottom:428.220000px;}
.y22{bottom:430.920000px;}
.ya9{bottom:435.960000px;}
.yce{bottom:437.040000px;}
.y5c{bottom:447.000000px;}
.y4a{bottom:447.120000px;}
.y65{bottom:447.600000px;}
.y8f{bottom:448.380000px;}
.y21{bottom:452.880000px;}
.ya8{bottom:457.920000px;}
.ycd{bottom:459.000000px;}
.y64{bottom:467.400000px;}
.y8e{bottom:468.540000px;}
.y49{bottom:469.080000px;}
.ydf{bottom:474.120000px;}
.y20{bottom:474.840000px;}
.ya7{bottom:480.240000px;}
.ycc{bottom:480.960000px;}
.y63{bottom:487.560000px;}
.y8d{bottom:488.700000px;}
.y48{bottom:491.040000px;}
.yde{bottom:496.080000px;}
.y1f{bottom:496.800000px;}
.ya6{bottom:502.200000px;}
.ycb{bottom:502.920000px;}
.y62{bottom:507.720000px;}
.y8c{bottom:508.860000px;}
.y47{bottom:513.000000px;}
.ydd{bottom:518.040000px;}
.y1e{bottom:518.760000px;}
.y8a{bottom:526.500000px;}
.y61{bottom:527.880000px;}
.y8b{bottom:529.020000px;}
.y46{bottom:534.960000px;}
.yca{bottom:540.000000px;}
.y1d{bottom:540.720000px;}
.y60{bottom:548.040000px;}
.y45{bottom:556.920000px;}
.yc9{bottom:561.960000px;}
.y1c{bottom:562.680000px;}
.y5f{bottom:568.200000px;}
.ydc{bottom:576.720000px;}
.y44{bottom:578.880000px;}
.yed{bottom:583.920000px;}
.y1b{bottom:584.640000px;}
.y5e{bottom:588.360000px;}
.yc8{bottom:598.680000px;}
.y43{bottom:600.840000px;}
.y1a{bottom:606.600000px;}
.y5d{bottom:608.520000px;}
.yc7{bottom:620.640000px;}
.y42{bottom:622.800000px;}
.y19{bottom:628.560000px;}
.yec{bottom:642.600000px;}
.y41{bottom:644.760000px;}
.y18{bottom:650.520000px;}
.yc6{bottom:657.720000px;}
.yeb{bottom:664.920000px;}
.y40{bottom:666.720000px;}
.y17{bottom:672.480000px;}
.yc5{bottom:679.680000px;}
.yea{bottom:686.880000px;}
.y3f{bottom:688.680000px;}
.y16{bottom:694.440000px;}
.yc4{bottom:701.640000px;}
.y3e{bottom:710.640000px;}
.y15{bottom:716.400000px;}
.ye9{bottom:723.600000px;}
.y3d{bottom:732.600000px;}
.y14{bottom:738.360000px;}
.yc3{bottom:738.720000px;}
.ye8{bottom:745.560000px;}
.y3c{bottom:754.920000px;}
.y13{bottom:760.320000px;}
.yc2{bottom:760.680000px;}
.ye7{bottom:767.520000px;}
.y3b{bottom:776.880000px;}
.y12{bottom:782.280000px;}
.yc1{bottom:782.640000px;}
.ydb{bottom:797.760000px;}
.y3a{bottom:798.840000px;}
.y11{bottom:804.240000px;}
.yc0{bottom:804.600000px;}
.yda{bottom:819.720000px;}
.y39{bottom:820.800000px;}
.y10{bottom:826.200000px;}
.ybf{bottom:841.680000px;}
.y38{bottom:842.760000px;}
.yf{bottom:848.160000px;}
.ybe{bottom:863.640000px;}
.y37{bottom:864.720000px;}
.ye{bottom:870.120000px;}
.yd9{bottom:878.400000px;}
.ybd{bottom:885.600000px;}
.y36{bottom:886.680000px;}
.yd{bottom:892.080000px;}
.yd8{bottom:900.360000px;}
.y35{bottom:908.640000px;}
.yc{bottom:914.760000px;}
.ybc{bottom:922.320000px;}
.y34{bottom:930.600000px;}
.yb{bottom:934.200000px;}
.ybb{bottom:944.640000px;}
.y33{bottom:952.560000px;}
.ya{bottom:956.880000px;}
.ye6{bottom:959.400000px;}
.yba{bottom:966.600000px;}
.y32{bottom:974.520000px;}
.yd7{bottom:981.360000px;}
.y9{bottom:987.120000px;}
.y31{bottom:996.480000px;}
.yb9{bottom:1003.320000px;}
.y8{bottom:1016.280000px;}
.y30{bottom:1018.440000px;}
.yb8{bottom:1025.280000px;}
.y2f{bottom:1040.400000px;}
.y7{bottom:1062.360000px;}
.y2{bottom:1098.720000px;}
.y1{bottom:1118.880000px;}
.ha{height:21.000000px;}
.h8{height:36.000000px;}
.h6{height:44.149219px;}
.h2{height:46.622813px;}
.h9{height:48.742031px;}
.h1{height:49.033125px;}
.hf{height:52.945313px;}
.he{height:53.613281px;}
.h3{height:55.230469px;}
.h7{height:55.300781px;}
.h5{height:61.457344px;}
.h4{height:70.993828px;}
.hc{height:264.000000px;}
.hd{height:546.000000px;}
.hb{height:625.500000px;}
.h0{height:1188.000000px;}
.w1{width:235.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:7.560072px;}
.xe{left:34.560000px;}
.xa{left:41.243040px;}
.x8{left:43.007436px;}
.xc{left:46.213920px;}
.xf{left:61.560000px;}
.x2{left:108.000000px;}
.x10{left:120.638664px;}
.x6{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:193.049928px;}
.x9{left:342.000000px;}
.xb{left:576.000000px;}
.x1{left:792.388080px;}
.x7{left:794.160720px;}
.x11{left:795.908880px;}
.x5{left:796.988520px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.360192pt;}
.ls9{letter-spacing:-0.275968pt;}
.lsa{letter-spacing:-0.248704pt;}
.ls1e{letter-spacing:-0.247296pt;}
.ls7{letter-spacing:-0.208384pt;}
.ls6{letter-spacing:-0.191488pt;}
.ls20{letter-spacing:-0.176640pt;}
.ls18{letter-spacing:-0.170752pt;}
.ls3{letter-spacing:-0.158976pt;}
.ls2{letter-spacing:-0.147200pt;}
.ls22{letter-spacing:-0.141312pt;}
.ls1a{letter-spacing:-0.135424pt;}
.ls0{letter-spacing:-0.129536pt;}
.ls11{letter-spacing:-0.123648pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls24{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.111872pt;}
.ls4{letter-spacing:-0.105984pt;}
.ls8{letter-spacing:-0.101376pt;}
.ls1d{letter-spacing:-0.100096pt;}
.ls1f{letter-spacing:-0.094208pt;}
.ls29{letter-spacing:-0.082432pt;}
.ls1b{letter-spacing:-0.076544pt;}
.ls19{letter-spacing:-0.070656pt;}
.ls1c{letter-spacing:-0.064768pt;}
.ls23{letter-spacing:-0.058880pt;}
.ls21{letter-spacing:-0.047104pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls27{letter-spacing:-0.025600pt;}
.ls25{letter-spacing:-0.019200pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls26{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000256pt;}
.lsf{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.012800pt;}
.ls10{letter-spacing:0.019200pt;}
.ls2a{letter-spacing:0.024320pt;}
.lsd{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.408320pt;}
.ls14{letter-spacing:39.551744pt;}
.ls15{letter-spacing:44.195840pt;}
.wsf{word-spacing:-0.482560pt;}
.wsb5{word-spacing:-0.096000pt;}
.ws10{word-spacing:-0.089600pt;}
.ws2d{word-spacing:-0.083200pt;}
.ws21{word-spacing:-0.076800pt;}
.ws23{word-spacing:-0.070400pt;}
.wsc{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.058880pt;}
.ws7{word-spacing:-0.056320pt;}
.ws50{word-spacing:-0.051200pt;}
.ws68{word-spacing:-0.044800pt;}
.wsa5{word-spacing:-0.038400pt;}
.ws33{word-spacing:-0.032000pt;}
.ws63{word-spacing:-0.011776pt;}
.ws1d{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.005888pt;}
.ws5b{word-spacing:0.011776pt;}
.ws5d{word-spacing:0.017664pt;}
.wsc0{word-spacing:0.023552pt;}
.ws61{word-spacing:0.035328pt;}
.ws5f{word-spacing:0.041216pt;}
.wsa{word-spacing:0.045056pt;}
.ws4{word-spacing:0.047104pt;}
.ws59{word-spacing:0.052992pt;}
.ws65{word-spacing:0.058880pt;}
.ws6{word-spacing:0.061952pt;}
.ws2b{word-spacing:0.064768pt;}
.ws0{word-spacing:0.070656pt;}
.ws5c{word-spacing:0.076544pt;}
.ws64{word-spacing:0.082432pt;}
.ws1{word-spacing:0.088320pt;}
.ws2{word-spacing:0.100096pt;}
.ws5a{word-spacing:0.111872pt;}
.ws62{word-spacing:0.117760pt;}
.ws8{word-spacing:0.135168pt;}
.ws9{word-spacing:0.152064pt;}
.wsd{word-spacing:0.162944pt;}
.ws60{word-spacing:0.188416pt;}
.wsb{word-spacing:0.219648pt;}
.wse{word-spacing:0.274432pt;}
.ws1e{word-spacing:9.670400pt;}
.ws35{word-spacing:9.702400pt;}
.ws18{word-spacing:9.728000pt;}
.ws1a{word-spacing:9.900800pt;}
.ws43{word-spacing:9.926400pt;}
.wscb{word-spacing:10.054400pt;}
.ws24{word-spacing:10.105600pt;}
.wscc{word-spacing:10.144000pt;}
.wsb3{word-spacing:10.150400pt;}
.ws84{word-spacing:10.169600pt;}
.ws58{word-spacing:10.348800pt;}
.ws96{word-spacing:10.361600pt;}
.wsc4{word-spacing:10.432000pt;}
.wsca{word-spacing:10.585600pt;}
.ws6c{word-spacing:10.636800pt;}
.ws98{word-spacing:10.726400pt;}
.wsbd{word-spacing:10.771200pt;}
.ws70{word-spacing:10.886400pt;}
.wsc3{word-spacing:10.912000pt;}
.ws9d{word-spacing:11.027200pt;}
.ws42{word-spacing:11.033600pt;}
.ws3c{word-spacing:11.161600pt;}
.ws2f{word-spacing:11.180800pt;}
.ws85{word-spacing:11.232000pt;}
.ws7d{word-spacing:11.257600pt;}
.ws39{word-spacing:11.392000pt;}
.ws55{word-spacing:11.526400pt;}
.ws8c{word-spacing:11.692800pt;}
.ws20{word-spacing:11.731200pt;}
.ws9c{word-spacing:11.750400pt;}
.ws1f{word-spacing:11.763200pt;}
.wsa2{word-spacing:11.827200pt;}
.ws3f{word-spacing:12.019200pt;}
.ws14{word-spacing:12.236800pt;}
.ws4d{word-spacing:12.243200pt;}
.ws25{word-spacing:12.326400pt;}
.ws69{word-spacing:12.480000pt;}
.wsb7{word-spacing:12.486400pt;}
.ws28{word-spacing:12.499200pt;}
.ws6f{word-spacing:12.601600pt;}
.wsbb{word-spacing:12.678400pt;}
.wsa7{word-spacing:12.697600pt;}
.ws44{word-spacing:12.729600pt;}
.wsac{word-spacing:12.800000pt;}
.ws51{word-spacing:12.832000pt;}
.ws87{word-spacing:12.857600pt;}
.ws99{word-spacing:12.864000pt;}
.ws45{word-spacing:13.049600pt;}
.wsba{word-spacing:13.222400pt;}
.ws8a{word-spacing:13.254400pt;}
.ws15{word-spacing:13.452800pt;}
.ws89{word-spacing:13.619200pt;}
.ws66{word-spacing:13.798400pt;}
.ws38{word-spacing:13.900800pt;}
.ws54{word-spacing:13.920000pt;}
.wsc8{word-spacing:13.939200pt;}
.ws16{word-spacing:13.945600pt;}
.ws4e{word-spacing:13.971200pt;}
.wsb4{word-spacing:14.124800pt;}
.ws2c{word-spacing:14.336000pt;}
.ws32{word-spacing:14.425600pt;}
.ws4f{word-spacing:14.483200pt;}
.ws93{word-spacing:14.496000pt;}
.ws7f{word-spacing:14.515200pt;}
.ws52{word-spacing:14.560000pt;}
.ws30{word-spacing:14.611200pt;}
.ws3e{word-spacing:14.835200pt;}
.ws26{word-spacing:14.873600pt;}
.ws81{word-spacing:14.892800pt;}
.ws12{word-spacing:14.912000pt;}
.ws83{word-spacing:15.142400pt;}
.wsa4{word-spacing:15.283200pt;}
.ws95{word-spacing:15.462400pt;}
.wsc1{word-spacing:15.571200pt;}
.ws7a{word-spacing:15.616000pt;}
.ws31{word-spacing:15.699200pt;}
.ws36{word-spacing:15.718400pt;}
.ws19{word-spacing:15.724800pt;}
.ws37{word-spacing:15.737600pt;}
.wsc7{word-spacing:15.763200pt;}
.wsab{word-spacing:15.801600pt;}
.ws9b{word-spacing:15.865600pt;}
.ws22{word-spacing:15.910400pt;}
.ws72{word-spacing:15.929600pt;}
.ws13{word-spacing:15.955200pt;}
.wsae{word-spacing:16.057600pt;}
.ws40{word-spacing:16.140800pt;}
.ws97{word-spacing:16.371200pt;}
.ws77{word-spacing:16.550400pt;}
.ws1b{word-spacing:16.620800pt;}
.wsb9{word-spacing:16.659200pt;}
.wsb6{word-spacing:16.710400pt;}
.wsc6{word-spacing:16.768000pt;}
.ws8b{word-spacing:16.851200pt;}
.ws86{word-spacing:16.902400pt;}
.ws2a{word-spacing:17.158400pt;}
.wsb2{word-spacing:17.356800pt;}
.ws46{word-spacing:17.388800pt;}
.ws48{word-spacing:17.433600pt;}
.wsb0{word-spacing:17.772800pt;}
.ws8f{word-spacing:17.862400pt;}
.ws3b{word-spacing:17.888000pt;}
.ws8d{word-spacing:17.894400pt;}
.ws80{word-spacing:17.920000pt;}
.ws29{word-spacing:17.996800pt;}
.ws76{word-spacing:18.182400pt;}
.ws57{word-spacing:18.355200pt;}
.ws49{word-spacing:18.451200pt;}
.wsa3{word-spacing:18.566400pt;}
.ws34{word-spacing:18.611200pt;}
.ws56{word-spacing:18.624000pt;}
.ws71{word-spacing:19.225600pt;}
.ws27{word-spacing:19.296000pt;}
.ws3a{word-spacing:19.340800pt;}
.ws73{word-spacing:19.353600pt;}
.ws6a{word-spacing:19.430400pt;}
.ws6b{word-spacing:19.481600pt;}
.ws94{word-spacing:19.488000pt;}
.ws75{word-spacing:19.718400pt;}
.ws67{word-spacing:19.731200pt;}
.ws9a{word-spacing:19.801600pt;}
.wsaf{word-spacing:19.820800pt;}
.ws3d{word-spacing:20.083200pt;}
.ws53{word-spacing:20.915200pt;}
.ws92{word-spacing:21.196800pt;}
.ws74{word-spacing:21.420800pt;}
.wsa9{word-spacing:21.504000pt;}
.wsbc{word-spacing:21.676800pt;}
.wsbe{word-spacing:21.702400pt;}
.ws78{word-spacing:21.811200pt;}
.ws90{word-spacing:22.016000pt;}
.ws9e{word-spacing:22.182400pt;}
.ws91{word-spacing:22.342400pt;}
.ws82{word-spacing:22.572800pt;}
.wsbf{word-spacing:22.873600pt;}
.wsa6{word-spacing:22.988800pt;}
.wsc2{word-spacing:23.040000pt;}
.wsc9{word-spacing:23.795200pt;}
.wsad{word-spacing:23.955200pt;}
.ws88{word-spacing:24.038400pt;}
.wsc5{word-spacing:24.217600pt;}
.ws2e{word-spacing:24.262400pt;}
.wsa0{word-spacing:24.518400pt;}
.ws8e{word-spacing:24.601600pt;}
.ws41{word-spacing:25.369600pt;}
.ws47{word-spacing:25.542400pt;}
.ws9f{word-spacing:26.457600pt;}
.ws7e{word-spacing:26.713600pt;}
.wsb8{word-spacing:27.091200pt;}
.ws4b{word-spacing:28.236800pt;}
.ws7c{word-spacing:28.780800pt;}
.wsa8{word-spacing:29.068800pt;}
.ws6d{word-spacing:30.310400pt;}
.ws4c{word-spacing:31.552000pt;}
.ws4a{word-spacing:31.987200pt;}
.wsa1{word-spacing:32.083200pt;}
.wsb1{word-spacing:32.691200pt;}
.ws17{word-spacing:32.812800pt;}
.ws6e{word-spacing:33.184000pt;}
.ws79{word-spacing:33.350400pt;}
.wsaa{word-spacing:36.876800pt;}
.ws7b{word-spacing:38.521600pt;}
.ws1c{word-spacing:40.236800pt;}
.ws11{word-spacing:41.920000pt;}
.ws5{word-spacing:1106.088960pt;}
.wscd{word-spacing:1356.138240pt;}
._a{margin-left:-4.697600pt;}
._8{margin-left:-3.385600pt;}
._4{margin-left:-2.296320pt;}
._1{margin-left:-0.897280pt;}
._0{width:0.942080pt;}
._7{width:2.151680pt;}
._6{width:3.430400pt;}
._5{width:4.788224pt;}
._2{width:5.803776pt;}
._3{width:6.919424pt;}
._9{width:8.262400pt;}
._b{width:10.046720pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:3.946667pt;}
.y5b{bottom:4.053333pt;}
.y89{bottom:4.533333pt;}
.ya5{bottom:4.640000pt;}
.y59{bottom:17.493333pt;}
.y7a{bottom:21.866667pt;}
.y88{bottom:22.453333pt;}
.ya4{bottom:22.560000pt;}
.y79{bottom:39.786667pt;}
.y87{bottom:40.373333pt;}
.ya3{bottom:40.480000pt;}
.y6{bottom:50.880000pt;}
.y78{bottom:57.706667pt;}
.y86{bottom:58.293333pt;}
.ya2{bottom:58.400000pt;}
.y5{bottom:67.840000pt;}
.y77{bottom:75.306667pt;}
.y85{bottom:75.893333pt;}
.ya1{bottom:76.320000pt;}
.y4{bottom:85.120000pt;}
.y76{bottom:93.226667pt;}
.y84{bottom:93.813333pt;}
.ya0{bottom:94.240000pt;}
.y3{bottom:102.080000pt;}
.y75{bottom:111.146667pt;}
.y83{bottom:111.733333pt;}
.y9f{bottom:112.160000pt;}
.y74{bottom:129.066667pt;}
.y82{bottom:129.653333pt;}
.y9e{bottom:130.080000pt;}
.ye5{bottom:133.440000pt;}
.yef{bottom:136.960000pt;}
.yd6{bottom:139.840000pt;}
.y57{bottom:143.680000pt;}
.y5a{bottom:146.666667pt;}
.y73{bottom:146.986667pt;}
.y81{bottom:147.573333pt;}
.y9d{bottom:148.000000pt;}
.y2e{bottom:148.480000pt;}
.yb7{bottom:149.760000pt;}
.y7c{bottom:150.666667pt;}
.yb5{bottom:153.280000pt;}
.y56{bottom:163.200000pt;}
.y72{bottom:164.906667pt;}
.y80{bottom:165.493333pt;}
.y9c{bottom:165.920000pt;}
.y2d{bottom:168.000000pt;}
.yb6{bottom:169.280000pt;}
.yb4{bottom:172.800000pt;}
.y58{bottom:178.666667pt;}
.y55{bottom:182.720000pt;}
.y71{bottom:182.826667pt;}
.y7f{bottom:183.413333pt;}
.y9b{bottom:183.840000pt;}
.y2c{bottom:187.520000pt;}
.yb3{bottom:192.320000pt;}
.y70{bottom:200.746667pt;}
.y7e{bottom:201.333333pt;}
.y9a{bottom:201.760000pt;}
.y54{bottom:202.240000pt;}
.ye4{bottom:205.440000pt;}
.y2b{bottom:207.040000pt;}
.yb2{bottom:211.840000pt;}
.y6f{bottom:218.666667pt;}
.y7d{bottom:219.253333pt;}
.y99{bottom:219.680000pt;}
.y53{bottom:221.760000pt;}
.yd5{bottom:224.960000pt;}
.y2a{bottom:226.560000pt;}
.yb1{bottom:231.360000pt;}
.y6e{bottom:236.586667pt;}
.y98{bottom:237.600000pt;}
.y52{bottom:241.280000pt;}
.yd4{bottom:244.480000pt;}
.y29{bottom:246.080000pt;}
.yb0{bottom:250.880000pt;}
.y6d{bottom:254.506667pt;}
.y97{bottom:255.520000pt;}
.y51{bottom:260.800000pt;}
.yd3{bottom:264.000000pt;}
.y28{bottom:265.920000pt;}
.yaf{bottom:270.400000pt;}
.y6c{bottom:272.426667pt;}
.y96{bottom:273.440000pt;}
.ye3{bottom:277.440000pt;}
.y50{bottom:280.320000pt;}
.yd2{bottom:283.520000pt;}
.y27{bottom:285.440000pt;}
.yae{bottom:289.920000pt;}
.y6b{bottom:290.346667pt;}
.y95{bottom:291.360000pt;}
.ye2{bottom:296.960000pt;}
.y4f{bottom:299.840000pt;}
.yee{bottom:303.040000pt;}
.y26{bottom:304.960000pt;}
.y6a{bottom:308.266667pt;}
.y94{bottom:309.280000pt;}
.yad{bottom:309.440000pt;}
.yd1{bottom:316.480000pt;}
.y4e{bottom:319.360000pt;}
.y25{bottom:324.480000pt;}
.y69{bottom:326.186667pt;}
.y93{bottom:327.200000pt;}
.yac{bottom:328.960000pt;}
.yd0{bottom:336.000000pt;}
.y4d{bottom:338.880000pt;}
.y24{bottom:344.000000pt;}
.y68{bottom:344.106667pt;}
.y92{bottom:344.800000pt;}
.yab{bottom:348.480000pt;}
.ye1{bottom:349.440000pt;}
.ycf{bottom:355.520000pt;}
.y4c{bottom:358.400000pt;}
.y67{bottom:362.026667pt;}
.y91{bottom:362.720000pt;}
.y23{bottom:363.520000pt;}
.yaa{bottom:368.000000pt;}
.ye0{bottom:368.960000pt;}
.y4b{bottom:377.920000pt;}
.y66{bottom:379.946667pt;}
.y90{bottom:380.640000pt;}
.y22{bottom:383.040000pt;}
.ya9{bottom:387.520000pt;}
.yce{bottom:388.480000pt;}
.y5c{bottom:397.333333pt;}
.y4a{bottom:397.440000pt;}
.y65{bottom:397.866667pt;}
.y8f{bottom:398.560000pt;}
.y21{bottom:402.560000pt;}
.ya8{bottom:407.040000pt;}
.ycd{bottom:408.000000pt;}
.y64{bottom:415.466667pt;}
.y8e{bottom:416.480000pt;}
.y49{bottom:416.960000pt;}
.ydf{bottom:421.440000pt;}
.y20{bottom:422.080000pt;}
.ya7{bottom:426.880000pt;}
.ycc{bottom:427.520000pt;}
.y63{bottom:433.386667pt;}
.y8d{bottom:434.400000pt;}
.y48{bottom:436.480000pt;}
.yde{bottom:440.960000pt;}
.y1f{bottom:441.600000pt;}
.ya6{bottom:446.400000pt;}
.ycb{bottom:447.040000pt;}
.y62{bottom:451.306667pt;}
.y8c{bottom:452.320000pt;}
.y47{bottom:456.000000pt;}
.ydd{bottom:460.480000pt;}
.y1e{bottom:461.120000pt;}
.y8a{bottom:468.000000pt;}
.y61{bottom:469.226667pt;}
.y8b{bottom:470.240000pt;}
.y46{bottom:475.520000pt;}
.yca{bottom:480.000000pt;}
.y1d{bottom:480.640000pt;}
.y60{bottom:487.146667pt;}
.y45{bottom:495.040000pt;}
.yc9{bottom:499.520000pt;}
.y1c{bottom:500.160000pt;}
.y5f{bottom:505.066667pt;}
.ydc{bottom:512.640000pt;}
.y44{bottom:514.560000pt;}
.yed{bottom:519.040000pt;}
.y1b{bottom:519.680000pt;}
.y5e{bottom:522.986667pt;}
.yc8{bottom:532.160000pt;}
.y43{bottom:534.080000pt;}
.y1a{bottom:539.200000pt;}
.y5d{bottom:540.906667pt;}
.yc7{bottom:551.680000pt;}
.y42{bottom:553.600000pt;}
.y19{bottom:558.720000pt;}
.yec{bottom:571.200000pt;}
.y41{bottom:573.120000pt;}
.y18{bottom:578.240000pt;}
.yc6{bottom:584.640000pt;}
.yeb{bottom:591.040000pt;}
.y40{bottom:592.640000pt;}
.y17{bottom:597.760000pt;}
.yc5{bottom:604.160000pt;}
.yea{bottom:610.560000pt;}
.y3f{bottom:612.160000pt;}
.y16{bottom:617.280000pt;}
.yc4{bottom:623.680000pt;}
.y3e{bottom:631.680000pt;}
.y15{bottom:636.800000pt;}
.ye9{bottom:643.200000pt;}
.y3d{bottom:651.200000pt;}
.y14{bottom:656.320000pt;}
.yc3{bottom:656.640000pt;}
.ye8{bottom:662.720000pt;}
.y3c{bottom:671.040000pt;}
.y13{bottom:675.840000pt;}
.yc2{bottom:676.160000pt;}
.ye7{bottom:682.240000pt;}
.y3b{bottom:690.560000pt;}
.y12{bottom:695.360000pt;}
.yc1{bottom:695.680000pt;}
.ydb{bottom:709.120000pt;}
.y3a{bottom:710.080000pt;}
.y11{bottom:714.880000pt;}
.yc0{bottom:715.200000pt;}
.yda{bottom:728.640000pt;}
.y39{bottom:729.600000pt;}
.y10{bottom:734.400000pt;}
.ybf{bottom:748.160000pt;}
.y38{bottom:749.120000pt;}
.yf{bottom:753.920000pt;}
.ybe{bottom:767.680000pt;}
.y37{bottom:768.640000pt;}
.ye{bottom:773.440000pt;}
.yd9{bottom:780.800000pt;}
.ybd{bottom:787.200000pt;}
.y36{bottom:788.160000pt;}
.yd{bottom:792.960000pt;}
.yd8{bottom:800.320000pt;}
.y35{bottom:807.680000pt;}
.yc{bottom:813.120000pt;}
.ybc{bottom:819.840000pt;}
.y34{bottom:827.200000pt;}
.yb{bottom:830.400000pt;}
.ybb{bottom:839.680000pt;}
.y33{bottom:846.720000pt;}
.ya{bottom:850.560000pt;}
.ye6{bottom:852.800000pt;}
.yba{bottom:859.200000pt;}
.y32{bottom:866.240000pt;}
.yd7{bottom:872.320000pt;}
.y9{bottom:877.440000pt;}
.y31{bottom:885.760000pt;}
.yb9{bottom:891.840000pt;}
.y8{bottom:903.360000pt;}
.y30{bottom:905.280000pt;}
.yb8{bottom:911.360000pt;}
.y2f{bottom:924.800000pt;}
.y7{bottom:944.320000pt;}
.y2{bottom:976.640000pt;}
.y1{bottom:994.560000pt;}
.ha{height:18.666667pt;}
.h8{height:32.000000pt;}
.h6{height:39.243750pt;}
.h2{height:41.442500pt;}
.h9{height:43.326250pt;}
.h1{height:43.585000pt;}
.hf{height:47.062500pt;}
.he{height:47.656250pt;}
.h3{height:49.093750pt;}
.h7{height:49.156250pt;}
.h5{height:54.628750pt;}
.h4{height:63.105625pt;}
.hc{height:234.666667pt;}
.hd{height:485.333333pt;}
.hb{height:556.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:209.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.720064pt;}
.xe{left:30.720000pt;}
.xa{left:36.660480pt;}
.x8{left:38.228832pt;}
.xc{left:41.079040pt;}
.xf{left:54.720000pt;}
.x2{left:96.000000pt;}
.x10{left:107.234368pt;}
.x6{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:171.599936pt;}
.x9{left:304.000000pt;}
.xb{left:512.000000pt;}
.x1{left:704.344960pt;}
.x7{left:705.920640pt;}
.x11{left:707.474560pt;}
.x5{left:708.434240pt;}
}




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