
    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_ed231240521aed72a0eea839.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_f6ecc58ffb79cea43be1a161.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_79f78070d2bd282675292651.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958984;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_1f7bf6cda8799a3114a261ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_02ad4317090237086cb75426.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992188;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_2828cd9a76999695e2c36b53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160156;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_b925118bb126b97e74a6d40d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_fde716b46bd0b7e8617b1ce1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956055;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_59c4a5dfa95e3a8f2e19230e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956055;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_879e224b2b9fc6eb126ddf98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_b1a034397ae518ee7b582710.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986816;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_eb69c66f7f4461e1029e76f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_be6d492b279add8d364ca867.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_ae5b23fd2efb970be14ef20a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.757812;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_a5aa830ba3c67bc3119697ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3b07d33986bddb5048b86b16.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ecb91a8e881837e3ad2299e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_f511fda1c732d36dd65a9186.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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);}
.v1{vertical-align:-15.455400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.754400px;}
.v3{vertical-align:17.982000px;}
.v5{vertical-align:25.200000px;}
.v2{vertical-align:31.968000px;}
.ls12{letter-spacing:-3.300000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.840000px;}
.ls9{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.320000px;}
.ls0{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.620000px;}
.ls1{letter-spacing:1.800000px;}
.lsb{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.112000px;}
.lse{letter-spacing:2.340000px;}
.ls6{letter-spacing:2.520000px;}
.lsc{letter-spacing:2.640000px;}
.ls2{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.300000px;}
.ls11{letter-spacing:10.692000px;}
.ls10{letter-spacing:550.368000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-31.584000px;}
.wse{word-spacing:-20.196000px;}
.ws53{word-spacing:-20.130000px;}
.ws75{word-spacing:-16.470000px;}
.ws7f{word-spacing:-16.416000px;}
.ws4f{word-spacing:-11.676000px;}
.ws2c{word-spacing:-6.270000px;}
.ws85{word-spacing:-6.102000px;}
.ws5a{word-spacing:-5.280000px;}
.ws68{word-spacing:-5.148000px;}
.ws69{word-spacing:-5.082000px;}
.ws25{word-spacing:-3.960000px;}
.ws17{word-spacing:-3.894000px;}
.ws32{word-spacing:-3.762000px;}
.ws5d{word-spacing:-3.630000px;}
.ws26{word-spacing:-3.300000px;}
.ws3f{word-spacing:-3.234000px;}
.ws33{word-spacing:-2.904000px;}
.ws35{word-spacing:-2.772000px;}
.ws14{word-spacing:-2.640000px;}
.ws4a{word-spacing:-2.574000px;}
.ws22{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.442000px;}
.ws70{word-spacing:-2.244000px;}
.ws30{word-spacing:-2.178000px;}
.ws10{word-spacing:-1.980000px;}
.ws57{word-spacing:-1.800000px;}
.ws76{word-spacing:-1.620000px;}
.ws8{word-spacing:-1.596000px;}
.ws2d{word-spacing:-1.518000px;}
.ws7{word-spacing:-1.320000px;}
.ws7b{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.056000px;}
.ws28{word-spacing:-0.840000px;}
.ws1f{word-spacing:-0.660000px;}
.ws2{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.396000px;}
.ws2e{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws89{word-spacing:0.108000px;}
.ws13{word-spacing:0.198000px;}
.ws20{word-spacing:0.264000px;}
.ws1e{word-spacing:0.330000px;}
.ws49{word-spacing:0.594000px;}
.wsb{word-spacing:0.672000px;}
.ws8c{word-spacing:0.810000px;}
.ws86{word-spacing:1.080000px;}
.ws3e{word-spacing:1.254000px;}
.ws78{word-spacing:1.404000px;}
.ws4{word-spacing:1.428000px;}
.ws63{word-spacing:1.452000px;}
.ws8f{word-spacing:1.512000px;}
.ws23{word-spacing:1.650000px;}
.ws21{word-spacing:1.716000px;}
.ws81{word-spacing:1.728000px;}
.ws79{word-spacing:1.890000px;}
.ws27{word-spacing:1.914000px;}
.ws7a{word-spacing:1.944000px;}
.wsc{word-spacing:2.058000px;}
.ws3{word-spacing:2.310000px;}
.ws8e{word-spacing:2.430000px;}
.ws80{word-spacing:2.700000px;}
.ws74{word-spacing:2.970000px;}
.ws2f{word-spacing:3.036000px;}
.wsa{word-spacing:3.108000px;}
.ws41{word-spacing:3.234000px;}
.ws59{word-spacing:3.300000px;}
.ws1b{word-spacing:3.366000px;}
.ws34{word-spacing:3.432000px;}
.ws15{word-spacing:3.696000px;}
.ws8b{word-spacing:3.834000px;}
.ws84{word-spacing:4.320000px;}
.ws47{word-spacing:4.422000px;}
.ws40{word-spacing:4.554000px;}
.ws83{word-spacing:4.590000px;}
.ws5c{word-spacing:5.148000px;}
.ws45{word-spacing:5.280000px;}
.ws24{word-spacing:5.478000px;}
.ws9{word-spacing:5.628000px;}
.ws58{word-spacing:6.270000px;}
.ws38{word-spacing:6.336000px;}
.ws1d{word-spacing:6.468000px;}
.ws8d{word-spacing:6.696000px;}
.ws77{word-spacing:6.750000px;}
.ws3b{word-spacing:6.930000px;}
.ws37{word-spacing:7.128000px;}
.ws6f{word-spacing:7.260000px;}
.ws4b{word-spacing:7.392000px;}
.ws67{word-spacing:7.524000px;}
.ws11{word-spacing:7.656000px;}
.ws8a{word-spacing:7.884000px;}
.ws39{word-spacing:7.920000px;}
.ws61{word-spacing:8.448000px;}
.ws62{word-spacing:8.580000px;}
.ws46{word-spacing:8.712000px;}
.ws7e{word-spacing:8.964000px;}
.ws29{word-spacing:9.306000px;}
.ws90{word-spacing:9.504000px;}
.ws4e{word-spacing:9.900000px;}
.ws60{word-spacing:10.032000px;}
.ws6a{word-spacing:10.230000px;}
.ws51{word-spacing:10.362000px;}
.ws7d{word-spacing:10.530000px;}
.ws2b{word-spacing:10.692000px;}
.ws4d{word-spacing:10.890000px;}
.ws1c{word-spacing:11.088000px;}
.ws66{word-spacing:11.154000px;}
.ws72{word-spacing:11.220000px;}
.ws1a{word-spacing:11.616000px;}
.ws5f{word-spacing:11.760000px;}
.ws4c{word-spacing:12.606000px;}
.ws3c{word-spacing:12.870000px;}
.ws3d{word-spacing:13.002000px;}
.ws19{word-spacing:13.068000px;}
.ws56{word-spacing:13.134000px;}
.ws6{word-spacing:13.596000px;}
.ws44{word-spacing:13.860000px;}
.ws6d{word-spacing:14.256000px;}
.ws5e{word-spacing:14.322000px;}
.ws65{word-spacing:14.454000px;}
.ws42{word-spacing:14.784000px;}
.ws43{word-spacing:14.850000px;}
.ws71{word-spacing:16.236000px;}
.ws2a{word-spacing:16.368000px;}
.wsf{word-spacing:17.886000px;}
.ws87{word-spacing:17.982000px;}
.ws6e{word-spacing:18.282000px;}
.ws48{word-spacing:18.480000px;}
.ws50{word-spacing:18.678000px;}
.ws12{word-spacing:18.744000px;}
.ws64{word-spacing:20.328000px;}
.ws7c{word-spacing:20.466000px;}
.ws6c{word-spacing:20.592000px;}
.ws6b{word-spacing:20.658000px;}
.ws36{word-spacing:20.988000px;}
.ws5{word-spacing:22.440000px;}
.ws5b{word-spacing:22.968000px;}
.ws73{word-spacing:26.334000px;}
.ws18{word-spacing:29.238000px;}
.ws55{word-spacing:30.228000px;}
.ws54{word-spacing:30.492000px;}
.ws82{word-spacing:35.478000px;}
.ws88{word-spacing:43.092000px;}
.wsd{word-spacing:155.998800px;}
._5{margin-left:-18.988200px;}
._23{margin-left:-11.695200px;}
._6{margin-left:-10.500000px;}
._21{margin-left:-9.042000px;}
._1d{margin-left:-7.657800px;}
._b{margin-left:-6.448200px;}
._1e{margin-left:-5.445600px;}
._3{margin-left:-4.348800px;}
._7{margin-left:-3.199200px;}
._0{margin-left:-2.167200px;}
._1{margin-left:-1.065600px;}
._4{width:1.862400px;}
._8{width:2.923800px;}
._c{width:4.708200px;}
._a{width:6.613200px;}
._9{width:7.854000px;}
._10{width:9.088200px;}
._14{width:10.579800px;}
._f{width:11.688600px;}
._e{width:13.464000px;}
._19{width:14.513400px;}
._16{width:15.734400px;}
._d{width:16.882800px;}
._25{width:18.057600px;}
._13{width:19.450200px;}
._11{width:20.856000px;}
._18{width:22.162800px;}
._1b{width:24.208800px;}
._1c{width:25.799400px;}
._15{width:28.149000px;}
._12{width:30.003600px;}
._17{width:31.732800px;}
._1f{width:32.802000px;}
._20{width:36.220800px;}
._24{width:37.748400px;}
._1a{width:42.484200px;}
._26{width:44.600400px;}
._22{width:567.882000px;}
._2{width:1726.662600px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:transparent;}
.fc2{color:rgb(67,54,50);}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs0{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:55.968000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:2.310450px;}
.y3{bottom:20.529150px;}
.y2f{bottom:27.890550px;}
.y2{bottom:31.329150px;}
.y2a{bottom:93.509400px;}
.y15c{bottom:93.819600px;}
.y131{bottom:94.164450px;}
.y7a{bottom:95.265600px;}
.y90{bottom:96.919950px;}
.y1a7{bottom:97.052700px;}
.y12a{bottom:101.232450px;}
.y29{bottom:105.510900px;}
.y11c{bottom:106.051650px;}
.y165{bottom:109.555950px;}
.y184{bottom:110.308650px;}
.y19e{bottom:111.986700px;}
.yd2{bottom:114.235650px;}
.y28{bottom:117.512400px;}
.y15b{bottom:117.827100px;}
.y130{bottom:118.171950px;}
.y79{bottom:119.273100px;}
.y8f{bottom:120.927450px;}
.y1a6{bottom:121.060200px;}
.ya6{bottom:125.184450px;}
.y129{bottom:125.239950px;}
.y27{bottom:129.513900px;}
.y11b{bottom:130.059150px;}
.y48{bottom:130.502700px;}
.y183{bottom:134.316150px;}
.y164{bottom:135.055950px;}
.y19d{bottom:135.994200px;}
.yd1{bottom:138.243150px;}
.y15a{bottom:141.834600px;}
.y12f{bottom:142.179450px;}
.y78{bottom:143.280600px;}
.y8e{bottom:144.934950px;}
.y1a5{bottom:145.067700px;}
.y1fd{bottom:145.890450px;}
.y1e5{bottom:147.658950px;}
.y1c7{bottom:147.815850px;}
.ya5{bottom:149.191950px;}
.y128{bottom:149.247450px;}
.ye2{bottom:149.267250px;}
.y26{bottom:150.776400px;}
.y11a{bottom:154.066650px;}
.y47{bottom:154.510200px;}
.y182{bottom:158.323650px;}
.y19c{bottom:160.001700px;}
.yc8{bottom:160.555050px;}
.y163{bottom:160.555950px;}
.yd0{bottom:162.250650px;}
.y25{bottom:162.777900px;}
.y1fc{bottom:165.384450px;}
.y12e{bottom:166.186950px;}
.y1e4{bottom:167.152950px;}
.y77{bottom:167.288100px;}
.y1c6{bottom:167.309850px;}
.y8d{bottom:168.942450px;}
.y1a4{bottom:169.075200px;}
.ya4{bottom:173.199450px;}
.y127{bottom:173.254950px;}
.ye1{bottom:173.274750px;}
.y24{bottom:174.779400px;}
.y46{bottom:178.517700px;}
.y181{bottom:182.331150px;}
.y19b{bottom:184.009200px;}
.yc7{bottom:184.562550px;}
.y1fb{bottom:184.878450px;}
.y5c{bottom:185.465100px;}
.y162{bottom:186.055950px;}
.y1e3{bottom:186.646950px;}
.y23{bottom:186.780900px;}
.y1c5{bottom:186.803850px;}
.y118{bottom:186.935850px;}
.y159{bottom:187.094100px;}
.yae{bottom:190.194450px;}
.y76{bottom:191.295600px;}
.y8c{bottom:192.949950px;}
.y1a3{bottom:193.082700px;}
.ya3{bottom:197.206950px;}
.y126{bottom:197.262450px;}
.ye0{bottom:197.282250px;}
.y117{bottom:199.535850px;}
.y45{bottom:202.525200px;}
.y1c4{bottom:206.297850px;}
.y180{bottom:206.338650px;}
.ycf{bottom:207.510150px;}
.y19a{bottom:208.016700px;}
.y22{bottom:208.043400px;}
.yc6{bottom:208.570050px;}
.y5b{bottom:209.472600px;}
.y158{bottom:211.101600px;}
.y116{bottom:212.135850px;}
.yad{bottom:214.201950px;}
.y75{bottom:215.303100px;}
.y8b{bottom:216.957450px;}
.y1a2{bottom:217.090200px;}
.y21{bottom:220.044900px;}
.ya2{bottom:221.214450px;}
.y125{bottom:221.269950px;}
.ydf{bottom:221.289750px;}
.y115{bottom:224.735850px;}
.y1fa{bottom:225.634950px;}
.y44{bottom:226.532700px;}
.y1e2{bottom:227.403450px;}
.y17f{bottom:230.346150px;}
.y119{bottom:231.035850px;}
.yce{bottom:231.517650px;}
.y199{bottom:232.024200px;}
.y20{bottom:232.046400px;}
.yc5{bottom:232.577550px;}
.y161{bottom:232.800750px;}
.y157{bottom:235.109100px;}
.y114{bottom:237.335850px;}
.yac{bottom:238.209450px;}
.y74{bottom:239.310600px;}
.y8a{bottom:240.964950px;}
.y1a1{bottom:241.097700px;}
.y1f{bottom:244.047900px;}
.y1f9{bottom:245.128950px;}
.ya1{bottom:245.221950px;}
.y124{bottom:245.277450px;}
.yde{bottom:245.297250px;}
.y1e1{bottom:246.897450px;}
.y1c3{bottom:247.054350px;}
.y113{bottom:249.935850px;}
.y43{bottom:250.540200px;}
.y17e{bottom:254.353650px;}
.y5a{bottom:254.732100px;}
.ycd{bottom:255.525150px;}
.y198{bottom:256.031700px;}
.y1e{bottom:256.049400px;}
.yc4{bottom:256.585050px;}
.y160{bottom:256.808250px;}
.y156{bottom:259.116600px;}
.yab{bottom:262.216950px;}
.y112{bottom:262.535850px;}
.y73{bottom:263.318100px;}
.y1f8{bottom:264.622950px;}
.y12d{bottom:264.972450px;}
.y1e0{bottom:266.391450px;}
.y1c2{bottom:266.548350px;}
.ya0{bottom:269.229450px;}
.y123{bottom:269.284950px;}
.ydd{bottom:269.304750px;}
.y42{bottom:274.547700px;}
.y111{bottom:275.135850px;}
.y1d{bottom:277.311900px;}
.y17d{bottom:278.361150px;}
.y59{bottom:278.739600px;}
.ycc{bottom:279.532650px;}
.y197{bottom:280.039200px;}
.yc3{bottom:280.592550px;}
.y15f{bottom:280.815750px;}
.y155{bottom:283.124100px;}
.y1f7{bottom:284.116950px;}
.y1c1{bottom:286.042350px;}
.y89{bottom:286.224450px;}
.y72{bottom:287.325600px;}
.y12c{bottom:288.979950px;}
.y1c{bottom:289.313400px;}
.y9f{bottom:293.236950px;}
.y122{bottom:293.292450px;}
.ydc{bottom:293.312250px;}
.y10d{bottom:294.781350px;}
.y41{bottom:298.555200px;}
.y1b{bottom:301.314900px;}
.y17c{bottom:302.368650px;}
.y58{bottom:302.747100px;}
.y196{bottom:304.046700px;}
.yc2{bottom:304.600050px;}
.y154{bottom:307.131600px;}
.y1df{bottom:307.147950px;}
.y10c{bottom:307.381350px;}
.y1a0{bottom:307.617450px;}
.y88{bottom:310.231950px;}
.y71{bottom:311.333100px;}
.y1ab{bottom:312.987450px;}
.y1a{bottom:313.316400px;}
.ydb{bottom:317.319750px;}
.y10b{bottom:319.981350px;}
.y40{bottom:322.562700px;}
.ycb{bottom:324.792450px;}
.y1f6{bottom:324.873450px;}
.y19{bottom:325.317900px;}
.y15e{bottom:326.075700px;}
.y17b{bottom:326.376150px;}
.y1de{bottom:326.641950px;}
.y57{bottom:326.754600px;}
.y1c0{bottom:326.798850px;}
.yc1{bottom:328.607550px;}
.y153{bottom:331.139100px;}
.y10a{bottom:332.581350px;}
.y87{bottom:334.239450px;}
.y70{bottom:335.340600px;}
.y1aa{bottom:336.994950px;}
.y18{bottom:337.319400px;}
.y121{bottom:338.552250px;}
.y110{bottom:338.881350px;}
.yda{bottom:341.327250px;}
.y1f5{bottom:344.367450px;}
.y109{bottom:345.181350px;}
.y1dd{bottom:346.135950px;}
.y1bf{bottom:346.292850px;}
.y3f{bottom:346.570200px;}
.y9e{bottom:346.993950px;}
.y195{bottom:349.306200px;}
.y17a{bottom:350.383650px;}
.y56{bottom:350.762100px;}
.y10f{bottom:351.481350px;}
.y152{bottom:355.146600px;}
.y108{bottom:357.781350px;}
.y86{bottom:358.246950px;}
.y17{bottom:358.581900px;}
.y6f{bottom:359.348100px;}
.y1f4{bottom:363.861450px;}
.y10e{bottom:364.081350px;}
.yd9{bottom:365.334750px;}
.y1be{bottom:365.786850px;}
.yca{bottom:367.052250px;}
.y107{bottom:370.381350px;}
.y16{bottom:370.583400px;}
.y9d{bottom:371.001450px;}
.y194{bottom:373.313700px;}
.yc0{bottom:373.867050px;}
.y179{bottom:374.391150px;}
.y55{bottom:374.769600px;}
.y151{bottom:379.154100px;}
.y85{bottom:382.254450px;}
.y106{bottom:382.981350px;}
.y1dc{bottom:386.892450px;}
.yd8{bottom:389.342250px;}
.y9c{bottom:395.008950px;}
.y105{bottom:395.581350px;}
.y193{bottom:397.321200px;}
.ybf{bottom:397.874550px;}
.y178{bottom:398.398650px;}
.y54{bottom:398.777100px;}
.y15{bottom:399.085350px;}
.y150{bottom:403.161600px;}
.yaa{bottom:403.506450px;}
.y3e{bottom:404.580450px;}
.y6e{bottom:404.607600px;}
.y1f3{bottom:404.617950px;}
.y84{bottom:406.261950px;}
.y1db{bottom:406.386450px;}
.y1bd{bottom:406.543350px;}
.y104{bottom:408.181350px;}
.yd7{bottom:413.349750px;}
.y9b{bottom:419.016450px;}
.y192{bottom:421.328700px;}
.ybe{bottom:421.882050px;}
.y53{bottom:422.784600px;}
.y14{bottom:423.092850px;}
.y1f2{bottom:424.111950px;}
.y1da{bottom:425.880450px;}
.y1bc{bottom:426.037350px;}
.ya9{bottom:427.513950px;}
.y103{bottom:427.826850px;}
.y6d{bottom:428.615100px;}
.y83{bottom:430.269450px;}
.y14d{bottom:436.034400px;}
.y102{bottom:440.426850px;}
.y9a{bottom:443.023950px;}
.y1f1{bottom:443.605950px;}
.y177{bottom:443.658150px;}
.y191{bottom:445.336200px;}
.y1d9{bottom:445.374450px;}
.y1bb{bottom:445.531350px;}
.ybd{bottom:445.889550px;}
.y52{bottom:446.792100px;}
.y13{bottom:447.100350px;}
.y14c{bottom:448.634400px;}
.ya8{bottom:451.521450px;}
.y6c{bottom:452.622600px;}
.y101{bottom:453.026850px;}
.y82{bottom:454.276950px;}
.y14f{bottom:454.934400px;}
.y14b{bottom:461.234400px;}
.y1f0{bottom:463.099950px;}
.y1ba{bottom:465.025350px;}
.y99{bottom:467.031450px;}
.y14e{bottom:467.534400px;}
.y176{bottom:467.665650px;}
.y190{bottom:469.343700px;}
.ybc{bottom:469.897050px;}
.y51{bottom:470.799600px;}
.yd6{bottom:471.365550px;}
.y100{bottom:472.672350px;}
.y14a{bottom:473.834400px;}
.ya7{bottom:475.528950px;}
.y6b{bottom:476.630100px;}
.y120{bottom:478.284450px;}
.y3d{bottom:483.855450px;}
.y1b9{bottom:484.519350px;}
.yff{bottom:485.272350px;}
.y1d8{bottom:486.130950px;}
.y149{bottom:486.434400px;}
.y98{bottom:491.038950px;}
.y175{bottom:491.673150px;}
.y18f{bottom:493.351200px;}
.ybb{bottom:493.904550px;}
.y50{bottom:494.807100px;}
.yfe{bottom:497.872350px;}
.y81{bottom:499.536450px;}
.y6a{bottom:500.637600px;}
.y11f{bottom:502.291950px;}
.y1ef{bottom:503.856450px;}
.y12{bottom:505.116150px;}
.y1d7{bottom:505.624950px;}
.y147{bottom:506.079900px;}
.y3c{bottom:507.858450px;}
.yfd{bottom:510.472350px;}
.y97{bottom:515.046450px;}
.y174{bottom:515.680650px;}
.y18e{bottom:517.358700px;}
.yba{bottom:517.912050px;}
.y146{bottom:518.679900px;}
.y4f{bottom:518.814600px;}
.yfc{bottom:523.072350px;}
.y1ee{bottom:523.350450px;}
.y80{bottom:523.543950px;}
.y69{bottom:524.645100px;}
.y148{bottom:524.979900px;}
.y1d6{bottom:525.118950px;}
.y1b8{bottom:525.275850px;}
.yd5{bottom:526.299450px;}
.y145{bottom:531.279900px;}
.y3b{bottom:531.861450px;}
.yfb{bottom:535.672350px;}
.y96{bottom:539.053950px;}
.y173{bottom:539.688150px;}
.y18d{bottom:541.366200px;}
.y4e{bottom:542.822100px;}
.y1ed{bottom:542.844450px;}
.y144{bottom:543.879900px;}
.y1b7{bottom:544.769850px;}
.y7f{bottom:547.551450px;}
.y68{bottom:548.652600px;}
.yd4{bottom:550.306950px;}
.yfa{bottom:555.317850px;}
.y143{bottom:556.479900px;}
.y95{bottom:563.061450px;}
.yb9{bottom:563.171550px;}
.y172{bottom:563.695650px;}
.y2b{bottom:563.821500px;}
.y1b6{bottom:564.263850px;}
.y18c{bottom:565.373700px;}
.y1d5{bottom:565.875450px;}
.y11{bottom:566.122950px;}
.yf9{bottom:567.917850px;}
.y7e{bottom:571.558950px;}
.y67{bottom:572.660100px;}
.yd3{bottom:574.314450px;}
.y140{bottom:576.125400px;}
.yf8{bottom:580.517850px;}
.y10{bottom:581.127450px;}
.y142{bottom:582.425400px;}
.y1ec{bottom:583.600950px;}
.y1d4{bottom:585.369450px;}
.y94{bottom:587.068950px;}
.yb8{bottom:587.179050px;}
.y171{bottom:587.703150px;}
.y13f{bottom:588.725400px;}
.y18b{bottom:589.381200px;}
.y141{bottom:595.025400px;}
.y7d{bottom:595.566450px;}
.yf{bottom:596.131950px;}
.y66{bottom:596.667600px;}
.yf6{bottom:600.163350px;}
.y13e{bottom:601.325400px;}
.y1eb{bottom:603.094950px;}
.y1d3{bottom:604.863450px;}
.y1b5{bottom:605.020350px;}
.y4d{bottom:609.332400px;}
.y93{bottom:611.076450px;}
.yb7{bottom:611.186550px;}
.y170{bottom:611.710650px;}
.yf5{bottom:612.763350px;}
.yf7{bottom:619.063350px;}
.y3a{bottom:619.573950px;}
.y65{bottom:620.675100px;}
.y13c{bottom:620.970900px;}
.y1d2{bottom:624.357450px;}
.y1b4{bottom:624.514350px;}
.yf4{bottom:625.363350px;}
.ye{bottom:632.385750px;}
.y13b{bottom:633.570900px;}
.y18a{bottom:634.641150px;}
.y92{bottom:635.083950px;}
.yb6{bottom:635.194050px;}
.y16f{bottom:635.718150px;}
.yf3{bottom:637.963350px;}
.y13d{bottom:639.870900px;}
.y39{bottom:643.581450px;}
.y1ea{bottom:643.851450px;}
.y1b3{bottom:644.008350px;}
.y64{bottom:644.682600px;}
.y13a{bottom:646.170900px;}
.yd{bottom:653.391750px;}
.yf2{bottom:657.608850px;}
.y139{bottom:658.770900px;}
.y91{bottom:659.091450px;}
.yb5{bottom:659.201550px;}
.y16e{bottom:659.725650px;}
.y189{bottom:660.141150px;}
.y1e9{bottom:663.345450px;}
.y1d1{bottom:665.113950px;}
.y7c{bottom:667.588950px;}
.y63{bottom:668.690100px;}
.yf1{bottom:670.208850px;}
.y138{bottom:678.416400px;}
.yf0{bottom:682.808850px;}
.y19f{bottom:683.098950px;}
.yb4{bottom:683.209050px;}
.y16d{bottom:683.733150px;}
.yc{bottom:684.147600px;}
.y1d0{bottom:684.607950px;}
.y1b2{bottom:684.764850px;}
.y188{bottom:685.641150px;}
.y38{bottom:688.840950px;}
.y137{bottom:691.016400px;}
.y7b{bottom:691.596450px;}
.y62{bottom:692.697600px;}
.y4c{bottom:697.112400px;}
.y15d{bottom:702.141150px;}
.yee{bottom:702.454350px;}
.y136{bottom:703.616400px;}
.y1cf{bottom:704.101950px;}
.y1b1{bottom:704.258850px;}
.yb{bottom:705.147600px;}
.yb3{bottom:707.216550px;}
.y187{bottom:711.141150px;}
.y37{bottom:712.848450px;}
.yed{bottom:715.054350px;}
.y11e{bottom:715.603950px;}
.y61{bottom:716.705100px;}
.y4b{bottom:721.115400px;}
.y135{bottom:723.261900px;}
.y1e8{bottom:723.595950px;}
.y1b0{bottom:723.752850px;}
.yc9{bottom:726.141150px;}
.ya{bottom:726.147600px;}
.yec{bottom:727.654350px;}
.y16c{bottom:728.992950px;}
.yb2{bottom:731.224050px;}
.y134{bottom:735.861900px;}
.y186{bottom:736.641150px;}
.y36{bottom:736.855950px;}
.y11d{bottom:739.611450px;}
.yeb{bottom:740.254350px;}
.y60{bottom:740.712600px;}
.y1e7{bottom:743.089950px;}
.y1af{bottom:743.246850px;}
.y1ce{bottom:744.858450px;}
.y4a{bottom:745.118400px;}
.yef{bottom:746.554350px;}
.y9{bottom:747.147600px;}
.yea{bottom:752.854350px;}
.y16b{bottom:754.492950px;}
.yb1{bottom:755.231550px;}
.y133{bottom:755.881200px;}
.y35{bottom:760.863450px;}
.y185{bottom:762.141150px;}
.y12b{bottom:763.618950px;}
.y1cd{bottom:764.352450px;}
.y5f{bottom:764.720100px;}
.ye9{bottom:765.454350px;}
.y49{bottom:769.121400px;}
.ye8{bottom:778.054350px;}
.y16a{bottom:779.992950px;}
.y1cc{bottom:783.846450px;}
.y1ae{bottom:784.003350px;}
.y34{bottom:784.870950px;}
.y1a9{bottom:787.626450px;}
.y5e{bottom:788.727600px;}
.y132{bottom:790.641150px;}
.ye7{bottom:790.654350px;}
.yb0{bottom:800.489850px;}
.y8{bottom:802.163400px;}
.y1e6{bottom:803.340450px;}
.y1ad{bottom:803.497350px;}
.y169{bottom:805.492950px;}
.y33{bottom:808.878450px;}
.ye6{bottom:810.299850px;}
.y1a8{bottom:811.633950px;}
.ye5{bottom:816.599850px;}
.yaf{bottom:821.491350px;}
.y1ac{bottom:822.991350px;}
.y1cb{bottom:824.602950px;}
.y7{bottom:826.163400px;}
.y168{bottom:830.992950px;}
.y32{bottom:832.885950px;}
.ye4{bottom:842.919150px;}
.y1ca{bottom:844.096950px;}
.y6{bottom:850.163400px;}
.y167{bottom:856.492950px;}
.y31{bottom:856.893450px;}
.y1c9{bottom:863.590950px;}
.y5{bottom:874.163400px;}
.y5d{bottom:876.507150px;}
.ye3{bottom:877.678950px;}
.y30{bottom:880.900950px;}
.y166{bottom:881.992950px;}
.y1c8{bottom:883.084950px;}
.y4{bottom:928.188750px;}
.y2e{bottom:959.955150px;}
.y2d{bottom:969.936150px;}
.y1{bottom:970.893000px;}
.he{height:9.922500px;}
.h4{height:27.000000px;}
.h3{height:28.815108px;}
.h2{height:29.513672px;}
.h12{height:30.577148px;}
.h10{height:30.597656px;}
.hd{height:31.500000px;}
.h5{height:34.432617px;}
.h9{height:40.500000px;}
.h17{height:40.869141px;}
.h8{height:44.270508px;}
.h14{height:45.410156px;}
.h16{height:49.939453px;}
.hb{height:49.951172px;}
.h15{height:55.488281px;}
.h11{height:55.777148px;}
.h13{height:55.797656px;}
.hc{height:61.037109px;}
.hf{height:61.699219px;}
.ha{height:66.363281px;}
.h6{height:75.843750px;}
.h7{height:76.184906px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:25.275000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x11{left:-215.488050px;}
.x0{left:0.000000px;}
.x13{left:27.834900px;}
.x12{left:85.464600px;}
.x14{left:89.039850px;}
.x44{left:91.820250px;}
.x15{left:93.134850px;}
.x42{left:94.707750px;}
.x3f{left:96.786750px;}
.x3e{left:97.931250px;}
.x41{left:100.293750px;}
.x3b{left:101.732250px;}
.x39{left:103.475250px;}
.x2{left:105.224400px;}
.xe{left:106.299300px;}
.x19{left:110.412150px;}
.x21{left:112.771200px;}
.x27{left:114.692700px;}
.x2e{left:116.446200px;}
.x17{left:118.371150px;}
.x2c{left:119.932200px;}
.x22{left:122.179200px;}
.x18{left:124.230150px;}
.x2d{left:126.379200px;}
.x1b{left:127.559100px;}
.x23{left:128.710200px;}
.x30{left:130.453200px;}
.x35{left:132.794700px;}
.x6{left:135.742200px;}
.x32{left:137.750700px;}
.x47{left:140.314950px;}
.x7{left:142.894200px;}
.x3c{left:146.976750px;}
.x1e{left:153.762150px;}
.x8{left:158.638200px;}
.x3a{left:179.369250px;}
.x2a{left:190.271700px;}
.x24{left:203.554200px;}
.x28{left:205.444200px;}
.x1c{left:216.205800px;}
.x25{left:219.167700px;}
.x1a{left:222.174150px;}
.x1f{left:233.185200px;}
.x43{left:260.208750px;}
.x46{left:267.867600px;}
.x9{left:290.806950px;}
.x38{left:298.208850px;}
.x16{left:304.772850px;}
.x1d{left:306.386400px;}
.xa{left:310.543050px;}
.xb{left:316.116600px;}
.x37{left:325.650900px;}
.x5{left:327.599250px;}
.xf{left:333.676200px;}
.x1{left:336.707850px;}
.x40{left:477.411750px;}
.x2b{left:479.000700px;}
.x34{left:483.956700px;}
.x26{left:485.710200px;}
.x2f{left:492.997200px;}
.x33{left:495.044700px;}
.x45{left:498.443250px;}
.x29{left:500.011200px;}
.x10{left:503.857500px;}
.x31{left:510.028200px;}
.x3d{left:511.274250px;}
.xd{left:513.211650px;}
.xc{left:515.371650px;}
.x20{left:525.683700px;}
.x36{left:531.826200px;}
.x4{left:581.502750px;}
.x3{left:587.748750px;}
@media print{
.v1{vertical-align:-13.738133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.226133pt;}
.v3{vertical-align:15.984000pt;}
.v5{vertical-align:22.400000pt;}
.v2{vertical-align:28.416000pt;}
.ls12{letter-spacing:-2.933333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls0{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.600000pt;}
.lsb{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.877333pt;}
.lse{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.240000pt;}
.lsc{letter-spacing:2.346667pt;}
.ls2{letter-spacing:2.560000pt;}
.lsf{letter-spacing:2.933333pt;}
.ls11{letter-spacing:9.504000pt;}
.ls10{letter-spacing:489.216000pt;}
.ws0{word-spacing:-28.074667pt;}
.wse{word-spacing:-17.952000pt;}
.ws53{word-spacing:-17.893333pt;}
.ws75{word-spacing:-14.640000pt;}
.ws7f{word-spacing:-14.592000pt;}
.ws4f{word-spacing:-10.378667pt;}
.ws2c{word-spacing:-5.573333pt;}
.ws85{word-spacing:-5.424000pt;}
.ws5a{word-spacing:-4.693333pt;}
.ws68{word-spacing:-4.576000pt;}
.ws69{word-spacing:-4.517333pt;}
.ws25{word-spacing:-3.520000pt;}
.ws17{word-spacing:-3.461333pt;}
.ws32{word-spacing:-3.344000pt;}
.ws5d{word-spacing:-3.226667pt;}
.ws26{word-spacing:-2.933333pt;}
.ws3f{word-spacing:-2.874667pt;}
.ws33{word-spacing:-2.581333pt;}
.ws35{word-spacing:-2.464000pt;}
.ws14{word-spacing:-2.346667pt;}
.ws4a{word-spacing:-2.288000pt;}
.ws22{word-spacing:-2.240000pt;}
.ws31{word-spacing:-2.170667pt;}
.ws70{word-spacing:-1.994667pt;}
.ws30{word-spacing:-1.936000pt;}
.ws10{word-spacing:-1.760000pt;}
.ws57{word-spacing:-1.600000pt;}
.ws76{word-spacing:-1.440000pt;}
.ws8{word-spacing:-1.418667pt;}
.ws2d{word-spacing:-1.349333pt;}
.ws7{word-spacing:-1.173333pt;}
.ws7b{word-spacing:-1.152000pt;}
.ws16{word-spacing:-0.938667pt;}
.ws28{word-spacing:-0.746667pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws2{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.352000pt;}
.ws2e{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws89{word-spacing:0.096000pt;}
.ws13{word-spacing:0.176000pt;}
.ws20{word-spacing:0.234667pt;}
.ws1e{word-spacing:0.293333pt;}
.ws49{word-spacing:0.528000pt;}
.wsb{word-spacing:0.597333pt;}
.ws8c{word-spacing:0.720000pt;}
.ws86{word-spacing:0.960000pt;}
.ws3e{word-spacing:1.114667pt;}
.ws78{word-spacing:1.248000pt;}
.ws4{word-spacing:1.269333pt;}
.ws63{word-spacing:1.290667pt;}
.ws8f{word-spacing:1.344000pt;}
.ws23{word-spacing:1.466667pt;}
.ws21{word-spacing:1.525333pt;}
.ws81{word-spacing:1.536000pt;}
.ws79{word-spacing:1.680000pt;}
.ws27{word-spacing:1.701333pt;}
.ws7a{word-spacing:1.728000pt;}
.wsc{word-spacing:1.829333pt;}
.ws3{word-spacing:2.053333pt;}
.ws8e{word-spacing:2.160000pt;}
.ws80{word-spacing:2.400000pt;}
.ws74{word-spacing:2.640000pt;}
.ws2f{word-spacing:2.698667pt;}
.wsa{word-spacing:2.762667pt;}
.ws41{word-spacing:2.874667pt;}
.ws59{word-spacing:2.933333pt;}
.ws1b{word-spacing:2.992000pt;}
.ws34{word-spacing:3.050667pt;}
.ws15{word-spacing:3.285333pt;}
.ws8b{word-spacing:3.408000pt;}
.ws84{word-spacing:3.840000pt;}
.ws47{word-spacing:3.930667pt;}
.ws40{word-spacing:4.048000pt;}
.ws83{word-spacing:4.080000pt;}
.ws5c{word-spacing:4.576000pt;}
.ws45{word-spacing:4.693333pt;}
.ws24{word-spacing:4.869333pt;}
.ws9{word-spacing:5.002667pt;}
.ws58{word-spacing:5.573333pt;}
.ws38{word-spacing:5.632000pt;}
.ws1d{word-spacing:5.749333pt;}
.ws8d{word-spacing:5.952000pt;}
.ws77{word-spacing:6.000000pt;}
.ws3b{word-spacing:6.160000pt;}
.ws37{word-spacing:6.336000pt;}
.ws6f{word-spacing:6.453333pt;}
.ws4b{word-spacing:6.570667pt;}
.ws67{word-spacing:6.688000pt;}
.ws11{word-spacing:6.805333pt;}
.ws8a{word-spacing:7.008000pt;}
.ws39{word-spacing:7.040000pt;}
.ws61{word-spacing:7.509333pt;}
.ws62{word-spacing:7.626667pt;}
.ws46{word-spacing:7.744000pt;}
.ws7e{word-spacing:7.968000pt;}
.ws29{word-spacing:8.272000pt;}
.ws90{word-spacing:8.448000pt;}
.ws4e{word-spacing:8.800000pt;}
.ws60{word-spacing:8.917333pt;}
.ws6a{word-spacing:9.093333pt;}
.ws51{word-spacing:9.210667pt;}
.ws7d{word-spacing:9.360000pt;}
.ws2b{word-spacing:9.504000pt;}
.ws4d{word-spacing:9.680000pt;}
.ws1c{word-spacing:9.856000pt;}
.ws66{word-spacing:9.914667pt;}
.ws72{word-spacing:9.973333pt;}
.ws1a{word-spacing:10.325333pt;}
.ws5f{word-spacing:10.453333pt;}
.ws4c{word-spacing:11.205333pt;}
.ws3c{word-spacing:11.440000pt;}
.ws3d{word-spacing:11.557333pt;}
.ws19{word-spacing:11.616000pt;}
.ws56{word-spacing:11.674667pt;}
.ws6{word-spacing:12.085333pt;}
.ws44{word-spacing:12.320000pt;}
.ws6d{word-spacing:12.672000pt;}
.ws5e{word-spacing:12.730667pt;}
.ws65{word-spacing:12.848000pt;}
.ws42{word-spacing:13.141333pt;}
.ws43{word-spacing:13.200000pt;}
.ws71{word-spacing:14.432000pt;}
.ws2a{word-spacing:14.549333pt;}
.wsf{word-spacing:15.898667pt;}
.ws87{word-spacing:15.984000pt;}
.ws6e{word-spacing:16.250667pt;}
.ws48{word-spacing:16.426667pt;}
.ws50{word-spacing:16.602667pt;}
.ws12{word-spacing:16.661333pt;}
.ws64{word-spacing:18.069333pt;}
.ws7c{word-spacing:18.192000pt;}
.ws6c{word-spacing:18.304000pt;}
.ws6b{word-spacing:18.362667pt;}
.ws36{word-spacing:18.656000pt;}
.ws5{word-spacing:19.946667pt;}
.ws5b{word-spacing:20.416000pt;}
.ws73{word-spacing:23.408000pt;}
.ws18{word-spacing:25.989333pt;}
.ws55{word-spacing:26.869333pt;}
.ws54{word-spacing:27.104000pt;}
.ws82{word-spacing:31.536000pt;}
.ws88{word-spacing:38.304000pt;}
.wsd{word-spacing:138.665600pt;}
._5{margin-left:-16.878400pt;}
._23{margin-left:-10.395733pt;}
._6{margin-left:-9.333333pt;}
._21{margin-left:-8.037333pt;}
._1d{margin-left:-6.806933pt;}
._b{margin-left:-5.731733pt;}
._1e{margin-left:-4.840533pt;}
._3{margin-left:-3.865600pt;}
._7{margin-left:-2.843733pt;}
._0{margin-left:-1.926400pt;}
._1{margin-left:-0.947200pt;}
._4{width:1.655467pt;}
._8{width:2.598933pt;}
._c{width:4.185067pt;}
._a{width:5.878400pt;}
._9{width:6.981333pt;}
._10{width:8.078400pt;}
._14{width:9.404267pt;}
._f{width:10.389867pt;}
._e{width:11.968000pt;}
._19{width:12.900800pt;}
._16{width:13.986133pt;}
._d{width:15.006933pt;}
._25{width:16.051200pt;}
._13{width:17.289067pt;}
._11{width:18.538667pt;}
._18{width:19.700267pt;}
._1b{width:21.518933pt;}
._1c{width:22.932800pt;}
._15{width:25.021333pt;}
._12{width:26.669867pt;}
._17{width:28.206933pt;}
._1f{width:29.157333pt;}
._20{width:32.196267pt;}
._24{width:33.554133pt;}
._1a{width:37.763733pt;}
._26{width:39.644800pt;}
._22{width:504.784000pt;}
._2{width:1534.811200pt;}
.fs5{font-size:27.984000pt;}
.fs0{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:49.749333pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.053733pt;}
.y3{bottom:18.248133pt;}
.y2f{bottom:24.791600pt;}
.y2{bottom:27.848133pt;}
.y2a{bottom:83.119467pt;}
.y15c{bottom:83.395200pt;}
.y131{bottom:83.701733pt;}
.y7a{bottom:84.680533pt;}
.y90{bottom:86.151067pt;}
.y1a7{bottom:86.269067pt;}
.y12a{bottom:89.984400pt;}
.y29{bottom:93.787467pt;}
.y11c{bottom:94.268133pt;}
.y165{bottom:97.383067pt;}
.y184{bottom:98.052133pt;}
.y19e{bottom:99.543733pt;}
.yd2{bottom:101.542800pt;}
.y28{bottom:104.455467pt;}
.y15b{bottom:104.735200pt;}
.y130{bottom:105.041733pt;}
.y79{bottom:106.020533pt;}
.y8f{bottom:107.491067pt;}
.y1a6{bottom:107.609067pt;}
.ya6{bottom:111.275067pt;}
.y129{bottom:111.324400pt;}
.y27{bottom:115.123467pt;}
.y11b{bottom:115.608133pt;}
.y48{bottom:116.002400pt;}
.y183{bottom:119.392133pt;}
.y164{bottom:120.049733pt;}
.y19d{bottom:120.883733pt;}
.yd1{bottom:122.882800pt;}
.y15a{bottom:126.075200pt;}
.y12f{bottom:126.381733pt;}
.y78{bottom:127.360533pt;}
.y8e{bottom:128.831067pt;}
.y1a5{bottom:128.949067pt;}
.y1fd{bottom:129.680400pt;}
.y1e5{bottom:131.252400pt;}
.y1c7{bottom:131.391867pt;}
.ya5{bottom:132.615067pt;}
.y128{bottom:132.664400pt;}
.ye2{bottom:132.682000pt;}
.y26{bottom:134.023467pt;}
.y11a{bottom:136.948133pt;}
.y47{bottom:137.342400pt;}
.y182{bottom:140.732133pt;}
.y19c{bottom:142.223733pt;}
.yc8{bottom:142.715600pt;}
.y163{bottom:142.716400pt;}
.yd0{bottom:144.222800pt;}
.y25{bottom:144.691467pt;}
.y1fc{bottom:147.008400pt;}
.y12e{bottom:147.721733pt;}
.y1e4{bottom:148.580400pt;}
.y77{bottom:148.700533pt;}
.y1c6{bottom:148.719867pt;}
.y8d{bottom:150.171067pt;}
.y1a4{bottom:150.289067pt;}
.ya4{bottom:153.955067pt;}
.y127{bottom:154.004400pt;}
.ye1{bottom:154.022000pt;}
.y24{bottom:155.359467pt;}
.y46{bottom:158.682400pt;}
.y181{bottom:162.072133pt;}
.y19b{bottom:163.563733pt;}
.yc7{bottom:164.055600pt;}
.y1fb{bottom:164.336400pt;}
.y5c{bottom:164.857867pt;}
.y162{bottom:165.383067pt;}
.y1e3{bottom:165.908400pt;}
.y23{bottom:166.027467pt;}
.y1c5{bottom:166.047867pt;}
.y118{bottom:166.165200pt;}
.y159{bottom:166.305867pt;}
.yae{bottom:169.061733pt;}
.y76{bottom:170.040533pt;}
.y8c{bottom:171.511067pt;}
.y1a3{bottom:171.629067pt;}
.ya3{bottom:175.295067pt;}
.y126{bottom:175.344400pt;}
.ye0{bottom:175.362000pt;}
.y117{bottom:177.365200pt;}
.y45{bottom:180.022400pt;}
.y1c4{bottom:183.375867pt;}
.y180{bottom:183.412133pt;}
.ycf{bottom:184.453467pt;}
.y19a{bottom:184.903733pt;}
.y22{bottom:184.927467pt;}
.yc6{bottom:185.395600pt;}
.y5b{bottom:186.197867pt;}
.y158{bottom:187.645867pt;}
.y116{bottom:188.565200pt;}
.yad{bottom:190.401733pt;}
.y75{bottom:191.380533pt;}
.y8b{bottom:192.851067pt;}
.y1a2{bottom:192.969067pt;}
.y21{bottom:195.595467pt;}
.ya2{bottom:196.635067pt;}
.y125{bottom:196.684400pt;}
.ydf{bottom:196.702000pt;}
.y115{bottom:199.765200pt;}
.y1fa{bottom:200.564400pt;}
.y44{bottom:201.362400pt;}
.y1e2{bottom:202.136400pt;}
.y17f{bottom:204.752133pt;}
.y119{bottom:205.365200pt;}
.yce{bottom:205.793467pt;}
.y199{bottom:206.243733pt;}
.y20{bottom:206.263467pt;}
.yc5{bottom:206.735600pt;}
.y161{bottom:206.934000pt;}
.y157{bottom:208.985867pt;}
.y114{bottom:210.965200pt;}
.yac{bottom:211.741733pt;}
.y74{bottom:212.720533pt;}
.y8a{bottom:214.191067pt;}
.y1a1{bottom:214.309067pt;}
.y1f{bottom:216.931467pt;}
.y1f9{bottom:217.892400pt;}
.ya1{bottom:217.975067pt;}
.y124{bottom:218.024400pt;}
.yde{bottom:218.042000pt;}
.y1e1{bottom:219.464400pt;}
.y1c3{bottom:219.603867pt;}
.y113{bottom:222.165200pt;}
.y43{bottom:222.702400pt;}
.y17e{bottom:226.092133pt;}
.y5a{bottom:226.428533pt;}
.ycd{bottom:227.133467pt;}
.y198{bottom:227.583733pt;}
.y1e{bottom:227.599467pt;}
.yc4{bottom:228.075600pt;}
.y160{bottom:228.274000pt;}
.y156{bottom:230.325867pt;}
.yab{bottom:233.081733pt;}
.y112{bottom:233.365200pt;}
.y73{bottom:234.060533pt;}
.y1f8{bottom:235.220400pt;}
.y12d{bottom:235.531067pt;}
.y1e0{bottom:236.792400pt;}
.y1c2{bottom:236.931867pt;}
.ya0{bottom:239.315067pt;}
.y123{bottom:239.364400pt;}
.ydd{bottom:239.382000pt;}
.y42{bottom:244.042400pt;}
.y111{bottom:244.565200pt;}
.y1d{bottom:246.499467pt;}
.y17d{bottom:247.432133pt;}
.y59{bottom:247.768533pt;}
.ycc{bottom:248.473467pt;}
.y197{bottom:248.923733pt;}
.yc3{bottom:249.415600pt;}
.y15f{bottom:249.614000pt;}
.y155{bottom:251.665867pt;}
.y1f7{bottom:252.548400pt;}
.y1c1{bottom:254.259867pt;}
.y89{bottom:254.421733pt;}
.y72{bottom:255.400533pt;}
.y12c{bottom:256.871067pt;}
.y1c{bottom:257.167467pt;}
.y9f{bottom:260.655067pt;}
.y122{bottom:260.704400pt;}
.ydc{bottom:260.722000pt;}
.y10d{bottom:262.027867pt;}
.y41{bottom:265.382400pt;}
.y1b{bottom:267.835467pt;}
.y17c{bottom:268.772133pt;}
.y58{bottom:269.108533pt;}
.y196{bottom:270.263733pt;}
.yc2{bottom:270.755600pt;}
.y154{bottom:273.005867pt;}
.y1df{bottom:273.020400pt;}
.y10c{bottom:273.227867pt;}
.y1a0{bottom:273.437733pt;}
.y88{bottom:275.761733pt;}
.y71{bottom:276.740533pt;}
.y1ab{bottom:278.211067pt;}
.y1a{bottom:278.503467pt;}
.ydb{bottom:282.062000pt;}
.y10b{bottom:284.427867pt;}
.y40{bottom:286.722400pt;}
.ycb{bottom:288.704400pt;}
.y1f6{bottom:288.776400pt;}
.y19{bottom:289.171467pt;}
.y15e{bottom:289.845067pt;}
.y17b{bottom:290.112133pt;}
.y1de{bottom:290.348400pt;}
.y57{bottom:290.448533pt;}
.y1c0{bottom:290.487867pt;}
.yc1{bottom:292.095600pt;}
.y153{bottom:294.345867pt;}
.y10a{bottom:295.627867pt;}
.y87{bottom:297.101733pt;}
.y70{bottom:298.080533pt;}
.y1aa{bottom:299.551067pt;}
.y18{bottom:299.839467pt;}
.y121{bottom:300.935333pt;}
.y110{bottom:301.227867pt;}
.yda{bottom:303.402000pt;}
.y1f5{bottom:306.104400pt;}
.y109{bottom:306.827867pt;}
.y1dd{bottom:307.676400pt;}
.y1bf{bottom:307.815867pt;}
.y3f{bottom:308.062400pt;}
.y9e{bottom:308.439067pt;}
.y195{bottom:310.494400pt;}
.y17a{bottom:311.452133pt;}
.y56{bottom:311.788533pt;}
.y10f{bottom:312.427867pt;}
.y152{bottom:315.685867pt;}
.y108{bottom:318.027867pt;}
.y86{bottom:318.441733pt;}
.y17{bottom:318.739467pt;}
.y6f{bottom:319.420533pt;}
.y1f4{bottom:323.432400pt;}
.y10e{bottom:323.627867pt;}
.yd9{bottom:324.742000pt;}
.y1be{bottom:325.143867pt;}
.yca{bottom:326.268667pt;}
.y107{bottom:329.227867pt;}
.y16{bottom:329.407467pt;}
.y9d{bottom:329.779067pt;}
.y194{bottom:331.834400pt;}
.yc0{bottom:332.326267pt;}
.y179{bottom:332.792133pt;}
.y55{bottom:333.128533pt;}
.y151{bottom:337.025867pt;}
.y85{bottom:339.781733pt;}
.y106{bottom:340.427867pt;}
.y1dc{bottom:343.904400pt;}
.yd8{bottom:346.082000pt;}
.y9c{bottom:351.119067pt;}
.y105{bottom:351.627867pt;}
.y193{bottom:353.174400pt;}
.ybf{bottom:353.666267pt;}
.y178{bottom:354.132133pt;}
.y54{bottom:354.468533pt;}
.y15{bottom:354.742533pt;}
.y150{bottom:358.365867pt;}
.yaa{bottom:358.672400pt;}
.y3e{bottom:359.627067pt;}
.y6e{bottom:359.651200pt;}
.y1f3{bottom:359.660400pt;}
.y84{bottom:361.121733pt;}
.y1db{bottom:361.232400pt;}
.y1bd{bottom:361.371867pt;}
.y104{bottom:362.827867pt;}
.yd7{bottom:367.422000pt;}
.y9b{bottom:372.459067pt;}
.y192{bottom:374.514400pt;}
.ybe{bottom:375.006267pt;}
.y53{bottom:375.808533pt;}
.y14{bottom:376.082533pt;}
.y1f2{bottom:376.988400pt;}
.y1da{bottom:378.560400pt;}
.y1bc{bottom:378.699867pt;}
.ya9{bottom:380.012400pt;}
.y103{bottom:380.290533pt;}
.y6d{bottom:380.991200pt;}
.y83{bottom:382.461733pt;}
.y14d{bottom:387.586133pt;}
.y102{bottom:391.490533pt;}
.y9a{bottom:393.799067pt;}
.y1f1{bottom:394.316400pt;}
.y177{bottom:394.362800pt;}
.y191{bottom:395.854400pt;}
.y1d9{bottom:395.888400pt;}
.y1bb{bottom:396.027867pt;}
.ybd{bottom:396.346267pt;}
.y52{bottom:397.148533pt;}
.y13{bottom:397.422533pt;}
.y14c{bottom:398.786133pt;}
.ya8{bottom:401.352400pt;}
.y6c{bottom:402.331200pt;}
.y101{bottom:402.690533pt;}
.y82{bottom:403.801733pt;}
.y14f{bottom:404.386133pt;}
.y14b{bottom:409.986133pt;}
.y1f0{bottom:411.644400pt;}
.y1ba{bottom:413.355867pt;}
.y99{bottom:415.139067pt;}
.y14e{bottom:415.586133pt;}
.y176{bottom:415.702800pt;}
.y190{bottom:417.194400pt;}
.ybc{bottom:417.686267pt;}
.y51{bottom:418.488533pt;}
.yd6{bottom:418.991600pt;}
.y100{bottom:420.153200pt;}
.y14a{bottom:421.186133pt;}
.ya7{bottom:422.692400pt;}
.y6b{bottom:423.671200pt;}
.y120{bottom:425.141733pt;}
.y3d{bottom:430.093733pt;}
.y1b9{bottom:430.683867pt;}
.yff{bottom:431.353200pt;}
.y1d8{bottom:432.116400pt;}
.y149{bottom:432.386133pt;}
.y98{bottom:436.479067pt;}
.y175{bottom:437.042800pt;}
.y18f{bottom:438.534400pt;}
.ybb{bottom:439.026267pt;}
.y50{bottom:439.828533pt;}
.yfe{bottom:442.553200pt;}
.y81{bottom:444.032400pt;}
.y6a{bottom:445.011200pt;}
.y11f{bottom:446.481733pt;}
.y1ef{bottom:447.872400pt;}
.y12{bottom:448.992133pt;}
.y1d7{bottom:449.444400pt;}
.y147{bottom:449.848800pt;}
.y3c{bottom:451.429733pt;}
.yfd{bottom:453.753200pt;}
.y97{bottom:457.819067pt;}
.y174{bottom:458.382800pt;}
.y18e{bottom:459.874400pt;}
.yba{bottom:460.366267pt;}
.y146{bottom:461.048800pt;}
.y4f{bottom:461.168533pt;}
.yfc{bottom:464.953200pt;}
.y1ee{bottom:465.200400pt;}
.y80{bottom:465.372400pt;}
.y69{bottom:466.351200pt;}
.y148{bottom:466.648800pt;}
.y1d6{bottom:466.772400pt;}
.y1b8{bottom:466.911867pt;}
.yd5{bottom:467.821733pt;}
.y145{bottom:472.248800pt;}
.y3b{bottom:472.765733pt;}
.yfb{bottom:476.153200pt;}
.y96{bottom:479.159067pt;}
.y173{bottom:479.722800pt;}
.y18d{bottom:481.214400pt;}
.y4e{bottom:482.508533pt;}
.y1ed{bottom:482.528400pt;}
.y144{bottom:483.448800pt;}
.y1b7{bottom:484.239867pt;}
.y7f{bottom:486.712400pt;}
.y68{bottom:487.691200pt;}
.yd4{bottom:489.161733pt;}
.yfa{bottom:493.615867pt;}
.y143{bottom:494.648800pt;}
.y95{bottom:500.499067pt;}
.yb9{bottom:500.596933pt;}
.y172{bottom:501.062800pt;}
.y2b{bottom:501.174667pt;}
.y1b6{bottom:501.567867pt;}
.y18c{bottom:502.554400pt;}
.y1d5{bottom:503.000400pt;}
.y11{bottom:503.220400pt;}
.yf9{bottom:504.815867pt;}
.y7e{bottom:508.052400pt;}
.y67{bottom:509.031200pt;}
.yd3{bottom:510.501733pt;}
.y140{bottom:512.111467pt;}
.yf8{bottom:516.015867pt;}
.y10{bottom:516.557733pt;}
.y142{bottom:517.711467pt;}
.y1ec{bottom:518.756400pt;}
.y1d4{bottom:520.328400pt;}
.y94{bottom:521.839067pt;}
.yb8{bottom:521.936933pt;}
.y171{bottom:522.402800pt;}
.y13f{bottom:523.311467pt;}
.y18b{bottom:523.894400pt;}
.y141{bottom:528.911467pt;}
.y7d{bottom:529.392400pt;}
.yf{bottom:529.895067pt;}
.y66{bottom:530.371200pt;}
.yf6{bottom:533.478533pt;}
.y13e{bottom:534.511467pt;}
.y1eb{bottom:536.084400pt;}
.y1d3{bottom:537.656400pt;}
.y1b5{bottom:537.795867pt;}
.y4d{bottom:541.628800pt;}
.y93{bottom:543.179067pt;}
.yb7{bottom:543.276933pt;}
.y170{bottom:543.742800pt;}
.yf5{bottom:544.678533pt;}
.yf7{bottom:550.278533pt;}
.y3a{bottom:550.732400pt;}
.y65{bottom:551.711200pt;}
.y13c{bottom:551.974133pt;}
.y1d2{bottom:554.984400pt;}
.y1b4{bottom:555.123867pt;}
.yf4{bottom:555.878533pt;}
.ye{bottom:562.120667pt;}
.y13b{bottom:563.174133pt;}
.y18a{bottom:564.125467pt;}
.y92{bottom:564.519067pt;}
.yb6{bottom:564.616933pt;}
.y16f{bottom:565.082800pt;}
.yf3{bottom:567.078533pt;}
.y13d{bottom:568.774133pt;}
.y39{bottom:572.072400pt;}
.y1ea{bottom:572.312400pt;}
.y1b3{bottom:572.451867pt;}
.y64{bottom:573.051200pt;}
.y13a{bottom:574.374133pt;}
.yd{bottom:580.792667pt;}
.yf2{bottom:584.541200pt;}
.y139{bottom:585.574133pt;}
.y91{bottom:585.859067pt;}
.yb5{bottom:585.956933pt;}
.y16e{bottom:586.422800pt;}
.y189{bottom:586.792133pt;}
.y1e9{bottom:589.640400pt;}
.y1d1{bottom:591.212400pt;}
.y7c{bottom:593.412400pt;}
.y63{bottom:594.391200pt;}
.yf1{bottom:595.741200pt;}
.y138{bottom:603.036800pt;}
.yf0{bottom:606.941200pt;}
.y19f{bottom:607.199067pt;}
.yb4{bottom:607.296933pt;}
.y16d{bottom:607.762800pt;}
.yc{bottom:608.131200pt;}
.y1d0{bottom:608.540400pt;}
.y1b2{bottom:608.679867pt;}
.y188{bottom:609.458800pt;}
.y38{bottom:612.303067pt;}
.y137{bottom:614.236800pt;}
.y7b{bottom:614.752400pt;}
.y62{bottom:615.731200pt;}
.y4c{bottom:619.655467pt;}
.y15d{bottom:624.125467pt;}
.yee{bottom:624.403867pt;}
.y136{bottom:625.436800pt;}
.y1cf{bottom:625.868400pt;}
.y1b1{bottom:626.007867pt;}
.yb{bottom:626.797867pt;}
.yb3{bottom:628.636933pt;}
.y187{bottom:632.125467pt;}
.y37{bottom:633.643067pt;}
.yed{bottom:635.603867pt;}
.y11e{bottom:636.092400pt;}
.y61{bottom:637.071200pt;}
.y4b{bottom:640.991467pt;}
.y135{bottom:642.899467pt;}
.y1e8{bottom:643.196400pt;}
.y1b0{bottom:643.335867pt;}
.yc9{bottom:645.458800pt;}
.ya{bottom:645.464533pt;}
.yec{bottom:646.803867pt;}
.y16c{bottom:647.993733pt;}
.yb2{bottom:649.976933pt;}
.y134{bottom:654.099467pt;}
.y186{bottom:654.792133pt;}
.y36{bottom:654.983067pt;}
.y11d{bottom:657.432400pt;}
.yeb{bottom:658.003867pt;}
.y60{bottom:658.411200pt;}
.y1e7{bottom:660.524400pt;}
.y1af{bottom:660.663867pt;}
.y1ce{bottom:662.096400pt;}
.y4a{bottom:662.327467pt;}
.yef{bottom:663.603867pt;}
.y9{bottom:664.131200pt;}
.yea{bottom:669.203867pt;}
.y16b{bottom:670.660400pt;}
.yb1{bottom:671.316933pt;}
.y133{bottom:671.894400pt;}
.y35{bottom:676.323067pt;}
.y185{bottom:677.458800pt;}
.y12b{bottom:678.772400pt;}
.y1cd{bottom:679.424400pt;}
.y5f{bottom:679.751200pt;}
.ye9{bottom:680.403867pt;}
.y49{bottom:683.663467pt;}
.ye8{bottom:691.603867pt;}
.y16a{bottom:693.327067pt;}
.y1cc{bottom:696.752400pt;}
.y1ae{bottom:696.891867pt;}
.y34{bottom:697.663067pt;}
.y1a9{bottom:700.112400pt;}
.y5e{bottom:701.091200pt;}
.y132{bottom:702.792133pt;}
.ye7{bottom:702.803867pt;}
.yb0{bottom:711.546533pt;}
.y8{bottom:713.034133pt;}
.y1e6{bottom:714.080400pt;}
.y1ad{bottom:714.219867pt;}
.y169{bottom:715.993733pt;}
.y33{bottom:719.003067pt;}
.ye6{bottom:720.266533pt;}
.y1a8{bottom:721.452400pt;}
.ye5{bottom:725.866533pt;}
.yaf{bottom:730.214533pt;}
.y1ac{bottom:731.547867pt;}
.y1cb{bottom:732.980400pt;}
.y7{bottom:734.367467pt;}
.y168{bottom:738.660400pt;}
.y32{bottom:740.343067pt;}
.ye4{bottom:749.261467pt;}
.y1ca{bottom:750.308400pt;}
.y6{bottom:755.700800pt;}
.y167{bottom:761.327067pt;}
.y31{bottom:761.683067pt;}
.y1c9{bottom:767.636400pt;}
.y5{bottom:777.034133pt;}
.y5d{bottom:779.117467pt;}
.ye3{bottom:780.159067pt;}
.y30{bottom:783.023067pt;}
.y166{bottom:783.993733pt;}
.y1c8{bottom:784.964400pt;}
.y4{bottom:825.056667pt;}
.y2e{bottom:853.293467pt;}
.y2d{bottom:862.165467pt;}
.y1{bottom:863.016000pt;}
.he{height:8.820000pt;}
.h4{height:24.000000pt;}
.h3{height:25.613429pt;}
.h2{height:26.234375pt;}
.h12{height:27.179688pt;}
.h10{height:27.197917pt;}
.hd{height:28.000000pt;}
.h5{height:30.606771pt;}
.h9{height:36.000000pt;}
.h17{height:36.328125pt;}
.h8{height:39.351562pt;}
.h14{height:40.364583pt;}
.h16{height:44.390625pt;}
.hb{height:44.401042pt;}
.h15{height:49.322917pt;}
.h11{height:49.579687pt;}
.h13{height:49.597917pt;}
.hc{height:54.255208pt;}
.hf{height:54.843750pt;}
.ha{height:58.989583pt;}
.h6{height:67.416667pt;}
.h7{height:67.719917pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:22.466667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x11{left:-191.544933pt;}
.x0{left:0.000000pt;}
.x13{left:24.742133pt;}
.x12{left:75.968533pt;}
.x14{left:79.146533pt;}
.x44{left:81.618000pt;}
.x15{left:82.786533pt;}
.x42{left:84.184667pt;}
.x3f{left:86.032667pt;}
.x3e{left:87.050000pt;}
.x41{left:89.150000pt;}
.x3b{left:90.428667pt;}
.x39{left:91.978000pt;}
.x2{left:93.532800pt;}
.xe{left:94.488267pt;}
.x19{left:98.144133pt;}
.x21{left:100.241067pt;}
.x27{left:101.949067pt;}
.x2e{left:103.507733pt;}
.x17{left:105.218800pt;}
.x2c{left:106.606400pt;}
.x22{left:108.603733pt;}
.x18{left:110.426800pt;}
.x2d{left:112.337067pt;}
.x1b{left:113.385867pt;}
.x23{left:114.409067pt;}
.x30{left:115.958400pt;}
.x35{left:118.039733pt;}
.x6{left:120.659733pt;}
.x32{left:122.445067pt;}
.x47{left:124.724400pt;}
.x7{left:127.017067pt;}
.x3c{left:130.646000pt;}
.x1e{left:136.677467pt;}
.x8{left:141.011733pt;}
.x3a{left:159.439333pt;}
.x2a{left:169.130400pt;}
.x24{left:180.937067pt;}
.x28{left:182.617067pt;}
.x1c{left:192.182933pt;}
.x25{left:194.815733pt;}
.x1a{left:197.488133pt;}
.x1f{left:207.275733pt;}
.x43{left:231.296667pt;}
.x46{left:238.104533pt;}
.x9{left:258.495067pt;}
.x38{left:265.074533pt;}
.x16{left:270.909200pt;}
.x1d{left:272.343467pt;}
.xa{left:276.038267pt;}
.xb{left:280.992533pt;}
.x37{left:289.467467pt;}
.x5{left:291.199333pt;}
.xf{left:296.601067pt;}
.x1{left:299.295867pt;}
.x40{left:424.366000pt;}
.x2b{left:425.778400pt;}
.x34{left:430.183733pt;}
.x26{left:431.742400pt;}
.x2f{left:438.219733pt;}
.x33{left:440.039733pt;}
.x45{left:443.060667pt;}
.x29{left:444.454400pt;}
.x10{left:447.873333pt;}
.x31{left:453.358400pt;}
.x3d{left:454.466000pt;}
.xd{left:456.188133pt;}
.xc{left:458.108133pt;}
.x20{left:467.274400pt;}
.x36{left:472.734400pt;}
.x4{left:516.891333pt;}
.x3{left:522.443333pt;}
}




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