
    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_cb273521764adcce3c40608d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_de1329e8bd636c61a8e9b052.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.017000;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_44d46d0f4dd2ad062bfdfe3d.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_31b7215fd39b33aaabcb0ab5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022000;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_f907f6112c01a1f26fb6df86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.022000;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_249d7054a8fb9be969f90a36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de1329e8bd636c61a8e9b052.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.017000;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_f8f3e01e0806c3bfbeec8da7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8531645dfc21ea8a1f9d67aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_8c510e9fa6adfad3e4a368fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6aa2406224e71f93577e5b27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_31b7215fd39b33aaabcb0ab5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022000;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_44d46d0f4dd2ad062bfdfe3d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c9558c89986f8ba4b2863433.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cdfdf3a3f538d83c5ba1423d.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e2a572ebe12dd770e41dbed2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_859a7c75fe76d72475653e8f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.986000px;}
.v1{vertical-align:25.200000px;}
.ls6{letter-spacing:-1.554000px;}
.ls2{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.486000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.858000px;}
.ls8{letter-spacing:1.776600px;}
.ls7{letter-spacing:6.300000px;}
.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;}
}
.ws0{word-spacing:-15.180000px;}
.wsb2{word-spacing:-13.794000px;}
.ws6c{word-spacing:-13.530000px;}
.ws34{word-spacing:-13.398000px;}
.wsb3{word-spacing:-11.232000px;}
.wsb4{word-spacing:-10.500000px;}
.ws88{word-spacing:-4.374000px;}
.ws92{word-spacing:-3.618000px;}
.ws59{word-spacing:-3.564000px;}
.ws62{word-spacing:-3.294000px;}
.ws7f{word-spacing:-3.132000px;}
.wsb7{word-spacing:-3.078000px;}
.ws28{word-spacing:-2.970000px;}
.ws9e{word-spacing:-2.862000px;}
.wsa{word-spacing:-2.832000px;}
.ws63{word-spacing:-2.754000px;}
.ws81{word-spacing:-2.646000px;}
.ws8c{word-spacing:-2.592000px;}
.ws6b{word-spacing:-2.430000px;}
.wscc{word-spacing:-2.352000px;}
.ws65{word-spacing:-2.322000px;}
.ws7b{word-spacing:-2.310000px;}
.wsa8{word-spacing:-2.268000px;}
.ws80{word-spacing:-2.106000px;}
.wsb{word-spacing:-2.016000px;}
.wsaf{word-spacing:-1.944000px;}
.wsb0{word-spacing:-1.932000px;}
.wse{word-spacing:-1.920000px;}
.ws4d{word-spacing:-1.890000px;}
.ws4b{word-spacing:-1.782000px;}
.ws77{word-spacing:-1.674000px;}
.wsde{word-spacing:-1.638000px;}
.ws23{word-spacing:-1.620000px;}
.ws4e{word-spacing:-1.566000px;}
.ws70{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.458000px;}
.ws3b{word-spacing:-1.350000px;}
.ws8e{word-spacing:-1.242000px;}
.ws7{word-spacing:-1.104000px;}
.ws33{word-spacing:-1.080000px;}
.wsd6{word-spacing:-0.882000px;}
.ws35{word-spacing:-0.756000px;}
.ws2b{word-spacing:-0.702000px;}
.ws5b{word-spacing:-0.648000px;}
.wsbd{word-spacing:-0.504000px;}
.wsb1{word-spacing:-0.420000px;}
.ws36{word-spacing:-0.378000px;}
.ws13{word-spacing:-0.270000px;}
.ws5c{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.192000px;}
.ws2{word-spacing:-0.144000px;}
.wsd4{word-spacing:-0.126000px;}
.ws8{word-spacing:-0.096000px;}
.ws24{word-spacing:-0.054000px;}
.wsc0{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws4a{word-spacing:0.054000px;}
.ws26{word-spacing:0.108000px;}
.ws89{word-spacing:0.324000px;}
.ws8d{word-spacing:0.378000px;}
.ws1a{word-spacing:0.432000px;}
.ws2c{word-spacing:0.528000px;}
.ws1e{word-spacing:0.540000px;}
.wsd5{word-spacing:0.630000px;}
.ws14{word-spacing:0.648000px;}
.ws6{word-spacing:0.672000px;}
.ws86{word-spacing:0.756000px;}
.ws6e{word-spacing:0.810000px;}
.ws5{word-spacing:0.816000px;}
.ws10{word-spacing:0.912000px;}
.wsf{word-spacing:0.960000px;}
.wsc4{word-spacing:1.008000px;}
.ws61{word-spacing:1.026000px;}
.wsd7{word-spacing:1.050000px;}
.ws69{word-spacing:1.080000px;}
.wsd8{word-spacing:1.134000px;}
.ws64{word-spacing:1.188000px;}
.wsc{word-spacing:1.200000px;}
.ws27{word-spacing:1.242000px;}
.ws9{word-spacing:1.248000px;}
.wsd9{word-spacing:1.260000px;}
.ws9f{word-spacing:1.350000px;}
.ws83{word-spacing:1.404000px;}
.ws7c{word-spacing:1.554000px;}
.ws4c{word-spacing:1.674000px;}
.wsc9{word-spacing:1.722000px;}
.ws75{word-spacing:1.728000px;}
.ws5e{word-spacing:1.782000px;}
.wsdb{word-spacing:1.806000px;}
.ws94{word-spacing:1.836000px;}
.wsce{word-spacing:1.974000px;}
.ws71{word-spacing:1.998000px;}
.ws1f{word-spacing:2.052000px;}
.ws57{word-spacing:2.106000px;}
.wsd3{word-spacing:2.142000px;}
.wsbe{word-spacing:2.184000px;}
.wsae{word-spacing:2.214000px;}
.wsc3{word-spacing:2.226000px;}
.ws22{word-spacing:2.268000px;}
.ws2a{word-spacing:2.322000px;}
.wsa2{word-spacing:2.376000px;}
.ws60{word-spacing:2.430000px;}
.ws72{word-spacing:2.484000px;}
.wsc1{word-spacing:2.520000px;}
.ws17{word-spacing:2.592000px;}
.ws1b{word-spacing:2.700000px;}
.ws7d{word-spacing:2.754000px;}
.ws9c{word-spacing:2.808000px;}
.ws38{word-spacing:2.898000px;}
.ws6f{word-spacing:2.916000px;}
.wsbb{word-spacing:2.940000px;}
.ws95{word-spacing:2.970000px;}
.wsbf{word-spacing:3.066000px;}
.ws25{word-spacing:3.078000px;}
.ws96{word-spacing:3.240000px;}
.ws4{word-spacing:3.312000px;}
.ws87{word-spacing:3.348000px;}
.ws68{word-spacing:3.402000px;}
.wsa1{word-spacing:3.618000px;}
.ws21{word-spacing:3.672000px;}
.wsba{word-spacing:3.864000px;}
.ws48{word-spacing:3.888000px;}
.ws6a{word-spacing:3.942000px;}
.ws12{word-spacing:4.050000px;}
.ws3d{word-spacing:4.158000px;}
.wsdd{word-spacing:4.200000px;}
.ws98{word-spacing:4.212000px;}
.wsbc{word-spacing:4.242000px;}
.ws1d{word-spacing:4.266000px;}
.wsc5{word-spacing:4.410000px;}
.wsa6{word-spacing:4.428000px;}
.ws84{word-spacing:4.482000px;}
.ws73{word-spacing:4.536000px;}
.wsb6{word-spacing:4.590000px;}
.wsac{word-spacing:4.968000px;}
.ws51{word-spacing:5.184000px;}
.ws5a{word-spacing:5.238000px;}
.wsab{word-spacing:5.292000px;}
.wscb{word-spacing:5.334000px;}
.ws58{word-spacing:5.400000px;}
.ws85{word-spacing:5.454000px;}
.ws19{word-spacing:5.562000px;}
.wscf{word-spacing:5.670000px;}
.wsca{word-spacing:5.712000px;}
.ws18{word-spacing:5.724000px;}
.wsc8{word-spacing:5.880000px;}
.ws1c{word-spacing:5.886000px;}
.wsad{word-spacing:5.940000px;}
.ws8f{word-spacing:5.994000px;}
.ws97{word-spacing:6.048000px;}
.wsd2{word-spacing:6.216000px;}
.wsc6{word-spacing:6.258000px;}
.ws5d{word-spacing:6.264000px;}
.wsd0{word-spacing:6.300000px;}
.ws29{word-spacing:6.372000px;}
.wsc2{word-spacing:6.468000px;}
.wsaa{word-spacing:6.480000px;}
.ws76{word-spacing:6.534000px;}
.ws78{word-spacing:6.588000px;}
.ws49{word-spacing:6.804000px;}
.wsb5{word-spacing:6.858000px;}
.ws67{word-spacing:7.020000px;}
.wsa9{word-spacing:7.128000px;}
.wsc7{word-spacing:7.140000px;}
.ws93{word-spacing:7.182000px;}
.ws47{word-spacing:7.344000px;}
.ws56{word-spacing:7.452000px;}
.ws52{word-spacing:7.560000px;}
.ws16{word-spacing:7.614000px;}
.ws53{word-spacing:7.776000px;}
.wsdc{word-spacing:7.896000px;}
.ws8b{word-spacing:8.046000px;}
.ws79{word-spacing:8.100000px;}
.ws55{word-spacing:8.262000px;}
.wsd{word-spacing:8.352000px;}
.ws39{word-spacing:8.370000px;}
.ws82{word-spacing:8.586000px;}
.ws3f{word-spacing:8.748000px;}
.ws3e{word-spacing:8.910000px;}
.ws66{word-spacing:9.126000px;}
.ws50{word-spacing:9.288000px;}
.ws37{word-spacing:9.324000px;}
.wscd{word-spacing:9.366000px;}
.wsb8{word-spacing:9.774000px;}
.ws44{word-spacing:10.206000px;}
.ws42{word-spacing:10.530000px;}
.ws5f{word-spacing:10.638000px;}
.wsa7{word-spacing:10.746000px;}
.ws45{word-spacing:10.854000px;}
.wsa4{word-spacing:11.016000px;}
.ws2e{word-spacing:11.448000px;}
.wsb9{word-spacing:11.550000px;}
.ws9a{word-spacing:11.556000px;}
.ws90{word-spacing:11.718000px;}
.ws2d{word-spacing:12.258000px;}
.ws2f{word-spacing:12.420000px;}
.ws7e{word-spacing:12.582000px;}
.wsda{word-spacing:12.936000px;}
.ws32{word-spacing:12.960000px;}
.ws54{word-spacing:13.284000px;}
.ws91{word-spacing:13.500000px;}
.ws20{word-spacing:13.554000px;}
.ws4f{word-spacing:13.608000px;}
.wsd1{word-spacing:14.112000px;}
.ws74{word-spacing:14.256000px;}
.ws7a{word-spacing:14.418000px;}
.ws15{word-spacing:14.526000px;}
.wsa3{word-spacing:14.634000px;}
.ws9d{word-spacing:14.742000px;}
.wsa5{word-spacing:14.796000px;}
.wsa0{word-spacing:15.444000px;}
.ws9b{word-spacing:16.092000px;}
.ws8a{word-spacing:16.362000px;}
.ws46{word-spacing:16.524000px;}
.ws43{word-spacing:16.956000px;}
.ws40{word-spacing:17.172000px;}
.ws3a{word-spacing:18.036000px;}
.ws30{word-spacing:20.358000px;}
.ws99{word-spacing:24.192000px;}
.ws3c{word-spacing:29.214000px;}
.ws31{word-spacing:43.740000px;}
.ws11{word-spacing:44.334000px;}
.ws6d{word-spacing:95.424000px;}
._7{margin-left:-10.578600px;}
._6{margin-left:-6.647400px;}
._1{margin-left:-4.560000px;}
._3{margin-left:-3.508800px;}
._0{margin-left:-1.929600px;}
._2{width:1.137600px;}
._4{width:2.767200px;}
._30{width:5.040000px;}
._31{width:6.969600px;}
._33{width:8.215200px;}
._32{width:13.700400px;}
._2f{width:26.040000px;}
._14{width:30.660000px;}
._21{width:115.791600px;}
._29{width:122.010000px;}
._2b{width:123.939600px;}
._20{width:136.836000px;}
._27{width:143.010000px;}
._17{width:147.336000px;}
._24{width:164.010000px;}
._26{width:171.864000px;}
._2d{width:173.586000px;}
._2e{width:180.306000px;}
._23{width:194.586000px;}
._19{width:198.618000px;}
._28{width:199.836000px;}
._15{width:200.970000px;}
._8{width:210.462000px;}
._18{width:219.618000px;}
._22{width:220.794000px;}
._25{width:222.306000px;}
._1a{width:231.336000px;}
._2a{width:239.382000px;}
._9{width:247.884000px;}
._1d{width:290.830800px;}
._1e{width:295.470000px;}
._2c{width:332.788800px;}
._1f{width:337.470000px;}
._16{width:349.188000px;}
._f{width:352.842000px;}
._1b{width:407.442000px;}
._a{width:411.138000px;}
._d{width:443.814000px;}
._12{width:454.272000px;}
._13{width:456.201600px;}
._c{width:475.272000px;}
._e{width:496.272000px;}
._10{width:544.090800px;}
._11{width:566.244000px;}
._b{width:587.244000px;}
._5{width:1298.506200px;}
._1c{width:1755.810000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:24.486000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:8.400000px;}
.y1{bottom:63.302250px;}
.y4c{bottom:71.697300px;}
.y5{bottom:71.702100px;}
.yaa{bottom:119.782800px;}
.y9c{bottom:122.953950px;}
.y20{bottom:124.800450px;}
.y50{bottom:124.808550px;}
.y13a{bottom:125.124900px;}
.y116{bottom:125.597400px;}
.y97{bottom:125.896200px;}
.y3a{bottom:126.096750px;}
.ya9{bottom:135.982800px;}
.y4f{bottom:137.408550px;}
.y9b{bottom:139.153950px;}
.y1f{bottom:139.200450px;}
.y194{bottom:139.208550px;}
.y139{bottom:141.324900px;}
.y115{bottom:141.797400px;}
.y96{bottom:142.096200px;}
.y39{bottom:142.296750px;}
.y4e{bottom:150.008550px;}
.ya8{bottom:152.182800px;}
.y9a{bottom:155.353950px;}
.y138{bottom:157.524900px;}
.y114{bottom:157.997400px;}
.y38{bottom:158.496750px;}
.y1e{bottom:162.108450px;}
.y4d{bottom:162.608550px;}
.y95{bottom:166.801200px;}
.ya7{bottom:168.382800px;}
.y99{bottom:171.553950px;}
.y137{bottom:173.724900px;}
.y113{bottom:174.197400px;}
.y1d{bottom:176.508450px;}
.y94{bottom:182.731200px;}
.y37{bottom:183.201750px;}
.y98{bottom:187.753950px;}
.y136{bottom:189.924900px;}
.y112{bottom:190.397400px;}
.ya6{bottom:193.086750px;}
.y93{bottom:198.661200px;}
.y36{bottom:199.185750px;}
.y1c{bottom:199.416450px;}
.y1b{bottom:213.816450px;}
.y92{bottom:214.591200px;}
.y135{bottom:214.629900px;}
.y111{bottom:215.102400px;}
.y35{bottom:215.169750px;}
.ya5{bottom:221.395950px;}
.y1a{bottom:228.216450px;}
.ye3{bottom:230.166150px;}
.y91{bottom:230.521200px;}
.y134{bottom:230.748900px;}
.y34{bottom:231.153750px;}
.y110{bottom:231.153900px;}
.ya4{bottom:237.595950px;}
.ye2{bottom:245.947650px;}
.y90{bottom:246.451200px;}
.y133{bottom:246.867900px;}
.y33{bottom:247.137750px;}
.y10f{bottom:247.205400px;}
.ya3{bottom:253.795950px;}
.ye1{bottom:261.729150px;}
.y8f{bottom:262.381200px;}
.y132{bottom:262.986900px;}
.y32{bottom:263.121750px;}
.y10e{bottom:263.256900px;}
.ya2{bottom:269.995950px;}
.ye0{bottom:277.510650px;}
.y8e{bottom:278.311200px;}
.y31{bottom:279.105750px;}
.y131{bottom:279.105900px;}
.y10d{bottom:279.308400px;}
.y4a{bottom:283.088850px;}
.ya1{bottom:286.195950px;}
.ydf{bottom:293.292150px;}
.y8d{bottom:294.241200px;}
.y130{bottom:295.224900px;}
.y10c{bottom:295.359900px;}
.y49{bottom:299.288850px;}
.y30{bottom:303.594750px;}
.yde{bottom:309.073650px;}
.y8c{bottom:310.171200px;}
.ya0{bottom:310.900950px;}
.y12f{bottom:311.343900px;}
.y10b{bottom:311.411400px;}
.y48{bottom:315.488850px;}
.y2f{bottom:319.578750px;}
.ydd{bottom:324.855150px;}
.y8b{bottom:326.101200px;}
.y9f{bottom:327.100950px;}
.y10a{bottom:327.462900px;}
.ydc{bottom:331.155150px;}
.y47{bottom:331.688850px;}
.y2e{bottom:335.562750px;}
.y8a{bottom:342.031200px;}
.y9e{bottom:343.300950px;}
.y109{bottom:343.514400px;}
.y12e{bottom:343.581900px;}
.y46{bottom:347.888850px;}
.y2d{bottom:351.546750px;}
.ye4{bottom:357.541650px;}
.y9d{bottom:359.500950px;}
.y108{bottom:359.565900px;}
.y45{bottom:364.088850px;}
.y89{bottom:366.466200px;}
.y2c{bottom:367.530750px;}
.y12d{bottom:368.205900px;}
.y107{bottom:375.617400px;}
.y44{bottom:380.288850px;}
.y88{bottom:382.396200px;}
.y2b{bottom:383.514750px;}
.y12c{bottom:384.324900px;}
.yda{bottom:389.813400px;}
.y106{bottom:391.668900px;}
.y165{bottom:391.884750px;}
.y193{bottom:392.378250px;}
.y87{bottom:398.326200px;}
.yd9{bottom:398.928150px;}
.y2a{bottom:399.498750px;}
.y12b{bottom:400.443900px;}
.y164{bottom:404.484750px;}
.y192{bottom:404.978250px;}
.y43{bottom:404.992800px;}
.y105{bottom:407.720400px;}
.y86{bottom:414.256200px;}
.y29{bottom:415.482750px;}
.y12a{bottom:416.562900px;}
.y191{bottom:417.578250px;}
.yd8{bottom:419.004150px;}
.y104{bottom:423.771900px;}
.y163{bottom:425.589750px;}
.y85{bottom:430.186200px;}
.y42{bottom:433.397250px;}
.yd5{bottom:434.785650px;}
.y162{bottom:438.189750px;}
.y190{bottom:438.683250px;}
.y103{bottom:439.823400px;}
.y28{bottom:439.971750px;}
.yd7{bottom:441.085650px;}
.y129{bottom:441.186900px;}
.y84{bottom:446.116200px;}
.yd4{bottom:447.385650px;}
.y41{bottom:450.650250px;}
.y18f{bottom:451.430250px;}
.y27{bottom:455.955750px;}
.y128{bottom:457.386900px;}
.y161{bottom:459.294750px;}
.y83{bottom:462.046200px;}
.y18e{bottom:464.177250px;}
.y102{bottom:464.379900px;}
.yd6{bottom:466.285650px;}
.y40{bottom:467.903250px;}
.y77{bottom:470.927400px;}
.y160{bottom:471.894750px;}
.y26{bottom:471.939750px;}
.yd3{bottom:472.585650px;}
.y127{bottom:473.586900px;}
.y18d{bottom:476.924250px;}
.y82{bottom:477.976200px;}
.y101{bottom:480.431400px;}
.y3f{bottom:485.156250px;}
.y76{bottom:487.424400px;}
.y25{bottom:487.923750px;}
.yd0{bottom:488.367150px;}
.y126{bottom:489.786900px;}
.y15f{bottom:492.999750px;}
.y81{bottom:493.906200px;}
.yd2{bottom:494.667150px;}
.y100{bottom:496.482900px;}
.y18c{bottom:498.176250px;}
.ycf{bottom:500.967150px;}
.y24{bottom:503.907750px;}
.y75{bottom:503.921400px;}
.y15e{bottom:505.599750px;}
.y125{bottom:505.986900px;}
.y3e{bottom:510.914250px;}
.y18b{bottom:510.923250px;}
.yff{bottom:512.534400px;}
.y80{bottom:518.341200px;}
.yd1{bottom:519.867150px;}
.y23{bottom:519.891750px;}
.y74{bottom:520.418400px;}
.y124{bottom:522.186900px;}
.y18a{bottom:523.670250px;}
.yce{bottom:526.167150px;}
.y15d{bottom:526.704750px;}
.y3d{bottom:528.167250px;}
.yfe{bottom:528.585900px;}
.y7f{bottom:534.271200px;}
.y22{bottom:535.875750px;}
.y123{bottom:538.386900px;}
.y15c{bottom:539.304750px;}
.ycd{bottom:541.948650px;}
.yfd{bottom:544.637400px;}
.y189{bottom:544.922250px;}
.y3c{bottom:545.420250px;}
.y73{bottom:545.420400px;}
.y7e{bottom:550.201200px;}
.y122{bottom:554.586900px;}
.y188{bottom:557.669250px;}
.ycb{bottom:557.730150px;}
.y21{bottom:560.369700px;}
.y15b{bottom:560.409750px;}
.yfc{bottom:560.688900px;}
.y72{bottom:561.917400px;}
.y3b{bottom:562.673250px;}
.y7d{bottom:566.131200px;}
.yca{bottom:570.330150px;}
.y187{bottom:570.416250px;}
.y121{bottom:570.786900px;}
.y15a{bottom:573.009750px;}
.y71{bottom:578.414400px;}
.y7c{bottom:582.061200px;}
.yc9{bottom:582.930150px;}
.y186{bottom:583.163250px;}
.yfb{bottom:585.245400px;}
.y120{bottom:586.986900px;}
.y159{bottom:594.114750px;}
.y70{bottom:594.911400px;}
.ycc{bottom:595.530150px;}
.y7b{bottom:597.991200px;}
.yfa{bottom:601.445400px;}
.y11f{bottom:603.186900px;}
.y185{bottom:604.415250px;}
.y158{bottom:606.714750px;}
.yc8{bottom:608.130150px;}
.y6f{bottom:611.408400px;}
.y7a{bottom:613.921200px;}
.y19{bottom:614.947350px;}
.y184{bottom:617.162250px;}
.yf9{bottom:617.645400px;}
.y11e{bottom:619.386900px;}
.yc7{bottom:623.911650px;}
.y157{bottom:627.819750px;}
.y6e{bottom:627.905400px;}
.y18{bottom:629.347350px;}
.y79{bottom:629.851200px;}
.yf8{bottom:633.845400px;}
.y11d{bottom:635.586900px;}
.yc6{bottom:636.511650px;}
.y183{bottom:638.414250px;}
.y156{bottom:640.419750px;}
.y17{bottom:643.747350px;}
.y6d{bottom:644.402400px;}
.yf7{bottom:650.045400px;}
.y182{bottom:651.161250px;}
.y11c{bottom:651.786900px;}
.y155{bottom:653.019750px;}
.y78{bottom:654.285150px;}
.y6c{bottom:660.899400px;}
.yc5{bottom:661.711650px;}
.y154{bottom:665.619750px;}
.yf6{bottom:666.245400px;}
.y16{bottom:666.655350px;}
.y11b{bottom:667.986900px;}
.y181{bottom:672.413250px;}
.y6b{bottom:677.396400px;}
.yc4{bottom:677.495850px;}
.y15{bottom:681.055350px;}
.yf5{bottom:682.445400px;}
.y52{bottom:683.288400px;}
.y180{bottom:685.160250px;}
.y153{bottom:686.724750px;}
.y11a{bottom:692.691900px;}
.y6a{bottom:693.893400px;}
.y14{bottom:695.455350px;}
.y51{bottom:695.888400px;}
.ydb{bottom:697.568400px;}
.y17f{bottom:697.907250px;}
.yf4{bottom:698.645400px;}
.y152{bottom:699.324750px;}
.y119{bottom:708.891900px;}
.y13{bottom:709.855350px;}
.y151{bottom:711.924750px;}
.y69{bottom:718.895400px;}
.y17e{bottom:719.159250px;}
.yf3{bottom:723.350400px;}
.y12{bottom:724.255350px;}
.y118{bottom:725.091900px;}
.yc2{bottom:726.168900px;}
.y17d{bottom:731.906250px;}
.y150{bottom:733.029750px;}
.y68{bottom:735.392400px;}
.y11{bottom:738.655350px;}
.yf2{bottom:739.550400px;}
.y117{bottom:741.291900px;}
.yc1{bottom:741.950400px;}
.y14f{bottom:745.629750px;}
.y67{bottom:751.889400px;}
.y17c{bottom:753.158250px;}
.yf1{bottom:755.750400px;}
.yc0{bottom:757.731900px;}
.y14e{bottom:758.229750px;}
.y10{bottom:761.563350px;}
.y17b{bottom:765.905250px;}
.y13d{bottom:768.151500px;}
.y66{bottom:768.386400px;}
.yf0{bottom:771.950400px;}
.ybf{bottom:773.513400px;}
.yf{bottom:775.963350px;}
.y14d{bottom:779.334750px;}
.y13c{bottom:780.751500px;}
.y65{bottom:784.883400px;}
.ybe{bottom:786.113400px;}
.y17a{bottom:787.157250px;}
.yef{bottom:788.150400px;}
.ye{bottom:790.363350px;}
.y14c{bottom:791.934750px;}
.y13b{bottom:793.351500px;}
.y179{bottom:799.904250px;}
.y64{bottom:801.380400px;}
.yee{bottom:804.350400px;}
.y14b{bottom:804.534750px;}
.yd{bottom:804.763350px;}
.ybd{bottom:811.313400px;}
.y63{bottom:817.877400px;}
.yed{bottom:820.550400px;}
.y178{bottom:821.156250px;}
.y14a{bottom:825.639750px;}
.ybc{bottom:827.094900px;}
.yc{bottom:827.671350px;}
.y177{bottom:833.903250px;}
.y62{bottom:834.374400px;}
.yec{bottom:836.750400px;}
.y149{bottom:838.239750px;}
.ybb{bottom:839.694900px;}
.yb{bottom:850.575300px;}
.y148{bottom:850.839750px;}
.y61{bottom:850.871400px;}
.yeb{bottom:852.950400px;}
.y176{bottom:855.155250px;}
.yba{bottom:864.894900px;}
.y60{bottom:867.368400px;}
.y175{bottom:867.755250px;}
.yea{bottom:869.150400px;}
.y147{bottom:871.944750px;}
.y174{bottom:880.355250px;}
.yb9{bottom:880.676400px;}
.y5f{bottom:883.865400px;}
.y146{bottom:884.544750px;}
.ye9{bottom:885.350400px;}
.yb8{bottom:896.457900px;}
.y5e{bottom:900.362400px;}
.y173{bottom:901.460250px;}
.y145{bottom:905.647500px;}
.ya{bottom:906.399750px;}
.yb7{bottom:909.057900px;}
.ye8{bottom:910.055400px;}
.y172{bottom:914.060250px;}
.y5d{bottom:916.859400px;}
.yb6{bottom:921.657900px;}
.ye7{bottom:926.255400px;}
.y9{bottom:928.651650px;}
.y144{bottom:930.352500px;}
.y5c{bottom:933.356400px;}
.yb5{bottom:934.257900px;}
.y171{bottom:935.165250px;}
.ye6{bottom:942.455400px;}
.y143{bottom:946.552500px;}
.y170{bottom:947.765250px;}
.y5b{bottom:949.853400px;}
.ye5{bottom:958.655400px;}
.yb4{bottom:959.457900px;}
.y16f{bottom:960.365250px;}
.y8{bottom:961.871550px;}
.y142{bottom:971.256450px;}
.y16e{bottom:972.965250px;}
.y5a{bottom:974.855400px;}
.yb3{bottom:975.239400px;}
.yb2{bottom:987.839400px;}
.y59{bottom:991.055400px;}
.y16d{bottom:994.070250px;}
.y7{bottom:999.359550px;}
.y141{bottom:999.560400px;}
.yb1{bottom:1000.439400px;}
.y16c{bottom:1006.670250px;}
.y58{bottom:1007.255400px;}
.y2{bottom:1007.367450px;}
.yb0{bottom:1013.039400px;}
.y140{bottom:1015.760400px;}
.y16b{bottom:1019.270250px;}
.y57{bottom:1023.455400px;}
.y13f{bottom:1031.960400px;}
.yaf{bottom:1038.239400px;}
.y56{bottom:1039.655400px;}
.y16a{bottom:1040.375250px;}
.y13e{bottom:1048.160400px;}
.y169{bottom:1052.975250px;}
.yae{bottom:1054.020900px;}
.yac{bottom:1060.320900px;}
.y55{bottom:1064.360400px;}
.yab{bottom:1066.620900px;}
.y168{bottom:1074.080250px;}
.y6{bottom:1075.891350px;}
.y3{bottom:1076.613150px;}
.yad{bottom:1079.220900px;}
.y54{bottom:1080.560400px;}
.y167{bottom:1086.680250px;}
.y53{bottom:1096.760400px;}
.y166{bottom:1099.280250px;}
.yc3{bottom:1099.317900px;}
.y4b{bottom:1178.613300px;}
.h12{height:17.001510px;}
.hf{height:29.162109px;}
.h11{height:30.987510px;}
.h15{height:33.328125px;}
.hb{height:34.176000px;}
.ha{height:34.224000px;}
.h5{height:35.856000px;}
.he{height:35.875200px;}
.h14{height:37.962000px;}
.hd{height:38.502000px;}
.h8{height:40.068000px;}
.h9{height:44.520000px;}
.hc{height:46.398000px;}
.h6{height:49.500000px;}
.h10{height:54.362109px;}
.h4{height:66.780000px;}
.h3{height:72.000000px;}
.h13{height:79.562109px;}
.h7{height:98.604000px;}
.h2{height:1114.178250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:787.363950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.579650px;}
.x1{left:63.404550px;}
.x9{left:65.943000px;}
.x16{left:80.789550px;}
.x6{left:85.039350px;}
.x14{left:170.428500px;}
.xe{left:178.303500px;}
.xa{left:223.254000px;}
.x8{left:240.094200px;}
.xf{left:290.664000px;}
.x15{left:367.566000px;}
.xb{left:380.565000px;}
.x10{left:403.024500px;}
.x5{left:469.842450px;}
.x17{left:486.877050px;}
.x7{left:491.105850px;}
.x11{left:515.385000px;}
.xc{left:537.876000px;}
.x12{left:627.745500px;}
.xd{left:695.197500px;}
.x4{left:721.706400px;}
.x13{left:740.095500px;}
.x3{left:756.898350px;}
@media print{
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.432000pt;}
.v1{vertical-align:22.400000pt;}
.ls6{letter-spacing:-1.381333pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.432000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.762667pt;}
.ls8{letter-spacing:1.579200pt;}
.ls7{letter-spacing:5.600000pt;}
.ws0{word-spacing:-13.493333pt;}
.wsb2{word-spacing:-12.261333pt;}
.ws6c{word-spacing:-12.026667pt;}
.ws34{word-spacing:-11.909333pt;}
.wsb3{word-spacing:-9.984000pt;}
.wsb4{word-spacing:-9.333333pt;}
.ws88{word-spacing:-3.888000pt;}
.ws92{word-spacing:-3.216000pt;}
.ws59{word-spacing:-3.168000pt;}
.ws62{word-spacing:-2.928000pt;}
.ws7f{word-spacing:-2.784000pt;}
.wsb7{word-spacing:-2.736000pt;}
.ws28{word-spacing:-2.640000pt;}
.ws9e{word-spacing:-2.544000pt;}
.wsa{word-spacing:-2.517333pt;}
.ws63{word-spacing:-2.448000pt;}
.ws81{word-spacing:-2.352000pt;}
.ws8c{word-spacing:-2.304000pt;}
.ws6b{word-spacing:-2.160000pt;}
.wscc{word-spacing:-2.090667pt;}
.ws65{word-spacing:-2.064000pt;}
.ws7b{word-spacing:-2.053333pt;}
.wsa8{word-spacing:-2.016000pt;}
.ws80{word-spacing:-1.872000pt;}
.wsb{word-spacing:-1.792000pt;}
.wsaf{word-spacing:-1.728000pt;}
.wsb0{word-spacing:-1.717333pt;}
.wse{word-spacing:-1.706667pt;}
.ws4d{word-spacing:-1.680000pt;}
.ws4b{word-spacing:-1.584000pt;}
.ws77{word-spacing:-1.488000pt;}
.wsde{word-spacing:-1.456000pt;}
.ws23{word-spacing:-1.440000pt;}
.ws4e{word-spacing:-1.392000pt;}
.ws70{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.296000pt;}
.ws3b{word-spacing:-1.200000pt;}
.ws8e{word-spacing:-1.104000pt;}
.ws7{word-spacing:-0.981333pt;}
.ws33{word-spacing:-0.960000pt;}
.wsd6{word-spacing:-0.784000pt;}
.ws35{word-spacing:-0.672000pt;}
.ws2b{word-spacing:-0.624000pt;}
.ws5b{word-spacing:-0.576000pt;}
.wsbd{word-spacing:-0.448000pt;}
.wsb1{word-spacing:-0.373333pt;}
.ws36{word-spacing:-0.336000pt;}
.ws13{word-spacing:-0.240000pt;}
.ws5c{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.170667pt;}
.ws2{word-spacing:-0.128000pt;}
.wsd4{word-spacing:-0.112000pt;}
.ws8{word-spacing:-0.085333pt;}
.ws24{word-spacing:-0.048000pt;}
.wsc0{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.048000pt;}
.ws26{word-spacing:0.096000pt;}
.ws89{word-spacing:0.288000pt;}
.ws8d{word-spacing:0.336000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.469333pt;}
.ws1e{word-spacing:0.480000pt;}
.wsd5{word-spacing:0.560000pt;}
.ws14{word-spacing:0.576000pt;}
.ws6{word-spacing:0.597333pt;}
.ws86{word-spacing:0.672000pt;}
.ws6e{word-spacing:0.720000pt;}
.ws5{word-spacing:0.725333pt;}
.ws10{word-spacing:0.810667pt;}
.wsf{word-spacing:0.853333pt;}
.wsc4{word-spacing:0.896000pt;}
.ws61{word-spacing:0.912000pt;}
.wsd7{word-spacing:0.933333pt;}
.ws69{word-spacing:0.960000pt;}
.wsd8{word-spacing:1.008000pt;}
.ws64{word-spacing:1.056000pt;}
.wsc{word-spacing:1.066667pt;}
.ws27{word-spacing:1.104000pt;}
.ws9{word-spacing:1.109333pt;}
.wsd9{word-spacing:1.120000pt;}
.ws9f{word-spacing:1.200000pt;}
.ws83{word-spacing:1.248000pt;}
.ws7c{word-spacing:1.381333pt;}
.ws4c{word-spacing:1.488000pt;}
.wsc9{word-spacing:1.530667pt;}
.ws75{word-spacing:1.536000pt;}
.ws5e{word-spacing:1.584000pt;}
.wsdb{word-spacing:1.605333pt;}
.ws94{word-spacing:1.632000pt;}
.wsce{word-spacing:1.754667pt;}
.ws71{word-spacing:1.776000pt;}
.ws1f{word-spacing:1.824000pt;}
.ws57{word-spacing:1.872000pt;}
.wsd3{word-spacing:1.904000pt;}
.wsbe{word-spacing:1.941333pt;}
.wsae{word-spacing:1.968000pt;}
.wsc3{word-spacing:1.978667pt;}
.ws22{word-spacing:2.016000pt;}
.ws2a{word-spacing:2.064000pt;}
.wsa2{word-spacing:2.112000pt;}
.ws60{word-spacing:2.160000pt;}
.ws72{word-spacing:2.208000pt;}
.wsc1{word-spacing:2.240000pt;}
.ws17{word-spacing:2.304000pt;}
.ws1b{word-spacing:2.400000pt;}
.ws7d{word-spacing:2.448000pt;}
.ws9c{word-spacing:2.496000pt;}
.ws38{word-spacing:2.576000pt;}
.ws6f{word-spacing:2.592000pt;}
.wsbb{word-spacing:2.613333pt;}
.ws95{word-spacing:2.640000pt;}
.wsbf{word-spacing:2.725333pt;}
.ws25{word-spacing:2.736000pt;}
.ws96{word-spacing:2.880000pt;}
.ws4{word-spacing:2.944000pt;}
.ws87{word-spacing:2.976000pt;}
.ws68{word-spacing:3.024000pt;}
.wsa1{word-spacing:3.216000pt;}
.ws21{word-spacing:3.264000pt;}
.wsba{word-spacing:3.434667pt;}
.ws48{word-spacing:3.456000pt;}
.ws6a{word-spacing:3.504000pt;}
.ws12{word-spacing:3.600000pt;}
.ws3d{word-spacing:3.696000pt;}
.wsdd{word-spacing:3.733333pt;}
.ws98{word-spacing:3.744000pt;}
.wsbc{word-spacing:3.770667pt;}
.ws1d{word-spacing:3.792000pt;}
.wsc5{word-spacing:3.920000pt;}
.wsa6{word-spacing:3.936000pt;}
.ws84{word-spacing:3.984000pt;}
.ws73{word-spacing:4.032000pt;}
.wsb6{word-spacing:4.080000pt;}
.wsac{word-spacing:4.416000pt;}
.ws51{word-spacing:4.608000pt;}
.ws5a{word-spacing:4.656000pt;}
.wsab{word-spacing:4.704000pt;}
.wscb{word-spacing:4.741333pt;}
.ws58{word-spacing:4.800000pt;}
.ws85{word-spacing:4.848000pt;}
.ws19{word-spacing:4.944000pt;}
.wscf{word-spacing:5.040000pt;}
.wsca{word-spacing:5.077333pt;}
.ws18{word-spacing:5.088000pt;}
.wsc8{word-spacing:5.226667pt;}
.ws1c{word-spacing:5.232000pt;}
.wsad{word-spacing:5.280000pt;}
.ws8f{word-spacing:5.328000pt;}
.ws97{word-spacing:5.376000pt;}
.wsd2{word-spacing:5.525333pt;}
.wsc6{word-spacing:5.562667pt;}
.ws5d{word-spacing:5.568000pt;}
.wsd0{word-spacing:5.600000pt;}
.ws29{word-spacing:5.664000pt;}
.wsc2{word-spacing:5.749333pt;}
.wsaa{word-spacing:5.760000pt;}
.ws76{word-spacing:5.808000pt;}
.ws78{word-spacing:5.856000pt;}
.ws49{word-spacing:6.048000pt;}
.wsb5{word-spacing:6.096000pt;}
.ws67{word-spacing:6.240000pt;}
.wsa9{word-spacing:6.336000pt;}
.wsc7{word-spacing:6.346667pt;}
.ws93{word-spacing:6.384000pt;}
.ws47{word-spacing:6.528000pt;}
.ws56{word-spacing:6.624000pt;}
.ws52{word-spacing:6.720000pt;}
.ws16{word-spacing:6.768000pt;}
.ws53{word-spacing:6.912000pt;}
.wsdc{word-spacing:7.018667pt;}
.ws8b{word-spacing:7.152000pt;}
.ws79{word-spacing:7.200000pt;}
.ws55{word-spacing:7.344000pt;}
.wsd{word-spacing:7.424000pt;}
.ws39{word-spacing:7.440000pt;}
.ws82{word-spacing:7.632000pt;}
.ws3f{word-spacing:7.776000pt;}
.ws3e{word-spacing:7.920000pt;}
.ws66{word-spacing:8.112000pt;}
.ws50{word-spacing:8.256000pt;}
.ws37{word-spacing:8.288000pt;}
.wscd{word-spacing:8.325333pt;}
.wsb8{word-spacing:8.688000pt;}
.ws44{word-spacing:9.072000pt;}
.ws42{word-spacing:9.360000pt;}
.ws5f{word-spacing:9.456000pt;}
.wsa7{word-spacing:9.552000pt;}
.ws45{word-spacing:9.648000pt;}
.wsa4{word-spacing:9.792000pt;}
.ws2e{word-spacing:10.176000pt;}
.wsb9{word-spacing:10.266667pt;}
.ws9a{word-spacing:10.272000pt;}
.ws90{word-spacing:10.416000pt;}
.ws2d{word-spacing:10.896000pt;}
.ws2f{word-spacing:11.040000pt;}
.ws7e{word-spacing:11.184000pt;}
.wsda{word-spacing:11.498667pt;}
.ws32{word-spacing:11.520000pt;}
.ws54{word-spacing:11.808000pt;}
.ws91{word-spacing:12.000000pt;}
.ws20{word-spacing:12.048000pt;}
.ws4f{word-spacing:12.096000pt;}
.wsd1{word-spacing:12.544000pt;}
.ws74{word-spacing:12.672000pt;}
.ws7a{word-spacing:12.816000pt;}
.ws15{word-spacing:12.912000pt;}
.wsa3{word-spacing:13.008000pt;}
.ws9d{word-spacing:13.104000pt;}
.wsa5{word-spacing:13.152000pt;}
.wsa0{word-spacing:13.728000pt;}
.ws9b{word-spacing:14.304000pt;}
.ws8a{word-spacing:14.544000pt;}
.ws46{word-spacing:14.688000pt;}
.ws43{word-spacing:15.072000pt;}
.ws40{word-spacing:15.264000pt;}
.ws3a{word-spacing:16.032000pt;}
.ws30{word-spacing:18.096000pt;}
.ws99{word-spacing:21.504000pt;}
.ws3c{word-spacing:25.968000pt;}
.ws31{word-spacing:38.880000pt;}
.ws11{word-spacing:39.408000pt;}
.ws6d{word-spacing:84.821333pt;}
._7{margin-left:-9.403200pt;}
._6{margin-left:-5.908800pt;}
._1{margin-left:-4.053333pt;}
._3{margin-left:-3.118933pt;}
._0{margin-left:-1.715200pt;}
._2{width:1.011200pt;}
._4{width:2.459733pt;}
._30{width:4.480000pt;}
._31{width:6.195200pt;}
._33{width:7.302400pt;}
._32{width:12.178133pt;}
._2f{width:23.146667pt;}
._14{width:27.253333pt;}
._21{width:102.925867pt;}
._29{width:108.453333pt;}
._2b{width:110.168533pt;}
._20{width:121.632000pt;}
._27{width:127.120000pt;}
._17{width:130.965333pt;}
._24{width:145.786667pt;}
._26{width:152.768000pt;}
._2d{width:154.298667pt;}
._2e{width:160.272000pt;}
._23{width:172.965333pt;}
._19{width:176.549333pt;}
._28{width:177.632000pt;}
._15{width:178.640000pt;}
._8{width:187.077333pt;}
._18{width:195.216000pt;}
._22{width:196.261333pt;}
._25{width:197.605333pt;}
._1a{width:205.632000pt;}
._2a{width:212.784000pt;}
._9{width:220.341333pt;}
._1d{width:258.516267pt;}
._1e{width:262.640000pt;}
._2c{width:295.812267pt;}
._1f{width:299.973333pt;}
._16{width:310.389333pt;}
._f{width:313.637333pt;}
._1b{width:362.170667pt;}
._a{width:365.456000pt;}
._d{width:394.501333pt;}
._12{width:403.797333pt;}
._13{width:405.512533pt;}
._c{width:422.464000pt;}
._e{width:441.130667pt;}
._10{width:483.636267pt;}
._11{width:503.328000pt;}
._b{width:521.994667pt;}
._5{width:1154.227733pt;}
._1c{width:1560.720000pt;}
.fs8{font-size:21.765333pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:7.466667pt;}
.y1{bottom:56.268667pt;}
.y4c{bottom:63.730933pt;}
.y5{bottom:63.735200pt;}
.yaa{bottom:106.473600pt;}
.y9c{bottom:109.292400pt;}
.y20{bottom:110.933733pt;}
.y50{bottom:110.940933pt;}
.y13a{bottom:111.222133pt;}
.y116{bottom:111.642133pt;}
.y97{bottom:111.907733pt;}
.y3a{bottom:112.086000pt;}
.ya9{bottom:120.873600pt;}
.y4f{bottom:122.140933pt;}
.y9b{bottom:123.692400pt;}
.y1f{bottom:123.733733pt;}
.y194{bottom:123.740933pt;}
.y139{bottom:125.622133pt;}
.y115{bottom:126.042133pt;}
.y96{bottom:126.307733pt;}
.y39{bottom:126.486000pt;}
.y4e{bottom:133.340933pt;}
.ya8{bottom:135.273600pt;}
.y9a{bottom:138.092400pt;}
.y138{bottom:140.022133pt;}
.y114{bottom:140.442133pt;}
.y38{bottom:140.886000pt;}
.y1e{bottom:144.096400pt;}
.y4d{bottom:144.540933pt;}
.y95{bottom:148.267733pt;}
.ya7{bottom:149.673600pt;}
.y99{bottom:152.492400pt;}
.y137{bottom:154.422133pt;}
.y113{bottom:154.842133pt;}
.y1d{bottom:156.896400pt;}
.y94{bottom:162.427733pt;}
.y37{bottom:162.846000pt;}
.y98{bottom:166.892400pt;}
.y136{bottom:168.822133pt;}
.y112{bottom:169.242133pt;}
.ya6{bottom:171.632667pt;}
.y93{bottom:176.587733pt;}
.y36{bottom:177.054000pt;}
.y1c{bottom:177.259067pt;}
.y1b{bottom:190.059067pt;}
.y92{bottom:190.747733pt;}
.y135{bottom:190.782133pt;}
.y111{bottom:191.202133pt;}
.y35{bottom:191.262000pt;}
.ya5{bottom:196.796400pt;}
.y1a{bottom:202.859067pt;}
.ye3{bottom:204.592133pt;}
.y91{bottom:204.907733pt;}
.y134{bottom:205.110133pt;}
.y34{bottom:205.470000pt;}
.y110{bottom:205.470133pt;}
.ya4{bottom:211.196400pt;}
.ye2{bottom:218.620133pt;}
.y90{bottom:219.067733pt;}
.y133{bottom:219.438133pt;}
.y33{bottom:219.678000pt;}
.y10f{bottom:219.738133pt;}
.ya3{bottom:225.596400pt;}
.ye1{bottom:232.648133pt;}
.y8f{bottom:233.227733pt;}
.y132{bottom:233.766133pt;}
.y32{bottom:233.886000pt;}
.y10e{bottom:234.006133pt;}
.ya2{bottom:239.996400pt;}
.ye0{bottom:246.676133pt;}
.y8e{bottom:247.387733pt;}
.y31{bottom:248.094000pt;}
.y131{bottom:248.094133pt;}
.y10d{bottom:248.274133pt;}
.y4a{bottom:251.634533pt;}
.ya1{bottom:254.396400pt;}
.ydf{bottom:260.704133pt;}
.y8d{bottom:261.547733pt;}
.y130{bottom:262.422133pt;}
.y10c{bottom:262.542133pt;}
.y49{bottom:266.034533pt;}
.y30{bottom:269.862000pt;}
.yde{bottom:274.732133pt;}
.y8c{bottom:275.707733pt;}
.ya0{bottom:276.356400pt;}
.y12f{bottom:276.750133pt;}
.y10b{bottom:276.810133pt;}
.y48{bottom:280.434533pt;}
.y2f{bottom:284.070000pt;}
.ydd{bottom:288.760133pt;}
.y8b{bottom:289.867733pt;}
.y9f{bottom:290.756400pt;}
.y10a{bottom:291.078133pt;}
.ydc{bottom:294.360133pt;}
.y47{bottom:294.834533pt;}
.y2e{bottom:298.278000pt;}
.y8a{bottom:304.027733pt;}
.y9e{bottom:305.156400pt;}
.y109{bottom:305.346133pt;}
.y12e{bottom:305.406133pt;}
.y46{bottom:309.234533pt;}
.y2d{bottom:312.486000pt;}
.ye4{bottom:317.814800pt;}
.y9d{bottom:319.556400pt;}
.y108{bottom:319.614133pt;}
.y45{bottom:323.634533pt;}
.y89{bottom:325.747733pt;}
.y2c{bottom:326.694000pt;}
.y12d{bottom:327.294133pt;}
.y107{bottom:333.882133pt;}
.y44{bottom:338.034533pt;}
.y88{bottom:339.907733pt;}
.y2b{bottom:340.902000pt;}
.y12c{bottom:341.622133pt;}
.yda{bottom:346.500800pt;}
.y106{bottom:348.150133pt;}
.y165{bottom:348.342000pt;}
.y193{bottom:348.780667pt;}
.y87{bottom:354.067733pt;}
.yd9{bottom:354.602800pt;}
.y2a{bottom:355.110000pt;}
.y12b{bottom:355.950133pt;}
.y164{bottom:359.542000pt;}
.y192{bottom:359.980667pt;}
.y43{bottom:359.993600pt;}
.y105{bottom:362.418133pt;}
.y86{bottom:368.227733pt;}
.y29{bottom:369.318000pt;}
.y12a{bottom:370.278133pt;}
.y191{bottom:371.180667pt;}
.yd8{bottom:372.448133pt;}
.y104{bottom:376.686133pt;}
.y163{bottom:378.302000pt;}
.y85{bottom:382.387733pt;}
.y42{bottom:385.242000pt;}
.yd5{bottom:386.476133pt;}
.y162{bottom:389.502000pt;}
.y190{bottom:389.940667pt;}
.y103{bottom:390.954133pt;}
.y28{bottom:391.086000pt;}
.yd7{bottom:392.076133pt;}
.y129{bottom:392.166133pt;}
.y84{bottom:396.547733pt;}
.yd4{bottom:397.676133pt;}
.y41{bottom:400.578000pt;}
.y18f{bottom:401.271333pt;}
.y27{bottom:405.294000pt;}
.y128{bottom:406.566133pt;}
.y161{bottom:408.262000pt;}
.y83{bottom:410.707733pt;}
.y18e{bottom:412.602000pt;}
.y102{bottom:412.782133pt;}
.yd6{bottom:414.476133pt;}
.y40{bottom:415.914000pt;}
.y77{bottom:418.602133pt;}
.y160{bottom:419.462000pt;}
.y26{bottom:419.502000pt;}
.yd3{bottom:420.076133pt;}
.y127{bottom:420.966133pt;}
.y18d{bottom:423.932667pt;}
.y82{bottom:424.867733pt;}
.y101{bottom:427.050133pt;}
.y3f{bottom:431.250000pt;}
.y76{bottom:433.266133pt;}
.y25{bottom:433.710000pt;}
.yd0{bottom:434.104133pt;}
.y126{bottom:435.366133pt;}
.y15f{bottom:438.222000pt;}
.y81{bottom:439.027733pt;}
.yd2{bottom:439.704133pt;}
.y100{bottom:441.318133pt;}
.y18c{bottom:442.823333pt;}
.ycf{bottom:445.304133pt;}
.y24{bottom:447.918000pt;}
.y75{bottom:447.930133pt;}
.y15e{bottom:449.422000pt;}
.y125{bottom:449.766133pt;}
.y3e{bottom:454.146000pt;}
.y18b{bottom:454.154000pt;}
.yff{bottom:455.586133pt;}
.y80{bottom:460.747733pt;}
.yd1{bottom:462.104133pt;}
.y23{bottom:462.126000pt;}
.y74{bottom:462.594133pt;}
.y124{bottom:464.166133pt;}
.y18a{bottom:465.484667pt;}
.yce{bottom:467.704133pt;}
.y15d{bottom:468.182000pt;}
.y3d{bottom:469.482000pt;}
.yfe{bottom:469.854133pt;}
.y7f{bottom:474.907733pt;}
.y22{bottom:476.334000pt;}
.y123{bottom:478.566133pt;}
.y15c{bottom:479.382000pt;}
.ycd{bottom:481.732133pt;}
.yfd{bottom:484.122133pt;}
.y189{bottom:484.375333pt;}
.y3c{bottom:484.818000pt;}
.y73{bottom:484.818133pt;}
.y7e{bottom:489.067733pt;}
.y122{bottom:492.966133pt;}
.y188{bottom:495.706000pt;}
.ycb{bottom:495.760133pt;}
.y21{bottom:498.106400pt;}
.y15b{bottom:498.142000pt;}
.yfc{bottom:498.390133pt;}
.y72{bottom:499.482133pt;}
.y3b{bottom:500.154000pt;}
.y7d{bottom:503.227733pt;}
.yca{bottom:506.960133pt;}
.y187{bottom:507.036667pt;}
.y121{bottom:507.366133pt;}
.y15a{bottom:509.342000pt;}
.y71{bottom:514.146133pt;}
.y7c{bottom:517.387733pt;}
.yc9{bottom:518.160133pt;}
.y186{bottom:518.367333pt;}
.yfb{bottom:520.218133pt;}
.y120{bottom:521.766133pt;}
.y159{bottom:528.102000pt;}
.y70{bottom:528.810133pt;}
.ycc{bottom:529.360133pt;}
.y7b{bottom:531.547733pt;}
.yfa{bottom:534.618133pt;}
.y11f{bottom:536.166133pt;}
.y185{bottom:537.258000pt;}
.y158{bottom:539.302000pt;}
.yc8{bottom:540.560133pt;}
.y6f{bottom:543.474133pt;}
.y7a{bottom:545.707733pt;}
.y19{bottom:546.619867pt;}
.y184{bottom:548.588667pt;}
.yf9{bottom:549.018133pt;}
.y11e{bottom:550.566133pt;}
.yc7{bottom:554.588133pt;}
.y157{bottom:558.062000pt;}
.y6e{bottom:558.138133pt;}
.y18{bottom:559.419867pt;}
.y79{bottom:559.867733pt;}
.yf8{bottom:563.418133pt;}
.y11d{bottom:564.966133pt;}
.yc6{bottom:565.788133pt;}
.y183{bottom:567.479333pt;}
.y156{bottom:569.262000pt;}
.y17{bottom:572.219867pt;}
.y6d{bottom:572.802133pt;}
.yf7{bottom:577.818133pt;}
.y182{bottom:578.810000pt;}
.y11c{bottom:579.366133pt;}
.y155{bottom:580.462000pt;}
.y78{bottom:581.586800pt;}
.y6c{bottom:587.466133pt;}
.yc5{bottom:588.188133pt;}
.y154{bottom:591.662000pt;}
.yf6{bottom:592.218133pt;}
.y16{bottom:592.582533pt;}
.y11b{bottom:593.766133pt;}
.y181{bottom:597.700667pt;}
.y6b{bottom:602.130133pt;}
.yc4{bottom:602.218533pt;}
.y15{bottom:605.382533pt;}
.yf5{bottom:606.618133pt;}
.y52{bottom:607.367467pt;}
.y180{bottom:609.031333pt;}
.y153{bottom:610.422000pt;}
.y11a{bottom:615.726133pt;}
.y6a{bottom:616.794133pt;}
.y14{bottom:618.182533pt;}
.y51{bottom:618.567467pt;}
.ydb{bottom:620.060800pt;}
.y17f{bottom:620.362000pt;}
.yf4{bottom:621.018133pt;}
.y152{bottom:621.622000pt;}
.y119{bottom:630.126133pt;}
.y13{bottom:630.982533pt;}
.y151{bottom:632.822000pt;}
.y69{bottom:639.018133pt;}
.y17e{bottom:639.252667pt;}
.yf3{bottom:642.978133pt;}
.y12{bottom:643.782533pt;}
.y118{bottom:644.526133pt;}
.yc2{bottom:645.483467pt;}
.y17d{bottom:650.583333pt;}
.y150{bottom:651.582000pt;}
.y68{bottom:653.682133pt;}
.y11{bottom:656.582533pt;}
.yf2{bottom:657.378133pt;}
.y117{bottom:658.926133pt;}
.yc1{bottom:659.511467pt;}
.y14f{bottom:662.782000pt;}
.y67{bottom:668.346133pt;}
.y17c{bottom:669.474000pt;}
.yf1{bottom:671.778133pt;}
.yc0{bottom:673.539467pt;}
.y14e{bottom:673.982000pt;}
.y10{bottom:676.945200pt;}
.y17b{bottom:680.804667pt;}
.y13d{bottom:682.801333pt;}
.y66{bottom:683.010133pt;}
.yf0{bottom:686.178133pt;}
.ybf{bottom:687.567467pt;}
.yf{bottom:689.745200pt;}
.y14d{bottom:692.742000pt;}
.y13c{bottom:694.001333pt;}
.y65{bottom:697.674133pt;}
.ybe{bottom:698.767467pt;}
.y17a{bottom:699.695333pt;}
.yef{bottom:700.578133pt;}
.ye{bottom:702.545200pt;}
.y14c{bottom:703.942000pt;}
.y13b{bottom:705.201333pt;}
.y179{bottom:711.026000pt;}
.y64{bottom:712.338133pt;}
.yee{bottom:714.978133pt;}
.y14b{bottom:715.142000pt;}
.yd{bottom:715.345200pt;}
.ybd{bottom:721.167467pt;}
.y63{bottom:727.002133pt;}
.yed{bottom:729.378133pt;}
.y178{bottom:729.916667pt;}
.y14a{bottom:733.902000pt;}
.ybc{bottom:735.195467pt;}
.yc{bottom:735.707867pt;}
.y177{bottom:741.247333pt;}
.y62{bottom:741.666133pt;}
.yec{bottom:743.778133pt;}
.y149{bottom:745.102000pt;}
.ybb{bottom:746.395467pt;}
.yb{bottom:756.066933pt;}
.y148{bottom:756.302000pt;}
.y61{bottom:756.330133pt;}
.yeb{bottom:758.178133pt;}
.y176{bottom:760.138000pt;}
.yba{bottom:768.795467pt;}
.y60{bottom:770.994133pt;}
.y175{bottom:771.338000pt;}
.yea{bottom:772.578133pt;}
.y147{bottom:775.062000pt;}
.y174{bottom:782.538000pt;}
.yb9{bottom:782.823467pt;}
.y5f{bottom:785.658133pt;}
.y146{bottom:786.262000pt;}
.ye9{bottom:786.978133pt;}
.yb8{bottom:796.851467pt;}
.y5e{bottom:800.322133pt;}
.y173{bottom:801.298000pt;}
.y145{bottom:805.020000pt;}
.ya{bottom:805.688667pt;}
.yb7{bottom:808.051467pt;}
.ye8{bottom:808.938133pt;}
.y172{bottom:812.498000pt;}
.y5d{bottom:814.986133pt;}
.yb6{bottom:819.251467pt;}
.ye7{bottom:823.338133pt;}
.y9{bottom:825.468133pt;}
.y144{bottom:826.980000pt;}
.y5c{bottom:829.650133pt;}
.yb5{bottom:830.451467pt;}
.y171{bottom:831.258000pt;}
.ye6{bottom:837.738133pt;}
.y143{bottom:841.380000pt;}
.y170{bottom:842.458000pt;}
.y5b{bottom:844.314133pt;}
.ye5{bottom:852.138133pt;}
.yb4{bottom:852.851467pt;}
.y16f{bottom:853.658000pt;}
.y8{bottom:854.996933pt;}
.y142{bottom:863.339067pt;}
.y16e{bottom:864.858000pt;}
.y5a{bottom:866.538133pt;}
.yb3{bottom:866.879467pt;}
.yb2{bottom:878.079467pt;}
.y59{bottom:880.938133pt;}
.y16d{bottom:883.618000pt;}
.y7{bottom:888.319600pt;}
.y141{bottom:888.498133pt;}
.yb1{bottom:889.279467pt;}
.y16c{bottom:894.818000pt;}
.y58{bottom:895.338133pt;}
.y2{bottom:895.437733pt;}
.yb0{bottom:900.479467pt;}
.y140{bottom:902.898133pt;}
.y16b{bottom:906.018000pt;}
.y57{bottom:909.738133pt;}
.y13f{bottom:917.298133pt;}
.yaf{bottom:922.879467pt;}
.y56{bottom:924.138133pt;}
.y16a{bottom:924.778000pt;}
.y13e{bottom:931.698133pt;}
.y169{bottom:935.978000pt;}
.yae{bottom:936.907467pt;}
.yac{bottom:942.507467pt;}
.y55{bottom:946.098133pt;}
.yab{bottom:948.107467pt;}
.y168{bottom:954.738000pt;}
.y6{bottom:956.347867pt;}
.y3{bottom:956.989467pt;}
.yad{bottom:959.307467pt;}
.y54{bottom:960.498133pt;}
.y167{bottom:965.938000pt;}
.y53{bottom:974.898133pt;}
.y166{bottom:977.138000pt;}
.yc3{bottom:977.171467pt;}
.y4b{bottom:1047.656267pt;}
.h12{height:15.112453pt;}
.hf{height:25.921875pt;}
.h11{height:27.544453pt;}
.h15{height:29.625000pt;}
.hb{height:30.378667pt;}
.ha{height:30.421333pt;}
.h5{height:31.872000pt;}
.he{height:31.889067pt;}
.h14{height:33.744000pt;}
.hd{height:34.224000pt;}
.h8{height:35.616000pt;}
.h9{height:39.573333pt;}
.hc{height:41.242667pt;}
.h6{height:44.000000pt;}
.h10{height:48.321875pt;}
.h4{height:59.360000pt;}
.h3{height:64.000000pt;}
.h13{height:70.721875pt;}
.h7{height:87.648000pt;}
.h2{height:990.380667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:699.879067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.404133pt;}
.x1{left:56.359600pt;}
.x9{left:58.616000pt;}
.x16{left:71.812933pt;}
.x6{left:75.590533pt;}
.x14{left:151.492000pt;}
.xe{left:158.492000pt;}
.xa{left:198.448000pt;}
.x8{left:213.417067pt;}
.xf{left:258.368000pt;}
.x15{left:326.725333pt;}
.xb{left:338.280000pt;}
.x10{left:358.244000pt;}
.x5{left:417.637733pt;}
.x17{left:432.779600pt;}
.x7{left:436.538533pt;}
.x11{left:458.120000pt;}
.xc{left:478.112000pt;}
.x12{left:557.996000pt;}
.xd{left:617.953333pt;}
.x4{left:641.516800pt;}
.x13{left:657.862667pt;}
.x3{left:672.798533pt;}
}




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