
    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_511532fd8bd5e6f73b4cfd84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f28f3edce16ceef048ef0746.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_0d521a428fd9303e0e428f90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_49f57d27a77c9274dd688f83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_e03798f434914cf7274e250b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_a6f11ab77d45adf48f90c361.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.780762;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_3027e2f866d0048e2f61b945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875000;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_d629ff367598e32811d7f8be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c38778aa3ab6d12f124c5df3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726562;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_b21c7ca833e1b41d617f7d66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.713867;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_df7b0f0af0a8940b53267bcf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b137a026d65b02ac77f131eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_835fa3a3607be3b9ff090214.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_fd0bb567c2242a74035819d4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;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_ca1717c462341e201edbef24.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_ea70a190f698d18474f4f1a9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_5639087d172fd8934d0fbdfa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_430286143aacf4374e8bec1f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_92d78bf4d1650793d1fc519a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005371;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:ff14;src:url('chunks/assets/font_285885852d049748762cd13e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_32a0fe09b87e6f5e2d335cbd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005371;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:ff16;src:url('chunks/assets/font_79f2b814b5b6bb6b85787798.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;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:ff17;src:url('chunks/assets/font_64a425c0a47af7814b215d96.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.758789;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:ff18;src:url('chunks/assets/font_bb75d7b8353d475a35195f42.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.072266;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:ff19;src:url('chunks/assets/font_a9774a25d828a02f75012301.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_bb785b613e8445b198d83d1f.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_f82624b30902080a0dc1be23.woff2')format("woff");}.ff1b{font-family:ff1b;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1d{letter-spacing:-3.802176px;}
.ls2f{letter-spacing:-0.470592px;}
.ls26{letter-spacing:-0.459648px;}
.lse{letter-spacing:-0.454176px;}
.ls32{letter-spacing:-0.432288px;}
.ls36{letter-spacing:-0.421344px;}
.ls33{letter-spacing:-0.399456px;}
.ls31{letter-spacing:-0.361152px;}
.ls22{letter-spacing:-0.338688px;}
.ls25{letter-spacing:-0.320544px;}
.ls24{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.260064px;}
.ls21{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.241200px;}
.ls1c{letter-spacing:-0.238464px;}
.ls27{letter-spacing:-0.223776px;}
.ls35{letter-spacing:-0.213408px;}
.ls20{letter-spacing:-0.205344px;}
.ls1a{letter-spacing:-0.198720px;}
.lsf{letter-spacing:-0.186048px;}
.ls34{letter-spacing:-0.169632px;}
.lsb{letter-spacing:-0.158976px;}
.lsd{letter-spacing:-0.125856px;}
.ls16{letter-spacing:-0.124416px;}
.ls1b{letter-spacing:-0.119232px;}
.ls10{letter-spacing:-0.115776px;}
.ls18{letter-spacing:-0.096768px;}
.ls1e{letter-spacing:-0.086112px;}
.ls17{letter-spacing:-0.082944px;}
.ls1f{letter-spacing:-0.079488px;}
.ls19{letter-spacing:-0.076032px;}
.ls14{letter-spacing:-0.055296px;}
.ls15{letter-spacing:-0.048384px;}
.ls3f{letter-spacing:-0.014400px;}
.lsc{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.014400px;}
.ls13{letter-spacing:0.083664px;}
.ls1{letter-spacing:0.096624px;}
.ls2a{letter-spacing:0.113472px;}
.ls29{letter-spacing:0.113616px;}
.ls2c{letter-spacing:0.113760px;}
.ls39{letter-spacing:0.123552px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.250992px;}
.ls38{letter-spacing:0.251856px;}
.ls12{letter-spacing:0.262944px;}
.ls3d{letter-spacing:0.266112px;}
.ls2b{letter-spacing:0.275616px;}
.ls28{letter-spacing:0.285120px;}
.ls37{letter-spacing:0.304128px;}
.ls3e{letter-spacing:0.351648px;}
.ls3c{letter-spacing:0.365904px;}
.ls3a{letter-spacing:0.427680px;}
.ls3b{letter-spacing:0.432432px;}
.ls2e{letter-spacing:5.349600px;}
.lsa{letter-spacing:6.671520px;}
.ls7{letter-spacing:7.931520px;}
.ls2d{letter-spacing:10.709280px;}
.ls9{letter-spacing:15.321600px;}
.ls6{letter-spacing:18.311040px;}
.ls8{letter-spacing:23.226624px;}
.ls5{letter-spacing:23.376960px;}
.ls40{letter-spacing:63.588960px;}
.ls4{letter-spacing:73.409760px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws5{word-spacing:-20.016000px;}
.ws0{word-spacing:-18.288864px;}
.ws1f{word-spacing:-18.014400px;}
.ws1d{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.985600px;}
.ws8{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.480512px;}
.wsc{word-spacing:-16.440768px;}
.ws9{word-spacing:-16.361280px;}
.ws1c{word-spacing:-16.257600px;}
.wsd{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.896224px;}
.ws11{word-spacing:-14.878080px;}
.wse{word-spacing:-14.817600px;}
.wsf{word-spacing:-14.781312px;}
.ws13{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.ws14{word-spacing:-13.866048px;}
.ws15{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.ws18{word-spacing:-12.782880px;}
.ws19{word-spacing:-12.721104px;}
.ws1b{word-spacing:-12.706848px;}
.ws16{word-spacing:-12.640320px;}
.ws1a{word-spacing:-12.630816px;}
.ws17{word-spacing:-12.607056px;}
.ws20{word-spacing:-0.060480px;}
.ws12{word-spacing:0.000000px;}
.wsa{word-spacing:0.092736px;}
.ws6{word-spacing:0.132480px;}
.ws7{word-spacing:0.172224px;}
._4{margin-left:-7.649280px;}
._d{margin-left:-5.475456px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._a{width:2.963664px;}
._b{width:4.455216px;}
._17{width:5.745744px;}
._15{width:6.955200px;}
._18{width:8.701632px;}
._f{width:9.803520px;}
._14{width:11.194560px;}
._1b{width:12.206880px;}
._9{width:13.512960px;}
._e{width:15.301440px;}
._c{width:16.910640px;}
._7{width:18.216000px;}
._8{width:19.342080px;}
._16{width:20.582784px;}
._11{width:22.406976px;}
._10{width:23.497344px;}
._6{width:25.256016px;}
._1e{width:26.388144px;}
._1f{width:27.515376px;}
._1a{width:29.260800px;}
._1c{width:30.844800px;}
._1d{width:32.126400px;}
._20{width:36.676800px;}
._12{width:41.996160px;}
._13{width:43.122240px;}
._19{width:54.093600px;}
._5{width:78.300288px;}
.fc1{color:rgb(121,124,143);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.640000px;}
.fs9{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:80.640000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y79{bottom:4.740000px;}
.y52{bottom:4.920000px;}
.y7c{bottom:5.340000px;}
.y10{bottom:5.460000px;}
.y3f{bottom:5.940000px;}
.y9{bottom:6.900000px;}
.y17{bottom:23.220000px;}
.y51{bottom:24.000000px;}
.y50{bottom:25.080000px;}
.y78{bottom:25.620000px;}
.y3e{bottom:26.100000px;}
.y7b{bottom:26.220000px;}
.yf{bottom:26.340000px;}
.y112{bottom:26.460000px;}
.y115{bottom:26.580000px;}
.y118{bottom:26.700000px;}
.y11b{bottom:27.720000px;}
.y4e{bottom:28.620000px;}
.y8{bottom:29.220000px;}
.y3d{bottom:44.820000px;}
.y4d{bottom:45.900000px;}
.ye{bottom:46.140000px;}
.y16{bottom:46.620000px;}
.yc{bottom:46.860000px;}
.y4{bottom:57.240000px;}
.y11d{bottom:57.300000px;}
.y111{bottom:57.420000px;}
.y114{bottom:57.540000px;}
.y117{bottom:57.660000px;}
.y11a{bottom:58.680000px;}
.y4c{bottom:63.180000px;}
.y3c{bottom:63.900000px;}
.y77{bottom:66.660000px;}
.y58{bottom:66.960000px;}
.y15{bottom:67.500000px;}
.y59{bottom:75.000000px;}
.y3{bottom:76.320000px;}
.y4b{bottom:80.460000px;}
.y3b{bottom:82.980000px;}
.yb{bottom:83.220000px;}
.y57{bottom:84.600000px;}
.y76{bottom:87.540000px;}
.y14{bottom:88.380000px;}
.y4a{bottom:97.740000px;}
.y3a{bottom:102.060000px;}
.ya6{bottom:105.120000px;}
.y53{bottom:107.280000px;}
.y75{bottom:108.060000px;}
.y13{bottom:109.260000px;}
.y13d{bottom:113.400000px;}
.y12b{bottom:115.200000px;}
.ya{bottom:119.940000px;}
.y4f{bottom:120.000000px;}
.y39{bottom:120.780000px;}
.y16a{bottom:123.120000px;}
.y74{bottom:128.940000px;}
.yd0{bottom:130.320000px;}
.y12{bottom:130.500000px;}
.y116{bottom:133.500000px;}
.y102{bottom:135.360000px;}
.ya5{bottom:136.080000px;}
.y86{bottom:138.240000px;}
.y38{bottom:139.860000px;}
.y7{bottom:143.340000px;}
.y13c{bottom:144.360000px;}
.y12a{bottom:146.160000px;}
.ye9{bottom:148.320000px;}
.y73{bottom:149.460000px;}
.y169{bottom:154.080000px;}
.y158{bottom:155.160000px;}
.y18{bottom:157.500000px;}
.y37{bottom:158.940000px;}
.ycf{bottom:161.280000px;}
.y101{bottom:166.320000px;}
.ya4{bottom:167.040000px;}
.y85{bottom:169.200000px;}
.y72{bottom:170.340000px;}
.y150{bottom:175.320000px;}
.y129{bottom:177.480000px;}
.y36{bottom:177.660000px;}
.y157{bottom:186.480000px;}
.y71{bottom:190.860000px;}
.yce{bottom:192.240000px;}
.y168{bottom:194.400000px;}
.y13b{bottom:196.560000px;}
.y35{bottom:196.740000px;}
.ya3{bottom:198.360000px;}
.y84{bottom:200.160000px;}
.y128{bottom:208.440000px;}
.y70{bottom:211.740000px;}
.y34{bottom:215.820000px;}
.yc1{bottom:216.360000px;}
.y156{bottom:217.440000px;}
.y100{bottom:218.160000px;}
.y113{bottom:226.500000px;}
.y14f{bottom:227.520000px;}
.ya2{bottom:229.320000px;}
.ye8{bottom:231.480000px;}
.y6f{bottom:232.260000px;}
.y167{bottom:234.360000px;}
.y33{bottom:234.900000px;}
.y17e{bottom:236.160000px;}
.y127{bottom:239.400000px;}
.y83{bottom:240.120000px;}
.ycd{bottom:241.560000px;}
.y13a{bottom:248.400000px;}
.y6e{bottom:253.140000px;}
.y32{bottom:253.620000px;}
.ye7{bottom:262.440000px;}
.yc0{bottom:265.320000px;}
.y17d{bottom:267.480000px;}
.y40{bottom:268.500000px;}
.ya1{bottom:269.280000px;}
.yff{bottom:270.360000px;}
.y82{bottom:271.440000px;}
.ycc{bottom:272.520000px;}
.y31{bottom:272.700000px;}
.y6d{bottom:273.660000px;}
.y139{bottom:279.360000px;}
.y30{bottom:291.780000px;}
.ye6{bottom:293.400000px;}
.y6c{bottom:294.540000px;}
.ybf{bottom:296.280000px;}
.y17c{bottom:298.800000px;}
.ya0{bottom:300.240000px;}
.yfe{bottom:301.320000px;}
.y126{bottom:301.680000px;}
.y81{bottom:302.400000px;}
.ycb{bottom:303.480000px;}
.y166{bottom:305.280000px;}
.y2f{bottom:310.500000px;}
.y14e{bottom:310.680000px;}
.y6b{bottom:315.060000px;}
.y110{bottom:319.500000px;}
.ye5{bottom:324.360000px;}
.ybe{bottom:327.240000px;}
.y2e{bottom:329.580000px;}
.y17b{bottom:330.120000px;}
.y9f{bottom:331.560000px;}
.yfd{bottom:332.280000px;}
.y125{bottom:332.640000px;}
.y80{bottom:333.360000px;}
.yca{bottom:334.440000px;}
.y6a{bottom:335.940000px;}
.y14d{bottom:341.640000px;}
.y165{bottom:345.600000px;}
.y2d{bottom:348.660000px;}
.ye4{bottom:355.680000px;}
.y69{bottom:356.460000px;}
.y49{bottom:357.540000px;}
.ybd{bottom:358.560000px;}
.y17a{bottom:361.440000px;}
.y9e{bottom:362.520000px;}
.yfc{bottom:363.600000px;}
.y7f{bottom:364.320000px;}
.y2c{bottom:367.380000px;}
.y14c{bottom:372.600000px;}
.y48{bottom:374.460000px;}
.y164{bottom:376.560000px;}
.y68{bottom:377.340000px;}
.yc9{bottom:383.760000px;}
.y2b{bottom:386.460000px;}
.ye3{bottom:386.640000px;}
.ybc{bottom:389.520000px;}
.y47{bottom:391.740000px;}
.y9d{bottom:393.480000px;}
.yfb{bottom:394.560000px;}
.y7e{bottom:395.280000px;}
.y67{bottom:397.860000px;}
.y179{bottom:401.760000px;}
.y14b{bottom:403.560000px;}
.y2a{bottom:405.540000px;}
.y46{bottom:409.020000px;}
.yc8{bottom:414.720000px;}
.y163{bottom:416.520000px;}
.ye2{bottom:417.600000px;}
.y66{bottom:418.740000px;}
.ybb{bottom:420.480000px;}
.y29{bottom:424.620000px;}
.y155{bottom:424.800000px;}
.yfa{bottom:425.520000px;}
.y124{bottom:425.880000px;}
.y45{bottom:426.300000px;}
.y7d{bottom:426.960000px;}
.y9c{bottom:433.440000px;}
.y14a{bottom:434.880000px;}
.y10f{bottom:435.600000px;}
.y65{bottom:439.260000px;}
.y178{bottom:441.720000px;}
.y7a{bottom:442.500000px;}
.y28{bottom:443.340000px;}
.y44{bottom:443.580000px;}
.yc7{bottom:445.680000px;}
.ye1{bottom:448.560000px;}
.yba{bottom:451.440000px;}
.yf9{bottom:456.480000px;}
.y123{bottom:456.840000px;}
.y64{bottom:460.140000px;}
.y43{bottom:460.860000px;}
.y27{bottom:462.420000px;}
.y149{bottom:465.840000px;}
.y177{bottom:472.680000px;}
.y9b{bottom:473.760000px;}
.y138{bottom:476.640000px;}
.y42{bottom:478.140000px;}
.y63{bottom:480.660000px;}
.y26{bottom:481.500000px;}
.yb9{bottom:482.760000px;}
.y5a{bottom:484.500000px;}
.y10e{bottom:487.800000px;}
.yc6{bottom:494.640000px;}
.y41{bottom:495.420000px;}
.y25{bottom:500.220000px;}
.ye0{bottom:500.760000px;}
.y62{bottom:501.540000px;}
.y137{bottom:507.600000px;}
.yf8{bottom:508.680000px;}
.y176{bottom:512.640000px;}
.y9a{bottom:513.720000px;}
.y148{bottom:517.680000px;}
.y10d{bottom:518.760000px;}
.y24{bottom:519.300000px;}
.y61{bottom:522.060000px;}
.yb8{bottom:522.720000px;}
.ydf{bottom:531.720000px;}
.y23{bottom:538.380000px;}
.y154{bottom:538.920000px;}
.yf7{bottom:539.640000px;}
.y60{bottom:542.940000px;}
.yc5{bottom:543.600000px;}
.y99{bottom:544.680000px;}
.y10c{bottom:549.720000px;}
.y175{bottom:552.600000px;}
.yb7{bottom:553.680000px;}
.y22{bottom:557.100000px;}
.y162{bottom:558.720000px;}
.y136{bottom:559.800000px;}
.yde{bottom:562.680000px;}
.y5f{bottom:563.460000px;}
.y147{bottom:569.880000px;}
.yf6{bottom:570.600000px;}
.y122{bottom:570.960000px;}
.y98{bottom:575.640000px;}
.y21{bottom:576.180000px;}
.y10b{bottom:580.680000px;}
.y174{bottom:583.920000px;}
.y5e{bottom:584.340000px;}
.yb6{bottom:584.640000px;}
.y135{bottom:590.760000px;}
.yc4{bottom:592.920000px;}
.ydd{bottom:594.000000px;}
.y20{bottom:595.260000px;}
.y161{bottom:598.680000px;}
.y146{bottom:600.840000px;}
.yf5{bottom:601.920000px;}
.y5d{bottom:604.860000px;}
.y97{bottom:606.600000px;}
.y10a{bottom:612.000000px;}
.y1f{bottom:614.340000px;}
.y173{bottom:614.880000px;}
.yb5{bottom:615.600000px;}
.ydc{bottom:624.960000px;}
.y5c{bottom:625.740000px;}
.y160{bottom:630.000000px;}
.y145{bottom:631.800000px;}
.yf4{bottom:632.880000px;}
.y1e{bottom:633.780000px;}
.y96{bottom:637.920000px;}
.yc3{bottom:641.880000px;}
.y134{bottom:642.960000px;}
.y5b{bottom:646.260000px;}
.yb4{bottom:646.920000px;}
.y153{bottom:653.040000px;}
.y1d{bottom:654.300000px;}
.y172{bottom:654.840000px;}
.y15f{bottom:660.960000px;}
.y144{bottom:663.120000px;}
.yf3{bottom:663.840000px;}
.y95{bottom:668.880000px;}
.y133{bottom:673.920000px;}
.y1c{bottom:675.180000px;}
.ydb{bottom:676.800000px;}
.yb3{bottom:677.880000px;}
.y152{bottom:684.000000px;}
.y121{bottom:685.080000px;}
.yc2{bottom:690.840000px;}
.y109{bottom:694.800000px;}
.y1b{bottom:698.220000px;}
.y15e{bottom:700.920000px;}
.y132{bottom:704.880000px;}
.y94{bottom:708.840000px;}
.y143{bottom:714.960000px;}
.yf2{bottom:716.040000px;}
.yb2{bottom:717.840000px;}
.y1a{bottom:724.140000px;}
.y108{bottom:726.120000px;}
.yda{bottom:729.000000px;}
.y131{bottom:736.200000px;}
.y93{bottom:739.800000px;}
.y15d{bottom:740.880000px;}
.y120{bottom:747.000000px;}
.yb1{bottom:748.800000px;}
.y19{bottom:749.700000px;}
.y107{bottom:757.080000px;}
.yd9{bottom:759.960000px;}
.y171{bottom:766.080000px;}
.y130{bottom:767.160000px;}
.yf1{bottom:767.880000px;}
.y92{bottom:771.120000px;}
.y15c{bottom:772.200000px;}
.y11{bottom:778.500000px;}
.yb0{bottom:780.120000px;}
.y106{bottom:788.040000px;}
.yd8{bottom:791.280000px;}
.y142{bottom:798.120000px;}
.yf0{bottom:799.200000px;}
.y91{bottom:802.080000px;}
.y15b{bottom:803.160000px;}
.y170{bottom:806.040000px;}
.yaf{bottom:811.080000px;}
.y105{bottom:819.000000px;}
.yd7{bottom:822.240000px;}
.yef{bottom:830.160000px;}
.y90{bottom:833.040000px;}
.y16f{bottom:837.000000px;}
.yae{bottom:842.040000px;}
.y15a{bottom:843.120000px;}
.y141{bottom:850.320000px;}
.y11f{bottom:851.400000px;}
.yd6{bottom:853.200000px;}
.yee{bottom:861.120000px;}
.y8f{bottom:864.000000px;}
.y11e{bottom:868.500000px;}
.y104{bottom:871.200000px;}
.yad{bottom:873.000000px;}
.y16e{bottom:877.320000px;}
.y151{bottom:881.280000px;}
.y159{bottom:883.080000px;}
.yd5{bottom:884.160000px;}
.yed{bottom:892.080000px;}
.y8e{bottom:895.320000px;}
.y103{bottom:902.160000px;}
.yac{bottom:904.320000px;}
.y16d{bottom:917.280000px;}
.yec{bottom:923.400000px;}
.yd{bottom:925.500000px;}
.y12f{bottom:933.120000px;}
.y8d{bottom:935.280000px;}
.yd4{bottom:936.360000px;}
.yab{bottom:944.280000px;}
.y16c{bottom:948.240000px;}
.yeb{bottom:954.360000px;}
.y11c{bottom:961.500000px;}
.y12e{bottom:964.440000px;}
.y8c{bottom:966.240000px;}
.yaa{bottom:975.240000px;}
.yea{bottom:985.320000px;}
.yd3{bottom:988.200000px;}
.y6{bottom:988.500000px;}
.y140{bottom:995.400000px;}
.y8b{bottom:997.200000px;}
.ya9{bottom:1006.200000px;}
.y12d{bottom:1016.280000px;}
.yd2{bottom:1019.520000px;}
.y13f{bottom:1026.360000px;}
.y8a{bottom:1028.520000px;}
.ya8{bottom:1037.520000px;}
.y12c{bottom:1047.600000px;}
.yd1{bottom:1050.480000px;}
.y119{bottom:1053.000000px;}
.y89{bottom:1059.480000px;}
.ya7{bottom:1068.480000px;}
.y13e{bottom:1078.560000px;}
.y16b{bottom:1090.440000px;}
.y88{bottom:1099.440000px;}
.y87{bottom:1130.400000px;}
.y56{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y55{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y54{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h18{height:22.500000px;}
.h16{height:36.359297px;}
.h14{height:39.000000px;}
.h4{height:41.574375px;}
.h15{height:41.868281px;}
.h12{height:42.022969px;}
.h1b{height:43.500000px;}
.h10{height:46.025156px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:48.761719px;}
.h9{height:49.992188px;}
.h17{height:50.027344px;}
.hc{height:51.609375px;}
.hb{height:54.000000px;}
.he{height:57.526875px;}
.h1a{height:61.664063px;}
.h8{height:64.500000px;}
.h6{height:72.360000px;}
.h7{height:79.660547px;}
.h1c{height:93.000000px;}
.h1d{height:94.500000px;}
.h13{height:112.500000px;}
.ha{height:148.500000px;}
.h5{height:160.500000px;}
.h11{height:510.000000px;}
.h19{height:663.000000px;}
.hd{height:769.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.500000px;}
.w5{width:97.500000px;}
.w9{width:108.000000px;}
.w8{width:129.000000px;}
.wa{width:171.000000px;}
.wc{width:181.500000px;}
.wb{width:204.000000px;}
.w2{width:237.000000px;}
.w3{width:564.000000px;}
.w6{width:688.500000px;}
.w7{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.920036px;}
.x9{left:9.480108px;}
.x11{left:14.282592px;}
.x19{left:15.420060px;}
.x1b{left:16.439952px;}
.xa{left:27.409416px;}
.x12{left:32.530524px;}
.x10{left:34.420908px;}
.x6{left:40.480968px;}
.x3{left:42.000000px;}
.x1{left:54.000000px;}
.xf{left:71.919444px;}
.x18{left:81.000000px;}
.xd{left:83.929692px;}
.xe{left:94.338480px;}
.x17{left:107.174916px;}
.x8{left:117.498840px;}
.x4{left:119.055180px;}
.x16{left:151.500000px;}
.x13{left:158.685360px;}
.x1a{left:181.500000px;}
.xb{left:226.762800px;}
.x5{left:228.495108px;}
.x7{left:277.500000px;}
.xc{left:282.345000px;}
.x1c{left:288.000000px;}
.x1d{left:457.500000px;}
.x1e{left:660.000000px;}
.x2{left:685.130400px;}
.x14{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-3.379712pt;}
.ls2f{letter-spacing:-0.418304pt;}
.ls26{letter-spacing:-0.408576pt;}
.lse{letter-spacing:-0.403712pt;}
.ls32{letter-spacing:-0.384256pt;}
.ls36{letter-spacing:-0.374528pt;}
.ls33{letter-spacing:-0.355072pt;}
.ls31{letter-spacing:-0.321024pt;}
.ls22{letter-spacing:-0.301056pt;}
.ls25{letter-spacing:-0.284928pt;}
.ls24{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.231168pt;}
.ls21{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.214400pt;}
.ls1c{letter-spacing:-0.211968pt;}
.ls27{letter-spacing:-0.198912pt;}
.ls35{letter-spacing:-0.189696pt;}
.ls20{letter-spacing:-0.182528pt;}
.ls1a{letter-spacing:-0.176640pt;}
.lsf{letter-spacing:-0.165376pt;}
.ls34{letter-spacing:-0.150784pt;}
.lsb{letter-spacing:-0.141312pt;}
.lsd{letter-spacing:-0.111872pt;}
.ls16{letter-spacing:-0.110592pt;}
.ls1b{letter-spacing:-0.105984pt;}
.ls10{letter-spacing:-0.102912pt;}
.ls18{letter-spacing:-0.086016pt;}
.ls1e{letter-spacing:-0.076544pt;}
.ls17{letter-spacing:-0.073728pt;}
.ls1f{letter-spacing:-0.070656pt;}
.ls19{letter-spacing:-0.067584pt;}
.ls14{letter-spacing:-0.049152pt;}
.ls15{letter-spacing:-0.043008pt;}
.ls3f{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.012800pt;}
.ls13{letter-spacing:0.074368pt;}
.ls1{letter-spacing:0.085888pt;}
.ls2a{letter-spacing:0.100864pt;}
.ls29{letter-spacing:0.100992pt;}
.ls2c{letter-spacing:0.101120pt;}
.ls39{letter-spacing:0.109824pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.223104pt;}
.ls38{letter-spacing:0.223872pt;}
.ls12{letter-spacing:0.233728pt;}
.ls3d{letter-spacing:0.236544pt;}
.ls2b{letter-spacing:0.244992pt;}
.ls28{letter-spacing:0.253440pt;}
.ls37{letter-spacing:0.270336pt;}
.ls3e{letter-spacing:0.312576pt;}
.ls3c{letter-spacing:0.325248pt;}
.ls3a{letter-spacing:0.380160pt;}
.ls3b{letter-spacing:0.384384pt;}
.ls2e{letter-spacing:4.755200pt;}
.lsa{letter-spacing:5.930240pt;}
.ls7{letter-spacing:7.050240pt;}
.ls2d{letter-spacing:9.519360pt;}
.ls9{letter-spacing:13.619200pt;}
.ls6{letter-spacing:16.276480pt;}
.ls8{letter-spacing:20.645888pt;}
.ls5{letter-spacing:20.779520pt;}
.ls40{letter-spacing:56.523520pt;}
.ls4{letter-spacing:65.253120pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws5{word-spacing:-17.792000pt;}
.ws0{word-spacing:-16.256768pt;}
.ws1f{word-spacing:-16.012800pt;}
.ws1d{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.987200pt;}
.ws8{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.649344pt;}
.wsc{word-spacing:-14.614016pt;}
.ws9{word-spacing:-14.543360pt;}
.ws1c{word-spacing:-14.451200pt;}
.wsd{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.241088pt;}
.ws11{word-spacing:-13.224960pt;}
.wse{word-spacing:-13.171200pt;}
.wsf{word-spacing:-13.138944pt;}
.ws13{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.ws14{word-spacing:-12.325376pt;}
.ws15{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.ws18{word-spacing:-11.362560pt;}
.ws19{word-spacing:-11.307648pt;}
.ws1b{word-spacing:-11.294976pt;}
.ws16{word-spacing:-11.235840pt;}
.ws1a{word-spacing:-11.227392pt;}
.ws17{word-spacing:-11.206272pt;}
.ws20{word-spacing:-0.053760pt;}
.ws12{word-spacing:0.000000pt;}
.wsa{word-spacing:0.082432pt;}
.ws6{word-spacing:0.117760pt;}
.ws7{word-spacing:0.153088pt;}
._4{margin-left:-6.799360pt;}
._d{margin-left:-4.867072pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._a{width:2.634368pt;}
._b{width:3.960192pt;}
._17{width:5.107328pt;}
._15{width:6.182400pt;}
._18{width:7.734784pt;}
._f{width:8.714240pt;}
._14{width:9.950720pt;}
._1b{width:10.850560pt;}
._9{width:12.011520pt;}
._e{width:13.601280pt;}
._c{width:15.031680pt;}
._7{width:16.192000pt;}
._8{width:17.192960pt;}
._16{width:18.295808pt;}
._11{width:19.917312pt;}
._10{width:20.886528pt;}
._6{width:22.449792pt;}
._1e{width:23.456128pt;}
._1f{width:24.458112pt;}
._1a{width:26.009600pt;}
._1c{width:27.417600pt;}
._1d{width:28.556800pt;}
._20{width:32.601600pt;}
._12{width:37.329920pt;}
._13{width:38.330880pt;}
._19{width:48.083200pt;}
._5{width:69.600256pt;}
.fs7{font-size:39.680000pt;}
.fs9{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:71.680000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:4.213333pt;}
.y52{bottom:4.373333pt;}
.y7c{bottom:4.746667pt;}
.y10{bottom:4.853333pt;}
.y3f{bottom:5.280000pt;}
.y9{bottom:6.133333pt;}
.y17{bottom:20.640000pt;}
.y51{bottom:21.333333pt;}
.y50{bottom:22.293333pt;}
.y78{bottom:22.773333pt;}
.y3e{bottom:23.200000pt;}
.y7b{bottom:23.306667pt;}
.yf{bottom:23.413333pt;}
.y112{bottom:23.520000pt;}
.y115{bottom:23.626667pt;}
.y118{bottom:23.733333pt;}
.y11b{bottom:24.640000pt;}
.y4e{bottom:25.440000pt;}
.y8{bottom:25.973333pt;}
.y3d{bottom:39.840000pt;}
.y4d{bottom:40.800000pt;}
.ye{bottom:41.013333pt;}
.y16{bottom:41.440000pt;}
.yc{bottom:41.653333pt;}
.y4{bottom:50.880000pt;}
.y11d{bottom:50.933333pt;}
.y111{bottom:51.040000pt;}
.y114{bottom:51.146667pt;}
.y117{bottom:51.253333pt;}
.y11a{bottom:52.160000pt;}
.y4c{bottom:56.160000pt;}
.y3c{bottom:56.800000pt;}
.y77{bottom:59.253333pt;}
.y58{bottom:59.520000pt;}
.y15{bottom:60.000000pt;}
.y59{bottom:66.666667pt;}
.y3{bottom:67.840000pt;}
.y4b{bottom:71.520000pt;}
.y3b{bottom:73.760000pt;}
.yb{bottom:73.973333pt;}
.y57{bottom:75.200000pt;}
.y76{bottom:77.813333pt;}
.y14{bottom:78.560000pt;}
.y4a{bottom:86.880000pt;}
.y3a{bottom:90.720000pt;}
.ya6{bottom:93.440000pt;}
.y53{bottom:95.360000pt;}
.y75{bottom:96.053333pt;}
.y13{bottom:97.120000pt;}
.y13d{bottom:100.800000pt;}
.y12b{bottom:102.400000pt;}
.ya{bottom:106.613333pt;}
.y4f{bottom:106.666667pt;}
.y39{bottom:107.360000pt;}
.y16a{bottom:109.440000pt;}
.y74{bottom:114.613333pt;}
.yd0{bottom:115.840000pt;}
.y12{bottom:116.000000pt;}
.y116{bottom:118.666667pt;}
.y102{bottom:120.320000pt;}
.ya5{bottom:120.960000pt;}
.y86{bottom:122.880000pt;}
.y38{bottom:124.320000pt;}
.y7{bottom:127.413333pt;}
.y13c{bottom:128.320000pt;}
.y12a{bottom:129.920000pt;}
.ye9{bottom:131.840000pt;}
.y73{bottom:132.853333pt;}
.y169{bottom:136.960000pt;}
.y158{bottom:137.920000pt;}
.y18{bottom:140.000000pt;}
.y37{bottom:141.280000pt;}
.ycf{bottom:143.360000pt;}
.y101{bottom:147.840000pt;}
.ya4{bottom:148.480000pt;}
.y85{bottom:150.400000pt;}
.y72{bottom:151.413333pt;}
.y150{bottom:155.840000pt;}
.y129{bottom:157.760000pt;}
.y36{bottom:157.920000pt;}
.y157{bottom:165.760000pt;}
.y71{bottom:169.653333pt;}
.yce{bottom:170.880000pt;}
.y168{bottom:172.800000pt;}
.y13b{bottom:174.720000pt;}
.y35{bottom:174.880000pt;}
.ya3{bottom:176.320000pt;}
.y84{bottom:177.920000pt;}
.y128{bottom:185.280000pt;}
.y70{bottom:188.213333pt;}
.y34{bottom:191.840000pt;}
.yc1{bottom:192.320000pt;}
.y156{bottom:193.280000pt;}
.y100{bottom:193.920000pt;}
.y113{bottom:201.333333pt;}
.y14f{bottom:202.240000pt;}
.ya2{bottom:203.840000pt;}
.ye8{bottom:205.760000pt;}
.y6f{bottom:206.453333pt;}
.y167{bottom:208.320000pt;}
.y33{bottom:208.800000pt;}
.y17e{bottom:209.920000pt;}
.y127{bottom:212.800000pt;}
.y83{bottom:213.440000pt;}
.ycd{bottom:214.720000pt;}
.y13a{bottom:220.800000pt;}
.y6e{bottom:225.013333pt;}
.y32{bottom:225.440000pt;}
.ye7{bottom:233.280000pt;}
.yc0{bottom:235.840000pt;}
.y17d{bottom:237.760000pt;}
.y40{bottom:238.666667pt;}
.ya1{bottom:239.360000pt;}
.yff{bottom:240.320000pt;}
.y82{bottom:241.280000pt;}
.ycc{bottom:242.240000pt;}
.y31{bottom:242.400000pt;}
.y6d{bottom:243.253333pt;}
.y139{bottom:248.320000pt;}
.y30{bottom:259.360000pt;}
.ye6{bottom:260.800000pt;}
.y6c{bottom:261.813333pt;}
.ybf{bottom:263.360000pt;}
.y17c{bottom:265.600000pt;}
.ya0{bottom:266.880000pt;}
.yfe{bottom:267.840000pt;}
.y126{bottom:268.160000pt;}
.y81{bottom:268.800000pt;}
.ycb{bottom:269.760000pt;}
.y166{bottom:271.360000pt;}
.y2f{bottom:276.000000pt;}
.y14e{bottom:276.160000pt;}
.y6b{bottom:280.053333pt;}
.y110{bottom:284.000000pt;}
.ye5{bottom:288.320000pt;}
.ybe{bottom:290.880000pt;}
.y2e{bottom:292.960000pt;}
.y17b{bottom:293.440000pt;}
.y9f{bottom:294.720000pt;}
.yfd{bottom:295.360000pt;}
.y125{bottom:295.680000pt;}
.y80{bottom:296.320000pt;}
.yca{bottom:297.280000pt;}
.y6a{bottom:298.613333pt;}
.y14d{bottom:303.680000pt;}
.y165{bottom:307.200000pt;}
.y2d{bottom:309.920000pt;}
.ye4{bottom:316.160000pt;}
.y69{bottom:316.853333pt;}
.y49{bottom:317.813333pt;}
.ybd{bottom:318.720000pt;}
.y17a{bottom:321.280000pt;}
.y9e{bottom:322.240000pt;}
.yfc{bottom:323.200000pt;}
.y7f{bottom:323.840000pt;}
.y2c{bottom:326.560000pt;}
.y14c{bottom:331.200000pt;}
.y48{bottom:332.853333pt;}
.y164{bottom:334.720000pt;}
.y68{bottom:335.413333pt;}
.yc9{bottom:341.120000pt;}
.y2b{bottom:343.520000pt;}
.ye3{bottom:343.680000pt;}
.ybc{bottom:346.240000pt;}
.y47{bottom:348.213333pt;}
.y9d{bottom:349.760000pt;}
.yfb{bottom:350.720000pt;}
.y7e{bottom:351.360000pt;}
.y67{bottom:353.653333pt;}
.y179{bottom:357.120000pt;}
.y14b{bottom:358.720000pt;}
.y2a{bottom:360.480000pt;}
.y46{bottom:363.573333pt;}
.yc8{bottom:368.640000pt;}
.y163{bottom:370.240000pt;}
.ye2{bottom:371.200000pt;}
.y66{bottom:372.213333pt;}
.ybb{bottom:373.760000pt;}
.y29{bottom:377.440000pt;}
.y155{bottom:377.600000pt;}
.yfa{bottom:378.240000pt;}
.y124{bottom:378.560000pt;}
.y45{bottom:378.933333pt;}
.y7d{bottom:379.520000pt;}
.y9c{bottom:385.280000pt;}
.y14a{bottom:386.560000pt;}
.y10f{bottom:387.200000pt;}
.y65{bottom:390.453333pt;}
.y178{bottom:392.640000pt;}
.y7a{bottom:393.333333pt;}
.y28{bottom:394.080000pt;}
.y44{bottom:394.293333pt;}
.yc7{bottom:396.160000pt;}
.ye1{bottom:398.720000pt;}
.yba{bottom:401.280000pt;}
.yf9{bottom:405.760000pt;}
.y123{bottom:406.080000pt;}
.y64{bottom:409.013333pt;}
.y43{bottom:409.653333pt;}
.y27{bottom:411.040000pt;}
.y149{bottom:414.080000pt;}
.y177{bottom:420.160000pt;}
.y9b{bottom:421.120000pt;}
.y138{bottom:423.680000pt;}
.y42{bottom:425.013333pt;}
.y63{bottom:427.253333pt;}
.y26{bottom:428.000000pt;}
.yb9{bottom:429.120000pt;}
.y5a{bottom:430.666667pt;}
.y10e{bottom:433.600000pt;}
.yc6{bottom:439.680000pt;}
.y41{bottom:440.373333pt;}
.y25{bottom:444.640000pt;}
.ye0{bottom:445.120000pt;}
.y62{bottom:445.813333pt;}
.y137{bottom:451.200000pt;}
.yf8{bottom:452.160000pt;}
.y176{bottom:455.680000pt;}
.y9a{bottom:456.640000pt;}
.y148{bottom:460.160000pt;}
.y10d{bottom:461.120000pt;}
.y24{bottom:461.600000pt;}
.y61{bottom:464.053333pt;}
.yb8{bottom:464.640000pt;}
.ydf{bottom:472.640000pt;}
.y23{bottom:478.560000pt;}
.y154{bottom:479.040000pt;}
.yf7{bottom:479.680000pt;}
.y60{bottom:482.613333pt;}
.yc5{bottom:483.200000pt;}
.y99{bottom:484.160000pt;}
.y10c{bottom:488.640000pt;}
.y175{bottom:491.200000pt;}
.yb7{bottom:492.160000pt;}
.y22{bottom:495.200000pt;}
.y162{bottom:496.640000pt;}
.y136{bottom:497.600000pt;}
.yde{bottom:500.160000pt;}
.y5f{bottom:500.853333pt;}
.y147{bottom:506.560000pt;}
.yf6{bottom:507.200000pt;}
.y122{bottom:507.520000pt;}
.y98{bottom:511.680000pt;}
.y21{bottom:512.160000pt;}
.y10b{bottom:516.160000pt;}
.y174{bottom:519.040000pt;}
.y5e{bottom:519.413333pt;}
.yb6{bottom:519.680000pt;}
.y135{bottom:525.120000pt;}
.yc4{bottom:527.040000pt;}
.ydd{bottom:528.000000pt;}
.y20{bottom:529.120000pt;}
.y161{bottom:532.160000pt;}
.y146{bottom:534.080000pt;}
.yf5{bottom:535.040000pt;}
.y5d{bottom:537.653333pt;}
.y97{bottom:539.200000pt;}
.y10a{bottom:544.000000pt;}
.y1f{bottom:546.080000pt;}
.y173{bottom:546.560000pt;}
.yb5{bottom:547.200000pt;}
.ydc{bottom:555.520000pt;}
.y5c{bottom:556.213333pt;}
.y160{bottom:560.000000pt;}
.y145{bottom:561.600000pt;}
.yf4{bottom:562.560000pt;}
.y1e{bottom:563.360000pt;}
.y96{bottom:567.040000pt;}
.yc3{bottom:570.560000pt;}
.y134{bottom:571.520000pt;}
.y5b{bottom:574.453333pt;}
.yb4{bottom:575.040000pt;}
.y153{bottom:580.480000pt;}
.y1d{bottom:581.600000pt;}
.y172{bottom:582.080000pt;}
.y15f{bottom:587.520000pt;}
.y144{bottom:589.440000pt;}
.yf3{bottom:590.080000pt;}
.y95{bottom:594.560000pt;}
.y133{bottom:599.040000pt;}
.y1c{bottom:600.160000pt;}
.ydb{bottom:601.600000pt;}
.yb3{bottom:602.560000pt;}
.y152{bottom:608.000000pt;}
.y121{bottom:608.960000pt;}
.yc2{bottom:614.080000pt;}
.y109{bottom:617.600000pt;}
.y1b{bottom:620.640000pt;}
.y15e{bottom:623.040000pt;}
.y132{bottom:626.560000pt;}
.y94{bottom:630.080000pt;}
.y143{bottom:635.520000pt;}
.yf2{bottom:636.480000pt;}
.yb2{bottom:638.080000pt;}
.y1a{bottom:643.680000pt;}
.y108{bottom:645.440000pt;}
.yda{bottom:648.000000pt;}
.y131{bottom:654.400000pt;}
.y93{bottom:657.600000pt;}
.y15d{bottom:658.560000pt;}
.y120{bottom:664.000000pt;}
.yb1{bottom:665.600000pt;}
.y19{bottom:666.400000pt;}
.y107{bottom:672.960000pt;}
.yd9{bottom:675.520000pt;}
.y171{bottom:680.960000pt;}
.y130{bottom:681.920000pt;}
.yf1{bottom:682.560000pt;}
.y92{bottom:685.440000pt;}
.y15c{bottom:686.400000pt;}
.y11{bottom:692.000000pt;}
.yb0{bottom:693.440000pt;}
.y106{bottom:700.480000pt;}
.yd8{bottom:703.360000pt;}
.y142{bottom:709.440000pt;}
.yf0{bottom:710.400000pt;}
.y91{bottom:712.960000pt;}
.y15b{bottom:713.920000pt;}
.y170{bottom:716.480000pt;}
.yaf{bottom:720.960000pt;}
.y105{bottom:728.000000pt;}
.yd7{bottom:730.880000pt;}
.yef{bottom:737.920000pt;}
.y90{bottom:740.480000pt;}
.y16f{bottom:744.000000pt;}
.yae{bottom:748.480000pt;}
.y15a{bottom:749.440000pt;}
.y141{bottom:755.840000pt;}
.y11f{bottom:756.800000pt;}
.yd6{bottom:758.400000pt;}
.yee{bottom:765.440000pt;}
.y8f{bottom:768.000000pt;}
.y11e{bottom:772.000000pt;}
.y104{bottom:774.400000pt;}
.yad{bottom:776.000000pt;}
.y16e{bottom:779.840000pt;}
.y151{bottom:783.360000pt;}
.y159{bottom:784.960000pt;}
.yd5{bottom:785.920000pt;}
.yed{bottom:792.960000pt;}
.y8e{bottom:795.840000pt;}
.y103{bottom:801.920000pt;}
.yac{bottom:803.840000pt;}
.y16d{bottom:815.360000pt;}
.yec{bottom:820.800000pt;}
.yd{bottom:822.666667pt;}
.y12f{bottom:829.440000pt;}
.y8d{bottom:831.360000pt;}
.yd4{bottom:832.320000pt;}
.yab{bottom:839.360000pt;}
.y16c{bottom:842.880000pt;}
.yeb{bottom:848.320000pt;}
.y11c{bottom:854.666667pt;}
.y12e{bottom:857.280000pt;}
.y8c{bottom:858.880000pt;}
.yaa{bottom:866.880000pt;}
.yea{bottom:875.840000pt;}
.yd3{bottom:878.400000pt;}
.y6{bottom:878.666667pt;}
.y140{bottom:884.800000pt;}
.y8b{bottom:886.400000pt;}
.ya9{bottom:894.400000pt;}
.y12d{bottom:903.360000pt;}
.yd2{bottom:906.240000pt;}
.y13f{bottom:912.320000pt;}
.y8a{bottom:914.240000pt;}
.ya8{bottom:922.240000pt;}
.y12c{bottom:931.200000pt;}
.yd1{bottom:933.760000pt;}
.y119{bottom:936.000000pt;}
.y89{bottom:941.760000pt;}
.ya7{bottom:949.760000pt;}
.y13e{bottom:958.720000pt;}
.y16b{bottom:969.280000pt;}
.y88{bottom:977.280000pt;}
.y87{bottom:1004.800000pt;}
.y56{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y55{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y54{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h18{height:20.000000pt;}
.h16{height:32.319375pt;}
.h14{height:34.666667pt;}
.h4{height:36.955000pt;}
.h15{height:37.216250pt;}
.h12{height:37.353750pt;}
.h1b{height:38.666667pt;}
.h10{height:40.911250pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.343750pt;}
.h9{height:44.437500pt;}
.h17{height:44.468750pt;}
.hc{height:45.875000pt;}
.hb{height:48.000000pt;}
.he{height:51.135000pt;}
.h1a{height:54.812500pt;}
.h8{height:57.333333pt;}
.h6{height:64.320000pt;}
.h7{height:70.809375pt;}
.h1c{height:82.666667pt;}
.h1d{height:84.000000pt;}
.h13{height:100.000000pt;}
.ha{height:132.000000pt;}
.h5{height:142.666667pt;}
.h11{height:453.333333pt;}
.h19{height:589.333333pt;}
.hd{height:684.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.333333pt;}
.w5{width:86.666667pt;}
.w9{width:96.000000pt;}
.w8{width:114.666667pt;}
.wa{width:152.000000pt;}
.wc{width:161.333333pt;}
.wb{width:181.333333pt;}
.w2{width:210.666667pt;}
.w3{width:501.333333pt;}
.w6{width:612.000000pt;}
.w7{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:7.040032pt;}
.x9{left:8.426763pt;}
.x11{left:12.695637pt;}
.x19{left:13.706720pt;}
.x1b{left:14.613291pt;}
.xa{left:24.363925pt;}
.x12{left:28.916021pt;}
.x10{left:30.596363pt;}
.x6{left:35.983083pt;}
.x3{left:37.333333pt;}
.x1{left:48.000000pt;}
.xf{left:63.928395pt;}
.x18{left:72.000000pt;}
.xd{left:74.604171pt;}
.xe{left:83.856427pt;}
.x17{left:95.266592pt;}
.x8{left:104.443413pt;}
.x4{left:105.826827pt;}
.x16{left:134.666667pt;}
.x13{left:141.053653pt;}
.x1a{left:161.333333pt;}
.xb{left:201.566933pt;}
.x5{left:203.106763pt;}
.x7{left:246.666667pt;}
.xc{left:250.973333pt;}
.x1c{left:256.000000pt;}
.x1d{left:406.666667pt;}
.x1e{left:586.666667pt;}
.x2{left:609.004800pt;}
.x14{left:721.333333pt;}
}




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