
    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_188c0e5a2177fb9f32a524b4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9cd30ece4656040a2ab0d1ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_d29795e85f55d2eec078b9f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_ba693e802aa9a6083ffb02c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_46626166c962a1c6d5f0bdf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_58fab199ca5421d0eb2f55d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_1d2d43ec4fb6dc8be1884d31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.009000;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_bba68684f02ca072322fa8ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;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_4df99d831c67fa7954d7355f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_67df2fcbe02ce60e7edfd175.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_fc20dcd851be5bfa05f6effe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008000;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_116d66ce141e6ac522c415dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908357;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_956e29049c2116f99ce44260.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.876465;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_6ec46ec2c0fdfab7cb1cf5ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717000;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_b2f844b9a4878d92959e41d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.964000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-6.756600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.ls13{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.108000px;}
.ls1{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000018px;}
.ls4{letter-spacing:0.000048px;}
.ls8{letter-spacing:0.000078px;}
.ls19{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.336000px;}
.ls12{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.702000px;}
.ls10{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.368600px;}
.ls14{letter-spacing:1.536000px;}
.ls18{letter-spacing:1.968000px;}
.ls15{letter-spacing:2.112000px;}
.ls17{letter-spacing:3.984000px;}
.lsf{letter-spacing:11.764200px;}
.ls3{letter-spacing:27.702000px;}
.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;}
}
.wsf4{word-spacing:-54.000000px;}
.ws22{word-spacing:-27.702000px;}
.ws136{word-spacing:-13.584000px;}
.wse{word-spacing:-13.536000px;}
.ws127{word-spacing:-11.712000px;}
.ws138{word-spacing:-11.568000px;}
.ws2{word-spacing:-11.280000px;}
.ws126{word-spacing:-11.136000px;}
.wsd7{word-spacing:-11.124000px;}
.wsd8{word-spacing:-11.016000px;}
.ws1d{word-spacing:-10.800000px;}
.ws38{word-spacing:-10.476000px;}
.ws111{word-spacing:-10.464000px;}
.ws112{word-spacing:-10.032000px;}
.ws113{word-spacing:-9.984000px;}
.ws128{word-spacing:-9.936000px;}
.ws139{word-spacing:-9.888000px;}
.ws1{word-spacing:-9.600000px;}
.wse0{word-spacing:-9.312000px;}
.ws137{word-spacing:-9.216000px;}
.ws115{word-spacing:-8.640000px;}
.ws66{word-spacing:-8.400000px;}
.ws114{word-spacing:-8.352000px;}
.ws1f{word-spacing:-8.148000px;}
.ws0{word-spacing:-7.800000px;}
.wsd{word-spacing:-7.200000px;}
.ws1e{word-spacing:-6.296400px;}
.ws3d{word-spacing:-4.374000px;}
.ws2a{word-spacing:-3.618000px;}
.ws11{word-spacing:-3.552000px;}
.ws12{word-spacing:-3.456000px;}
.ws48{word-spacing:-3.348000px;}
.ws8d{word-spacing:-3.240000px;}
.ws25{word-spacing:-3.024000px;}
.ws45{word-spacing:-2.754000px;}
.ws54{word-spacing:-2.700000px;}
.ws3c{word-spacing:-2.538000px;}
.ws78{word-spacing:-2.268000px;}
.ws109{word-spacing:-2.214000px;}
.ws6c{word-spacing:-2.052000px;}
.wsd2{word-spacing:-1.944000px;}
.ws16{word-spacing:-1.920000px;}
.wsf0{word-spacing:-1.836000px;}
.ws17{word-spacing:-1.824000px;}
.ws40{word-spacing:-1.782000px;}
.wsff{word-spacing:-1.728000px;}
.ws43{word-spacing:-1.674000px;}
.ws46{word-spacing:-1.620000px;}
.ws29{word-spacing:-1.566000px;}
.ws15{word-spacing:-1.440000px;}
.ws39{word-spacing:-1.350000px;}
.ws7c{word-spacing:-1.296000px;}
.ws55{word-spacing:-1.242000px;}
.ws4{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.188000px;}
.ws120{word-spacing:-1.152000px;}
.wsc5{word-spacing:-1.134000px;}
.wsd4{word-spacing:-1.092000px;}
.wsc7{word-spacing:-1.080000px;}
.ws47{word-spacing:-1.026000px;}
.ws19{word-spacing:-0.972000px;}
.wsc0{word-spacing:-0.966000px;}
.wsc1{word-spacing:-0.924000px;}
.ws5d{word-spacing:-0.918000px;}
.wsbc{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.768000px;}
.wsad{word-spacing:-0.756000px;}
.wsc3{word-spacing:-0.702000px;}
.ws132{word-spacing:-0.672000px;}
.wsae{word-spacing:-0.648000px;}
.wsd6{word-spacing:-0.630000px;}
.wsd5{word-spacing:-0.588000px;}
.ws141{word-spacing:-0.576000px;}
.wsc4{word-spacing:-0.540000px;}
.ws34{word-spacing:-0.504000px;}
.ws20{word-spacing:-0.486000px;}
.ws12a{word-spacing:-0.480000px;}
.ws65{word-spacing:-0.462000px;}
.ws9e{word-spacing:-0.378000px;}
.wsd3{word-spacing:-0.336000px;}
.wscc{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.162000px;}
.ws4e{word-spacing:-0.108000px;}
.ws100{word-spacing:-0.054000px;}
.ws129{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsb1{word-spacing:0.042000px;}
.ws52{word-spacing:0.054000px;}
.wsf{word-spacing:0.096000px;}
.ws105{word-spacing:0.108000px;}
.wsbe{word-spacing:0.162000px;}
.wsa4{word-spacing:0.168000px;}
.ws12d{word-spacing:0.192000px;}
.wsd1{word-spacing:0.216000px;}
.ws1c{word-spacing:0.240000px;}
.ws99{word-spacing:0.270000px;}
.wsa6{word-spacing:0.324000px;}
.ws122{word-spacing:0.336000px;}
.ws44{word-spacing:0.378000px;}
.ws7f{word-spacing:0.432000px;}
.ws81{word-spacing:0.486000px;}
.ws18{word-spacing:0.528000px;}
.ws53{word-spacing:0.540000px;}
.ws118{word-spacing:0.576000px;}
.wsaf{word-spacing:0.588000px;}
.ws59{word-spacing:0.594000px;}
.ws142{word-spacing:0.624000px;}
.ws7b{word-spacing:0.648000px;}
.wsf5{word-spacing:0.702000px;}
.ws57{word-spacing:0.756000px;}
.wsfb{word-spacing:0.810000px;}
.ws42{word-spacing:0.864000px;}
.ws28{word-spacing:0.918000px;}
.ws123{word-spacing:0.960000px;}
.ws75{word-spacing:0.972000px;}
.wsee{word-spacing:1.026000px;}
.ws77{word-spacing:1.080000px;}
.wsa3{word-spacing:1.134000px;}
.ws36{word-spacing:1.176000px;}
.ws86{word-spacing:1.188000px;}
.ws35{word-spacing:1.218000px;}
.ws56{word-spacing:1.242000px;}
.ws96{word-spacing:1.296000px;}
.ws94{word-spacing:1.350000px;}
.ws37{word-spacing:1.386000px;}
.wsea{word-spacing:1.404000px;}
.wsb0{word-spacing:1.428000px;}
.ws8e{word-spacing:1.458000px;}
.ws10{word-spacing:1.488000px;}
.ws102{word-spacing:1.554000px;}
.ws8c{word-spacing:1.566000px;}
.ws101{word-spacing:1.596000px;}
.ws8b{word-spacing:1.728000px;}
.ws60{word-spacing:1.782000px;}
.ws11f{word-spacing:1.824000px;}
.ws5f{word-spacing:1.836000px;}
.wseb{word-spacing:1.848000px;}
.ws88{word-spacing:1.872000px;}
.wsa7{word-spacing:1.890000px;}
.ws24{word-spacing:1.944000px;}
.wsdb{word-spacing:1.998000px;}
.ws110{word-spacing:2.052000px;}
.ws32{word-spacing:2.058000px;}
.ws33{word-spacing:2.100000px;}
.wsaa{word-spacing:2.106000px;}
.ws70{word-spacing:2.160000px;}
.ws13d{word-spacing:2.208000px;}
.ws93{word-spacing:2.214000px;}
.ws69{word-spacing:2.268000px;}
.ws13c{word-spacing:2.304000px;}
.wsb2{word-spacing:2.322000px;}
.wsb9{word-spacing:2.376000px;}
.ws10b{word-spacing:2.430000px;}
.ws13e{word-spacing:2.544000px;}
.ws103{word-spacing:2.592000px;}
.wsed{word-spacing:2.646000px;}
.ws31{word-spacing:2.688000px;}
.wsb8{word-spacing:2.700000px;}
.wsda{word-spacing:2.754000px;}
.ws134{word-spacing:2.784000px;}
.ws82{word-spacing:2.808000px;}
.wsdc{word-spacing:2.862000px;}
.ws3f{word-spacing:2.916000px;}
.ws121{word-spacing:2.928000px;}
.ws2f{word-spacing:2.970000px;}
.ws90{word-spacing:3.024000px;}
.ws1a{word-spacing:3.078000px;}
.ws12b{word-spacing:3.120000px;}
.ws4c{word-spacing:3.186000px;}
.ws12e{word-spacing:3.216000px;}
.ws9{word-spacing:3.264000px;}
.wscf{word-spacing:3.294000px;}
.ws12f{word-spacing:3.312000px;}
.ws62{word-spacing:3.456000px;}
.ws6{word-spacing:3.504000px;}
.ws10a{word-spacing:3.510000px;}
.ws85{word-spacing:3.552000px;}
.ws23{word-spacing:3.564000px;}
.ws74{word-spacing:3.618000px;}
.ws107{word-spacing:3.672000px;}
.ws11a{word-spacing:3.696000px;}
.wsbb{word-spacing:3.726000px;}
.wsce{word-spacing:3.834000px;}
.ws11b{word-spacing:3.840000px;}
.wse3{word-spacing:3.888000px;}
.ws76{word-spacing:3.906000px;}
.ws7{word-spacing:3.984000px;}
.wscb{word-spacing:3.996000px;}
.ws8{word-spacing:4.080000px;}
.wsac{word-spacing:4.158000px;}
.wse5{word-spacing:4.212000px;}
.ws84{word-spacing:4.272000px;}
.ws135{word-spacing:4.320000px;}
.ws64{word-spacing:4.326000px;}
.wsec{word-spacing:4.374000px;}
.ws63{word-spacing:4.452000px;}
.wsb7{word-spacing:4.482000px;}
.ws3b{word-spacing:4.536000px;}
.ws61{word-spacing:4.644000px;}
.ws143{word-spacing:4.656000px;}
.ws83{word-spacing:4.698000px;}
.ws106{word-spacing:4.752000px;}
.ws67{word-spacing:4.806000px;}
.ws30{word-spacing:4.860000px;}
.wsb6{word-spacing:4.914000px;}
.ws98{word-spacing:4.968000px;}
.wsdf{word-spacing:5.076000px;}
.wse8{word-spacing:5.130000px;}
.ws4f{word-spacing:5.238000px;}
.ws3a{word-spacing:5.292000px;}
.wsc6{word-spacing:5.400000px;}
.wsbd{word-spacing:5.454000px;}
.wscd{word-spacing:5.508000px;}
.ws116{word-spacing:5.520000px;}
.ws3e{word-spacing:5.616000px;}
.ws117{word-spacing:5.664000px;}
.ws6d{word-spacing:5.670000px;}
.wse7{word-spacing:5.724000px;}
.wsdd{word-spacing:5.778000px;}
.wsca{word-spacing:5.832000px;}
.wsb3{word-spacing:5.886000px;}
.wsd0{word-spacing:5.940000px;}
.ws2c{word-spacing:5.994000px;}
.wsc9{word-spacing:6.048000px;}
.wsa2{word-spacing:6.102000px;}
.ws7a{word-spacing:6.156000px;}
.ws26{word-spacing:6.210000px;}
.wsc8{word-spacing:6.264000px;}
.wsb5{word-spacing:6.372000px;}
.wsde{word-spacing:6.426000px;}
.ws4a{word-spacing:6.480000px;}
.wsa8{word-spacing:6.534000px;}
.ws79{word-spacing:6.588000px;}
.wsba{word-spacing:6.642000px;}
.ws4b{word-spacing:6.696000px;}
.ws58{word-spacing:6.804000px;}
.ws80{word-spacing:7.020000px;}
.ws5a{word-spacing:7.074000px;}
.ws27{word-spacing:7.128000px;}
.wsab{word-spacing:7.182000px;}
.wsfa{word-spacing:7.344000px;}
.wsa9{word-spacing:7.398000px;}
.ws10e{word-spacing:7.452000px;}
.wsa1{word-spacing:7.560000px;}
.wse4{word-spacing:7.614000px;}
.wsd9{word-spacing:7.668000px;}
.wse6{word-spacing:7.722000px;}
.ws73{word-spacing:7.776000px;}
.ws95{word-spacing:7.830000px;}
.wsbf{word-spacing:7.884000px;}
.ws89{word-spacing:7.920000px;}
.ws104{word-spacing:7.938000px;}
.ws10c{word-spacing:8.046000px;}
.wse1{word-spacing:8.100000px;}
.ws50{word-spacing:8.154000px;}
.ws91{word-spacing:8.208000px;}
.ws12c{word-spacing:8.400000px;}
.ws92{word-spacing:8.478000px;}
.ws9f{word-spacing:8.532000px;}
.ws41{word-spacing:8.586000px;}
.wsfe{word-spacing:8.640000px;}
.ws8f{word-spacing:8.694000px;}
.ws108{word-spacing:8.748000px;}
.ws4d{word-spacing:8.802000px;}
.wsb4{word-spacing:8.910000px;}
.ws140{word-spacing:8.976000px;}
.wsf3{word-spacing:9.018000px;}
.ws9d{word-spacing:9.072000px;}
.ws5c{word-spacing:9.126000px;}
.ws6b{word-spacing:9.180000px;}
.ws13f{word-spacing:9.264000px;}
.wsf1{word-spacing:9.288000px;}
.wsf2{word-spacing:9.342000px;}
.ws6e{word-spacing:9.450000px;}
.ws130{word-spacing:9.600000px;}
.ws7d{word-spacing:9.720000px;}
.ws131{word-spacing:9.888000px;}
.ws87{word-spacing:10.032000px;}
.ws7e{word-spacing:10.044000px;}
.ws9c{word-spacing:10.152000px;}
.wse2{word-spacing:10.368000px;}
.wsf9{word-spacing:10.422000px;}
.wsc2{word-spacing:10.530000px;}
.ws5b{word-spacing:10.584000px;}
.wsf7{word-spacing:10.692000px;}
.ws13a{word-spacing:10.800000px;}
.ws6a{word-spacing:10.908000px;}
.ws2e{word-spacing:10.962000px;}
.ws10d{word-spacing:11.016000px;}
.ws9b{word-spacing:11.124000px;}
.ws97{word-spacing:11.286000px;}
.ws5e{word-spacing:11.340000px;}
.wsb{word-spacing:11.376000px;}
.ws11e{word-spacing:11.424000px;}
.ws9a{word-spacing:11.448000px;}
.ws14{word-spacing:11.520000px;}
.wsf6{word-spacing:11.718000px;}
.ws133{word-spacing:11.760000px;}
.ws8a{word-spacing:11.826000px;}
.ws72{word-spacing:11.880000px;}
.ws13{word-spacing:11.904000px;}
.wsef{word-spacing:12.204000px;}
.ws71{word-spacing:12.474000px;}
.wsa0{word-spacing:12.798000px;}
.wsfd{word-spacing:13.338000px;}
.wse9{word-spacing:13.500000px;}
.ws51{word-spacing:13.662000px;}
.ws6f{word-spacing:13.824000px;}
.ws10f{word-spacing:13.932000px;}
.ws124{word-spacing:14.016000px;}
.wsf8{word-spacing:14.418000px;}
.ws125{word-spacing:14.448000px;}
.ws49{word-spacing:14.526000px;}
.ws2d{word-spacing:15.282000px;}
.wsa5{word-spacing:16.362000px;}
.wsfc{word-spacing:17.280000px;}
.ws119{word-spacing:22.704000px;}
.ws1b{word-spacing:22.734000px;}
.ws5{word-spacing:23.280000px;}
.ws13b{word-spacing:26.784000px;}
.ws21{word-spacing:26.838000px;}
.ws11c{word-spacing:42.192000px;}
.ws11d{word-spacing:59.472000px;}
.wsc{word-spacing:104.351400px;}
._a{margin-left:-27.720000px;}
._14{margin-left:-13.536000px;}
._8{margin-left:-10.475400px;}
._11{margin-left:-5.295300px;}
._4{margin-left:-4.020000px;}
._0{margin-left:-2.496000px;}
._1{margin-left:-1.485900px;}
._5{width:1.314000px;}
._3{width:2.574000px;}
._2{width:4.417500px;}
._6{width:5.504100px;}
._d{width:6.827700px;}
._e{width:7.857000px;}
._c{width:9.401400px;}
._1a{width:10.944000px;}
._13{width:12.021300px;}
._16{width:13.780200px;}
._12{width:15.341400px;}
._1b{width:16.401000px;}
._18{width:18.531000px;}
._15{width:19.640700px;}
._10{width:20.962800px;}
._f{width:22.189500px;}
._17{width:24.342300px;}
._b{width:26.722800px;}
._9{width:28.502400px;}
._1c{width:32.640000px;}
._7{width:38.399400px;}
._19{width:61.516500px;}
.fc5{color:rgb(123,121,121);}
.fc3{color:rgb(204,71,63);}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(33,79,141);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:31.482000px;}
.fs5{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.188400px;}
.y1{bottom:56.888400px;}
.y61{bottom:68.031450px;}
.y73{bottom:71.766150px;}
.ycc{bottom:75.366150px;}
.y60{bottom:81.531450px;}
.y7d{bottom:82.866150px;}
.yf3{bottom:83.118300px;}
.y11a{bottom:85.866150px;}
.y72{bottom:89.766150px;}
.yad{bottom:93.366150px;}
.y5f{bottom:95.031450px;}
.yf2{bottom:99.618300px;}
.y7c{bottom:100.866150px;}
.y119{bottom:102.366150px;}
.y71{bottom:107.766150px;}
.y5e{bottom:108.531450px;}
.yac{bottom:111.366150px;}
.yf1{bottom:116.118300px;}
.y118{bottom:118.866150px;}
.ya1{bottom:120.618300px;}
.y38{bottom:121.958250px;}
.y5d{bottom:122.031450px;}
.y70{bottom:125.766150px;}
.yab{bottom:129.366150px;}
.y15{bottom:130.109250px;}
.yf0{bottom:132.618300px;}
.y117{bottom:135.366150px;}
.y5c{bottom:135.531450px;}
.y7b{bottom:136.866150px;}
.y37{bottom:138.458250px;}
.ya0{bottom:138.618300px;}
.y6f{bottom:143.766150px;}
.y14{bottom:145.109250px;}
.y76{bottom:147.366150px;}
.yaa{bottom:149.031450px;}
.yef{bottom:149.118300px;}
.y116{bottom:151.866150px;}
.ycb{bottom:152.118300px;}
.y7a{bottom:153.366150px;}
.y36{bottom:154.958250px;}
.y9f{bottom:156.618300px;}
.y13{bottom:160.109250px;}
.y6e{bottom:161.766150px;}
.ya9{bottom:162.531450px;}
.y75{bottom:165.366150px;}
.yee{bottom:165.618300px;}
.y115{bottom:168.366150px;}
.y79{bottom:169.866150px;}
.yca{bottom:170.118300px;}
.y35{bottom:171.458250px;}
.y9e{bottom:174.618300px;}
.y12{bottom:175.109250px;}
.y6d{bottom:179.766150px;}
.yed{bottom:182.118300px;}
.y74{bottom:183.366150px;}
.y114{bottom:184.866150px;}
.y78{bottom:186.366150px;}
.y34{bottom:187.958250px;}
.yc9{bottom:188.118300px;}
.y11{bottom:190.109250px;}
.y9d{bottom:192.618300px;}
.ya8{bottom:194.166150px;}
.y6c{bottom:197.766150px;}
.yec{bottom:198.618300px;}
.y5b{bottom:201.366150px;}
.y77{bottom:202.866150px;}
.y10{bottom:205.109250px;}
.yc8{bottom:206.118300px;}
.y9c{bottom:210.618300px;}
.ya7{bottom:212.166150px;}
.yeb{bottom:215.118300px;}
.y6b{bottom:215.766150px;}
.y113{bottom:217.866150px;}
.y5a{bottom:219.366150px;}
.yf{bottom:220.109250px;}
.y33{bottom:222.458250px;}
.yc7{bottom:224.118300px;}
.y9b{bottom:228.618300px;}
.ya6{bottom:230.166150px;}
.yea{bottom:231.618300px;}
.y6a{bottom:233.766150px;}
.y112{bottom:234.366150px;}
.y59{bottom:237.366150px;}
.y32{bottom:240.458250px;}
.yc6{bottom:242.118300px;}
.ye{bottom:243.613200px;}
.y9a{bottom:246.618300px;}
.ye9{bottom:248.118300px;}
.ya5{bottom:248.166150px;}
.y111{bottom:250.866150px;}
.y69{bottom:251.766150px;}
.y58{bottom:255.366150px;}
.y31{bottom:258.458250px;}
.y3a{bottom:258.586350px;}
.yc5{bottom:260.118300px;}
.y99{bottom:264.618300px;}
.ya4{bottom:266.166150px;}
.y110{bottom:267.366150px;}
.y68{bottom:269.766150px;}
.y57{bottom:273.366150px;}
.y30{bottom:276.458250px;}
.yc4{bottom:278.118300px;}
.yd{bottom:279.613200px;}
.ye8{bottom:281.118300px;}
.y98{bottom:282.618300px;}
.y10f{bottom:283.866150px;}
.ya3{bottom:284.166150px;}
.y67{bottom:287.766150px;}
.y56{bottom:291.366150px;}
.y2f{bottom:294.458250px;}
.yc{bottom:296.113200px;}
.yc3{bottom:296.118300px;}
.ye7{bottom:297.618300px;}
.y10e{bottom:300.366150px;}
.y97{bottom:300.618300px;}
.y66{bottom:305.766150px;}
.y55{bottom:309.366150px;}
.yb{bottom:312.613200px;}
.yc2{bottom:314.118300px;}
.y10d{bottom:316.866150px;}
.y96{bottom:318.618300px;}
.ya2{bottom:320.166150px;}
.y65{bottom:323.766150px;}
.y54{bottom:327.366150px;}
.ya{bottom:329.113200px;}
.y2e{bottom:330.458250px;}
.ye6{bottom:330.618300px;}
.yc1{bottom:332.118300px;}
.y10c{bottom:333.366150px;}
.y95{bottom:336.618300px;}
.y64{bottom:341.766150px;}
.y53{bottom:345.366150px;}
.y2d{bottom:346.958250px;}
.ye5{bottom:347.118300px;}
.y10b{bottom:349.866150px;}
.yc0{bottom:350.118300px;}
.y94{bottom:354.618300px;}
.y63{bottom:359.766150px;}
.y52{bottom:363.366150px;}
.y2c{bottom:363.458250px;}
.ye4{bottom:363.618300px;}
.y10a{bottom:366.366150px;}
.ybf{bottom:368.118300px;}
.y93{bottom:372.618300px;}
.yd4{bottom:377.766150px;}
.y2b{bottom:379.958250px;}
.ye3{bottom:380.118300px;}
.y51{bottom:381.366150px;}
.y109{bottom:382.866150px;}
.ybe{bottom:386.118300px;}
.y9{bottom:389.632800px;}
.y92{bottom:390.618300px;}
.y62{bottom:395.766150px;}
.ye2{bottom:396.618300px;}
.y50{bottom:399.366150px;}
.ybd{bottom:404.118300px;}
.y8{bottom:407.632800px;}
.y91{bottom:408.618300px;}
.ye1{bottom:413.118300px;}
.yd3{bottom:413.766150px;}
.y2a{bottom:414.458250px;}
.y108{bottom:415.866150px;}
.y4f{bottom:417.366150px;}
.ybc{bottom:422.118300px;}
.y7{bottom:425.632800px;}
.y90{bottom:426.618300px;}
.ye0{bottom:429.618300px;}
.yd2{bottom:431.766150px;}
.y107{bottom:432.366150px;}
.y4e{bottom:435.366150px;}
.ybb{bottom:440.118300px;}
.y8f{bottom:444.618300px;}
.ydf{bottom:446.118300px;}
.y106{bottom:448.866150px;}
.yd1{bottom:449.766150px;}
.y4d{bottom:453.366150px;}
.yba{bottom:458.118300px;}
.y8e{bottom:462.618300px;}
.y6{bottom:463.447950px;}
.y105{bottom:465.366150px;}
.yd0{bottom:467.766150px;}
.y4c{bottom:471.366150px;}
.y29{bottom:472.058250px;}
.yb9{bottom:476.118300px;}
.yde{bottom:479.118300px;}
.y8d{bottom:480.618300px;}
.y104{bottom:481.866150px;}
.ycf{bottom:485.766150px;}
.y28{bottom:486.458250px;}
.y4b{bottom:489.366150px;}
.y5{bottom:494.047950px;}
.yb8{bottom:494.118300px;}
.ydd{bottom:495.618300px;}
.y103{bottom:498.366150px;}
.y8c{bottom:498.618300px;}
.y27{bottom:500.858250px;}
.yce{bottom:503.766150px;}
.y4a{bottom:507.366150px;}
.yb7{bottom:512.118300px;}
.y102{bottom:514.866150px;}
.y26{bottom:515.258250px;}
.y8b{bottom:516.618300px;}
.y4{bottom:524.647950px;}
.y49{bottom:525.366150px;}
.ydc{bottom:528.618300px;}
.y25{bottom:529.658250px;}
.yb6{bottom:530.118300px;}
.y101{bottom:531.366150px;}
.y8a{bottom:534.618300px;}
.ycd{bottom:539.766150px;}
.y48{bottom:543.366150px;}
.y24{bottom:544.058250px;}
.ydb{bottom:545.118300px;}
.y100{bottom:547.866150px;}
.yb5{bottom:548.118300px;}
.y89{bottom:552.618300px;}
.y3{bottom:555.247950px;}
.y23{bottom:558.458250px;}
.y47{bottom:561.366150px;}
.yda{bottom:561.618300px;}
.yff{bottom:564.366150px;}
.yb4{bottom:566.118300px;}
.y88{bottom:570.618300px;}
.y22{bottom:572.858250px;}
.yd9{bottom:578.118300px;}
.y46{bottom:579.366150px;}
.yfe{bottom:580.866150px;}
.yb3{bottom:584.118300px;}
.y21{bottom:587.258250px;}
.y87{bottom:588.618300px;}
.yd8{bottom:594.618300px;}
.y45{bottom:597.366150px;}
.y20{bottom:601.658250px;}
.yb2{bottom:602.118300px;}
.y86{bottom:606.618300px;}
.yd7{bottom:611.118300px;}
.yfd{bottom:613.866150px;}
.y44{bottom:615.366150px;}
.y1f{bottom:616.058250px;}
.yb1{bottom:620.118300px;}
.y85{bottom:624.618300px;}
.yd6{bottom:627.618300px;}
.yfc{bottom:630.366150px;}
.y1e{bottom:630.458250px;}
.y43{bottom:633.366150px;}
.yb0{bottom:638.118300px;}
.yd5{bottom:644.118300px;}
.yfb{bottom:646.866150px;}
.y42{bottom:651.366150px;}
.y1d{bottom:653.362200px;}
.yaf{bottom:656.118300px;}
.y84{bottom:660.618300px;}
.yfa{bottom:663.366150px;}
.y41{bottom:669.366150px;}
.yae{bottom:674.118300px;}
.y83{bottom:677.118300px;}
.yf9{bottom:679.866150px;}
.y40{bottom:687.366150px;}
.y1c{bottom:689.362200px;}
.y82{bottom:693.618300px;}
.yf8{bottom:696.366150px;}
.y1b{bottom:704.362200px;}
.y3f{bottom:705.366150px;}
.y81{bottom:710.118300px;}
.yf7{bottom:712.866150px;}
.y3e{bottom:723.366150px;}
.y80{bottom:726.618300px;}
.y1a{bottom:727.866150px;}
.yf6{bottom:729.366150px;}
.y3d{bottom:741.366150px;}
.y7f{bottom:743.118300px;}
.yf5{bottom:745.866150px;}
.y3c{bottom:759.366150px;}
.yf4{bottom:762.366150px;}
.y19{bottom:763.866150px;}
.y3b{bottom:777.366150px;}
.y7e{bottom:777.618300px;}
.y18{bottom:778.866150px;}
.y17{bottom:790.866150px;}
.y39{bottom:846.484200px;}
.y16{bottom:848.173350px;}
.h2{height:29.718000px;}
.h11{height:32.088000px;}
.ha{height:32.256000px;}
.h12{height:33.558000px;}
.h7{height:34.080000px;}
.h9{height:36.576000px;}
.hc{height:36.672000px;}
.h10{height:37.632000px;}
.hb{height:38.400000px;}
.h6{height:40.080000px;}
.h8{height:43.008000px;}
.he{height:43.200000px;}
.hd{height:47.952000px;}
.h13{height:48.096000px;}
.hf{height:48.384000px;}
.h5{height:53.760000px;}
.h4{height:67.932000px;}
.h3{height:68.136000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.xf{left:24.607650px;}
.x10{left:43.299150px;}
.x12{left:72.283500px;}
.x11{left:93.543300px;}
.x8{left:98.602650px;}
.x4{left:100.850700px;}
.x18{left:102.047250px;}
.x7{left:105.660150px;}
.x5{left:108.908400px;}
.x1{left:114.409500px;}
.xe{left:119.055000px;}
.x17{left:123.307050px;}
.x1b{left:127.559100px;}
.x1a{left:131.269350px;}
.x1d{left:136.063050px;}
.x3{left:141.012150px;}
.x1c{left:157.322850px;}
.x6{left:226.576650px;}
.x14{left:228.285150px;}
.x2{left:230.091150px;}
.x13{left:236.636850px;}
.x9{left:248.856000px;}
.x1e{left:255.118050px;}
.x15{left:338.634900px;}
.x16{left:399.833700px;}
.xa{left:409.336650px;}
.xd{left:418.513800px;}
.xb{left:438.277350px;}
.xc{left:451.080900px;}
.x1f{left:459.161100px;}
.x19{left:594.000000px;}
@media print{
.v1{vertical-align:-6.005867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000016pt;}
.ls4{letter-spacing:0.000043pt;}
.ls8{letter-spacing:0.000069pt;}
.ls19{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.298667pt;}
.ls12{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.624000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.216533pt;}
.ls14{letter-spacing:1.365333pt;}
.ls18{letter-spacing:1.749333pt;}
.ls15{letter-spacing:1.877333pt;}
.ls17{letter-spacing:3.541333pt;}
.lsf{letter-spacing:10.457067pt;}
.ls3{letter-spacing:24.624000pt;}
.wsf4{word-spacing:-48.000000pt;}
.ws22{word-spacing:-24.624000pt;}
.ws136{word-spacing:-12.074667pt;}
.wse{word-spacing:-12.032000pt;}
.ws127{word-spacing:-10.410667pt;}
.ws138{word-spacing:-10.282667pt;}
.ws2{word-spacing:-10.026667pt;}
.ws126{word-spacing:-9.898667pt;}
.wsd7{word-spacing:-9.888000pt;}
.wsd8{word-spacing:-9.792000pt;}
.ws1d{word-spacing:-9.600000pt;}
.ws38{word-spacing:-9.312000pt;}
.ws111{word-spacing:-9.301333pt;}
.ws112{word-spacing:-8.917333pt;}
.ws113{word-spacing:-8.874667pt;}
.ws128{word-spacing:-8.832000pt;}
.ws139{word-spacing:-8.789333pt;}
.ws1{word-spacing:-8.533333pt;}
.wse0{word-spacing:-8.277333pt;}
.ws137{word-spacing:-8.192000pt;}
.ws115{word-spacing:-7.680000pt;}
.ws66{word-spacing:-7.466667pt;}
.ws114{word-spacing:-7.424000pt;}
.ws1f{word-spacing:-7.242667pt;}
.ws0{word-spacing:-6.933333pt;}
.wsd{word-spacing:-6.400000pt;}
.ws1e{word-spacing:-5.596800pt;}
.ws3d{word-spacing:-3.888000pt;}
.ws2a{word-spacing:-3.216000pt;}
.ws11{word-spacing:-3.157333pt;}
.ws12{word-spacing:-3.072000pt;}
.ws48{word-spacing:-2.976000pt;}
.ws8d{word-spacing:-2.880000pt;}
.ws25{word-spacing:-2.688000pt;}
.ws45{word-spacing:-2.448000pt;}
.ws54{word-spacing:-2.400000pt;}
.ws3c{word-spacing:-2.256000pt;}
.ws78{word-spacing:-2.016000pt;}
.ws109{word-spacing:-1.968000pt;}
.ws6c{word-spacing:-1.824000pt;}
.wsd2{word-spacing:-1.728000pt;}
.ws16{word-spacing:-1.706667pt;}
.wsf0{word-spacing:-1.632000pt;}
.ws17{word-spacing:-1.621333pt;}
.ws40{word-spacing:-1.584000pt;}
.wsff{word-spacing:-1.536000pt;}
.ws43{word-spacing:-1.488000pt;}
.ws46{word-spacing:-1.440000pt;}
.ws29{word-spacing:-1.392000pt;}
.ws15{word-spacing:-1.280000pt;}
.ws39{word-spacing:-1.200000pt;}
.ws7c{word-spacing:-1.152000pt;}
.ws55{word-spacing:-1.104000pt;}
.ws4{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws120{word-spacing:-1.024000pt;}
.wsc5{word-spacing:-1.008000pt;}
.wsd4{word-spacing:-0.970667pt;}
.wsc7{word-spacing:-0.960000pt;}
.ws47{word-spacing:-0.912000pt;}
.ws19{word-spacing:-0.864000pt;}
.wsc0{word-spacing:-0.858667pt;}
.wsc1{word-spacing:-0.821333pt;}
.ws5d{word-spacing:-0.816000pt;}
.wsbc{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.682667pt;}
.wsad{word-spacing:-0.672000pt;}
.wsc3{word-spacing:-0.624000pt;}
.ws132{word-spacing:-0.597333pt;}
.wsae{word-spacing:-0.576000pt;}
.wsd6{word-spacing:-0.560000pt;}
.wsd5{word-spacing:-0.522667pt;}
.ws141{word-spacing:-0.512000pt;}
.wsc4{word-spacing:-0.480000pt;}
.ws34{word-spacing:-0.448000pt;}
.ws20{word-spacing:-0.432000pt;}
.ws12a{word-spacing:-0.426667pt;}
.ws65{word-spacing:-0.410667pt;}
.ws9e{word-spacing:-0.336000pt;}
.wsd3{word-spacing:-0.298667pt;}
.wscc{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.144000pt;}
.ws4e{word-spacing:-0.096000pt;}
.ws100{word-spacing:-0.048000pt;}
.ws129{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.037333pt;}
.ws52{word-spacing:0.048000pt;}
.wsf{word-spacing:0.085333pt;}
.ws105{word-spacing:0.096000pt;}
.wsbe{word-spacing:0.144000pt;}
.wsa4{word-spacing:0.149333pt;}
.ws12d{word-spacing:0.170667pt;}
.wsd1{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.213333pt;}
.ws99{word-spacing:0.240000pt;}
.wsa6{word-spacing:0.288000pt;}
.ws122{word-spacing:0.298667pt;}
.ws44{word-spacing:0.336000pt;}
.ws7f{word-spacing:0.384000pt;}
.ws81{word-spacing:0.432000pt;}
.ws18{word-spacing:0.469333pt;}
.ws53{word-spacing:0.480000pt;}
.ws118{word-spacing:0.512000pt;}
.wsaf{word-spacing:0.522667pt;}
.ws59{word-spacing:0.528000pt;}
.ws142{word-spacing:0.554667pt;}
.ws7b{word-spacing:0.576000pt;}
.wsf5{word-spacing:0.624000pt;}
.ws57{word-spacing:0.672000pt;}
.wsfb{word-spacing:0.720000pt;}
.ws42{word-spacing:0.768000pt;}
.ws28{word-spacing:0.816000pt;}
.ws123{word-spacing:0.853333pt;}
.ws75{word-spacing:0.864000pt;}
.wsee{word-spacing:0.912000pt;}
.ws77{word-spacing:0.960000pt;}
.wsa3{word-spacing:1.008000pt;}
.ws36{word-spacing:1.045333pt;}
.ws86{word-spacing:1.056000pt;}
.ws35{word-spacing:1.082667pt;}
.ws56{word-spacing:1.104000pt;}
.ws96{word-spacing:1.152000pt;}
.ws94{word-spacing:1.200000pt;}
.ws37{word-spacing:1.232000pt;}
.wsea{word-spacing:1.248000pt;}
.wsb0{word-spacing:1.269333pt;}
.ws8e{word-spacing:1.296000pt;}
.ws10{word-spacing:1.322667pt;}
.ws102{word-spacing:1.381333pt;}
.ws8c{word-spacing:1.392000pt;}
.ws101{word-spacing:1.418667pt;}
.ws8b{word-spacing:1.536000pt;}
.ws60{word-spacing:1.584000pt;}
.ws11f{word-spacing:1.621333pt;}
.ws5f{word-spacing:1.632000pt;}
.wseb{word-spacing:1.642667pt;}
.ws88{word-spacing:1.664000pt;}
.wsa7{word-spacing:1.680000pt;}
.ws24{word-spacing:1.728000pt;}
.wsdb{word-spacing:1.776000pt;}
.ws110{word-spacing:1.824000pt;}
.ws32{word-spacing:1.829333pt;}
.ws33{word-spacing:1.866667pt;}
.wsaa{word-spacing:1.872000pt;}
.ws70{word-spacing:1.920000pt;}
.ws13d{word-spacing:1.962667pt;}
.ws93{word-spacing:1.968000pt;}
.ws69{word-spacing:2.016000pt;}
.ws13c{word-spacing:2.048000pt;}
.wsb2{word-spacing:2.064000pt;}
.wsb9{word-spacing:2.112000pt;}
.ws10b{word-spacing:2.160000pt;}
.ws13e{word-spacing:2.261333pt;}
.ws103{word-spacing:2.304000pt;}
.wsed{word-spacing:2.352000pt;}
.ws31{word-spacing:2.389333pt;}
.wsb8{word-spacing:2.400000pt;}
.wsda{word-spacing:2.448000pt;}
.ws134{word-spacing:2.474667pt;}
.ws82{word-spacing:2.496000pt;}
.wsdc{word-spacing:2.544000pt;}
.ws3f{word-spacing:2.592000pt;}
.ws121{word-spacing:2.602667pt;}
.ws2f{word-spacing:2.640000pt;}
.ws90{word-spacing:2.688000pt;}
.ws1a{word-spacing:2.736000pt;}
.ws12b{word-spacing:2.773333pt;}
.ws4c{word-spacing:2.832000pt;}
.ws12e{word-spacing:2.858667pt;}
.ws9{word-spacing:2.901333pt;}
.wscf{word-spacing:2.928000pt;}
.ws12f{word-spacing:2.944000pt;}
.ws62{word-spacing:3.072000pt;}
.ws6{word-spacing:3.114667pt;}
.ws10a{word-spacing:3.120000pt;}
.ws85{word-spacing:3.157333pt;}
.ws23{word-spacing:3.168000pt;}
.ws74{word-spacing:3.216000pt;}
.ws107{word-spacing:3.264000pt;}
.ws11a{word-spacing:3.285333pt;}
.wsbb{word-spacing:3.312000pt;}
.wsce{word-spacing:3.408000pt;}
.ws11b{word-spacing:3.413333pt;}
.wse3{word-spacing:3.456000pt;}
.ws76{word-spacing:3.472000pt;}
.ws7{word-spacing:3.541333pt;}
.wscb{word-spacing:3.552000pt;}
.ws8{word-spacing:3.626667pt;}
.wsac{word-spacing:3.696000pt;}
.wse5{word-spacing:3.744000pt;}
.ws84{word-spacing:3.797333pt;}
.ws135{word-spacing:3.840000pt;}
.ws64{word-spacing:3.845333pt;}
.wsec{word-spacing:3.888000pt;}
.ws63{word-spacing:3.957333pt;}
.wsb7{word-spacing:3.984000pt;}
.ws3b{word-spacing:4.032000pt;}
.ws61{word-spacing:4.128000pt;}
.ws143{word-spacing:4.138667pt;}
.ws83{word-spacing:4.176000pt;}
.ws106{word-spacing:4.224000pt;}
.ws67{word-spacing:4.272000pt;}
.ws30{word-spacing:4.320000pt;}
.wsb6{word-spacing:4.368000pt;}
.ws98{word-spacing:4.416000pt;}
.wsdf{word-spacing:4.512000pt;}
.wse8{word-spacing:4.560000pt;}
.ws4f{word-spacing:4.656000pt;}
.ws3a{word-spacing:4.704000pt;}
.wsc6{word-spacing:4.800000pt;}
.wsbd{word-spacing:4.848000pt;}
.wscd{word-spacing:4.896000pt;}
.ws116{word-spacing:4.906667pt;}
.ws3e{word-spacing:4.992000pt;}
.ws117{word-spacing:5.034667pt;}
.ws6d{word-spacing:5.040000pt;}
.wse7{word-spacing:5.088000pt;}
.wsdd{word-spacing:5.136000pt;}
.wsca{word-spacing:5.184000pt;}
.wsb3{word-spacing:5.232000pt;}
.wsd0{word-spacing:5.280000pt;}
.ws2c{word-spacing:5.328000pt;}
.wsc9{word-spacing:5.376000pt;}
.wsa2{word-spacing:5.424000pt;}
.ws7a{word-spacing:5.472000pt;}
.ws26{word-spacing:5.520000pt;}
.wsc8{word-spacing:5.568000pt;}
.wsb5{word-spacing:5.664000pt;}
.wsde{word-spacing:5.712000pt;}
.ws4a{word-spacing:5.760000pt;}
.wsa8{word-spacing:5.808000pt;}
.ws79{word-spacing:5.856000pt;}
.wsba{word-spacing:5.904000pt;}
.ws4b{word-spacing:5.952000pt;}
.ws58{word-spacing:6.048000pt;}
.ws80{word-spacing:6.240000pt;}
.ws5a{word-spacing:6.288000pt;}
.ws27{word-spacing:6.336000pt;}
.wsab{word-spacing:6.384000pt;}
.wsfa{word-spacing:6.528000pt;}
.wsa9{word-spacing:6.576000pt;}
.ws10e{word-spacing:6.624000pt;}
.wsa1{word-spacing:6.720000pt;}
.wse4{word-spacing:6.768000pt;}
.wsd9{word-spacing:6.816000pt;}
.wse6{word-spacing:6.864000pt;}
.ws73{word-spacing:6.912000pt;}
.ws95{word-spacing:6.960000pt;}
.wsbf{word-spacing:7.008000pt;}
.ws89{word-spacing:7.040000pt;}
.ws104{word-spacing:7.056000pt;}
.ws10c{word-spacing:7.152000pt;}
.wse1{word-spacing:7.200000pt;}
.ws50{word-spacing:7.248000pt;}
.ws91{word-spacing:7.296000pt;}
.ws12c{word-spacing:7.466667pt;}
.ws92{word-spacing:7.536000pt;}
.ws9f{word-spacing:7.584000pt;}
.ws41{word-spacing:7.632000pt;}
.wsfe{word-spacing:7.680000pt;}
.ws8f{word-spacing:7.728000pt;}
.ws108{word-spacing:7.776000pt;}
.ws4d{word-spacing:7.824000pt;}
.wsb4{word-spacing:7.920000pt;}
.ws140{word-spacing:7.978667pt;}
.wsf3{word-spacing:8.016000pt;}
.ws9d{word-spacing:8.064000pt;}
.ws5c{word-spacing:8.112000pt;}
.ws6b{word-spacing:8.160000pt;}
.ws13f{word-spacing:8.234667pt;}
.wsf1{word-spacing:8.256000pt;}
.wsf2{word-spacing:8.304000pt;}
.ws6e{word-spacing:8.400000pt;}
.ws130{word-spacing:8.533333pt;}
.ws7d{word-spacing:8.640000pt;}
.ws131{word-spacing:8.789333pt;}
.ws87{word-spacing:8.917333pt;}
.ws7e{word-spacing:8.928000pt;}
.ws9c{word-spacing:9.024000pt;}
.wse2{word-spacing:9.216000pt;}
.wsf9{word-spacing:9.264000pt;}
.wsc2{word-spacing:9.360000pt;}
.ws5b{word-spacing:9.408000pt;}
.wsf7{word-spacing:9.504000pt;}
.ws13a{word-spacing:9.600000pt;}
.ws6a{word-spacing:9.696000pt;}
.ws2e{word-spacing:9.744000pt;}
.ws10d{word-spacing:9.792000pt;}
.ws9b{word-spacing:9.888000pt;}
.ws97{word-spacing:10.032000pt;}
.ws5e{word-spacing:10.080000pt;}
.wsb{word-spacing:10.112000pt;}
.ws11e{word-spacing:10.154667pt;}
.ws9a{word-spacing:10.176000pt;}
.ws14{word-spacing:10.240000pt;}
.wsf6{word-spacing:10.416000pt;}
.ws133{word-spacing:10.453333pt;}
.ws8a{word-spacing:10.512000pt;}
.ws72{word-spacing:10.560000pt;}
.ws13{word-spacing:10.581333pt;}
.wsef{word-spacing:10.848000pt;}
.ws71{word-spacing:11.088000pt;}
.wsa0{word-spacing:11.376000pt;}
.wsfd{word-spacing:11.856000pt;}
.wse9{word-spacing:12.000000pt;}
.ws51{word-spacing:12.144000pt;}
.ws6f{word-spacing:12.288000pt;}
.ws10f{word-spacing:12.384000pt;}
.ws124{word-spacing:12.458667pt;}
.wsf8{word-spacing:12.816000pt;}
.ws125{word-spacing:12.842667pt;}
.ws49{word-spacing:12.912000pt;}
.ws2d{word-spacing:13.584000pt;}
.wsa5{word-spacing:14.544000pt;}
.wsfc{word-spacing:15.360000pt;}
.ws119{word-spacing:20.181333pt;}
.ws1b{word-spacing:20.208000pt;}
.ws5{word-spacing:20.693333pt;}
.ws13b{word-spacing:23.808000pt;}
.ws21{word-spacing:23.856000pt;}
.ws11c{word-spacing:37.504000pt;}
.ws11d{word-spacing:52.864000pt;}
.wsc{word-spacing:92.756800pt;}
._a{margin-left:-24.640000pt;}
._14{margin-left:-12.032000pt;}
._8{margin-left:-9.311467pt;}
._11{margin-left:-4.706933pt;}
._4{margin-left:-3.573333pt;}
._0{margin-left:-2.218667pt;}
._1{margin-left:-1.320800pt;}
._5{width:1.168000pt;}
._3{width:2.288000pt;}
._2{width:3.926667pt;}
._6{width:4.892533pt;}
._d{width:6.069067pt;}
._e{width:6.984000pt;}
._c{width:8.356800pt;}
._1a{width:9.728000pt;}
._13{width:10.685600pt;}
._16{width:12.249067pt;}
._12{width:13.636800pt;}
._1b{width:14.578667pt;}
._18{width:16.472000pt;}
._15{width:17.458400pt;}
._10{width:18.633600pt;}
._f{width:19.724000pt;}
._17{width:21.637600pt;}
._b{width:23.753600pt;}
._9{width:25.335467pt;}
._1c{width:29.013333pt;}
._7{width:34.132800pt;}
._19{width:54.681333pt;}
.fs8{font-size:27.984000pt;}
.fs5{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.167467pt;}
.y1{bottom:50.567467pt;}
.y61{bottom:60.472400pt;}
.y73{bottom:63.792133pt;}
.ycc{bottom:66.992133pt;}
.y60{bottom:72.472400pt;}
.y7d{bottom:73.658800pt;}
.yf3{bottom:73.882933pt;}
.y11a{bottom:76.325467pt;}
.y72{bottom:79.792133pt;}
.yad{bottom:82.992133pt;}
.y5f{bottom:84.472400pt;}
.yf2{bottom:88.549600pt;}
.y7c{bottom:89.658800pt;}
.y119{bottom:90.992133pt;}
.y71{bottom:95.792133pt;}
.y5e{bottom:96.472400pt;}
.yac{bottom:98.992133pt;}
.yf1{bottom:103.216267pt;}
.y118{bottom:105.658800pt;}
.ya1{bottom:107.216267pt;}
.y38{bottom:108.407333pt;}
.y5d{bottom:108.472400pt;}
.y70{bottom:111.792133pt;}
.yab{bottom:114.992133pt;}
.y15{bottom:115.652667pt;}
.yf0{bottom:117.882933pt;}
.y117{bottom:120.325467pt;}
.y5c{bottom:120.472400pt;}
.y7b{bottom:121.658800pt;}
.y37{bottom:123.074000pt;}
.ya0{bottom:123.216267pt;}
.y6f{bottom:127.792133pt;}
.y14{bottom:128.986000pt;}
.y76{bottom:130.992133pt;}
.yaa{bottom:132.472400pt;}
.yef{bottom:132.549600pt;}
.y116{bottom:134.992133pt;}
.ycb{bottom:135.216267pt;}
.y7a{bottom:136.325467pt;}
.y36{bottom:137.740667pt;}
.y9f{bottom:139.216267pt;}
.y13{bottom:142.319333pt;}
.y6e{bottom:143.792133pt;}
.ya9{bottom:144.472400pt;}
.y75{bottom:146.992133pt;}
.yee{bottom:147.216267pt;}
.y115{bottom:149.658800pt;}
.y79{bottom:150.992133pt;}
.yca{bottom:151.216267pt;}
.y35{bottom:152.407333pt;}
.y9e{bottom:155.216267pt;}
.y12{bottom:155.652667pt;}
.y6d{bottom:159.792133pt;}
.yed{bottom:161.882933pt;}
.y74{bottom:162.992133pt;}
.y114{bottom:164.325467pt;}
.y78{bottom:165.658800pt;}
.y34{bottom:167.074000pt;}
.yc9{bottom:167.216267pt;}
.y11{bottom:168.986000pt;}
.y9d{bottom:171.216267pt;}
.ya8{bottom:172.592133pt;}
.y6c{bottom:175.792133pt;}
.yec{bottom:176.549600pt;}
.y5b{bottom:178.992133pt;}
.y77{bottom:180.325467pt;}
.y10{bottom:182.319333pt;}
.yc8{bottom:183.216267pt;}
.y9c{bottom:187.216267pt;}
.ya7{bottom:188.592133pt;}
.yeb{bottom:191.216267pt;}
.y6b{bottom:191.792133pt;}
.y113{bottom:193.658800pt;}
.y5a{bottom:194.992133pt;}
.yf{bottom:195.652667pt;}
.y33{bottom:197.740667pt;}
.yc7{bottom:199.216267pt;}
.y9b{bottom:203.216267pt;}
.ya6{bottom:204.592133pt;}
.yea{bottom:205.882933pt;}
.y6a{bottom:207.792133pt;}
.y112{bottom:208.325467pt;}
.y59{bottom:210.992133pt;}
.y32{bottom:213.740667pt;}
.yc6{bottom:215.216267pt;}
.ye{bottom:216.545067pt;}
.y9a{bottom:219.216267pt;}
.ye9{bottom:220.549600pt;}
.ya5{bottom:220.592133pt;}
.y111{bottom:222.992133pt;}
.y69{bottom:223.792133pt;}
.y58{bottom:226.992133pt;}
.y31{bottom:229.740667pt;}
.y3a{bottom:229.854533pt;}
.yc5{bottom:231.216267pt;}
.y99{bottom:235.216267pt;}
.ya4{bottom:236.592133pt;}
.y110{bottom:237.658800pt;}
.y68{bottom:239.792133pt;}
.y57{bottom:242.992133pt;}
.y30{bottom:245.740667pt;}
.yc4{bottom:247.216267pt;}
.yd{bottom:248.545067pt;}
.ye8{bottom:249.882933pt;}
.y98{bottom:251.216267pt;}
.y10f{bottom:252.325467pt;}
.ya3{bottom:252.592133pt;}
.y67{bottom:255.792133pt;}
.y56{bottom:258.992133pt;}
.y2f{bottom:261.740667pt;}
.yc{bottom:263.211733pt;}
.yc3{bottom:263.216267pt;}
.ye7{bottom:264.549600pt;}
.y10e{bottom:266.992133pt;}
.y97{bottom:267.216267pt;}
.y66{bottom:271.792133pt;}
.y55{bottom:274.992133pt;}
.yb{bottom:277.878400pt;}
.yc2{bottom:279.216267pt;}
.y10d{bottom:281.658800pt;}
.y96{bottom:283.216267pt;}
.ya2{bottom:284.592133pt;}
.y65{bottom:287.792133pt;}
.y54{bottom:290.992133pt;}
.ya{bottom:292.545067pt;}
.y2e{bottom:293.740667pt;}
.ye6{bottom:293.882933pt;}
.yc1{bottom:295.216267pt;}
.y10c{bottom:296.325467pt;}
.y95{bottom:299.216267pt;}
.y64{bottom:303.792133pt;}
.y53{bottom:306.992133pt;}
.y2d{bottom:308.407333pt;}
.ye5{bottom:308.549600pt;}
.y10b{bottom:310.992133pt;}
.yc0{bottom:311.216267pt;}
.y94{bottom:315.216267pt;}
.y63{bottom:319.792133pt;}
.y52{bottom:322.992133pt;}
.y2c{bottom:323.074000pt;}
.ye4{bottom:323.216267pt;}
.y10a{bottom:325.658800pt;}
.ybf{bottom:327.216267pt;}
.y93{bottom:331.216267pt;}
.yd4{bottom:335.792133pt;}
.y2b{bottom:337.740667pt;}
.ye3{bottom:337.882933pt;}
.y51{bottom:338.992133pt;}
.y109{bottom:340.325467pt;}
.ybe{bottom:343.216267pt;}
.y9{bottom:346.340267pt;}
.y92{bottom:347.216267pt;}
.y62{bottom:351.792133pt;}
.ye2{bottom:352.549600pt;}
.y50{bottom:354.992133pt;}
.ybd{bottom:359.216267pt;}
.y8{bottom:362.340267pt;}
.y91{bottom:363.216267pt;}
.ye1{bottom:367.216267pt;}
.yd3{bottom:367.792133pt;}
.y2a{bottom:368.407333pt;}
.y108{bottom:369.658800pt;}
.y4f{bottom:370.992133pt;}
.ybc{bottom:375.216267pt;}
.y7{bottom:378.340267pt;}
.y90{bottom:379.216267pt;}
.ye0{bottom:381.882933pt;}
.yd2{bottom:383.792133pt;}
.y107{bottom:384.325467pt;}
.y4e{bottom:386.992133pt;}
.ybb{bottom:391.216267pt;}
.y8f{bottom:395.216267pt;}
.ydf{bottom:396.549600pt;}
.y106{bottom:398.992133pt;}
.yd1{bottom:399.792133pt;}
.y4d{bottom:402.992133pt;}
.yba{bottom:407.216267pt;}
.y8e{bottom:411.216267pt;}
.y6{bottom:411.953733pt;}
.y105{bottom:413.658800pt;}
.yd0{bottom:415.792133pt;}
.y4c{bottom:418.992133pt;}
.y29{bottom:419.607333pt;}
.yb9{bottom:423.216267pt;}
.yde{bottom:425.882933pt;}
.y8d{bottom:427.216267pt;}
.y104{bottom:428.325467pt;}
.ycf{bottom:431.792133pt;}
.y28{bottom:432.407333pt;}
.y4b{bottom:434.992133pt;}
.y5{bottom:439.153733pt;}
.yb8{bottom:439.216267pt;}
.ydd{bottom:440.549600pt;}
.y103{bottom:442.992133pt;}
.y8c{bottom:443.216267pt;}
.y27{bottom:445.207333pt;}
.yce{bottom:447.792133pt;}
.y4a{bottom:450.992133pt;}
.yb7{bottom:455.216267pt;}
.y102{bottom:457.658800pt;}
.y26{bottom:458.007333pt;}
.y8b{bottom:459.216267pt;}
.y4{bottom:466.353733pt;}
.y49{bottom:466.992133pt;}
.ydc{bottom:469.882933pt;}
.y25{bottom:470.807333pt;}
.yb6{bottom:471.216267pt;}
.y101{bottom:472.325467pt;}
.y8a{bottom:475.216267pt;}
.ycd{bottom:479.792133pt;}
.y48{bottom:482.992133pt;}
.y24{bottom:483.607333pt;}
.ydb{bottom:484.549600pt;}
.y100{bottom:486.992133pt;}
.yb5{bottom:487.216267pt;}
.y89{bottom:491.216267pt;}
.y3{bottom:493.553733pt;}
.y23{bottom:496.407333pt;}
.y47{bottom:498.992133pt;}
.yda{bottom:499.216267pt;}
.yff{bottom:501.658800pt;}
.yb4{bottom:503.216267pt;}
.y88{bottom:507.216267pt;}
.y22{bottom:509.207333pt;}
.yd9{bottom:513.882933pt;}
.y46{bottom:514.992133pt;}
.yfe{bottom:516.325467pt;}
.yb3{bottom:519.216267pt;}
.y21{bottom:522.007333pt;}
.y87{bottom:523.216267pt;}
.yd8{bottom:528.549600pt;}
.y45{bottom:530.992133pt;}
.y20{bottom:534.807333pt;}
.yb2{bottom:535.216267pt;}
.y86{bottom:539.216267pt;}
.yd7{bottom:543.216267pt;}
.yfd{bottom:545.658800pt;}
.y44{bottom:546.992133pt;}
.y1f{bottom:547.607333pt;}
.yb1{bottom:551.216267pt;}
.y85{bottom:555.216267pt;}
.yd6{bottom:557.882933pt;}
.yfc{bottom:560.325467pt;}
.y1e{bottom:560.407333pt;}
.y43{bottom:562.992133pt;}
.yb0{bottom:567.216267pt;}
.yd5{bottom:572.549600pt;}
.yfb{bottom:574.992133pt;}
.y42{bottom:578.992133pt;}
.y1d{bottom:580.766400pt;}
.yaf{bottom:583.216267pt;}
.y84{bottom:587.216267pt;}
.yfa{bottom:589.658800pt;}
.y41{bottom:594.992133pt;}
.yae{bottom:599.216267pt;}
.y83{bottom:601.882933pt;}
.yf9{bottom:604.325467pt;}
.y40{bottom:610.992133pt;}
.y1c{bottom:612.766400pt;}
.y82{bottom:616.549600pt;}
.yf8{bottom:618.992133pt;}
.y1b{bottom:626.099733pt;}
.y3f{bottom:626.992133pt;}
.y81{bottom:631.216267pt;}
.yf7{bottom:633.658800pt;}
.y3e{bottom:642.992133pt;}
.y80{bottom:645.882933pt;}
.y1a{bottom:646.992133pt;}
.yf6{bottom:648.325467pt;}
.y3d{bottom:658.992133pt;}
.y7f{bottom:660.549600pt;}
.yf5{bottom:662.992133pt;}
.y3c{bottom:674.992133pt;}
.yf4{bottom:677.658800pt;}
.y19{bottom:678.992133pt;}
.y3b{bottom:690.992133pt;}
.y7e{bottom:691.216267pt;}
.y18{bottom:692.325467pt;}
.y17{bottom:702.992133pt;}
.y39{bottom:752.430400pt;}
.y16{bottom:753.931867pt;}
.h2{height:26.416000pt;}
.h11{height:28.522667pt;}
.ha{height:28.672000pt;}
.h12{height:29.829333pt;}
.h7{height:30.293333pt;}
.h9{height:32.512000pt;}
.hc{height:32.597333pt;}
.h10{height:33.450667pt;}
.hb{height:34.133333pt;}
.h6{height:35.626667pt;}
.h8{height:38.229333pt;}
.he{height:38.400000pt;}
.hd{height:42.624000pt;}
.h13{height:42.752000pt;}
.hf{height:43.008000pt;}
.h5{height:47.786667pt;}
.h4{height:60.384000pt;}
.h3{height:60.565333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.xf{left:21.873467pt;}
.x10{left:38.488133pt;}
.x12{left:64.252000pt;}
.x11{left:83.149600pt;}
.x8{left:87.646800pt;}
.x4{left:89.645067pt;}
.x18{left:90.708667pt;}
.x7{left:93.920133pt;}
.x5{left:96.807467pt;}
.x1{left:101.697333pt;}
.xe{left:105.826667pt;}
.x17{left:109.606267pt;}
.x1b{left:113.385867pt;}
.x1a{left:116.683867pt;}
.x1d{left:120.944933pt;}
.x3{left:125.344133pt;}
.x1c{left:139.842533pt;}
.x6{left:201.401467pt;}
.x14{left:202.920133pt;}
.x2{left:204.525467pt;}
.x13{left:210.343867pt;}
.x9{left:221.205333pt;}
.x1e{left:226.771600pt;}
.x15{left:301.008800pt;}
.x16{left:355.407733pt;}
.xa{left:363.854800pt;}
.xd{left:372.012267pt;}
.xb{left:389.579867pt;}
.xc{left:400.960800pt;}
.x1f{left:408.143200pt;}
.x19{left:528.000000pt;}
}




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