
    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_0a3d989faed22534f1d8037a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.761230;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_e81092df18f8822fb2037e1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_3f019f667c56eb31d436cbfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_20c08d32ea4a5b451ae5da03.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_6bb9c89082322e354df61a06.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945000;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_66e9ae83e62a47e5a08f955a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_fa487acdc744d75431ba37dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_643c27c093773ef52f9ba3c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_84a859f7460b97bf6cd7953e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_686b51984c9bbd753201bfc1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_23aad9756bb24cc4e6e8c085.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984333;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_5600ac5592230562913d9e83.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_3fbcbc3e264bc95537f65e6b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_cbf2ac15b95abf1af23744df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.961000;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_c8c380e32a225e414e1ae454.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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_2ed29ea10043e9b7cd3efb24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.979004;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);}
.v5{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v3{vertical-align:-1.708200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.827200px;}
.v1{vertical-align:17.982000px;}
.v4{vertical-align:32.399400px;}
.ls3{letter-spacing:-5.400000px;}
.ls2{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.188000px;}
.ls7{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.898800px;}
.ls0{letter-spacing:0.924000px;}
.ls4{letter-spacing:1.008000px;}
.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;}
}
.wsb9{word-spacing:-54.000000px;}
.ws16{word-spacing:-18.288000px;}
.ws1{word-spacing:-17.424000px;}
.ws7b{word-spacing:-17.280000px;}
.ws4b{word-spacing:-16.500000px;}
.wsb4{word-spacing:-16.104000px;}
.wsb1{word-spacing:-15.708000px;}
.wsb5{word-spacing:-15.312000px;}
.ws6a{word-spacing:-13.500000px;}
.ws6c{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.000000px;}
.ws6b{word-spacing:-7.870500px;}
.ws88{word-spacing:-3.630000px;}
.wsb2{word-spacing:-3.564000px;}
.ws66{word-spacing:-3.234000px;}
.ws92{word-spacing:-3.168000px;}
.ws49{word-spacing:-3.102000px;}
.wsa1{word-spacing:-3.096000px;}
.ws15{word-spacing:-2.970000px;}
.ws37{word-spacing:-2.904000px;}
.wsa3{word-spacing:-2.838000px;}
.wscd{word-spacing:-2.760000px;}
.ws63{word-spacing:-2.640000px;}
.ws73{word-spacing:-2.592000px;}
.wsb7{word-spacing:-2.574000px;}
.ws9{word-spacing:-2.508000px;}
.ws7f{word-spacing:-2.442000px;}
.ws2b{word-spacing:-2.376000px;}
.ws11{word-spacing:-2.310000px;}
.wsbc{word-spacing:-2.280000px;}
.ws4{word-spacing:-2.244000px;}
.ws56{word-spacing:-2.178000px;}
.ws67{word-spacing:-2.112000px;}
.wsa6{word-spacing:-2.046000px;}
.ws8d{word-spacing:-1.980000px;}
.wsc0{word-spacing:-1.920000px;}
.ws93{word-spacing:-1.914000px;}
.ws1f{word-spacing:-1.848000px;}
.ws21{word-spacing:-1.782000px;}
.ws4a{word-spacing:-1.716000px;}
.wsd7{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.650000px;}
.ws72{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.584000px;}
.wsa0{word-spacing:-1.518000px;}
.ws51{word-spacing:-1.452000px;}
.ws83{word-spacing:-1.386000px;}
.ws8e{word-spacing:-1.320000px;}
.wsce{word-spacing:-1.260000px;}
.ws5b{word-spacing:-1.254000px;}
.wsd5{word-spacing:-1.200000px;}
.ws40{word-spacing:-1.188000px;}
.ws60{word-spacing:-1.122000px;}
.ws6f{word-spacing:-1.080000px;}
.ws4e{word-spacing:-1.056000px;}
.ws33{word-spacing:-1.008000px;}
.wsb0{word-spacing:-0.990000px;}
.wsbd{word-spacing:-0.960000px;}
.ws34{word-spacing:-0.924000px;}
.wsd0{word-spacing:-0.900000px;}
.ws99{word-spacing:-0.858000px;}
.ws3b{word-spacing:-0.792000px;}
.wsb6{word-spacing:-0.726000px;}
.ws5d{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.594000px;}
.wsc5{word-spacing:-0.540000px;}
.ws80{word-spacing:-0.528000px;}
.ws50{word-spacing:-0.504000px;}
.ws6e{word-spacing:-0.486000px;}
.ws42{word-spacing:-0.462000px;}
.wsbb{word-spacing:-0.420000px;}
.ws4d{word-spacing:-0.396000px;}
.ws97{word-spacing:-0.330000px;}
.ws74{word-spacing:-0.270000px;}
.ws30{word-spacing:-0.264000px;}
.wsbf{word-spacing:-0.240000px;}
.ws75{word-spacing:-0.216000px;}
.ws52{word-spacing:-0.198000px;}
.wsd4{word-spacing:-0.180000px;}
.ws46{word-spacing:-0.132000px;}
.ws3{word-spacing:-0.096000px;}
.ws1e{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.wsc4{word-spacing:0.060000px;}
.ws25{word-spacing:0.066000px;}
.ws20{word-spacing:0.132000px;}
.ws1d{word-spacing:0.198000px;}
.ws14{word-spacing:0.264000px;}
.ws1a{word-spacing:0.330000px;}
.ws65{word-spacing:0.396000px;}
.ws7{word-spacing:0.462000px;}
.ws69{word-spacing:0.528000px;}
.ws59{word-spacing:0.594000px;}
.ws12{word-spacing:0.660000px;}
.ws35{word-spacing:0.726000px;}
.wsc1{word-spacing:0.780000px;}
.ws5a{word-spacing:0.792000px;}
.wsa5{word-spacing:0.858000px;}
.ws76{word-spacing:0.864000px;}
.ws71{word-spacing:0.918000px;}
.wsae{word-spacing:0.924000px;}
.ws29{word-spacing:0.990000px;}
.ws7a{word-spacing:1.056000px;}
.ws6{word-spacing:1.122000px;}
.wscc{word-spacing:1.140000px;}
.ws43{word-spacing:1.188000px;}
.wsa4{word-spacing:1.254000px;}
.ws4f{word-spacing:1.320000px;}
.ws13{word-spacing:1.386000px;}
.ws70{word-spacing:1.404000px;}
.ws5e{word-spacing:1.452000px;}
.ws7e{word-spacing:1.518000px;}
.wsca{word-spacing:1.560000px;}
.ws19{word-spacing:1.584000px;}
.ws91{word-spacing:1.650000px;}
.ws95{word-spacing:1.654554px;}
.wsa{word-spacing:1.716000px;}
.ws82{word-spacing:1.782000px;}
.ws85{word-spacing:1.848000px;}
.ws3e{word-spacing:1.914000px;}
.wsc9{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws45{word-spacing:2.046000px;}
.ws18{word-spacing:2.112000px;}
.ws87{word-spacing:2.178000px;}
.ws2a{word-spacing:2.244000px;}
.ws1c{word-spacing:2.376000px;}
.ws78{word-spacing:2.442000px;}
.ws3f{word-spacing:2.508000px;}
.wsbe{word-spacing:2.520000px;}
.ws61{word-spacing:2.574000px;}
.ws86{word-spacing:2.640000px;}
.ws5{word-spacing:2.706000px;}
.ws5c{word-spacing:2.772000px;}
.wsc8{word-spacing:2.820000px;}
.ws57{word-spacing:2.838000px;}
.ws23{word-spacing:2.904000px;}
.wsd2{word-spacing:2.940000px;}
.ws55{word-spacing:2.970000px;}
.ws3d{word-spacing:3.036000px;}
.ws64{word-spacing:3.102000px;}
.ws6d{word-spacing:3.132000px;}
.ws9f{word-spacing:3.168000px;}
.ws2f{word-spacing:3.234000px;}
.ws9b{word-spacing:3.300000px;}
.ws39{word-spacing:3.366000px;}
.ws3a{word-spacing:3.432000px;}
.wsc{word-spacing:3.498000px;}
.wsc6{word-spacing:3.540000px;}
.ws1b{word-spacing:3.630000px;}
.wscb{word-spacing:3.660000px;}
.ws27{word-spacing:3.696000px;}
.wscf{word-spacing:3.720000px;}
.ws22{word-spacing:3.828000px;}
.ws54{word-spacing:3.894000px;}
.wsd{word-spacing:3.960000px;}
.ws84{word-spacing:4.224000px;}
.ws47{word-spacing:4.290000px;}
.ws3c{word-spacing:4.356000px;}
.ws26{word-spacing:4.422000px;}
.ws62{word-spacing:4.488000px;}
.wsd6{word-spacing:4.500000px;}
.wsa2{word-spacing:4.554000px;}
.wsf{word-spacing:4.620000px;}
.ws77{word-spacing:4.686000px;}
.ws53{word-spacing:4.752000px;}
.ws48{word-spacing:4.818000px;}
.ws44{word-spacing:4.884000px;}
.ws98{word-spacing:4.950000px;}
.ws2d{word-spacing:5.016000px;}
.ws32{word-spacing:5.082000px;}
.wsa8{word-spacing:5.148000px;}
.ws17{word-spacing:5.214000px;}
.ws36{word-spacing:5.280000px;}
.ws24{word-spacing:5.412000px;}
.wsc7{word-spacing:5.460000px;}
.ws94{word-spacing:5.544000px;}
.ws58{word-spacing:5.676000px;}
.ws9e{word-spacing:5.742000px;}
.wsc3{word-spacing:5.760000px;}
.ws10{word-spacing:5.808000px;}
.ws9d{word-spacing:5.874000px;}
.ws28{word-spacing:5.940000px;}
.ws5f{word-spacing:6.072000px;}
.wsab{word-spacing:6.138000px;}
.wsa7{word-spacing:6.204000px;}
.wsaa{word-spacing:6.270000px;}
.wsb3{word-spacing:6.336000px;}
.ws38{word-spacing:6.468000px;}
.wsc2{word-spacing:6.540000px;}
.ws4c{word-spacing:6.600000px;}
.wsac{word-spacing:6.666000px;}
.ws2e{word-spacing:6.864000px;}
.wsba{word-spacing:6.960000px;}
.ws8f{word-spacing:7.062000px;}
.wsd3{word-spacing:7.080000px;}
.wsb{word-spacing:7.194000px;}
.ws9a{word-spacing:7.260000px;}
.ws90{word-spacing:7.326000px;}
.ws81{word-spacing:7.458000px;}
.wsa9{word-spacing:7.590000px;}
.wsad{word-spacing:7.920000px;}
.ws79{word-spacing:7.986000px;}
.wsd1{word-spacing:8.100000px;}
.ws31{word-spacing:8.382000px;}
.wse{word-spacing:8.448000px;}
.ws96{word-spacing:9.768000px;}
.wsaf{word-spacing:68.574000px;}
.ws7c{word-spacing:87.361200px;}
.ws8b{word-spacing:121.231200px;}
.ws89{word-spacing:147.000000px;}
.ws8a{word-spacing:184.231200px;}
.ws7d{word-spacing:201.705000px;}
.ws9c{word-spacing:280.476000px;}
.wsb8{word-spacing:1143.329400px;}
.ws8c{word-spacing:1974.536400px;}
._28{margin-left:-21.255000px;}
._29{margin-left:-19.077000px;}
._a{margin-left:-16.896000px;}
._2e{margin-left:-15.840000px;}
._2d{margin-left:-12.493200px;}
._5{margin-left:-11.124000px;}
._2c{margin-left:-9.639000px;}
._7{margin-left:-8.502600px;}
._9{margin-left:-7.258800px;}
._8{margin-left:-6.038400px;}
._6{margin-left:-4.486200px;}
._0{margin-left:-2.635200px;}
._3{margin-left:-1.342800px;}
._2{width:1.062000px;}
._4{width:2.379600px;}
._2b{width:3.584400px;}
._1{width:6.660000px;}
._c{width:9.126000px;}
._b{width:10.530000px;}
._d{width:13.122000px;}
._2a{width:22.680000px;}
._18{width:57.224400px;}
._23{width:91.502400px;}
._e{width:116.076000px;}
._25{width:134.731200px;}
._1a{width:160.500000px;}
._1b{width:169.240200px;}
._1d{width:177.625800px;}
._11{width:188.205000px;}
._19{width:204.625800px;}
._15{width:213.387000px;}
._12{width:215.205000px;}
._13{width:257.731800px;}
._21{width:294.204000px;}
._1e{width:316.654800px;}
._1c{width:439.936800px;}
._17{width:531.234600px;}
._14{width:631.195800px;}
._16{width:639.187800px;}
._20{width:657.873600px;}
._10{width:669.319800px;}
._24{width:695.654400px;}
._f{width:747.580800px;}
._27{width:920.064000px;}
._1f{width:1016.440800px;}
._22{width:1408.231200px;}
._26{width:1500.848400px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs8{font-size:38.478000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:67.358700px;}
.y25{bottom:69.565500px;}
.y5{bottom:82.099950px;}
.y4{bottom:96.499950px;}
.y1ad{bottom:115.056900px;}
.y177{bottom:118.080900px;}
.y104{bottom:120.529050px;}
.y149{bottom:120.628200px;}
.y81{bottom:123.221850px;}
.ydd{bottom:123.940500px;}
.y51{bottom:124.458900px;}
.ya3{bottom:125.078550px;}
.y23{bottom:125.849700px;}
.y1ac{bottom:133.056900px;}
.y176{bottom:137.880900px;}
.y103{bottom:140.329050px;}
.y148{bottom:140.428200px;}
.y138{bottom:141.548700px;}
.y80{bottom:143.022000px;}
.ydc{bottom:143.740350px;}
.y50{bottom:144.258900px;}
.ya2{bottom:144.878700px;}
.y1ab{bottom:151.056900px;}
.y175{bottom:157.680900px;}
.y147{bottom:160.228200px;}
.y7f{bottom:162.822000px;}
.y137{bottom:163.336050px;}
.ydb{bottom:163.540350px;}
.y4f{bottom:164.058900px;}
.ya1{bottom:164.678700px;}
.y1aa{bottom:169.056900px;}
.y17d{bottom:173.650200px;}
.y102{bottom:176.851950px;}
.y174{bottom:177.480900px;}
.y136{bottom:179.536200px;}
.y146{bottom:180.028350px;}
.y22{bottom:180.317550px;}
.y7e{bottom:182.622000px;}
.yda{bottom:183.340350px;}
.y4e{bottom:183.858900px;}
.ya0{bottom:184.478700px;}
.y1a9{bottom:187.056900px;}
.y17c{bottom:193.450350px;}
.y173{bottom:197.280900px;}
.y101{bottom:197.694450px;}
.y145{bottom:199.828350px;}
.y21{bottom:200.117550px;}
.y135{bottom:201.323550px;}
.y7d{bottom:202.422000px;}
.yd9{bottom:203.140350px;}
.y1a8{bottom:205.056900px;}
.y17b{bottom:213.250350px;}
.y4d{bottom:216.414900px;}
.y172{bottom:217.080900px;}
.y100{bottom:218.536950px;}
.y144{bottom:219.628200px;}
.y9f{bottom:221.286600px;}
.y7c{bottom:222.221850px;}
.y1a7{bottom:223.056900px;}
.y134{bottom:223.110900px;}
.y17a{bottom:233.050350px;}
.y171{bottom:236.880900px;}
.y133{bottom:239.310900px;}
.yff{bottom:239.379450px;}
.y143{bottom:239.428200px;}
.y20{bottom:239.717550px;}
.y1a6{bottom:241.056900px;}
.y7b{bottom:242.022000px;}
.yd8{bottom:244.200300px;}
.y179{bottom:252.850350px;}
.y170{bottom:256.680900px;}
.y1a5{bottom:259.056900px;}
.y142{bottom:259.228200px;}
.y1f{bottom:259.517550px;}
.yfe{bottom:260.221950px;}
.y132{bottom:261.098250px;}
.y7a{bottom:261.822000px;}
.y4c{bottom:263.526600px;}
.yd7{bottom:264.895800px;}
.y9e{bottom:272.650200px;}
.y16f{bottom:276.480900px;}
.yd6{bottom:276.600150px;}
.y1a4{bottom:277.056900px;}
.y141{bottom:279.028200px;}
.y1e{bottom:279.317550px;}
.yfd{bottom:281.064450px;}
.y79{bottom:281.622000px;}
.y131{bottom:282.885600px;}
.y4b{bottom:283.326600px;}
.y9d{bottom:292.450350px;}
.y1a3{bottom:295.056900px;}
.y16e{bottom:296.280900px;}
.yd5{bottom:297.295800px;}
.y140{bottom:298.828200px;}
.y130{bottom:299.085600px;}
.y1d{bottom:299.117550px;}
.y78{bottom:301.422000px;}
.yf8{bottom:301.906950px;}
.y4a{bottom:303.126600px;}
.yfc{bottom:310.006950px;}
.y9c{bottom:312.250350px;}
.y1a2{bottom:313.056900px;}
.yd4{bottom:313.495650px;}
.y16d{bottom:316.080900px;}
.yf7{bottom:318.106950px;}
.y13f{bottom:318.628350px;}
.y1c{bottom:318.917550px;}
.y12f{bottom:320.872950px;}
.y77{bottom:321.222000px;}
.y49{bottom:322.926600px;}
.yfb{bottom:326.206950px;}
.yd3{bottom:329.695800px;}
.y1a1{bottom:331.056900px;}
.y9b{bottom:332.050350px;}
.yf6{bottom:334.306950px;}
.y16c{bottom:335.880900px;}
.y13e{bottom:338.428200px;}
.y1b{bottom:338.717550px;}
.y76{bottom:341.022000px;}
.yfa{bottom:342.406950px;}
.y12e{bottom:342.660450px;}
.y48{bottom:342.726600px;}
.y14c{bottom:347.984850px;}
.y1a0{bottom:349.056900px;}
.yd2{bottom:350.091600px;}
.yf5{bottom:350.506950px;}
.y9a{bottom:351.850350px;}
.y16b{bottom:355.680900px;}
.y13d{bottom:358.228200px;}
.y1a{bottom:358.517550px;}
.yf9{bottom:358.606950px;}
.y75{bottom:360.822000px;}
.y47{bottom:362.526600px;}
.yd1{bottom:366.291600px;}
.yf4{bottom:366.706950px;}
.y19f{bottom:367.056900px;}
.y12d{bottom:368.979750px;}
.y99{bottom:371.650350px;}
.y16a{bottom:375.480900px;}
.y13c{bottom:378.028200px;}
.y74{bottom:380.622000px;}
.y46{bottom:382.326600px;}
.yd0{bottom:382.491600px;}
.y19e{bottom:385.056900px;}
.yf3{bottom:387.549450px;}
.ycb{bottom:390.591600px;}
.y98{bottom:391.450350px;}
.y169{bottom:395.280900px;}
.y13b{bottom:397.828200px;}
.y19{bottom:398.117550px;}
.ycf{bottom:398.691600px;}
.y73{bottom:400.422000px;}
.y45{bottom:402.126600px;}
.y19d{bottom:403.056900px;}
.yf2{bottom:403.749450px;}
.y12c{bottom:403.990500px;}
.yca{bottom:406.791750px;}
.y97{bottom:411.250350px;}
.yce{bottom:414.891750px;}
.y168{bottom:415.080900px;}
.y13a{bottom:417.628350px;}
.y18{bottom:417.917550px;}
.yf1{bottom:419.949450px;}
.y72{bottom:420.222000px;}
.y19c{bottom:421.056900px;}
.y44{bottom:421.926600px;}
.y12b{bottom:423.790500px;}
.y96{bottom:431.050350px;}
.ycd{bottom:431.091600px;}
.y167{bottom:434.880900px;}
.yf0{bottom:436.149450px;}
.y110{bottom:437.428200px;}
.y19b{bottom:439.056900px;}
.y71{bottom:440.022000px;}
.y43{bottom:441.726600px;}
.y12a{bottom:443.590500px;}
.ycc{bottom:447.291750px;}
.y95{bottom:450.850350px;}
.yef{bottom:452.349450px;}
.y166{bottom:454.680900px;}
.y19a{bottom:457.056900px;}
.y10f{bottom:457.228200px;}
.y17{bottom:457.517550px;}
.y70{bottom:459.822000px;}
.y42{bottom:461.526600px;}
.yc9{bottom:469.079100px;}
.y94{bottom:470.650350px;}
.yee{bottom:473.191950px;}
.y165{bottom:474.480900px;}
.y199{bottom:475.056900px;}
.y10e{bottom:477.028200px;}
.y16{bottom:477.317550px;}
.y6f{bottom:479.622000px;}
.y41{bottom:481.326600px;}
.y129{bottom:484.650300px;}
.yc8{bottom:485.278950px;}
.yed{bottom:489.391950px;}
.y93{bottom:490.450350px;}
.y198{bottom:493.056900px;}
.yc4{bottom:493.379100px;}
.y164{bottom:494.280900px;}
.y10d{bottom:496.828200px;}
.y15{bottom:497.117550px;}
.y6e{bottom:499.422000px;}
.y40{bottom:501.126600px;}
.yc7{bottom:501.479100px;}
.y128{bottom:504.450300px;}
.yec{bottom:505.591950px;}
.yc3{bottom:509.579100px;}
.y92{bottom:510.250350px;}
.y197{bottom:511.056900px;}
.y163{bottom:514.080900px;}
.y10c{bottom:516.628350px;}
.y14{bottom:516.917550px;}
.yc6{bottom:517.679100px;}
.y6d{bottom:519.222000px;}
.y3f{bottom:520.926600px;}
.yeb{bottom:521.791950px;}
.y127{bottom:524.250300px;}
.y196{bottom:529.056900px;}
.y91{bottom:530.050350px;}
.yc5{bottom:533.879100px;}
.y162{bottom:533.880900px;}
.y10b{bottom:536.428200px;}
.y13{bottom:536.717550px;}
.y6c{bottom:539.022000px;}
.y3e{bottom:540.726600px;}
.yea{bottom:543.061500px;}
.y126{bottom:544.050300px;}
.y195{bottom:547.056900px;}
.y178{bottom:547.058100px;}
.y90{bottom:549.850350px;}
.y161{bottom:553.680900px;}
.yc2{bottom:555.666450px;}
.y10a{bottom:556.228200px;}
.y12{bottom:556.517550px;}
.y6b{bottom:558.822000px;}
.y3d{bottom:560.526600px;}
.y125{bottom:563.850300px;}
.y194{bottom:565.056900px;}
.ye9{bottom:567.937650px;}
.y8f{bottom:569.650350px;}
.yc1{bottom:571.866450px;}
.y160{bottom:573.480900px;}
.y109{bottom:576.028200px;}
.y11{bottom:576.317550px;}
.y6a{bottom:578.622000px;}
.ybc{bottom:579.966450px;}
.y3c{bottom:580.326600px;}
.y193{bottom:583.056900px;}
.y124{bottom:583.650300px;}
.yc0{bottom:588.066450px;}
.y8e{bottom:589.450350px;}
.y15f{bottom:593.280900px;}
.y108{bottom:595.828200px;}
.y10{bottom:596.117550px;}
.ybb{bottom:596.166450px;}
.y69{bottom:598.422000px;}
.y3b{bottom:600.126600px;}
.y192{bottom:601.056900px;}
.ye8{bottom:602.404650px;}
.y123{bottom:603.450300px;}
.ybf{bottom:604.266450px;}
.y8d{bottom:609.250350px;}
.y139{bottom:610.710150px;}
.yba{bottom:612.366450px;}
.y107{bottom:615.628350px;}
.yf{bottom:615.917550px;}
.y68{bottom:618.222000px;}
.y191{bottom:619.056900px;}
.y3a{bottom:619.926600px;}
.ybe{bottom:620.466450px;}
.ye7{bottom:622.204650px;}
.y8c{bottom:629.050350px;}
.y14b{bottom:629.677800px;}
.y15e{bottom:630.088800px;}
.y106{bottom:635.428200px;}
.ybd{bottom:636.666450px;}
.y190{bottom:637.056900px;}
.y67{bottom:638.022000px;}
.y122{bottom:638.132250px;}
.y39{bottom:639.726600px;}
.y8b{bottom:648.850350px;}
.y18f{bottom:655.056900px;}
.y66{bottom:657.822000px;}
.yb9{bottom:658.453800px;}
.y38{bottom:659.526600px;}
.ye6{bottom:663.264450px;}
.y8a{bottom:668.650350px;}
.y105{bottom:670.110150px;}
.y18e{bottom:673.056900px;}
.yb8{bottom:674.653800px;}
.y65{bottom:677.622000px;}
.ye{bottom:678.237150px;}
.y37{bottom:679.326600px;}
.y15d{bottom:681.452550px;}
.ye5{bottom:683.064450px;}
.y121{bottom:685.431600px;}
.y89{bottom:688.450350px;}
.yb7{bottom:690.853800px;}
.y18d{bottom:691.056900px;}
.yd{bottom:692.637150px;}
.y64{bottom:697.422000px;}
.y36{bottom:699.126600px;}
.y15c{bottom:701.252550px;}
.y120{bottom:701.631600px;}
.ye4{bottom:702.864450px;}
.yc{bottom:707.037150px;}
.yb3{bottom:707.053800px;}
.y88{bottom:708.250350px;}
.y18c{bottom:709.056900px;}
.y63{bottom:717.222000px;}
.y11f{bottom:717.831600px;}
.y35{bottom:718.926600px;}
.y15b{bottom:721.052550px;}
.yb{bottom:721.437150px;}
.ye3{bottom:722.664450px;}
.yb2{bottom:723.253800px;}
.y18b{bottom:727.056900px;}
.y87{bottom:728.050350px;}
.y62{bottom:737.022000px;}
.y34{bottom:738.726600px;}
.yb6{bottom:739.453800px;}
.y11e{bottom:739.618950px;}
.y15a{bottom:740.852550px;}
.ye2{bottom:742.464450px;}
.y18a{bottom:745.056900px;}
.y86{bottom:747.850350px;}
.yb5{bottom:755.653800px;}
.y11d{bottom:755.818950px;}
.y61{bottom:756.822000px;}
.y33{bottom:758.526600px;}
.ya{bottom:758.896950px;}
.y159{bottom:760.652550px;}
.ye1{bottom:762.264450px;}
.y189{bottom:763.056900px;}
.y85{bottom:767.650350px;}
.yb4{bottom:771.853800px;}
.y60{bottom:776.622000px;}
.y11c{bottom:777.606300px;}
.y32{bottom:778.326600px;}
.y158{bottom:780.452700px;}
.y188{bottom:781.056900px;}
.ye0{bottom:782.064450px;}
.y84{bottom:787.450350px;}
.y9{bottom:791.297100px;}
.y11b{bottom:793.806300px;}
.y5f{bottom:796.422000px;}
.y31{bottom:798.126600px;}
.y187{bottom:799.056900px;}
.y157{bottom:800.252550px;}
.y83{bottom:807.250350px;}
.yb1{bottom:808.303800px;}
.yad{bottom:809.072550px;}
.y11a{bottom:815.593650px;}
.y5e{bottom:816.221850px;}
.ydf{bottom:816.746400px;}
.y186{bottom:817.056900px;}
.y30{bottom:817.926600px;}
.y156{bottom:820.052550px;}
.yb0{bottom:824.503800px;}
.yac{bottom:825.272400px;}
.y119{bottom:831.793650px;}
.y185{bottom:835.056900px;}
.y5d{bottom:836.022000px;}
.y2f{bottom:837.726600px;}
.y155{bottom:839.852550px;}
.yaf{bottom:840.703800px;}
.y8{bottom:840.705000px;}
.yab{bottom:841.472550px;}
.y82{bottom:844.058100px;}
.y184{bottom:853.056900px;}
.y118{bottom:853.581000px;}
.y5c{bottom:855.822000px;}
.yae{bottom:856.903800px;}
.y2e{bottom:857.526600px;}
.y154{bottom:859.652550px;}
.yde{bottom:863.858250px;}
.y117{bottom:869.781150px;}
.y5b{bottom:875.622000px;}
.y2d{bottom:877.326600px;}
.yaa{bottom:878.691150px;}
.y153{bottom:879.452700px;}
.y116{bottom:885.981150px;}
.y183{bottom:892.316700px;}
.y7{bottom:894.705000px;}
.ya9{bottom:894.891150px;}
.y5a{bottom:895.422000px;}
.y2c{bottom:897.126600px;}
.y152{bottom:899.252550px;}
.y115{bottom:907.768500px;}
.y182{bottom:908.516700px;}
.ya8{bottom:911.091150px;}
.y59{bottom:915.221850px;}
.y2b{bottom:916.926600px;}
.y151{bottom:919.052550px;}
.ya4{bottom:919.191150px;}
.y114{bottom:923.968350px;}
.y181{bottom:924.716700px;}
.ya7{bottom:927.291150px;}
.y58{bottom:935.022000px;}
.y2a{bottom:936.726600px;}
.y150{bottom:938.852550px;}
.y180{bottom:940.916700px;}
.ya6{bottom:943.491150px;}
.y113{bottom:945.755850px;}
.y6{bottom:948.705000px;}
.y57{bottom:954.822000px;}
.y29{bottom:956.526600px;}
.y14f{bottom:958.652550px;}
.ya5{bottom:959.691150px;}
.y14a{bottom:966.118050px;}
.y112{bottom:967.543200px;}
.y56{bottom:974.622000px;}
.y28{bottom:976.326600px;}
.y17f{bottom:978.376500px;}
.y14e{bottom:978.452700px;}
.y111{bottom:983.743200px;}
.y55{bottom:994.422000px;}
.y27{bottom:996.126600px;}
.y14d{bottom:998.252550px;}
.y54{bottom:1014.221850px;}
.y17e{bottom:1021.576500px;}
.y26{bottom:1032.934500px;}
.y53{bottom:1034.022000px;}
.y3{bottom:1082.430750px;}
.y24{bottom:1086.066150px;}
.y52{bottom:1086.087450px;}
.y2{bottom:1097.430750px;}
.hc{height:29.160000px;}
.hd{height:29.160600px;}
.h8{height:34.322286px;}
.h17{height:40.500000px;}
.h7{height:40.944000px;}
.h13{height:42.902857px;}
.h3{height:43.031250px;}
.hf{height:44.353800px;}
.h6{height:46.062000px;}
.he{height:47.142000px;}
.h14{height:51.180000px;}
.h10{height:51.504000px;}
.ha{height:53.789062px;}
.h2{height:54.000000px;}
.h9{height:56.298000px;}
.h15{height:61.416000px;}
.hb{height:62.856000px;}
.h5{height:74.844000px;}
.h11{height:78.461400px;}
.h12{height:78.462000px;}
.h16{height:99.792000px;}
.h4{height:124.740000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:829.134000px;}
.w1{width:829.500000px;}
.x0{left:0.000000px;}
.x2{left:93.543300px;}
.xa{left:99.730800px;}
.x6{left:114.803100px;}
.x14{left:145.679250px;}
.xe{left:187.677750px;}
.x7{left:191.093550px;}
.x1f{left:199.715400px;}
.xd{left:216.018150px;}
.x9{left:237.492300px;}
.x24{left:239.859900px;}
.xb{left:245.173200px;}
.xc{left:257.929200px;}
.x1e{left:284.392200px;}
.x25{left:293.385900px;}
.x23{left:309.496800px;}
.x22{left:382.664550px;}
.x8{left:388.950900px;}
.x5{left:404.125650px;}
.x1d{left:420.004500px;}
.x16{left:421.020600px;}
.x15{left:425.542950px;}
.x4{left:444.778050px;}
.x10{left:459.470700px;}
.xf{left:466.220700px;}
.x13{left:478.775700px;}
.x17{left:488.301600px;}
.x3{left:490.094400px;}
.x18{left:494.768250px;}
.x26{left:538.863600px;}
.x11{left:549.452100px;}
.x1a{left:552.415350px;}
.x19{left:567.231300px;}
.x1b{left:618.246600px;}
.x12{left:620.128350px;}
.x1c{left:621.628500px;}
.x20{left:643.498200px;}
.x21{left:645.691350px;}
.x1{left:710.858100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v3{vertical-align:-1.518400pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.846400pt;}
.v1{vertical-align:15.984000pt;}
.v4{vertical-align:28.799467pt;}
.ls3{letter-spacing:-4.800000pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.056000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.798933pt;}
.ls0{letter-spacing:0.821333pt;}
.ls4{letter-spacing:0.896000pt;}
.wsb9{word-spacing:-48.000000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws1{word-spacing:-15.488000pt;}
.ws7b{word-spacing:-15.360000pt;}
.ws4b{word-spacing:-14.666667pt;}
.wsb4{word-spacing:-14.314667pt;}
.wsb1{word-spacing:-13.962667pt;}
.wsb5{word-spacing:-13.610667pt;}
.ws6a{word-spacing:-12.000000pt;}
.ws6c{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6b{word-spacing:-6.996000pt;}
.ws88{word-spacing:-3.226667pt;}
.wsb2{word-spacing:-3.168000pt;}
.ws66{word-spacing:-2.874667pt;}
.ws92{word-spacing:-2.816000pt;}
.ws49{word-spacing:-2.757333pt;}
.wsa1{word-spacing:-2.752000pt;}
.ws15{word-spacing:-2.640000pt;}
.ws37{word-spacing:-2.581333pt;}
.wsa3{word-spacing:-2.522667pt;}
.wscd{word-spacing:-2.453333pt;}
.ws63{word-spacing:-2.346667pt;}
.ws73{word-spacing:-2.304000pt;}
.wsb7{word-spacing:-2.288000pt;}
.ws9{word-spacing:-2.229333pt;}
.ws7f{word-spacing:-2.170667pt;}
.ws2b{word-spacing:-2.112000pt;}
.ws11{word-spacing:-2.053333pt;}
.wsbc{word-spacing:-2.026667pt;}
.ws4{word-spacing:-1.994667pt;}
.ws56{word-spacing:-1.936000pt;}
.ws67{word-spacing:-1.877333pt;}
.wsa6{word-spacing:-1.818667pt;}
.ws8d{word-spacing:-1.760000pt;}
.wsc0{word-spacing:-1.706667pt;}
.ws93{word-spacing:-1.701333pt;}
.ws1f{word-spacing:-1.642667pt;}
.ws21{word-spacing:-1.584000pt;}
.ws4a{word-spacing:-1.525333pt;}
.wsd7{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.466667pt;}
.ws72{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.408000pt;}
.wsa0{word-spacing:-1.349333pt;}
.ws51{word-spacing:-1.290667pt;}
.ws83{word-spacing:-1.232000pt;}
.ws8e{word-spacing:-1.173333pt;}
.wsce{word-spacing:-1.120000pt;}
.ws5b{word-spacing:-1.114667pt;}
.wsd5{word-spacing:-1.066667pt;}
.ws40{word-spacing:-1.056000pt;}
.ws60{word-spacing:-0.997333pt;}
.ws6f{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.938667pt;}
.ws33{word-spacing:-0.896000pt;}
.wsb0{word-spacing:-0.880000pt;}
.wsbd{word-spacing:-0.853333pt;}
.ws34{word-spacing:-0.821333pt;}
.wsd0{word-spacing:-0.800000pt;}
.ws99{word-spacing:-0.762667pt;}
.ws3b{word-spacing:-0.704000pt;}
.wsb6{word-spacing:-0.645333pt;}
.ws5d{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.528000pt;}
.wsc5{word-spacing:-0.480000pt;}
.ws80{word-spacing:-0.469333pt;}
.ws50{word-spacing:-0.448000pt;}
.ws6e{word-spacing:-0.432000pt;}
.ws42{word-spacing:-0.410667pt;}
.wsbb{word-spacing:-0.373333pt;}
.ws4d{word-spacing:-0.352000pt;}
.ws97{word-spacing:-0.293333pt;}
.ws74{word-spacing:-0.240000pt;}
.ws30{word-spacing:-0.234667pt;}
.wsbf{word-spacing:-0.213333pt;}
.ws75{word-spacing:-0.192000pt;}
.ws52{word-spacing:-0.176000pt;}
.wsd4{word-spacing:-0.160000pt;}
.ws46{word-spacing:-0.117333pt;}
.ws3{word-spacing:-0.085333pt;}
.ws1e{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.053333pt;}
.ws25{word-spacing:0.058667pt;}
.ws20{word-spacing:0.117333pt;}
.ws1d{word-spacing:0.176000pt;}
.ws14{word-spacing:0.234667pt;}
.ws1a{word-spacing:0.293333pt;}
.ws65{word-spacing:0.352000pt;}
.ws7{word-spacing:0.410667pt;}
.ws69{word-spacing:0.469333pt;}
.ws59{word-spacing:0.528000pt;}
.ws12{word-spacing:0.586667pt;}
.ws35{word-spacing:0.645333pt;}
.wsc1{word-spacing:0.693333pt;}
.ws5a{word-spacing:0.704000pt;}
.wsa5{word-spacing:0.762667pt;}
.ws76{word-spacing:0.768000pt;}
.ws71{word-spacing:0.816000pt;}
.wsae{word-spacing:0.821333pt;}
.ws29{word-spacing:0.880000pt;}
.ws7a{word-spacing:0.938667pt;}
.ws6{word-spacing:0.997333pt;}
.wscc{word-spacing:1.013333pt;}
.ws43{word-spacing:1.056000pt;}
.wsa4{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.173333pt;}
.ws13{word-spacing:1.232000pt;}
.ws70{word-spacing:1.248000pt;}
.ws5e{word-spacing:1.290667pt;}
.ws7e{word-spacing:1.349333pt;}
.wsca{word-spacing:1.386667pt;}
.ws19{word-spacing:1.408000pt;}
.ws91{word-spacing:1.466667pt;}
.ws95{word-spacing:1.470715pt;}
.wsa{word-spacing:1.525333pt;}
.ws82{word-spacing:1.584000pt;}
.ws85{word-spacing:1.642667pt;}
.ws3e{word-spacing:1.701333pt;}
.wsc9{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws45{word-spacing:1.818667pt;}
.ws18{word-spacing:1.877333pt;}
.ws87{word-spacing:1.936000pt;}
.ws2a{word-spacing:1.994667pt;}
.ws1c{word-spacing:2.112000pt;}
.ws78{word-spacing:2.170667pt;}
.ws3f{word-spacing:2.229333pt;}
.wsbe{word-spacing:2.240000pt;}
.ws61{word-spacing:2.288000pt;}
.ws86{word-spacing:2.346667pt;}
.ws5{word-spacing:2.405333pt;}
.ws5c{word-spacing:2.464000pt;}
.wsc8{word-spacing:2.506667pt;}
.ws57{word-spacing:2.522667pt;}
.ws23{word-spacing:2.581333pt;}
.wsd2{word-spacing:2.613333pt;}
.ws55{word-spacing:2.640000pt;}
.ws3d{word-spacing:2.698667pt;}
.ws64{word-spacing:2.757333pt;}
.ws6d{word-spacing:2.784000pt;}
.ws9f{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.874667pt;}
.ws9b{word-spacing:2.933333pt;}
.ws39{word-spacing:2.992000pt;}
.ws3a{word-spacing:3.050667pt;}
.wsc{word-spacing:3.109333pt;}
.wsc6{word-spacing:3.146667pt;}
.ws1b{word-spacing:3.226667pt;}
.wscb{word-spacing:3.253333pt;}
.ws27{word-spacing:3.285333pt;}
.wscf{word-spacing:3.306667pt;}
.ws22{word-spacing:3.402667pt;}
.ws54{word-spacing:3.461333pt;}
.wsd{word-spacing:3.520000pt;}
.ws84{word-spacing:3.754667pt;}
.ws47{word-spacing:3.813333pt;}
.ws3c{word-spacing:3.872000pt;}
.ws26{word-spacing:3.930667pt;}
.ws62{word-spacing:3.989333pt;}
.wsd6{word-spacing:4.000000pt;}
.wsa2{word-spacing:4.048000pt;}
.wsf{word-spacing:4.106667pt;}
.ws77{word-spacing:4.165333pt;}
.ws53{word-spacing:4.224000pt;}
.ws48{word-spacing:4.282667pt;}
.ws44{word-spacing:4.341333pt;}
.ws98{word-spacing:4.400000pt;}
.ws2d{word-spacing:4.458667pt;}
.ws32{word-spacing:4.517333pt;}
.wsa8{word-spacing:4.576000pt;}
.ws17{word-spacing:4.634667pt;}
.ws36{word-spacing:4.693333pt;}
.ws24{word-spacing:4.810667pt;}
.wsc7{word-spacing:4.853333pt;}
.ws94{word-spacing:4.928000pt;}
.ws58{word-spacing:5.045333pt;}
.ws9e{word-spacing:5.104000pt;}
.wsc3{word-spacing:5.120000pt;}
.ws10{word-spacing:5.162667pt;}
.ws9d{word-spacing:5.221333pt;}
.ws28{word-spacing:5.280000pt;}
.ws5f{word-spacing:5.397333pt;}
.wsab{word-spacing:5.456000pt;}
.wsa7{word-spacing:5.514667pt;}
.wsaa{word-spacing:5.573333pt;}
.wsb3{word-spacing:5.632000pt;}
.ws38{word-spacing:5.749333pt;}
.wsc2{word-spacing:5.813333pt;}
.ws4c{word-spacing:5.866667pt;}
.wsac{word-spacing:5.925333pt;}
.ws2e{word-spacing:6.101333pt;}
.wsba{word-spacing:6.186667pt;}
.ws8f{word-spacing:6.277333pt;}
.wsd3{word-spacing:6.293333pt;}
.wsb{word-spacing:6.394667pt;}
.ws9a{word-spacing:6.453333pt;}
.ws90{word-spacing:6.512000pt;}
.ws81{word-spacing:6.629333pt;}
.wsa9{word-spacing:6.746667pt;}
.wsad{word-spacing:7.040000pt;}
.ws79{word-spacing:7.098667pt;}
.wsd1{word-spacing:7.200000pt;}
.ws31{word-spacing:7.450667pt;}
.wse{word-spacing:7.509333pt;}
.ws96{word-spacing:8.682667pt;}
.wsaf{word-spacing:60.954667pt;}
.ws7c{word-spacing:77.654400pt;}
.ws8b{word-spacing:107.761067pt;}
.ws89{word-spacing:130.666667pt;}
.ws8a{word-spacing:163.761067pt;}
.ws7d{word-spacing:179.293333pt;}
.ws9c{word-spacing:249.312000pt;}
.wsb8{word-spacing:1016.292800pt;}
.ws8c{word-spacing:1755.143467pt;}
._28{margin-left:-18.893333pt;}
._29{margin-left:-16.957333pt;}
._a{margin-left:-15.018667pt;}
._2e{margin-left:-14.080000pt;}
._2d{margin-left:-11.105067pt;}
._5{margin-left:-9.888000pt;}
._2c{margin-left:-8.568000pt;}
._7{margin-left:-7.557867pt;}
._9{margin-left:-6.452267pt;}
._8{margin-left:-5.367467pt;}
._6{margin-left:-3.987733pt;}
._0{margin-left:-2.342400pt;}
._3{margin-left:-1.193600pt;}
._2{width:0.944000pt;}
._4{width:2.115200pt;}
._2b{width:3.186133pt;}
._1{width:5.920000pt;}
._c{width:8.112000pt;}
._b{width:9.360000pt;}
._d{width:11.664000pt;}
._2a{width:20.160000pt;}
._18{width:50.866133pt;}
._23{width:81.335467pt;}
._e{width:103.178667pt;}
._25{width:119.761067pt;}
._1a{width:142.666667pt;}
._1b{width:150.435733pt;}
._1d{width:157.889600pt;}
._11{width:167.293333pt;}
._19{width:181.889600pt;}
._15{width:189.677333pt;}
._12{width:191.293333pt;}
._13{width:229.094933pt;}
._21{width:261.514667pt;}
._1e{width:281.470933pt;}
._1c{width:391.054933pt;}
._17{width:472.208533pt;}
._14{width:561.062933pt;}
._16{width:568.166933pt;}
._20{width:584.776533pt;}
._10{width:594.950933pt;}
._24{width:618.359467pt;}
._f{width:664.516267pt;}
._27{width:817.834667pt;}
._1f{width:903.502933pt;}
._22{width:1251.761067pt;}
._26{width:1334.087467pt;}
.fs7{font-size:27.984000pt;}
.fs8{font-size:34.202667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:59.874400pt;}
.y25{bottom:61.836000pt;}
.y5{bottom:72.977733pt;}
.y4{bottom:85.777733pt;}
.y1ad{bottom:102.272800pt;}
.y177{bottom:104.960800pt;}
.y104{bottom:107.136933pt;}
.y149{bottom:107.225067pt;}
.y81{bottom:109.530533pt;}
.ydd{bottom:110.169333pt;}
.y51{bottom:110.630133pt;}
.ya3{bottom:111.180933pt;}
.y23{bottom:111.866400pt;}
.y1ac{bottom:118.272800pt;}
.y176{bottom:122.560800pt;}
.y103{bottom:124.736933pt;}
.y148{bottom:124.825067pt;}
.y138{bottom:125.821067pt;}
.y80{bottom:127.130667pt;}
.ydc{bottom:127.769200pt;}
.y50{bottom:128.230133pt;}
.ya2{bottom:128.781067pt;}
.y1ab{bottom:134.272800pt;}
.y175{bottom:140.160800pt;}
.y147{bottom:142.425067pt;}
.y7f{bottom:144.730667pt;}
.y137{bottom:145.187600pt;}
.ydb{bottom:145.369200pt;}
.y4f{bottom:145.830133pt;}
.ya1{bottom:146.381067pt;}
.y1aa{bottom:150.272800pt;}
.y17d{bottom:154.355733pt;}
.y102{bottom:157.201733pt;}
.y174{bottom:157.760800pt;}
.y136{bottom:159.587733pt;}
.y146{bottom:160.025200pt;}
.y22{bottom:160.282267pt;}
.y7e{bottom:162.330667pt;}
.yda{bottom:162.969200pt;}
.y4e{bottom:163.430133pt;}
.ya0{bottom:163.981067pt;}
.y1a9{bottom:166.272800pt;}
.y17c{bottom:171.955867pt;}
.y173{bottom:175.360800pt;}
.y101{bottom:175.728400pt;}
.y145{bottom:177.625200pt;}
.y21{bottom:177.882267pt;}
.y135{bottom:178.954267pt;}
.y7d{bottom:179.930667pt;}
.yd9{bottom:180.569200pt;}
.y1a8{bottom:182.272800pt;}
.y17b{bottom:189.555867pt;}
.y4d{bottom:192.368800pt;}
.y172{bottom:192.960800pt;}
.y100{bottom:194.255067pt;}
.y144{bottom:195.225067pt;}
.y9f{bottom:196.699200pt;}
.y7c{bottom:197.530533pt;}
.y1a7{bottom:198.272800pt;}
.y134{bottom:198.320800pt;}
.y17a{bottom:207.155867pt;}
.y171{bottom:210.560800pt;}
.y133{bottom:212.720800pt;}
.yff{bottom:212.781733pt;}
.y143{bottom:212.825067pt;}
.y20{bottom:213.082267pt;}
.y1a6{bottom:214.272800pt;}
.y7b{bottom:215.130667pt;}
.yd8{bottom:217.066933pt;}
.y179{bottom:224.755867pt;}
.y170{bottom:228.160800pt;}
.y1a5{bottom:230.272800pt;}
.y142{bottom:230.425067pt;}
.y1f{bottom:230.682267pt;}
.yfe{bottom:231.308400pt;}
.y132{bottom:232.087333pt;}
.y7a{bottom:232.730667pt;}
.y4c{bottom:234.245867pt;}
.yd7{bottom:235.462933pt;}
.y9e{bottom:242.355733pt;}
.y16f{bottom:245.760800pt;}
.yd6{bottom:245.866800pt;}
.y1a4{bottom:246.272800pt;}
.y141{bottom:248.025067pt;}
.y1e{bottom:248.282267pt;}
.yfd{bottom:249.835067pt;}
.y79{bottom:250.330667pt;}
.y131{bottom:251.453867pt;}
.y4b{bottom:251.845867pt;}
.y9d{bottom:259.955867pt;}
.y1a3{bottom:262.272800pt;}
.y16e{bottom:263.360800pt;}
.yd5{bottom:264.262933pt;}
.y140{bottom:265.625067pt;}
.y130{bottom:265.853867pt;}
.y1d{bottom:265.882267pt;}
.y78{bottom:267.930667pt;}
.yf8{bottom:268.361733pt;}
.y4a{bottom:269.445867pt;}
.yfc{bottom:275.561733pt;}
.y9c{bottom:277.555867pt;}
.y1a2{bottom:278.272800pt;}
.yd4{bottom:278.662800pt;}
.y16d{bottom:280.960800pt;}
.yf7{bottom:282.761733pt;}
.y13f{bottom:283.225200pt;}
.y1c{bottom:283.482267pt;}
.y12f{bottom:285.220400pt;}
.y77{bottom:285.530667pt;}
.y49{bottom:287.045867pt;}
.yfb{bottom:289.961733pt;}
.yd3{bottom:293.062933pt;}
.y1a1{bottom:294.272800pt;}
.y9b{bottom:295.155867pt;}
.yf6{bottom:297.161733pt;}
.y16c{bottom:298.560800pt;}
.y13e{bottom:300.825067pt;}
.y1b{bottom:301.082267pt;}
.y76{bottom:303.130667pt;}
.yfa{bottom:304.361733pt;}
.y12e{bottom:304.587067pt;}
.y48{bottom:304.645867pt;}
.y14c{bottom:309.319867pt;}
.y1a0{bottom:310.272800pt;}
.yd2{bottom:311.192533pt;}
.yf5{bottom:311.561733pt;}
.y9a{bottom:312.755867pt;}
.y16b{bottom:316.160800pt;}
.y13d{bottom:318.425067pt;}
.y1a{bottom:318.682267pt;}
.yf9{bottom:318.761733pt;}
.y75{bottom:320.730667pt;}
.y47{bottom:322.245867pt;}
.yd1{bottom:325.592533pt;}
.yf4{bottom:325.961733pt;}
.y19f{bottom:326.272800pt;}
.y12d{bottom:327.982000pt;}
.y99{bottom:330.355867pt;}
.y16a{bottom:333.760800pt;}
.y13c{bottom:336.025067pt;}
.y74{bottom:338.330667pt;}
.y46{bottom:339.845867pt;}
.yd0{bottom:339.992533pt;}
.y19e{bottom:342.272800pt;}
.yf3{bottom:344.488400pt;}
.ycb{bottom:347.192533pt;}
.y98{bottom:347.955867pt;}
.y169{bottom:351.360800pt;}
.y13b{bottom:353.625067pt;}
.y19{bottom:353.882267pt;}
.ycf{bottom:354.392533pt;}
.y73{bottom:355.930667pt;}
.y45{bottom:357.445867pt;}
.y19d{bottom:358.272800pt;}
.yf2{bottom:358.888400pt;}
.y12c{bottom:359.102667pt;}
.yca{bottom:361.592667pt;}
.y97{bottom:365.555867pt;}
.yce{bottom:368.792667pt;}
.y168{bottom:368.960800pt;}
.y13a{bottom:371.225200pt;}
.y18{bottom:371.482267pt;}
.yf1{bottom:373.288400pt;}
.y72{bottom:373.530667pt;}
.y19c{bottom:374.272800pt;}
.y44{bottom:375.045867pt;}
.y12b{bottom:376.702667pt;}
.y96{bottom:383.155867pt;}
.ycd{bottom:383.192533pt;}
.y167{bottom:386.560800pt;}
.yf0{bottom:387.688400pt;}
.y110{bottom:388.825067pt;}
.y19b{bottom:390.272800pt;}
.y71{bottom:391.130667pt;}
.y43{bottom:392.645867pt;}
.y12a{bottom:394.302667pt;}
.ycc{bottom:397.592667pt;}
.y95{bottom:400.755867pt;}
.yef{bottom:402.088400pt;}
.y166{bottom:404.160800pt;}
.y19a{bottom:406.272800pt;}
.y10f{bottom:406.425067pt;}
.y17{bottom:406.682267pt;}
.y70{bottom:408.730667pt;}
.y42{bottom:410.245867pt;}
.yc9{bottom:416.959200pt;}
.y94{bottom:418.355867pt;}
.yee{bottom:420.615067pt;}
.y165{bottom:421.760800pt;}
.y199{bottom:422.272800pt;}
.y10e{bottom:424.025067pt;}
.y16{bottom:424.282267pt;}
.y6f{bottom:426.330667pt;}
.y41{bottom:427.845867pt;}
.y129{bottom:430.800267pt;}
.yc8{bottom:431.359067pt;}
.yed{bottom:435.015067pt;}
.y93{bottom:435.955867pt;}
.y198{bottom:438.272800pt;}
.yc4{bottom:438.559200pt;}
.y164{bottom:439.360800pt;}
.y10d{bottom:441.625067pt;}
.y15{bottom:441.882267pt;}
.y6e{bottom:443.930667pt;}
.y40{bottom:445.445867pt;}
.yc7{bottom:445.759200pt;}
.y128{bottom:448.400267pt;}
.yec{bottom:449.415067pt;}
.yc3{bottom:452.959200pt;}
.y92{bottom:453.555867pt;}
.y197{bottom:454.272800pt;}
.y163{bottom:456.960800pt;}
.y10c{bottom:459.225200pt;}
.y14{bottom:459.482267pt;}
.yc6{bottom:460.159200pt;}
.y6d{bottom:461.530667pt;}
.y3f{bottom:463.045867pt;}
.yeb{bottom:463.815067pt;}
.y127{bottom:466.000267pt;}
.y196{bottom:470.272800pt;}
.y91{bottom:471.155867pt;}
.yc5{bottom:474.559200pt;}
.y162{bottom:474.560800pt;}
.y10b{bottom:476.825067pt;}
.y13{bottom:477.082267pt;}
.y6c{bottom:479.130667pt;}
.y3e{bottom:480.645867pt;}
.yea{bottom:482.721333pt;}
.y126{bottom:483.600267pt;}
.y195{bottom:486.272800pt;}
.y178{bottom:486.273867pt;}
.y90{bottom:488.755867pt;}
.y161{bottom:492.160800pt;}
.yc2{bottom:493.925733pt;}
.y10a{bottom:494.425067pt;}
.y12{bottom:494.682267pt;}
.y6b{bottom:496.730667pt;}
.y3d{bottom:498.245867pt;}
.y125{bottom:501.200267pt;}
.y194{bottom:502.272800pt;}
.ye9{bottom:504.833467pt;}
.y8f{bottom:506.355867pt;}
.yc1{bottom:508.325733pt;}
.y160{bottom:509.760800pt;}
.y109{bottom:512.025067pt;}
.y11{bottom:512.282267pt;}
.y6a{bottom:514.330667pt;}
.ybc{bottom:515.525733pt;}
.y3c{bottom:515.845867pt;}
.y193{bottom:518.272800pt;}
.y124{bottom:518.800267pt;}
.yc0{bottom:522.725733pt;}
.y8e{bottom:523.955867pt;}
.y15f{bottom:527.360800pt;}
.y108{bottom:529.625067pt;}
.y10{bottom:529.882267pt;}
.ybb{bottom:529.925733pt;}
.y69{bottom:531.930667pt;}
.y3b{bottom:533.445867pt;}
.y192{bottom:534.272800pt;}
.ye8{bottom:535.470800pt;}
.y123{bottom:536.400267pt;}
.ybf{bottom:537.125733pt;}
.y8d{bottom:541.555867pt;}
.y139{bottom:542.853467pt;}
.yba{bottom:544.325733pt;}
.y107{bottom:547.225200pt;}
.yf{bottom:547.482267pt;}
.y68{bottom:549.530667pt;}
.y191{bottom:550.272800pt;}
.y3a{bottom:551.045867pt;}
.ybe{bottom:551.525733pt;}
.ye7{bottom:553.070800pt;}
.y8c{bottom:559.155867pt;}
.y14b{bottom:559.713600pt;}
.y15e{bottom:560.078933pt;}
.y106{bottom:564.825067pt;}
.ybd{bottom:565.925733pt;}
.y190{bottom:566.272800pt;}
.y67{bottom:567.130667pt;}
.y122{bottom:567.228667pt;}
.y39{bottom:568.645867pt;}
.y8b{bottom:576.755867pt;}
.y18f{bottom:582.272800pt;}
.y66{bottom:584.730667pt;}
.yb9{bottom:585.292267pt;}
.y38{bottom:586.245867pt;}
.ye6{bottom:589.568400pt;}
.y8a{bottom:594.355867pt;}
.y105{bottom:595.653467pt;}
.y18e{bottom:598.272800pt;}
.yb8{bottom:599.692267pt;}
.y65{bottom:602.330667pt;}
.ye{bottom:602.877467pt;}
.y37{bottom:603.845867pt;}
.y15d{bottom:605.735600pt;}
.ye5{bottom:607.168400pt;}
.y121{bottom:609.272533pt;}
.y89{bottom:611.955867pt;}
.yb7{bottom:614.092267pt;}
.y18d{bottom:614.272800pt;}
.yd{bottom:615.677467pt;}
.y64{bottom:619.930667pt;}
.y36{bottom:621.445867pt;}
.y15c{bottom:623.335600pt;}
.y120{bottom:623.672533pt;}
.ye4{bottom:624.768400pt;}
.yc{bottom:628.477467pt;}
.yb3{bottom:628.492267pt;}
.y88{bottom:629.555867pt;}
.y18c{bottom:630.272800pt;}
.y63{bottom:637.530667pt;}
.y11f{bottom:638.072533pt;}
.y35{bottom:639.045867pt;}
.y15b{bottom:640.935600pt;}
.yb{bottom:641.277467pt;}
.ye3{bottom:642.368400pt;}
.yb2{bottom:642.892267pt;}
.y18b{bottom:646.272800pt;}
.y87{bottom:647.155867pt;}
.y62{bottom:655.130667pt;}
.y34{bottom:656.645867pt;}
.yb6{bottom:657.292267pt;}
.y11e{bottom:657.439067pt;}
.y15a{bottom:658.535600pt;}
.ye2{bottom:659.968400pt;}
.y18a{bottom:662.272800pt;}
.y86{bottom:664.755867pt;}
.yb5{bottom:671.692267pt;}
.y11d{bottom:671.839067pt;}
.y61{bottom:672.730667pt;}
.y33{bottom:674.245867pt;}
.ya{bottom:674.575067pt;}
.y159{bottom:676.135600pt;}
.ye1{bottom:677.568400pt;}
.y189{bottom:678.272800pt;}
.y85{bottom:682.355867pt;}
.yb4{bottom:686.092267pt;}
.y60{bottom:690.330667pt;}
.y11c{bottom:691.205600pt;}
.y32{bottom:691.845867pt;}
.y158{bottom:693.735733pt;}
.y188{bottom:694.272800pt;}
.ye0{bottom:695.168400pt;}
.y84{bottom:699.955867pt;}
.y9{bottom:703.375200pt;}
.y11b{bottom:705.605600pt;}
.y5f{bottom:707.930667pt;}
.y31{bottom:709.445867pt;}
.y187{bottom:710.272800pt;}
.y157{bottom:711.335600pt;}
.y83{bottom:717.555867pt;}
.yb1{bottom:718.492267pt;}
.yad{bottom:719.175600pt;}
.y11a{bottom:724.972133pt;}
.y5e{bottom:725.530533pt;}
.ydf{bottom:725.996800pt;}
.y186{bottom:726.272800pt;}
.y30{bottom:727.045867pt;}
.y156{bottom:728.935600pt;}
.yb0{bottom:732.892267pt;}
.yac{bottom:733.575467pt;}
.y119{bottom:739.372133pt;}
.y185{bottom:742.272800pt;}
.y5d{bottom:743.130667pt;}
.y2f{bottom:744.645867pt;}
.y155{bottom:746.535600pt;}
.yaf{bottom:747.292267pt;}
.y8{bottom:747.293333pt;}
.yab{bottom:747.975600pt;}
.y82{bottom:750.273867pt;}
.y184{bottom:758.272800pt;}
.y118{bottom:758.738667pt;}
.y5c{bottom:760.730667pt;}
.yae{bottom:761.692267pt;}
.y2e{bottom:762.245867pt;}
.y154{bottom:764.135600pt;}
.yde{bottom:767.874000pt;}
.y117{bottom:773.138800pt;}
.y5b{bottom:778.330667pt;}
.y2d{bottom:779.845867pt;}
.yaa{bottom:781.058800pt;}
.y153{bottom:781.735733pt;}
.y116{bottom:787.538800pt;}
.y183{bottom:793.170400pt;}
.y7{bottom:795.293333pt;}
.ya9{bottom:795.458800pt;}
.y5a{bottom:795.930667pt;}
.y2c{bottom:797.445867pt;}
.y152{bottom:799.335600pt;}
.y115{bottom:806.905333pt;}
.y182{bottom:807.570400pt;}
.ya8{bottom:809.858800pt;}
.y59{bottom:813.530533pt;}
.y2b{bottom:815.045867pt;}
.y151{bottom:816.935600pt;}
.ya4{bottom:817.058800pt;}
.y114{bottom:821.305200pt;}
.y181{bottom:821.970400pt;}
.ya7{bottom:824.258800pt;}
.y58{bottom:831.130667pt;}
.y2a{bottom:832.645867pt;}
.y150{bottom:834.535600pt;}
.y180{bottom:836.370400pt;}
.ya6{bottom:838.658800pt;}
.y113{bottom:840.671867pt;}
.y6{bottom:843.293333pt;}
.y57{bottom:848.730667pt;}
.y29{bottom:850.245867pt;}
.y14f{bottom:852.135600pt;}
.ya5{bottom:853.058800pt;}
.y14a{bottom:858.771600pt;}
.y112{bottom:860.038400pt;}
.y56{bottom:866.330667pt;}
.y28{bottom:867.845867pt;}
.y17f{bottom:869.668000pt;}
.y14e{bottom:869.735733pt;}
.y111{bottom:874.438400pt;}
.y55{bottom:883.930667pt;}
.y27{bottom:885.445867pt;}
.y14d{bottom:887.335600pt;}
.y54{bottom:901.530533pt;}
.y17e{bottom:908.068000pt;}
.y26{bottom:918.164000pt;}
.y53{bottom:919.130667pt;}
.y3{bottom:962.160667pt;}
.y24{bottom:965.392133pt;}
.y52{bottom:965.411067pt;}
.y2{bottom:975.494000pt;}
.hc{height:25.920000pt;}
.hd{height:25.920533pt;}
.h8{height:30.508698pt;}
.h17{height:36.000000pt;}
.h7{height:36.394667pt;}
.h13{height:38.135873pt;}
.h3{height:38.250000pt;}
.hf{height:39.425600pt;}
.h6{height:40.944000pt;}
.he{height:41.904000pt;}
.h14{height:45.493333pt;}
.h10{height:45.781333pt;}
.ha{height:47.812500pt;}
.h2{height:48.000000pt;}
.h9{height:50.042667pt;}
.h15{height:54.592000pt;}
.hb{height:55.872000pt;}
.h5{height:66.528000pt;}
.h11{height:69.743467pt;}
.h12{height:69.744000pt;}
.h16{height:88.704000pt;}
.h4{height:110.880000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:737.008000pt;}
.w1{width:737.333333pt;}
.x0{left:0.000000pt;}
.x2{left:83.149600pt;}
.xa{left:88.649600pt;}
.x6{left:102.047200pt;}
.x14{left:129.492667pt;}
.xe{left:166.824667pt;}
.x7{left:169.860933pt;}
.x1f{left:177.524800pt;}
.xd{left:192.016133pt;}
.x9{left:211.104267pt;}
.x24{left:213.208800pt;}
.xb{left:217.931733pt;}
.xc{left:229.270400pt;}
.x1e{left:252.793067pt;}
.x25{left:260.787467pt;}
.x23{left:275.108267pt;}
.x22{left:340.146267pt;}
.x8{left:345.734133pt;}
.x5{left:359.222800pt;}
.x1d{left:373.337333pt;}
.x16{left:374.240533pt;}
.x15{left:378.260400pt;}
.x4{left:395.358267pt;}
.x10{left:408.418400pt;}
.xf{left:414.418400pt;}
.x13{left:425.578400pt;}
.x17{left:434.045867pt;}
.x3{left:435.639467pt;}
.x18{left:439.794000pt;}
.x26{left:478.989867pt;}
.x11{left:488.401867pt;}
.x1a{left:491.035867pt;}
.x19{left:504.205600pt;}
.x1b{left:549.552533pt;}
.x12{left:551.225200pt;}
.x1c{left:552.558667pt;}
.x20{left:571.998400pt;}
.x21{left:573.947867pt;}
.x1{left:631.873867pt;}
}




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