
    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_674d908e1c60efa55644d439.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_50d99b09178e4f19fc45ebca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_d0aa1ddb0458847c32928eec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_293c3547f5627f2613c33086.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_a0930fcfd75103e1bf674e66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_c608db3ff214a9ba562cfce4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_8e59b9f191d89286e9a624ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987793;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;}
.m5{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.v2{vertical-align:15.184800px;}
.v1{vertical-align:19.652400px;}
.lsc{letter-spacing:-2.140320px;}
.lsd{letter-spacing:-2.099160px;}
.lsb{letter-spacing:-1.852200px;}
.lsa{letter-spacing:-1.769880px;}
.ls7{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.470400px;}
.ls5{letter-spacing:-0.294000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000124px;}
.ls6{letter-spacing:0.046800px;}
.ls1{letter-spacing:1.320000px;}
.ls8{letter-spacing:5.335200px;}
.ls9{letter-spacing:53.030816px;}
.ls3{letter-spacing:1197.311400px;}
.ls0{letter-spacing:2264.095200px;}
.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;}
}
.ws7d{word-spacing:-39.307800px;}
.ws7e{word-spacing:-30.746520px;}
.ws7f{word-spacing:-28.231644px;}
.ws7c{word-spacing:-28.079352px;}
.ws7b{word-spacing:-20.983368px;}
.ws4a{word-spacing:-17.404800px;}
.ws3b{word-spacing:-9.360000px;}
.ws0{word-spacing:-9.120000px;}
.ws4b{word-spacing:-6.856080px;}
.wsb1{word-spacing:-6.820800px;}
.ws19{word-spacing:-4.410000px;}
.ws68{word-spacing:-3.469200px;}
.wsab{word-spacing:-3.410400px;}
.wsb2{word-spacing:-3.292800px;}
.ws91{word-spacing:-3.175200px;}
.ws52{word-spacing:-3.116400px;}
.ws77{word-spacing:-3.057600px;}
.ws9e{word-spacing:-2.881200px;}
.wsa8{word-spacing:-2.822400px;}
.ws97{word-spacing:-2.763600px;}
.wsb0{word-spacing:-2.646000px;}
.wsae{word-spacing:-2.469600px;}
.ws9d{word-spacing:-2.410800px;}
.ws69{word-spacing:-2.352000px;}
.ws8{word-spacing:-2.293200px;}
.ws8f{word-spacing:-2.234400px;}
.ws74{word-spacing:-2.175600px;}
.ws4f{word-spacing:-2.116800px;}
.ws36{word-spacing:-2.058000px;}
.ws18{word-spacing:-1.999200px;}
.ws72{word-spacing:-1.940400px;}
.ws5c{word-spacing:-1.881600px;}
.ws6d{word-spacing:-1.822800px;}
.ws89{word-spacing:-1.764000px;}
.ws1b{word-spacing:-1.705200px;}
.ws32{word-spacing:-1.646400px;}
.ws2e{word-spacing:-1.596000px;}
.ws37{word-spacing:-1.528800px;}
.ws62{word-spacing:-1.470000px;}
.wsb{word-spacing:-1.411200px;}
.ws6f{word-spacing:-1.368000px;}
.ws2{word-spacing:-1.320000px;}
.ws6e{word-spacing:-1.293600px;}
.ws28{word-spacing:-1.231200px;}
.ws83{word-spacing:-1.176000px;}
.ws39{word-spacing:-1.123200px;}
.ws82{word-spacing:-1.117200px;}
.wsa1{word-spacing:-1.058400px;}
.ws65{word-spacing:-0.999600px;}
.ws88{word-spacing:-0.982800px;}
.ws31{word-spacing:-0.882000px;}
.ws2a{word-spacing:-0.820800px;}
.ws54{word-spacing:-0.764400px;}
.ws35{word-spacing:-0.705600px;}
.ws63{word-spacing:-0.646800px;}
.ws86{word-spacing:-0.592800px;}
.ws5{word-spacing:-0.470400px;}
.ws60{word-spacing:-0.411600px;}
.ws8c{word-spacing:-0.352800px;}
.ws3{word-spacing:-0.235200px;}
.wsaf{word-spacing:-0.176400px;}
.ws56{word-spacing:-0.136800px;}
.ws6a{word-spacing:-0.117600px;}
.ws3c{word-spacing:-0.058800px;}
.ws1{word-spacing:0.000000px;}
.ws5d{word-spacing:0.046800px;}
.ws11{word-spacing:0.117600px;}
.ws5a{word-spacing:0.176400px;}
.ws58{word-spacing:0.294000px;}
.ws75{word-spacing:0.352800px;}
.ws76{word-spacing:0.411600px;}
.ws7{word-spacing:0.470400px;}
.wsaa{word-spacing:0.529200px;}
.ws73{word-spacing:0.646800px;}
.wsd{word-spacing:0.705600px;}
.ws59{word-spacing:0.764400px;}
.ws85{word-spacing:0.775200px;}
.ws94{word-spacing:0.823200px;}
.ws9c{word-spacing:0.882000px;}
.ws84{word-spacing:0.940800px;}
.wsb5{word-spacing:0.957600px;}
.ws42{word-spacing:0.999600px;}
.ws20{word-spacing:1.058400px;}
.ws48{word-spacing:1.117200px;}
.ws1e{word-spacing:1.176000px;}
.ws6{word-spacing:1.234800px;}
.wsa4{word-spacing:1.293600px;}
.wsa0{word-spacing:1.352400px;}
.ws1c{word-spacing:1.470000px;}
.ws92{word-spacing:1.528800px;}
.ws5f{word-spacing:1.587600px;}
.ws67{word-spacing:1.646400px;}
.ws8b{word-spacing:1.705200px;}
.wsb4{word-spacing:1.732800px;}
.ws64{word-spacing:1.822800px;}
.ws78{word-spacing:1.824000px;}
.ws98{word-spacing:1.881600px;}
.ws4c{word-spacing:1.940400px;}
.ws8e{word-spacing:1.999200px;}
.ws2b{word-spacing:2.052000px;}
.wsb6{word-spacing:2.097600px;}
.ws5e{word-spacing:2.116800px;}
.ws2f{word-spacing:2.175600px;}
.wsa3{word-spacing:2.234400px;}
.ws70{word-spacing:2.280000px;}
.ws53{word-spacing:2.410800px;}
.wsac{word-spacing:2.528400px;}
.ws27{word-spacing:2.553600px;}
.ws9a{word-spacing:2.704800px;}
.wsb9{word-spacing:2.736000px;}
.ws81{word-spacing:2.763600px;}
.ws51{word-spacing:2.822400px;}
.wsa{word-spacing:2.940000px;}
.ws8a{word-spacing:2.998800px;}
.ws29{word-spacing:3.009600px;}
.wse{word-spacing:3.057600px;}
.wsa5{word-spacing:3.116400px;}
.ws6b{word-spacing:3.175200px;}
.ws79{word-spacing:3.192000px;}
.ws16{word-spacing:3.328800px;}
.ws66{word-spacing:3.351600px;}
.ws55{word-spacing:3.410400px;}
.ws26{word-spacing:3.420000px;}
.wsa7{word-spacing:3.469200px;}
.ws33{word-spacing:3.586800px;}
.ws4d{word-spacing:3.645600px;}
.ws87{word-spacing:3.650400px;}
.ws4{word-spacing:3.763200px;}
.ws90{word-spacing:3.822000px;}
.ws2d{word-spacing:3.876000px;}
.wsb3{word-spacing:3.921600px;}
.ws46{word-spacing:3.939600px;}
.ws25{word-spacing:3.967200px;}
.ws1a{word-spacing:3.998400px;}
.ws1d{word-spacing:4.057200px;}
.ws57{word-spacing:4.174800px;}
.ws47{word-spacing:4.233600px;}
.ws30{word-spacing:4.351200px;}
.ws61{word-spacing:4.468800px;}
.wsad{word-spacing:4.762800px;}
.ws43{word-spacing:4.880400px;}
.ws2c{word-spacing:4.924800px;}
.ws8d{word-spacing:4.998000px;}
.ws14{word-spacing:5.056800px;}
.ws9f{word-spacing:5.115600px;}
.ws3f{word-spacing:5.233200px;}
.ws49{word-spacing:5.241600px;}
.ws7a{word-spacing:5.335200px;}
.ws45{word-spacing:5.350800px;}
.wsb7{word-spacing:5.380800px;}
.wsa2{word-spacing:5.428800px;}
.ws3e{word-spacing:5.468400px;}
.ws9b{word-spacing:5.527200px;}
.ws4e{word-spacing:5.586000px;}
.wsc{word-spacing:5.821200px;}
.ws40{word-spacing:5.938800px;}
.ws96{word-spacing:5.997600px;}
.ws99{word-spacing:6.174000px;}
.ws3a{word-spacing:6.364800px;}
.ws13{word-spacing:6.468000px;}
.ws21{word-spacing:6.644400px;}
.ws15{word-spacing:6.794400px;}
.ws71{word-spacing:6.820800px;}
.ws5b{word-spacing:6.938400px;}
.ws12{word-spacing:6.997200px;}
.ws23{word-spacing:7.056000px;}
.wsb8{word-spacing:7.478400px;}
.wsa9{word-spacing:7.526400px;}
.ws95{word-spacing:7.585200px;}
.ws3d{word-spacing:7.644000px;}
.ws24{word-spacing:7.702800px;}
.ws41{word-spacing:7.938000px;}
.wsf{word-spacing:8.173200px;}
.ws93{word-spacing:8.408400px;}
.ws38{word-spacing:8.584800px;}
.ws1f{word-spacing:8.820000px;}
.ws22{word-spacing:8.937600px;}
.ws9{word-spacing:8.996400px;}
.ws50{word-spacing:9.114000px;}
.ws34{word-spacing:9.584400px;}
.wsa6{word-spacing:9.937200px;}
.ws10{word-spacing:9.996000px;}
.ws44{word-spacing:10.231200px;}
.ws80{word-spacing:10.290000px;}
.ws6c{word-spacing:13.994400px;}
.ws17{word-spacing:1583.505600px;}
._b{margin-left:-1583.488800px;}
._8{margin-left:-7.585200px;}
._9{margin-left:-6.473880px;}
._7{margin-left:-5.409600px;}
._6{margin-left:-4.292400px;}
._5{margin-left:-2.357880px;}
._4{margin-left:-1.058400px;}
._0{width:1.782000px;}
._2{width:3.042000px;}
._1{width:4.085400px;}
._3{width:12.230400px;}
._14{width:25.672531px;}
._12{width:28.408531px;}
._a{width:46.237518px;}
._13{width:47.840280px;}
._d{width:49.065331px;}
._e{width:51.436625px;}
._f{width:53.032531px;}
._11{width:54.400531px;}
._c{width:617.828400px;}
._10{width:626.948400px;}
.fc3{color:rgb(0,80,152);}
.fc4{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fsa{font-size:26.584800px;}
.fs4{font-size:34.280400px;}
.fs8{font-size:41.160000px;}
.fs5{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs6{font-size:46.800000px;}
.fs3{font-size:58.800000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:81.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.yf2{bottom:142.804800px;}
.y65{bottom:142.894800px;}
.yca{bottom:142.906800px;}
.y55{bottom:142.930800px;}
.y9c{bottom:142.939350px;}
.y1b{bottom:142.944150px;}
.yf3{bottom:142.948800px;}
.y1c{bottom:142.948950px;}
.y1d{bottom:143.354850px;}
.y9b{bottom:158.694150px;}
.y1a{bottom:158.698950px;}
.y45{bottom:164.156100px;}
.yf1{bottom:164.560800px;}
.y7b{bottom:164.644800px;}
.y64{bottom:164.650800px;}
.yc9{bottom:164.662800px;}
.y54{bottom:164.686800px;}
.y19{bottom:174.448950px;}
.y44{bottom:179.910900px;}
.yf0{bottom:186.316800px;}
.y7a{bottom:186.400800px;}
.y63{bottom:186.406800px;}
.yc8{bottom:186.418800px;}
.ycf{bottom:186.436800px;}
.y53{bottom:186.442800px;}
.y43{bottom:195.665700px;}
.yad{bottom:195.708900px;}
.yef{bottom:208.072800px;}
.y79{bottom:208.156800px;}
.y62{bottom:208.162800px;}
.y70{bottom:208.174800px;}
.yce{bottom:208.192800px;}
.y52{bottom:208.198800px;}
.y42{bottom:211.420500px;}
.yac{bottom:211.458900px;}
.y41{bottom:227.175300px;}
.yee{bottom:229.828800px;}
.y18{bottom:229.876800px;}
.y51{bottom:229.882800px;}
.ya7{bottom:229.906800px;}
.y78{bottom:229.912800px;}
.y61{bottom:229.918800px;}
.y6f{bottom:229.930800px;}
.y9a{bottom:229.942800px;}
.ycd{bottom:229.948800px;}
.y40{bottom:242.930100px;}
.yed{bottom:251.584800px;}
.y17{bottom:251.632800px;}
.y50{bottom:251.638800px;}
.ya6{bottom:251.662800px;}
.y77{bottom:251.668800px;}
.y60{bottom:251.674800px;}
.y6e{bottom:251.686800px;}
.y99{bottom:251.698800px;}
.y98{bottom:256.593900px;}
.y3f{bottom:258.684900px;}
.yec{bottom:273.340800px;}
.y16{bottom:273.388800px;}
.y4f{bottom:273.394800px;}
.ya5{bottom:273.418800px;}
.y76{bottom:273.424800px;}
.y5f{bottom:273.430800px;}
.y6d{bottom:273.442800px;}
.ycc{bottom:273.448800px;}
.y3e{bottom:274.439700px;}
.y3d{bottom:290.194500px;}
.yeb{bottom:295.096800px;}
.yc7{bottom:295.114800px;}
.y15{bottom:295.144800px;}
.y4e{bottom:295.150800px;}
.y6c{bottom:295.174800px;}
.y75{bottom:295.180800px;}
.y5e{bottom:295.186800px;}
.y97{bottom:295.198800px;}
.y3c{bottom:305.949300px;}
.yea{bottom:316.852800px;}
.yc6{bottom:316.870800px;}
.y14{bottom:316.900800px;}
.y4d{bottom:316.906800px;}
.y6b{bottom:316.930800px;}
.y74{bottom:316.936800px;}
.y5d{bottom:316.942800px;}
.y104{bottom:321.445350px;}
.y3b{bottom:321.704100px;}
.yab{bottom:321.843900px;}
.y3a{bottom:337.458900px;}
.y103{bottom:337.941150px;}
.ye9{bottom:338.608800px;}
.yc5{bottom:338.626800px;}
.y13{bottom:338.656800px;}
.y4c{bottom:338.662800px;}
.y6a{bottom:338.686800px;}
.y73{bottom:338.692800px;}
.y5c{bottom:338.698800px;}
.y39{bottom:353.208900px;}
.y102{bottom:354.436950px;}
.y101{bottom:354.441150px;}
.ye8{bottom:360.364800px;}
.yc4{bottom:360.382800px;}
.y12{bottom:360.412800px;}
.y4b{bottom:360.418800px;}
.y5b{bottom:360.436800px;}
.y69{bottom:360.442800px;}
.y72{bottom:360.448800px;}
.ycb{bottom:365.343900px;}
.y100{bottom:367.140750px;}
.y38{bottom:374.469000px;}
.ye7{bottom:382.120800px;}
.yc3{bottom:382.138800px;}
.ya3{bottom:382.156800px;}
.y11{bottom:382.168800px;}
.y4a{bottom:382.174800px;}
.y5a{bottom:382.192800px;}
.y68{bottom:382.198800px;}
.ya4{bottom:387.093900px;}
.y37{bottom:390.219000px;}
.ye6{bottom:403.876800px;}
.yc2{bottom:403.894800px;}
.y96{bottom:403.906800px;}
.ya2{bottom:403.912800px;}
.y10{bottom:403.924800px;}
.y49{bottom:403.930800px;}
.y59{bottom:403.948800px;}
.ye5{bottom:425.632800px;}
.yc1{bottom:425.650800px;}
.y95{bottom:425.662800px;}
.ya1{bottom:425.668800px;}
.yf{bottom:425.680800px;}
.y48{bottom:425.686800px;}
.ye4{bottom:447.388800px;}
.yc0{bottom:447.406800px;}
.y36{bottom:447.412800px;}
.y94{bottom:447.418800px;}
.ya0{bottom:447.424800px;}
.ye{bottom:447.436800px;}
.y47{bottom:447.442800px;}
.ye3{bottom:469.144800px;}
.ybf{bottom:469.162800px;}
.y35{bottom:469.168800px;}
.y93{bottom:469.174800px;}
.y9f{bottom:469.180800px;}
.yd{bottom:469.192800px;}
.y46{bottom:469.198800px;}
.yff{bottom:474.717750px;}
.ye2{bottom:490.900800px;}
.ybe{bottom:490.918800px;}
.y34{bottom:490.924800px;}
.y92{bottom:490.930800px;}
.y9e{bottom:490.936800px;}
.yc{bottom:490.948800px;}
.yfe{bottom:491.213550px;}
.yaa{bottom:495.843900px;}
.yfd{bottom:507.709350px;}
.ye1{bottom:512.656800px;}
.ybd{bottom:512.674800px;}
.y33{bottom:512.680800px;}
.y91{bottom:512.686800px;}
.yb{bottom:512.692800px;}
.yfc{bottom:524.205150px;}
.ye0{bottom:534.412800px;}
.ya{bottom:534.430800px;}
.y32{bottom:534.436800px;}
.y58{bottom:534.439800px;}
.y90{bottom:534.442800px;}
.y67{bottom:534.444300px;}
.y9d{bottom:534.448800px;}
.yfb{bottom:540.700950px;}
.y57{bottom:550.644300px;}
.y66{bottom:550.648800px;}
.y8e{bottom:556.102800px;}
.ydf{bottom:556.168800px;}
.y9{bottom:556.186800px;}
.y31{bottom:556.192800px;}
.y8f{bottom:556.198800px;}
.y7d{bottom:556.228350px;}
.y71{bottom:556.487850px;}
.yfa{bottom:557.196750px;}
.y56{bottom:566.848800px;}
.y7c{bottom:572.432850px;}
.y8d{bottom:577.858800px;}
.yde{bottom:577.924800px;}
.y8{bottom:577.942800px;}
.y30{bottom:577.948800px;}
.ya9{bottom:598.693800px;}
.y8c{bottom:599.614800px;}
.ydd{bottom:599.680800px;}
.y2e{bottom:599.686800px;}
.y7{bottom:599.698800px;}
.y2f{bottom:604.593900px;}
.ya8{bottom:614.898300px;}
.yf9{bottom:616.459350px;}
.y8b{bottom:621.370800px;}
.ydc{bottom:621.436800px;}
.y2d{bottom:621.442800px;}
.y6{bottom:621.448800px;}
.yf8{bottom:632.955150px;}
.y8a{bottom:643.126800px;}
.yb0{bottom:643.189800px;}
.y2a{bottom:643.192800px;}
.y2c{bottom:643.198800px;}
.y2b{bottom:648.093900px;}
.yf7{bottom:649.450950px;}
.yaf{bottom:659.394300px;}
.y89{bottom:664.882800px;}
.y29{bottom:664.948800px;}
.yf6{bottom:665.946750px;}
.yae{bottom:675.598800px;}
.ydb{bottom:686.626800px;}
.y88{bottom:686.638800px;}
.y28{bottom:686.686800px;}
.yf5{bottom:686.698800px;}
.yda{bottom:708.382800px;}
.y87{bottom:708.394800px;}
.ybc{bottom:708.406800px;}
.y27{bottom:708.442800px;}
.yd1{bottom:708.834150px;}
.yd0{bottom:725.034150px;}
.yd9{bottom:730.138800px;}
.y86{bottom:730.150800px;}
.ybb{bottom:730.162800px;}
.y24{bottom:730.192800px;}
.y26{bottom:730.198800px;}
.y25{bottom:735.093900px;}
.yd8{bottom:751.894800px;}
.y85{bottom:751.906800px;}
.yba{bottom:751.918800px;}
.y22{bottom:751.930800px;}
.y23{bottom:751.948800px;}
.yd7{bottom:773.650800px;}
.y84{bottom:773.662800px;}
.yb9{bottom:773.674800px;}
.y21{bottom:773.686800px;}
.y5{bottom:776.698800px;}
.yd6{bottom:795.406800px;}
.y83{bottom:795.418800px;}
.yb8{bottom:795.430800px;}
.y20{bottom:795.442800px;}
.yd5{bottom:817.162800px;}
.y82{bottom:817.174800px;}
.yb7{bottom:817.186800px;}
.y1f{bottom:817.198800px;}
.y4{bottom:818.698800px;}
.yf4{bottom:822.093900px;}
.yd4{bottom:838.918800px;}
.y81{bottom:838.930800px;}
.yb6{bottom:838.942800px;}
.yd3{bottom:860.674800px;}
.y80{bottom:860.686800px;}
.y3{bottom:860.698800px;}
.yd2{bottom:882.430800px;}
.y7f{bottom:882.442800px;}
.yb5{bottom:882.448800px;}
.yb4{bottom:904.186800px;}
.y7e{bottom:904.198800px;}
.yb2{bottom:917.060700px;}
.y1e{bottom:925.942800px;}
.yb3{bottom:931.929750px;}
.yb1{bottom:932.855850px;}
.y2{bottom:947.698800px;}
.ha{height:24.853290px;}
.hd{height:29.104060px;}
.hc{height:32.236641px;}
.hf{height:33.060000px;}
.h7{height:34.351200px;}
.h2{height:40.948800px;}
.h8{height:42.026400px;}
.he{height:44.040000px;}
.h3{height:47.718000px;}
.h5{height:49.921200px;}
.h6{height:49.993200px;}
.hb{height:50.017200px;}
.h10{height:56.133600px;}
.h9{height:58.725000px;}
.h4{height:87.000000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x17{left:120.118200px;}
.x28{left:125.152650px;}
.x3{left:131.811000px;}
.x18{left:134.719650px;}
.x2b{left:141.679050px;}
.x2{left:144.567000px;}
.x6{left:148.818900px;}
.x4{left:161.271150px;}
.x7{left:163.116300px;}
.xf{left:171.947850px;}
.x1e{left:180.780600px;}
.x19{left:186.806250px;}
.x24{left:196.405800px;}
.x13{left:205.135200px;}
.x29{left:213.793350px;}
.x31{left:220.283850px;}
.x10{left:233.060400px;}
.x2a{left:241.957080px;}
.x2c{left:246.068100px;}
.x33{left:287.785650px;}
.x30{left:289.009200px;}
.x2d{left:332.606400px;}
.x35{left:337.238250px;}
.x27{left:358.553850px;}
.x16{left:366.237300px;}
.x14{left:394.157550px;}
.x1a{left:397.945650px;}
.x8{left:410.045250px;}
.x1f{left:422.888400px;}
.x20{left:427.330950px;}
.x12{left:434.126100px;}
.x1b{left:440.119200px;}
.x5{left:446.973150px;}
.x9{left:451.792650px;}
.xe{left:488.027850px;}
.xa{left:493.089150px;}
.xb{left:497.531700px;}
.x21{left:508.120800px;}
.x22{left:512.656050px;}
.x34{left:521.675100px;}
.xc{left:536.444400px;}
.xd{left:541.026000px;}
.x36{left:542.583450px;}
.x11{left:567.496800px;}
.x23{left:573.350700px;}
.x2e{left:613.733550px;}
.x15{left:618.458700px;}
.x2f{left:622.804050px;}
.x25{left:645.923250px;}
.x26{left:651.252300px;}
.x32{left:688.252500px;}
.x1c{left:692.787600px;}
.x1d{left:697.322850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.497600pt;}
.v1{vertical-align:17.468800pt;}
.lsc{letter-spacing:-1.902507pt;}
.lsd{letter-spacing:-1.865920pt;}
.lsb{letter-spacing:-1.646400pt;}
.lsa{letter-spacing:-1.573227pt;}
.ls7{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.418133pt;}
.ls5{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000110pt;}
.ls6{letter-spacing:0.041600pt;}
.ls1{letter-spacing:1.173333pt;}
.ls8{letter-spacing:4.742400pt;}
.ls9{letter-spacing:47.138503pt;}
.ls3{letter-spacing:1064.276800pt;}
.ls0{letter-spacing:2012.529067pt;}
.ws7d{word-spacing:-34.940267pt;}
.ws7e{word-spacing:-27.330240pt;}
.ws7f{word-spacing:-25.094795pt;}
.ws7c{word-spacing:-24.959424pt;}
.ws7b{word-spacing:-18.651883pt;}
.ws4a{word-spacing:-15.470933pt;}
.ws3b{word-spacing:-8.320000pt;}
.ws0{word-spacing:-8.106667pt;}
.ws4b{word-spacing:-6.094293pt;}
.wsb1{word-spacing:-6.062933pt;}
.ws19{word-spacing:-3.920000pt;}
.ws68{word-spacing:-3.083733pt;}
.wsab{word-spacing:-3.031467pt;}
.wsb2{word-spacing:-2.926933pt;}
.ws91{word-spacing:-2.822400pt;}
.ws52{word-spacing:-2.770133pt;}
.ws77{word-spacing:-2.717867pt;}
.ws9e{word-spacing:-2.561067pt;}
.wsa8{word-spacing:-2.508800pt;}
.ws97{word-spacing:-2.456533pt;}
.wsb0{word-spacing:-2.352000pt;}
.wsae{word-spacing:-2.195200pt;}
.ws9d{word-spacing:-2.142933pt;}
.ws69{word-spacing:-2.090667pt;}
.ws8{word-spacing:-2.038400pt;}
.ws8f{word-spacing:-1.986133pt;}
.ws74{word-spacing:-1.933867pt;}
.ws4f{word-spacing:-1.881600pt;}
.ws36{word-spacing:-1.829333pt;}
.ws18{word-spacing:-1.777067pt;}
.ws72{word-spacing:-1.724800pt;}
.ws5c{word-spacing:-1.672533pt;}
.ws6d{word-spacing:-1.620267pt;}
.ws89{word-spacing:-1.568000pt;}
.ws1b{word-spacing:-1.515733pt;}
.ws32{word-spacing:-1.463467pt;}
.ws2e{word-spacing:-1.418667pt;}
.ws37{word-spacing:-1.358933pt;}
.ws62{word-spacing:-1.306667pt;}
.wsb{word-spacing:-1.254400pt;}
.ws6f{word-spacing:-1.216000pt;}
.ws2{word-spacing:-1.173333pt;}
.ws6e{word-spacing:-1.149867pt;}
.ws28{word-spacing:-1.094400pt;}
.ws83{word-spacing:-1.045333pt;}
.ws39{word-spacing:-0.998400pt;}
.ws82{word-spacing:-0.993067pt;}
.wsa1{word-spacing:-0.940800pt;}
.ws65{word-spacing:-0.888533pt;}
.ws88{word-spacing:-0.873600pt;}
.ws31{word-spacing:-0.784000pt;}
.ws2a{word-spacing:-0.729600pt;}
.ws54{word-spacing:-0.679467pt;}
.ws35{word-spacing:-0.627200pt;}
.ws63{word-spacing:-0.574933pt;}
.ws86{word-spacing:-0.526933pt;}
.ws5{word-spacing:-0.418133pt;}
.ws60{word-spacing:-0.365867pt;}
.ws8c{word-spacing:-0.313600pt;}
.ws3{word-spacing:-0.209067pt;}
.wsaf{word-spacing:-0.156800pt;}
.ws56{word-spacing:-0.121600pt;}
.ws6a{word-spacing:-0.104533pt;}
.ws3c{word-spacing:-0.052267pt;}
.ws1{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.041600pt;}
.ws11{word-spacing:0.104533pt;}
.ws5a{word-spacing:0.156800pt;}
.ws58{word-spacing:0.261333pt;}
.ws75{word-spacing:0.313600pt;}
.ws76{word-spacing:0.365867pt;}
.ws7{word-spacing:0.418133pt;}
.wsaa{word-spacing:0.470400pt;}
.ws73{word-spacing:0.574933pt;}
.wsd{word-spacing:0.627200pt;}
.ws59{word-spacing:0.679467pt;}
.ws85{word-spacing:0.689067pt;}
.ws94{word-spacing:0.731733pt;}
.ws9c{word-spacing:0.784000pt;}
.ws84{word-spacing:0.836267pt;}
.wsb5{word-spacing:0.851200pt;}
.ws42{word-spacing:0.888533pt;}
.ws20{word-spacing:0.940800pt;}
.ws48{word-spacing:0.993067pt;}
.ws1e{word-spacing:1.045333pt;}
.ws6{word-spacing:1.097600pt;}
.wsa4{word-spacing:1.149867pt;}
.wsa0{word-spacing:1.202133pt;}
.ws1c{word-spacing:1.306667pt;}
.ws92{word-spacing:1.358933pt;}
.ws5f{word-spacing:1.411200pt;}
.ws67{word-spacing:1.463467pt;}
.ws8b{word-spacing:1.515733pt;}
.wsb4{word-spacing:1.540267pt;}
.ws64{word-spacing:1.620267pt;}
.ws78{word-spacing:1.621333pt;}
.ws98{word-spacing:1.672533pt;}
.ws4c{word-spacing:1.724800pt;}
.ws8e{word-spacing:1.777067pt;}
.ws2b{word-spacing:1.824000pt;}
.wsb6{word-spacing:1.864533pt;}
.ws5e{word-spacing:1.881600pt;}
.ws2f{word-spacing:1.933867pt;}
.wsa3{word-spacing:1.986133pt;}
.ws70{word-spacing:2.026667pt;}
.ws53{word-spacing:2.142933pt;}
.wsac{word-spacing:2.247467pt;}
.ws27{word-spacing:2.269867pt;}
.ws9a{word-spacing:2.404267pt;}
.wsb9{word-spacing:2.432000pt;}
.ws81{word-spacing:2.456533pt;}
.ws51{word-spacing:2.508800pt;}
.wsa{word-spacing:2.613333pt;}
.ws8a{word-spacing:2.665600pt;}
.ws29{word-spacing:2.675200pt;}
.wse{word-spacing:2.717867pt;}
.wsa5{word-spacing:2.770133pt;}
.ws6b{word-spacing:2.822400pt;}
.ws79{word-spacing:2.837333pt;}
.ws16{word-spacing:2.958933pt;}
.ws66{word-spacing:2.979200pt;}
.ws55{word-spacing:3.031467pt;}
.ws26{word-spacing:3.040000pt;}
.wsa7{word-spacing:3.083733pt;}
.ws33{word-spacing:3.188267pt;}
.ws4d{word-spacing:3.240533pt;}
.ws87{word-spacing:3.244800pt;}
.ws4{word-spacing:3.345067pt;}
.ws90{word-spacing:3.397333pt;}
.ws2d{word-spacing:3.445333pt;}
.wsb3{word-spacing:3.485867pt;}
.ws46{word-spacing:3.501867pt;}
.ws25{word-spacing:3.526400pt;}
.ws1a{word-spacing:3.554133pt;}
.ws1d{word-spacing:3.606400pt;}
.ws57{word-spacing:3.710933pt;}
.ws47{word-spacing:3.763200pt;}
.ws30{word-spacing:3.867733pt;}
.ws61{word-spacing:3.972267pt;}
.wsad{word-spacing:4.233600pt;}
.ws43{word-spacing:4.338133pt;}
.ws2c{word-spacing:4.377600pt;}
.ws8d{word-spacing:4.442667pt;}
.ws14{word-spacing:4.494933pt;}
.ws9f{word-spacing:4.547200pt;}
.ws3f{word-spacing:4.651733pt;}
.ws49{word-spacing:4.659200pt;}
.ws7a{word-spacing:4.742400pt;}
.ws45{word-spacing:4.756267pt;}
.wsb7{word-spacing:4.782933pt;}
.wsa2{word-spacing:4.825600pt;}
.ws3e{word-spacing:4.860800pt;}
.ws9b{word-spacing:4.913067pt;}
.ws4e{word-spacing:4.965333pt;}
.wsc{word-spacing:5.174400pt;}
.ws40{word-spacing:5.278933pt;}
.ws96{word-spacing:5.331200pt;}
.ws99{word-spacing:5.488000pt;}
.ws3a{word-spacing:5.657600pt;}
.ws13{word-spacing:5.749333pt;}
.ws21{word-spacing:5.906133pt;}
.ws15{word-spacing:6.039467pt;}
.ws71{word-spacing:6.062933pt;}
.ws5b{word-spacing:6.167467pt;}
.ws12{word-spacing:6.219733pt;}
.ws23{word-spacing:6.272000pt;}
.wsb8{word-spacing:6.647467pt;}
.wsa9{word-spacing:6.690133pt;}
.ws95{word-spacing:6.742400pt;}
.ws3d{word-spacing:6.794667pt;}
.ws24{word-spacing:6.846933pt;}
.ws41{word-spacing:7.056000pt;}
.wsf{word-spacing:7.265067pt;}
.ws93{word-spacing:7.474133pt;}
.ws38{word-spacing:7.630933pt;}
.ws1f{word-spacing:7.840000pt;}
.ws22{word-spacing:7.944533pt;}
.ws9{word-spacing:7.996800pt;}
.ws50{word-spacing:8.101333pt;}
.ws34{word-spacing:8.519467pt;}
.wsa6{word-spacing:8.833067pt;}
.ws10{word-spacing:8.885333pt;}
.ws44{word-spacing:9.094400pt;}
.ws80{word-spacing:9.146667pt;}
.ws6c{word-spacing:12.439467pt;}
.ws17{word-spacing:1407.560533pt;}
._b{margin-left:-1407.545600pt;}
._8{margin-left:-6.742400pt;}
._9{margin-left:-5.754560pt;}
._7{margin-left:-4.808533pt;}
._6{margin-left:-3.815467pt;}
._5{margin-left:-2.095893pt;}
._4{margin-left:-0.940800pt;}
._0{width:1.584000pt;}
._2{width:2.704000pt;}
._1{width:3.631467pt;}
._3{width:10.871467pt;}
._14{width:22.820027pt;}
._12{width:25.252027pt;}
._a{width:41.100016pt;}
._13{width:42.524693pt;}
._d{width:43.613627pt;}
._e{width:45.721444pt;}
._f{width:47.140027pt;}
._11{width:48.356027pt;}
._c{width:549.180800pt;}
._10{width:557.287467pt;}
.fsa{font-size:23.630933pt;}
.fs4{font-size:30.471467pt;}
.fs8{font-size:36.586667pt;}
.fs5{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs6{font-size:41.600000pt;}
.fs3{font-size:52.266667pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:72.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.yf2{bottom:126.937600pt;}
.y65{bottom:127.017600pt;}
.yca{bottom:127.028267pt;}
.y55{bottom:127.049600pt;}
.y9c{bottom:127.057200pt;}
.y1b{bottom:127.061467pt;}
.yf3{bottom:127.065600pt;}
.y1c{bottom:127.065733pt;}
.y1d{bottom:127.426533pt;}
.y9b{bottom:141.061467pt;}
.y1a{bottom:141.065733pt;}
.y45{bottom:145.916533pt;}
.yf1{bottom:146.276267pt;}
.y7b{bottom:146.350933pt;}
.y64{bottom:146.356267pt;}
.yc9{bottom:146.366933pt;}
.y54{bottom:146.388267pt;}
.y19{bottom:155.065733pt;}
.y44{bottom:159.920800pt;}
.yf0{bottom:165.614933pt;}
.y7a{bottom:165.689600pt;}
.y63{bottom:165.694933pt;}
.yc8{bottom:165.705600pt;}
.ycf{bottom:165.721600pt;}
.y53{bottom:165.726933pt;}
.y43{bottom:173.925067pt;}
.yad{bottom:173.963467pt;}
.yef{bottom:184.953600pt;}
.y79{bottom:185.028267pt;}
.y62{bottom:185.033600pt;}
.y70{bottom:185.044267pt;}
.yce{bottom:185.060267pt;}
.y52{bottom:185.065600pt;}
.y42{bottom:187.929333pt;}
.yac{bottom:187.963467pt;}
.y41{bottom:201.933600pt;}
.yee{bottom:204.292267pt;}
.y18{bottom:204.334933pt;}
.y51{bottom:204.340267pt;}
.ya7{bottom:204.361600pt;}
.y78{bottom:204.366933pt;}
.y61{bottom:204.372267pt;}
.y6f{bottom:204.382933pt;}
.y9a{bottom:204.393600pt;}
.ycd{bottom:204.398933pt;}
.y40{bottom:215.937867pt;}
.yed{bottom:223.630933pt;}
.y17{bottom:223.673600pt;}
.y50{bottom:223.678933pt;}
.ya6{bottom:223.700267pt;}
.y77{bottom:223.705600pt;}
.y60{bottom:223.710933pt;}
.y6e{bottom:223.721600pt;}
.y99{bottom:223.732267pt;}
.y98{bottom:228.083467pt;}
.y3f{bottom:229.942133pt;}
.yec{bottom:242.969600pt;}
.y16{bottom:243.012267pt;}
.y4f{bottom:243.017600pt;}
.ya5{bottom:243.038933pt;}
.y76{bottom:243.044267pt;}
.y5f{bottom:243.049600pt;}
.y6d{bottom:243.060267pt;}
.ycc{bottom:243.065600pt;}
.y3e{bottom:243.946400pt;}
.y3d{bottom:257.950667pt;}
.yeb{bottom:262.308267pt;}
.yc7{bottom:262.324267pt;}
.y15{bottom:262.350933pt;}
.y4e{bottom:262.356267pt;}
.y6c{bottom:262.377600pt;}
.y75{bottom:262.382933pt;}
.y5e{bottom:262.388267pt;}
.y97{bottom:262.398933pt;}
.y3c{bottom:271.954933pt;}
.yea{bottom:281.646933pt;}
.yc6{bottom:281.662933pt;}
.y14{bottom:281.689600pt;}
.y4d{bottom:281.694933pt;}
.y6b{bottom:281.716267pt;}
.y74{bottom:281.721600pt;}
.y5d{bottom:281.726933pt;}
.y104{bottom:285.729200pt;}
.y3b{bottom:285.959200pt;}
.yab{bottom:286.083467pt;}
.y3a{bottom:299.963467pt;}
.y103{bottom:300.392133pt;}
.ye9{bottom:300.985600pt;}
.yc5{bottom:301.001600pt;}
.y13{bottom:301.028267pt;}
.y4c{bottom:301.033600pt;}
.y6a{bottom:301.054933pt;}
.y73{bottom:301.060267pt;}
.y5c{bottom:301.065600pt;}
.y39{bottom:313.963467pt;}
.y102{bottom:315.055067pt;}
.y101{bottom:315.058800pt;}
.ye8{bottom:320.324267pt;}
.yc4{bottom:320.340267pt;}
.y12{bottom:320.366933pt;}
.y4b{bottom:320.372267pt;}
.y5b{bottom:320.388267pt;}
.y69{bottom:320.393600pt;}
.y72{bottom:320.398933pt;}
.ycb{bottom:324.750133pt;}
.y100{bottom:326.347333pt;}
.y38{bottom:332.861333pt;}
.ye7{bottom:339.662933pt;}
.yc3{bottom:339.678933pt;}
.ya3{bottom:339.694933pt;}
.y11{bottom:339.705600pt;}
.y4a{bottom:339.710933pt;}
.y5a{bottom:339.726933pt;}
.y68{bottom:339.732267pt;}
.ya4{bottom:344.083467pt;}
.y37{bottom:346.861333pt;}
.ye6{bottom:359.001600pt;}
.yc2{bottom:359.017600pt;}
.y96{bottom:359.028267pt;}
.ya2{bottom:359.033600pt;}
.y10{bottom:359.044267pt;}
.y49{bottom:359.049600pt;}
.y59{bottom:359.065600pt;}
.ye5{bottom:378.340267pt;}
.yc1{bottom:378.356267pt;}
.y95{bottom:378.366933pt;}
.ya1{bottom:378.372267pt;}
.yf{bottom:378.382933pt;}
.y48{bottom:378.388267pt;}
.ye4{bottom:397.678933pt;}
.yc0{bottom:397.694933pt;}
.y36{bottom:397.700267pt;}
.y94{bottom:397.705600pt;}
.ya0{bottom:397.710933pt;}
.ye{bottom:397.721600pt;}
.y47{bottom:397.726933pt;}
.ye3{bottom:417.017600pt;}
.ybf{bottom:417.033600pt;}
.y35{bottom:417.038933pt;}
.y93{bottom:417.044267pt;}
.y9f{bottom:417.049600pt;}
.yd{bottom:417.060267pt;}
.y46{bottom:417.065600pt;}
.yff{bottom:421.971333pt;}
.ye2{bottom:436.356267pt;}
.ybe{bottom:436.372267pt;}
.y34{bottom:436.377600pt;}
.y92{bottom:436.382933pt;}
.y9e{bottom:436.388267pt;}
.yc{bottom:436.398933pt;}
.yfe{bottom:436.634267pt;}
.yaa{bottom:440.750133pt;}
.yfd{bottom:451.297200pt;}
.ye1{bottom:455.694933pt;}
.ybd{bottom:455.710933pt;}
.y33{bottom:455.716267pt;}
.y91{bottom:455.721600pt;}
.yb{bottom:455.726933pt;}
.yfc{bottom:465.960133pt;}
.ye0{bottom:475.033600pt;}
.ya{bottom:475.049600pt;}
.y32{bottom:475.054933pt;}
.y58{bottom:475.057600pt;}
.y90{bottom:475.060267pt;}
.y67{bottom:475.061600pt;}
.y9d{bottom:475.065600pt;}
.yfb{bottom:480.623067pt;}
.y57{bottom:489.461600pt;}
.y66{bottom:489.465600pt;}
.y8e{bottom:494.313600pt;}
.ydf{bottom:494.372267pt;}
.y9{bottom:494.388267pt;}
.y31{bottom:494.393600pt;}
.y8f{bottom:494.398933pt;}
.y7d{bottom:494.425200pt;}
.y71{bottom:494.655867pt;}
.yfa{bottom:495.286000pt;}
.y56{bottom:503.865600pt;}
.y7c{bottom:508.829200pt;}
.y8d{bottom:513.652267pt;}
.yde{bottom:513.710933pt;}
.y8{bottom:513.726933pt;}
.y30{bottom:513.732267pt;}
.ya9{bottom:532.172267pt;}
.y8c{bottom:532.990933pt;}
.ydd{bottom:533.049600pt;}
.y2e{bottom:533.054933pt;}
.y7{bottom:533.065600pt;}
.y2f{bottom:537.416800pt;}
.ya8{bottom:546.576267pt;}
.yf9{bottom:547.963867pt;}
.y8b{bottom:552.329600pt;}
.ydc{bottom:552.388267pt;}
.y2d{bottom:552.393600pt;}
.y6{bottom:552.398933pt;}
.yf8{bottom:562.626800pt;}
.y8a{bottom:571.668267pt;}
.yb0{bottom:571.724267pt;}
.y2a{bottom:571.726933pt;}
.y2c{bottom:571.732267pt;}
.y2b{bottom:576.083467pt;}
.yf7{bottom:577.289733pt;}
.yaf{bottom:586.128267pt;}
.y89{bottom:591.006933pt;}
.y29{bottom:591.065600pt;}
.yf6{bottom:591.952667pt;}
.yae{bottom:600.532267pt;}
.ydb{bottom:610.334933pt;}
.y88{bottom:610.345600pt;}
.y28{bottom:610.388267pt;}
.yf5{bottom:610.398933pt;}
.yda{bottom:629.673600pt;}
.y87{bottom:629.684267pt;}
.ybc{bottom:629.694933pt;}
.y27{bottom:629.726933pt;}
.yd1{bottom:630.074800pt;}
.yd0{bottom:644.474800pt;}
.yd9{bottom:649.012267pt;}
.y86{bottom:649.022933pt;}
.ybb{bottom:649.033600pt;}
.y24{bottom:649.060267pt;}
.y26{bottom:649.065600pt;}
.y25{bottom:653.416800pt;}
.yd8{bottom:668.350933pt;}
.y85{bottom:668.361600pt;}
.yba{bottom:668.372267pt;}
.y22{bottom:668.382933pt;}
.y23{bottom:668.398933pt;}
.yd7{bottom:687.689600pt;}
.y84{bottom:687.700267pt;}
.yb9{bottom:687.710933pt;}
.y21{bottom:687.721600pt;}
.y5{bottom:690.398933pt;}
.yd6{bottom:707.028267pt;}
.y83{bottom:707.038933pt;}
.yb8{bottom:707.049600pt;}
.y20{bottom:707.060267pt;}
.yd5{bottom:726.366933pt;}
.y82{bottom:726.377600pt;}
.yb7{bottom:726.388267pt;}
.y1f{bottom:726.398933pt;}
.y4{bottom:727.732267pt;}
.yf4{bottom:730.750133pt;}
.yd4{bottom:745.705600pt;}
.y81{bottom:745.716267pt;}
.yb6{bottom:745.726933pt;}
.yd3{bottom:765.044267pt;}
.y80{bottom:765.054933pt;}
.y3{bottom:765.065600pt;}
.yd2{bottom:784.382933pt;}
.y7f{bottom:784.393600pt;}
.yb5{bottom:784.398933pt;}
.yb4{bottom:803.721600pt;}
.y7e{bottom:803.732267pt;}
.yb2{bottom:815.165067pt;}
.y1e{bottom:823.060267pt;}
.yb3{bottom:828.382000pt;}
.yb1{bottom:829.205200pt;}
.y2{bottom:842.398933pt;}
.ha{height:22.091813pt;}
.hd{height:25.870275pt;}
.hc{height:28.654792pt;}
.hf{height:29.386667pt;}
.h7{height:30.534400pt;}
.h2{height:36.398933pt;}
.h8{height:37.356800pt;}
.he{height:39.146667pt;}
.h3{height:42.416000pt;}
.h5{height:44.374400pt;}
.h6{height:44.438400pt;}
.hb{height:44.459733pt;}
.h10{height:49.896533pt;}
.h9{height:52.200000pt;}
.h4{height:77.333333pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x17{left:106.771733pt;}
.x28{left:111.246800pt;}
.x3{left:117.165333pt;}
.x18{left:119.750800pt;}
.x2b{left:125.936933pt;}
.x2{left:128.504000pt;}
.x6{left:132.283467pt;}
.x4{left:143.352133pt;}
.x7{left:144.992267pt;}
.xf{left:152.842533pt;}
.x1e{left:160.693867pt;}
.x19{left:166.050000pt;}
.x24{left:174.582933pt;}
.x13{left:182.342400pt;}
.x29{left:190.038533pt;}
.x31{left:195.807867pt;}
.x10{left:207.164800pt;}
.x2a{left:215.072960pt;}
.x2c{left:218.727200pt;}
.x33{left:255.809467pt;}
.x30{left:256.897067pt;}
.x2d{left:295.650133pt;}
.x35{left:299.767333pt;}
.x27{left:318.714533pt;}
.x16{left:325.544267pt;}
.x14{left:350.362267pt;}
.x1a{left:353.729467pt;}
.x8{left:364.484667pt;}
.x1f{left:375.900800pt;}
.x20{left:379.849733pt;}
.x12{left:385.889867pt;}
.x1b{left:391.217067pt;}
.x5{left:397.309467pt;}
.x9{left:401.593467pt;}
.xe{left:433.802533pt;}
.xa{left:438.301467pt;}
.xb{left:442.250400pt;}
.x21{left:451.662933pt;}
.x22{left:455.694267pt;}
.x34{left:463.711200pt;}
.xc{left:476.839467pt;}
.xd{left:480.912000pt;}
.x36{left:482.296400pt;}
.x11{left:504.441600pt;}
.x23{left:509.645067pt;}
.x2e{left:545.540933pt;}
.x15{left:549.741067pt;}
.x2f{left:553.603600pt;}
.x25{left:574.154000pt;}
.x26{left:578.890933pt;}
.x32{left:611.780000pt;}
.x1c{left:615.811200pt;}
.x1d{left:619.842533pt;}
}




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