
    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_a12cd69c2dabdb47f047ae4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_c23e3d2afe0344ceb6c8d02a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_ef34c48b03dadde0c8f88bd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_d5814fc5e32ccdedb6ccd3db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_e70b4a96953e2bb5e79ee7ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_294ff7c8cf5fa6ea00695b19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.762207;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_8b5e397702e9a83eb8a43ab2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_6eaf6a8bb281cc2c1961c791.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_75c60ab9ae3e538680b06231.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_0e24d9397236b01bde170c9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.281250;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_5362175379245ceeab340812.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920000;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_a1943e4edb876e7a6ab99196.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;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_af7409668c406cfb9e8e8c64.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.908000px;}
.v2{vertical-align:-18.895920px;}
.v3{vertical-align:-14.574000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.900000px;}
.v5{vertical-align:21.600000px;}
.lsd{letter-spacing:-0.741000px;}
.lsf{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.513000px;}
.ls3{letter-spacing:-0.399000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000120px;}
.lsb{letter-spacing:0.285000px;}
.ls5{letter-spacing:0.746700px;}
.lsc{letter-spacing:0.803700px;}
.ls10{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.855000px;}
.ls2{letter-spacing:15.120000px;}
.ls9{letter-spacing:105.756000px;}
.ls8{letter-spacing:124.152000px;}
.lsa{letter-spacing:821.142000px;}
.ls6{letter-spacing:1271.676000px;}
.ls7{letter-spacing:1298.340000px;}
.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;}
}
.ws57{word-spacing:-1298.340000px;}
.ws58{word-spacing:-821.142000px;}
.ws49{word-spacing:-134.652000px;}
.ws4a{word-spacing:-116.256000px;}
.ws46{word-spacing:-13.794000px;}
.ws60{word-spacing:-13.224000px;}
.ws62{word-spacing:-13.053000px;}
.ws5{word-spacing:-12.939000px;}
.ws4b{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.416000px;}
.ws1{word-spacing:-9.324000px;}
.ws4f{word-spacing:-7.032960px;}
.ws2{word-spacing:-6.153840px;}
.ws1b{word-spacing:-4.959000px;}
.ws4{word-spacing:-4.047000px;}
.ws63{word-spacing:-3.602400px;}
.wsc{word-spacing:-2.565000px;}
.ws24{word-spacing:-2.508000px;}
.ws2e{word-spacing:-2.394000px;}
.ws74{word-spacing:-2.109000px;}
.ws33{word-spacing:-2.052000px;}
.ws11{word-spacing:-1.824000px;}
.ws64{word-spacing:-1.789800px;}
.ws70{word-spacing:-1.767000px;}
.ws19{word-spacing:-1.653000px;}
.ws86{word-spacing:-1.539000px;}
.ws9b{word-spacing:-1.368000px;}
.wsab{word-spacing:-1.296000px;}
.ws6a{word-spacing:-1.197000px;}
.ws42{word-spacing:-1.134000px;}
.ws85{word-spacing:-1.026000px;}
.ws26{word-spacing:-0.855000px;}
.ws45{word-spacing:-0.840000px;}
.ws98{word-spacing:-0.741000px;}
.ws20{word-spacing:-0.684000px;}
.ws5a{word-spacing:-0.576000px;}
.ws43{word-spacing:-0.504000px;}
.ws5c{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.427500px;}
.ws23{word-spacing:-0.285000px;}
.ws5f{word-spacing:-0.240000px;}
.ws44{word-spacing:-0.210000px;}
.ws9c{word-spacing:-0.171000px;}
.ws96{word-spacing:-0.057000px;}
.ws3{word-spacing:-0.051000px;}
.ws65{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.057000px;}
.ws59{word-spacing:0.144000px;}
.ws2d{word-spacing:0.228000px;}
.ws5d{word-spacing:0.240000px;}
.wsbb{word-spacing:0.294000px;}
.ws88{word-spacing:0.342000px;}
.ws1a{word-spacing:0.399000px;}
.wsb7{word-spacing:0.504000px;}
.ws6e{word-spacing:0.570000px;}
.wsa4{word-spacing:0.576000px;}
.ws5b{word-spacing:0.672000px;}
.ws2b{word-spacing:0.684000px;}
.ws84{word-spacing:0.741000px;}
.ws5e{word-spacing:0.912000px;}
.wsa5{word-spacing:0.960000px;}
.ws3f{word-spacing:0.969000px;}
.wsa6{word-spacing:1.008000px;}
.wsb9{word-spacing:1.092000px;}
.ws41{word-spacing:1.176000px;}
.ws3e{word-spacing:1.254000px;}
.wsb1{word-spacing:1.302000px;}
.ws6d{word-spacing:1.311000px;}
.ws7f{word-spacing:1.539000px;}
.ws38{word-spacing:1.596000px;}
.wsbd{word-spacing:1.680000px;}
.ws2c{word-spacing:1.710000px;}
.ws78{word-spacing:1.767000px;}
.wsb0{word-spacing:1.806000px;}
.ws81{word-spacing:1.881000px;}
.ws2f{word-spacing:1.938000px;}
.wsb8{word-spacing:2.100000px;}
.ws25{word-spacing:2.109000px;}
.wsa7{word-spacing:2.112000px;}
.ws90{word-spacing:2.166000px;}
.ws6f{word-spacing:2.280000px;}
.ws80{word-spacing:2.337000px;}
.ws10{word-spacing:2.394000px;}
.ws1c{word-spacing:2.451000px;}
.wsaf{word-spacing:2.478000px;}
.ws6c{word-spacing:2.508000px;}
.wsb6{word-spacing:2.520000px;}
.ws27{word-spacing:2.565000px;}
.wsb4{word-spacing:2.604000px;}
.ws7e{word-spacing:2.622000px;}
.ws40{word-spacing:2.730000px;}
.ws89{word-spacing:2.736000px;}
.ws8f{word-spacing:2.793000px;}
.ws17{word-spacing:2.964000px;}
.ws55{word-spacing:3.135000px;}
.ws7c{word-spacing:3.363000px;}
.ws77{word-spacing:3.591000px;}
.ws36{word-spacing:3.648000px;}
.wsae{word-spacing:3.696000px;}
.ws29{word-spacing:3.762000px;}
.ws68{word-spacing:3.933000px;}
.ws56{word-spacing:4.047000px;}
.ws3a{word-spacing:4.104000px;}
.wsad{word-spacing:4.158000px;}
.ws8e{word-spacing:4.332000px;}
.wsa3{word-spacing:4.368000px;}
.ws9d{word-spacing:4.446000px;}
.ws30{word-spacing:4.503000px;}
.ws50{word-spacing:4.560000px;}
.wsb{word-spacing:4.617000px;}
.ws53{word-spacing:4.788000px;}
.ws7d{word-spacing:4.902000px;}
.ws35{word-spacing:4.959000px;}
.wsa2{word-spacing:4.992000px;}
.wsac{word-spacing:4.998000px;}
.ws1f{word-spacing:5.301000px;}
.ws14{word-spacing:5.358000px;}
.wsd{word-spacing:5.643000px;}
.ws8{word-spacing:5.871000px;}
.ws76{word-spacing:5.928000px;}
.ws73{word-spacing:6.042000px;}
.ws95{word-spacing:6.099000px;}
.ws8d{word-spacing:6.156000px;}
.ws18{word-spacing:6.270000px;}
.ws7b{word-spacing:6.384000px;}
.ws1e{word-spacing:6.441000px;}
.wsa1{word-spacing:6.480000px;}
.ws3b{word-spacing:6.555000px;}
.ws9f{word-spacing:6.768000px;}
.ws72{word-spacing:6.783000px;}
.wsa0{word-spacing:6.816000px;}
.wsb3{word-spacing:6.846000px;}
.ws82{word-spacing:6.954000px;}
.ws8b{word-spacing:7.011000px;}
.ws1d{word-spacing:7.467000px;}
.ws52{word-spacing:7.581000px;}
.wsba{word-spacing:7.602000px;}
.ws2a{word-spacing:7.695000px;}
.ws54{word-spacing:7.809000px;}
.ws16{word-spacing:7.866000px;}
.ws32{word-spacing:7.923000px;}
.ws31{word-spacing:8.094000px;}
.ws71{word-spacing:8.151000px;}
.ws75{word-spacing:8.208000px;}
.ws9e{word-spacing:8.265000px;}
.ws69{word-spacing:8.436000px;}
.ws7a{word-spacing:8.493000px;}
.wsbc{word-spacing:8.526000px;}
.ws39{word-spacing:8.550000px;}
.ws79{word-spacing:8.607000px;}
.ws37{word-spacing:8.892000px;}
.wsaa{word-spacing:9.120000px;}
.ws6b{word-spacing:9.291000px;}
.wsb2{word-spacing:9.324000px;}
.ws91{word-spacing:9.348000px;}
.ws93{word-spacing:9.405000px;}
.ws12{word-spacing:9.519000px;}
.ws8c{word-spacing:9.576000px;}
.wsf{word-spacing:9.747000px;}
.ws92{word-spacing:9.861000px;}
.ws97{word-spacing:10.032000px;}
.wsa8{word-spacing:10.176000px;}
.ws3c{word-spacing:10.203000px;}
.wsa9{word-spacing:10.560000px;}
.wsb5{word-spacing:10.710000px;}
.ws9a{word-spacing:11.115000px;}
.ws94{word-spacing:11.172000px;}
.ws28{word-spacing:11.913000px;}
.ws67{word-spacing:12.312000px;}
.ws51{word-spacing:12.768000px;}
.ws13{word-spacing:12.825000px;}
.ws83{word-spacing:12.882000px;}
.ws7{word-spacing:13.104000px;}
.ws66{word-spacing:13.167000px;}
.wsbe{word-spacing:13.398000px;}
.ws9{word-spacing:13.509000px;}
.ws34{word-spacing:14.364000px;}
.ws99{word-spacing:15.105000px;}
.ws8a{word-spacing:15.219000px;}
.ws22{word-spacing:15.732000px;}
.ws87{word-spacing:16.359000px;}
.ws3d{word-spacing:16.644000px;}
.ws21{word-spacing:19.380000px;}
.ws15{word-spacing:19.836000px;}
.wsa{word-spacing:23.712000px;}
.ws4e{word-spacing:30.492000px;}
.ws47{word-spacing:42.042000px;}
.ws4c{word-spacing:123.522000px;}
.ws4d{word-spacing:124.614000px;}
.ws48{word-spacing:1455.132000px;}
._12{margin-left:-1405.362000px;}
._10{margin-left:-124.194000px;}
._11{margin-left:-105.798000px;}
._d{margin-left:-13.924800px;}
._a{margin-left:-8.259600px;}
._4{margin-left:-7.204200px;}
._7{margin-left:-5.529000px;}
._9{margin-left:-4.272600px;}
._6{margin-left:-3.230400px;}
._0{margin-left:-2.164800px;}
._3{margin-left:-1.089600px;}
._2{width:1.080600px;}
._5{width:2.268000px;}
._e{width:4.002000px;}
._c{width:7.506600px;}
._18{width:9.240000px;}
._19{width:10.458000px;}
._b{width:11.884500px;}
._1{width:13.108800px;}
._17{width:26.701200px;}
._16{width:37.488000px;}
._8{width:44.698200px;}
._15{width:73.374000px;}
._f{width:95.382000px;}
._13{width:145.530000px;}
._14{width:1274.952000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.720000px;}
.fs9{font-size:31.680000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:2.679150px;}
.y61{bottom:9.000000px;}
.y60{bottom:18.000000px;}
.y5f{bottom:27.000000px;}
.y62{bottom:66.251250px;}
.y1{bottom:67.951950px;}
.y53{bottom:106.172400px;}
.y5b{bottom:106.730100px;}
.y66{bottom:107.077050px;}
.y6a{bottom:107.091300px;}
.y125{bottom:108.350400px;}
.yf1{bottom:108.506400px;}
.y5a{bottom:120.233100px;}
.y124{bottom:123.350400px;}
.y52{bottom:125.666400px;}
.y65{bottom:126.571050px;}
.y69{bottom:126.585300px;}
.yf0{bottom:128.000400px;}
.y59{bottom:133.736100px;}
.y123{bottom:138.350400px;}
.y51{bottom:145.160400px;}
.y64{bottom:146.065050px;}
.y68{bottom:146.079300px;}
.y58{bottom:147.239100px;}
.yef{bottom:147.494400px;}
.y122{bottom:156.350400px;}
.y57{bottom:160.742100px;}
.y50{bottom:164.654400px;}
.y63{bottom:165.559050px;}
.y67{bottom:165.573300px;}
.yee{bottom:166.988400px;}
.y56{bottom:174.245100px;}
.y4f{bottom:184.148400px;}
.yed{bottom:186.482400px;}
.y55{bottom:187.748100px;}
.y121{bottom:190.850400px;}
.y54{bottom:201.505800px;}
.y4e{bottom:203.642400px;}
.y120{bottom:205.850400px;}
.yec{bottom:205.976400px;}
.ybe{bottom:211.918650px;}
.y5e{bottom:219.499650px;}
.y11f{bottom:220.850400px;}
.y4d{bottom:223.136400px;}
.yeb{bottom:225.470400px;}
.ybd{bottom:226.918650px;}
.y5d{bottom:233.002650px;}
.y11e{bottom:235.850400px;}
.y70{bottom:240.985650px;}
.ybc{bottom:241.918650px;}
.y4c{bottom:242.630400px;}
.yea{bottom:244.964400px;}
.y5c{bottom:246.505650px;}
.y11d{bottom:250.850400px;}
.ybb{bottom:256.918650px;}
.y4b{bottom:262.124400px;}
.ye9{bottom:264.458400px;}
.y11c{bottom:268.850400px;}
.yba{bottom:271.918650px;}
.y99{bottom:281.079150px;}
.y4a{bottom:281.618400px;}
.ye8{bottom:283.952400px;}
.yb9{bottom:286.918650px;}
.y49{bottom:301.112400px;}
.yb8{bottom:301.918650px;}
.ye7{bottom:303.446400px;}
.y11b{bottom:305.256150px;}
.yb7{bottom:316.918650px;}
.y48{bottom:320.606400px;}
.ye6{bottom:322.940400px;}
.y11a{bottom:324.750150px;}
.y25{bottom:337.201050px;}
.y47{bottom:340.100400px;}
.ye5{bottom:342.434400px;}
.y119{bottom:344.244150px;}
.y6b{bottom:350.668500px;}
.y24{bottom:356.695050px;}
.ye4{bottom:361.928400px;}
.y118{bottom:363.738150px;}
.y46{bottom:367.100400px;}
.y94{bottom:369.375150px;}
.y95{bottom:374.352150px;}
.y23{bottom:376.189050px;}
.ye3{bottom:381.422400px;}
.y117{bottom:383.232150px;}
.yb6{bottom:395.655150px;}
.y22{bottom:395.683050px;}
.yae{bottom:399.448650px;}
.y45{bottom:400.214400px;}
.ye2{bottom:400.916400px;}
.y116{bottom:402.726150px;}
.y21{bottom:415.177050px;}
.y44{bottom:419.708400px;}
.ye1{bottom:420.410400px;}
.y115{bottom:422.220150px;}
.yad{bottom:425.467650px;}
.yb5{bottom:426.409650px;}
.y20{bottom:434.671050px;}
.y43{bottom:439.202400px;}
.ye0{bottom:439.904400px;}
.y114{bottom:441.714150px;}
.yac{bottom:451.486650px;}
.y1f{bottom:454.165050px;}
.yb4{bottom:457.164150px;}
.y42{bottom:458.696400px;}
.ydf{bottom:459.398400px;}
.y113{bottom:461.208150px;}
.ya8{bottom:468.502650px;}
.y1e{bottom:473.659050px;}
.yb1{bottom:477.493650px;}
.yab{bottom:477.505650px;}
.y41{bottom:478.190400px;}
.yde{bottom:478.892400px;}
.y112{bottom:480.702150px;}
.yb3{bottom:487.918650px;}
.y1d{bottom:493.153050px;}
.y40{bottom:497.684400px;}
.ydd{bottom:498.386400px;}
.y111{bottom:500.196150px;}
.yaa{bottom:503.524650px;}
.y6f{bottom:510.265650px;}
.y1c{bottom:512.647050px;}
.y3f{bottom:517.178400px;}
.ydc{bottom:517.880400px;}
.yb2{bottom:518.673150px;}
.y110{bottom:519.690150px;}
.ya9{bottom:529.543650px;}
.y1b{bottom:532.141050px;}
.y3e{bottom:536.672400px;}
.ydb{bottom:537.374400px;}
.y10f{bottom:539.184150px;}
.yb0{bottom:549.430650px;}
.y1a{bottom:551.635050px;}
.ya7{bottom:555.589650px;}
.y3d{bottom:556.166400px;}
.yda{bottom:556.868400px;}
.y10e{bottom:558.678150px;}
.y19{bottom:571.129050px;}
.y8d{bottom:572.098650px;}
.y3c{bottom:575.660400px;}
.yd9{bottom:576.362400px;}
.y10d{bottom:578.172150px;}
.yaf{bottom:580.185150px;}
.ya6{bottom:581.608650px;}
.y92{bottom:589.287150px;}
.y18{bottom:590.623050px;}
.y3b{bottom:595.154400px;}
.yd8{bottom:595.856400px;}
.y10c{bottom:597.666150px;}
.y3a{bottom:614.648400px;}
.yd7{bottom:615.350400px;}
.y98{bottom:615.850650px;}
.y10b{bottom:617.160150px;}
.y97{bottom:631.747650px;}
.y93{bottom:631.770150px;}
.y39{bottom:634.142400px;}
.y10a{bottom:636.654150px;}
.yd6{bottom:642.350400px;}
.y38{bottom:653.636400px;}
.y109{bottom:656.148150px;}
.y89{bottom:656.634150px;}
.ya5{bottom:657.450150px;}
.y17{bottom:658.866300px;}
.y37{bottom:673.130400px;}
.yd5{bottom:675.482400px;}
.y108{bottom:675.642150px;}
.ya4{bottom:676.045650px;}
.y16{bottom:676.864050px;}
.y88{bottom:692.470650px;}
.y36{bottom:692.624400px;}
.ya3{bottom:694.641150px;}
.y15{bottom:694.861800px;}
.yd4{bottom:694.976400px;}
.y107{bottom:695.136150px;}
.y35{bottom:712.118400px;}
.y14{bottom:712.859550px;}
.ya2{bottom:713.236650px;}
.yd3{bottom:714.470400px;}
.y106{bottom:714.630150px;}
.y85{bottom:722.911650px;}
.y87{bottom:728.307150px;}
.y13{bottom:730.857300px;}
.y34{bottom:731.612400px;}
.ya1{bottom:731.832150px;}
.yd2{bottom:733.964400px;}
.y105{bottom:734.124150px;}
.y9f{bottom:739.999650px;}
.y12{bottom:748.855050px;}
.ya0{bottom:750.427650px;}
.y6c{bottom:750.841200px;}
.y33{bottom:751.106400px;}
.y6d{bottom:751.576200px;}
.yd1{bottom:753.458400px;}
.y104{bottom:753.618150px;}
.y86{bottom:764.143650px;}
.y11{bottom:766.852800px;}
.y9e{bottom:769.045650px;}
.y32{bottom:770.600400px;}
.yd0{bottom:772.952400px;}
.y103{bottom:773.112150px;}
.y9d{bottom:787.641150px;}
.ycf{bottom:792.446400px;}
.y102{bottom:792.606150px;}
.y31{bottom:797.600400px;}
.y84{bottom:799.993800px;}
.y10{bottom:803.599800px;}
.y9c{bottom:806.236650px;}
.yce{bottom:811.940400px;}
.y101{bottom:812.100150px;}
.y8f{bottom:815.908650px;}
.yf{bottom:817.099800px;}
.y9b{bottom:824.832150px;}
.y8c{bottom:824.844150px;}
.ye{bottom:830.599800px;}
.y30{bottom:830.764050px;}
.ycd{bottom:831.434400px;}
.y100{bottom:831.594150px;}
.y83{bottom:835.830300px;}
.y8a{bottom:843.439650px;}
.yd{bottom:844.096800px;}
.y8e{bottom:844.741650px;}
.y2f{bottom:850.258050px;}
.ycc{bottom:850.928400px;}
.yff{bottom:851.088150px;}
.y91{bottom:852.837150px;}
.yc{bottom:857.599800px;}
.y6e{bottom:860.935650px;}
.y136{bottom:863.703150px;}
.y149{bottom:863.986650px;}
.y2e{bottom:869.752050px;}
.ycb{bottom:870.422400px;}
.yfe{bottom:870.582150px;}
.yb{bottom:871.099800px;}
.y135{bottom:877.206150px;}
.y148{bottom:877.489650px;}
.y9a{bottom:887.737650px;}
.y8b{bottom:887.749650px;}
.y90{bottom:887.760150px;}
.y2d{bottom:889.246050px;}
.ya{bottom:889.326780px;}
.yca{bottom:889.916400px;}
.yfd{bottom:890.076150px;}
.y134{bottom:890.709150px;}
.y147{bottom:890.992650px;}
.y9{bottom:904.099800px;}
.y133{bottom:904.212150px;}
.y146{bottom:904.495650px;}
.y2c{bottom:908.740050px;}
.yc9{bottom:909.410400px;}
.yfc{bottom:909.570150px;}
.y7d{bottom:912.303900px;}
.y82{bottom:912.889800px;}
.y8{bottom:917.602800px;}
.y132{bottom:917.715150px;}
.y145{bottom:917.998650px;}
.y2b{bottom:928.234050px;}
.yc8{bottom:928.904400px;}
.yfb{bottom:929.064150px;}
.y131{bottom:931.218150px;}
.y144{bottom:931.501650px;}
.y7{bottom:943.125300px;}
.y130{bottom:944.721150px;}
.y143{bottom:945.004650px;}
.y7c{bottom:946.890900px;}
.y81{bottom:947.140800px;}
.y2a{bottom:947.728050px;}
.yc7{bottom:948.398400px;}
.yfa{bottom:948.558150px;}
.y12f{bottom:958.224150px;}
.y142{bottom:958.507650px;}
.y29{bottom:967.222050px;}
.yc6{bottom:967.892400px;}
.yf9{bottom:968.052150px;}
.y6{bottom:968.617800px;}
.y12e{bottom:971.727150px;}
.y141{bottom:972.010650px;}
.y7e{bottom:974.386950px;}
.y73{bottom:979.168200px;}
.y80{bottom:981.391800px;}
.y7b{bottom:981.477900px;}
.y12d{bottom:985.230150px;}
.y140{bottom:985.513650px;}
.y28{bottom:986.716050px;}
.yc5{bottom:987.386400px;}
.yf8{bottom:987.546150px;}
.y5{bottom:994.110300px;}
.y12c{bottom:998.733150px;}
.y13f{bottom:999.016650px;}
.y27{bottom:1006.210050px;}
.yc4{bottom:1006.880400px;}
.yf7{bottom:1007.040150px;}
.y12b{bottom:1012.236150px;}
.y13e{bottom:1012.519650px;}
.y7f{bottom:1015.642800px;}
.y7a{bottom:1016.064900px;}
.y4{bottom:1019.602800px;}
.y26{bottom:1025.704050px;}
.y13d{bottom:1026.022650px;}
.yc3{bottom:1026.374400px;}
.yf6{bottom:1026.534150px;}
.y12a{bottom:1028.730150px;}
.y13c{bottom:1039.525650px;}
.yc2{bottom:1045.868400px;}
.yf5{bottom:1046.028150px;}
.y72{bottom:1049.899650px;}
.y79{bottom:1050.651900px;}
.y13b{bottom:1053.028650px;}
.y77{bottom:1055.786400px;}
.y129{bottom:1060.986150px;}
.yc1{bottom:1065.362400px;}
.yf4{bottom:1065.522150px;}
.y13a{bottom:1066.531650px;}
.y128{bottom:1075.986150px;}
.y78{bottom:1078.466400px;}
.y139{bottom:1080.034650px;}
.y71{bottom:1084.150650px;}
.yc0{bottom:1084.856400px;}
.yf3{bottom:1085.016150px;}
.y74{bottom:1085.238900px;}
.y127{bottom:1090.986150px;}
.y76{bottom:1092.536400px;}
.y138{bottom:1093.537650px;}
.y75{bottom:1097.576400px;}
.y3{bottom:1099.948050px;}
.ybf{bottom:1104.350400px;}
.yf2{bottom:1104.510150px;}
.y126{bottom:1105.986150px;}
.y137{bottom:1107.040650px;}
.y2{bottom:1132.136100px;}
.h8{height:20.595960px;}
.h11{height:28.308000px;}
.h16{height:30.072000px;}
.ha{height:31.206000px;}
.h2{height:34.368000px;}
.he{height:35.314453px;}
.h15{height:35.616000px;}
.h13{height:35.664000px;}
.hd{height:37.842000px;}
.h9{height:39.507960px;}
.hb{height:39.519960px;}
.h10{height:40.440000px;}
.hc{height:40.812000px;}
.h6{height:44.929080px;}
.h7{height:44.941080px;}
.h12{height:45.072000px;}
.h14{height:45.138240px;}
.h3{height:52.992000px;}
.h4{height:53.064000px;}
.h5{height:64.440000px;}
.hf{height:764.040000px;}
.h1{height:1173.750000px;}
.h0{height:1173.960000px;}
.w1{width:651.994500px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x8{left:4.500000px;}
.x2{left:73.650000px;}
.x32{left:81.150000px;}
.x7{left:84.150000px;}
.x3{left:85.800000px;}
.x4{left:87.750000px;}
.x33{left:93.897000px;}
.x9{left:119.653500px;}
.x2f{left:141.987000px;}
.xe{left:145.073550px;}
.x1b{left:151.575600px;}
.xc{left:153.540300px;}
.x30{left:156.827400px;}
.xd{left:158.790300px;}
.x31{left:162.077400px;}
.x16{left:164.040300px;}
.x1c{left:199.476600px;}
.x27{left:207.540600px;}
.x11{left:210.705600px;}
.x1e{left:217.358100px;}
.x12{left:253.094100px;}
.x2c{left:274.042500px;}
.x29{left:284.060100px;}
.x2a{left:331.488600px;}
.xa{left:334.190100px;}
.x21{left:341.552100px;}
.x22{left:344.282100px;}
.x2b{left:374.990100px;}
.x1d{left:397.643100px;}
.xb{left:452.756100px;}
.x6{left:459.005250px;}
.x35{left:461.250000px;}
.x15{left:463.773600px;}
.x34{left:466.500000px;}
.x19{left:471.030600px;}
.xf{left:472.239600px;}
.x5{left:473.255250px;}
.x13{left:477.489600px;}
.x17{left:479.302800px;}
.x14{left:482.739600px;}
.x18{left:484.552800px;}
.x28{left:487.886100px;}
.x1a{left:489.801600px;}
.x24{left:523.034100px;}
.x10{left:533.003100px;}
.x25{left:534.059100px;}
.x1f{left:542.490600px;}
.x26{left:559.164600px;}
.x2e{left:580.241700px;}
.x2d{left:607.415700px;}
.x20{left:611.423100px;}
.x1{left:670.456050px;}
.x23{left:690.740100px;}
@media print{
.v4{vertical-align:-17.696000pt;}
.v2{vertical-align:-16.796373pt;}
.v3{vertical-align:-12.954667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.800000pt;}
.v5{vertical-align:19.200000pt;}
.lsd{letter-spacing:-0.658667pt;}
.lsf{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.456000pt;}
.ls3{letter-spacing:-0.354667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000107pt;}
.lsb{letter-spacing:0.253333pt;}
.ls5{letter-spacing:0.663733pt;}
.lsc{letter-spacing:0.714400pt;}
.ls10{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.760000pt;}
.ls2{letter-spacing:13.440000pt;}
.ls9{letter-spacing:94.005333pt;}
.ls8{letter-spacing:110.357333pt;}
.lsa{letter-spacing:729.904000pt;}
.ls6{letter-spacing:1130.378667pt;}
.ls7{letter-spacing:1154.080000pt;}
.ws57{word-spacing:-1154.080000pt;}
.ws58{word-spacing:-729.904000pt;}
.ws49{word-spacing:-119.690667pt;}
.ws4a{word-spacing:-103.338667pt;}
.ws46{word-spacing:-12.261333pt;}
.ws60{word-spacing:-11.754667pt;}
.ws62{word-spacing:-11.602667pt;}
.ws5{word-spacing:-11.501333pt;}
.ws4b{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.258667pt;}
.ws1{word-spacing:-8.288000pt;}
.ws4f{word-spacing:-6.251520pt;}
.ws2{word-spacing:-5.470080pt;}
.ws1b{word-spacing:-4.408000pt;}
.ws4{word-spacing:-3.597333pt;}
.ws63{word-spacing:-3.202133pt;}
.wsc{word-spacing:-2.280000pt;}
.ws24{word-spacing:-2.229333pt;}
.ws2e{word-spacing:-2.128000pt;}
.ws74{word-spacing:-1.874667pt;}
.ws33{word-spacing:-1.824000pt;}
.ws11{word-spacing:-1.621333pt;}
.ws64{word-spacing:-1.590933pt;}
.ws70{word-spacing:-1.570667pt;}
.ws19{word-spacing:-1.469333pt;}
.ws86{word-spacing:-1.368000pt;}
.ws9b{word-spacing:-1.216000pt;}
.wsab{word-spacing:-1.152000pt;}
.ws6a{word-spacing:-1.064000pt;}
.ws42{word-spacing:-1.008000pt;}
.ws85{word-spacing:-0.912000pt;}
.ws26{word-spacing:-0.760000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws98{word-spacing:-0.658667pt;}
.ws20{word-spacing:-0.608000pt;}
.ws5a{word-spacing:-0.512000pt;}
.ws43{word-spacing:-0.448000pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.380000pt;}
.ws23{word-spacing:-0.253333pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws44{word-spacing:-0.186667pt;}
.ws9c{word-spacing:-0.152000pt;}
.ws96{word-spacing:-0.050667pt;}
.ws3{word-spacing:-0.045333pt;}
.ws65{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.050667pt;}
.ws59{word-spacing:0.128000pt;}
.ws2d{word-spacing:0.202667pt;}
.ws5d{word-spacing:0.213333pt;}
.wsbb{word-spacing:0.261333pt;}
.ws88{word-spacing:0.304000pt;}
.ws1a{word-spacing:0.354667pt;}
.wsb7{word-spacing:0.448000pt;}
.ws6e{word-spacing:0.506667pt;}
.wsa4{word-spacing:0.512000pt;}
.ws5b{word-spacing:0.597333pt;}
.ws2b{word-spacing:0.608000pt;}
.ws84{word-spacing:0.658667pt;}
.ws5e{word-spacing:0.810667pt;}
.wsa5{word-spacing:0.853333pt;}
.ws3f{word-spacing:0.861333pt;}
.wsa6{word-spacing:0.896000pt;}
.wsb9{word-spacing:0.970667pt;}
.ws41{word-spacing:1.045333pt;}
.ws3e{word-spacing:1.114667pt;}
.wsb1{word-spacing:1.157333pt;}
.ws6d{word-spacing:1.165333pt;}
.ws7f{word-spacing:1.368000pt;}
.ws38{word-spacing:1.418667pt;}
.wsbd{word-spacing:1.493333pt;}
.ws2c{word-spacing:1.520000pt;}
.ws78{word-spacing:1.570667pt;}
.wsb0{word-spacing:1.605333pt;}
.ws81{word-spacing:1.672000pt;}
.ws2f{word-spacing:1.722667pt;}
.wsb8{word-spacing:1.866667pt;}
.ws25{word-spacing:1.874667pt;}
.wsa7{word-spacing:1.877333pt;}
.ws90{word-spacing:1.925333pt;}
.ws6f{word-spacing:2.026667pt;}
.ws80{word-spacing:2.077333pt;}
.ws10{word-spacing:2.128000pt;}
.ws1c{word-spacing:2.178667pt;}
.wsaf{word-spacing:2.202667pt;}
.ws6c{word-spacing:2.229333pt;}
.wsb6{word-spacing:2.240000pt;}
.ws27{word-spacing:2.280000pt;}
.wsb4{word-spacing:2.314667pt;}
.ws7e{word-spacing:2.330667pt;}
.ws40{word-spacing:2.426667pt;}
.ws89{word-spacing:2.432000pt;}
.ws8f{word-spacing:2.482667pt;}
.ws17{word-spacing:2.634667pt;}
.ws55{word-spacing:2.786667pt;}
.ws7c{word-spacing:2.989333pt;}
.ws77{word-spacing:3.192000pt;}
.ws36{word-spacing:3.242667pt;}
.wsae{word-spacing:3.285333pt;}
.ws29{word-spacing:3.344000pt;}
.ws68{word-spacing:3.496000pt;}
.ws56{word-spacing:3.597333pt;}
.ws3a{word-spacing:3.648000pt;}
.wsad{word-spacing:3.696000pt;}
.ws8e{word-spacing:3.850667pt;}
.wsa3{word-spacing:3.882667pt;}
.ws9d{word-spacing:3.952000pt;}
.ws30{word-spacing:4.002667pt;}
.ws50{word-spacing:4.053333pt;}
.wsb{word-spacing:4.104000pt;}
.ws53{word-spacing:4.256000pt;}
.ws7d{word-spacing:4.357333pt;}
.ws35{word-spacing:4.408000pt;}
.wsa2{word-spacing:4.437333pt;}
.wsac{word-spacing:4.442667pt;}
.ws1f{word-spacing:4.712000pt;}
.ws14{word-spacing:4.762667pt;}
.wsd{word-spacing:5.016000pt;}
.ws8{word-spacing:5.218667pt;}
.ws76{word-spacing:5.269333pt;}
.ws73{word-spacing:5.370667pt;}
.ws95{word-spacing:5.421333pt;}
.ws8d{word-spacing:5.472000pt;}
.ws18{word-spacing:5.573333pt;}
.ws7b{word-spacing:5.674667pt;}
.ws1e{word-spacing:5.725333pt;}
.wsa1{word-spacing:5.760000pt;}
.ws3b{word-spacing:5.826667pt;}
.ws9f{word-spacing:6.016000pt;}
.ws72{word-spacing:6.029333pt;}
.wsa0{word-spacing:6.058667pt;}
.wsb3{word-spacing:6.085333pt;}
.ws82{word-spacing:6.181333pt;}
.ws8b{word-spacing:6.232000pt;}
.ws1d{word-spacing:6.637333pt;}
.ws52{word-spacing:6.738667pt;}
.wsba{word-spacing:6.757333pt;}
.ws2a{word-spacing:6.840000pt;}
.ws54{word-spacing:6.941333pt;}
.ws16{word-spacing:6.992000pt;}
.ws32{word-spacing:7.042667pt;}
.ws31{word-spacing:7.194667pt;}
.ws71{word-spacing:7.245333pt;}
.ws75{word-spacing:7.296000pt;}
.ws9e{word-spacing:7.346667pt;}
.ws69{word-spacing:7.498667pt;}
.ws7a{word-spacing:7.549333pt;}
.wsbc{word-spacing:7.578667pt;}
.ws39{word-spacing:7.600000pt;}
.ws79{word-spacing:7.650667pt;}
.ws37{word-spacing:7.904000pt;}
.wsaa{word-spacing:8.106667pt;}
.ws6b{word-spacing:8.258667pt;}
.wsb2{word-spacing:8.288000pt;}
.ws91{word-spacing:8.309333pt;}
.ws93{word-spacing:8.360000pt;}
.ws12{word-spacing:8.461333pt;}
.ws8c{word-spacing:8.512000pt;}
.wsf{word-spacing:8.664000pt;}
.ws92{word-spacing:8.765333pt;}
.ws97{word-spacing:8.917333pt;}
.wsa8{word-spacing:9.045333pt;}
.ws3c{word-spacing:9.069333pt;}
.wsa9{word-spacing:9.386667pt;}
.wsb5{word-spacing:9.520000pt;}
.ws9a{word-spacing:9.880000pt;}
.ws94{word-spacing:9.930667pt;}
.ws28{word-spacing:10.589333pt;}
.ws67{word-spacing:10.944000pt;}
.ws51{word-spacing:11.349333pt;}
.ws13{word-spacing:11.400000pt;}
.ws83{word-spacing:11.450667pt;}
.ws7{word-spacing:11.648000pt;}
.ws66{word-spacing:11.704000pt;}
.wsbe{word-spacing:11.909333pt;}
.ws9{word-spacing:12.008000pt;}
.ws34{word-spacing:12.768000pt;}
.ws99{word-spacing:13.426667pt;}
.ws8a{word-spacing:13.528000pt;}
.ws22{word-spacing:13.984000pt;}
.ws87{word-spacing:14.541333pt;}
.ws3d{word-spacing:14.794667pt;}
.ws21{word-spacing:17.226667pt;}
.ws15{word-spacing:17.632000pt;}
.wsa{word-spacing:21.077333pt;}
.ws4e{word-spacing:27.104000pt;}
.ws47{word-spacing:37.370667pt;}
.ws4c{word-spacing:109.797333pt;}
.ws4d{word-spacing:110.768000pt;}
.ws48{word-spacing:1293.450667pt;}
._12{margin-left:-1249.210667pt;}
._10{margin-left:-110.394667pt;}
._11{margin-left:-94.042667pt;}
._d{margin-left:-12.377600pt;}
._a{margin-left:-7.341867pt;}
._4{margin-left:-6.403733pt;}
._7{margin-left:-4.914667pt;}
._9{margin-left:-3.797867pt;}
._6{margin-left:-2.871467pt;}
._0{margin-left:-1.924267pt;}
._3{margin-left:-0.968533pt;}
._2{width:0.960533pt;}
._5{width:2.016000pt;}
._e{width:3.557333pt;}
._c{width:6.672533pt;}
._18{width:8.213333pt;}
._19{width:9.296000pt;}
._b{width:10.564000pt;}
._1{width:11.652267pt;}
._17{width:23.734400pt;}
._16{width:33.322667pt;}
._8{width:39.731733pt;}
._15{width:65.221333pt;}
._f{width:84.784000pt;}
._13{width:129.360000pt;}
._14{width:1133.290667pt;}
.fs4{font-size:24.640000pt;}
.fs9{font-size:28.160000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.381467pt;}
.y61{bottom:8.000000pt;}
.y60{bottom:16.000000pt;}
.y5f{bottom:24.000000pt;}
.y62{bottom:58.890000pt;}
.y1{bottom:60.401733pt;}
.y53{bottom:94.375467pt;}
.y5b{bottom:94.871200pt;}
.y66{bottom:95.179600pt;}
.y6a{bottom:95.192267pt;}
.y125{bottom:96.311467pt;}
.yf1{bottom:96.450133pt;}
.y5a{bottom:106.873867pt;}
.y124{bottom:109.644800pt;}
.y52{bottom:111.703467pt;}
.y65{bottom:112.507600pt;}
.y69{bottom:112.520267pt;}
.yf0{bottom:113.778133pt;}
.y59{bottom:118.876533pt;}
.y123{bottom:122.978133pt;}
.y51{bottom:129.031467pt;}
.y64{bottom:129.835600pt;}
.y68{bottom:129.848267pt;}
.y58{bottom:130.879200pt;}
.yef{bottom:131.106133pt;}
.y122{bottom:138.978133pt;}
.y57{bottom:142.881867pt;}
.y50{bottom:146.359467pt;}
.y63{bottom:147.163600pt;}
.y67{bottom:147.176267pt;}
.yee{bottom:148.434133pt;}
.y56{bottom:154.884533pt;}
.y4f{bottom:163.687467pt;}
.yed{bottom:165.762133pt;}
.y55{bottom:166.887200pt;}
.y121{bottom:169.644800pt;}
.y54{bottom:179.116267pt;}
.y4e{bottom:181.015467pt;}
.y120{bottom:182.978133pt;}
.yec{bottom:183.090133pt;}
.ybe{bottom:188.372133pt;}
.y5e{bottom:195.110800pt;}
.y11f{bottom:196.311467pt;}
.y4d{bottom:198.343467pt;}
.yeb{bottom:200.418133pt;}
.ybd{bottom:201.705467pt;}
.y5d{bottom:207.113467pt;}
.y11e{bottom:209.644800pt;}
.y70{bottom:214.209467pt;}
.ybc{bottom:215.038800pt;}
.y4c{bottom:215.671467pt;}
.yea{bottom:217.746133pt;}
.y5c{bottom:219.116133pt;}
.y11d{bottom:222.978133pt;}
.ybb{bottom:228.372133pt;}
.y4b{bottom:232.999467pt;}
.ye9{bottom:235.074133pt;}
.y11c{bottom:238.978133pt;}
.yba{bottom:241.705467pt;}
.y99{bottom:249.848133pt;}
.y4a{bottom:250.327467pt;}
.ye8{bottom:252.402133pt;}
.yb9{bottom:255.038800pt;}
.y49{bottom:267.655467pt;}
.yb8{bottom:268.372133pt;}
.ye7{bottom:269.730133pt;}
.y11b{bottom:271.338800pt;}
.yb7{bottom:281.705467pt;}
.y48{bottom:284.983467pt;}
.ye6{bottom:287.058133pt;}
.y11a{bottom:288.666800pt;}
.y25{bottom:299.734267pt;}
.y47{bottom:302.311467pt;}
.ye5{bottom:304.386133pt;}
.y119{bottom:305.994800pt;}
.y6b{bottom:311.705333pt;}
.y24{bottom:317.062267pt;}
.ye4{bottom:321.714133pt;}
.y118{bottom:323.322800pt;}
.y46{bottom:326.311467pt;}
.y94{bottom:328.333467pt;}
.y95{bottom:332.757467pt;}
.y23{bottom:334.390267pt;}
.ye3{bottom:339.042133pt;}
.y117{bottom:340.650800pt;}
.yb6{bottom:351.693467pt;}
.y22{bottom:351.718267pt;}
.yae{bottom:355.065467pt;}
.y45{bottom:355.746133pt;}
.ye2{bottom:356.370133pt;}
.y116{bottom:357.978800pt;}
.y21{bottom:369.046267pt;}
.y44{bottom:373.074133pt;}
.ye1{bottom:373.698133pt;}
.y115{bottom:375.306800pt;}
.yad{bottom:378.193467pt;}
.yb5{bottom:379.030800pt;}
.y20{bottom:386.374267pt;}
.y43{bottom:390.402133pt;}
.ye0{bottom:391.026133pt;}
.y114{bottom:392.634800pt;}
.yac{bottom:401.321467pt;}
.y1f{bottom:403.702267pt;}
.yb4{bottom:406.368133pt;}
.y42{bottom:407.730133pt;}
.ydf{bottom:408.354133pt;}
.y113{bottom:409.962800pt;}
.ya8{bottom:416.446800pt;}
.y1e{bottom:421.030267pt;}
.yb1{bottom:424.438800pt;}
.yab{bottom:424.449467pt;}
.y41{bottom:425.058133pt;}
.yde{bottom:425.682133pt;}
.y112{bottom:427.290800pt;}
.yb3{bottom:433.705467pt;}
.y1d{bottom:438.358267pt;}
.y40{bottom:442.386133pt;}
.ydd{bottom:443.010133pt;}
.y111{bottom:444.618800pt;}
.yaa{bottom:447.577467pt;}
.y6f{bottom:453.569467pt;}
.y1c{bottom:455.686267pt;}
.y3f{bottom:459.714133pt;}
.ydc{bottom:460.338133pt;}
.yb2{bottom:461.042800pt;}
.y110{bottom:461.946800pt;}
.ya9{bottom:470.705467pt;}
.y1b{bottom:473.014267pt;}
.y3e{bottom:477.042133pt;}
.ydb{bottom:477.666133pt;}
.y10f{bottom:479.274800pt;}
.yb0{bottom:488.382800pt;}
.y1a{bottom:490.342267pt;}
.ya7{bottom:493.857467pt;}
.y3d{bottom:494.370133pt;}
.yda{bottom:494.994133pt;}
.y10e{bottom:496.602800pt;}
.y19{bottom:507.670267pt;}
.y8d{bottom:508.532133pt;}
.y3c{bottom:511.698133pt;}
.yd9{bottom:512.322133pt;}
.y10d{bottom:513.930800pt;}
.yaf{bottom:515.720133pt;}
.ya6{bottom:516.985467pt;}
.y92{bottom:523.810800pt;}
.y18{bottom:524.998267pt;}
.y3b{bottom:529.026133pt;}
.yd8{bottom:529.650133pt;}
.y10c{bottom:531.258800pt;}
.y3a{bottom:546.354133pt;}
.yd7{bottom:546.978133pt;}
.y98{bottom:547.422800pt;}
.y10b{bottom:548.586800pt;}
.y97{bottom:561.553467pt;}
.y93{bottom:561.573467pt;}
.y39{bottom:563.682133pt;}
.y10a{bottom:565.914800pt;}
.yd6{bottom:570.978133pt;}
.y38{bottom:581.010133pt;}
.y109{bottom:583.242800pt;}
.y89{bottom:583.674800pt;}
.ya5{bottom:584.400133pt;}
.y17{bottom:585.658933pt;}
.y37{bottom:598.338133pt;}
.yd5{bottom:600.428800pt;}
.y108{bottom:600.570800pt;}
.ya4{bottom:600.929467pt;}
.y16{bottom:601.656933pt;}
.y88{bottom:615.529467pt;}
.y36{bottom:615.666133pt;}
.ya3{bottom:617.458800pt;}
.y15{bottom:617.654933pt;}
.yd4{bottom:617.756800pt;}
.y107{bottom:617.898800pt;}
.y35{bottom:632.994133pt;}
.y14{bottom:633.652933pt;}
.ya2{bottom:633.988133pt;}
.yd3{bottom:635.084800pt;}
.y106{bottom:635.226800pt;}
.y85{bottom:642.588133pt;}
.y87{bottom:647.384133pt;}
.y13{bottom:649.650933pt;}
.y34{bottom:650.322133pt;}
.ya1{bottom:650.517467pt;}
.yd2{bottom:652.412800pt;}
.y105{bottom:652.554800pt;}
.y9f{bottom:657.777467pt;}
.y12{bottom:665.648933pt;}
.ya0{bottom:667.046800pt;}
.y6c{bottom:667.414400pt;}
.y33{bottom:667.650133pt;}
.y6d{bottom:668.067733pt;}
.yd1{bottom:669.740800pt;}
.y104{bottom:669.882800pt;}
.y86{bottom:679.238800pt;}
.y11{bottom:681.646933pt;}
.y9e{bottom:683.596133pt;}
.y32{bottom:684.978133pt;}
.yd0{bottom:687.068800pt;}
.y103{bottom:687.210800pt;}
.y9d{bottom:700.125467pt;}
.ycf{bottom:704.396800pt;}
.y102{bottom:704.538800pt;}
.y31{bottom:708.978133pt;}
.y84{bottom:711.105600pt;}
.y10{bottom:714.310933pt;}
.y9c{bottom:716.654800pt;}
.yce{bottom:721.724800pt;}
.y101{bottom:721.866800pt;}
.y8f{bottom:725.252133pt;}
.yf{bottom:726.310933pt;}
.y9b{bottom:733.184133pt;}
.y8c{bottom:733.194800pt;}
.ye{bottom:738.310933pt;}
.y30{bottom:738.456933pt;}
.ycd{bottom:739.052800pt;}
.y100{bottom:739.194800pt;}
.y83{bottom:742.960267pt;}
.y8a{bottom:749.724133pt;}
.yd{bottom:750.308267pt;}
.y8e{bottom:750.881467pt;}
.y2f{bottom:755.784933pt;}
.ycc{bottom:756.380800pt;}
.yff{bottom:756.522800pt;}
.y91{bottom:758.077467pt;}
.yc{bottom:762.310933pt;}
.y6e{bottom:765.276133pt;}
.y136{bottom:767.736133pt;}
.y149{bottom:767.988133pt;}
.y2e{bottom:773.112933pt;}
.ycb{bottom:773.708800pt;}
.yfe{bottom:773.850800pt;}
.yb{bottom:774.310933pt;}
.y135{bottom:779.738800pt;}
.y148{bottom:779.990800pt;}
.y9a{bottom:789.100133pt;}
.y8b{bottom:789.110800pt;}
.y90{bottom:789.120133pt;}
.y2d{bottom:790.440933pt;}
.ya{bottom:790.512693pt;}
.yca{bottom:791.036800pt;}
.yfd{bottom:791.178800pt;}
.y134{bottom:791.741467pt;}
.y147{bottom:791.993467pt;}
.y9{bottom:803.644267pt;}
.y133{bottom:803.744133pt;}
.y146{bottom:803.996133pt;}
.y2c{bottom:807.768933pt;}
.yc9{bottom:808.364800pt;}
.yfc{bottom:808.506800pt;}
.y7d{bottom:810.936800pt;}
.y82{bottom:811.457600pt;}
.y8{bottom:815.646933pt;}
.y132{bottom:815.746800pt;}
.y145{bottom:815.998800pt;}
.y2b{bottom:825.096933pt;}
.yc8{bottom:825.692800pt;}
.yfb{bottom:825.834800pt;}
.y131{bottom:827.749467pt;}
.y144{bottom:828.001467pt;}
.y7{bottom:838.333600pt;}
.y130{bottom:839.752133pt;}
.y143{bottom:840.004133pt;}
.y7c{bottom:841.680800pt;}
.y81{bottom:841.902933pt;}
.y2a{bottom:842.424933pt;}
.yc7{bottom:843.020800pt;}
.yfa{bottom:843.162800pt;}
.y12f{bottom:851.754800pt;}
.y142{bottom:852.006800pt;}
.y29{bottom:859.752933pt;}
.yc6{bottom:860.348800pt;}
.yf9{bottom:860.490800pt;}
.y6{bottom:860.993600pt;}
.y12e{bottom:863.757467pt;}
.y141{bottom:864.009467pt;}
.y7e{bottom:866.121733pt;}
.y73{bottom:870.371733pt;}
.y80{bottom:872.348267pt;}
.y7b{bottom:872.424800pt;}
.y12d{bottom:875.760133pt;}
.y140{bottom:876.012133pt;}
.y28{bottom:877.080933pt;}
.yc5{bottom:877.676800pt;}
.yf8{bottom:877.818800pt;}
.y5{bottom:883.653600pt;}
.y12c{bottom:887.762800pt;}
.y13f{bottom:888.014800pt;}
.y27{bottom:894.408933pt;}
.yc4{bottom:895.004800pt;}
.yf7{bottom:895.146800pt;}
.y12b{bottom:899.765467pt;}
.y13e{bottom:900.017467pt;}
.y7f{bottom:902.793600pt;}
.y7a{bottom:903.168800pt;}
.y4{bottom:906.313600pt;}
.y26{bottom:911.736933pt;}
.y13d{bottom:912.020133pt;}
.yc3{bottom:912.332800pt;}
.yf6{bottom:912.474800pt;}
.y12a{bottom:914.426800pt;}
.y13c{bottom:924.022800pt;}
.yc2{bottom:929.660800pt;}
.yf5{bottom:929.802800pt;}
.y72{bottom:933.244133pt;}
.y79{bottom:933.912800pt;}
.y13b{bottom:936.025467pt;}
.y77{bottom:938.476800pt;}
.y129{bottom:943.098800pt;}
.yc1{bottom:946.988800pt;}
.yf4{bottom:947.130800pt;}
.y13a{bottom:948.028133pt;}
.y128{bottom:956.432133pt;}
.y78{bottom:958.636800pt;}
.y139{bottom:960.030800pt;}
.y71{bottom:963.689467pt;}
.yc0{bottom:964.316800pt;}
.yf3{bottom:964.458800pt;}
.y74{bottom:964.656800pt;}
.y127{bottom:969.765467pt;}
.y76{bottom:971.143467pt;}
.y138{bottom:972.033467pt;}
.y75{bottom:975.623467pt;}
.y3{bottom:977.731600pt;}
.ybf{bottom:981.644800pt;}
.yf2{bottom:981.786800pt;}
.y126{bottom:983.098800pt;}
.y137{bottom:984.036133pt;}
.y2{bottom:1006.343200pt;}
.h8{height:18.307520pt;}
.h11{height:25.162667pt;}
.h16{height:26.730667pt;}
.ha{height:27.738667pt;}
.h2{height:30.549333pt;}
.he{height:31.390625pt;}
.h15{height:31.658667pt;}
.h13{height:31.701333pt;}
.hd{height:33.637333pt;}
.h9{height:35.118187pt;}
.hb{height:35.128853pt;}
.h10{height:35.946667pt;}
.hc{height:36.277333pt;}
.h6{height:39.936960pt;}
.h7{height:39.947627pt;}
.h12{height:40.064000pt;}
.h14{height:40.122880pt;}
.h3{height:47.104000pt;}
.h4{height:47.168000pt;}
.h5{height:57.280000pt;}
.hf{height:679.146667pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.520000pt;}
.w1{width:579.550667pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x8{left:4.000000pt;}
.x2{left:65.466667pt;}
.x32{left:72.133333pt;}
.x7{left:74.800000pt;}
.x3{left:76.266667pt;}
.x4{left:78.000000pt;}
.x33{left:83.464000pt;}
.x9{left:106.358667pt;}
.x2f{left:126.210667pt;}
.xe{left:128.954267pt;}
.x1b{left:134.733867pt;}
.xc{left:136.480267pt;}
.x30{left:139.402133pt;}
.xd{left:141.146933pt;}
.x31{left:144.068800pt;}
.x16{left:145.813600pt;}
.x1c{left:177.312533pt;}
.x27{left:184.480533pt;}
.x11{left:187.293867pt;}
.x1e{left:193.207200pt;}
.x12{left:224.972533pt;}
.x2c{left:243.593333pt;}
.x29{left:252.497867pt;}
.x2a{left:294.656533pt;}
.xa{left:297.057867pt;}
.x21{left:303.601867pt;}
.x22{left:306.028533pt;}
.x2b{left:333.324533pt;}
.x1d{left:353.460533pt;}
.xb{left:402.449867pt;}
.x6{left:408.004667pt;}
.x35{left:410.000000pt;}
.x15{left:412.243200pt;}
.x34{left:414.666667pt;}
.x19{left:418.693867pt;}
.xf{left:419.768533pt;}
.x5{left:420.671333pt;}
.x13{left:424.435200pt;}
.x17{left:426.046933pt;}
.x14{left:429.101867pt;}
.x18{left:430.713600pt;}
.x28{left:433.676533pt;}
.x1a{left:435.379200pt;}
.x24{left:464.919200pt;}
.x10{left:473.780533pt;}
.x25{left:474.719200pt;}
.x1f{left:482.213867pt;}
.x26{left:497.035200pt;}
.x2e{left:515.770400pt;}
.x2d{left:539.925067pt;}
.x20{left:543.487200pt;}
.x1{left:595.960933pt;}
.x23{left:613.991200pt;}
}




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