
    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_e4bf434a2f0796c5e68f93e3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_43bbf99f1705481a90aa1c81.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_e4bf434a2f0796c5e68f93e3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_824c7bd464c247f27f10b4a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_ff9723540e964036d0a20e76.woff')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_b0444328709b629853e12bd0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_824c7bd464c247f27f10b4a0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_ff9723540e964036d0a20e76.woff')format("woff");}.ff8{font-family:ff8;line-height:1.203000;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_f824e72bb17bd42b21049ae2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_824c7bd464c247f27f10b4a0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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_ff9723540e964036d0a20e76.woff')format("woff");}.ffb{font-family:ffb;line-height:1.203000;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_72ab177d74d36e4ce06af905.woff')format("woff");}.ffc{font-family:ffc;line-height:1.222000;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_e6b6353e94ba5ec84f7bd866.woff')format("woff");}.ffd{font-family:ffd;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f60255934ccdc8d93b11918b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_56461e8d5f6705c1c72eb7e1.woff')format("woff");}.fff{font-family:fff;line-height:0.385000;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;}
.m1{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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v4{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls2{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000005px;}
.ls4{letter-spacing:0.000009px;}
.ls6{letter-spacing:0.000100px;}
.ls7{letter-spacing:0.000220px;}
.ls0{letter-spacing:9.360000px;}
.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;}
}
.ws8{word-spacing:-14.454000px;}
.wsab{word-spacing:-13.935600px;}
.ws13{word-spacing:-13.818000px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-11.880000px;}
.wse1{word-spacing:-11.426400px;}
.wsd0{word-spacing:-10.512000px;}
.ws7{word-spacing:-10.117800px;}
.ws2{word-spacing:-9.855000px;}
.wsd6{word-spacing:-9.315000px;}
.ws10{word-spacing:-8.148000px;}
.ws3{word-spacing:-6.898500px;}
.ws11{word-spacing:-3.108000px;}
.wsf{word-spacing:-1.344000px;}
.ws7d{word-spacing:-1.234800px;}
.wsc9{word-spacing:-0.823200px;}
.ws51{word-spacing:-0.705600px;}
.wsc3{word-spacing:-0.646800px;}
.ws26{word-spacing:-0.470400px;}
.wsb3{word-spacing:-0.411600px;}
.wsdd{word-spacing:-0.352800px;}
.ws33{word-spacing:-0.294000px;}
.ws47{word-spacing:-0.176400px;}
.wsb5{word-spacing:-0.117600px;}
.wse0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:0.210000px;}
.ws90{word-spacing:0.235200px;}
.ws7c{word-spacing:0.352800px;}
.ws77{word-spacing:0.411600px;}
.ws72{word-spacing:0.588000px;}
.ws5e{word-spacing:0.705600px;}
.wsa3{word-spacing:0.882000px;}
.ws6b{word-spacing:0.940800px;}
.wsb{word-spacing:1.050000px;}
.ws78{word-spacing:1.058400px;}
.ws6e{word-spacing:1.117200px;}
.wsa{word-spacing:1.134000px;}
.ws49{word-spacing:1.176000px;}
.ws76{word-spacing:1.234800px;}
.ws1e{word-spacing:1.293600px;}
.wsc{word-spacing:1.302000px;}
.wsd{word-spacing:1.470000px;}
.ws28{word-spacing:1.705200px;}
.ws30{word-spacing:1.764000px;}
.wsb1{word-spacing:1.822800px;}
.ws71{word-spacing:1.881600px;}
.ws50{word-spacing:1.940400px;}
.ws42{word-spacing:1.999200px;}
.wsc4{word-spacing:2.116800px;}
.ws3e{word-spacing:2.175600px;}
.ws96{word-spacing:2.234400px;}
.ws48{word-spacing:2.293200px;}
.wsca{word-spacing:2.410800px;}
.ws22{word-spacing:2.469600px;}
.ws43{word-spacing:2.587200px;}
.ws15{word-spacing:2.640000px;}
.ws39{word-spacing:2.646000px;}
.ws3b{word-spacing:2.704800px;}
.wsde{word-spacing:2.822400px;}
.ws37{word-spacing:3.057600px;}
.ws14{word-spacing:3.072000px;}
.wsc5{word-spacing:3.116400px;}
.wsac{word-spacing:3.175200px;}
.wsad{word-spacing:3.234000px;}
.ws7f{word-spacing:3.351600px;}
.ws35{word-spacing:3.469200px;}
.ws23{word-spacing:3.528000px;}
.ws83{word-spacing:3.704400px;}
.wsaa{word-spacing:3.763200px;}
.ws25{word-spacing:3.822000px;}
.ws68{word-spacing:3.939600px;}
.ws12{word-spacing:3.960000px;}
.ws60{word-spacing:4.057200px;}
.ws4a{word-spacing:4.116000px;}
.ws31{word-spacing:4.468800px;}
.wsb4{word-spacing:4.527600px;}
.wsdf{word-spacing:4.586400px;}
.wsa0{word-spacing:4.645200px;}
.ws6c{word-spacing:4.762800px;}
.ws52{word-spacing:4.821600px;}
.ws2f{word-spacing:4.880400px;}
.ws45{word-spacing:4.998000px;}
.ws55{word-spacing:5.056800px;}
.ws73{word-spacing:5.115600px;}
.wsc6{word-spacing:5.174400px;}
.ws9f{word-spacing:5.468400px;}
.ws1d{word-spacing:5.527200px;}
.wsd1{word-spacing:5.586000px;}
.ws2e{word-spacing:5.644800px;}
.wscd{word-spacing:5.703600px;}
.wsdc{word-spacing:5.762400px;}
.ws67{word-spacing:5.821200px;}
.ws3f{word-spacing:5.938800px;}
.wsbd{word-spacing:5.997600px;}
.ws91{word-spacing:6.056400px;}
.wsd4{word-spacing:6.232800px;}
.ws2d{word-spacing:6.291600px;}
.ws3c{word-spacing:6.350400px;}
.ws94{word-spacing:6.409200px;}
.ws5f{word-spacing:6.468000px;}
.wsd5{word-spacing:6.526800px;}
.ws46{word-spacing:6.585600px;}
.wsce{word-spacing:6.703200px;}
.wsda{word-spacing:6.762000px;}
.ws80{word-spacing:6.820800px;}
.wscc{word-spacing:6.879600px;}
.ws95{word-spacing:6.938400px;}
.ws9d{word-spacing:7.056000px;}
.ws92{word-spacing:7.173600px;}
.ws85{word-spacing:7.232400px;}
.ws36{word-spacing:7.291200px;}
.wsc2{word-spacing:7.408800px;}
.ws82{word-spacing:7.585200px;}
.wsd3{word-spacing:7.644000px;}
.ws61{word-spacing:7.702800px;}
.ws4d{word-spacing:7.761600px;}
.ws9e{word-spacing:7.820400px;}
.wsaf{word-spacing:7.996800px;}
.ws69{word-spacing:8.173200px;}
.ws81{word-spacing:8.232000px;}
.ws20{word-spacing:8.349600px;}
.ws7e{word-spacing:8.408400px;}
.ws86{word-spacing:8.584800px;}
.ws84{word-spacing:8.643600px;}
.ws3a{word-spacing:8.878800px;}
.wsb7{word-spacing:8.996400px;}
.ws4e{word-spacing:9.114000px;}
.ws4c{word-spacing:9.290400px;}
.wsb6{word-spacing:9.349200px;}
.wsb8{word-spacing:9.408000px;}
.ws53{word-spacing:9.525600px;}
.ws58{word-spacing:9.584400px;}
.ws79{word-spacing:9.702000px;}
.wsa2{word-spacing:9.819600px;}
.ws24{word-spacing:9.878400px;}
.wsa8{word-spacing:9.937200px;}
.wsa9{word-spacing:10.054800px;}
.wsbe{word-spacing:10.113600px;}
.wsa6{word-spacing:10.172400px;}
.ws8d{word-spacing:10.231200px;}
.ws57{word-spacing:10.290000px;}
.wsae{word-spacing:10.525200px;}
.ws3d{word-spacing:10.642800px;}
.ws5b{word-spacing:10.701600px;}
.wsa1{word-spacing:10.760400px;}
.ws59{word-spacing:10.819200px;}
.ws64{word-spacing:10.878000px;}
.ws6f{word-spacing:10.936800px;}
.wsbc{word-spacing:10.995600px;}
.wsa4{word-spacing:11.054400px;}
.ws38{word-spacing:11.172000px;}
.ws9c{word-spacing:11.524800px;}
.ws6d{word-spacing:11.583600px;}
.ws5c{word-spacing:11.701200px;}
.ws4b{word-spacing:11.760000px;}
.ws34{word-spacing:11.818800px;}
.wsba{word-spacing:11.877600px;}
.ws63{word-spacing:11.936400px;}
.ws9a{word-spacing:12.054000px;}
.wsdb{word-spacing:12.112800px;}
.ws41{word-spacing:12.289200px;}
.wsb2{word-spacing:12.348000px;}
.wsb9{word-spacing:12.465600px;}
.ws29{word-spacing:12.524400px;}
.ws54{word-spacing:12.759600px;}
.ws27{word-spacing:12.818400px;}
.wsd2{word-spacing:12.936000px;}
.ws2b{word-spacing:13.171200px;}
.ws5d{word-spacing:13.230000px;}
.ws8e{word-spacing:13.288800px;}
.ws65{word-spacing:13.465200px;}
.ws5a{word-spacing:13.641600px;}
.ws1f{word-spacing:13.700400px;}
.ws19{word-spacing:13.818000px;}
.ws1b{word-spacing:13.935600px;}
.wsbf{word-spacing:14.112000px;}
.ws98{word-spacing:14.229600px;}
.wsa7{word-spacing:14.817600px;}
.wsa5{word-spacing:15.052800px;}
.ws99{word-spacing:15.170400px;}
.wsd8{word-spacing:15.229200px;}
.ws40{word-spacing:15.405600px;}
.wsc7{word-spacing:15.523200px;}
.ws4f{word-spacing:15.582000px;}
.ws2c{word-spacing:15.699600px;}
.ws1a{word-spacing:15.876000px;}
.ws18{word-spacing:15.993600px;}
.ws1c{word-spacing:16.111200px;}
.ws56{word-spacing:16.170000px;}
.ws93{word-spacing:16.405200px;}
.wsb0{word-spacing:16.758000px;}
.ws7a{word-spacing:16.993200px;}
.ws74{word-spacing:17.052000px;}
.wsbb{word-spacing:17.228400px;}
.ws2a{word-spacing:17.346000px;}
.ws66{word-spacing:17.640000px;}
.wsc8{word-spacing:17.934000px;}
.ws70{word-spacing:18.110400px;}
.ws9b{word-spacing:18.522000px;}
.wsd7{word-spacing:19.521600px;}
.ws8c{word-spacing:19.639200px;}
.ws32{word-spacing:19.815600px;}
.ws8f{word-spacing:20.756400px;}
.wsc0{word-spacing:20.815200px;}
.ws7b{word-spacing:21.756000px;}
.ws75{word-spacing:21.991200px;}
.ws88{word-spacing:22.050000px;}
.ws97{word-spacing:22.226400px;}
.wsd9{word-spacing:22.285200px;}
.ws87{word-spacing:22.520400px;}
.ws21{word-spacing:22.755600px;}
.ws62{word-spacing:23.461200px;}
.ws17{word-spacing:24.166800px;}
.ws44{word-spacing:24.225600px;}
.ws8b{word-spacing:24.872400px;}
.wscb{word-spacing:26.283600px;}
.ws6a{word-spacing:26.342400px;}
.wsc1{word-spacing:28.518000px;}
.ws8a{word-spacing:30.340800px;}
.ws89{word-spacing:31.987200px;}
.ws16{word-spacing:32.046000px;}
.ws6{word-spacing:45.687157px;}
.wscf{word-spacing:807.252561px;}
.ws1{word-spacing:1215.448154px;}
.ws0{word-spacing:2061.754745px;}
._6{margin-left:-2891.243921px;}
._d{margin-left:-18.144013px;}
._b{margin-left:-15.170400px;}
._9{margin-left:-12.759600px;}
._4{margin-left:-6.498000px;}
._a{margin-left:-5.247480px;}
._7{margin-left:-4.170663px;}
._2{margin-left:-2.650017px;}
._1{margin-left:-1.404000px;}
._0{width:1.092000px;}
._3{width:2.346000px;}
._8{width:6.157156px;}
._c{width:8.708280px;}
._e{width:15.778838px;}
._5{width:16.822771px;}
._f{width:20.367618px;}
._12{width:33.120000px;}
._11{width:55.080000px;}
._10{width:142.819761px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.500000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:88.869152px;}
.y75{bottom:92.551203px;}
.y91{bottom:94.364548px;}
.y8{bottom:100.869152px;}
.y90{bottom:109.364548px;}
.y74{bottom:110.551197px;}
.y68{bottom:110.551346px;}
.y7{bottom:112.869152px;}
.y8f{bottom:124.364548px;}
.y6{bottom:124.869152px;}
.y73{bottom:128.551197px;}
.y67{bottom:128.551346px;}
.y110{bottom:131.193295px;}
.y5{bottom:136.869152px;}
.y8e{bottom:141.868504px;}
.y10f{bottom:144.693295px;}
.y72{bottom:146.551197px;}
.y66{bottom:146.551346px;}
.y4{bottom:148.869152px;}
.y151{bottom:155.551197px;}
.y8d{bottom:156.868504px;}
.y10e{bottom:158.193295px;}
.y9a{bottom:160.051197px;}
.y3{bottom:160.869152px;}
.y76{bottom:164.551197px;}
.y65{bottom:164.551346px;}
.y150{bottom:169.051197px;}
.y10d{bottom:171.693295px;}
.y8c{bottom:171.868504px;}
.y2{bottom:172.869152px;}
.y99{bottom:173.551197px;}
.y71{bottom:182.551197px;}
.y64{bottom:182.551346px;}
.y10c{bottom:185.193295px;}
.y8b{bottom:189.372299px;}
.y10b{bottom:198.693306px;}
.y70{bottom:200.551208px;}
.y63{bottom:200.551346px;}
.y8a{bottom:204.372299px;}
.y10a{bottom:212.193306px;}
.y98{bottom:214.051208px;}
.y17{bottom:218.255699px;}
.y6f{bottom:218.551208px;}
.y62{bottom:218.551346px;}
.y14f{bottom:219.113708px;}
.y89{bottom:221.876244px;}
.y109{bottom:225.693306px;}
.y97{bottom:227.551208px;}
.y16{bottom:231.755699px;}
.y14e{bottom:232.613708px;}
.y6e{bottom:236.551208px;}
.y61{bottom:236.551346px;}
.y88{bottom:236.876244px;}
.y108{bottom:239.193306px;}
.y15{bottom:240.755699px;}
.y96{bottom:241.051208px;}
.y14d{bottom:246.113708px;}
.y87{bottom:251.876244px;}
.y107{bottom:252.693306px;}
.y6d{bottom:254.551208px;}
.y60{bottom:254.551346px;}
.y14{bottom:258.755699px;}
.y14c{bottom:259.613708px;}
.ycb{bottom:261.650093px;}
.y106{bottom:266.193306px;}
.y13{bottom:267.755699px;}
.y95{bottom:268.051208px;}
.y86{bottom:269.380211px;}
.y1c{bottom:272.255699px;}
.y6c{bottom:272.551208px;}
.y5f{bottom:272.551346px;}
.y14b{bottom:273.113708px;}
.yca{bottom:276.650093px;}
.y105{bottom:279.693306px;}
.y12{bottom:281.255699px;}
.y85{bottom:284.380211px;}
.y1b{bottom:285.755699px;}
.y14a{bottom:286.613708px;}
.y6b{bottom:290.551208px;}
.y5e{bottom:290.551346px;}
.y104{bottom:293.193306px;}
.yc9{bottom:294.154060px;}
.y11{bottom:294.755699px;}
.y94{bottom:295.051208px;}
.y1a{bottom:299.255699px;}
.y84{bottom:299.380211px;}
.y149{bottom:300.113708px;}
.y103{bottom:306.693306px;}
.y5d{bottom:308.551208px;}
.yc8{bottom:309.154060px;}
.y10{bottom:312.755699px;}
.y148{bottom:313.613708px;}
.y83{bottom:316.884155px;}
.y102{bottom:320.193306px;}
.yf{bottom:321.755699px;}
.y93{bottom:322.051208px;}
.yc7{bottom:324.154060px;}
.y19{bottom:326.255699px;}
.y5c{bottom:326.551208px;}
.y147{bottom:327.113708px;}
.y82{bottom:331.884155px;}
.y101{bottom:333.693306px;}
.ye{bottom:335.255699px;}
.y92{bottom:335.551208px;}
.y146{bottom:340.613708px;}
.yc6{bottom:341.658005px;}
.y5b{bottom:344.551208px;}
.y100{bottom:347.193306px;}
.yd{bottom:348.755699px;}
.y81{bottom:349.388100px;}
.y18{bottom:353.255699px;}
.y145{bottom:354.113708px;}
.yc5{bottom:356.658005px;}
.yff{bottom:360.693306px;}
.y5a{bottom:362.551208px;}
.y80{bottom:364.388100px;}
.y144{bottom:367.613708px;}
.yc4{bottom:371.658005px;}
.yfe{bottom:374.193306px;}
.y59{bottom:380.551208px;}
.y143{bottom:381.113708px;}
.y7f{bottom:381.892044px;}
.yfd{bottom:387.693283px;}
.yc3{bottom:389.161972px;}
.y142{bottom:394.613708px;}
.y7e{bottom:396.892044px;}
.y58{bottom:398.551208px;}
.yfc{bottom:401.193283px;}
.yc2{bottom:404.161972px;}
.y141{bottom:408.113708px;}
.y7d{bottom:411.892044px;}
.yfb{bottom:414.693283px;}
.y57{bottom:416.551208px;}
.yc1{bottom:419.161972px;}
.y140{bottom:421.613708px;}
.yfa{bottom:428.193283px;}
.y7c{bottom:429.396011px;}
.y56{bottom:434.551208px;}
.y13f{bottom:435.113708px;}
.yc0{bottom:436.665894px;}
.yf9{bottom:441.693283px;}
.y7b{bottom:444.396011px;}
.y13e{bottom:448.613708px;}
.y55{bottom:452.551208px;}
.ybf{bottom:454.169861px;}
.yf8{bottom:455.193283px;}
.y7a{bottom:461.899933px;}
.y13d{bottom:462.113708px;}
.yf7{bottom:468.693283px;}
.ybe{bottom:469.169861px;}
.y54{bottom:470.551208px;}
.y13c{bottom:475.613708px;}
.y79{bottom:476.899933px;}
.yf6{bottom:482.193283px;}
.ybd{bottom:486.786300px;}
.y53{bottom:488.551208px;}
.y13b{bottom:489.113708px;}
.y2d{bottom:492.354172px;}
.y78{bottom:494.516418px;}
.yf5{bottom:495.693283px;}
.y13a{bottom:502.613708px;}
.ybc{bottom:504.290268px;}
.y52{bottom:506.551208px;}
.yf4{bottom:509.193283px;}
.y77{bottom:512.020340px;}
.y2c{bottom:514.854172px;}
.y139{bottom:516.113708px;}
.yf3{bottom:522.693283px;}
.y51{bottom:524.551208px;}
.y138{bottom:529.613708px;}
.y2b{bottom:532.854172px;}
.yf2{bottom:536.193283px;}
.ybb{bottom:542.518478px;}
.y50{bottom:542.551208px;}
.y137{bottom:543.113708px;}
.yf1{bottom:549.693283px;}
.y2a{bottom:550.854172px;}
.y136{bottom:556.613708px;}
.yba{bottom:557.518478px;}
.y4f{bottom:560.551208px;}
.yf0{bottom:563.193283px;}
.y29{bottom:568.854172px;}
.y135{bottom:570.113708px;}
.yb9{bottom:572.518478px;}
.yef{bottom:576.693283px;}
.y4e{bottom:578.551208px;}
.y134{bottom:583.613708px;}
.y28{bottom:586.854172px;}
.yb8{bottom:590.022308px;}
.yee{bottom:590.193283px;}
.y4d{bottom:596.551208px;}
.y133{bottom:597.113708px;}
.yed{bottom:603.693283px;}
.y27{bottom:604.854172px;}
.yb7{bottom:605.022308px;}
.y132{bottom:610.613708px;}
.y4c{bottom:614.551208px;}
.yec{bottom:617.193283px;}
.yb6{bottom:622.526230px;}
.y26{bottom:622.854172px;}
.y131{bottom:624.113708px;}
.yeb{bottom:630.693283px;}
.y4b{bottom:632.551208px;}
.yb5{bottom:637.526230px;}
.y130{bottom:637.613708px;}
.y25{bottom:640.854172px;}
.yea{bottom:644.193283px;}
.y4a{bottom:650.551208px;}
.y12f{bottom:651.113708px;}
.yb4{bottom:652.526230px;}
.ye9{bottom:657.693283px;}
.y24{bottom:658.854172px;}
.y12e{bottom:664.613708px;}
.y49{bottom:668.551208px;}
.yb3{bottom:670.030197px;}
.ye8{bottom:671.193283px;}
.y23{bottom:676.854172px;}
.y12d{bottom:678.113708px;}
.ye7{bottom:684.693283px;}
.yb2{bottom:685.030197px;}
.y48{bottom:686.551208px;}
.y12c{bottom:691.613708px;}
.y22{bottom:694.854172px;}
.ye6{bottom:698.193283px;}
.yb1{bottom:702.534164px;}
.y47{bottom:704.551208px;}
.y12b{bottom:705.113708px;}
.ye5{bottom:711.693283px;}
.y21{bottom:712.854172px;}
.yb0{bottom:717.534164px;}
.y12a{bottom:718.613708px;}
.y46{bottom:722.551208px;}
.yd3{bottom:730.030197px;}
.y20{bottom:730.854172px;}
.y129{bottom:732.113708px;}
.yaf{bottom:735.038086px;}
.y45{bottom:740.551208px;}
.yd2{bottom:745.030197px;}
.y128{bottom:745.613708px;}
.y1f{bottom:748.854172px;}
.yae{bottom:750.038086px;}
.y44{bottom:758.551208px;}
.y127{bottom:759.113708px;}
.yd1{bottom:762.534164px;}
.yad{bottom:765.038086px;}
.y1e{bottom:766.854172px;}
.y126{bottom:772.613708px;}
.y43{bottom:776.551208px;}
.yd0{bottom:777.534119px;}
.ye4{bottom:780.693329px;}
.yac{bottom:782.542053px;}
.y1d{bottom:784.854126px;}
.y125{bottom:786.113708px;}
.y42{bottom:794.551208px;}
.ycf{bottom:795.038086px;}
.yab{bottom:797.542053px;}
.y124{bottom:799.613708px;}
.yce{bottom:810.038086px;}
.ye3{bottom:811.201172px;}
.yaa{bottom:812.542053px;}
.y41{bottom:812.551208px;}
.y123{bottom:813.113708px;}
.ye2{bottom:824.701172px;}
.y122{bottom:826.613708px;}
.ya9{bottom:827.542053px;}
.y40{bottom:830.551208px;}
.ye1{bottom:838.201172px;}
.y121{bottom:840.113708px;}
.ya8{bottom:842.542053px;}
.y32{bottom:843.316681px;}
.y3f{bottom:848.551208px;}
.ye0{bottom:851.701172px;}
.y120{bottom:853.613708px;}
.ya7{bottom:860.046021px;}
.y31{bottom:864.316681px;}
.ydf{bottom:865.201172px;}
.y3e{bottom:866.551208px;}
.y11f{bottom:867.113708px;}
.ya6{bottom:875.046021px;}
.yde{bottom:878.701172px;}
.y11e{bottom:880.613708px;}
.y3d{bottom:884.551208px;}
.y30{bottom:885.316681px;}
.ya5{bottom:890.046021px;}
.ydd{bottom:892.201172px;}
.y11d{bottom:894.113708px;}
.y3c{bottom:902.551208px;}
.ya4{bottom:905.046021px;}
.ydc{bottom:905.701172px;}
.ycd{bottom:907.549988px;}
.y11c{bottom:907.613708px;}
.ydb{bottom:919.201172px;}
.y3b{bottom:920.551208px;}
.y11b{bottom:921.113708px;}
.ya3{bottom:922.549988px;}
.yda{bottom:932.701172px;}
.y11a{bottom:934.613708px;}
.y2f{bottom:936.316681px;}
.ya2{bottom:937.549988px;}
.y3a{bottom:938.551208px;}
.yd9{bottom:946.201172px;}
.y119{bottom:948.113708px;}
.ya1{bottom:952.549988px;}
.ycc{bottom:955.053864px;}
.y39{bottom:956.551208px;}
.y118{bottom:961.613708px;}
.ya0{bottom:970.053864px;}
.yd8{bottom:973.201172px;}
.y38{bottom:974.551208px;}
.y117{bottom:975.113708px;}
.y2e{bottom:975.316681px;}
.y9f{bottom:985.053864px;}
.yd7{bottom:986.701172px;}
.y116{bottom:988.613708px;}
.y37{bottom:992.551208px;}
.y9e{bottom:1000.053864px;}
.y115{bottom:1002.113708px;}
.y36{bottom:1010.551208px;}
.yd6{bottom:1013.701172px;}
.y9d{bottom:1015.053864px;}
.y114{bottom:1015.613708px;}
.yd5{bottom:1027.201172px;}
.y6a{bottom:1028.551208px;}
.y35{bottom:1028.551392px;}
.y113{bottom:1029.113708px;}
.y9c{bottom:1032.670349px;}
.y1{bottom:1036.426208px;}
.y112{bottom:1042.613708px;}
.y69{bottom:1046.551208px;}
.y34{bottom:1046.551392px;}
.y9b{bottom:1050.174133px;}
.yd4{bottom:1054.201172px;}
.y111{bottom:1056.113708px;}
.yc{bottom:1103.110382px;}
.yb{bottom:1114.051208px;}
.ya{bottom:1129.051208px;}
.y33{bottom:1129.426208px;}
.h9{height:29.452500px;}
.h4{height:39.270000px;}
.h3{height:41.538000px;}
.h8{height:42.075000px;}
.h16{height:42.840000px;}
.h15{height:43.740000px;}
.h14{height:44.880000px;}
.h5{height:45.744000px;}
.h13{height:46.656000px;}
.h12{height:53.406000px;}
.h10{height:53.654399px;}
.h11{height:54.625200px;}
.hf{height:55.860000px;}
.hb{height:56.100000px;}
.hc{height:58.320000px;}
.ha{height:61.120200px;}
.he{height:69.596779px;}
.h7{height:71.000160px;}
.h2{height:78.896517px;}
.h6{height:116.732582px;}
.hd{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x6{left:94.789352px;}
.x8{left:97.039500px;}
.xe{left:107.539352px;}
.xa{left:115.039352px;}
.x2{left:271.062904px;}
.xc{left:381.759293px;}
.x5{left:457.547241px;}
.x9{left:469.086731px;}
.xf{left:479.586594px;}
.xb{left:487.086594px;}
.x4{left:741.275116px;}
.x7{left:750.973480px;}
.xd{left:753.806534px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v4{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000005pt;}
.ls4{letter-spacing:0.000008pt;}
.ls6{letter-spacing:0.000089pt;}
.ls7{letter-spacing:0.000196pt;}
.ls0{letter-spacing:8.320000pt;}
.ws8{word-spacing:-12.848000pt;}
.wsab{word-spacing:-12.387200pt;}
.ws13{word-spacing:-12.282667pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-10.560000pt;}
.wse1{word-spacing:-10.156800pt;}
.wsd0{word-spacing:-9.344000pt;}
.ws7{word-spacing:-8.993600pt;}
.ws2{word-spacing:-8.760000pt;}
.wsd6{word-spacing:-8.280000pt;}
.ws10{word-spacing:-7.242667pt;}
.ws3{word-spacing:-6.132000pt;}
.ws11{word-spacing:-2.762667pt;}
.wsf{word-spacing:-1.194667pt;}
.ws7d{word-spacing:-1.097600pt;}
.wsc9{word-spacing:-0.731733pt;}
.ws51{word-spacing:-0.627200pt;}
.wsc3{word-spacing:-0.574933pt;}
.ws26{word-spacing:-0.418133pt;}
.wsb3{word-spacing:-0.365867pt;}
.wsdd{word-spacing:-0.313600pt;}
.ws33{word-spacing:-0.261333pt;}
.ws47{word-spacing:-0.156800pt;}
.wsb5{word-spacing:-0.104533pt;}
.wse0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:0.186667pt;}
.ws90{word-spacing:0.209067pt;}
.ws7c{word-spacing:0.313600pt;}
.ws77{word-spacing:0.365867pt;}
.ws72{word-spacing:0.522667pt;}
.ws5e{word-spacing:0.627200pt;}
.wsa3{word-spacing:0.784000pt;}
.ws6b{word-spacing:0.836267pt;}
.wsb{word-spacing:0.933333pt;}
.ws78{word-spacing:0.940800pt;}
.ws6e{word-spacing:0.993067pt;}
.wsa{word-spacing:1.008000pt;}
.ws49{word-spacing:1.045333pt;}
.ws76{word-spacing:1.097600pt;}
.ws1e{word-spacing:1.149867pt;}
.wsc{word-spacing:1.157333pt;}
.wsd{word-spacing:1.306667pt;}
.ws28{word-spacing:1.515733pt;}
.ws30{word-spacing:1.568000pt;}
.wsb1{word-spacing:1.620267pt;}
.ws71{word-spacing:1.672533pt;}
.ws50{word-spacing:1.724800pt;}
.ws42{word-spacing:1.777067pt;}
.wsc4{word-spacing:1.881600pt;}
.ws3e{word-spacing:1.933867pt;}
.ws96{word-spacing:1.986133pt;}
.ws48{word-spacing:2.038400pt;}
.wsca{word-spacing:2.142933pt;}
.ws22{word-spacing:2.195200pt;}
.ws43{word-spacing:2.299733pt;}
.ws15{word-spacing:2.346667pt;}
.ws39{word-spacing:2.352000pt;}
.ws3b{word-spacing:2.404267pt;}
.wsde{word-spacing:2.508800pt;}
.ws37{word-spacing:2.717867pt;}
.ws14{word-spacing:2.730667pt;}
.wsc5{word-spacing:2.770133pt;}
.wsac{word-spacing:2.822400pt;}
.wsad{word-spacing:2.874667pt;}
.ws7f{word-spacing:2.979200pt;}
.ws35{word-spacing:3.083733pt;}
.ws23{word-spacing:3.136000pt;}
.ws83{word-spacing:3.292800pt;}
.wsaa{word-spacing:3.345067pt;}
.ws25{word-spacing:3.397333pt;}
.ws68{word-spacing:3.501867pt;}
.ws12{word-spacing:3.520000pt;}
.ws60{word-spacing:3.606400pt;}
.ws4a{word-spacing:3.658667pt;}
.ws31{word-spacing:3.972267pt;}
.wsb4{word-spacing:4.024533pt;}
.wsdf{word-spacing:4.076800pt;}
.wsa0{word-spacing:4.129067pt;}
.ws6c{word-spacing:4.233600pt;}
.ws52{word-spacing:4.285867pt;}
.ws2f{word-spacing:4.338133pt;}
.ws45{word-spacing:4.442667pt;}
.ws55{word-spacing:4.494933pt;}
.ws73{word-spacing:4.547200pt;}
.wsc6{word-spacing:4.599467pt;}
.ws9f{word-spacing:4.860800pt;}
.ws1d{word-spacing:4.913067pt;}
.wsd1{word-spacing:4.965333pt;}
.ws2e{word-spacing:5.017600pt;}
.wscd{word-spacing:5.069867pt;}
.wsdc{word-spacing:5.122133pt;}
.ws67{word-spacing:5.174400pt;}
.ws3f{word-spacing:5.278933pt;}
.wsbd{word-spacing:5.331200pt;}
.ws91{word-spacing:5.383467pt;}
.wsd4{word-spacing:5.540267pt;}
.ws2d{word-spacing:5.592533pt;}
.ws3c{word-spacing:5.644800pt;}
.ws94{word-spacing:5.697067pt;}
.ws5f{word-spacing:5.749333pt;}
.wsd5{word-spacing:5.801600pt;}
.ws46{word-spacing:5.853867pt;}
.wsce{word-spacing:5.958400pt;}
.wsda{word-spacing:6.010667pt;}
.ws80{word-spacing:6.062933pt;}
.wscc{word-spacing:6.115200pt;}
.ws95{word-spacing:6.167467pt;}
.ws9d{word-spacing:6.272000pt;}
.ws92{word-spacing:6.376533pt;}
.ws85{word-spacing:6.428800pt;}
.ws36{word-spacing:6.481067pt;}
.wsc2{word-spacing:6.585600pt;}
.ws82{word-spacing:6.742400pt;}
.wsd3{word-spacing:6.794667pt;}
.ws61{word-spacing:6.846933pt;}
.ws4d{word-spacing:6.899200pt;}
.ws9e{word-spacing:6.951467pt;}
.wsaf{word-spacing:7.108267pt;}
.ws69{word-spacing:7.265067pt;}
.ws81{word-spacing:7.317333pt;}
.ws20{word-spacing:7.421867pt;}
.ws7e{word-spacing:7.474133pt;}
.ws86{word-spacing:7.630933pt;}
.ws84{word-spacing:7.683200pt;}
.ws3a{word-spacing:7.892267pt;}
.wsb7{word-spacing:7.996800pt;}
.ws4e{word-spacing:8.101333pt;}
.ws4c{word-spacing:8.258133pt;}
.wsb6{word-spacing:8.310400pt;}
.wsb8{word-spacing:8.362667pt;}
.ws53{word-spacing:8.467200pt;}
.ws58{word-spacing:8.519467pt;}
.ws79{word-spacing:8.624000pt;}
.wsa2{word-spacing:8.728533pt;}
.ws24{word-spacing:8.780800pt;}
.wsa8{word-spacing:8.833067pt;}
.wsa9{word-spacing:8.937600pt;}
.wsbe{word-spacing:8.989867pt;}
.wsa6{word-spacing:9.042133pt;}
.ws8d{word-spacing:9.094400pt;}
.ws57{word-spacing:9.146667pt;}
.wsae{word-spacing:9.355733pt;}
.ws3d{word-spacing:9.460267pt;}
.ws5b{word-spacing:9.512533pt;}
.wsa1{word-spacing:9.564800pt;}
.ws59{word-spacing:9.617067pt;}
.ws64{word-spacing:9.669333pt;}
.ws6f{word-spacing:9.721600pt;}
.wsbc{word-spacing:9.773867pt;}
.wsa4{word-spacing:9.826133pt;}
.ws38{word-spacing:9.930667pt;}
.ws9c{word-spacing:10.244267pt;}
.ws6d{word-spacing:10.296533pt;}
.ws5c{word-spacing:10.401067pt;}
.ws4b{word-spacing:10.453333pt;}
.ws34{word-spacing:10.505600pt;}
.wsba{word-spacing:10.557867pt;}
.ws63{word-spacing:10.610133pt;}
.ws9a{word-spacing:10.714667pt;}
.wsdb{word-spacing:10.766933pt;}
.ws41{word-spacing:10.923733pt;}
.wsb2{word-spacing:10.976000pt;}
.wsb9{word-spacing:11.080533pt;}
.ws29{word-spacing:11.132800pt;}
.ws54{word-spacing:11.341867pt;}
.ws27{word-spacing:11.394133pt;}
.wsd2{word-spacing:11.498667pt;}
.ws2b{word-spacing:11.707733pt;}
.ws5d{word-spacing:11.760000pt;}
.ws8e{word-spacing:11.812267pt;}
.ws65{word-spacing:11.969067pt;}
.ws5a{word-spacing:12.125867pt;}
.ws1f{word-spacing:12.178133pt;}
.ws19{word-spacing:12.282667pt;}
.ws1b{word-spacing:12.387200pt;}
.wsbf{word-spacing:12.544000pt;}
.ws98{word-spacing:12.648533pt;}
.wsa7{word-spacing:13.171200pt;}
.wsa5{word-spacing:13.380267pt;}
.ws99{word-spacing:13.484800pt;}
.wsd8{word-spacing:13.537067pt;}
.ws40{word-spacing:13.693867pt;}
.wsc7{word-spacing:13.798400pt;}
.ws4f{word-spacing:13.850667pt;}
.ws2c{word-spacing:13.955200pt;}
.ws1a{word-spacing:14.112000pt;}
.ws18{word-spacing:14.216533pt;}
.ws1c{word-spacing:14.321067pt;}
.ws56{word-spacing:14.373333pt;}
.ws93{word-spacing:14.582400pt;}
.wsb0{word-spacing:14.896000pt;}
.ws7a{word-spacing:15.105067pt;}
.ws74{word-spacing:15.157333pt;}
.wsbb{word-spacing:15.314133pt;}
.ws2a{word-spacing:15.418667pt;}
.ws66{word-spacing:15.680000pt;}
.wsc8{word-spacing:15.941333pt;}
.ws70{word-spacing:16.098133pt;}
.ws9b{word-spacing:16.464000pt;}
.wsd7{word-spacing:17.352533pt;}
.ws8c{word-spacing:17.457067pt;}
.ws32{word-spacing:17.613867pt;}
.ws8f{word-spacing:18.450133pt;}
.wsc0{word-spacing:18.502400pt;}
.ws7b{word-spacing:19.338667pt;}
.ws75{word-spacing:19.547733pt;}
.ws88{word-spacing:19.600000pt;}
.ws97{word-spacing:19.756800pt;}
.wsd9{word-spacing:19.809067pt;}
.ws87{word-spacing:20.018133pt;}
.ws21{word-spacing:20.227200pt;}
.ws62{word-spacing:20.854400pt;}
.ws17{word-spacing:21.481600pt;}
.ws44{word-spacing:21.533867pt;}
.ws8b{word-spacing:22.108800pt;}
.wscb{word-spacing:23.363200pt;}
.ws6a{word-spacing:23.415467pt;}
.wsc1{word-spacing:25.349333pt;}
.ws8a{word-spacing:26.969600pt;}
.ws89{word-spacing:28.433067pt;}
.ws16{word-spacing:28.485333pt;}
.ws6{word-spacing:40.610806pt;}
.wscf{word-spacing:717.557832pt;}
.ws1{word-spacing:1080.398359pt;}
.ws0{word-spacing:1832.670885pt;}
._6{margin-left:-2569.994596pt;}
._d{margin-left:-16.128012pt;}
._b{margin-left:-13.484800pt;}
._9{margin-left:-11.341867pt;}
._4{margin-left:-5.776000pt;}
._a{margin-left:-4.664427pt;}
._7{margin-left:-3.707256pt;}
._2{margin-left:-2.355571pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.970667pt;}
._3{width:2.085333pt;}
._8{width:5.473027pt;}
._c{width:7.740694pt;}
._e{width:14.025634pt;}
._5{width:14.953575pt;}
._f{width:18.104549pt;}
._12{width:29.440000pt;}
._11{width:48.960000pt;}
._10{width:126.950898pt;}
.fs5{font-size:28.000000pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:78.994802pt;}
.y75{bottom:82.267736pt;}
.y91{bottom:83.879598pt;}
.y8{bottom:89.661469pt;}
.y90{bottom:97.212931pt;}
.y74{bottom:98.267731pt;}
.y68{bottom:98.267863pt;}
.y7{bottom:100.328135pt;}
.y8f{bottom:110.546265pt;}
.y6{bottom:110.994802pt;}
.y73{bottom:114.267731pt;}
.y67{bottom:114.267863pt;}
.y110{bottom:116.616262pt;}
.y5{bottom:121.661469pt;}
.y8e{bottom:126.105337pt;}
.y10f{bottom:128.616262pt;}
.y72{bottom:130.267731pt;}
.y66{bottom:130.267863pt;}
.y4{bottom:132.328135pt;}
.y151{bottom:138.267731pt;}
.y8d{bottom:139.438670pt;}
.y10e{bottom:140.616262pt;}
.y9a{bottom:142.267731pt;}
.y3{bottom:142.994802pt;}
.y76{bottom:146.267731pt;}
.y65{bottom:146.267863pt;}
.y150{bottom:150.267731pt;}
.y10d{bottom:152.616262pt;}
.y8c{bottom:152.772003pt;}
.y2{bottom:153.661469pt;}
.y99{bottom:154.267731pt;}
.y71{bottom:162.267731pt;}
.y64{bottom:162.267863pt;}
.y10c{bottom:164.616262pt;}
.y8b{bottom:168.330933pt;}
.y10b{bottom:176.616272pt;}
.y70{bottom:178.267741pt;}
.y63{bottom:178.267863pt;}
.y8a{bottom:181.664266pt;}
.y10a{bottom:188.616272pt;}
.y98{bottom:190.267741pt;}
.y17{bottom:194.005066pt;}
.y6f{bottom:194.267741pt;}
.y62{bottom:194.267863pt;}
.y14f{bottom:194.767741pt;}
.y89{bottom:197.223328pt;}
.y109{bottom:200.616272pt;}
.y97{bottom:202.267741pt;}
.y16{bottom:206.005066pt;}
.y14e{bottom:206.767741pt;}
.y6e{bottom:210.267741pt;}
.y61{bottom:210.267863pt;}
.y88{bottom:210.556661pt;}
.y108{bottom:212.616272pt;}
.y15{bottom:214.005066pt;}
.y96{bottom:214.267741pt;}
.y14d{bottom:218.767741pt;}
.y87{bottom:223.889994pt;}
.y107{bottom:224.616272pt;}
.y6d{bottom:226.267741pt;}
.y60{bottom:226.267863pt;}
.y14{bottom:230.005066pt;}
.y14c{bottom:230.767741pt;}
.ycb{bottom:232.577861pt;}
.y106{bottom:236.616272pt;}
.y13{bottom:238.005066pt;}
.y95{bottom:238.267741pt;}
.y86{bottom:239.449076pt;}
.y1c{bottom:242.005066pt;}
.y6c{bottom:242.267741pt;}
.y5f{bottom:242.267863pt;}
.y14b{bottom:242.767741pt;}
.yca{bottom:245.911194pt;}
.y105{bottom:248.616272pt;}
.y12{bottom:250.005066pt;}
.y85{bottom:252.782410pt;}
.y1b{bottom:254.005066pt;}
.y14a{bottom:254.767741pt;}
.y6b{bottom:258.267741pt;}
.y5e{bottom:258.267863pt;}
.y104{bottom:260.616272pt;}
.yc9{bottom:261.470276pt;}
.y11{bottom:262.005066pt;}
.y94{bottom:262.267741pt;}
.y1a{bottom:266.005066pt;}
.y84{bottom:266.115743pt;}
.y149{bottom:266.767741pt;}
.y103{bottom:272.616272pt;}
.y5d{bottom:274.267741pt;}
.yc8{bottom:274.803609pt;}
.y10{bottom:278.005066pt;}
.y148{bottom:278.767741pt;}
.y83{bottom:281.674805pt;}
.y102{bottom:284.616272pt;}
.yf{bottom:286.005066pt;}
.y93{bottom:286.267741pt;}
.yc7{bottom:288.136943pt;}
.y19{bottom:290.005066pt;}
.y5c{bottom:290.267741pt;}
.y147{bottom:290.767741pt;}
.y82{bottom:295.008138pt;}
.y101{bottom:296.616272pt;}
.ye{bottom:298.005066pt;}
.y92{bottom:298.267741pt;}
.y146{bottom:302.767741pt;}
.yc6{bottom:303.696004pt;}
.y5b{bottom:306.267741pt;}
.y100{bottom:308.616272pt;}
.yd{bottom:310.005066pt;}
.y81{bottom:310.567200pt;}
.y18{bottom:314.005066pt;}
.y145{bottom:314.767741pt;}
.yc5{bottom:317.029338pt;}
.yff{bottom:320.616272pt;}
.y5a{bottom:322.267741pt;}
.y80{bottom:323.900533pt;}
.y144{bottom:326.767741pt;}
.yc4{bottom:330.362671pt;}
.yfe{bottom:332.616272pt;}
.y59{bottom:338.267741pt;}
.y143{bottom:338.767741pt;}
.y7f{bottom:339.459595pt;}
.yfd{bottom:344.616252pt;}
.yc3{bottom:345.921753pt;}
.y142{bottom:350.767741pt;}
.y7e{bottom:352.792928pt;}
.y58{bottom:354.267741pt;}
.yfc{bottom:356.616252pt;}
.yc2{bottom:359.255086pt;}
.y141{bottom:362.767741pt;}
.y7d{bottom:366.126261pt;}
.yfb{bottom:368.616252pt;}
.y57{bottom:370.267741pt;}
.yc1{bottom:372.588420pt;}
.y140{bottom:374.767741pt;}
.yfa{bottom:380.616252pt;}
.y7c{bottom:381.685343pt;}
.y56{bottom:386.267741pt;}
.y13f{bottom:386.767741pt;}
.yc0{bottom:388.147461pt;}
.yf9{bottom:392.616252pt;}
.y7b{bottom:395.018677pt;}
.y13e{bottom:398.767741pt;}
.y55{bottom:402.267741pt;}
.ybf{bottom:403.706543pt;}
.yf8{bottom:404.616252pt;}
.y7a{bottom:410.577718pt;}
.y13d{bottom:410.767741pt;}
.yf7{bottom:416.616252pt;}
.ybe{bottom:417.039876pt;}
.y54{bottom:418.267741pt;}
.y13c{bottom:422.767741pt;}
.y79{bottom:423.911051pt;}
.yf6{bottom:428.616252pt;}
.ybd{bottom:432.698933pt;}
.y53{bottom:434.267741pt;}
.y13b{bottom:434.767741pt;}
.y2d{bottom:437.648153pt;}
.y78{bottom:439.570150pt;}
.yf5{bottom:440.616252pt;}
.y13a{bottom:446.767741pt;}
.ybc{bottom:448.258016pt;}
.y52{bottom:450.267741pt;}
.yf4{bottom:452.616252pt;}
.y77{bottom:455.129191pt;}
.y2c{bottom:457.648153pt;}
.y139{bottom:458.767741pt;}
.yf3{bottom:464.616252pt;}
.y51{bottom:466.267741pt;}
.y138{bottom:470.767741pt;}
.y2b{bottom:473.648153pt;}
.yf2{bottom:476.616252pt;}
.ybb{bottom:482.238647pt;}
.y50{bottom:482.267741pt;}
.y137{bottom:482.767741pt;}
.yf1{bottom:488.616252pt;}
.y2a{bottom:489.648153pt;}
.y136{bottom:494.767741pt;}
.yba{bottom:495.571981pt;}
.y4f{bottom:498.267741pt;}
.yf0{bottom:500.616252pt;}
.y29{bottom:505.648153pt;}
.y135{bottom:506.767741pt;}
.yb9{bottom:508.905314pt;}
.yef{bottom:512.616252pt;}
.y4e{bottom:514.267741pt;}
.y134{bottom:518.767741pt;}
.y28{bottom:521.648153pt;}
.yb8{bottom:524.464274pt;}
.yee{bottom:524.616252pt;}
.y4d{bottom:530.267741pt;}
.y133{bottom:530.767741pt;}
.yed{bottom:536.616252pt;}
.y27{bottom:537.648153pt;}
.yb7{bottom:537.797607pt;}
.y132{bottom:542.767741pt;}
.y4c{bottom:546.267741pt;}
.yec{bottom:548.616252pt;}
.yb6{bottom:553.356649pt;}
.y26{bottom:553.648153pt;}
.y131{bottom:554.767741pt;}
.yeb{bottom:560.616252pt;}
.y4b{bottom:562.267741pt;}
.yb5{bottom:566.689982pt;}
.y130{bottom:566.767741pt;}
.y25{bottom:569.648153pt;}
.yea{bottom:572.616252pt;}
.y4a{bottom:578.267741pt;}
.y12f{bottom:578.767741pt;}
.yb4{bottom:580.023315pt;}
.ye9{bottom:584.616252pt;}
.y24{bottom:585.648153pt;}
.y12e{bottom:590.767741pt;}
.y49{bottom:594.267741pt;}
.yb3{bottom:595.582397pt;}
.ye8{bottom:596.616252pt;}
.y23{bottom:601.648153pt;}
.y12d{bottom:602.767741pt;}
.ye7{bottom:608.616252pt;}
.yb2{bottom:608.915731pt;}
.y48{bottom:610.267741pt;}
.y12c{bottom:614.767741pt;}
.y22{bottom:617.648153pt;}
.ye6{bottom:620.616252pt;}
.yb1{bottom:624.474813pt;}
.y47{bottom:626.267741pt;}
.y12b{bottom:626.767741pt;}
.ye5{bottom:632.616252pt;}
.y21{bottom:633.648153pt;}
.yb0{bottom:637.808146pt;}
.y12a{bottom:638.767741pt;}
.y46{bottom:642.267741pt;}
.yd3{bottom:648.915731pt;}
.y20{bottom:649.648153pt;}
.y129{bottom:650.767741pt;}
.yaf{bottom:653.367188pt;}
.y45{bottom:658.267741pt;}
.yd2{bottom:662.249064pt;}
.y128{bottom:662.767741pt;}
.y1f{bottom:665.648153pt;}
.yae{bottom:666.700521pt;}
.y44{bottom:674.267741pt;}
.y127{bottom:674.767741pt;}
.yd1{bottom:677.808146pt;}
.yad{bottom:680.033854pt;}
.y1e{bottom:681.648153pt;}
.y126{bottom:686.767741pt;}
.y43{bottom:690.267741pt;}
.yd0{bottom:691.141439pt;}
.ye4{bottom:693.949626pt;}
.yac{bottom:695.592936pt;}
.y1d{bottom:697.648112pt;}
.y125{bottom:698.767741pt;}
.y42{bottom:706.267741pt;}
.ycf{bottom:706.700521pt;}
.yab{bottom:708.926270pt;}
.y124{bottom:710.767741pt;}
.yce{bottom:720.033854pt;}
.ye3{bottom:721.067708pt;}
.yaa{bottom:722.259603pt;}
.y41{bottom:722.267741pt;}
.y123{bottom:722.767741pt;}
.ye2{bottom:733.067708pt;}
.y122{bottom:734.767741pt;}
.ya9{bottom:735.592936pt;}
.y40{bottom:738.267741pt;}
.ye1{bottom:745.067708pt;}
.y121{bottom:746.767741pt;}
.ya8{bottom:748.926270pt;}
.y32{bottom:749.614827pt;}
.y3f{bottom:754.267741pt;}
.ye0{bottom:757.067708pt;}
.y120{bottom:758.767741pt;}
.ya7{bottom:764.485352pt;}
.y31{bottom:768.281494pt;}
.ydf{bottom:769.067708pt;}
.y3e{bottom:770.267741pt;}
.y11f{bottom:770.767741pt;}
.ya6{bottom:777.818685pt;}
.yde{bottom:781.067708pt;}
.y11e{bottom:782.767741pt;}
.y3d{bottom:786.267741pt;}
.y30{bottom:786.948161pt;}
.ya5{bottom:791.152018pt;}
.ydd{bottom:793.067708pt;}
.y11d{bottom:794.767741pt;}
.y3c{bottom:802.267741pt;}
.ya4{bottom:804.485352pt;}
.ydc{bottom:805.067708pt;}
.ycd{bottom:806.711100pt;}
.y11c{bottom:806.767741pt;}
.ydb{bottom:817.067708pt;}
.y3b{bottom:818.267741pt;}
.y11b{bottom:818.767741pt;}
.ya3{bottom:820.044434pt;}
.yda{bottom:829.067708pt;}
.y11a{bottom:830.767741pt;}
.y2f{bottom:832.281494pt;}
.ya2{bottom:833.377767pt;}
.y3a{bottom:834.267741pt;}
.yd9{bottom:841.067708pt;}
.y119{bottom:842.767741pt;}
.ya1{bottom:846.711100pt;}
.ycc{bottom:848.936768pt;}
.y39{bottom:850.267741pt;}
.y118{bottom:854.767741pt;}
.ya0{bottom:862.270101pt;}
.yd8{bottom:865.067708pt;}
.y38{bottom:866.267741pt;}
.y117{bottom:866.767741pt;}
.y2e{bottom:866.948161pt;}
.y9f{bottom:875.603434pt;}
.yd7{bottom:877.067708pt;}
.y116{bottom:878.767741pt;}
.y37{bottom:882.267741pt;}
.y9e{bottom:888.936768pt;}
.y115{bottom:890.767741pt;}
.y36{bottom:898.267741pt;}
.yd6{bottom:901.067708pt;}
.y9d{bottom:902.270101pt;}
.y114{bottom:902.767741pt;}
.yd5{bottom:913.067708pt;}
.y6a{bottom:914.267741pt;}
.y35{bottom:914.267904pt;}
.y113{bottom:914.767741pt;}
.y9c{bottom:917.929199pt;}
.y1{bottom:921.267741pt;}
.y112{bottom:926.767741pt;}
.y69{bottom:930.267741pt;}
.y34{bottom:930.267904pt;}
.y9b{bottom:933.488118pt;}
.yd4{bottom:937.067708pt;}
.y111{bottom:938.767741pt;}
.yc{bottom:980.542562pt;}
.yb{bottom:990.267741pt;}
.ya{bottom:1003.601074pt;}
.y33{bottom:1003.934408pt;}
.h9{height:26.180000pt;}
.h4{height:34.906667pt;}
.h3{height:36.922667pt;}
.h8{height:37.400000pt;}
.h16{height:38.080000pt;}
.h15{height:38.880000pt;}
.h14{height:39.893333pt;}
.h5{height:40.661333pt;}
.h13{height:41.472000pt;}
.h12{height:47.472000pt;}
.h10{height:47.692799pt;}
.h11{height:48.555733pt;}
.hf{height:49.653333pt;}
.hb{height:49.866667pt;}
.hc{height:51.840000pt;}
.ha{height:54.329067pt;}
.he{height:61.863804pt;}
.h7{height:63.111253pt;}
.h2{height:70.130237pt;}
.h6{height:103.762295pt;}
.hd{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x6{left:84.257202pt;}
.x8{left:86.257333pt;}
.xe{left:95.590535pt;}
.xa{left:102.257202pt;}
.x2{left:240.944804pt;}
.xc{left:339.341593pt;}
.x5{left:406.708659pt;}
.x9{left:416.965983pt;}
.xf{left:426.299194pt;}
.xb{left:432.965861pt;}
.x4{left:658.911214pt;}
.x7{left:667.531982pt;}
.xd{left:670.050252pt;}
}




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