
    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_3a01b34bdd773d7a85bc7499.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_55886725afff133d18356cab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_40b9ccee500f7aa8b8f95d3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_68a82e2c3080adce39408a42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_60a45447045ba07bd0d1cba9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfc03ad89afe4b109a442893.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_bfef77fa70b5ab138cbe0d87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_1dd89ffb09ab9230c3c90800.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_615ae19b1389098c2adecc70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_456201303f5a2d8a0854c81d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_90c34be6133564a459511f95.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;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_1cd5ab7c0f60d197b0bf202d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_94ace3295724fcaf094f589b.woff2')format("woff");}.fff{font-family:fff;line-height:0.943000;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);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.lsf{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.408900px;}
.ls6{letter-spacing:0.409050px;}
.ls8{letter-spacing:0.409800px;}
.ls9{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lsa{letter-spacing:7.602600px;}
.lse{letter-spacing:9.157200px;}
.lsb{letter-spacing:67.526400px;}
.ls7{letter-spacing:71.943600px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.wsaf{word-spacing:-13.332000px;}
.ws5{word-spacing:-12.720000px;}
.ws6d{word-spacing:-12.120000px;}
.wsb0{word-spacing:-11.448000px;}
.wse9{word-spacing:-10.638000px;}
.wsa{word-spacing:-10.176000px;}
.wsb1{word-spacing:-9.828000px;}
.ws9{word-spacing:-9.810000px;}
.ws6{word-spacing:-9.696000px;}
.ws3{word-spacing:-9.360000px;}
.wsea{word-spacing:-9.018000px;}
.ws7{word-spacing:-8.820000px;}
.ws8{word-spacing:-8.232000px;}
.ws2{word-spacing:-6.879600px;}
.ws4{word-spacing:-2.666400px;}
.ws5c{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws106{word-spacing:0.810000px;}
.wse8{word-spacing:3.888000px;}
.wsa6{word-spacing:4.320000px;}
.wsba{word-spacing:4.374000px;}
.wse7{word-spacing:4.536000px;}
.ws15{word-spacing:4.752000px;}
.ws27{word-spacing:4.860000px;}
.wsda{word-spacing:5.022000px;}
.wscc{word-spacing:5.292000px;}
.wsd1{word-spacing:5.562000px;}
.ws14{word-spacing:5.886000px;}
.wsd2{word-spacing:6.318000px;}
.ws84{word-spacing:6.420000px;}
.wsd0{word-spacing:6.480000px;}
.wscb{word-spacing:6.588000px;}
.ws2f{word-spacing:6.594000px;}
.ws74{word-spacing:6.600000px;}
.wsc{word-spacing:6.615000px;}
.wsfb{word-spacing:6.642000px;}
.ws33{word-spacing:6.660000px;}
.ws6a{word-spacing:6.720000px;}
.ws77{word-spacing:6.780000px;}
.ws8f{word-spacing:6.840000px;}
.ws36{word-spacing:6.900000px;}
.ws107{word-spacing:6.966000px;}
.wsd{word-spacing:7.065000px;}
.wsbd{word-spacing:7.074000px;}
.ws85{word-spacing:7.080000px;}
.ws3b{word-spacing:7.140000px;}
.ws4e{word-spacing:7.260000px;}
.wsc8{word-spacing:7.290000px;}
.ws26{word-spacing:7.320000px;}
.ws102{word-spacing:7.344000px;}
.ws7f{word-spacing:7.380000px;}
.ws89{word-spacing:7.440000px;}
.wsd9{word-spacing:7.452000px;}
.ws3d{word-spacing:7.500000px;}
.ws30{word-spacing:7.536000px;}
.ws13{word-spacing:7.560000px;}
.wsf9{word-spacing:7.614000px;}
.ws8a{word-spacing:7.620000px;}
.wsca{word-spacing:7.668000px;}
.ws97{word-spacing:7.740000px;}
.ws44{word-spacing:7.800000px;}
.wsd4{word-spacing:7.830000px;}
.ws91{word-spacing:7.860000px;}
.wsbf{word-spacing:7.884000px;}
.ws64{word-spacing:7.980000px;}
.ws3c{word-spacing:8.100000px;}
.ws34{word-spacing:8.160000px;}
.ws39{word-spacing:8.220000px;}
.wsbc{word-spacing:8.262000px;}
.ws8d{word-spacing:8.280000px;}
.ws53{word-spacing:8.340000px;}
.ws108{word-spacing:8.370000px;}
.ws56{word-spacing:8.400000px;}
.ws2b{word-spacing:8.460000px;}
.ws10{word-spacing:8.478000px;}
.ws32{word-spacing:8.484000px;}
.ws29{word-spacing:8.580000px;}
.ws101{word-spacing:8.586000px;}
.ws22{word-spacing:8.640000px;}
.wsc7{word-spacing:8.694000px;}
.ws86{word-spacing:8.700000px;}
.ws28{word-spacing:8.760000px;}
.ws6b{word-spacing:8.778000px;}
.ws10b{word-spacing:8.802000px;}
.wsac{word-spacing:8.820000px;}
.ws1a{word-spacing:8.856000px;}
.ws5d{word-spacing:8.880000px;}
.wsc2{word-spacing:8.910000px;}
.ws94{word-spacing:8.940000px;}
.ws6c{word-spacing:8.949000px;}
.ws88{word-spacing:9.000000px;}
.wsce{word-spacing:9.018000px;}
.ws35{word-spacing:9.060000px;}
.wsd3{word-spacing:9.072000px;}
.ws37{word-spacing:9.120000px;}
.ws1c{word-spacing:9.180000px;}
.ws76{word-spacing:9.198000px;}
.wsa4{word-spacing:9.240000px;}
.ws5a{word-spacing:9.261000px;}
.wsf1{word-spacing:9.288000px;}
.ws6e{word-spacing:9.300000px;}
.wsb7{word-spacing:9.360000px;}
.wsf7{word-spacing:9.396000px;}
.ws1e{word-spacing:9.420000px;}
.wsff{word-spacing:9.450000px;}
.ws23{word-spacing:9.540000px;}
.wsb{word-spacing:9.600000px;}
.ws21{word-spacing:9.660000px;}
.wsc0{word-spacing:9.666000px;}
.ws58{word-spacing:9.720000px;}
.wsf6{word-spacing:9.774000px;}
.wsf8{word-spacing:9.882000px;}
.ws73{word-spacing:9.900000px;}
.wsdf{word-spacing:9.936000px;}
.ws3e{word-spacing:9.960000px;}
.wsdd{word-spacing:9.990000px;}
.wsa7{word-spacing:10.020000px;}
.wsc1{word-spacing:10.044000px;}
.wsf5{word-spacing:10.098000px;}
.wsc9{word-spacing:10.152000px;}
.ws2c{word-spacing:10.200000px;}
.ws9f{word-spacing:10.260000px;}
.wseb{word-spacing:10.368000px;}
.wsa1{word-spacing:10.380000px;}
.ws78{word-spacing:10.440000px;}
.wscd{word-spacing:10.476000px;}
.wsfe{word-spacing:10.530000px;}
.ws63{word-spacing:10.620000px;}
.ws55{word-spacing:10.680000px;}
.ws75{word-spacing:10.692000px;}
.wsf{word-spacing:10.710000px;}
.ws6f{word-spacing:10.740000px;}
.wsf0{word-spacing:10.746000px;}
.ws2a{word-spacing:10.800000px;}
.wsc5{word-spacing:10.854000px;}
.ws50{word-spacing:10.920000px;}
.ws96{word-spacing:10.980000px;}
.wsfd{word-spacing:11.016000px;}
.ws1f{word-spacing:11.040000px;}
.ws4f{word-spacing:11.100000px;}
.ws38{word-spacing:11.160000px;}
.ws1d{word-spacing:11.280000px;}
.ws31{word-spacing:11.298000px;}
.ws59{word-spacing:11.340000px;}
.ws51{word-spacing:11.460000px;}
.wse6{word-spacing:11.556000px;}
.wsde{word-spacing:11.610000px;}
.ws41{word-spacing:11.640000px;}
.wsdc{word-spacing:11.664000px;}
.ws42{word-spacing:11.700000px;}
.wscf{word-spacing:11.718000px;}
.wsa0{word-spacing:11.820000px;}
.ws40{word-spacing:11.880000px;}
.wse5{word-spacing:12.096000px;}
.ws68{word-spacing:12.120000px;}
.ws20{word-spacing:12.180000px;}
.wsb3{word-spacing:12.240000px;}
.ws4b{word-spacing:12.300000px;}
.ws47{word-spacing:12.360000px;}
.ws80{word-spacing:12.480000px;}
.ws9d{word-spacing:12.540000px;}
.ws79{word-spacing:12.900000px;}
.wsd8{word-spacing:12.906000px;}
.ws7b{word-spacing:12.960000px;}
.wsbe{word-spacing:13.014000px;}
.ws9c{word-spacing:13.020000px;}
.wsbb{word-spacing:13.122000px;}
.ws99{word-spacing:13.140000px;}
.ws17{word-spacing:13.176000px;}
.wse3{word-spacing:13.230000px;}
.ws48{word-spacing:13.260000px;}
.ws54{word-spacing:13.320000px;}
.ws66{word-spacing:13.380000px;}
.ws67{word-spacing:13.440000px;}
.wsd6{word-spacing:13.446000px;}
.ws24{word-spacing:13.500000px;}
.ws100{word-spacing:13.554000px;}
.ws83{word-spacing:13.560000px;}
.ws81{word-spacing:13.620000px;}
.wsfc{word-spacing:13.662000px;}
.ws8c{word-spacing:13.740000px;}
.ws105{word-spacing:13.770000px;}
.wsae{word-spacing:13.800000px;}
.wse4{word-spacing:13.824000px;}
.ws69{word-spacing:13.860000px;}
.wsf3{word-spacing:13.878000px;}
.ws25{word-spacing:13.920000px;}
.wse{word-spacing:13.944000px;}
.wsa3{word-spacing:13.980000px;}
.ws57{word-spacing:14.040000px;}
.wsdb{word-spacing:14.094000px;}
.ws8b{word-spacing:14.100000px;}
.ws90{word-spacing:14.160000px;}
.wsaa{word-spacing:14.220000px;}
.ws8e{word-spacing:14.280000px;}
.wsa2{word-spacing:14.340000px;}
.ws87{word-spacing:14.460000px;}
.wsa8{word-spacing:14.580000px;}
.ws98{word-spacing:14.640000px;}
.ws2e{word-spacing:14.940000px;}
.wsd7{word-spacing:15.012000px;}
.wsab{word-spacing:15.120000px;}
.ws12{word-spacing:15.228000px;}
.ws2d{word-spacing:15.240000px;}
.ws5e{word-spacing:15.300000px;}
.wse2{word-spacing:15.390000px;}
.ws9b{word-spacing:15.420000px;}
.ws9e{word-spacing:15.480000px;}
.ws46{word-spacing:15.600000px;}
.wsd5{word-spacing:15.660000px;}
.ws72{word-spacing:15.780000px;}
.ws62{word-spacing:15.960000px;}
.ws60{word-spacing:16.140000px;}
.wsfa{word-spacing:16.146000px;}
.wsf2{word-spacing:16.200000px;}
.wsb6{word-spacing:16.260000px;}
.ws5b{word-spacing:16.320000px;}
.ws7a{word-spacing:16.380000px;}
.ws93{word-spacing:16.560000px;}
.ws70{word-spacing:16.620000px;}
.ws45{word-spacing:16.680000px;}
.ws95{word-spacing:16.740000px;}
.ws7c{word-spacing:16.860000px;}
.ws71{word-spacing:16.920000px;}
.ws19{word-spacing:17.064000px;}
.ws9a{word-spacing:17.100000px;}
.wse1{word-spacing:17.118000px;}
.ws7d{word-spacing:17.160000px;}
.wsc6{word-spacing:17.334000px;}
.wsef{word-spacing:17.496000px;}
.ws65{word-spacing:17.580000px;}
.wsf4{word-spacing:17.604000px;}
.ws3f{word-spacing:17.640000px;}
.ws4d{word-spacing:17.760000px;}
.wsb9{word-spacing:17.880000px;}
.ws11{word-spacing:18.090000px;}
.ws49{word-spacing:18.120000px;}
.ws43{word-spacing:18.240000px;}
.wsee{word-spacing:18.684000px;}
.ws3a{word-spacing:18.960000px;}
.ws92{word-spacing:19.020000px;}
.wsec{word-spacing:19.332000px;}
.ws82{word-spacing:19.440000px;}
.wsa5{word-spacing:19.500000px;}
.ws4c{word-spacing:19.560000px;}
.ws10a{word-spacing:19.710000px;}
.wsb4{word-spacing:19.860000px;}
.ws16{word-spacing:19.872000px;}
.wse0{word-spacing:19.926000px;}
.ws61{word-spacing:20.460000px;}
.ws7e{word-spacing:20.520000px;}
.ws4a{word-spacing:20.580000px;}
.wsb8{word-spacing:21.360000px;}
.wsb2{word-spacing:21.720000px;}
.wsed{word-spacing:21.816000px;}
.wsad{word-spacing:22.080000px;}
.ws109{word-spacing:23.004000px;}
.ws104{word-spacing:23.058000px;}
.wsa9{word-spacing:23.400000px;}
.ws5f{word-spacing:23.700000px;}
.wsc4{word-spacing:24.678000px;}
.ws52{word-spacing:26.820000px;}
.ws103{word-spacing:26.838000px;}
.wsc3{word-spacing:28.728000px;}
.wsb5{word-spacing:29.760000px;}
.ws1b{word-spacing:30.996000px;}
.ws18{word-spacing:34.074000px;}
._1a{margin-left:-28.334415px;}
._14{margin-left:-9.156044px;}
._18{margin-left:-8.033985px;}
._19{margin-left:-6.828015px;}
._b{margin-left:-5.316000px;}
._1{margin-left:-4.140000px;}
._5{margin-left:-3.060029px;}
._0{margin-left:-1.919985px;}
._4{width:1.068000px;}
._c{width:2.400029px;}
._9{width:3.491985px;}
._17{width:4.649971px;}
._2{width:6.240000px;}
._3{width:7.799985px;}
._6{width:9.299985px;}
._7{width:11.117985px;}
._8{width:12.137985px;}
._a{width:13.398000px;}
._16{width:14.687985px;}
._15{width:15.900000px;}
._13{width:17.597985px;}
._10{width:20.237971px;}
._f{width:21.510000px;}
._1b{width:27.321585px;}
._d{width:59.877000px;}
._12{width:78.360000px;}
._11{width:131.698171px;}
._e{width:133.679400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y3a{bottom:67.597501px;}
.y6b{bottom:68.565600px;}
.y6a{bottom:80.565600px;}
.y39{bottom:84.097501px;}
.yc2{bottom:85.275000px;}
.yab{bottom:85.426200px;}
.y69{bottom:92.565600px;}
.y14b{bottom:93.825450px;}
.y189{bottom:94.051200px;}
.y4{bottom:97.125005px;}
.ye9{bottom:104.775000px;}
.yaa{bottom:104.926200px;}
.y66{bottom:104.940600px;}
.y14a{bottom:110.325450px;}
.y188{bottom:110.551200px;}
.y67{bottom:121.815600px;}
.ye8{bottom:124.275000px;}
.ya9{bottom:124.426200px;}
.y149{bottom:126.825450px;}
.y187{bottom:127.051200px;}
.y130{bottom:134.775000px;}
.y23{bottom:139.264499px;}
.y148{bottom:143.325450px;}
.y186{bottom:143.551200px;}
.ye7{bottom:143.775000px;}
.ya8{bottom:154.426200px;}
.y147{bottom:159.825450px;}
.y185{bottom:160.051200px;}
.ye6{bottom:163.275000px;}
.y65{bottom:173.926200px;}
.y146{bottom:176.325450px;}
.y184{bottom:176.551200px;}
.ye5{bottom:182.775000px;}
.ya7{bottom:184.426200px;}
.y12f{bottom:190.069350px;}
.y145{bottom:192.825450px;}
.y183{bottom:193.051200px;}
.y64{bottom:193.426200px;}
.y1a{bottom:196.933500px;}
.ye4{bottom:202.275000px;}
.y38{bottom:205.426501px;}
.y144{bottom:209.325450px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y182{bottom:209.551200px;}
.y12e{bottom:209.569350px;}
.y63{bottom:212.926200px;}
.ye3{bottom:221.775000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y143{bottom:225.825450px;}
.y181{bottom:226.051200px;}
.y12d{bottom:229.069350px;}
.y62{bottom:232.426200px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ye2{bottom:241.275000px;}
.ya6{bottom:241.426200px;}
.y142{bottom:242.325450px;}
.y180{bottom:242.551200px;}
.y12c{bottom:248.569350px;}
.y61{bottom:251.926200px;}
.y141{bottom:258.825450px;}
.y17f{bottom:259.051200px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ye1{bottom:260.775000px;}
.ya5{bottom:260.926200px;}
.y12b{bottom:268.069350px;}
.y37{bottom:269.776501px;}
.y60{bottom:271.426200px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y140{bottom:275.325450px;}
.y17e{bottom:275.551200px;}
.ye0{bottom:280.275000px;}
.ya4{bottom:280.426200px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y12a{bottom:287.569350px;}
.y5f{bottom:290.926200px;}
.y13f{bottom:291.825450px;}
.y17d{bottom:292.051200px;}
.y101{bottom:299.775000px;}
.ya3{bottom:299.926200px;}
.y129{bottom:307.069350px;}
.y17c{bottom:308.551200px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y5e{bottom:310.426200px;}
.y13e{bottom:318.825450px;}
.y100{bottom:319.275000px;}
.ya2{bottom:319.426200px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y17b{bottom:325.051200px;}
.ydf{bottom:326.100600px;}
.y128{bottom:326.569350px;}
.y5d{bottom:329.926200px;}
.y36{bottom:334.126501px;}
.yff{bottom:338.775000px;}
.ya1{bottom:338.926200px;}
.y17a{bottom:341.551200px;}
.yde{bottom:345.600600px;}
.y127{bottom:346.069350px;}
.y11{bottom:348.133500px;}
.y5c{bottom:349.426200px;}
.y179{bottom:358.051200px;}
.yfe{bottom:358.275000px;}
.ya0{bottom:358.426200px;}
.ydd{bottom:365.100600px;}
.y126{bottom:365.569350px;}
.y5b{bottom:368.926200px;}
.y13d{bottom:374.100600px;}
.y178{bottom:374.551200px;}
.yfd{bottom:377.775000px;}
.y9f{bottom:377.926200px;}
.ydc{bottom:384.600600px;}
.y125{bottom:385.069350px;}
.y10{bottom:386.785499px;}
.y5a{bottom:388.426200px;}
.y177{bottom:391.051200px;}
.yfc{bottom:397.275000px;}
.y9e{bottom:397.426200px;}
.y13c{bottom:401.100600px;}
.y35{bottom:401.407500px;}
.ydb{bottom:404.100600px;}
.y124{bottom:404.569350px;}
.y176{bottom:407.551200px;}
.y59{bottom:407.926200px;}
.yf{bottom:408.044999px;}
.y9d{bottom:416.926200px;}
.yda{bottom:423.600600px;}
.y175{bottom:424.051200px;}
.y123{bottom:424.069350px;}
.y58{bottom:427.426200px;}
.y9c{bottom:436.426200px;}
.y174{bottom:440.551200px;}
.yd9{bottom:443.100600px;}
.y122{bottom:443.569350px;}
.yfb{bottom:444.325350px;}
.y57{bottom:446.926200px;}
.y9b{bottom:455.926200px;}
.y13b{bottom:456.375750px;}
.y173{bottom:457.051200px;}
.yd8{bottom:462.600600px;}
.y34{bottom:462.826501px;}
.y121{bottom:463.069350px;}
.yfa{bottom:463.825350px;}
.y56{bottom:466.426200px;}
.y172{bottom:473.551200px;}
.y9a{bottom:475.426200px;}
.yd7{bottom:482.100600px;}
.y120{bottom:482.569350px;}
.yf9{bottom:483.325350px;}
.y13a{bottom:483.375750px;}
.ye{bottom:484.864502px;}
.y55{bottom:485.926200px;}
.y171{bottom:490.051200px;}
.y99{bottom:494.926200px;}
.yd6{bottom:501.600600px;}
.y11f{bottom:502.069350px;}
.yf8{bottom:502.825350px;}
.yd{bottom:502.864502px;}
.y54{bottom:505.426200px;}
.y170{bottom:506.551200px;}
.y98{bottom:514.426200px;}
.yc{bottom:520.864502px;}
.yd5{bottom:521.100600px;}
.y11e{bottom:521.569350px;}
.yf7{bottom:522.325350px;}
.y16f{bottom:523.051200px;}
.y33{bottom:530.107500px;}
.y97{bottom:533.926200px;}
.y139{bottom:534.375750px;}
.y53{bottom:535.426200px;}
.yb{bottom:538.864499px;}
.y16e{bottom:539.551200px;}
.yd4{bottom:540.600600px;}
.y11d{bottom:541.069350px;}
.yf6{bottom:541.825350px;}
.y96{bottom:553.426200px;}
.y16d{bottom:556.051200px;}
.ya{bottom:556.864499px;}
.yd3{bottom:560.100600px;}
.y11c{bottom:560.569350px;}
.yf5{bottom:561.325350px;}
.y138{bottom:561.375750px;}
.y32{bottom:564.457501px;}
.y16c{bottom:572.551200px;}
.y95{bottom:572.926200px;}
.y31{bottom:579.457501px;}
.yd2{bottom:579.600600px;}
.y11b{bottom:580.069350px;}
.yf4{bottom:580.825350px;}
.y16b{bottom:589.051200px;}
.y94{bottom:592.426200px;}
.y30{bottom:594.457500px;}
.yd1{bottom:599.100600px;}
.y11a{bottom:599.569350px;}
.yf3{bottom:600.325350px;}
.yc1{bottom:600.480600px;}
.y16a{bottom:605.551200px;}
.y93{bottom:611.926200px;}
.y137{bottom:612.375750px;}
.yd0{bottom:618.600600px;}
.y119{bottom:619.069350px;}
.yf2{bottom:619.825350px;}
.yc0{bottom:619.980600px;}
.y79{bottom:620.213700px;}
.y169{bottom:622.051200px;}
.y92{bottom:631.426200px;}
.y52{bottom:632.926200px;}
.y78{bottom:633.713700px;}
.ycf{bottom:638.100600px;}
.y168{bottom:638.551200px;}
.y118{bottom:638.569350px;}
.yf1{bottom:639.325350px;}
.y136{bottom:639.375750px;}
.ybf{bottom:639.480600px;}
.y9{bottom:645.510000px;}
.y77{bottom:647.213700px;}
.y51{bottom:647.926200px;}
.y91{bottom:650.926200px;}
.y167{bottom:655.051200px;}
.yce{bottom:657.600600px;}
.y117{bottom:658.069350px;}
.yf0{bottom:658.825350px;}
.ybe{bottom:658.980600px;}
.y76{bottom:660.713700px;}
.y50{bottom:662.926200px;}
.y8{bottom:666.771000px;}
.y90{bottom:670.426200px;}
.y166{bottom:671.551200px;}
.y75{bottom:674.213700px;}
.y2f{bottom:675.817498px;}
.ycd{bottom:677.100600px;}
.y116{bottom:677.569350px;}
.y4f{bottom:677.926200px;}
.yef{bottom:678.325350px;}
.ybd{bottom:678.480600px;}
.y165{bottom:688.051200px;}
.y8f{bottom:689.926200px;}
.y4e{bottom:692.926200px;}
.y135{bottom:694.651050px;}
.ycc{bottom:696.600600px;}
.y74{bottom:696.976200px;}
.y115{bottom:697.069350px;}
.ybc{bottom:697.980600px;}
.y164{bottom:704.551200px;}
.y2e{bottom:705.817498px;}
.y4d{bottom:707.926200px;}
.y8e{bottom:709.426200px;}
.y73{bottom:710.476200px;}
.y134{bottom:711.151050px;}
.ycb{bottom:716.100600px;}
.y114{bottom:716.569350px;}
.ybb{bottom:717.480600px;}
.y163{bottom:721.051200px;}
.y4c{bottom:722.926200px;}
.y2d{bottom:723.817498px;}
.y72{bottom:723.976200px;}
.yee{bottom:725.375850px;}
.y7{bottom:726.298500px;}
.y133{bottom:727.651050px;}
.y8d{bottom:728.926200px;}
.yca{bottom:735.600600px;}
.y113{bottom:736.069350px;}
.yba{bottom:736.980600px;}
.y71{bottom:737.476200px;}
.y162{bottom:737.551200px;}
.y4b{bottom:737.926200px;}
.y2c{bottom:741.817498px;}
.y132{bottom:744.151050px;}
.yed{bottom:744.875850px;}
.y8c{bottom:748.426200px;}
.y70{bottom:750.976200px;}
.y3{bottom:752.599495px;}
.y4a{bottom:752.926200px;}
.y161{bottom:754.051200px;}
.yc9{bottom:755.100600px;}
.y112{bottom:755.569350px;}
.yb9{bottom:756.480600px;}
.y2b{bottom:759.817498px;}
.yec{bottom:764.375850px;}
.y49{bottom:767.926200px;}
.y160{bottom:770.551200px;}
.y131{bottom:771.151050px;}
.y6f{bottom:773.738700px;}
.yc8{bottom:774.600600px;}
.y111{bottom:775.069350px;}
.yb8{bottom:775.980600px;}
.y48{bottom:782.926200px;}
.yeb{bottom:783.875850px;}
.y15f{bottom:787.051200px;}
.y6e{bottom:787.238700px;}
.y8b{bottom:787.426200px;}
.yc7{bottom:794.100600px;}
.y110{bottom:794.569350px;}
.yb7{bottom:795.480600px;}
.y47{bottom:797.926200px;}
.y6d{bottom:800.738700px;}
.y15e{bottom:803.551200px;}
.y8a{bottom:806.926200px;}
.y2a{bottom:812.289002px;}
.y46{bottom:812.926200px;}
.yc6{bottom:813.600600px;}
.yea{bottom:813.875850px;}
.y6c{bottom:814.238700px;}
.yb6{bottom:814.980600px;}
.y15d{bottom:820.051200px;}
.y89{bottom:826.426200px;}
.yc5{bottom:833.100600px;}
.yb5{bottom:834.480600px;}
.y15c{bottom:836.551200px;}
.y10f{bottom:845.363700px;}
.y88{bottom:845.926200px;}
.y15b{bottom:853.051200px;}
.yb4{bottom:853.980600px;}
.y45{bottom:859.801200px;}
.yc4{bottom:863.100600px;}
.y10e{bottom:864.863700px;}
.y87{bottom:865.426200px;}
.y15a{bottom:869.551200px;}
.yb3{bottom:873.480600px;}
.y44{bottom:874.801200px;}
.y29{bottom:875.940000px;}
.y2{bottom:879.369000px;}
.y10d{bottom:884.363700px;}
.y86{bottom:884.926200px;}
.y159{bottom:886.051200px;}
.y43{bottom:889.801200px;}
.yc3{bottom:893.100600px;}
.y158{bottom:902.551200px;}
.yb2{bottom:903.480600px;}
.y10c{bottom:903.863700px;}
.y85{bottom:904.426200px;}
.y28{bottom:907.440000px;}
.y42{bottom:909.256200px;}
.y157{bottom:919.051200px;}
.y10b{bottom:923.363700px;}
.y84{bottom:923.926200px;}
.y41{bottom:931.801200px;}
.y156{bottom:935.551200px;}
.y27{bottom:938.940000px;}
.y10a{bottom:942.863700px;}
.y83{bottom:943.426200px;}
.y155{bottom:952.051200px;}
.y109{bottom:962.363700px;}
.y82{bottom:962.926200px;}
.yb1{bottom:963.953400px;}
.y1{bottom:966.726000px;}
.y154{bottom:968.551200px;}
.y26{bottom:970.440000px;}
.y40{bottom:970.801200px;}
.y108{bottom:981.863700px;}
.y81{bottom:982.426200px;}
.yb0{bottom:983.453400px;}
.y153{bottom:985.051200px;}
.y3f{bottom:994.801200px;}
.y107{bottom:1001.363700px;}
.y152{bottom:1001.551200px;}
.y80{bottom:1001.926200px;}
.yaf{bottom:1002.953400px;}
.y151{bottom:1018.051200px;}
.y3e{bottom:1018.801200px;}
.y106{bottom:1020.863700px;}
.y7f{bottom:1021.426200px;}
.yae{bottom:1022.453400px;}
.y150{bottom:1034.551200px;}
.y25{bottom:1035.546001px;}
.y105{bottom:1040.363700px;}
.y7e{bottom:1040.926200px;}
.yad{bottom:1041.953400px;}
.y3b{bottom:1047.511200px;}
.y14f{bottom:1051.051200px;}
.y104{bottom:1059.863700px;}
.y7d{bottom:1060.426200px;}
.y14e{bottom:1067.551200px;}
.y103{bottom:1079.363700px;}
.y7c{bottom:1079.926200px;}
.y68{bottom:1083.782250px;}
.y14d{bottom:1084.051200px;}
.y3d{bottom:1097.407950px;}
.y102{bottom:1098.863700px;}
.y7b{bottom:1099.426200px;}
.y14c{bottom:1100.551200px;}
.y3c{bottom:1110.907950px;}
.yac{bottom:1141.238100px;}
.y7a{bottom:1141.313100px;}
.y24{bottom:1165.122003px;}
.h16{height:25.096500px;}
.h1c{height:30.030000px;}
.h19{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1f{height:33.750000px;}
.h1d{height:34.608000px;}
.h1e{height:36.000000px;}
.hb{height:36.726562px;}
.h18{height:38.610000px;}
.h1a{height:40.500000px;}
.h21{height:40.755000px;}
.hf{height:41.317383px;}
.h17{height:42.916500px;}
.h12{height:45.000000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1b{height:47.586000px;}
.h3{height:48.195000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.xf{left:123.000000px;}
.xb{left:126.112350px;}
.xe{left:135.000000px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:228.743990px;}
.x8{left:293.590494px;}
.x3{left:454.959000px;}
.xd{left:570.946500px;}
.xc{left:650.025750px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.lsf{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.363467pt;}
.ls6{letter-spacing:0.363600pt;}
.ls8{letter-spacing:0.364267pt;}
.ls9{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lsa{letter-spacing:6.757867pt;}
.lse{letter-spacing:8.139733pt;}
.lsb{letter-spacing:60.023467pt;}
.ls7{letter-spacing:63.949867pt;}
.ws1{word-spacing:-12.432000pt;}
.wsaf{word-spacing:-11.850667pt;}
.ws5{word-spacing:-11.306667pt;}
.ws6d{word-spacing:-10.773333pt;}
.wsb0{word-spacing:-10.176000pt;}
.wse9{word-spacing:-9.456000pt;}
.wsa{word-spacing:-9.045333pt;}
.wsb1{word-spacing:-8.736000pt;}
.ws9{word-spacing:-8.720000pt;}
.ws6{word-spacing:-8.618667pt;}
.ws3{word-spacing:-8.320000pt;}
.wsea{word-spacing:-8.016000pt;}
.ws7{word-spacing:-7.840000pt;}
.ws8{word-spacing:-7.317333pt;}
.ws2{word-spacing:-6.115200pt;}
.ws4{word-spacing:-2.370133pt;}
.ws5c{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws106{word-spacing:0.720000pt;}
.wse8{word-spacing:3.456000pt;}
.wsa6{word-spacing:3.840000pt;}
.wsba{word-spacing:3.888000pt;}
.wse7{word-spacing:4.032000pt;}
.ws15{word-spacing:4.224000pt;}
.ws27{word-spacing:4.320000pt;}
.wsda{word-spacing:4.464000pt;}
.wscc{word-spacing:4.704000pt;}
.wsd1{word-spacing:4.944000pt;}
.ws14{word-spacing:5.232000pt;}
.wsd2{word-spacing:5.616000pt;}
.ws84{word-spacing:5.706667pt;}
.wsd0{word-spacing:5.760000pt;}
.wscb{word-spacing:5.856000pt;}
.ws2f{word-spacing:5.861333pt;}
.ws74{word-spacing:5.866667pt;}
.wsc{word-spacing:5.880000pt;}
.wsfb{word-spacing:5.904000pt;}
.ws33{word-spacing:5.920000pt;}
.ws6a{word-spacing:5.973333pt;}
.ws77{word-spacing:6.026667pt;}
.ws8f{word-spacing:6.080000pt;}
.ws36{word-spacing:6.133333pt;}
.ws107{word-spacing:6.192000pt;}
.wsd{word-spacing:6.280000pt;}
.wsbd{word-spacing:6.288000pt;}
.ws85{word-spacing:6.293333pt;}
.ws3b{word-spacing:6.346667pt;}
.ws4e{word-spacing:6.453333pt;}
.wsc8{word-spacing:6.480000pt;}
.ws26{word-spacing:6.506667pt;}
.ws102{word-spacing:6.528000pt;}
.ws7f{word-spacing:6.560000pt;}
.ws89{word-spacing:6.613333pt;}
.wsd9{word-spacing:6.624000pt;}
.ws3d{word-spacing:6.666667pt;}
.ws30{word-spacing:6.698667pt;}
.ws13{word-spacing:6.720000pt;}
.wsf9{word-spacing:6.768000pt;}
.ws8a{word-spacing:6.773333pt;}
.wsca{word-spacing:6.816000pt;}
.ws97{word-spacing:6.880000pt;}
.ws44{word-spacing:6.933333pt;}
.wsd4{word-spacing:6.960000pt;}
.ws91{word-spacing:6.986667pt;}
.wsbf{word-spacing:7.008000pt;}
.ws64{word-spacing:7.093333pt;}
.ws3c{word-spacing:7.200000pt;}
.ws34{word-spacing:7.253333pt;}
.ws39{word-spacing:7.306667pt;}
.wsbc{word-spacing:7.344000pt;}
.ws8d{word-spacing:7.360000pt;}
.ws53{word-spacing:7.413333pt;}
.ws108{word-spacing:7.440000pt;}
.ws56{word-spacing:7.466667pt;}
.ws2b{word-spacing:7.520000pt;}
.ws10{word-spacing:7.536000pt;}
.ws32{word-spacing:7.541333pt;}
.ws29{word-spacing:7.626667pt;}
.ws101{word-spacing:7.632000pt;}
.ws22{word-spacing:7.680000pt;}
.wsc7{word-spacing:7.728000pt;}
.ws86{word-spacing:7.733333pt;}
.ws28{word-spacing:7.786667pt;}
.ws6b{word-spacing:7.802667pt;}
.ws10b{word-spacing:7.824000pt;}
.wsac{word-spacing:7.840000pt;}
.ws1a{word-spacing:7.872000pt;}
.ws5d{word-spacing:7.893333pt;}
.wsc2{word-spacing:7.920000pt;}
.ws94{word-spacing:7.946667pt;}
.ws6c{word-spacing:7.954667pt;}
.ws88{word-spacing:8.000000pt;}
.wsce{word-spacing:8.016000pt;}
.ws35{word-spacing:8.053333pt;}
.wsd3{word-spacing:8.064000pt;}
.ws37{word-spacing:8.106667pt;}
.ws1c{word-spacing:8.160000pt;}
.ws76{word-spacing:8.176000pt;}
.wsa4{word-spacing:8.213333pt;}
.ws5a{word-spacing:8.232000pt;}
.wsf1{word-spacing:8.256000pt;}
.ws6e{word-spacing:8.266667pt;}
.wsb7{word-spacing:8.320000pt;}
.wsf7{word-spacing:8.352000pt;}
.ws1e{word-spacing:8.373333pt;}
.wsff{word-spacing:8.400000pt;}
.ws23{word-spacing:8.480000pt;}
.wsb{word-spacing:8.533333pt;}
.ws21{word-spacing:8.586667pt;}
.wsc0{word-spacing:8.592000pt;}
.ws58{word-spacing:8.640000pt;}
.wsf6{word-spacing:8.688000pt;}
.wsf8{word-spacing:8.784000pt;}
.ws73{word-spacing:8.800000pt;}
.wsdf{word-spacing:8.832000pt;}
.ws3e{word-spacing:8.853333pt;}
.wsdd{word-spacing:8.880000pt;}
.wsa7{word-spacing:8.906667pt;}
.wsc1{word-spacing:8.928000pt;}
.wsf5{word-spacing:8.976000pt;}
.wsc9{word-spacing:9.024000pt;}
.ws2c{word-spacing:9.066667pt;}
.ws9f{word-spacing:9.120000pt;}
.wseb{word-spacing:9.216000pt;}
.wsa1{word-spacing:9.226667pt;}
.ws78{word-spacing:9.280000pt;}
.wscd{word-spacing:9.312000pt;}
.wsfe{word-spacing:9.360000pt;}
.ws63{word-spacing:9.440000pt;}
.ws55{word-spacing:9.493333pt;}
.ws75{word-spacing:9.504000pt;}
.wsf{word-spacing:9.520000pt;}
.ws6f{word-spacing:9.546667pt;}
.wsf0{word-spacing:9.552000pt;}
.ws2a{word-spacing:9.600000pt;}
.wsc5{word-spacing:9.648000pt;}
.ws50{word-spacing:9.706667pt;}
.ws96{word-spacing:9.760000pt;}
.wsfd{word-spacing:9.792000pt;}
.ws1f{word-spacing:9.813333pt;}
.ws4f{word-spacing:9.866667pt;}
.ws38{word-spacing:9.920000pt;}
.ws1d{word-spacing:10.026667pt;}
.ws31{word-spacing:10.042667pt;}
.ws59{word-spacing:10.080000pt;}
.ws51{word-spacing:10.186667pt;}
.wse6{word-spacing:10.272000pt;}
.wsde{word-spacing:10.320000pt;}
.ws41{word-spacing:10.346667pt;}
.wsdc{word-spacing:10.368000pt;}
.ws42{word-spacing:10.400000pt;}
.wscf{word-spacing:10.416000pt;}
.wsa0{word-spacing:10.506667pt;}
.ws40{word-spacing:10.560000pt;}
.wse5{word-spacing:10.752000pt;}
.ws68{word-spacing:10.773333pt;}
.ws20{word-spacing:10.826667pt;}
.wsb3{word-spacing:10.880000pt;}
.ws4b{word-spacing:10.933333pt;}
.ws47{word-spacing:10.986667pt;}
.ws80{word-spacing:11.093333pt;}
.ws9d{word-spacing:11.146667pt;}
.ws79{word-spacing:11.466667pt;}
.wsd8{word-spacing:11.472000pt;}
.ws7b{word-spacing:11.520000pt;}
.wsbe{word-spacing:11.568000pt;}
.ws9c{word-spacing:11.573333pt;}
.wsbb{word-spacing:11.664000pt;}
.ws99{word-spacing:11.680000pt;}
.ws17{word-spacing:11.712000pt;}
.wse3{word-spacing:11.760000pt;}
.ws48{word-spacing:11.786667pt;}
.ws54{word-spacing:11.840000pt;}
.ws66{word-spacing:11.893333pt;}
.ws67{word-spacing:11.946667pt;}
.wsd6{word-spacing:11.952000pt;}
.ws24{word-spacing:12.000000pt;}
.ws100{word-spacing:12.048000pt;}
.ws83{word-spacing:12.053333pt;}
.ws81{word-spacing:12.106667pt;}
.wsfc{word-spacing:12.144000pt;}
.ws8c{word-spacing:12.213333pt;}
.ws105{word-spacing:12.240000pt;}
.wsae{word-spacing:12.266667pt;}
.wse4{word-spacing:12.288000pt;}
.ws69{word-spacing:12.320000pt;}
.wsf3{word-spacing:12.336000pt;}
.ws25{word-spacing:12.373333pt;}
.wse{word-spacing:12.394667pt;}
.wsa3{word-spacing:12.426667pt;}
.ws57{word-spacing:12.480000pt;}
.wsdb{word-spacing:12.528000pt;}
.ws8b{word-spacing:12.533333pt;}
.ws90{word-spacing:12.586667pt;}
.wsaa{word-spacing:12.640000pt;}
.ws8e{word-spacing:12.693333pt;}
.wsa2{word-spacing:12.746667pt;}
.ws87{word-spacing:12.853333pt;}
.wsa8{word-spacing:12.960000pt;}
.ws98{word-spacing:13.013333pt;}
.ws2e{word-spacing:13.280000pt;}
.wsd7{word-spacing:13.344000pt;}
.wsab{word-spacing:13.440000pt;}
.ws12{word-spacing:13.536000pt;}
.ws2d{word-spacing:13.546667pt;}
.ws5e{word-spacing:13.600000pt;}
.wse2{word-spacing:13.680000pt;}
.ws9b{word-spacing:13.706667pt;}
.ws9e{word-spacing:13.760000pt;}
.ws46{word-spacing:13.866667pt;}
.wsd5{word-spacing:13.920000pt;}
.ws72{word-spacing:14.026667pt;}
.ws62{word-spacing:14.186667pt;}
.ws60{word-spacing:14.346667pt;}
.wsfa{word-spacing:14.352000pt;}
.wsf2{word-spacing:14.400000pt;}
.wsb6{word-spacing:14.453333pt;}
.ws5b{word-spacing:14.506667pt;}
.ws7a{word-spacing:14.560000pt;}
.ws93{word-spacing:14.720000pt;}
.ws70{word-spacing:14.773333pt;}
.ws45{word-spacing:14.826667pt;}
.ws95{word-spacing:14.880000pt;}
.ws7c{word-spacing:14.986667pt;}
.ws71{word-spacing:15.040000pt;}
.ws19{word-spacing:15.168000pt;}
.ws9a{word-spacing:15.200000pt;}
.wse1{word-spacing:15.216000pt;}
.ws7d{word-spacing:15.253333pt;}
.wsc6{word-spacing:15.408000pt;}
.wsef{word-spacing:15.552000pt;}
.ws65{word-spacing:15.626667pt;}
.wsf4{word-spacing:15.648000pt;}
.ws3f{word-spacing:15.680000pt;}
.ws4d{word-spacing:15.786667pt;}
.wsb9{word-spacing:15.893333pt;}
.ws11{word-spacing:16.080000pt;}
.ws49{word-spacing:16.106667pt;}
.ws43{word-spacing:16.213333pt;}
.wsee{word-spacing:16.608000pt;}
.ws3a{word-spacing:16.853333pt;}
.ws92{word-spacing:16.906667pt;}
.wsec{word-spacing:17.184000pt;}
.ws82{word-spacing:17.280000pt;}
.wsa5{word-spacing:17.333333pt;}
.ws4c{word-spacing:17.386667pt;}
.ws10a{word-spacing:17.520000pt;}
.wsb4{word-spacing:17.653333pt;}
.ws16{word-spacing:17.664000pt;}
.wse0{word-spacing:17.712000pt;}
.ws61{word-spacing:18.186667pt;}
.ws7e{word-spacing:18.240000pt;}
.ws4a{word-spacing:18.293333pt;}
.wsb8{word-spacing:18.986667pt;}
.wsb2{word-spacing:19.306667pt;}
.wsed{word-spacing:19.392000pt;}
.wsad{word-spacing:19.626667pt;}
.ws109{word-spacing:20.448000pt;}
.ws104{word-spacing:20.496000pt;}
.wsa9{word-spacing:20.800000pt;}
.ws5f{word-spacing:21.066667pt;}
.wsc4{word-spacing:21.936000pt;}
.ws52{word-spacing:23.840000pt;}
.ws103{word-spacing:23.856000pt;}
.wsc3{word-spacing:25.536000pt;}
.wsb5{word-spacing:26.453333pt;}
.ws1b{word-spacing:27.552000pt;}
.ws18{word-spacing:30.288000pt;}
._1a{margin-left:-25.186146pt;}
._14{margin-left:-8.138706pt;}
._18{margin-left:-7.141320pt;}
._19{margin-left:-6.069346pt;}
._b{margin-left:-4.725333pt;}
._1{margin-left:-3.680000pt;}
._5{margin-left:-2.720026pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.949333pt;}
._c{width:2.133359pt;}
._9{width:3.103987pt;}
._17{width:4.133307pt;}
._2{width:5.546667pt;}
._3{width:6.933320pt;}
._6{width:8.266654pt;}
._7{width:9.882654pt;}
._8{width:10.789320pt;}
._a{width:11.909333pt;}
._16{width:13.055987pt;}
._15{width:14.133333pt;}
._13{width:15.642654pt;}
._10{width:17.989307pt;}
._f{width:19.120000pt;}
._1b{width:24.285854pt;}
._d{width:53.224000pt;}
._12{width:69.653333pt;}
._11{width:117.065041pt;}
._e{width:118.826133pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y3a{bottom:60.086668pt;}
.y6b{bottom:60.947200pt;}
.y6a{bottom:71.613867pt;}
.y39{bottom:74.753335pt;}
.yc2{bottom:75.800000pt;}
.yab{bottom:75.934400pt;}
.y69{bottom:82.280533pt;}
.y14b{bottom:83.400400pt;}
.y189{bottom:83.601067pt;}
.y4{bottom:86.333337pt;}
.ye9{bottom:93.133333pt;}
.yaa{bottom:93.267733pt;}
.y66{bottom:93.280533pt;}
.y14a{bottom:98.067067pt;}
.y188{bottom:98.267733pt;}
.y67{bottom:108.280533pt;}
.ye8{bottom:110.466667pt;}
.ya9{bottom:110.601067pt;}
.y149{bottom:112.733733pt;}
.y187{bottom:112.934400pt;}
.y130{bottom:119.800000pt;}
.y23{bottom:123.790666pt;}
.y148{bottom:127.400400pt;}
.y186{bottom:127.601067pt;}
.ye7{bottom:127.800000pt;}
.ya8{bottom:137.267733pt;}
.y147{bottom:142.067067pt;}
.y185{bottom:142.267733pt;}
.ye6{bottom:145.133333pt;}
.y65{bottom:154.601067pt;}
.y146{bottom:156.733733pt;}
.y184{bottom:156.934400pt;}
.ye5{bottom:162.466667pt;}
.ya7{bottom:163.934400pt;}
.y12f{bottom:168.950533pt;}
.y145{bottom:171.400400pt;}
.y183{bottom:171.601067pt;}
.y64{bottom:171.934400pt;}
.y1a{bottom:175.052000pt;}
.ye4{bottom:179.800000pt;}
.y38{bottom:182.601334pt;}
.y144{bottom:186.067067pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y182{bottom:186.267733pt;}
.y12e{bottom:186.283867pt;}
.y63{bottom:189.267733pt;}
.ye3{bottom:197.133333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y143{bottom:200.733733pt;}
.y181{bottom:200.934400pt;}
.y12d{bottom:203.617200pt;}
.y62{bottom:206.601067pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ye2{bottom:214.466667pt;}
.ya6{bottom:214.601067pt;}
.y142{bottom:215.400400pt;}
.y180{bottom:215.601067pt;}
.y12c{bottom:220.950533pt;}
.y61{bottom:223.934400pt;}
.y141{bottom:230.067067pt;}
.y17f{bottom:230.267733pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ye1{bottom:231.800000pt;}
.ya5{bottom:231.934400pt;}
.y12b{bottom:238.283867pt;}
.y37{bottom:239.801334pt;}
.y60{bottom:241.267733pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y140{bottom:244.733733pt;}
.y17e{bottom:244.934400pt;}
.ye0{bottom:249.133333pt;}
.ya4{bottom:249.267733pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y12a{bottom:255.617200pt;}
.y5f{bottom:258.601067pt;}
.y13f{bottom:259.400400pt;}
.y17d{bottom:259.601067pt;}
.y101{bottom:266.466667pt;}
.ya3{bottom:266.601067pt;}
.y129{bottom:272.950533pt;}
.y17c{bottom:274.267733pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y5e{bottom:275.934400pt;}
.y13e{bottom:283.400400pt;}
.y100{bottom:283.800000pt;}
.ya2{bottom:283.934400pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y17b{bottom:288.934400pt;}
.ydf{bottom:289.867200pt;}
.y128{bottom:290.283867pt;}
.y5d{bottom:293.267733pt;}
.y36{bottom:297.001334pt;}
.yff{bottom:301.133333pt;}
.ya1{bottom:301.267733pt;}
.y17a{bottom:303.601067pt;}
.yde{bottom:307.200533pt;}
.y127{bottom:307.617200pt;}
.y11{bottom:309.452000pt;}
.y5c{bottom:310.601067pt;}
.y179{bottom:318.267733pt;}
.yfe{bottom:318.466667pt;}
.ya0{bottom:318.601067pt;}
.ydd{bottom:324.533867pt;}
.y126{bottom:324.950533pt;}
.y5b{bottom:327.934400pt;}
.y13d{bottom:332.533867pt;}
.y178{bottom:332.934400pt;}
.yfd{bottom:335.800000pt;}
.y9f{bottom:335.934400pt;}
.ydc{bottom:341.867200pt;}
.y125{bottom:342.283867pt;}
.y10{bottom:343.809333pt;}
.y5a{bottom:345.267733pt;}
.y177{bottom:347.601067pt;}
.yfc{bottom:353.133333pt;}
.y9e{bottom:353.267733pt;}
.y13c{bottom:356.533867pt;}
.y35{bottom:356.806667pt;}
.ydb{bottom:359.200533pt;}
.y124{bottom:359.617200pt;}
.y176{bottom:362.267733pt;}
.y59{bottom:362.601067pt;}
.yf{bottom:362.706666pt;}
.y9d{bottom:370.601067pt;}
.yda{bottom:376.533867pt;}
.y175{bottom:376.934400pt;}
.y123{bottom:376.950533pt;}
.y58{bottom:379.934400pt;}
.y9c{bottom:387.934400pt;}
.y174{bottom:391.601067pt;}
.yd9{bottom:393.867200pt;}
.y122{bottom:394.283867pt;}
.yfb{bottom:394.955867pt;}
.y57{bottom:397.267733pt;}
.y9b{bottom:405.267733pt;}
.y13b{bottom:405.667333pt;}
.y173{bottom:406.267733pt;}
.yd8{bottom:411.200533pt;}
.y34{bottom:411.401334pt;}
.y121{bottom:411.617200pt;}
.yfa{bottom:412.289200pt;}
.y56{bottom:414.601067pt;}
.y172{bottom:420.934400pt;}
.y9a{bottom:422.601067pt;}
.yd7{bottom:428.533867pt;}
.y120{bottom:428.950533pt;}
.yf9{bottom:429.622533pt;}
.y13a{bottom:429.667333pt;}
.ye{bottom:430.990669pt;}
.y55{bottom:431.934400pt;}
.y171{bottom:435.601067pt;}
.y99{bottom:439.934400pt;}
.yd6{bottom:445.867200pt;}
.y11f{bottom:446.283867pt;}
.yf8{bottom:446.955867pt;}
.yd{bottom:446.990669pt;}
.y54{bottom:449.267733pt;}
.y170{bottom:450.267733pt;}
.y98{bottom:457.267733pt;}
.yc{bottom:462.990669pt;}
.yd5{bottom:463.200533pt;}
.y11e{bottom:463.617200pt;}
.yf7{bottom:464.289200pt;}
.y16f{bottom:464.934400pt;}
.y33{bottom:471.206667pt;}
.y97{bottom:474.601067pt;}
.y139{bottom:475.000667pt;}
.y53{bottom:475.934400pt;}
.yb{bottom:478.990666pt;}
.y16e{bottom:479.601067pt;}
.yd4{bottom:480.533867pt;}
.y11d{bottom:480.950533pt;}
.yf6{bottom:481.622533pt;}
.y96{bottom:491.934400pt;}
.y16d{bottom:494.267733pt;}
.ya{bottom:494.990666pt;}
.yd3{bottom:497.867200pt;}
.y11c{bottom:498.283867pt;}
.yf5{bottom:498.955867pt;}
.y138{bottom:499.000667pt;}
.y32{bottom:501.740001pt;}
.y16c{bottom:508.934400pt;}
.y95{bottom:509.267733pt;}
.y31{bottom:515.073335pt;}
.yd2{bottom:515.200533pt;}
.y11b{bottom:515.617200pt;}
.yf4{bottom:516.289200pt;}
.y16b{bottom:523.601067pt;}
.y94{bottom:526.601067pt;}
.y30{bottom:528.406667pt;}
.yd1{bottom:532.533867pt;}
.y11a{bottom:532.950533pt;}
.yf3{bottom:533.622533pt;}
.yc1{bottom:533.760533pt;}
.y16a{bottom:538.267733pt;}
.y93{bottom:543.934400pt;}
.y137{bottom:544.334000pt;}
.yd0{bottom:549.867200pt;}
.y119{bottom:550.283867pt;}
.yf2{bottom:550.955867pt;}
.yc0{bottom:551.093867pt;}
.y79{bottom:551.301067pt;}
.y169{bottom:552.934400pt;}
.y92{bottom:561.267733pt;}
.y52{bottom:562.601067pt;}
.y78{bottom:563.301067pt;}
.ycf{bottom:567.200533pt;}
.y168{bottom:567.601067pt;}
.y118{bottom:567.617200pt;}
.yf1{bottom:568.289200pt;}
.y136{bottom:568.334000pt;}
.ybf{bottom:568.427200pt;}
.y9{bottom:573.786667pt;}
.y77{bottom:575.301067pt;}
.y51{bottom:575.934400pt;}
.y91{bottom:578.601067pt;}
.y167{bottom:582.267733pt;}
.yce{bottom:584.533867pt;}
.y117{bottom:584.950533pt;}
.yf0{bottom:585.622533pt;}
.ybe{bottom:585.760533pt;}
.y76{bottom:587.301067pt;}
.y50{bottom:589.267733pt;}
.y8{bottom:592.685334pt;}
.y90{bottom:595.934400pt;}
.y166{bottom:596.934400pt;}
.y75{bottom:599.301067pt;}
.y2f{bottom:600.726665pt;}
.ycd{bottom:601.867200pt;}
.y116{bottom:602.283867pt;}
.y4f{bottom:602.601067pt;}
.yef{bottom:602.955867pt;}
.ybd{bottom:603.093867pt;}
.y165{bottom:611.601067pt;}
.y8f{bottom:613.267733pt;}
.y4e{bottom:615.934400pt;}
.y135{bottom:617.467600pt;}
.ycc{bottom:619.200533pt;}
.y74{bottom:619.534400pt;}
.y115{bottom:619.617200pt;}
.ybc{bottom:620.427200pt;}
.y164{bottom:626.267733pt;}
.y2e{bottom:627.393332pt;}
.y4d{bottom:629.267733pt;}
.y8e{bottom:630.601067pt;}
.y73{bottom:631.534400pt;}
.y134{bottom:632.134267pt;}
.ycb{bottom:636.533867pt;}
.y114{bottom:636.950533pt;}
.ybb{bottom:637.760533pt;}
.y163{bottom:640.934400pt;}
.y4c{bottom:642.601067pt;}
.y2d{bottom:643.393332pt;}
.y72{bottom:643.534400pt;}
.yee{bottom:644.778533pt;}
.y7{bottom:645.598667pt;}
.y133{bottom:646.800933pt;}
.y8d{bottom:647.934400pt;}
.yca{bottom:653.867200pt;}
.y113{bottom:654.283867pt;}
.yba{bottom:655.093867pt;}
.y71{bottom:655.534400pt;}
.y162{bottom:655.601067pt;}
.y4b{bottom:655.934400pt;}
.y2c{bottom:659.393332pt;}
.y132{bottom:661.467600pt;}
.yed{bottom:662.111867pt;}
.y8c{bottom:665.267733pt;}
.y70{bottom:667.534400pt;}
.y3{bottom:668.977329pt;}
.y4a{bottom:669.267733pt;}
.y161{bottom:670.267733pt;}
.yc9{bottom:671.200533pt;}
.y112{bottom:671.617200pt;}
.yb9{bottom:672.427200pt;}
.y2b{bottom:675.393332pt;}
.yec{bottom:679.445200pt;}
.y49{bottom:682.601067pt;}
.y160{bottom:684.934400pt;}
.y131{bottom:685.467600pt;}
.y6f{bottom:687.767733pt;}
.yc8{bottom:688.533867pt;}
.y111{bottom:688.950533pt;}
.yb8{bottom:689.760533pt;}
.y48{bottom:695.934400pt;}
.yeb{bottom:696.778533pt;}
.y15f{bottom:699.601067pt;}
.y6e{bottom:699.767733pt;}
.y8b{bottom:699.934400pt;}
.yc7{bottom:705.867200pt;}
.y110{bottom:706.283867pt;}
.yb7{bottom:707.093867pt;}
.y47{bottom:709.267733pt;}
.y6d{bottom:711.767733pt;}
.y15e{bottom:714.267733pt;}
.y8a{bottom:717.267733pt;}
.y2a{bottom:722.034669pt;}
.y46{bottom:722.601067pt;}
.yc6{bottom:723.200533pt;}
.yea{bottom:723.445200pt;}
.y6c{bottom:723.767733pt;}
.yb6{bottom:724.427200pt;}
.y15d{bottom:728.934400pt;}
.y89{bottom:734.601067pt;}
.yc5{bottom:740.533867pt;}
.yb5{bottom:741.760533pt;}
.y15c{bottom:743.601067pt;}
.y10f{bottom:751.434400pt;}
.y88{bottom:751.934400pt;}
.y15b{bottom:758.267733pt;}
.yb4{bottom:759.093867pt;}
.y45{bottom:764.267733pt;}
.yc4{bottom:767.200533pt;}
.y10e{bottom:768.767733pt;}
.y87{bottom:769.267733pt;}
.y15a{bottom:772.934400pt;}
.yb3{bottom:776.427200pt;}
.y44{bottom:777.601067pt;}
.y29{bottom:778.613333pt;}
.y2{bottom:781.661334pt;}
.y10d{bottom:786.101067pt;}
.y86{bottom:786.601067pt;}
.y159{bottom:787.601067pt;}
.y43{bottom:790.934400pt;}
.yc3{bottom:793.867200pt;}
.y158{bottom:802.267733pt;}
.yb2{bottom:803.093867pt;}
.y10c{bottom:803.434400pt;}
.y85{bottom:803.934400pt;}
.y28{bottom:806.613333pt;}
.y42{bottom:808.227733pt;}
.y157{bottom:816.934400pt;}
.y10b{bottom:820.767733pt;}
.y84{bottom:821.267733pt;}
.y41{bottom:828.267733pt;}
.y156{bottom:831.601067pt;}
.y27{bottom:834.613333pt;}
.y10a{bottom:838.101067pt;}
.y83{bottom:838.601067pt;}
.y155{bottom:846.267733pt;}
.y109{bottom:855.434400pt;}
.y82{bottom:855.934400pt;}
.yb1{bottom:856.847467pt;}
.y1{bottom:859.312000pt;}
.y154{bottom:860.934400pt;}
.y26{bottom:862.613333pt;}
.y40{bottom:862.934400pt;}
.y108{bottom:872.767733pt;}
.y81{bottom:873.267733pt;}
.yb0{bottom:874.180800pt;}
.y153{bottom:875.601067pt;}
.y3f{bottom:884.267733pt;}
.y107{bottom:890.101067pt;}
.y152{bottom:890.267733pt;}
.y80{bottom:890.601067pt;}
.yaf{bottom:891.514133pt;}
.y151{bottom:904.934400pt;}
.y3e{bottom:905.601067pt;}
.y106{bottom:907.434400pt;}
.y7f{bottom:907.934400pt;}
.yae{bottom:908.847467pt;}
.y150{bottom:919.601067pt;}
.y25{bottom:920.485335pt;}
.y105{bottom:924.767733pt;}
.y7e{bottom:925.267733pt;}
.yad{bottom:926.180800pt;}
.y3b{bottom:931.121067pt;}
.y14f{bottom:934.267733pt;}
.y104{bottom:942.101067pt;}
.y7d{bottom:942.601067pt;}
.y14e{bottom:948.934400pt;}
.y103{bottom:959.434400pt;}
.y7c{bottom:959.934400pt;}
.y68{bottom:963.362000pt;}
.y14d{bottom:963.601067pt;}
.y3d{bottom:975.473733pt;}
.y102{bottom:976.767733pt;}
.y7b{bottom:977.267733pt;}
.y14c{bottom:978.267733pt;}
.y3c{bottom:987.473733pt;}
.yac{bottom:1014.433867pt;}
.y7a{bottom:1014.500533pt;}
.y24{bottom:1035.664002pt;}
.h16{height:22.308000pt;}
.h1c{height:26.693333pt;}
.h19{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1f{height:30.000000pt;}
.h1d{height:30.762667pt;}
.h1e{height:32.000000pt;}
.hb{height:32.645833pt;}
.h18{height:34.320000pt;}
.h1a{height:36.000000pt;}
.h21{height:36.226667pt;}
.hf{height:36.726562pt;}
.h17{height:38.148000pt;}
.h12{height:40.000000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1b{height:42.298667pt;}
.h3{height:42.840000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.xf{left:109.333333pt;}
.xb{left:112.099867pt;}
.xe{left:120.000000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:203.327991pt;}
.x8{left:260.969328pt;}
.x3{left:404.408000pt;}
.xd{left:507.508000pt;}
.xc{left:577.800667pt;}
}




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