
    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_935f539aadc3081c9885456f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_6920a17dd4f20ba5a56ba651.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_ad7969893469e2e9670bee97.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_174ca2253b368bee2c5e808f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_ca44bd6245516e4a56081827.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_a0a9afa0abeec5b459f5eddb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_11be04bcf8dac9c15b88b0a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b0ee762543fd85e1bbab5e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_e239a929114d69214355e0e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8a4a6e0683efbd5e416c553b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_c8592f9e00b5b34853f1110e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_e27ad69e554ffd22df27a72f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;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_86f6220a6cfdf6d6c0aff240.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_dc1e6a8e8e042b2992c33849.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a4861c472f5622a0028c174c.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_752d84dbe1f0365a2f7637dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e27a5e1211e3bac3897cecb6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e261895c8b23cd882a120652.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5c7914df528e654314716157.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.239258;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;}
.m3{transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);}
.m1{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);}
.m2{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-21.653880px;}
.v4{vertical-align:-16.849200px;}
.v2{vertical-align:-8.964840px;}
.v9{vertical-align:-6.642180px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.766380px;}
.v5{vertical-align:16.849200px;}
.va{vertical-align:19.115640px;}
.v7{vertical-align:20.629680px;}
.v1{vertical-align:21.653880px;}
.v8{vertical-align:36.557820px;}
.vb{vertical-align:55.024200px;}
.v6{vertical-align:72.843600px;}
.ls14{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.002820px;}
.lsd{letter-spacing:0.002892px;}
.ls2c{letter-spacing:0.006326px;}
.ls2e{letter-spacing:0.010995px;}
.ls8{letter-spacing:0.013335px;}
.ls17{letter-spacing:0.018103px;}
.ls4{letter-spacing:0.020443px;}
.ls2a{letter-spacing:0.022503px;}
.ls40{letter-spacing:0.062160px;}
.ls9{letter-spacing:2.973296px;}
.ls39{letter-spacing:2.975636px;}
.ls13{letter-spacing:2.984286px;}
.ls11{letter-spacing:3.001478px;}
.ls12{letter-spacing:3.012414px;}
.ls38{letter-spacing:3.027236px;}
.ls5{letter-spacing:3.029576px;}
.ls29{letter-spacing:3.060827px;}
.lsa{letter-spacing:3.081116px;}
.ls33{letter-spacing:3.137396px;}
.ls34{letter-spacing:4.565220px;}
.ls35{letter-spacing:4.578756px;}
.ls1c{letter-spacing:8.328975px;}
.ls1b{letter-spacing:8.760456px;}
.ls41{letter-spacing:9.908940px;}
.ls30{letter-spacing:9.951036px;}
.ls1a{letter-spacing:10.140780px;}
.ls2{letter-spacing:10.279765px;}
.ls24{letter-spacing:12.964736px;}
.ls37{letter-spacing:13.018616px;}
.ls36{letter-spacing:13.180316px;}
.ls21{letter-spacing:13.271736px;}
.ls3b{letter-spacing:13.812996px;}
.ls0{letter-spacing:15.428807px;}
.ls6{letter-spacing:15.944016px;}
.ls1e{letter-spacing:16.564596px;}
.ls1d{letter-spacing:16.593276px;}
.ls3f{letter-spacing:16.620996px;}
.ls28{letter-spacing:16.877822px;}
.ls1{letter-spacing:17.981236px;}
.lsb{letter-spacing:18.754176px;}
.ls2b{letter-spacing:19.551150px;}
.ls25{letter-spacing:22.655462px;}
.ls3d{letter-spacing:22.953776px;}
.ls2d{letter-spacing:23.082515px;}
.ls27{letter-spacing:23.628062px;}
.ls20{letter-spacing:24.629576px;}
.ls3a{letter-spacing:25.438136px;}
.ls16{letter-spacing:25.508743px;}
.ls19{letter-spacing:26.033456px;}
.ls26{letter-spacing:26.498327px;}
.ls18{letter-spacing:27.922496px;}
.ls10{letter-spacing:28.252935px;}
.ls3e{letter-spacing:29.002976px;}
.ls3c{letter-spacing:29.889420px;}
.ls15{letter-spacing:33.871335px;}
.ls2f{letter-spacing:36.978996px;}
.ls32{letter-spacing:37.032396px;}
.ls22{letter-spacing:130.848476px;}
.lsc{letter-spacing:293.340735px;}
.ls7{letter-spacing:315.381163px;}
.lse{letter-spacing:477.120062px;}
.lsf{letter-spacing:481.543475px;}
.ls3{letter-spacing:487.521059px;}
.ls42{letter-spacing:1027.796316px;}
.ls23{letter-spacing:1099.508316px;}
.ls31{letter-spacing:1148.766875px;}
.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;}
}
.ws100{word-spacing:-14.148840px;}
.wsfa{word-spacing:-14.040000px;}
.ws1d{word-spacing:-11.716068px;}
.ws88{word-spacing:-10.042334px;}
.ws3{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.059776px;}
.ws29{word-spacing:-0.047821px;}
.ws2d{word-spacing:0.000000px;}
.ws28{word-spacing:4.929380px;}
.ws2c{word-spacing:4.943317px;}
.ws2b{word-spacing:4.974640px;}
.ws2f{word-spacing:6.092234px;}
.ws40{word-spacing:6.133240px;}
.wsca{word-spacing:6.147347px;}
.wsb7{word-spacing:6.212742px;}
.ws8c{word-spacing:6.963140px;}
.wsf1{word-spacing:7.861423px;}
.ws93{word-spacing:7.881036px;}
.ws91{word-spacing:7.955731px;}
.ws89{word-spacing:8.219833px;}
.ws86{word-spacing:8.296824px;}
.ws83{word-spacing:9.757232px;}
.ws102{word-spacing:9.758858px;}
.wsf2{word-spacing:9.805594px;}
.ws8d{word-spacing:9.821501px;}
.ws19{word-spacing:9.850700px;}
.wsed{word-spacing:9.850939px;}
.ws4a{word-spacing:9.851238px;}
.ws64{word-spacing:9.851365px;}
.wsf3{word-spacing:9.853270px;}
.wsa8{word-spacing:9.903781px;}
.ws9e{word-spacing:9.904677px;}
.wsd8{word-spacing:9.905395px;}
.ws59{word-spacing:9.929425px;}
.ws55{word-spacing:9.957101px;}
.ws9b{word-spacing:9.957699px;}
.wsbb{word-spacing:9.958356px;}
.wsc2{word-spacing:9.958416px;}
.wse5{word-spacing:9.958595px;}
.ws74{word-spacing:9.958715px;}
.wsc4{word-spacing:9.958894px;}
.wscf{word-spacing:9.959014px;}
.ws75{word-spacing:9.959193px;}
.ws92{word-spacing:10.004678px;}
.ws94{word-spacing:10.350084px;}
.ws2a{word-spacing:11.326493px;}
.ws6{word-spacing:12.705466px;}
.ws125{word-spacing:13.197669px;}
.wsfd{word-spacing:13.494396px;}
.ws106{word-spacing:13.603128px;}
.wsfc{word-spacing:13.901230px;}
.wsae{word-spacing:14.142187px;}
.ws105{word-spacing:14.329106px;}
.ws30{word-spacing:14.417803px;}
.ws10d{word-spacing:15.154969px;}
.ws8a{word-spacing:15.184207px;}
.ws87{word-spacing:15.238866px;}
.ws85{word-spacing:15.238914px;}
.wscd{word-spacing:15.276314px;}
.ws96{word-spacing:15.330172px;}
.wsab{word-spacing:15.571307px;}
.ws34{word-spacing:15.786740px;}
.ws62{word-spacing:15.816627px;}
.wse3{word-spacing:15.869111px;}
.ws97{word-spacing:16.005878px;}
.ws44{word-spacing:16.193813px;}
.ws6e{word-spacing:16.194411px;}
.ws16{word-spacing:16.311907px;}
.ws70{word-spacing:16.325798px;}
.ws6b{word-spacing:16.410919px;}
.ws121{word-spacing:16.436862px;}
.ws50{word-spacing:16.439372px;}
.ws104{word-spacing:16.518276px;}
.ws81{word-spacing:16.518874px;}
.wsc1{word-spacing:16.591980px;}
.wsbd{word-spacing:16.592279px;}
.ws10a{word-spacing:16.626650px;}
.wsc0{word-spacing:16.626710px;}
.ws45{word-spacing:16.708901px;}
.ws26{word-spacing:16.838180px;}
.ws22{word-spacing:16.867973px;}
.wsd6{word-spacing:16.871193px;}
.ws27{word-spacing:16.881219px;}
.ws24{word-spacing:16.887244px;}
.ws23{word-spacing:16.888392px;}
.ws25{word-spacing:16.921197px;}
.wsee{word-spacing:16.978849px;}
.ws31{word-spacing:17.004194px;}
.ws66{word-spacing:17.024059px;}
.ws51{word-spacing:17.044722px;}
.ws48{word-spacing:17.243537px;}
.wsbf{word-spacing:17.247482px;}
.wsbe{word-spacing:17.301400px;}
.ws12e{word-spacing:17.745100px;}
.ws42{word-spacing:17.748941px;}
.wsaf{word-spacing:17.869031px;}
.ws122{word-spacing:17.965635px;}
.wsf5{word-spacing:18.030187px;}
.ws20{word-spacing:18.227518px;}
.wscc{word-spacing:18.329006px;}
.wse0{word-spacing:18.354172px;}
.ws130{word-spacing:18.382027px;}
.ws7f{word-spacing:18.396041px;}
.ws3e{word-spacing:18.454410px;}
.ws124{word-spacing:18.598834px;}
.ws116{word-spacing:18.678934px;}
.ws73{word-spacing:18.731238px;}
.ws46{word-spacing:18.732134px;}
.ws119{word-spacing:18.864239px;}
.wsa3{word-spacing:18.947865px;}
.ws118{word-spacing:18.978492px;}
.wsde{word-spacing:19.009396px;}
.wse2{word-spacing:19.057016px;}
.ws117{word-spacing:19.104786px;}
.ws12{word-spacing:19.116627px;}
.wsad{word-spacing:19.218769px;}
.ws8b{word-spacing:19.252620px;}
.ws47{word-spacing:19.291517px;}
.ws67{word-spacing:19.374827px;}
.wse7{word-spacing:19.398259px;}
.ws15{word-spacing:19.439202px;}
.ws84{word-spacing:19.450575px;}
.wsec{word-spacing:19.450623px;}
.wsac{word-spacing:19.480894px;}
.wsa6{word-spacing:19.504469px;}
.ws98{word-spacing:19.516525px;}
.ws12f{word-spacing:19.572224px;}
.ws11e{word-spacing:19.622735px;}
.ws123{word-spacing:19.662904px;}
.ws114{word-spacing:19.678147px;}
.ws58{word-spacing:19.702137px;}
.ws11f{word-spacing:19.703988px;}
.ws112{word-spacing:19.704329px;}
.wsb1{word-spacing:19.709056px;}
.ws11d{word-spacing:19.785803px;}
.ws135{word-spacing:19.802501px;}
.wsc{word-spacing:19.810554px;}
.wse{word-spacing:19.811148px;}
.ws126{word-spacing:19.811268px;}
.ws11b{word-spacing:19.826176px;}
.wsf0{word-spacing:19.831173px;}
.wsce{word-spacing:19.835716px;}
.ws9f{word-spacing:19.836732px;}
.ws10c{word-spacing:19.839422px;}
.wsb{word-spacing:19.839661px;}
.ws1a{word-spacing:19.839960px;}
.wsfe{word-spacing:19.840259px;}
.wsd7{word-spacing:19.840558px;}
.wsdb{word-spacing:19.841395px;}
.ws1f{word-spacing:19.852453px;}
.ws6c{word-spacing:19.852513px;}
.wsc9{word-spacing:19.852991px;}
.ws90{word-spacing:19.865185px;}
.ws1c{word-spacing:19.865604px;}
.ws68{word-spacing:19.865664px;}
.ws1b{word-spacing:19.865783px;}
.ws10{word-spacing:19.865903px;}
.ws52{word-spacing:19.866082px;}
.ws132{word-spacing:19.866740px;}
.wsb2{word-spacing:19.867098px;}
.ws8f{word-spacing:19.883918px;}
.wsa5{word-spacing:19.884213px;}
.ws71{word-spacing:19.887302px;}
.wsda{word-spacing:19.889693px;}
.ws3f{word-spacing:19.890650px;}
.ws13a{word-spacing:19.893101px;}
.ws12c{word-spacing:19.893579px;}
.ws129{word-spacing:19.901230px;}
.ws43{word-spacing:19.906311px;}
.wsa4{word-spacing:19.920179px;}
.wsd5{word-spacing:19.920358px;}
.wsb4{word-spacing:19.920538px;}
.wsa{word-spacing:19.944986px;}
.ws137{word-spacing:19.946899px;}
.ws110{word-spacing:19.947018px;}
.ws4b{word-spacing:19.948393px;}
.wsa9{word-spacing:20.057245px;}
.ws11a{word-spacing:20.101479px;}
.wse4{word-spacing:20.109788px;}
.ws3c{word-spacing:20.110087px;}
.ws111{word-spacing:20.164124px;}
.wse1{word-spacing:20.189649px;}
.wsa1{word-spacing:20.286007px;}
.ws57{word-spacing:20.299218px;}
.wsc6{word-spacing:20.372443px;}
.ws9d{word-spacing:20.461210px;}
.wsbc{word-spacing:20.487571px;}
.ws36{word-spacing:20.515128px;}
.wsd4{word-spacing:20.541071px;}
.ws7d{word-spacing:20.541923px;}
.ws39{word-spacing:20.571329px;}
.ws4c{word-spacing:20.677121px;}
.wsc3{word-spacing:20.750107px;}
.ws9c{word-spacing:20.783462px;}
.ws3d{word-spacing:20.837858px;}
.wsfb{word-spacing:20.856072px;}
.ws10b{word-spacing:20.867148px;}
.wsb8{word-spacing:20.892194px;}
.wsc7{word-spacing:20.920588px;}
.ws12d{word-spacing:20.966017px;}
.ws3a{word-spacing:20.987835px;}
.ws69{word-spacing:21.107387px;}
.ws77{word-spacing:21.161723px;}
.ws18{word-spacing:21.169300px;}
.ws11{word-spacing:21.244334px;}
.wsd{word-spacing:21.259080px;}
.ws8{word-spacing:21.276852px;}
.ws4{word-spacing:21.283307px;}
.ws12b{word-spacing:21.291796px;}
.ws11c{word-spacing:21.299088px;}
.ws9{word-spacing:21.299268px;}
.ws7{word-spacing:21.304229px;}
.wsf{word-spacing:21.336329px;}
.ws136{word-spacing:21.336747px;}
.wse9{word-spacing:21.343621px;}
.ws120{word-spacing:21.353903px;}
.wsc5{word-spacing:21.431850px;}
.wsba{word-spacing:21.461439px;}
.ws10e{word-spacing:21.505494px;}
.ws78{word-spacing:21.539148px;}
.wsef{word-spacing:21.567601px;}
.ws32{word-spacing:21.567900px;}
.wsb9{word-spacing:21.569454px;}
.ws76{word-spacing:21.595397px;}
.ws72{word-spacing:21.863671px;}
.wsa2{word-spacing:21.864807px;}
.wsf8{word-spacing:21.918725px;}
.wsea{word-spacing:21.972642px;}
.wsd3{word-spacing:22.053519px;}
.wsb3{word-spacing:22.123517px;}
.ws80{word-spacing:22.133200px;}
.ws8e{word-spacing:22.134396px;}
.ws7e{word-spacing:22.178673px;}
.ws6a{word-spacing:22.242231px;}
.ws4e{word-spacing:22.270744px;}
.ws63{word-spacing:22.302448px;}
.ws7a{word-spacing:22.404045px;}
.wseb{word-spacing:22.422438px;}
.ws56{word-spacing:22.565619px;}
.ws13{word-spacing:22.571337px;}
.ws41{word-spacing:22.673215px;}
.ws103{word-spacing:22.800215px;}
.ws10f{word-spacing:22.848598px;}
.wsb6{word-spacing:22.917938px;}
.ws109{word-spacing:22.943462px;}
.ws5e{word-spacing:22.971796px;}
.ws95{word-spacing:22.991282px;}
.ws127{word-spacing:23.363387px;}
.ws7c{word-spacing:23.364523px;}
.ws7b{word-spacing:23.375701px;}
.ws79{word-spacing:23.384107px;}
.ws13b{word-spacing:23.512928px;}
.ws108{word-spacing:23.674640px;}
.ws101{word-spacing:23.717708px;}
.ws33{word-spacing:23.782774px;}
.wsf6{word-spacing:24.053678px;}
.ws6f{word-spacing:24.066470px;}
.ws4d{word-spacing:24.187038px;}
.wsf7{word-spacing:24.240538px;}
.wsdf{word-spacing:24.322670px;}
.ws13d{word-spacing:24.428891px;}
.wsd2{word-spacing:24.429788px;}
.wsb0{word-spacing:24.457046px;}
.ws128{word-spacing:24.468164px;}
.ws138{word-spacing:24.565121px;}
.ws4f{word-spacing:24.591362px;}
.wsc8{word-spacing:24.637210px;}
.ws54{word-spacing:24.714859px;}
.ws35{word-spacing:24.767282px;}
.ws5d{word-spacing:24.809484px;}
.ws5c{word-spacing:24.838098px;}
.ws5b{word-spacing:24.888926px;}
.ws38{word-spacing:25.036812px;}
.wsd0{word-spacing:25.287272px;}
.ws107{word-spacing:25.340891px;}
.ws5a{word-spacing:25.481245px;}
.wsaa{word-spacing:25.559193px;}
.ws9a{word-spacing:25.560209px;}
.wsdc{word-spacing:25.887422px;}
.ws17{word-spacing:25.897685px;}
.wsdd{word-spacing:25.914859px;}
.ws131{word-spacing:25.981928px;}
.wse8{word-spacing:25.995258px;}
.ws82{word-spacing:26.092769px;}
.ws12a{word-spacing:26.366286px;}
.ws115{word-spacing:26.481474px;}
.wscb{word-spacing:26.527143px;}
.wse6{word-spacing:26.633430px;}
.ws3b{word-spacing:26.698221px;}
.wsb5{word-spacing:26.796329px;}
.wsa0{word-spacing:26.796472px;}
.ws6d{word-spacing:26.808021px;}
.ws49{word-spacing:26.935916px;}
.wsd9{word-spacing:26.993454px;}
.ws113{word-spacing:27.346550px;}
.ws99{word-spacing:27.372373px;}
.wsd1{word-spacing:27.425215px;}
.ws133{word-spacing:27.454505px;}
.ws37{word-spacing:28.006416px;}
.ws53{word-spacing:28.289036px;}
.wsa7{word-spacing:28.831023px;}
.ws14{word-spacing:28.837331px;}
.ws134{word-spacing:30.207123px;}
.ws60{word-spacing:32.339742px;}
.ws61{word-spacing:32.345151px;}
.ws65{word-spacing:34.258610px;}
.ws5f{word-spacing:36.015351px;}
.ws13c{word-spacing:37.607790px;}
.ws1{word-spacing:38.506081px;}
.ws0{word-spacing:38.560413px;}
.ws2{word-spacing:38.586340px;}
.ws139{word-spacing:40.360826px;}
.ws1e{word-spacing:63.015782px;}
.ws2e{word-spacing:80.598654px;}
.wsf9{word-spacing:98.997600px;}
.wsf4{word-spacing:110.840623px;}
.wsff{word-spacing:246.712558px;}
.ws21{word-spacing:479.451154px;}
._e{margin-left:-29.147644px;}
._6{margin-left:-27.960026px;}
._24{margin-left:-25.950595px;}
._0{margin-left:-9.527873px;}
._1a{margin-left:-6.769310px;}
._5{margin-left:-5.149132px;}
._2{margin-left:-3.240827px;}
._3{margin-left:-2.165503px;}
._a{margin-left:-1.015010px;}
._4{width:1.596389px;}
._1{width:3.367900px;}
._2b{width:4.697608px;}
._1b{width:10.005945px;}
._22{width:13.605949px;}
._10{width:15.659498px;}
._1e{width:17.700452px;}
._18{width:18.885036px;}
._7{width:20.192873px;}
._1f{width:21.607425px;}
._12{width:22.641847px;}
._17{width:23.892214px;}
._11{width:25.458020px;}
._16{width:26.509353px;}
._9{width:27.763944px;}
._d{width:29.226167px;}
._23{width:30.358258px;}
._13{width:31.894280px;}
._8{width:33.364721px;}
._1c{width:34.818126px;}
._20{width:36.628661px;}
._14{width:38.631262px;}
._27{width:39.836118px;}
._1d{width:41.127002px;}
._b{width:42.605205px;}
._25{width:45.920904px;}
._28{width:47.024839px;}
._2a{width:48.384023px;}
._15{width:51.829058px;}
._29{width:53.229250px;}
._f{width:68.741005px;}
._21{width:80.202998px;}
._19{width:81.333763px;}
._2d{width:131.015040px;}
._2c{width:145.445040px;}
._c{width:388.882783px;}
._26{width:1108.835197px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865480px;}
.fs3{font-size:41.843100px;}
.fs8{font-size:46.800000px;}
.fsb{font-size:47.160000px;}
.fs6{font-size:47.820660px;}
.fs4{font-size:53.798280px;}
.fs7{font-size:56.160000px;}
.fs9{font-size:56.592000px;}
.fsa{font-size:56.595360px;}
.fs2{font-size:59.775840px;}
.fs1{font-size:71.730600px;}
.fs0{font-size:103.293000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:5.557500px;}
.y10c{bottom:5.599500px;}
.ye9{bottom:21.255000px;}
.y102{bottom:21.418500px;}
.yea{bottom:32.467500px;}
.y103{bottom:32.718000px;}
.yf7{bottom:33.442500px;}
.y10e{bottom:33.700500px;}
.y5b{bottom:34.774875px;}
.yd2{bottom:34.775025px;}
.y146{bottom:34.775385px;}
.ya5{bottom:34.775625px;}
.y88{bottom:34.775820px;}
.y26{bottom:34.775970px;}
.y117{bottom:34.775985px;}
.ye7{bottom:34.776075px;}
.y77{bottom:34.776210px;}
.y9a{bottom:34.776225px;}
.y5a{bottom:48.976830px;}
.yd1{bottom:48.976980px;}
.y145{bottom:48.977340px;}
.ya4{bottom:48.977580px;}
.y87{bottom:48.977775px;}
.y25{bottom:48.977925px;}
.y116{bottom:48.977940px;}
.ye6{bottom:48.978030px;}
.y76{bottom:48.978165px;}
.y99{bottom:48.978180px;}
.yeb{bottom:62.400000px;}
.y59{bottom:63.165300px;}
.yd0{bottom:63.165450px;}
.y144{bottom:63.165810px;}
.ya3{bottom:63.166050px;}
.y86{bottom:63.166245px;}
.y24{bottom:63.166395px;}
.y115{bottom:63.166410px;}
.ye5{bottom:63.166500px;}
.y75{bottom:63.166635px;}
.y98{bottom:63.166650px;}
.y104{bottom:70.347000px;}
.yec{bottom:92.235000px;}
.y105{bottom:107.977500px;}
.y74{bottom:108.000285px;}
.y85{bottom:108.647895px;}
.y97{bottom:110.983800px;}
.ycf{bottom:111.914250px;}
.y23{bottom:112.225695px;}
.ya2{bottom:115.289850px;}
.y58{bottom:118.029600px;}
.y114{bottom:120.932760px;}
.yed{bottom:122.070000px;}
.ye4{bottom:125.064045px;}
.y73{bottom:125.928285px;}
.y84{bottom:126.589245px;}
.y22{bottom:127.426665px;}
.y96{bottom:128.925150px;}
.yce{bottom:129.855600px;}
.ya1{bottom:133.231200px;}
.y113{bottom:135.135300px;}
.y57{bottom:135.970950px;}
.y21{bottom:142.127835px;}
.y72{bottom:143.869635px;}
.y83{bottom:144.517245px;}
.y106{bottom:145.606500px;}
.ycd{bottom:147.783600px;}
.ya0{bottom:151.159200px;}
.yee{bottom:152.002500px;}
.y56{bottom:153.898950px;}
.yf6{bottom:155.805000px;}
.y20{bottom:156.843075px;}
.y10d{bottom:157.003500px;}
.ye3{bottom:157.936245px;}
.y71{bottom:161.798085px;}
.y82{bottom:162.445245px;}
.y101{bottom:165.250500px;}
.ycc{bottom:165.711600px;}
.y9f{bottom:169.087200px;}
.y95{bottom:169.209000px;}
.y1f{bottom:171.544245px;}
.y55{bottom:171.826950px;}
.ye2{bottom:175.864245px;}
.y70{bottom:179.726085px;}
.yef{bottom:181.837500px;}
.y107{bottom:183.237000px;}
.y1e{bottom:186.246000px;}
.y9e{bottom:187.028550px;}
.y143{bottom:189.674460px;}
.y54{bottom:189.768300px;}
.ye1{bottom:193.805595px;}
.y81{bottom:195.331545px;}
.ycb{bottom:195.600900px;}
.y6f{bottom:197.667435px;}
.y9d{bottom:204.956550px;}
.y53{bottom:207.696750px;}
.yf0{bottom:211.672500px;}
.ye0{bottom:211.733595px;}
.y142{bottom:213.029415px;}
.y6e{bottom:215.595435px;}
.y108{bottom:220.866000px;}
.yca{bottom:225.489600px;}
.y141{bottom:225.530385px;}
.y52{bottom:225.624750px;}
.y80{bottom:230.121045px;}
.y6d{bottom:233.523435px;}
.yf1{bottom:241.605000px;}
.yc9{bottom:243.430950px;}
.y51{bottom:243.566100px;}
.y9c{bottom:245.902500px;}
.y140{bottom:248.885805px;}
.y6c{bottom:251.464785px;}
.ydf{bottom:252.679545px;}
.y109{bottom:258.496500px;}
.y13f{bottom:261.400260px;}
.y50{bottom:261.494100px;}
.y7f{bottom:262.993245px;}
.yde{bottom:266.881500px;}
.y6b{bottom:269.392785px;}
.yf2{bottom:271.440000px;}
.yc8{bottom:273.320250px;}
.y4f{bottom:279.422100px;}
.yfb{bottom:280.800000px;}
.y112{bottom:282.960000px;}
.y13e{bottom:284.755215px;}
.y6a{bottom:287.334135px;}
.yc7{bottom:291.248250px;}
.y10a{bottom:296.125500px;}
.y13d{bottom:297.269670px;}
.y4e{bottom:297.363450px;}
.y7e{bottom:297.796245px;}
.yfa{bottom:297.862500px;}
.y111{bottom:300.154500px;}
.yf3{bottom:301.275000px;}
.y69{bottom:305.262585px;}
.y1d{bottom:312.066465px;}
.yf9{bottom:315.022500px;}
.y4d{bottom:315.291450px;}
.y7d{bottom:315.724695px;}
.y110{bottom:317.446500px;}
.y13c{bottom:320.624625px;}
.yc6{bottom:321.137550px;}
.y68{bottom:323.190585px;}
.yf4{bottom:331.110000px;}
.yf8{bottom:332.182500px;}
.y1c{bottom:332.991465px;}
.y13b{bottom:333.125595px;}
.y4c{bottom:333.219450px;}
.y10b{bottom:333.657000px;}
.y10f{bottom:334.738500px;}
.yc5{bottom:339.065550px;}
.y67{bottom:341.131935px;}
.y13a{bottom:351.066945px;}
.y4b{bottom:351.161400px;}
.y1b{bottom:353.916465px;}
.y66{bottom:359.059935px;}
.yc4{bottom:368.954250px;}
.y4a{bottom:369.089400px;}
.y7c{bottom:370.858545px;}
.y139{bottom:374.422485px;}
.y1a{bottom:374.827965px;}
.y7b{bottom:385.060500px;}
.yc3{bottom:386.882250px;}
.y138{bottom:386.936940px;}
.y49{bottom:387.017400px;}
.y65{bottom:391.783935px;}
.y19{bottom:395.752965px;}
.y48{bottom:404.958750px;}
.y137{bottom:410.291895px;}
.y18{bottom:416.677965px;}
.yc2{bottom:416.771550px;}
.y136{bottom:422.792865px;}
.y47{bottom:422.886750px;}
.y64{bottom:435.820635px;}
.y17{bottom:437.602965px;}
.y46{bottom:440.828100px;}
.y135{bottom:446.147685px;}
.yc1{bottom:446.660850px;}
.y63{bottom:453.749085px;}
.y16{bottom:458.514465px;}
.y134{bottom:458.662140px;}
.y45{bottom:458.756100px;}
.yc0{bottom:464.602200px;}
.y62{bottom:471.690435px;}
.y133{bottom:482.017095px;}
.ybf{bottom:482.530200px;}
.y61{bottom:489.618435px;}
.y15{bottom:490.360815px;}
.y44{bottom:491.480100px;}
.y132{bottom:494.531550px;}
.ybe{bottom:500.458200px;}
.y131{bottom:512.459550px;}
.y60{bottom:517.941465px;}
.ybd{bottom:518.399550px;}
.y5f{bottom:521.923845px;}
.y14{bottom:533.790465px;}
.y43{bottom:534.923250px;}
.y100{bottom:535.774845px;}
.y130{bottom:535.814955px;}
.ydd{bottom:548.275845px;}
.ybc{bottom:548.288850px;}
.y12f{bottom:548.329410px;}
.y13{bottom:550.233015px;}
.y42{bottom:552.864600px;}
.yff{bottom:553.716195px;}
.y5e{bottom:557.239395px;}
.ydc{bottom:566.203845px;}
.y12{bottom:566.676165px;}
.y41{bottom:570.792600px;}
.yfe{bottom:571.644195px;}
.y12e{bottom:571.684365px;}
.ybb{bottom:578.177550px;}
.y94{bottom:582.727545px;}
.y11{bottom:583.105815px;}
.ydb{bottom:584.131845px;}
.y12d{bottom:584.185335px;}
.y40{bottom:588.720600px;}
.yba{bottom:596.105550px;}
.y93{bottom:596.929500px;}
.y10{bottom:599.548965px;}
.yda{bottom:602.073195px;}
.y3f{bottom:606.662550px;}
.y12c{bottom:607.540155px;}
.y5d{bottom:609.781545px;}
.yfd{bottom:611.928045px;}
.yb9{bottom:614.033550px;}
.yf{bottom:615.991515px;}
.y12b{bottom:620.054610px;}
.y5c{bottom:623.983500px;}
.y3e{bottom:624.590550px;}
.yfc{bottom:626.130000px;}
.yb8{bottom:631.975500px;}
.ye{bottom:632.421165px;}
.y9b{bottom:637.294500px;}
.yd9{bottom:639.279045px;}
.y3d{bottom:642.518550px;}
.y12a{bottom:643.410150px;}
.yd8{bottom:653.481000px;}
.y129{bottom:655.924605px;}
.ye8{bottom:656.238000px;}
.yb7{bottom:659.555550px;}
.y3c{bottom:660.459900px;}
.y128{bottom:673.852605px;}
.y3b{bottom:678.387900px;}
.yd{bottom:682.074165px;}
.y3a{bottom:696.315900px;}
.y127{bottom:697.207425px;}
.yb6{bottom:698.395050px;}
.yc{bottom:702.999210px;}
.y126{bottom:709.721880px;}
.yb5{bottom:716.337000px;}
.y39{bottom:723.910050px;}
.y125{bottom:727.649880px;}
.yb4{bottom:734.265000px;}
.yb{bottom:744.835710px;}
.y124{bottom:751.004700px;}
.yb3{bottom:752.193000px;}
.y38{bottom:762.749550px;}
.ya{bottom:765.760755px;}
.yb2{bottom:770.134350px;}
.y123{bottom:778.315200px;}
.y7a{bottom:779.814075px;}
.y37{bottom:780.677550px;}
.yb1{bottom:788.062350px;}
.y79{bottom:794.002545px;}
.y36{bottom:798.618900px;}
.yb0{bottom:805.990350px;}
.y9{bottom:807.610755px;}
.y78{bottom:808.204500px;}
.y35{bottom:816.546900px;}
.y122{bottom:821.758350px;}
.yaf{bottom:823.931700px;}
.y8{bottom:828.522300px;}
.y34{bottom:834.475350px;}
.yae{bottom:841.859700px;}
.y33{bottom:852.416700px;}
.y121{bottom:854.482350px;}
.yad{bottom:859.788150px;}
.y7{bottom:861.921300px;}
.y32{bottom:870.344700px;}
.y92{bottom:872.423850px;}
.yac{bottom:877.729500px;}
.y6{bottom:879.849300px;}
.y31{bottom:888.272700px;}
.y91{bottom:890.351850px;}
.yab{bottom:895.657200px;}
.y5{bottom:897.790650px;}
.y120{bottom:897.925500px;}
.y30{bottom:906.214050px;}
.y90{bottom:908.293200px;}
.yaa{bottom:913.585200px;}
.y11f{bottom:915.866850px;}
.y2f{bottom:924.142050px;}
.y8f{bottom:926.221200px;}
.y4{bottom:930.663450px;}
.y11e{bottom:933.794850px;}
.yd7{bottom:935.968200px;}
.ya9{bottom:941.179350px;}
.y2e{bottom:942.070050px;}
.y11d{bottom:951.722850px;}
.yd6{bottom:953.896200px;}
.y8e{bottom:958.945200px;}
.y2d{bottom:960.012000px;}
.y11c{bottom:969.664200px;}
.yd5{bottom:971.824650px;}
.y2c{bottom:977.940000px;}
.y3{bottom:978.480000px;}
.ya8{bottom:980.018850px;}
.y11b{bottom:987.592200px;}
.yd4{bottom:989.766000px;}
.y2b{bottom:995.881350px;}
.ya7{bottom:997.946850px;}
.y8d{bottom:1002.388350px;}
.y11a{bottom:1005.520200px;}
.y2{bottom:1011.352800px;}
.y2a{bottom:1013.809350px;}
.yd3{bottom:1017.346050px;}
.y8c{bottom:1020.329700px;}
.y119{bottom:1023.462150px;}
.ya6{bottom:1030.684350px;}
.y29{bottom:1031.737350px;}
.y8b{bottom:1038.257700px;}
.y118{bottom:1041.390150px;}
.y1{bottom:1044.238500px;}
.y8a{bottom:1056.186150px;}
.y28{bottom:1059.331500px;}
.y89{bottom:1074.127500px;}
.y27{bottom:1092.055500px;}
.ha{height:26.899110px;}
.h23{height:29.039111px;}
.hb{height:34.143951px;}
.h1e{height:34.257600px;}
.h22{height:34.521120px;}
.h10{height:35.865495px;}
.h6{height:40.348710px;}
.h1c{height:41.109120px;}
.h20{height:41.425344px;}
.hc{height:41.720117px;}
.hd{height:41.843088px;}
.h4{height:42.799501px;}
.h7{height:44.831880px;}
.h19{height:44.833080px;}
.h2{height:50.211420px;}
.h3{height:50.692991px;}
.h18{height:50.746931px;}
.h1d{height:52.019297px;}
.h21{height:52.422558px;}
.h14{height:53.036205px;}
.h5{height:53.090145px;}
.h1a{height:57.415234px;}
.he{height:59.899860px;}
.h9{height:59.951400px;}
.h8{height:60.598260px;}
.hf{height:60.600600px;}
.h13{height:60.762360px;}
.h17{height:63.893580px;}
.h15{height:63.947520px;}
.h16{height:63.949860px;}
.h12{height:65.596931px;}
.h1{height:72.305100px;}
.h11{height:75.234634px;}
.h1b{height:350.122500px;}
.h1f{height:352.816500px;}
.h0{height:1263.000000px;}
.w2{width:455.611500px;}
.w1{width:456.007500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2f{left:16.575000px;}
.x2d{left:26.032500px;}
.x2c{left:33.832500px;}
.x2b{left:41.145000px;}
.x30{left:43.387500px;}
.x32{left:97.500000px;}
.x18{left:108.000000px;}
.x13{left:123.228870px;}
.x10{left:124.576380px;}
.x19{left:130.411500px;}
.x15{left:136.822905px;}
.xe{left:145.352880px;}
.x2{left:148.769835px;}
.xa{left:160.825560px;}
.x1{left:161.838000px;}
.xd{left:166.088880px;}
.x11{left:170.476245px;}
.xc{left:180.533880px;}
.x33{left:185.899500px;}
.x28{left:189.864000px;}
.x8{left:193.211760px;}
.x2e{left:208.650000px;}
.x2a{left:231.519000px;}
.x5{left:238.747335px;}
.x7{left:245.240700px;}
.x3{left:288.346035px;}
.x1a{left:330.777945px;}
.xb{left:340.495560px;}
.x29{left:354.157200px;}
.x20{left:372.087000px;}
.x26{left:374.423025px;}
.x21{left:376.231335px;}
.x35{left:380.200500px;}
.x24{left:383.616360px;}
.x17{left:386.842500px;}
.x4{left:392.417835px;}
.x6{left:395.698200px;}
.xf{left:397.019880px;}
.x9{left:400.693260px;}
.x16{left:402.354045px;}
.x36{left:411.790500px;}
.x22{left:436.549215px;}
.x31{left:441.772500px;}
.x34{left:445.197087px;}
.x25{left:450.279150px;}
.x27{left:451.886250px;}
.x14{left:455.827905px;}
.x12{left:473.510775px;}
.x1c{left:631.221444px;}
.x1d{left:683.129094px;}
.x1b{left:698.612979px;}
.x1e{left:741.300309px;}
.x23{left:790.006455px;}
.x1f{left:791.372244px;}
@media print{
.vc{vertical-align:-19.247893pt;}
.v4{vertical-align:-14.977067pt;}
.v2{vertical-align:-7.968747pt;}
.v9{vertical-align:-5.904160pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.014560pt;}
.v5{vertical-align:14.977067pt;}
.va{vertical-align:16.991680pt;}
.v7{vertical-align:18.337493pt;}
.v1{vertical-align:19.247893pt;}
.v8{vertical-align:32.495840pt;}
.vb{vertical-align:48.910400pt;}
.v6{vertical-align:64.749867pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.002507pt;}
.lsd{letter-spacing:0.002570pt;}
.ls2c{letter-spacing:0.005623pt;}
.ls2e{letter-spacing:0.009773pt;}
.ls8{letter-spacing:0.011853pt;}
.ls17{letter-spacing:0.016092pt;}
.ls4{letter-spacing:0.018172pt;}
.ls2a{letter-spacing:0.020002pt;}
.ls40{letter-spacing:0.055253pt;}
.ls9{letter-spacing:2.642930pt;}
.ls39{letter-spacing:2.645010pt;}
.ls13{letter-spacing:2.652699pt;}
.ls11{letter-spacing:2.667981pt;}
.ls12{letter-spacing:2.677702pt;}
.ls38{letter-spacing:2.690877pt;}
.ls5{letter-spacing:2.692957pt;}
.ls29{letter-spacing:2.720735pt;}
.lsa{letter-spacing:2.738770pt;}
.ls33{letter-spacing:2.788797pt;}
.ls34{letter-spacing:4.057973pt;}
.ls35{letter-spacing:4.070006pt;}
.ls1c{letter-spacing:7.403533pt;}
.ls1b{letter-spacing:7.787072pt;}
.ls41{letter-spacing:8.807947pt;}
.ls30{letter-spacing:8.845366pt;}
.ls1a{letter-spacing:9.014027pt;}
.ls2{letter-spacing:9.137569pt;}
.ls24{letter-spacing:11.524210pt;}
.ls37{letter-spacing:11.572103pt;}
.ls36{letter-spacing:11.715837pt;}
.ls21{letter-spacing:11.797099pt;}
.ls3b{letter-spacing:12.278219pt;}
.ls0{letter-spacing:13.714495pt;}
.ls6{letter-spacing:14.172459pt;}
.ls1e{letter-spacing:14.724086pt;}
.ls1d{letter-spacing:14.749579pt;}
.ls3f{letter-spacing:14.774219pt;}
.ls28{letter-spacing:15.002509pt;}
.ls1{letter-spacing:15.983321pt;}
.lsb{letter-spacing:16.670379pt;}
.ls2b{letter-spacing:17.378800pt;}
.ls25{letter-spacing:20.138189pt;}
.ls3d{letter-spacing:20.403357pt;}
.ls2d{letter-spacing:20.517791pt;}
.ls27{letter-spacing:21.002722pt;}
.ls20{letter-spacing:21.892957pt;}
.ls3a{letter-spacing:22.611677pt;}
.ls16{letter-spacing:22.674438pt;}
.ls19{letter-spacing:23.140850pt;}
.ls26{letter-spacing:23.554068pt;}
.ls18{letter-spacing:24.819997pt;}
.ls10{letter-spacing:25.113720pt;}
.ls3e{letter-spacing:25.780423pt;}
.ls3c{letter-spacing:26.568373pt;}
.ls15{letter-spacing:30.107853pt;}
.ls2f{letter-spacing:32.870219pt;}
.ls32{letter-spacing:32.917686pt;}
.ls22{letter-spacing:116.309757pt;}
.lsc{letter-spacing:260.747320pt;}
.ls7{letter-spacing:280.338812pt;}
.lse{letter-spacing:424.106722pt;}
.lsf{letter-spacing:428.038644pt;}
.ls3{letter-spacing:433.352052pt;}
.ls42{letter-spacing:913.596726pt;}
.ls23{letter-spacing:977.340726pt;}
.ls31{letter-spacing:1021.126111pt;}
.ws100{word-spacing:-12.576747pt;}
.wsfa{word-spacing:-12.480000pt;}
.ws1d{word-spacing:-10.414283pt;}
.ws88{word-spacing:-8.926519pt;}
.ws3{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.053134pt;}
.ws29{word-spacing:-0.042507pt;}
.ws2d{word-spacing:0.000000pt;}
.ws28{word-spacing:4.381671pt;}
.ws2c{word-spacing:4.394060pt;}
.ws2b{word-spacing:4.421902pt;}
.ws2f{word-spacing:5.415319pt;}
.ws40{word-spacing:5.451769pt;}
.wsca{word-spacing:5.464309pt;}
.wsb7{word-spacing:5.522437pt;}
.ws8c{word-spacing:6.189458pt;}
.wsf1{word-spacing:6.987932pt;}
.ws93{word-spacing:7.005365pt;}
.ws91{word-spacing:7.071761pt;}
.ws89{word-spacing:7.306518pt;}
.ws86{word-spacing:7.374955pt;}
.ws83{word-spacing:8.673095pt;}
.ws102{word-spacing:8.674540pt;}
.wsf2{word-spacing:8.716083pt;}
.ws8d{word-spacing:8.730223pt;}
.ws19{word-spacing:8.756178pt;}
.wsed{word-spacing:8.756390pt;}
.ws4a{word-spacing:8.756656pt;}
.ws64{word-spacing:8.756769pt;}
.wsf3{word-spacing:8.758462pt;}
.wsa8{word-spacing:8.803361pt;}
.ws9e{word-spacing:8.804158pt;}
.wsd8{word-spacing:8.804795pt;}
.ws59{word-spacing:8.826155pt;}
.ws55{word-spacing:8.850756pt;}
.ws9b{word-spacing:8.851288pt;}
.wsbb{word-spacing:8.851872pt;}
.wsc2{word-spacing:8.851925pt;}
.wse5{word-spacing:8.852085pt;}
.ws74{word-spacing:8.852191pt;}
.wsc4{word-spacing:8.852350pt;}
.wscf{word-spacing:8.852457pt;}
.ws75{word-spacing:8.852616pt;}
.ws92{word-spacing:8.893047pt;}
.ws94{word-spacing:9.200075pt;}
.ws2a{word-spacing:10.067993pt;}
.ws6{word-spacing:11.293747pt;}
.ws125{word-spacing:11.731261pt;}
.wsfd{word-spacing:11.995019pt;}
.ws106{word-spacing:12.091669pt;}
.wsfc{word-spacing:12.356649pt;}
.wsae{word-spacing:12.570833pt;}
.ws105{word-spacing:12.736983pt;}
.ws30{word-spacing:12.815825pt;}
.ws10d{word-spacing:13.471083pt;}
.ws8a{word-spacing:13.497073pt;}
.ws87{word-spacing:13.545659pt;}
.ws85{word-spacing:13.545701pt;}
.wscd{word-spacing:13.578945pt;}
.ws96{word-spacing:13.626819pt;}
.wsab{word-spacing:13.841162pt;}
.ws34{word-spacing:14.032657pt;}
.ws62{word-spacing:14.059224pt;}
.wse3{word-spacing:14.105876pt;}
.ws97{word-spacing:14.227447pt;}
.ws44{word-spacing:14.394500pt;}
.ws6e{word-spacing:14.395032pt;}
.ws16{word-spacing:14.499473pt;}
.ws70{word-spacing:14.511821pt;}
.ws6b{word-spacing:14.587483pt;}
.ws121{word-spacing:14.610544pt;}
.ws50{word-spacing:14.612775pt;}
.ws104{word-spacing:14.682912pt;}
.ws81{word-spacing:14.683444pt;}
.wsc1{word-spacing:14.748427pt;}
.wsbd{word-spacing:14.748692pt;}
.ws10a{word-spacing:14.779244pt;}
.wsc0{word-spacing:14.779297pt;}
.ws45{word-spacing:14.852357pt;}
.ws26{word-spacing:14.967271pt;}
.ws22{word-spacing:14.993753pt;}
.wsd6{word-spacing:14.996616pt;}
.ws27{word-spacing:15.005528pt;}
.ws24{word-spacing:15.010884pt;}
.ws23{word-spacing:15.011904pt;}
.ws25{word-spacing:15.041064pt;}
.wsee{word-spacing:15.092310pt;}
.ws31{word-spacing:15.114839pt;}
.ws66{word-spacing:15.132497pt;}
.ws51{word-spacing:15.150864pt;}
.ws48{word-spacing:15.327588pt;}
.wsbf{word-spacing:15.331095pt;}
.wsbe{word-spacing:15.379022pt;}
.ws12e{word-spacing:15.773422pt;}
.ws42{word-spacing:15.776837pt;}
.wsaf{word-spacing:15.883583pt;}
.ws122{word-spacing:15.969454pt;}
.wsf5{word-spacing:16.026833pt;}
.ws20{word-spacing:16.202239pt;}
.wscc{word-spacing:16.292450pt;}
.wse0{word-spacing:16.314819pt;}
.ws130{word-spacing:16.339580pt;}
.ws7f{word-spacing:16.352036pt;}
.ws3e{word-spacing:16.403920pt;}
.ws124{word-spacing:16.532297pt;}
.ws116{word-spacing:16.603497pt;}
.ws73{word-spacing:16.649989pt;}
.ws46{word-spacing:16.650786pt;}
.ws119{word-spacing:16.768212pt;}
.wsa3{word-spacing:16.842547pt;}
.ws118{word-spacing:16.869770pt;}
.wsde{word-spacing:16.897241pt;}
.wse2{word-spacing:16.939570pt;}
.ws117{word-spacing:16.982032pt;}
.ws12{word-spacing:16.992557pt;}
.wsad{word-spacing:17.083351pt;}
.ws8b{word-spacing:17.113440pt;}
.ws47{word-spacing:17.148015pt;}
.ws67{word-spacing:17.222069pt;}
.wse7{word-spacing:17.242897pt;}
.ws15{word-spacing:17.279290pt;}
.ws84{word-spacing:17.289400pt;}
.wsec{word-spacing:17.289443pt;}
.wsac{word-spacing:17.316350pt;}
.wsa6{word-spacing:17.337306pt;}
.ws98{word-spacing:17.348022pt;}
.ws12f{word-spacing:17.397532pt;}
.ws11e{word-spacing:17.442431pt;}
.ws123{word-spacing:17.478137pt;}
.ws114{word-spacing:17.491686pt;}
.ws58{word-spacing:17.513011pt;}
.ws11f{word-spacing:17.514656pt;}
.ws112{word-spacing:17.514959pt;}
.wsb1{word-spacing:17.519161pt;}
.ws11d{word-spacing:17.587380pt;}
.ws135{word-spacing:17.602224pt;}
.wsc{word-spacing:17.609381pt;}
.wse{word-spacing:17.609909pt;}
.ws126{word-spacing:17.610016pt;}
.ws11b{word-spacing:17.623267pt;}
.wsf0{word-spacing:17.627709pt;}
.wsce{word-spacing:17.631747pt;}
.ws9f{word-spacing:17.632651pt;}
.ws10c{word-spacing:17.635042pt;}
.wsb{word-spacing:17.635254pt;}
.ws1a{word-spacing:17.635520pt;}
.wsfe{word-spacing:17.635786pt;}
.wsd7{word-spacing:17.636051pt;}
.wsdb{word-spacing:17.636795pt;}
.ws1f{word-spacing:17.646625pt;}
.ws6c{word-spacing:17.646678pt;}
.wsc9{word-spacing:17.647103pt;}
.ws90{word-spacing:17.657943pt;}
.ws1c{word-spacing:17.658314pt;}
.ws68{word-spacing:17.658368pt;}
.ws1b{word-spacing:17.658474pt;}
.ws10{word-spacing:17.658580pt;}
.ws52{word-spacing:17.658740pt;}
.ws132{word-spacing:17.659324pt;}
.wsb2{word-spacing:17.659643pt;}
.ws8f{word-spacing:17.674594pt;}
.wsa5{word-spacing:17.674856pt;}
.ws71{word-spacing:17.677602pt;}
.wsda{word-spacing:17.679728pt;}
.ws3f{word-spacing:17.680578pt;}
.ws13a{word-spacing:17.682756pt;}
.ws12c{word-spacing:17.683181pt;}
.ws129{word-spacing:17.689982pt;}
.ws43{word-spacing:17.694499pt;}
.wsa4{word-spacing:17.706826pt;}
.wsd5{word-spacing:17.706985pt;}
.wsb4{word-spacing:17.707145pt;}
.wsa{word-spacing:17.728877pt;}
.ws137{word-spacing:17.730577pt;}
.ws110{word-spacing:17.730683pt;}
.ws4b{word-spacing:17.731905pt;}
.wsa9{word-spacing:17.828662pt;}
.ws11a{word-spacing:17.867982pt;}
.wse4{word-spacing:17.875367pt;}
.ws3c{word-spacing:17.875633pt;}
.ws111{word-spacing:17.923666pt;}
.wse1{word-spacing:17.946354pt;}
.wsa1{word-spacing:18.032006pt;}
.ws57{word-spacing:18.043749pt;}
.wsc6{word-spacing:18.108838pt;}
.ws9d{word-spacing:18.187742pt;}
.wsbc{word-spacing:18.211175pt;}
.ws36{word-spacing:18.235669pt;}
.wsd4{word-spacing:18.258730pt;}
.ws7d{word-spacing:18.259487pt;}
.ws39{word-spacing:18.285626pt;}
.ws4c{word-spacing:18.379663pt;}
.wsc3{word-spacing:18.444539pt;}
.ws9c{word-spacing:18.474188pt;}
.ws3d{word-spacing:18.522540pt;}
.wsfb{word-spacing:18.538731pt;}
.ws10b{word-spacing:18.548576pt;}
.wsb8{word-spacing:18.570839pt;}
.wsc7{word-spacing:18.596078pt;}
.ws12d{word-spacing:18.636460pt;}
.ws3a{word-spacing:18.655854pt;}
.ws69{word-spacing:18.762122pt;}
.ws77{word-spacing:18.810421pt;}
.ws18{word-spacing:18.817156pt;}
.ws11{word-spacing:18.883852pt;}
.wsd{word-spacing:18.896960pt;}
.ws8{word-spacing:18.912757pt;}
.ws4{word-spacing:18.918495pt;}
.ws12b{word-spacing:18.926040pt;}
.ws11c{word-spacing:18.932523pt;}
.ws9{word-spacing:18.932682pt;}
.ws7{word-spacing:18.937092pt;}
.wsf{word-spacing:18.965625pt;}
.ws136{word-spacing:18.965997pt;}
.wse9{word-spacing:18.972108pt;}
.ws120{word-spacing:18.981247pt;}
.wsc5{word-spacing:19.050534pt;}
.wsba{word-spacing:19.076835pt;}
.ws10e{word-spacing:19.115995pt;}
.ws78{word-spacing:19.145909pt;}
.wsef{word-spacing:19.171201pt;}
.ws32{word-spacing:19.171467pt;}
.wsb9{word-spacing:19.172848pt;}
.ws76{word-spacing:19.195908pt;}
.ws72{word-spacing:19.434374pt;}
.wsa2{word-spacing:19.435384pt;}
.wsf8{word-spacing:19.483311pt;}
.wsea{word-spacing:19.531238pt;}
.wsd3{word-spacing:19.603128pt;}
.wsb3{word-spacing:19.665348pt;}
.ws80{word-spacing:19.673956pt;}
.ws8e{word-spacing:19.675018pt;}
.ws7e{word-spacing:19.714376pt;}
.ws6a{word-spacing:19.770872pt;}
.ws4e{word-spacing:19.796217pt;}
.ws63{word-spacing:19.824398pt;}
.ws7a{word-spacing:19.914706pt;}
.wseb{word-spacing:19.931056pt;}
.ws56{word-spacing:20.058328pt;}
.ws13{word-spacing:20.063411pt;}
.ws41{word-spacing:20.153969pt;}
.ws103{word-spacing:20.266857pt;}
.ws10f{word-spacing:20.309864pt;}
.wsb6{word-spacing:20.371500pt;}
.ws109{word-spacing:20.394188pt;}
.ws5e{word-spacing:20.419374pt;}
.ws95{word-spacing:20.436696pt;}
.ws127{word-spacing:20.767455pt;}
.ws7c{word-spacing:20.768465pt;}
.ws7b{word-spacing:20.778401pt;}
.ws79{word-spacing:20.785872pt;}
.ws13b{word-spacing:20.900380pt;}
.ws108{word-spacing:21.044124pt;}
.ws101{word-spacing:21.082407pt;}
.ws33{word-spacing:21.140244pt;}
.wsf6{word-spacing:21.381048pt;}
.ws6f{word-spacing:21.392418pt;}
.ws4d{word-spacing:21.499590pt;}
.wsf7{word-spacing:21.547145pt;}
.wsdf{word-spacing:21.620151pt;}
.ws13d{word-spacing:21.714570pt;}
.wsd2{word-spacing:21.715367pt;}
.wsb0{word-spacing:21.739596pt;}
.ws128{word-spacing:21.749479pt;}
.ws138{word-spacing:21.835663pt;}
.ws4f{word-spacing:21.858989pt;}
.wsc8{word-spacing:21.899742pt;}
.ws54{word-spacing:21.968764pt;}
.ws35{word-spacing:22.015362pt;}
.ws5d{word-spacing:22.052875pt;}
.ws5c{word-spacing:22.078309pt;}
.ws5b{word-spacing:22.123490pt;}
.ws38{word-spacing:22.254944pt;}
.wsd0{word-spacing:22.477576pt;}
.ws107{word-spacing:22.525237pt;}
.ws5a{word-spacing:22.649996pt;}
.wsaa{word-spacing:22.719282pt;}
.ws9a{word-spacing:22.720186pt;}
.wsdc{word-spacing:23.011042pt;}
.ws17{word-spacing:23.020164pt;}
.wsdd{word-spacing:23.035430pt;}
.ws131{word-spacing:23.095047pt;}
.wse8{word-spacing:23.106896pt;}
.ws82{word-spacing:23.193573pt;}
.ws12a{word-spacing:23.436699pt;}
.ws115{word-spacing:23.539088pt;}
.wscb{word-spacing:23.579683pt;}
.wse6{word-spacing:23.674160pt;}
.ws3b{word-spacing:23.731752pt;}
.wsb5{word-spacing:23.818959pt;}
.wsa0{word-spacing:23.819086pt;}
.ws6d{word-spacing:23.829352pt;}
.ws49{word-spacing:23.943037pt;}
.wsd9{word-spacing:23.994182pt;}
.ws113{word-spacing:24.308045pt;}
.ws99{word-spacing:24.330999pt;}
.wsd1{word-spacing:24.377969pt;}
.ws133{word-spacing:24.404005pt;}
.ws37{word-spacing:24.894592pt;}
.ws53{word-spacing:25.145810pt;}
.wsa7{word-spacing:25.627576pt;}
.ws14{word-spacing:25.633183pt;}
.ws134{word-spacing:26.850776pt;}
.ws60{word-spacing:28.746437pt;}
.ws61{word-spacing:28.751246pt;}
.ws65{word-spacing:30.452098pt;}
.ws5f{word-spacing:32.013646pt;}
.ws13c{word-spacing:33.429147pt;}
.ws1{word-spacing:34.227628pt;}
.ws0{word-spacing:34.275923pt;}
.ws2{word-spacing:34.298969pt;}
.ws139{word-spacing:35.876290pt;}
.ws1e{word-spacing:56.014029pt;}
.ws2e{word-spacing:71.643248pt;}
.wsf9{word-spacing:87.997867pt;}
.wsf4{word-spacing:98.524998pt;}
.wsff{word-spacing:219.300051pt;}
.ws21{word-spacing:426.178803pt;}
._e{margin-left:-25.909016pt;}
._6{margin-left:-24.853356pt;}
._24{margin-left:-23.067195pt;}
._0{margin-left:-8.469220pt;}
._1a{margin-left:-6.017164pt;}
._5{margin-left:-4.577006pt;}
._2{margin-left:-2.880735pt;}
._3{margin-left:-1.924892pt;}
._a{margin-left:-0.902231pt;}
._4{width:1.419012pt;}
._1{width:2.993689pt;}
._2b{width:4.175651pt;}
._1b{width:8.894174pt;}
._22{width:12.094177pt;}
._10{width:13.919554pt;}
._1e{width:15.733735pt;}
._18{width:16.786698pt;}
._7{width:17.949221pt;}
._1f{width:19.206600pt;}
._12{width:20.126086pt;}
._17{width:21.237523pt;}
._11{width:22.629351pt;}
._16{width:23.563869pt;}
._9{width:24.679062pt;}
._d{width:25.978815pt;}
._23{width:26.985118pt;}
._13{width:28.350472pt;}
._8{width:29.657530pt;}
._1c{width:30.949446pt;}
._20{width:32.558810pt;}
._14{width:34.338899pt;}
._27{width:35.409883pt;}
._1d{width:36.557335pt;}
._b{width:37.871293pt;}
._25{width:40.818581pt;}
._28{width:41.799857pt;}
._2a{width:43.008020pt;}
._15{width:46.070274pt;}
._29{width:47.314889pt;}
._f{width:61.103116pt;}
._21{width:71.291554pt;}
._19{width:72.296678pt;}
._2d{width:116.457813pt;}
._2c{width:129.284480pt;}
._c{width:345.673585pt;}
._26{width:985.631287pt;}
.fs5{font-size:31.880427pt;}
.fs3{font-size:37.193867pt;}
.fs8{font-size:41.600000pt;}
.fsb{font-size:41.920000pt;}
.fs6{font-size:42.507253pt;}
.fs4{font-size:47.820693pt;}
.fs7{font-size:49.920000pt;}
.fs9{font-size:50.304000pt;}
.fsa{font-size:50.306987pt;}
.fs2{font-size:53.134080pt;}
.fs1{font-size:63.760533pt;}
.fs0{font-size:91.816000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:4.940000pt;}
.y10c{bottom:4.977333pt;}
.ye9{bottom:18.893333pt;}
.y102{bottom:19.038667pt;}
.yea{bottom:28.860000pt;}
.y103{bottom:29.082667pt;}
.yf7{bottom:29.726667pt;}
.y10e{bottom:29.956000pt;}
.y5b{bottom:30.911000pt;}
.yd2{bottom:30.911133pt;}
.y146{bottom:30.911453pt;}
.ya5{bottom:30.911667pt;}
.y88{bottom:30.911840pt;}
.y26{bottom:30.911973pt;}
.y117{bottom:30.911987pt;}
.ye7{bottom:30.912067pt;}
.y77{bottom:30.912187pt;}
.y9a{bottom:30.912200pt;}
.y5a{bottom:43.534960pt;}
.yd1{bottom:43.535093pt;}
.y145{bottom:43.535413pt;}
.ya4{bottom:43.535627pt;}
.y87{bottom:43.535800pt;}
.y25{bottom:43.535933pt;}
.y116{bottom:43.535947pt;}
.ye6{bottom:43.536027pt;}
.y76{bottom:43.536147pt;}
.y99{bottom:43.536160pt;}
.yeb{bottom:55.466667pt;}
.y59{bottom:56.146933pt;}
.yd0{bottom:56.147067pt;}
.y144{bottom:56.147387pt;}
.ya3{bottom:56.147600pt;}
.y86{bottom:56.147773pt;}
.y24{bottom:56.147907pt;}
.y115{bottom:56.147920pt;}
.ye5{bottom:56.148000pt;}
.y75{bottom:56.148120pt;}
.y98{bottom:56.148133pt;}
.y104{bottom:62.530667pt;}
.yec{bottom:81.986667pt;}
.y105{bottom:95.980000pt;}
.y74{bottom:96.000253pt;}
.y85{bottom:96.575907pt;}
.y97{bottom:98.652267pt;}
.ycf{bottom:99.479333pt;}
.y23{bottom:99.756173pt;}
.ya2{bottom:102.479867pt;}
.y58{bottom:104.915200pt;}
.y114{bottom:107.495787pt;}
.yed{bottom:108.506667pt;}
.ye4{bottom:111.168040pt;}
.y73{bottom:111.936253pt;}
.y84{bottom:112.523773pt;}
.y22{bottom:113.268147pt;}
.y96{bottom:114.600133pt;}
.yce{bottom:115.427200pt;}
.ya1{bottom:118.427733pt;}
.y113{bottom:120.120267pt;}
.y57{bottom:120.863067pt;}
.y21{bottom:126.335853pt;}
.y72{bottom:127.884120pt;}
.y83{bottom:128.459773pt;}
.y106{bottom:129.428000pt;}
.ycd{bottom:131.363200pt;}
.ya0{bottom:134.363733pt;}
.yee{bottom:135.113333pt;}
.y56{bottom:136.799067pt;}
.yf6{bottom:138.493333pt;}
.y20{bottom:139.416067pt;}
.y10d{bottom:139.558667pt;}
.ye3{bottom:140.387773pt;}
.y71{bottom:143.820520pt;}
.y82{bottom:144.395773pt;}
.y101{bottom:146.889333pt;}
.ycc{bottom:147.299200pt;}
.y9f{bottom:150.299733pt;}
.y95{bottom:150.408000pt;}
.y1f{bottom:152.483773pt;}
.y55{bottom:152.735067pt;}
.ye2{bottom:156.323773pt;}
.y70{bottom:159.756520pt;}
.yef{bottom:161.633333pt;}
.y107{bottom:162.877333pt;}
.y1e{bottom:165.552000pt;}
.y9e{bottom:166.247600pt;}
.y143{bottom:168.599520pt;}
.y54{bottom:168.682933pt;}
.ye1{bottom:172.271640pt;}
.y81{bottom:173.628040pt;}
.ycb{bottom:173.867467pt;}
.y6f{bottom:175.704387pt;}
.y9d{bottom:182.183600pt;}
.y53{bottom:184.619333pt;}
.yf0{bottom:188.153333pt;}
.ye0{bottom:188.207640pt;}
.y142{bottom:189.359480pt;}
.y6e{bottom:191.640387pt;}
.y108{bottom:196.325333pt;}
.yca{bottom:200.435200pt;}
.y141{bottom:200.471453pt;}
.y52{bottom:200.555333pt;}
.y80{bottom:204.552040pt;}
.y6d{bottom:207.576387pt;}
.yf1{bottom:214.760000pt;}
.yc9{bottom:216.383067pt;}
.y51{bottom:216.503200pt;}
.y9c{bottom:218.580000pt;}
.y140{bottom:221.231827pt;}
.y6c{bottom:223.524253pt;}
.ydf{bottom:224.604040pt;}
.y109{bottom:229.774667pt;}
.y13f{bottom:232.355787pt;}
.y50{bottom:232.439200pt;}
.y7f{bottom:233.771773pt;}
.yde{bottom:237.228000pt;}
.y6b{bottom:239.460253pt;}
.yf2{bottom:241.280000pt;}
.yc8{bottom:242.951333pt;}
.y4f{bottom:248.375200pt;}
.yfb{bottom:249.600000pt;}
.y112{bottom:251.520000pt;}
.y13e{bottom:253.115747pt;}
.y6a{bottom:255.408120pt;}
.yc7{bottom:258.887333pt;}
.y10a{bottom:263.222667pt;}
.y13d{bottom:264.239707pt;}
.y4e{bottom:264.323067pt;}
.y7e{bottom:264.707773pt;}
.yfa{bottom:264.766667pt;}
.y111{bottom:266.804000pt;}
.yf3{bottom:267.800000pt;}
.y69{bottom:271.344520pt;}
.y1d{bottom:277.392413pt;}
.yf9{bottom:280.020000pt;}
.y4d{bottom:280.259067pt;}
.y7d{bottom:280.644173pt;}
.y110{bottom:282.174667pt;}
.y13c{bottom:284.999667pt;}
.yc6{bottom:285.455600pt;}
.y68{bottom:287.280520pt;}
.yf4{bottom:294.320000pt;}
.yf8{bottom:295.273333pt;}
.y1c{bottom:295.992413pt;}
.y13b{bottom:296.111640pt;}
.y4c{bottom:296.195067pt;}
.y10b{bottom:296.584000pt;}
.y10f{bottom:297.545333pt;}
.yc5{bottom:301.391600pt;}
.y67{bottom:303.228387pt;}
.y13a{bottom:312.059507pt;}
.y4b{bottom:312.143467pt;}
.y1b{bottom:314.592413pt;}
.y66{bottom:319.164387pt;}
.yc4{bottom:327.959333pt;}
.y4a{bottom:328.079467pt;}
.y7c{bottom:329.652040pt;}
.y139{bottom:332.819987pt;}
.y1a{bottom:333.180413pt;}
.y7b{bottom:342.276000pt;}
.yc3{bottom:343.895333pt;}
.y138{bottom:343.943947pt;}
.y49{bottom:344.015467pt;}
.y65{bottom:348.252387pt;}
.y19{bottom:351.780413pt;}
.y48{bottom:359.963333pt;}
.y137{bottom:364.703907pt;}
.y18{bottom:370.380413pt;}
.yc2{bottom:370.463600pt;}
.y136{bottom:375.815880pt;}
.y47{bottom:375.899333pt;}
.y64{bottom:387.396120pt;}
.y17{bottom:388.980413pt;}
.y46{bottom:391.847200pt;}
.y135{bottom:396.575720pt;}
.yc1{bottom:397.031867pt;}
.y63{bottom:403.332520pt;}
.y16{bottom:407.568413pt;}
.y134{bottom:407.699680pt;}
.y45{bottom:407.783200pt;}
.yc0{bottom:412.979733pt;}
.y62{bottom:419.280387pt;}
.y133{bottom:428.459640pt;}
.ybf{bottom:428.915733pt;}
.y61{bottom:435.216387pt;}
.y15{bottom:435.876280pt;}
.y44{bottom:436.871200pt;}
.y132{bottom:439.583600pt;}
.ybe{bottom:444.851733pt;}
.y131{bottom:455.519600pt;}
.y60{bottom:460.392413pt;}
.ybd{bottom:460.799600pt;}
.y5f{bottom:463.932307pt;}
.y14{bottom:474.480413pt;}
.y43{bottom:475.487333pt;}
.y100{bottom:476.244307pt;}
.y130{bottom:476.279960pt;}
.ydd{bottom:487.356307pt;}
.ybc{bottom:487.367867pt;}
.y12f{bottom:487.403920pt;}
.y13{bottom:489.096013pt;}
.y42{bottom:491.435200pt;}
.yff{bottom:492.192173pt;}
.y5e{bottom:495.323907pt;}
.ydc{bottom:503.292307pt;}
.y12{bottom:503.712147pt;}
.y41{bottom:507.371200pt;}
.yfe{bottom:508.128173pt;}
.y12e{bottom:508.163880pt;}
.ybb{bottom:513.935600pt;}
.y94{bottom:517.980040pt;}
.y11{bottom:518.316280pt;}
.ydb{bottom:519.228307pt;}
.y12d{bottom:519.275853pt;}
.y40{bottom:523.307200pt;}
.yba{bottom:529.871600pt;}
.y93{bottom:530.604000pt;}
.y10{bottom:532.932413pt;}
.yda{bottom:535.176173pt;}
.y3f{bottom:539.255600pt;}
.y12c{bottom:540.035693pt;}
.y5d{bottom:542.028040pt;}
.yfd{bottom:543.936040pt;}
.yb9{bottom:545.807600pt;}
.yf{bottom:547.548013pt;}
.y12b{bottom:551.159653pt;}
.y5c{bottom:554.652000pt;}
.y3e{bottom:555.191600pt;}
.yfc{bottom:556.560000pt;}
.yb8{bottom:561.756000pt;}
.ye{bottom:562.152147pt;}
.y9b{bottom:566.484000pt;}
.yd9{bottom:568.248040pt;}
.y3d{bottom:571.127600pt;}
.y12a{bottom:571.920133pt;}
.yd8{bottom:580.872000pt;}
.y129{bottom:583.044093pt;}
.ye8{bottom:583.322667pt;}
.yb7{bottom:586.271600pt;}
.y3c{bottom:587.075467pt;}
.y128{bottom:598.980093pt;}
.y3b{bottom:603.011467pt;}
.yd{bottom:606.288147pt;}
.y3a{bottom:618.947467pt;}
.y127{bottom:619.739933pt;}
.yb6{bottom:620.795600pt;}
.yc{bottom:624.888187pt;}
.y126{bottom:630.863893pt;}
.yb5{bottom:636.744000pt;}
.y39{bottom:643.475600pt;}
.y125{bottom:646.799893pt;}
.yb4{bottom:652.680000pt;}
.yb{bottom:662.076187pt;}
.y124{bottom:667.559733pt;}
.yb3{bottom:668.616000pt;}
.y38{bottom:677.999600pt;}
.ya{bottom:680.676227pt;}
.yb2{bottom:684.563867pt;}
.y123{bottom:691.835733pt;}
.y7a{bottom:693.168067pt;}
.y37{bottom:693.935600pt;}
.yb1{bottom:700.499867pt;}
.y79{bottom:705.780040pt;}
.y36{bottom:709.883467pt;}
.yb0{bottom:716.435867pt;}
.y9{bottom:717.876227pt;}
.y78{bottom:718.404000pt;}
.y35{bottom:725.819467pt;}
.y122{bottom:730.451867pt;}
.yaf{bottom:732.383733pt;}
.y8{bottom:736.464267pt;}
.y34{bottom:741.755867pt;}
.yae{bottom:748.319733pt;}
.y33{bottom:757.703733pt;}
.y121{bottom:759.539867pt;}
.yad{bottom:764.256133pt;}
.y7{bottom:766.152267pt;}
.y32{bottom:773.639733pt;}
.y92{bottom:775.487867pt;}
.yac{bottom:780.204000pt;}
.y6{bottom:782.088267pt;}
.y31{bottom:789.575733pt;}
.y91{bottom:791.423867pt;}
.yab{bottom:796.139733pt;}
.y5{bottom:798.036133pt;}
.y120{bottom:798.156000pt;}
.y30{bottom:805.523600pt;}
.y90{bottom:807.371733pt;}
.yaa{bottom:812.075733pt;}
.y11f{bottom:814.103867pt;}
.y2f{bottom:821.459600pt;}
.y8f{bottom:823.307733pt;}
.y4{bottom:827.256400pt;}
.y11e{bottom:830.039867pt;}
.yd7{bottom:831.971733pt;}
.ya9{bottom:836.603867pt;}
.y2e{bottom:837.395600pt;}
.y11d{bottom:845.975867pt;}
.yd6{bottom:847.907733pt;}
.y8e{bottom:852.395733pt;}
.y2d{bottom:853.344000pt;}
.y11c{bottom:861.923733pt;}
.yd5{bottom:863.844133pt;}
.y2c{bottom:869.280000pt;}
.y3{bottom:869.760000pt;}
.ya8{bottom:871.127867pt;}
.y11b{bottom:877.859733pt;}
.yd4{bottom:879.792000pt;}
.y2b{bottom:885.227867pt;}
.ya7{bottom:887.063867pt;}
.y8d{bottom:891.011867pt;}
.y11a{bottom:893.795733pt;}
.y2{bottom:898.980267pt;}
.y2a{bottom:901.163867pt;}
.yd3{bottom:904.307600pt;}
.y8c{bottom:906.959733pt;}
.y119{bottom:909.744133pt;}
.ya6{bottom:916.163867pt;}
.y29{bottom:917.099867pt;}
.y8b{bottom:922.895733pt;}
.y118{bottom:925.680133pt;}
.y1{bottom:928.212000pt;}
.y8a{bottom:938.832133pt;}
.y28{bottom:941.628000pt;}
.y89{bottom:954.780000pt;}
.y27{bottom:970.716000pt;}
.ha{height:23.910320pt;}
.h23{height:25.812543pt;}
.hb{height:30.350179pt;}
.h1e{height:30.451200pt;}
.h22{height:30.685440pt;}
.h10{height:31.880440pt;}
.h6{height:35.865520pt;}
.h1c{height:36.541440pt;}
.h20{height:36.822528pt;}
.hc{height:37.084549pt;}
.hd{height:37.193856pt;}
.h4{height:38.044001pt;}
.h7{height:39.850560pt;}
.h19{height:39.851627pt;}
.h2{height:44.632373pt;}
.h3{height:45.060437pt;}
.h18{height:45.108383pt;}
.h1d{height:46.239375pt;}
.h21{height:46.597829pt;}
.h14{height:47.143293pt;}
.h5{height:47.191240pt;}
.h1a{height:51.035763pt;}
.he{height:53.244320pt;}
.h9{height:53.290133pt;}
.h8{height:53.865120pt;}
.hf{height:53.867200pt;}
.h13{height:54.010987pt;}
.h17{height:56.794293pt;}
.h15{height:56.842240pt;}
.h16{height:56.844320pt;}
.h12{height:58.308383pt;}
.h1{height:64.271200pt;}
.h11{height:66.875230pt;}
.h1b{height:311.220000pt;}
.h1f{height:313.614667pt;}
.h0{height:1122.666667pt;}
.w2{width:404.988000pt;}
.w1{width:405.340000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2f{left:14.733333pt;}
.x2d{left:23.140000pt;}
.x2c{left:30.073333pt;}
.x2b{left:36.573333pt;}
.x30{left:38.566667pt;}
.x32{left:86.666667pt;}
.x18{left:96.000000pt;}
.x13{left:109.536773pt;}
.x10{left:110.734560pt;}
.x19{left:115.921333pt;}
.x15{left:121.620360pt;}
.xe{left:129.202560pt;}
.x2{left:132.239853pt;}
.xa{left:142.956053pt;}
.x1{left:143.856000pt;}
.xd{left:147.634560pt;}
.x11{left:151.534440pt;}
.xc{left:160.474560pt;}
.x33{left:165.244000pt;}
.x28{left:168.768000pt;}
.x8{left:171.743787pt;}
.x2e{left:185.466667pt;}
.x2a{left:205.794667pt;}
.x5{left:212.219853pt;}
.x7{left:217.991733pt;}
.x3{left:256.307587pt;}
.x1a{left:294.024840pt;}
.xb{left:302.662720pt;}
.x29{left:314.806400pt;}
.x20{left:330.744000pt;}
.x26{left:332.820467pt;}
.x21{left:334.427853pt;}
.x35{left:337.956000pt;}
.x24{left:340.992320pt;}
.x17{left:343.860000pt;}
.x4{left:348.815853pt;}
.x6{left:351.731733pt;}
.xf{left:352.906560pt;}
.x9{left:356.171787pt;}
.x16{left:357.648040pt;}
.x36{left:366.036000pt;}
.x22{left:388.043747pt;}
.x31{left:392.686667pt;}
.x34{left:395.730744pt;}
.x25{left:400.248133pt;}
.x27{left:401.676667pt;}
.x14{left:405.180360pt;}
.x12{left:420.898467pt;}
.x1c{left:561.085728pt;}
.x1d{left:607.225861pt;}
.x1b{left:620.989315pt;}
.x1e{left:658.933608pt;}
.x23{left:702.227960pt;}
.x1f{left:703.441995pt;}
}




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