
    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_10b4fd2f461e350a7e7a01f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_3b6f27b2110389744a6e337d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_b37f79c3ef05ffe177d2e86d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006000;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_0d94ab7a2fae076ebe62003e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_bb04c1e08570abd4d8b396a8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2bf7325505cf88708cb889ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_367990124e5268d84b92d374.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.177000;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_34d968cccd51abfad9340b82.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_4c4362061daf4888260a9a21.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b93f8a656d418b1f57f6bf8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;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_55c9e556ceffcd494b026f76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_e2558cdac9f9992c0d2ec9d9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_20ae6ea2e52c8f748db4bec9.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.255000px;}
.lsb{letter-spacing:-0.336000px;}
.lsa{letter-spacing:-0.084000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.459000px;}
.ls2{letter-spacing:0.486000px;}
.ls8{letter-spacing:0.561000px;}
.ls5{letter-spacing:1.122000px;}
.ls6{letter-spacing:1.173000px;}
.ls4{letter-spacing:1.479000px;}
.ls0{letter-spacing:6.576600px;}
.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:-72.000000px;}
.ws11{word-spacing:-60.000000px;}
.ws6c{word-spacing:-15.120000px;}
.ws26{word-spacing:-15.036000px;}
.ws7f{word-spacing:-14.952000px;}
.wsad{word-spacing:-14.700000px;}
.wsc{word-spacing:-13.920000px;}
.ws0{word-spacing:-13.392000px;}
.wsd{word-spacing:-12.699000px;}
.wsaf{word-spacing:-12.528000px;}
.wsf{word-spacing:-12.393000px;}
.wse{word-spacing:-12.342000px;}
.wsae{word-spacing:-12.258000px;}
.ws10{word-spacing:-11.679000px;}
.ws2{word-spacing:-11.136000px;}
.ws3{word-spacing:-10.896000px;}
.wsb{word-spacing:-9.534000px;}
.ws7{word-spacing:-3.150000px;}
.wsbe{word-spacing:-3.024000px;}
.ws56{word-spacing:-2.754000px;}
.ws5b{word-spacing:-2.322000px;}
.ws44{word-spacing:-2.268000px;}
.ws69{word-spacing:-2.214000px;}
.ws59{word-spacing:-2.160000px;}
.ws6e{word-spacing:-2.052000px;}
.ws47{word-spacing:-1.998000px;}
.wsb9{word-spacing:-1.890000px;}
.wsb6{word-spacing:-1.836000px;}
.ws5e{word-spacing:-1.782000px;}
.ws93{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.632000px;}
.wsb4{word-spacing:-1.620000px;}
.wsa9{word-spacing:-1.566000px;}
.ws53{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.479000px;}
.ws83{word-spacing:-1.458000px;}
.wsb0{word-spacing:-1.350000px;}
.ws9c{word-spacing:-1.296000px;}
.ws45{word-spacing:-1.242000px;}
.ws8c{word-spacing:-1.188000px;}
.ws61{word-spacing:-1.134000px;}
.ws43{word-spacing:-1.080000px;}
.wsb8{word-spacing:-0.972000px;}
.ws94{word-spacing:-0.918000px;}
.ws4b{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.816000px;}
.ws7a{word-spacing:-0.810000px;}
.ws1e{word-spacing:-0.765000px;}
.ws92{word-spacing:-0.756000px;}
.ws15{word-spacing:-0.714000px;}
.ws6d{word-spacing:-0.702000px;}
.ws25{word-spacing:-0.561000px;}
.ws24{word-spacing:-0.510000px;}
.ws5{word-spacing:-0.486000px;}
.ws1a{word-spacing:-0.459000px;}
.wsb1{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.378000px;}
.wsa8{word-spacing:-0.324000px;}
.ws8e{word-spacing:-0.270000px;}
.ws22{word-spacing:-0.255000px;}
.ws3f{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.162000px;}
.ws7b{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:0.051000px;}
.ws8a{word-spacing:0.054000px;}
.ws9a{word-spacing:0.108000px;}
.ws21{word-spacing:0.204000px;}
.ws7e{word-spacing:0.216000px;}
.ws66{word-spacing:0.270000px;}
.ws9b{word-spacing:0.324000px;}
.ws3d{word-spacing:0.432000px;}
.ws28{word-spacing:0.486000px;}
.ws80{word-spacing:0.540000px;}
.ws82{word-spacing:0.594000px;}
.ws65{word-spacing:0.648000px;}
.ws5f{word-spacing:0.702000px;}
.ws5d{word-spacing:0.756000px;}
.ws2a{word-spacing:0.810000px;}
.ws57{word-spacing:0.864000px;}
.ws16{word-spacing:0.918000px;}
.ws1b{word-spacing:1.020000px;}
.ws48{word-spacing:1.026000px;}
.ws30{word-spacing:1.134000px;}
.ws3a{word-spacing:1.188000px;}
.ws1c{word-spacing:1.224000px;}
.ws49{word-spacing:1.242000px;}
.ws7d{word-spacing:1.296000px;}
.ws7c{word-spacing:1.350000px;}
.wsbc{word-spacing:1.404000px;}
.ws68{word-spacing:1.512000px;}
.ws34{word-spacing:1.566000px;}
.ws62{word-spacing:1.620000px;}
.ws63{word-spacing:1.674000px;}
.ws2f{word-spacing:1.728000px;}
.ws3c{word-spacing:1.782000px;}
.ws67{word-spacing:1.836000px;}
.ws4a{word-spacing:1.890000px;}
.ws81{word-spacing:1.944000px;}
.ws64{word-spacing:2.052000px;}
.ws5c{word-spacing:2.106000px;}
.wsa0{word-spacing:2.160000px;}
.wsba{word-spacing:2.214000px;}
.ws5a{word-spacing:2.268000px;}
.ws2d{word-spacing:2.322000px;}
.ws32{word-spacing:2.376000px;}
.ws40{word-spacing:2.430000px;}
.ws51{word-spacing:2.484000px;}
.ws6b{word-spacing:2.538000px;}
.ws71{word-spacing:2.592000px;}
.wsa4{word-spacing:2.646000px;}
.wsa6{word-spacing:2.700000px;}
.ws18{word-spacing:2.703000px;}
.ws6f{word-spacing:2.754000px;}
.wsa5{word-spacing:2.808000px;}
.ws6a{word-spacing:2.862000px;}
.ws2e{word-spacing:2.916000px;}
.ws84{word-spacing:2.970000px;}
.ws54{word-spacing:3.024000px;}
.ws91{word-spacing:3.078000px;}
.ws33{word-spacing:3.132000px;}
.ws36{word-spacing:3.186000px;}
.ws60{word-spacing:3.240000px;}
.ws99{word-spacing:3.294000px;}
.ws79{word-spacing:3.402000px;}
.ws14{word-spacing:3.417000px;}
.ws95{word-spacing:3.510000px;}
.wsa3{word-spacing:3.618000px;}
.ws90{word-spacing:3.672000px;}
.ws39{word-spacing:3.780000px;}
.wsac{word-spacing:3.834000px;}
.wsa1{word-spacing:3.888000px;}
.wsb5{word-spacing:3.942000px;}
.ws72{word-spacing:3.996000px;}
.ws9f{word-spacing:4.104000px;}
.ws88{word-spacing:4.158000px;}
.ws50{word-spacing:4.212000px;}
.ws12{word-spacing:4.284000px;}
.ws78{word-spacing:4.320000px;}
.wsab{word-spacing:4.428000px;}
.ws9d{word-spacing:4.482000px;}
.ws38{word-spacing:4.536000px;}
.ws42{word-spacing:4.590000px;}
.ws1f{word-spacing:4.641000px;}
.wsbb{word-spacing:4.644000px;}
.ws76{word-spacing:4.698000px;}
.ws55{word-spacing:4.860000px;}
.ws35{word-spacing:5.022000px;}
.ws2b{word-spacing:5.076000px;}
.ws2c{word-spacing:5.184000px;}
.wsb7{word-spacing:5.238000px;}
.ws4f{word-spacing:5.292000px;}
.ws3e{word-spacing:5.346000px;}
.ws77{word-spacing:5.400000px;}
.ws73{word-spacing:5.454000px;}
.ws58{word-spacing:5.508000px;}
.ws89{word-spacing:5.562000px;}
.wsa7{word-spacing:5.670000px;}
.ws9e{word-spacing:5.724000px;}
.ws96{word-spacing:5.778000px;}
.ws4d{word-spacing:5.832000px;}
.ws20{word-spacing:5.865000px;}
.ws8f{word-spacing:5.994000px;}
.ws52{word-spacing:6.318000px;}
.ws85{word-spacing:6.426000px;}
.ws27{word-spacing:6.480000px;}
.wsa{word-spacing:6.576000px;}
.ws37{word-spacing:6.588000px;}
.ws41{word-spacing:6.696000px;}
.ws31{word-spacing:6.750000px;}
.ws8b{word-spacing:6.804000px;}
.wsaa{word-spacing:6.966000px;}
.wsa2{word-spacing:7.074000px;}
.ws86{word-spacing:7.290000px;}
.ws4c{word-spacing:7.344000px;}
.ws29{word-spacing:7.452000px;}
.wsb2{word-spacing:7.722000px;}
.ws70{word-spacing:7.776000px;}
.wsb3{word-spacing:7.884000px;}
.ws1d{word-spacing:7.905000px;}
.ws75{word-spacing:7.938000px;}
.ws4e{word-spacing:8.586000px;}
.ws3b{word-spacing:8.856000px;}
.ws74{word-spacing:8.964000px;}
.ws9{word-spacing:12.672000px;}
.wsbd{word-spacing:13.014000px;}
.ws8{word-spacing:15.696000px;}
.ws97{word-spacing:45.352800px;}
.ws98{word-spacing:121.695600px;}
.ws87{word-spacing:230.399400px;}
.ws8d{word-spacing:230.400000px;}
._1{margin-left:-36.000000px;}
._6{margin-left:-26.943300px;}
._5{margin-left:-25.459200px;}
._4{margin-left:-22.907700px;}
._7{margin-left:-21.890700px;}
._3d{margin-left:-6.771600px;}
._d{margin-left:-4.085400px;}
._3{margin-left:-3.060000px;}
._0{margin-left:-1.806000px;}
._2{width:1.992600px;}
._8{width:3.508800px;}
._9{width:5.314200px;}
._b{width:6.798600px;}
._c{width:8.229600px;}
._33{width:62.889000px;}
._34{width:64.322400px;}
._30{width:69.947400px;}
._10{width:83.016000px;}
._29{width:89.303400px;}
._2d{width:91.645200px;}
._3a{width:97.912200px;}
._a{width:102.220200px;}
._3c{width:123.611400px;}
._32{width:124.631400px;}
._3b{width:132.831600px;}
._36{width:139.233000px;}
._37{width:141.483000px;}
._35{width:145.314600px;}
._38{width:146.576400px;}
._39{width:165.210000px;}
._19{width:180.109800px;}
._1e{width:200.635800px;}
._15{width:210.733800px;}
._13{width:224.731800px;}
._1d{width:232.045800px;}
._12{width:241.535400px;}
._2a{width:264.198000px;}
._2b{width:271.261200px;}
._18{width:281.149800px;}
._31{width:293.449200px;}
._1f{width:307.981800px;}
._1b{width:313.339800px;}
._28{width:314.910600px;}
._e{width:316.211400px;}
._2c{width:325.585800px;}
._2f{width:346.843200px;}
._20{width:353.149200px;}
._25{width:376.669200px;}
._11{width:402.829800px;}
._1a{width:451.837800px;}
._14{width:455.485800px;}
._23{width:562.573200px;}
._22{width:592.477200px;}
._27{width:594.337200px;}
._2e{width:612.870600px;}
._17{width:689.437800px;}
._24{width:698.509200px;}
._26{width:717.949200px;}
._16{width:739.981800px;}
._f{width:844.232400px;}
._21{width:885.565200px;}
._1c{width:897.565800px;}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(79,76,77);}
.fc0{color:rgb(101,98,99);}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:35.870700px;}
.y3{bottom:36.929250px;}
.y1{bottom:38.493000px;}
.y21{bottom:49.370700px;}
.y2{bottom:50.429250px;}
.ya9{bottom:96.001800px;}
.yfe{bottom:98.375850px;}
.y78{bottom:100.051500px;}
.y118{bottom:101.694300px;}
.yf8{bottom:101.830200px;}
.y4b{bottom:102.093150px;}
.y1d8{bottom:104.251800px;}
.y1c{bottom:110.278500px;}
.ya8{bottom:112.501800px;}
.yfd{bottom:114.875850px;}
.y77{bottom:116.551500px;}
.y4a{bottom:117.843150px;}
.yf7{bottom:118.330200px;}
.yd2{bottom:120.751800px;}
.y1b{bottom:125.278500px;}
.y117{bottom:126.522150px;}
.ya7{bottom:129.001800px;}
.y1ca{bottom:129.234450px;}
.yfc{bottom:131.375850px;}
.y76{bottom:133.051500px;}
.y49{bottom:133.593150px;}
.yd1{bottom:137.251800px;}
.y1a{bottom:140.278500px;}
.y116{bottom:140.922150px;}
.y1d7{bottom:141.376800px;}
.ya6{bottom:145.501800px;}
.y13f{bottom:145.518900px;}
.y1c9{bottom:145.734450px;}
.yfb{bottom:147.875850px;}
.y48{bottom:149.343150px;}
.y75{bottom:149.551500px;}
.yd0{bottom:153.751800px;}
.y19{bottom:155.278500px;}
.y1d6{bottom:157.876800px;}
.ya5{bottom:162.001800px;}
.y13e{bottom:162.018900px;}
.y1c8{bottom:162.234450px;}
.y47{bottom:165.093150px;}
.y115{bottom:165.749850px;}
.ycf{bottom:170.251800px;}
.yf6{bottom:170.818950px;}
.y74{bottom:174.301500px;}
.ya4{bottom:178.501800px;}
.y13d{bottom:178.518900px;}
.y18{bottom:178.528500px;}
.y1c7{bottom:178.734450px;}
.yce{bottom:186.751800px;}
.y17f{bottom:187.089300px;}
.y46{bottom:189.347100px;}
.y114{bottom:190.577700px;}
.y73{bottom:190.801500px;}
.ya3{bottom:195.001800px;}
.y13c{bottom:195.018900px;}
.yf5{bottom:195.646800px;}
.y1d5{bottom:199.126800px;}
.ycd{bottom:203.251800px;}
.y1c6{bottom:203.484450px;}
.y17e{bottom:203.589300px;}
.y72{bottom:207.301500px;}
.y19c{bottom:209.353800px;}
.ya2{bottom:211.501800px;}
.y13b{bottom:211.518900px;}
.y113{bottom:215.405550px;}
.y1d4{bottom:215.626800px;}
.yc0{bottom:219.751800px;}
.y1c5{bottom:219.984450px;}
.y17d{bottom:220.089300px;}
.yf4{bottom:220.474500px;}
.y71{bottom:223.801500px;}
.y19b{bottom:225.853800px;}
.ya1{bottom:228.001800px;}
.y1d3{bottom:232.126800px;}
.y15d{bottom:236.102700px;}
.ybf{bottom:236.251800px;}
.y13a{bottom:236.268900px;}
.y1c4{bottom:236.484450px;}
.y17c{bottom:236.589300px;}
.y112{bottom:240.233400px;}
.y70{bottom:240.301500px;}
.y19a{bottom:242.353800px;}
.y45{bottom:243.607050px;}
.ycc{bottom:244.501800px;}
.yf3{bottom:245.302350px;}
.y15c{bottom:250.502700px;}
.ya0{bottom:252.751800px;}
.y139{bottom:252.768900px;}
.y1c3{bottom:252.984450px;}
.y17b{bottom:253.089300px;}
.y6f{bottom:256.801500px;}
.y199{bottom:258.853800px;}
.ycb{bottom:261.001800px;}
.yed{bottom:262.930200px;}
.y111{bottom:265.061250px;}
.y9f{bottom:269.251800px;}
.y138{bottom:269.268900px;}
.y1c2{bottom:269.484450px;}
.yf2{bottom:270.130200px;}
.y44{bottom:271.858950px;}
.y6e{bottom:273.301500px;}
.y15b{bottom:275.330550px;}
.y198{bottom:275.353800px;}
.yec{bottom:277.330200px;}
.yca{bottom:277.501800px;}
.y17a{bottom:277.839300px;}
.y110{bottom:279.461250px;}
.y9e{bottom:285.751800px;}
.y137{bottom:285.768900px;}
.y1c1{bottom:285.984450px;}
.y43{bottom:287.608950px;}
.y15a{bottom:289.730550px;}
.y6d{bottom:289.801500px;}
.y197{bottom:291.853800px;}
.ybe{bottom:294.001800px;}
.y179{bottom:294.339300px;}
.yf1{bottom:294.958050px;}
.y1e9{bottom:298.126800px;}
.y9d{bottom:302.251800px;}
.y136{bottom:302.268900px;}
.y1c0{bottom:302.484450px;}
.y42{bottom:303.358950px;}
.y159{bottom:304.130550px;}
.y10f{bottom:304.288950px;}
.y6c{bottom:306.301500px;}
.y1d2{bottom:306.376800px;}
.y196{bottom:308.353800px;}
.ybd{bottom:310.501800px;}
.y178{bottom:310.839300px;}
.y1e8{bottom:314.626800px;}
.y9c{bottom:318.751800px;}
.y135{bottom:318.768900px;}
.y1bf{bottom:318.984450px;}
.y41{bottom:319.108950px;}
.yf0{bottom:319.785900px;}
.y6b{bottom:322.801500px;}
.y1d1{bottom:322.876800px;}
.y195{bottom:324.853800px;}
.ybc{bottom:327.001800px;}
.y177{bottom:327.339300px;}
.y158{bottom:328.958400px;}
.y10e{bottom:329.116800px;}
.y1e7{bottom:331.126800px;}
.y40{bottom:334.858950px;}
.y9b{bottom:335.251800px;}
.y134{bottom:335.268900px;}
.y1be{bottom:335.484450px;}
.y1d0{bottom:339.376800px;}
.y194{bottom:341.353800px;}
.y157{bottom:343.358400px;}
.ybb{bottom:343.501800px;}
.y176{bottom:343.839300px;}
.yef{bottom:344.613600px;}
.y6a{bottom:347.551500px;}
.y3f{bottom:350.608950px;}
.y9a{bottom:351.751800px;}
.y133{bottom:351.768900px;}
.y1bd{bottom:351.984450px;}
.y10d{bottom:353.944650px;}
.y193{bottom:357.853800px;}
.yba{bottom:360.001800px;}
.y175{bottom:360.339300px;}
.y69{bottom:364.051500px;}
.y3e{bottom:366.358950px;}
.y156{bottom:368.186250px;}
.y99{bottom:368.251800px;}
.y132{bottom:368.268900px;}
.y1bc{bottom:368.484450px;}
.yee{bottom:369.441450px;}
.y192{bottom:374.353800px;}
.yb9{bottom:376.501800px;}
.y174{bottom:376.839300px;}
.y10c{bottom:378.772500px;}
.y68{bottom:380.551500px;}
.y155{bottom:382.586250px;}
.y98{bottom:384.751800px;}
.y3d{bottom:390.612900px;}
.y1cf{bottom:393.001800px;}
.y131{bottom:393.018900px;}
.y1bb{bottom:393.234450px;}
.y173{bottom:393.339300px;}
.yeb{bottom:394.269300px;}
.y67{bottom:397.051500px;}
.y18c{bottom:400.685700px;}
.y97{bottom:401.251800px;}
.y10b{bottom:403.600350px;}
.y1e6{bottom:405.376800px;}
.y154{bottom:407.413950px;}
.yea{bottom:408.669300px;}
.y130{bottom:409.518900px;}
.y1ba{bottom:409.734450px;}
.y172{bottom:409.839300px;}
.y66{bottom:413.551500px;}
.y1ce{bottom:413.626800px;}
.y17{bottom:415.364850px;}
.y96{bottom:417.751800px;}
.y10a{bottom:418.000350px;}
.ye8{bottom:419.097150px;}
.y18b{bottom:419.810700px;}
.y153{bottom:421.814100px;}
.y1e5{bottom:421.876800px;}
.y12f{bottom:426.018900px;}
.y1b9{bottom:426.234450px;}
.y171{bottom:426.339300px;}
.y65{bottom:430.051500px;}
.y1cd{bottom:430.126800px;}
.y16{bottom:430.364850px;}
.ye7{bottom:433.497150px;}
.yb8{bottom:434.251800px;}
.y152{bottom:436.214100px;}
.y95{bottom:442.501800px;}
.y1b8{bottom:442.734450px;}
.y109{bottom:442.828050px;}
.y3c{bottom:444.872700px;}
.y15{bottom:445.364850px;}
.y64{bottom:446.551500px;}
.yb7{bottom:450.751800px;}
.y12e{bottom:450.768900px;}
.ye9{bottom:458.325000px;}
.y94{bottom:459.001800px;}
.y1b7{bottom:459.234450px;}
.y14{bottom:460.364850px;}
.y151{bottom:461.041800px;}
.y18a{bottom:461.060700px;}
.y63{bottom:463.051500px;}
.yb6{bottom:467.251800px;}
.y12d{bottom:467.268900px;}
.y108{bottom:467.655900px;}
.y3b{bottom:473.378700px;}
.y150{bottom:475.441800px;}
.y93{bottom:475.501800px;}
.y1b6{bottom:475.734450px;}
.y189{bottom:477.560700px;}
.y170{bottom:478.828050px;}
.y62{bottom:479.551500px;}
.ye6{bottom:483.152700px;}
.yb5{bottom:483.751800px;}
.y12c{bottom:483.768900px;}
.y13{bottom:486.868650px;}
.y3a{bottom:489.128700px;}
.y92{bottom:492.001800px;}
.y1b5{bottom:492.234450px;}
.y107{bottom:492.483750px;}
.y16f{bottom:493.228200px;}
.y188{bottom:494.060700px;}
.y61{bottom:496.051500px;}
.y1e4{bottom:496.126800px;}
.yb4{bottom:500.251800px;}
.y12b{bottom:500.268900px;}
.y14f{bottom:500.269650px;}
.y12{bottom:501.868800px;}
.y1cc{bottom:504.376800px;}
.y39{bottom:504.878700px;}
.y106{bottom:506.883750px;}
.ye5{bottom:507.980550px;}
.y91{bottom:508.501800px;}
.y1b4{bottom:508.734450px;}
.y187{bottom:510.560700px;}
.y1e3{bottom:512.626800px;}
.yb3{bottom:516.751800px;}
.y12a{bottom:516.768900px;}
.y11{bottom:516.868800px;}
.y16e{bottom:518.055900px;}
.y38{bottom:520.628700px;}
.y60{bottom:520.801500px;}
.y1cb{bottom:520.876800px;}
.y90{bottom:525.001800px;}
.y14e{bottom:525.097500px;}
.y1b3{bottom:525.234450px;}
.y186{bottom:527.060700px;}
.y1e2{bottom:529.126800px;}
.y105{bottom:531.711600px;}
.y10{bottom:531.868800px;}
.y16d{bottom:532.455900px;}
.ye4{bottom:532.808400px;}
.yb2{bottom:533.251800px;}
.y129{bottom:533.268900px;}
.y37{bottom:536.378700px;}
.y5f{bottom:537.301500px;}
.yfa{bottom:538.876800px;}
.y8f{bottom:541.501800px;}
.y1b2{bottom:541.734450px;}
.y185{bottom:543.560700px;}
.ye0{bottom:545.222250px;}
.y1e1{bottom:545.626800px;}
.y16c{bottom:546.855900px;}
.yc9{bottom:549.751800px;}
.y128{bottom:549.768900px;}
.y14d{bottom:549.925350px;}
.y36{bottom:552.128700px;}
.y5e{bottom:553.801500px;}
.y104{bottom:556.539450px;}
.ye3{bottom:557.636250px;}
.y8e{bottom:558.001800px;}
.yf{bottom:558.372600px;}
.y184{bottom:560.060700px;}
.yc8{bottom:566.251800px;}
.y127{bottom:566.268900px;}
.y1b1{bottom:566.484450px;}
.y35{bottom:567.878700px;}
.y5d{bottom:570.301500px;}
.y16b{bottom:572.355900px;}
.ye{bottom:573.372600px;}
.y8d{bottom:574.501800px;}
.y14c{bottom:574.753050px;}
.y183{bottom:576.560700px;}
.y103{bottom:581.367300px;}
.ye2{bottom:582.464100px;}
.yc7{bottom:582.751800px;}
.y126{bottom:582.768900px;}
.y1b0{bottom:582.984450px;}
.y34{bottom:583.628700px;}
.y5c{bottom:586.801500px;}
.yd{bottom:588.372600px;}
.y14b{bottom:589.153050px;}
.y8c{bottom:591.001800px;}
.y182{bottom:593.060700px;}
.y102{bottom:595.767300px;}
.y16a{bottom:597.183750px;}
.yc6{bottom:599.251800px;}
.y125{bottom:599.268900px;}
.y33{bottom:599.378700px;}
.y1af{bottom:599.484450px;}
.y5b{bottom:603.301500px;}
.yc{bottom:603.372600px;}
.ye1{bottom:607.291800px;}
.y8b{bottom:607.501800px;}
.y181{bottom:609.560700px;}
.y169{bottom:611.583750px;}
.y14a{bottom:613.980900px;}
.y32{bottom:615.128700px;}
.yc5{bottom:615.751800px;}
.y124{bottom:615.768900px;}
.y1ae{bottom:615.984450px;}
.y5a{bottom:619.801500px;}
.y1e0{bottom:619.876800px;}
.y101{bottom:620.595000px;}
.y8a{bottom:624.001800px;}
.y180{bottom:626.060700px;}
.y149{bottom:628.380900px;}
.y31{bottom:630.878700px;}
.ydf{bottom:632.119650px;}
.yc4{bottom:632.251800px;}
.y1ad{bottom:632.484450px;}
.y59{bottom:636.301500px;}
.y1df{bottom:636.376800px;}
.y168{bottom:638.583750px;}
.y89{bottom:640.501800px;}
.yb{bottom:642.632550px;}
.yc3{bottom:648.751800px;}
.y1ac{bottom:648.984450px;}
.y58{bottom:652.801500px;}
.y1de{bottom:652.876800px;}
.y148{bottom:653.208750px;}
.y30{bottom:655.132650px;}
.y100{bottom:655.695000px;}
.yde{bottom:656.947500px;}
.yb1{bottom:657.001800px;}
.y167{bottom:663.411600px;}
.ya{bottom:664.232550px;}
.y88{bottom:665.251800px;}
.y1ab{bottom:665.484450px;}
.y147{bottom:667.608750px;}
.y123{bottom:668.257800px;}
.y57{bottom:669.301500px;}
.ydd{bottom:671.347500px;}
.yb0{bottom:673.501800px;}
.y166{bottom:677.811600px;}
.y191{bottom:679.126800px;}
.y87{bottom:681.751800px;}
.y1aa{bottom:681.984450px;}
.y56{bottom:685.801500px;}
.yff{bottom:687.376800px;}
.yaf{bottom:690.001800px;}
.y146{bottom:692.436600px;}
.y122{bottom:693.085500px;}
.y9{bottom:694.336050px;}
.ydc{bottom:696.175350px;}
.y86{bottom:698.251800px;}
.y1a9{bottom:698.484450px;}
.y55{bottom:702.301500px;}
.y165{bottom:702.639450px;}
.yae{bottom:706.501800px;}
.y145{bottom:706.836600px;}
.y2f{bottom:709.392450px;}
.y85{bottom:714.751800px;}
.y1a8{bottom:714.984450px;}
.y164{bottom:717.039450px;}
.y121{bottom:717.913350px;}
.ydb{bottom:721.003200px;}
.yc2{bottom:723.001800px;}
.y8{bottom:724.439550px;}
.y54{bottom:727.051500px;}
.y84{bottom:731.251800px;}
.y163{bottom:731.439450px;}
.y144{bottom:731.664450px;}
.y2e{bottom:737.644350px;}
.yd5{bottom:738.631050px;}
.yc1{bottom:739.501800px;}
.y1a7{bottom:739.734450px;}
.y120{bottom:742.741200px;}
.yda{bottom:745.830900px;}
.y7{bottom:746.039550px;}
.y143{bottom:746.064450px;}
.y83{bottom:747.751800px;}
.y2d{bottom:753.394350px;}
.y190{bottom:756.001800px;}
.y1a6{bottom:756.234450px;}
.y162{bottom:756.939450px;}
.y11f{bottom:757.141200px;}
.y1dd{bottom:760.126800px;}
.y82{bottom:764.251800px;}
.y2c{bottom:769.144350px;}
.yd9{bottom:770.658750px;}
.y142{bottom:771.117150px;}
.y18f{bottom:772.501800px;}
.y1a5{bottom:772.734300px;}
.y6{bottom:776.143500px;}
.y1dc{bottom:776.626800px;}
.y81{bottom:780.751800px;}
.y161{bottom:781.767300px;}
.y11e{bottom:781.969050px;}
.y2b{bottom:784.894350px;}
.y18e{bottom:789.001800px;}
.y1a4{bottom:789.234300px;}
.yd8{bottom:795.486600px;}
.y141{bottom:795.945000px;}
.y160{bottom:796.167150px;}
.y80{bottom:797.251800px;}
.y53{bottom:799.051500px;}
.y2a{bottom:800.644350px;}
.y18d{bottom:805.501800px;}
.y1a3{bottom:805.734300px;}
.y11d{bottom:806.796900px;}
.y5{bottom:810.643500px;}
.y7f{bottom:813.751800px;}
.y29{bottom:816.394350px;}
.yd7{bottom:820.314450px;}
.y15f{bottom:820.995000px;}
.yf9{bottom:822.001800px;}
.y1a2{bottom:822.234300px;}
.y52{bottom:827.303550px;}
.y140{bottom:827.626800px;}
.yad{bottom:830.251800px;}
.y11c{bottom:831.624600px;}
.y28{bottom:832.144350px;}
.y7e{bottom:838.501800px;}
.y1a1{bottom:838.734300px;}
.y51{bottom:843.053550px;}
.yd6{bottom:845.142300px;}
.y4{bottom:845.143500px;}
.yac{bottom:846.751800px;}
.y27{bottom:847.894350px;}
.y1db{bottom:850.876800px;}
.y7d{bottom:855.001800px;}
.y1a0{bottom:855.234300px;}
.y15e{bottom:855.795000px;}
.y11b{bottom:856.452450px;}
.y50{bottom:858.803550px;}
.yab{bottom:863.251800px;}
.y26{bottom:863.644350px;}
.y1da{bottom:867.376800px;}
.yd4{bottom:870.195000px;}
.y7c{bottom:871.501800px;}
.y19f{bottom:871.734300px;}
.y4f{bottom:874.553550px;}
.y25{bottom:879.394350px;}
.yaa{bottom:879.751800px;}
.y11a{bottom:881.280300px;}
.y1d9{bottom:883.876800px;}
.y7b{bottom:888.001800px;}
.y19e{bottom:888.234300px;}
.y4e{bottom:890.303550px;}
.y24{bottom:895.144350px;}
.yd3{bottom:901.876800px;}
.y7a{bottom:904.501800px;}
.y4d{bottom:906.053550px;}
.y19d{bottom:912.984300px;}
.y119{bottom:916.380300px;}
.y23{bottom:919.398450px;}
.y79{bottom:921.001800px;}
.y4c{bottom:921.803550px;}
.y20{bottom:923.522250px;}
.y1d{bottom:923.686200px;}
.y1f{bottom:937.022250px;}
.y1e{bottom:950.522250px;}
.h9{height:27.576000px;}
.ha{height:29.874000px;}
.h3{height:32.172000px;}
.h8{height:36.768000px;}
.h13{height:36.864000px;}
.hc{height:39.066000px;}
.h2{height:41.364000px;}
.h14{height:41.472000px;}
.hf{height:42.960000px;}
.he{height:44.880000px;}
.h12{height:44.976000px;}
.h10{height:47.619000px;}
.hd{height:52.800000px;}
.h5{height:54.720000px;}
.h7{height:55.080000px;}
.hb{height:56.220000px;}
.h6{height:63.360000px;}
.h11{height:64.344000px;}
.h4{height:91.920000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xa{left:49.097850px;}
.xb{left:85.039350px;}
.xf{left:91.039350px;}
.x9{left:95.669250px;}
.x4{left:106.074300px;}
.xc{left:112.353000px;}
.x8{left:117.154200px;}
.x6{left:129.685050px;}
.x21{left:137.799150px;}
.x1d{left:158.346150px;}
.x1f{left:164.358000px;}
.x15{left:166.320000px;}
.x1b{left:168.648000px;}
.x20{left:169.871850px;}
.x1e{left:175.440000px;}
.x11{left:182.314650px;}
.x2{left:225.279600px;}
.x5{left:230.669250px;}
.x7{left:233.858250px;}
.xd{left:235.500000px;}
.x3{left:246.719250px;}
.x1a{left:257.846700px;}
.x1c{left:262.904700px;}
.x16{left:283.433550px;}
.x12{left:319.496100px;}
.x13{left:363.796800px;}
.x18{left:380.046000px;}
.x17{left:389.723850px;}
.x10{left:441.231150px;}
.xe{left:462.491100px;}
.x19{left:470.120850px;}
.x14{left:557.645250px;}
.x1{left:610.157550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.560000pt;}
.lsb{letter-spacing:-0.298667pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.408000pt;}
.ls2{letter-spacing:0.432000pt;}
.ls8{letter-spacing:0.498667pt;}
.ls5{letter-spacing:0.997333pt;}
.ls6{letter-spacing:1.042667pt;}
.ls4{letter-spacing:1.314667pt;}
.ls0{letter-spacing:5.845867pt;}
.ws1{word-spacing:-64.000000pt;}
.ws11{word-spacing:-53.333333pt;}
.ws6c{word-spacing:-13.440000pt;}
.ws26{word-spacing:-13.365333pt;}
.ws7f{word-spacing:-13.290667pt;}
.wsad{word-spacing:-13.066667pt;}
.wsc{word-spacing:-12.373333pt;}
.ws0{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.288000pt;}
.wsaf{word-spacing:-11.136000pt;}
.wsf{word-spacing:-11.016000pt;}
.wse{word-spacing:-10.970667pt;}
.wsae{word-spacing:-10.896000pt;}
.ws10{word-spacing:-10.381333pt;}
.ws2{word-spacing:-9.898667pt;}
.ws3{word-spacing:-9.685333pt;}
.wsb{word-spacing:-8.474667pt;}
.ws7{word-spacing:-2.800000pt;}
.wsbe{word-spacing:-2.688000pt;}
.ws56{word-spacing:-2.448000pt;}
.ws5b{word-spacing:-2.064000pt;}
.ws44{word-spacing:-2.016000pt;}
.ws69{word-spacing:-1.968000pt;}
.ws59{word-spacing:-1.920000pt;}
.ws6e{word-spacing:-1.824000pt;}
.ws47{word-spacing:-1.776000pt;}
.wsb9{word-spacing:-1.680000pt;}
.wsb6{word-spacing:-1.632000pt;}
.ws5e{word-spacing:-1.584000pt;}
.ws93{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.450667pt;}
.wsb4{word-spacing:-1.440000pt;}
.wsa9{word-spacing:-1.392000pt;}
.ws53{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.314667pt;}
.ws83{word-spacing:-1.296000pt;}
.wsb0{word-spacing:-1.200000pt;}
.ws9c{word-spacing:-1.152000pt;}
.ws45{word-spacing:-1.104000pt;}
.ws8c{word-spacing:-1.056000pt;}
.ws61{word-spacing:-1.008000pt;}
.ws43{word-spacing:-0.960000pt;}
.wsb8{word-spacing:-0.864000pt;}
.ws94{word-spacing:-0.816000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.725333pt;}
.ws7a{word-spacing:-0.720000pt;}
.ws1e{word-spacing:-0.680000pt;}
.ws92{word-spacing:-0.672000pt;}
.ws15{word-spacing:-0.634667pt;}
.ws6d{word-spacing:-0.624000pt;}
.ws25{word-spacing:-0.498667pt;}
.ws24{word-spacing:-0.453333pt;}
.ws5{word-spacing:-0.432000pt;}
.ws1a{word-spacing:-0.408000pt;}
.wsb1{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.336000pt;}
.wsa8{word-spacing:-0.288000pt;}
.ws8e{word-spacing:-0.240000pt;}
.ws22{word-spacing:-0.226667pt;}
.ws3f{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.144000pt;}
.ws7b{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:0.045333pt;}
.ws8a{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.096000pt;}
.ws21{word-spacing:0.181333pt;}
.ws7e{word-spacing:0.192000pt;}
.ws66{word-spacing:0.240000pt;}
.ws9b{word-spacing:0.288000pt;}
.ws3d{word-spacing:0.384000pt;}
.ws28{word-spacing:0.432000pt;}
.ws80{word-spacing:0.480000pt;}
.ws82{word-spacing:0.528000pt;}
.ws65{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.672000pt;}
.ws2a{word-spacing:0.720000pt;}
.ws57{word-spacing:0.768000pt;}
.ws16{word-spacing:0.816000pt;}
.ws1b{word-spacing:0.906667pt;}
.ws48{word-spacing:0.912000pt;}
.ws30{word-spacing:1.008000pt;}
.ws3a{word-spacing:1.056000pt;}
.ws1c{word-spacing:1.088000pt;}
.ws49{word-spacing:1.104000pt;}
.ws7d{word-spacing:1.152000pt;}
.ws7c{word-spacing:1.200000pt;}
.wsbc{word-spacing:1.248000pt;}
.ws68{word-spacing:1.344000pt;}
.ws34{word-spacing:1.392000pt;}
.ws62{word-spacing:1.440000pt;}
.ws63{word-spacing:1.488000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws3c{word-spacing:1.584000pt;}
.ws67{word-spacing:1.632000pt;}
.ws4a{word-spacing:1.680000pt;}
.ws81{word-spacing:1.728000pt;}
.ws64{word-spacing:1.824000pt;}
.ws5c{word-spacing:1.872000pt;}
.wsa0{word-spacing:1.920000pt;}
.wsba{word-spacing:1.968000pt;}
.ws5a{word-spacing:2.016000pt;}
.ws2d{word-spacing:2.064000pt;}
.ws32{word-spacing:2.112000pt;}
.ws40{word-spacing:2.160000pt;}
.ws51{word-spacing:2.208000pt;}
.ws6b{word-spacing:2.256000pt;}
.ws71{word-spacing:2.304000pt;}
.wsa4{word-spacing:2.352000pt;}
.wsa6{word-spacing:2.400000pt;}
.ws18{word-spacing:2.402667pt;}
.ws6f{word-spacing:2.448000pt;}
.wsa5{word-spacing:2.496000pt;}
.ws6a{word-spacing:2.544000pt;}
.ws2e{word-spacing:2.592000pt;}
.ws84{word-spacing:2.640000pt;}
.ws54{word-spacing:2.688000pt;}
.ws91{word-spacing:2.736000pt;}
.ws33{word-spacing:2.784000pt;}
.ws36{word-spacing:2.832000pt;}
.ws60{word-spacing:2.880000pt;}
.ws99{word-spacing:2.928000pt;}
.ws79{word-spacing:3.024000pt;}
.ws14{word-spacing:3.037333pt;}
.ws95{word-spacing:3.120000pt;}
.wsa3{word-spacing:3.216000pt;}
.ws90{word-spacing:3.264000pt;}
.ws39{word-spacing:3.360000pt;}
.wsac{word-spacing:3.408000pt;}
.wsa1{word-spacing:3.456000pt;}
.wsb5{word-spacing:3.504000pt;}
.ws72{word-spacing:3.552000pt;}
.ws9f{word-spacing:3.648000pt;}
.ws88{word-spacing:3.696000pt;}
.ws50{word-spacing:3.744000pt;}
.ws12{word-spacing:3.808000pt;}
.ws78{word-spacing:3.840000pt;}
.wsab{word-spacing:3.936000pt;}
.ws9d{word-spacing:3.984000pt;}
.ws38{word-spacing:4.032000pt;}
.ws42{word-spacing:4.080000pt;}
.ws1f{word-spacing:4.125333pt;}
.wsbb{word-spacing:4.128000pt;}
.ws76{word-spacing:4.176000pt;}
.ws55{word-spacing:4.320000pt;}
.ws35{word-spacing:4.464000pt;}
.ws2b{word-spacing:4.512000pt;}
.ws2c{word-spacing:4.608000pt;}
.wsb7{word-spacing:4.656000pt;}
.ws4f{word-spacing:4.704000pt;}
.ws3e{word-spacing:4.752000pt;}
.ws77{word-spacing:4.800000pt;}
.ws73{word-spacing:4.848000pt;}
.ws58{word-spacing:4.896000pt;}
.ws89{word-spacing:4.944000pt;}
.wsa7{word-spacing:5.040000pt;}
.ws9e{word-spacing:5.088000pt;}
.ws96{word-spacing:5.136000pt;}
.ws4d{word-spacing:5.184000pt;}
.ws20{word-spacing:5.213333pt;}
.ws8f{word-spacing:5.328000pt;}
.ws52{word-spacing:5.616000pt;}
.ws85{word-spacing:5.712000pt;}
.ws27{word-spacing:5.760000pt;}
.wsa{word-spacing:5.845333pt;}
.ws37{word-spacing:5.856000pt;}
.ws41{word-spacing:5.952000pt;}
.ws31{word-spacing:6.000000pt;}
.ws8b{word-spacing:6.048000pt;}
.wsaa{word-spacing:6.192000pt;}
.wsa2{word-spacing:6.288000pt;}
.ws86{word-spacing:6.480000pt;}
.ws4c{word-spacing:6.528000pt;}
.ws29{word-spacing:6.624000pt;}
.wsb2{word-spacing:6.864000pt;}
.ws70{word-spacing:6.912000pt;}
.wsb3{word-spacing:7.008000pt;}
.ws1d{word-spacing:7.026667pt;}
.ws75{word-spacing:7.056000pt;}
.ws4e{word-spacing:7.632000pt;}
.ws3b{word-spacing:7.872000pt;}
.ws74{word-spacing:7.968000pt;}
.ws9{word-spacing:11.264000pt;}
.wsbd{word-spacing:11.568000pt;}
.ws8{word-spacing:13.952000pt;}
.ws97{word-spacing:40.313600pt;}
.ws98{word-spacing:108.173867pt;}
.ws87{word-spacing:204.799467pt;}
.ws8d{word-spacing:204.800000pt;}
._1{margin-left:-32.000000pt;}
._6{margin-left:-23.949600pt;}
._5{margin-left:-22.630400pt;}
._4{margin-left:-20.362400pt;}
._7{margin-left:-19.458400pt;}
._3d{margin-left:-6.019200pt;}
._d{margin-left:-3.631467pt;}
._3{margin-left:-2.720000pt;}
._0{margin-left:-1.605333pt;}
._2{width:1.771200pt;}
._8{width:3.118933pt;}
._9{width:4.723733pt;}
._b{width:6.043200pt;}
._c{width:7.315200pt;}
._33{width:55.901333pt;}
._34{width:57.175467pt;}
._30{width:62.175467pt;}
._10{width:73.792000pt;}
._29{width:79.380800pt;}
._2d{width:81.462400pt;}
._3a{width:87.033067pt;}
._a{width:90.862400pt;}
._3c{width:109.876800pt;}
._32{width:110.783467pt;}
._3b{width:118.072533pt;}
._36{width:123.762667pt;}
._37{width:125.762667pt;}
._35{width:129.168533pt;}
._38{width:130.290133pt;}
._39{width:146.853333pt;}
._19{width:160.097600pt;}
._1e{width:178.342933pt;}
._15{width:187.318933pt;}
._13{width:199.761600pt;}
._1d{width:206.262933pt;}
._12{width:214.698133pt;}
._2a{width:234.842667pt;}
._2b{width:241.121067pt;}
._18{width:249.910933pt;}
._31{width:260.843733pt;}
._1f{width:273.761600pt;}
._1b{width:278.524267pt;}
._28{width:279.920533pt;}
._e{width:281.076800pt;}
._2c{width:289.409600pt;}
._2f{width:308.305067pt;}
._20{width:313.910400pt;}
._25{width:334.817067pt;}
._11{width:358.070933pt;}
._1a{width:401.633600pt;}
._14{width:404.876267pt;}
._23{width:500.065067pt;}
._22{width:526.646400pt;}
._27{width:528.299733pt;}
._2e{width:544.773867pt;}
._17{width:612.833600pt;}
._24{width:620.897067pt;}
._26{width:638.177067pt;}
._16{width:657.761600pt;}
._f{width:750.428800pt;}
._21{width:787.169067pt;}
._1c{width:797.836267pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:31.885067pt;}
.y3{bottom:32.826000pt;}
.y1{bottom:34.216000pt;}
.y21{bottom:43.885067pt;}
.y2{bottom:44.826000pt;}
.ya9{bottom:85.334933pt;}
.yfe{bottom:87.445200pt;}
.y78{bottom:88.934667pt;}
.y118{bottom:90.394933pt;}
.yf8{bottom:90.515733pt;}
.y4b{bottom:90.749467pt;}
.y1d8{bottom:92.668267pt;}
.y1c{bottom:98.025333pt;}
.ya8{bottom:100.001600pt;}
.yfd{bottom:102.111867pt;}
.y77{bottom:103.601333pt;}
.y4a{bottom:104.749467pt;}
.yf7{bottom:105.182400pt;}
.yd2{bottom:107.334933pt;}
.y1b{bottom:111.358667pt;}
.y117{bottom:112.464133pt;}
.ya7{bottom:114.668267pt;}
.y1ca{bottom:114.875067pt;}
.yfc{bottom:116.778533pt;}
.y76{bottom:118.268000pt;}
.y49{bottom:118.749467pt;}
.yd1{bottom:122.001600pt;}
.y1a{bottom:124.692000pt;}
.y116{bottom:125.264133pt;}
.y1d7{bottom:125.668267pt;}
.ya6{bottom:129.334933pt;}
.y13f{bottom:129.350133pt;}
.y1c9{bottom:129.541733pt;}
.yfb{bottom:131.445200pt;}
.y48{bottom:132.749467pt;}
.y75{bottom:132.934667pt;}
.yd0{bottom:136.668267pt;}
.y19{bottom:138.025333pt;}
.y1d6{bottom:140.334933pt;}
.ya5{bottom:144.001600pt;}
.y13e{bottom:144.016800pt;}
.y1c8{bottom:144.208400pt;}
.y47{bottom:146.749467pt;}
.y115{bottom:147.333200pt;}
.ycf{bottom:151.334933pt;}
.yf6{bottom:151.839067pt;}
.y74{bottom:154.934667pt;}
.ya4{bottom:158.668267pt;}
.y13d{bottom:158.683467pt;}
.y18{bottom:158.692000pt;}
.y1c7{bottom:158.875067pt;}
.yce{bottom:166.001600pt;}
.y17f{bottom:166.301600pt;}
.y46{bottom:168.308533pt;}
.y114{bottom:169.402400pt;}
.y73{bottom:169.601333pt;}
.ya3{bottom:173.334933pt;}
.y13c{bottom:173.350133pt;}
.yf5{bottom:173.908267pt;}
.y1d5{bottom:177.001600pt;}
.ycd{bottom:180.668267pt;}
.y1c6{bottom:180.875067pt;}
.y17e{bottom:180.968267pt;}
.y72{bottom:184.268000pt;}
.y19c{bottom:186.092267pt;}
.ya2{bottom:188.001600pt;}
.y13b{bottom:188.016800pt;}
.y113{bottom:191.471600pt;}
.y1d4{bottom:191.668267pt;}
.yc0{bottom:195.334933pt;}
.y1c5{bottom:195.541733pt;}
.y17d{bottom:195.634933pt;}
.yf4{bottom:195.977333pt;}
.y71{bottom:198.934667pt;}
.y19b{bottom:200.758933pt;}
.ya1{bottom:202.668267pt;}
.y1d3{bottom:206.334933pt;}
.y15d{bottom:209.869067pt;}
.ybf{bottom:210.001600pt;}
.y13a{bottom:210.016800pt;}
.y1c4{bottom:210.208400pt;}
.y17c{bottom:210.301600pt;}
.y112{bottom:213.540800pt;}
.y70{bottom:213.601333pt;}
.y19a{bottom:215.425600pt;}
.y45{bottom:216.539600pt;}
.ycc{bottom:217.334933pt;}
.yf3{bottom:218.046533pt;}
.y15c{bottom:222.669067pt;}
.ya0{bottom:224.668267pt;}
.y139{bottom:224.683467pt;}
.y1c3{bottom:224.875067pt;}
.y17b{bottom:224.968267pt;}
.y6f{bottom:228.268000pt;}
.y199{bottom:230.092267pt;}
.ycb{bottom:232.001600pt;}
.yed{bottom:233.715733pt;}
.y111{bottom:235.610000pt;}
.y9f{bottom:239.334933pt;}
.y138{bottom:239.350133pt;}
.y1c2{bottom:239.541733pt;}
.yf2{bottom:240.115733pt;}
.y44{bottom:241.652400pt;}
.y6e{bottom:242.934667pt;}
.y15b{bottom:244.738267pt;}
.y198{bottom:244.758933pt;}
.yec{bottom:246.515733pt;}
.yca{bottom:246.668267pt;}
.y17a{bottom:246.968267pt;}
.y110{bottom:248.410000pt;}
.y9e{bottom:254.001600pt;}
.y137{bottom:254.016800pt;}
.y1c1{bottom:254.208400pt;}
.y43{bottom:255.652400pt;}
.y15a{bottom:257.538267pt;}
.y6d{bottom:257.601333pt;}
.y197{bottom:259.425600pt;}
.ybe{bottom:261.334933pt;}
.y179{bottom:261.634933pt;}
.yf1{bottom:262.184933pt;}
.y1e9{bottom:265.001600pt;}
.y9d{bottom:268.668267pt;}
.y136{bottom:268.683467pt;}
.y1c0{bottom:268.875067pt;}
.y42{bottom:269.652400pt;}
.y159{bottom:270.338267pt;}
.y10f{bottom:270.479067pt;}
.y6c{bottom:272.268000pt;}
.y1d2{bottom:272.334933pt;}
.y196{bottom:274.092267pt;}
.ybd{bottom:276.001600pt;}
.y178{bottom:276.301600pt;}
.y1e8{bottom:279.668267pt;}
.y9c{bottom:283.334933pt;}
.y135{bottom:283.350133pt;}
.y1bf{bottom:283.541733pt;}
.y41{bottom:283.652400pt;}
.yf0{bottom:284.254133pt;}
.y6b{bottom:286.934667pt;}
.y1d1{bottom:287.001600pt;}
.y195{bottom:288.758933pt;}
.ybc{bottom:290.668267pt;}
.y177{bottom:290.968267pt;}
.y158{bottom:292.407467pt;}
.y10e{bottom:292.548267pt;}
.y1e7{bottom:294.334933pt;}
.y40{bottom:297.652400pt;}
.y9b{bottom:298.001600pt;}
.y134{bottom:298.016800pt;}
.y1be{bottom:298.208400pt;}
.y1d0{bottom:301.668267pt;}
.y194{bottom:303.425600pt;}
.y157{bottom:305.207467pt;}
.ybb{bottom:305.334933pt;}
.y176{bottom:305.634933pt;}
.yef{bottom:306.323200pt;}
.y6a{bottom:308.934667pt;}
.y3f{bottom:311.652400pt;}
.y9a{bottom:312.668267pt;}
.y133{bottom:312.683467pt;}
.y1bd{bottom:312.875067pt;}
.y10d{bottom:314.617467pt;}
.y193{bottom:318.092267pt;}
.yba{bottom:320.001600pt;}
.y175{bottom:320.301600pt;}
.y69{bottom:323.601333pt;}
.y3e{bottom:325.652400pt;}
.y156{bottom:327.276667pt;}
.y99{bottom:327.334933pt;}
.y132{bottom:327.350133pt;}
.y1bc{bottom:327.541733pt;}
.yee{bottom:328.392400pt;}
.y192{bottom:332.758933pt;}
.yb9{bottom:334.668267pt;}
.y174{bottom:334.968267pt;}
.y10c{bottom:336.686667pt;}
.y68{bottom:338.268000pt;}
.y155{bottom:340.076667pt;}
.y98{bottom:342.001600pt;}
.y3d{bottom:347.211467pt;}
.y1cf{bottom:349.334933pt;}
.y131{bottom:349.350133pt;}
.y1bb{bottom:349.541733pt;}
.y173{bottom:349.634933pt;}
.yeb{bottom:350.461600pt;}
.y67{bottom:352.934667pt;}
.y18c{bottom:356.165067pt;}
.y97{bottom:356.668267pt;}
.y10b{bottom:358.755867pt;}
.y1e6{bottom:360.334933pt;}
.y154{bottom:362.145733pt;}
.yea{bottom:363.261600pt;}
.y130{bottom:364.016800pt;}
.y1ba{bottom:364.208400pt;}
.y172{bottom:364.301600pt;}
.y66{bottom:367.601333pt;}
.y1ce{bottom:367.668267pt;}
.y17{bottom:369.213200pt;}
.y96{bottom:371.334933pt;}
.y10a{bottom:371.555867pt;}
.ye8{bottom:372.530800pt;}
.y18b{bottom:373.165067pt;}
.y153{bottom:374.945867pt;}
.y1e5{bottom:375.001600pt;}
.y12f{bottom:378.683467pt;}
.y1b9{bottom:378.875067pt;}
.y171{bottom:378.968267pt;}
.y65{bottom:382.268000pt;}
.y1cd{bottom:382.334933pt;}
.y16{bottom:382.546533pt;}
.ye7{bottom:385.330800pt;}
.yb8{bottom:386.001600pt;}
.y152{bottom:387.745867pt;}
.y95{bottom:393.334933pt;}
.y1b8{bottom:393.541733pt;}
.y109{bottom:393.624933pt;}
.y3c{bottom:395.442400pt;}
.y15{bottom:395.879867pt;}
.y64{bottom:396.934667pt;}
.yb7{bottom:400.668267pt;}
.y12e{bottom:400.683467pt;}
.ye9{bottom:407.400000pt;}
.y94{bottom:408.001600pt;}
.y1b7{bottom:408.208400pt;}
.y14{bottom:409.213200pt;}
.y151{bottom:409.814933pt;}
.y18a{bottom:409.831733pt;}
.y63{bottom:411.601333pt;}
.yb6{bottom:415.334933pt;}
.y12d{bottom:415.350133pt;}
.y108{bottom:415.694133pt;}
.y3b{bottom:420.781067pt;}
.y150{bottom:422.614933pt;}
.y93{bottom:422.668267pt;}
.y1b6{bottom:422.875067pt;}
.y189{bottom:424.498400pt;}
.y170{bottom:425.624933pt;}
.y62{bottom:426.268000pt;}
.ye6{bottom:429.469067pt;}
.yb5{bottom:430.001600pt;}
.y12c{bottom:430.016800pt;}
.y13{bottom:432.772133pt;}
.y3a{bottom:434.781067pt;}
.y92{bottom:437.334933pt;}
.y1b5{bottom:437.541733pt;}
.y107{bottom:437.763333pt;}
.y16f{bottom:438.425067pt;}
.y188{bottom:439.165067pt;}
.y61{bottom:440.934667pt;}
.y1e4{bottom:441.001600pt;}
.yb4{bottom:444.668267pt;}
.y12b{bottom:444.683467pt;}
.y14f{bottom:444.684133pt;}
.y12{bottom:446.105600pt;}
.y1cc{bottom:448.334933pt;}
.y39{bottom:448.781067pt;}
.y106{bottom:450.563333pt;}
.ye5{bottom:451.538267pt;}
.y91{bottom:452.001600pt;}
.y1b4{bottom:452.208400pt;}
.y187{bottom:453.831733pt;}
.y1e3{bottom:455.668267pt;}
.yb3{bottom:459.334933pt;}
.y12a{bottom:459.350133pt;}
.y11{bottom:459.438933pt;}
.y16e{bottom:460.494133pt;}
.y38{bottom:462.781067pt;}
.y60{bottom:462.934667pt;}
.y1cb{bottom:463.001600pt;}
.y90{bottom:466.668267pt;}
.y14e{bottom:466.753333pt;}
.y1b3{bottom:466.875067pt;}
.y186{bottom:468.498400pt;}
.y1e2{bottom:470.334933pt;}
.y105{bottom:472.632533pt;}
.y10{bottom:472.772267pt;}
.y16d{bottom:473.294133pt;}
.ye4{bottom:473.607467pt;}
.yb2{bottom:474.001600pt;}
.y129{bottom:474.016800pt;}
.y37{bottom:476.781067pt;}
.y5f{bottom:477.601333pt;}
.yfa{bottom:479.001600pt;}
.y8f{bottom:481.334933pt;}
.y1b2{bottom:481.541733pt;}
.y185{bottom:483.165067pt;}
.ye0{bottom:484.642000pt;}
.y1e1{bottom:485.001600pt;}
.y16c{bottom:486.094133pt;}
.yc9{bottom:488.668267pt;}
.y128{bottom:488.683467pt;}
.y14d{bottom:488.822533pt;}
.y36{bottom:490.781067pt;}
.y5e{bottom:492.268000pt;}
.y104{bottom:494.701733pt;}
.ye3{bottom:495.676667pt;}
.y8e{bottom:496.001600pt;}
.yf{bottom:496.331200pt;}
.y184{bottom:497.831733pt;}
.yc8{bottom:503.334933pt;}
.y127{bottom:503.350133pt;}
.y1b1{bottom:503.541733pt;}
.y35{bottom:504.781067pt;}
.y5d{bottom:506.934667pt;}
.y16b{bottom:508.760800pt;}
.ye{bottom:509.664533pt;}
.y8d{bottom:510.668267pt;}
.y14c{bottom:510.891600pt;}
.y183{bottom:512.498400pt;}
.y103{bottom:516.770933pt;}
.ye2{bottom:517.745867pt;}
.yc7{bottom:518.001600pt;}
.y126{bottom:518.016800pt;}
.y1b0{bottom:518.208400pt;}
.y34{bottom:518.781067pt;}
.y5c{bottom:521.601333pt;}
.yd{bottom:522.997867pt;}
.y14b{bottom:523.691600pt;}
.y8c{bottom:525.334933pt;}
.y182{bottom:527.165067pt;}
.y102{bottom:529.570933pt;}
.y16a{bottom:530.830000pt;}
.yc6{bottom:532.668267pt;}
.y125{bottom:532.683467pt;}
.y33{bottom:532.781067pt;}
.y1af{bottom:532.875067pt;}
.y5b{bottom:536.268000pt;}
.yc{bottom:536.331200pt;}
.ye1{bottom:539.814933pt;}
.y8b{bottom:540.001600pt;}
.y181{bottom:541.831733pt;}
.y169{bottom:543.630000pt;}
.y14a{bottom:545.760800pt;}
.y32{bottom:546.781067pt;}
.yc5{bottom:547.334933pt;}
.y124{bottom:547.350133pt;}
.y1ae{bottom:547.541733pt;}
.y5a{bottom:550.934667pt;}
.y1e0{bottom:551.001600pt;}
.y101{bottom:551.640000pt;}
.y8a{bottom:554.668267pt;}
.y180{bottom:556.498400pt;}
.y149{bottom:558.560800pt;}
.y31{bottom:560.781067pt;}
.ydf{bottom:561.884133pt;}
.yc4{bottom:562.001600pt;}
.y1ad{bottom:562.208400pt;}
.y59{bottom:565.601333pt;}
.y1df{bottom:565.668267pt;}
.y168{bottom:567.630000pt;}
.y89{bottom:569.334933pt;}
.yb{bottom:571.228933pt;}
.yc3{bottom:576.668267pt;}
.y1ac{bottom:576.875067pt;}
.y58{bottom:580.268000pt;}
.y1de{bottom:580.334933pt;}
.y148{bottom:580.630000pt;}
.y30{bottom:582.340133pt;}
.y100{bottom:582.840000pt;}
.yde{bottom:583.953333pt;}
.yb1{bottom:584.001600pt;}
.y167{bottom:589.699200pt;}
.ya{bottom:590.428933pt;}
.y88{bottom:591.334933pt;}
.y1ab{bottom:591.541733pt;}
.y147{bottom:593.430000pt;}
.y123{bottom:594.006933pt;}
.y57{bottom:594.934667pt;}
.ydd{bottom:596.753333pt;}
.yb0{bottom:598.668267pt;}
.y166{bottom:602.499200pt;}
.y191{bottom:603.668267pt;}
.y87{bottom:606.001600pt;}
.y1aa{bottom:606.208400pt;}
.y56{bottom:609.601333pt;}
.yff{bottom:611.001600pt;}
.yaf{bottom:613.334933pt;}
.y146{bottom:615.499200pt;}
.y122{bottom:616.076000pt;}
.y9{bottom:617.187600pt;}
.ydc{bottom:618.822533pt;}
.y86{bottom:620.668267pt;}
.y1a9{bottom:620.875067pt;}
.y55{bottom:624.268000pt;}
.y165{bottom:624.568400pt;}
.yae{bottom:628.001600pt;}
.y145{bottom:628.299200pt;}
.y2f{bottom:630.571067pt;}
.y85{bottom:635.334933pt;}
.y1a8{bottom:635.541733pt;}
.y164{bottom:637.368400pt;}
.y121{bottom:638.145200pt;}
.ydb{bottom:640.891733pt;}
.yc2{bottom:642.668267pt;}
.y8{bottom:643.946267pt;}
.y54{bottom:646.268000pt;}
.y84{bottom:650.001600pt;}
.y163{bottom:650.168400pt;}
.y144{bottom:650.368400pt;}
.y2e{bottom:655.683867pt;}
.yd5{bottom:656.560933pt;}
.yc1{bottom:657.334933pt;}
.y1a7{bottom:657.541733pt;}
.y120{bottom:660.214400pt;}
.yda{bottom:662.960800pt;}
.y7{bottom:663.146267pt;}
.y143{bottom:663.168400pt;}
.y83{bottom:664.668267pt;}
.y2d{bottom:669.683867pt;}
.y190{bottom:672.001600pt;}
.y1a6{bottom:672.208400pt;}
.y162{bottom:672.835067pt;}
.y11f{bottom:673.014400pt;}
.y1dd{bottom:675.668267pt;}
.y82{bottom:679.334933pt;}
.y2c{bottom:683.683867pt;}
.yd9{bottom:685.030000pt;}
.y142{bottom:685.437467pt;}
.y18f{bottom:686.668267pt;}
.y1a5{bottom:686.874933pt;}
.y6{bottom:689.905333pt;}
.y1dc{bottom:690.334933pt;}
.y81{bottom:694.001600pt;}
.y161{bottom:694.904267pt;}
.y11e{bottom:695.083600pt;}
.y2b{bottom:697.683867pt;}
.y18e{bottom:701.334933pt;}
.y1a4{bottom:701.541600pt;}
.yd8{bottom:707.099200pt;}
.y141{bottom:707.506667pt;}
.y160{bottom:707.704133pt;}
.y80{bottom:708.668267pt;}
.y53{bottom:710.268000pt;}
.y2a{bottom:711.683867pt;}
.y18d{bottom:716.001600pt;}
.y1a3{bottom:716.208267pt;}
.y11d{bottom:717.152800pt;}
.y5{bottom:720.572000pt;}
.y7f{bottom:723.334933pt;}
.y29{bottom:725.683867pt;}
.yd7{bottom:729.168400pt;}
.y15f{bottom:729.773333pt;}
.yf9{bottom:730.668267pt;}
.y1a2{bottom:730.874933pt;}
.y52{bottom:735.380933pt;}
.y140{bottom:735.668267pt;}
.yad{bottom:738.001600pt;}
.y11c{bottom:739.221867pt;}
.y28{bottom:739.683867pt;}
.y7e{bottom:745.334933pt;}
.y1a1{bottom:745.541600pt;}
.y51{bottom:749.380933pt;}
.yd6{bottom:751.237600pt;}
.y4{bottom:751.238667pt;}
.yac{bottom:752.668267pt;}
.y27{bottom:753.683867pt;}
.y1db{bottom:756.334933pt;}
.y7d{bottom:760.001600pt;}
.y1a0{bottom:760.208267pt;}
.y15e{bottom:760.706667pt;}
.y11b{bottom:761.291067pt;}
.y50{bottom:763.380933pt;}
.yab{bottom:767.334933pt;}
.y26{bottom:767.683867pt;}
.y1da{bottom:771.001600pt;}
.yd4{bottom:773.506667pt;}
.y7c{bottom:774.668267pt;}
.y19f{bottom:774.874933pt;}
.y4f{bottom:777.380933pt;}
.y25{bottom:781.683867pt;}
.yaa{bottom:782.001600pt;}
.y11a{bottom:783.360267pt;}
.y1d9{bottom:785.668267pt;}
.y7b{bottom:789.334933pt;}
.y19e{bottom:789.541600pt;}
.y4e{bottom:791.380933pt;}
.y24{bottom:795.683867pt;}
.yd3{bottom:801.668267pt;}
.y7a{bottom:804.001600pt;}
.y4d{bottom:805.380933pt;}
.y19d{bottom:811.541600pt;}
.y119{bottom:814.560267pt;}
.y23{bottom:817.243067pt;}
.y79{bottom:818.668267pt;}
.y4c{bottom:819.380933pt;}
.y20{bottom:820.908667pt;}
.y1d{bottom:821.054400pt;}
.y1f{bottom:832.908667pt;}
.y1e{bottom:844.908667pt;}
.h9{height:24.512000pt;}
.ha{height:26.554667pt;}
.h3{height:28.597333pt;}
.h8{height:32.682667pt;}
.h13{height:32.768000pt;}
.hc{height:34.725333pt;}
.h2{height:36.768000pt;}
.h14{height:36.864000pt;}
.hf{height:38.186667pt;}
.he{height:39.893333pt;}
.h12{height:39.978667pt;}
.h10{height:42.328000pt;}
.hd{height:46.933333pt;}
.h5{height:48.640000pt;}
.h7{height:48.960000pt;}
.hb{height:49.973333pt;}
.h6{height:56.320000pt;}
.h11{height:57.194667pt;}
.h4{height:81.706667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xa{left:43.642533pt;}
.xb{left:75.590533pt;}
.xf{left:80.923867pt;}
.x9{left:85.039333pt;}
.x4{left:94.288267pt;}
.xc{left:99.869333pt;}
.x8{left:104.137067pt;}
.x6{left:115.275600pt;}
.x21{left:122.488133pt;}
.x1d{left:140.752133pt;}
.x1f{left:146.096000pt;}
.x15{left:147.840000pt;}
.x1b{left:149.909333pt;}
.x20{left:150.997200pt;}
.x1e{left:155.946667pt;}
.x11{left:162.057467pt;}
.x2{left:200.248533pt;}
.x5{left:205.039333pt;}
.x7{left:207.874000pt;}
.xd{left:209.333333pt;}
.x3{left:219.306000pt;}
.x1a{left:229.197067pt;}
.x1c{left:233.693067pt;}
.x16{left:251.940933pt;}
.x12{left:283.996533pt;}
.x13{left:323.374933pt;}
.x18{left:337.818667pt;}
.x17{left:346.421200pt;}
.x10{left:392.205467pt;}
.xe{left:411.103200pt;}
.x19{left:417.885200pt;}
.x14{left:495.684667pt;}
.x1{left:542.362267pt;}
}




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