
    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_5b672f245d4fcd22ebbf6fc9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58968085ed4d245fb8383c6b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_e163376ec6c0ba6404d81038.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_a0a64205ac215837fb18a619.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_143e5ef2b688f16691c14e5e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_6dea78b8fb22dfa320ae4f58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_7177c9bab60166bacfdd18d6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_1f5f4aef9fcf8e54af35e501.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_529f47de5d02c6f3e881380e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.051275;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_8e59b40de5d47b931dca00ce.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_7de3780af0739ce4b324362a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_941f3f5cd770a400602b2520.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_78ff03690a03ed0eaadb7fcc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_408bb81f7d42dee566e4bd33.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_298aa4fe21948bfdc03c6c82.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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_43925ab903391d8d3c7965d3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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_58968085ed4d245fb8383c6b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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_c1c567d7b7e7a9d00fb5fdaf.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3e15dc925a749fd667b2c385.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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:ff14;src:url('chunks/assets/font_df49966bbccd1160ce4a94c7.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0fb564a83782ae46a805d0b3.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980600px;}
.v1{vertical-align:22.050000px;}
.ls16{letter-spacing:-6.000000px;}
.ls6{letter-spacing:-3.455052px;}
.ls7{letter-spacing:-2.706000px;}
.ls14{letter-spacing:-2.688000px;}
.ls10{letter-spacing:-2.310000px;}
.lse{letter-spacing:-0.990000px;}
.lsd{letter-spacing:-0.726000px;}
.lsf{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.500214px;}
.ls11{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.038478px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000036px;}
.ls0{letter-spacing:0.428985px;}
.lsb{letter-spacing:0.538914px;}
.ls5{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.924000px;}
.ls15{letter-spacing:0.950400px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls8{letter-spacing:6.930000px;}
.ls9{letter-spacing:6.963000px;}
.ls4{letter-spacing:9.590400px;}
.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:-28.440000px;}
.ws2b{word-spacing:-19.140000px;}
.ws37{word-spacing:-18.414000px;}
.ws2a{word-spacing:-18.216000px;}
.ws2{word-spacing:-16.740000px;}
.ws5a{word-spacing:-16.560000px;}
.ws43{word-spacing:-16.212000px;}
.ws13{word-spacing:-15.708000px;}
.ws0{word-spacing:-15.066000px;}
.ws11{word-spacing:-14.100000px;}
.ws3{word-spacing:-13.284000px;}
.ws14{word-spacing:-10.735362px;}
.ws3d{word-spacing:-10.696884px;}
.ws3c{word-spacing:-10.235148px;}
.ws3b{word-spacing:-9.759420px;}
.ws12{word-spacing:-9.686400px;}
.ws34{word-spacing:-5.478000px;}
.ws53{word-spacing:-5.346000px;}
.ws4b{word-spacing:-4.950000px;}
.ws41{word-spacing:-3.432000px;}
.ws2d{word-spacing:-3.168000px;}
.ws55{word-spacing:-2.904000px;}
.ws66{word-spacing:-2.520000px;}
.ws22{word-spacing:-2.376000px;}
.ws4f{word-spacing:-2.310000px;}
.ws5c{word-spacing:-2.220000px;}
.wsd{word-spacing:-1.782000px;}
.ws4d{word-spacing:-1.584000px;}
.ws7{word-spacing:-1.200000px;}
.ws26{word-spacing:-1.188000px;}
.ws65{word-spacing:-1.140000px;}
.ws1c{word-spacing:-1.122000px;}
.ws32{word-spacing:-0.924000px;}
.ws6b{word-spacing:-0.780000px;}
.wsc{word-spacing:-0.756000px;}
.ws1f{word-spacing:-0.660000px;}
.ws4a{word-spacing:-0.594000px;}
.ws28{word-spacing:-0.528000px;}
.wse{word-spacing:-0.486000px;}
.ws23{word-spacing:-0.396000px;}
.ws5b{word-spacing:-0.300000px;}
.ws64{word-spacing:-0.240000px;}
.ws24{word-spacing:-0.132000px;}
.ws5f{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws42{word-spacing:0.066000px;}
.ws6a{word-spacing:0.420000px;}
.ws45{word-spacing:0.462000px;}
.wsa{word-spacing:0.540000px;}
.ws40{word-spacing:0.660000px;}
.ws38{word-spacing:0.726000px;}
.ws6c{word-spacing:0.780000px;}
.ws60{word-spacing:0.960000px;}
.ws3e{word-spacing:0.990000px;}
.ws61{word-spacing:1.020000px;}
.ws51{word-spacing:1.320000px;}
.ws58{word-spacing:1.452000px;}
.ws59{word-spacing:1.518000px;}
.ws49{word-spacing:1.728000px;}
.ws25{word-spacing:2.244000px;}
.ws35{word-spacing:2.310000px;}
.ws68{word-spacing:2.460000px;}
.wsb{word-spacing:2.484000px;}
.ws19{word-spacing:2.508000px;}
.ws62{word-spacing:2.700000px;}
.ws46{word-spacing:2.706000px;}
.ws3f{word-spacing:2.904000px;}
.ws1a{word-spacing:2.970000px;}
.ws2f{word-spacing:3.036000px;}
.ws9{word-spacing:3.078000px;}
.ws17{word-spacing:3.102000px;}
.ws8{word-spacing:3.132000px;}
.ws15{word-spacing:3.455052px;}
.ws18{word-spacing:3.564000px;}
.ws33{word-spacing:3.630000px;}
.ws5d{word-spacing:3.660000px;}
.ws44{word-spacing:3.696000px;}
.ws5e{word-spacing:4.260000px;}
.ws52{word-spacing:4.290000px;}
.ws57{word-spacing:4.620000px;}
.ws56{word-spacing:4.686000px;}
.ws63{word-spacing:4.980000px;}
.wsf{word-spacing:5.238000px;}
.ws10{word-spacing:5.292000px;}
.ws1d{word-spacing:5.610000px;}
.ws67{word-spacing:6.000000px;}
.ws1b{word-spacing:6.072000px;}
.ws29{word-spacing:6.204000px;}
.ws69{word-spacing:6.240000px;}
.ws27{word-spacing:6.402000px;}
.ws4c{word-spacing:6.798000px;}
.ws21{word-spacing:6.930000px;}
.ws20{word-spacing:6.996000px;}
.ws47{word-spacing:7.260000px;}
.ws48{word-spacing:7.392000px;}
.ws2e{word-spacing:8.250000px;}
.ws2c{word-spacing:8.316000px;}
.ws4e{word-spacing:8.580000px;}
.ws50{word-spacing:8.910000px;}
.ws31{word-spacing:9.174000px;}
.ws30{word-spacing:9.306000px;}
.ws1e{word-spacing:9.438000px;}
.ws54{word-spacing:9.636000px;}
.ws39{word-spacing:10.824000px;}
.ws3a{word-spacing:10.890000px;}
.ws36{word-spacing:14.982000px;}
.ws6{word-spacing:19.332000px;}
.ws5{word-spacing:19.548000px;}
.ws16{word-spacing:33.000000px;}
._9{margin-left:-14.832247px;}
._11{margin-left:-9.590400px;}
._19{margin-left:-8.565705px;}
._14{margin-left:-7.488000px;}
._a{margin-left:-6.485400px;}
._6{margin-left:-5.415953px;}
._5{margin-left:-4.348553px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._10{width:2.727990px;}
._c{width:3.779505px;}
._d{width:5.463816px;}
._e{width:6.521661px;}
._f{width:8.022325px;}
._3{width:9.472095px;}
._4{width:10.472467px;}
._12{width:12.152333px;}
._13{width:13.153582px;}
._b{width:14.742000px;}
._17{width:16.684800px;}
._7{width:18.787590px;}
._8{width:19.844258px;}
._18{width:21.509295px;}
._16{width:23.152800px;}
._15{width:33.000000px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs8{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y2d{bottom:17.983350px;}
.y2c{bottom:26.200200px;}
.y2e{bottom:30.614100px;}
.y2{bottom:42.949800px;}
.y2b{bottom:47.200200px;}
.ya{bottom:53.999400px;}
.y2f{bottom:55.288350px;}
.y2a{bottom:68.200200px;}
.y9{bottom:70.199400px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.yea{bottom:170.078700px;}
.y54{bottom:170.081700px;}
.ya5{bottom:170.084850px;}
.y12a{bottom:170.090700px;}
.y86{bottom:173.432400px;}
.yc8{bottom:180.954900px;}
.y1c1{bottom:181.095900px;}
.y19f{bottom:182.589900px;}
.y53{bottom:186.578700px;}
.ya4{bottom:186.581850px;}
.y129{bottom:186.587700px;}
.y85{bottom:195.938400px;}
.y1e2{bottom:198.034950px;}
.ya3{bottom:203.078850px;}
.y128{bottom:203.084700px;}
.yc7{bottom:203.460900px;}
.y1c0{bottom:203.601900px;}
.y19e{bottom:205.095900px;}
.y84{bottom:218.444400px;}
.y1e1{bottom:219.034950px;}
.y127{bottom:219.581700px;}
.yc6{bottom:225.966900px;}
.y1bf{bottom:226.107900px;}
.y19d{bottom:227.601900px;}
.y126{bottom:236.078700px;}
.y83{bottom:240.950400px;}
.ye9{bottom:240.957900px;}
.y171{bottom:241.013400px;}
.y190{bottom:248.465400px;}
.yc5{bottom:248.472900px;}
.y1ba{bottom:248.507400px;}
.y75{bottom:248.606400px;}
.y19c{bottom:250.107900px;}
.y1e0{bottom:250.534950px;}
.y82{bottom:263.456400px;}
.ye8{bottom:263.463900px;}
.y170{bottom:263.519400px;}
.y141{bottom:263.564400px;}
.y52{bottom:263.999400px;}
.y18f{bottom:270.971400px;}
.yc4{bottom:270.978900px;}
.y1b9{bottom:271.013400px;}
.ya2{bottom:271.088550px;}
.y1be{bottom:271.107900px;}
.y74{bottom:271.112400px;}
.y1df{bottom:271.534950px;}
.y1c3{bottom:285.962400px;}
.y140{bottom:286.070400px;}
.y51{bottom:286.505400px;}
.y18e{bottom:293.477400px;}
.yc3{bottom:293.484900px;}
.y1b8{bottom:293.519400px;}
.ya1{bottom:293.594550px;}
.y103{bottom:293.595900px;}
.y19b{bottom:295.107900px;}
.y27{bottom:295.415400px;}
.y1de{bottom:303.034950px;}
.y81{bottom:308.451900px;}
.ye7{bottom:308.459400px;}
.y1c2{bottom:308.468400px;}
.y16f{bottom:308.514900px;}
.y13f{bottom:308.576400px;}
.y50{bottom:309.011400px;}
.y125{bottom:314.498400px;}
.y18d{bottom:315.983400px;}
.yc2{bottom:315.990900px;}
.y1b7{bottom:316.025400px;}
.y15a{bottom:316.052400px;}
.y73{bottom:316.083900px;}
.ya0{bottom:316.100550px;}
.y102{bottom:316.101900px;}
.y19a{bottom:316.107900px;}
.y26{bottom:316.421400px;}
.y80{bottom:330.957900px;}
.ye6{bottom:330.965400px;}
.y16e{bottom:331.020900px;}
.y13e{bottom:331.082400px;}
.y4f{bottom:331.517400px;}
.y25{bottom:332.918400px;}
.y1dd{bottom:334.534950px;}
.y124{bottom:337.004400px;}
.y199{bottom:337.107900px;}
.y18c{bottom:338.489400px;}
.yc1{bottom:338.496900px;}
.y1b6{bottom:338.531400px;}
.y159{bottom:338.558400px;}
.y101{bottom:338.582400px;}
.y72{bottom:338.589900px;}
.y9f{bottom:338.606550px;}
.y24{bottom:349.415400px;}
.y7f{bottom:353.463900px;}
.ye5{bottom:353.471400px;}
.y16d{bottom:353.526900px;}
.y13d{bottom:353.588400px;}
.y4e{bottom:354.023400px;}
.y1dc{bottom:355.534950px;}
.y198{bottom:358.107900px;}
.y123{bottom:359.472900px;}
.y18b{bottom:360.995400px;}
.y1b5{bottom:361.037400px;}
.y158{bottom:361.064400px;}
.y100{bottom:361.088400px;}
.y71{bottom:361.095900px;}
.y23{bottom:365.912400px;}
.y7e{bottom:375.969900px;}
.ye4{bottom:375.977400px;}
.y16c{bottom:376.032900px;}
.y13c{bottom:376.094400px;}
.y4d{bottom:376.529400px;}
.y197{bottom:379.107900px;}
.y122{bottom:381.978900px;}
.y22{bottom:382.409400px;}
.yc0{bottom:383.492400px;}
.y18a{bottom:383.501400px;}
.yff{bottom:383.594400px;}
.y70{bottom:383.601900px;}
.y9e{bottom:383.602050px;}
.y1db{bottom:387.034950px;}
.y7d{bottom:398.475900px;}
.ye3{bottom:398.483400px;}
.y16b{bottom:398.538900px;}
.y13b{bottom:398.600400px;}
.y21{bottom:398.906400px;}
.y4c{bottom:399.035400px;}
.y196{bottom:400.107900px;}
.y121{bottom:404.484900px;}
.ybf{bottom:405.998400px;}
.y189{bottom:406.007400px;}
.y1b4{bottom:406.032900px;}
.y157{bottom:406.059900px;}
.y9d{bottom:406.088550px;}
.yfe{bottom:406.100400px;}
.y6f{bottom:406.107900px;}
.y1da{bottom:408.034950px;}
.y20{bottom:415.403400px;}
.y1fc{bottom:418.010400px;}
.y7c{bottom:420.981900px;}
.ye2{bottom:420.989400px;}
.y16a{bottom:421.044900px;}
.y13a{bottom:421.106400px;}
.y120{bottom:426.990900px;}
.ybe{bottom:428.504400px;}
.y188{bottom:428.513400px;}
.y1b3{bottom:428.538900px;}
.y156{bottom:428.565900px;}
.y9c{bottom:428.594550px;}
.yfd{bottom:428.606400px;}
.y1f{bottom:431.900400px;}
.y1fb{bottom:439.010400px;}
.y1d9{bottom:439.534950px;}
.y195{bottom:443.471400px;}
.y7b{bottom:443.487900px;}
.ye1{bottom:443.495400px;}
.y169{bottom:443.550900px;}
.y139{bottom:443.612400px;}
.y4b{bottom:444.035400px;}
.y1e{bottom:448.397400px;}
.y11f{bottom:449.496900px;}
.ybd{bottom:451.010400px;}
.y1b2{bottom:451.044900px;}
.y155{bottom:451.071900px;}
.y9b{bottom:451.100550px;}
.y6e{bottom:451.107900px;}
.yfc{bottom:451.112400px;}
.y1d8{bottom:460.534950px;}
.y194{bottom:465.977400px;}
.y1bd{bottom:465.993900px;}
.ye0{bottom:466.001400px;}
.y168{bottom:466.056900px;}
.y1fa{bottom:470.510400px;}
.y11e{bottom:472.002900px;}
.y187{bottom:473.508900px;}
.ybc{bottom:473.516400px;}
.y1b1{bottom:473.550900px;}
.y154{bottom:473.577900px;}
.y9a{bottom:473.606550px;}
.y1d{bottom:482.147400px;}
.y7a{bottom:488.483400px;}
.y1bc{bottom:488.499900px;}
.ydf{bottom:488.507400px;}
.y138{bottom:488.534400px;}
.y167{bottom:488.562900px;}
.y1f9{bottom:491.510400px;}
.y1d7{bottom:492.034950px;}
.y11d{bottom:494.508900px;}
.y186{bottom:496.014900px;}
.ybb{bottom:496.022400px;}
.yfb{bottom:496.034400px;}
.y1b0{bottom:496.056900px;}
.y153{bottom:496.083900px;}
.y99{bottom:496.112550px;}
.y1c{bottom:503.153400px;}
.y79{bottom:510.989400px;}
.yde{bottom:511.013400px;}
.y137{bottom:511.040400px;}
.y166{bottom:511.068900px;}
.y1d6{bottom:513.034950px;}
.y11c{bottom:517.014900px;}
.y185{bottom:518.520900px;}
.yba{bottom:518.528400px;}
.yfa{bottom:518.540400px;}
.y1af{bottom:518.562900px;}
.y152{bottom:518.589900px;}
.y1b{bottom:520.406400px;}
.y1f8{bottom:523.010400px;}
.y4a{bottom:526.436400px;}
.y6d{bottom:533.495400px;}
.ydd{bottom:533.519400px;}
.y136{bottom:533.546400px;}
.y165{bottom:533.574900px;}
.y1a{bottom:537.659400px;}
.y184{bottom:541.026900px;}
.yb9{bottom:541.034400px;}
.yf9{bottom:541.046400px;}
.y98{bottom:541.064550px;}
.y1ae{bottom:541.068900px;}
.y151{bottom:541.095900px;}
.y1f7{bottom:544.010400px;}
.y1d5{bottom:544.534950px;}
.y49{bottom:548.942400px;}
.y19{bottom:554.912400px;}
.y6c{bottom:556.001400px;}
.y135{bottom:556.052400px;}
.y11b{bottom:561.917400px;}
.y183{bottom:563.532900px;}
.yb8{bottom:563.540400px;}
.yf8{bottom:563.552400px;}
.y97{bottom:563.570550px;}
.y150{bottom:563.601900px;}
.y48{bottom:571.448400px;}
.y18{bottom:572.165400px;}
.y1f6{bottom:575.510400px;}
.y1d4{bottom:576.034950px;}
.y6b{bottom:578.507400px;}
.ydc{bottom:578.514900px;}
.y134{bottom:578.558400px;}
.y164{bottom:578.570400px;}
.y11a{bottom:584.423400px;}
.y182{bottom:586.038900px;}
.yf7{bottom:586.058400px;}
.y1ad{bottom:586.064400px;}
.y96{bottom:586.076550px;}
.y14f{bottom:586.107900px;}
.y17{bottom:589.418400px;}
.y47{bottom:593.954400px;}
.y1f5{bottom:596.510400px;}
.y1d3{bottom:597.034950px;}
.y6a{bottom:601.013400px;}
.ydb{bottom:601.020900px;}
.y133{bottom:601.064400px;}
.y163{bottom:601.076400px;}
.y16{bottom:606.671400px;}
.y119{bottom:606.929400px;}
.yb7{bottom:608.535900px;}
.y181{bottom:608.544900px;}
.yf6{bottom:608.564400px;}
.y1ac{bottom:608.570400px;}
.y95{bottom:608.582550px;}
.y46{bottom:616.460400px;}
.y193{bottom:623.502900px;}
.y69{bottom:623.519400px;}
.yda{bottom:623.526900px;}
.y132{bottom:623.570400px;}
.y162{bottom:623.582400px;}
.y15{bottom:623.924400px;}
.y1f4{bottom:628.010400px;}
.y1d2{bottom:628.534950px;}
.y118{bottom:629.435400px;}
.yb6{bottom:631.041900px;}
.y180{bottom:631.050900px;}
.yf5{bottom:631.070400px;}
.y1ab{bottom:631.076400px;}
.y94{bottom:631.088550px;}
.y14e{bottom:631.107900px;}
.y45{bottom:638.966400px;}
.y14{bottom:641.177400px;}
.y192{bottom:646.008900px;}
.y68{bottom:646.025400px;}
.yd9{bottom:646.032900px;}
.y131{bottom:646.076400px;}
.y161{bottom:646.088400px;}
.y1f3{bottom:649.010400px;}
.y1d1{bottom:649.534950px;}
.y117{bottom:651.941400px;}
.yb5{bottom:653.547900px;}
.yf4{bottom:653.576400px;}
.y1aa{bottom:653.582400px;}
.y44{bottom:661.472400px;}
.y191{bottom:668.514900px;}
.y1bb{bottom:668.531400px;}
.yd8{bottom:668.538900px;}
.y130{bottom:668.582400px;}
.y160{bottom:668.594400px;}
.y1f2{bottom:670.010400px;}
.y1d0{bottom:670.534950px;}
.y17f{bottom:676.046400px;}
.yb4{bottom:676.053900px;}
.y93{bottom:676.084050px;}
.y1a9{bottom:676.088400px;}
.y43{bottom:683.978400px;}
.y67{bottom:691.020900px;}
.yd7{bottom:691.044900px;}
.y12f{bottom:691.088400px;}
.y15f{bottom:691.100400px;}
.y13{bottom:695.430750px;}
.y116{bottom:696.936900px;}
.y17e{bottom:698.552400px;}
.yb3{bottom:698.559900px;}
.yf3{bottom:698.571900px;}
.y92{bottom:698.590050px;}
.y1a8{bottom:698.594400px;}
.y1f1{bottom:701.510400px;}
.y1cf{bottom:702.034950px;}
.y42{bottom:706.484400px;}
.y66{bottom:713.526900px;}
.yd6{bottom:713.550900px;}
.y12e{bottom:713.594400px;}
.y15e{bottom:713.606400px;}
.y12{bottom:716.430750px;}
.y115{bottom:719.442900px;}
.y17d{bottom:721.058400px;}
.yb2{bottom:721.065900px;}
.yf2{bottom:721.077900px;}
.y91{bottom:721.096050px;}
.y1a7{bottom:721.100400px;}
.y1ce{bottom:723.034950px;}
.y41{bottom:728.990400px;}
.y1f0{bottom:733.010400px;}
.y65{bottom:736.032900px;}
.y14d{bottom:736.056900px;}
.y12d{bottom:736.100400px;}
.y15d{bottom:736.112400px;}
.y11{bottom:737.430750px;}
.y29{bottom:741.738900px;}
.y114{bottom:741.948900px;}
.y17c{bottom:743.564400px;}
.yb1{bottom:743.571900px;}
.yf1{bottom:743.583900px;}
.y90{bottom:743.602050px;}
.y1a6{bottom:743.606400px;}
.y40{bottom:751.496400px;}
.y1ef{bottom:754.010400px;}
.y1cd{bottom:754.534950px;}
.y10{bottom:758.430750px;}
.y64{bottom:758.538900px;}
.yd5{bottom:758.546400px;}
.y14c{bottom:758.562900px;}
.y12c{bottom:758.606400px;}
.y28{bottom:761.232900px;}
.y113{bottom:764.454900px;}
.y17b{bottom:766.070400px;}
.y8f{bottom:766.076400px;}
.yb0{bottom:766.077900px;}
.yf0{bottom:766.089900px;}
.y1a5{bottom:766.112400px;}
.y1cc{bottom:775.534950px;}
.y15c{bottom:781.028400px;}
.y63{bottom:781.044900px;}
.yd4{bottom:781.052400px;}
.y14b{bottom:781.068900px;}
.y12b{bottom:781.112400px;}
.y1ee{bottom:785.510400px;}
.y112{bottom:786.960900px;}
.y17a{bottom:788.576400px;}
.yaf{bottom:788.583900px;}
.yef{bottom:788.595900px;}
.y3f{bottom:796.491900px;}
.y15b{bottom:803.534400px;}
.y78{bottom:803.550900px;}
.yd3{bottom:803.558400px;}
.y14a{bottom:803.574900px;}
.y1ed{bottom:806.510400px;}
.y1cb{bottom:807.034950px;}
.y111{bottom:809.466900px;}
.y8e{bottom:811.071900px;}
.y1a4{bottom:811.083900px;}
.yae{bottom:811.089900px;}
.yee{bottom:811.101900px;}
.y3e{bottom:818.997900px;}
.y62{bottom:826.040400px;}
.y77{bottom:826.056900px;}
.yd2{bottom:826.064400px;}
.y149{bottom:826.080900px;}
.y110{bottom:831.972900px;}
.y179{bottom:833.571900px;}
.y8d{bottom:833.577900px;}
.y1a3{bottom:833.589900px;}
.yad{bottom:833.595900px;}
.yed{bottom:833.607900px;}
.y1ec{bottom:838.010400px;}
.y1ca{bottom:838.534950px;}
.y3d{bottom:841.503900px;}
.y61{bottom:848.546400px;}
.y76{bottom:848.562900px;}
.yd1{bottom:848.570400px;}
.y10f{bottom:854.478900px;}
.y178{bottom:856.077900px;}
.y8c{bottom:856.083900px;}
.y1a2{bottom:856.095900px;}
.yac{bottom:856.101900px;}
.yf{bottom:859.855650px;}
.y3c{bottom:864.009900px;}
.y1eb{bottom:869.510400px;}
.y1c9{bottom:870.034950px;}
.y60{bottom:871.052400px;}
.y148{bottom:871.076400px;}
.y10e{bottom:876.984900px;}
.y177{bottom:878.583900px;}
.y8b{bottom:878.589900px;}
.y1a1{bottom:878.601900px;}
.yab{bottom:878.607900px;}
.y3b{bottom:886.515900px;}
.ye{bottom:886.855650px;}
.y1ea{bottom:890.510400px;}
.y5f{bottom:893.558400px;}
.yd0{bottom:893.565900px;}
.y147{bottom:893.582400px;}
.y10d{bottom:899.490900px;}
.y176{bottom:901.089900px;}
.y8a{bottom:901.095900px;}
.y1a0{bottom:901.107900px;}
.y1c8{bottom:901.534950px;}
.y5e{bottom:916.064400px;}
.ycf{bottom:916.071900px;}
.y146{bottom:916.088400px;}
.y10c{bottom:921.996900px;}
.y1e9{bottom:922.010400px;}
.y1c7{bottom:922.534950px;}
.y175{bottom:923.595900px;}
.y89{bottom:923.601900px;}
.yaa{bottom:923.607900px;}
.yd{bottom:926.611500px;}
.y3a{bottom:931.511400px;}
.y5d{bottom:938.570400px;}
.yce{bottom:938.577900px;}
.y145{bottom:938.594400px;}
.y1e8{bottom:943.010400px;}
.ya9{bottom:944.607900px;}
.y174{bottom:946.101900px;}
.y88{bottom:946.107900px;}
.y39{bottom:954.017400px;}
.yec{bottom:961.059900px;}
.y5c{bottom:961.076400px;}
.ycd{bottom:961.083900px;}
.y144{bottom:961.100400px;}
.yc{bottom:961.111500px;}
.ya8{bottom:965.607900px;}
.y1c6{bottom:966.034950px;}
.y10b{bottom:966.992400px;}
.y173{bottom:968.607900px;}
.y1e7{bottom:974.510400px;}
.y38{bottom:976.523400px;}
.yeb{bottom:983.565900px;}
.ycc{bottom:983.589900px;}
.y143{bottom:983.606400px;}
.ya7{bottom:986.607900px;}
.y10a{bottom:989.498400px;}
.y87{bottom:991.107900px;}
.yb{bottom:995.611500px;}
.y37{bottom:999.029400px;}
.y1e6{bottom:1006.010400px;}
.y5b{bottom:1006.071900px;}
.ycb{bottom:1006.095900px;}
.y142{bottom:1006.112400px;}
.ya6{bottom:1007.607900px;}
.y109{bottom:1012.004400px;}
.y172{bottom:1013.607900px;}
.y36{bottom:1021.517400px;}
.y5a{bottom:1028.577900px;}
.yca{bottom:1028.601900px;}
.y108{bottom:1034.510400px;}
.y1e5{bottom:1037.510400px;}
.y35{bottom:1044.023400px;}
.y59{bottom:1051.083900px;}
.yc9{bottom:1051.100400px;}
.y1e4{bottom:1058.510400px;}
.y1c5{bottom:1059.035400px;}
.y34{bottom:1066.529400px;}
.y58{bottom:1073.589900px;}
.y107{bottom:1079.510400px;}
.y33{bottom:1089.035400px;}
.y1e3{bottom:1090.010400px;}
.y1c4{bottom:1090.535400px;}
.y57{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y106{bottom:1100.510400px;}
.y56{bottom:1118.601900px;}
.y105{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y32{bottom:1134.035400px;}
.y55{bottom:1141.107900px;}
.y104{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y30{bottom:1185.328350px;}
.y31{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h5{height:69.300000px;}
.h12{height:69.330000px;}
.h17{height:69.348000px;}
.hd{height:69.372000px;}
.h11{height:69.378000px;}
.he{height:69.396000px;}
.h14{height:69.402000px;}
.hf{height:69.426600px;}
.h16{height:69.450000px;}
.h10{height:69.474000px;}
.h18{height:69.570000px;}
.h13{height:69.594000px;}
.h19{height:69.618000px;}
.h15{height:69.672000px;}
.ha{height:72.000000px;}
.h8{height:72.114787px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259800px;}
.xc{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x10{left:136.062900px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.xd{left:815.527500px;}
.xe{left:824.553000px;}
.x11{left:826.019400px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760533pt;}
.v1{vertical-align:19.600000pt;}
.ls16{letter-spacing:-5.333333pt;}
.ls6{letter-spacing:-3.071157pt;}
.ls7{letter-spacing:-2.405333pt;}
.ls14{letter-spacing:-2.389333pt;}
.ls10{letter-spacing:-2.053333pt;}
.lse{letter-spacing:-0.880000pt;}
.lsd{letter-spacing:-0.645333pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.444635pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.034203pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000032pt;}
.ls0{letter-spacing:0.381320pt;}
.lsb{letter-spacing:0.479035pt;}
.ls5{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.821333pt;}
.ls15{letter-spacing:0.844800pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls8{letter-spacing:6.160000pt;}
.ls9{letter-spacing:6.189333pt;}
.ls4{letter-spacing:8.524800pt;}
.ws1{word-spacing:-25.280000pt;}
.ws2b{word-spacing:-17.013333pt;}
.ws37{word-spacing:-16.368000pt;}
.ws2a{word-spacing:-16.192000pt;}
.ws2{word-spacing:-14.880000pt;}
.ws5a{word-spacing:-14.720000pt;}
.ws43{word-spacing:-14.410667pt;}
.ws13{word-spacing:-13.962667pt;}
.ws0{word-spacing:-13.392000pt;}
.ws11{word-spacing:-12.533333pt;}
.ws3{word-spacing:-11.808000pt;}
.ws14{word-spacing:-9.542544pt;}
.ws3d{word-spacing:-9.508341pt;}
.ws3c{word-spacing:-9.097909pt;}
.ws3b{word-spacing:-8.675040pt;}
.ws12{word-spacing:-8.610133pt;}
.ws34{word-spacing:-4.869333pt;}
.ws53{word-spacing:-4.752000pt;}
.ws4b{word-spacing:-4.400000pt;}
.ws41{word-spacing:-3.050667pt;}
.ws2d{word-spacing:-2.816000pt;}
.ws55{word-spacing:-2.581333pt;}
.ws66{word-spacing:-2.240000pt;}
.ws22{word-spacing:-2.112000pt;}
.ws4f{word-spacing:-2.053333pt;}
.ws5c{word-spacing:-1.973333pt;}
.wsd{word-spacing:-1.584000pt;}
.ws4d{word-spacing:-1.408000pt;}
.ws7{word-spacing:-1.066667pt;}
.ws26{word-spacing:-1.056000pt;}
.ws65{word-spacing:-1.013333pt;}
.ws1c{word-spacing:-0.997333pt;}
.ws32{word-spacing:-0.821333pt;}
.ws6b{word-spacing:-0.693333pt;}
.wsc{word-spacing:-0.672000pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws4a{word-spacing:-0.528000pt;}
.ws28{word-spacing:-0.469333pt;}
.wse{word-spacing:-0.432000pt;}
.ws23{word-spacing:-0.352000pt;}
.ws5b{word-spacing:-0.266667pt;}
.ws64{word-spacing:-0.213333pt;}
.ws24{word-spacing:-0.117333pt;}
.ws5f{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws42{word-spacing:0.058667pt;}
.ws6a{word-spacing:0.373333pt;}
.ws45{word-spacing:0.410667pt;}
.wsa{word-spacing:0.480000pt;}
.ws40{word-spacing:0.586667pt;}
.ws38{word-spacing:0.645333pt;}
.ws6c{word-spacing:0.693333pt;}
.ws60{word-spacing:0.853333pt;}
.ws3e{word-spacing:0.880000pt;}
.ws61{word-spacing:0.906667pt;}
.ws51{word-spacing:1.173333pt;}
.ws58{word-spacing:1.290667pt;}
.ws59{word-spacing:1.349333pt;}
.ws49{word-spacing:1.536000pt;}
.ws25{word-spacing:1.994667pt;}
.ws35{word-spacing:2.053333pt;}
.ws68{word-spacing:2.186667pt;}
.wsb{word-spacing:2.208000pt;}
.ws19{word-spacing:2.229333pt;}
.ws62{word-spacing:2.400000pt;}
.ws46{word-spacing:2.405333pt;}
.ws3f{word-spacing:2.581333pt;}
.ws1a{word-spacing:2.640000pt;}
.ws2f{word-spacing:2.698667pt;}
.ws9{word-spacing:2.736000pt;}
.ws17{word-spacing:2.757333pt;}
.ws8{word-spacing:2.784000pt;}
.ws15{word-spacing:3.071157pt;}
.ws18{word-spacing:3.168000pt;}
.ws33{word-spacing:3.226667pt;}
.ws5d{word-spacing:3.253333pt;}
.ws44{word-spacing:3.285333pt;}
.ws5e{word-spacing:3.786667pt;}
.ws52{word-spacing:3.813333pt;}
.ws57{word-spacing:4.106667pt;}
.ws56{word-spacing:4.165333pt;}
.ws63{word-spacing:4.426667pt;}
.wsf{word-spacing:4.656000pt;}
.ws10{word-spacing:4.704000pt;}
.ws1d{word-spacing:4.986667pt;}
.ws67{word-spacing:5.333333pt;}
.ws1b{word-spacing:5.397333pt;}
.ws29{word-spacing:5.514667pt;}
.ws69{word-spacing:5.546667pt;}
.ws27{word-spacing:5.690667pt;}
.ws4c{word-spacing:6.042667pt;}
.ws21{word-spacing:6.160000pt;}
.ws20{word-spacing:6.218667pt;}
.ws47{word-spacing:6.453333pt;}
.ws48{word-spacing:6.570667pt;}
.ws2e{word-spacing:7.333333pt;}
.ws2c{word-spacing:7.392000pt;}
.ws4e{word-spacing:7.626667pt;}
.ws50{word-spacing:7.920000pt;}
.ws31{word-spacing:8.154667pt;}
.ws30{word-spacing:8.272000pt;}
.ws1e{word-spacing:8.389333pt;}
.ws54{word-spacing:8.565333pt;}
.ws39{word-spacing:9.621333pt;}
.ws3a{word-spacing:9.680000pt;}
.ws36{word-spacing:13.317333pt;}
.ws6{word-spacing:17.184000pt;}
.ws5{word-spacing:17.376000pt;}
.ws16{word-spacing:29.333333pt;}
._9{margin-left:-13.184220pt;}
._11{margin-left:-8.524800pt;}
._19{margin-left:-7.613960pt;}
._14{margin-left:-6.656000pt;}
._a{margin-left:-5.764800pt;}
._6{margin-left:-4.814180pt;}
._5{margin-left:-3.865380pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._10{width:2.424880pt;}
._c{width:3.359560pt;}
._d{width:4.856726pt;}
._e{width:5.797032pt;}
._f{width:7.130956pt;}
._3{width:8.419640pt;}
._4{width:9.308860pt;}
._12{width:10.802073pt;}
._13{width:11.692073pt;}
._b{width:13.104000pt;}
._17{width:14.830933pt;}
._7{width:16.700080pt;}
._8{width:17.639340pt;}
._18{width:19.119373pt;}
._16{width:20.580267pt;}
._15{width:29.333333pt;}
.fsb{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs8{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y2d{bottom:15.985200pt;}
.y2c{bottom:23.289067pt;}
.y2e{bottom:27.212533pt;}
.y2{bottom:38.177600pt;}
.y2b{bottom:41.955733pt;}
.ya{bottom:47.999467pt;}
.y2f{bottom:49.145200pt;}
.y2a{bottom:60.622400pt;}
.y9{bottom:62.399467pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.yea{bottom:151.181067pt;}
.y54{bottom:151.183733pt;}
.ya5{bottom:151.186533pt;}
.y12a{bottom:151.191733pt;}
.y86{bottom:154.162133pt;}
.yc8{bottom:160.848800pt;}
.y1c1{bottom:160.974133pt;}
.y19f{bottom:162.302133pt;}
.y53{bottom:165.847733pt;}
.ya4{bottom:165.850533pt;}
.y129{bottom:165.855733pt;}
.y85{bottom:174.167467pt;}
.y1e2{bottom:176.031067pt;}
.ya3{bottom:180.514533pt;}
.y128{bottom:180.519733pt;}
.yc7{bottom:180.854133pt;}
.y1c0{bottom:180.979467pt;}
.y19e{bottom:182.307467pt;}
.y84{bottom:194.172800pt;}
.y1e1{bottom:194.697733pt;}
.y127{bottom:195.183733pt;}
.yc6{bottom:200.859467pt;}
.y1bf{bottom:200.984800pt;}
.y19d{bottom:202.312800pt;}
.y126{bottom:209.847733pt;}
.y83{bottom:214.178133pt;}
.ye9{bottom:214.184800pt;}
.y171{bottom:214.234133pt;}
.y190{bottom:220.858133pt;}
.yc5{bottom:220.864800pt;}
.y1ba{bottom:220.895467pt;}
.y75{bottom:220.983467pt;}
.y19c{bottom:222.318133pt;}
.y1e0{bottom:222.697733pt;}
.y82{bottom:234.183467pt;}
.ye8{bottom:234.190133pt;}
.y170{bottom:234.239467pt;}
.y141{bottom:234.279467pt;}
.y52{bottom:234.666133pt;}
.y18f{bottom:240.863467pt;}
.yc4{bottom:240.870133pt;}
.y1b9{bottom:240.900800pt;}
.ya2{bottom:240.967600pt;}
.y1be{bottom:240.984800pt;}
.y74{bottom:240.988800pt;}
.y1df{bottom:241.364400pt;}
.y1c3{bottom:254.188800pt;}
.y140{bottom:254.284800pt;}
.y51{bottom:254.671467pt;}
.y18e{bottom:260.868800pt;}
.yc3{bottom:260.875467pt;}
.y1b8{bottom:260.906133pt;}
.ya1{bottom:260.972933pt;}
.y103{bottom:260.974133pt;}
.y19b{bottom:262.318133pt;}
.y27{bottom:262.591467pt;}
.y1de{bottom:269.364400pt;}
.y81{bottom:274.179467pt;}
.ye7{bottom:274.186133pt;}
.y1c2{bottom:274.194133pt;}
.y16f{bottom:274.235467pt;}
.y13f{bottom:274.290133pt;}
.y50{bottom:274.676800pt;}
.y125{bottom:279.554133pt;}
.y18d{bottom:280.874133pt;}
.yc2{bottom:280.880800pt;}
.y1b7{bottom:280.911467pt;}
.y15a{bottom:280.935467pt;}
.y73{bottom:280.963467pt;}
.ya0{bottom:280.978267pt;}
.y102{bottom:280.979467pt;}
.y19a{bottom:280.984800pt;}
.y26{bottom:281.263467pt;}
.y80{bottom:294.184800pt;}
.ye6{bottom:294.191467pt;}
.y16e{bottom:294.240800pt;}
.y13e{bottom:294.295467pt;}
.y4f{bottom:294.682133pt;}
.y25{bottom:295.927467pt;}
.y1dd{bottom:297.364400pt;}
.y124{bottom:299.559467pt;}
.y199{bottom:299.651467pt;}
.y18c{bottom:300.879467pt;}
.yc1{bottom:300.886133pt;}
.y1b6{bottom:300.916800pt;}
.y159{bottom:300.940800pt;}
.y101{bottom:300.962133pt;}
.y72{bottom:300.968800pt;}
.y9f{bottom:300.983600pt;}
.y24{bottom:310.591467pt;}
.y7f{bottom:314.190133pt;}
.ye5{bottom:314.196800pt;}
.y16d{bottom:314.246133pt;}
.y13d{bottom:314.300800pt;}
.y4e{bottom:314.687467pt;}
.y1dc{bottom:316.031067pt;}
.y198{bottom:318.318133pt;}
.y123{bottom:319.531467pt;}
.y18b{bottom:320.884800pt;}
.y1b5{bottom:320.922133pt;}
.y158{bottom:320.946133pt;}
.y100{bottom:320.967467pt;}
.y71{bottom:320.974133pt;}
.y23{bottom:325.255467pt;}
.y7e{bottom:334.195467pt;}
.ye4{bottom:334.202133pt;}
.y16c{bottom:334.251467pt;}
.y13c{bottom:334.306133pt;}
.y4d{bottom:334.692800pt;}
.y197{bottom:336.984800pt;}
.y122{bottom:339.536800pt;}
.y22{bottom:339.919467pt;}
.yc0{bottom:340.882133pt;}
.y18a{bottom:340.890133pt;}
.yff{bottom:340.972800pt;}
.y70{bottom:340.979467pt;}
.y9e{bottom:340.979600pt;}
.y1db{bottom:344.031067pt;}
.y7d{bottom:354.200800pt;}
.ye3{bottom:354.207467pt;}
.y16b{bottom:354.256800pt;}
.y13b{bottom:354.311467pt;}
.y21{bottom:354.583467pt;}
.y4c{bottom:354.698133pt;}
.y196{bottom:355.651467pt;}
.y121{bottom:359.542133pt;}
.ybf{bottom:360.887467pt;}
.y189{bottom:360.895467pt;}
.y1b4{bottom:360.918133pt;}
.y157{bottom:360.942133pt;}
.y9d{bottom:360.967600pt;}
.yfe{bottom:360.978133pt;}
.y6f{bottom:360.984800pt;}
.y1da{bottom:362.697733pt;}
.y20{bottom:369.247467pt;}
.y1fc{bottom:371.564800pt;}
.y7c{bottom:374.206133pt;}
.ye2{bottom:374.212800pt;}
.y16a{bottom:374.262133pt;}
.y13a{bottom:374.316800pt;}
.y120{bottom:379.547467pt;}
.ybe{bottom:380.892800pt;}
.y188{bottom:380.900800pt;}
.y1b3{bottom:380.923467pt;}
.y156{bottom:380.947467pt;}
.y9c{bottom:380.972933pt;}
.yfd{bottom:380.983467pt;}
.y1f{bottom:383.911467pt;}
.y1fb{bottom:390.231467pt;}
.y1d9{bottom:390.697733pt;}
.y195{bottom:394.196800pt;}
.y7b{bottom:394.211467pt;}
.ye1{bottom:394.218133pt;}
.y169{bottom:394.267467pt;}
.y139{bottom:394.322133pt;}
.y4b{bottom:394.698133pt;}
.y1e{bottom:398.575467pt;}
.y11f{bottom:399.552800pt;}
.ybd{bottom:400.898133pt;}
.y1b2{bottom:400.928800pt;}
.y155{bottom:400.952800pt;}
.y9b{bottom:400.978267pt;}
.y6e{bottom:400.984800pt;}
.yfc{bottom:400.988800pt;}
.y1d8{bottom:409.364400pt;}
.y194{bottom:414.202133pt;}
.y1bd{bottom:414.216800pt;}
.ye0{bottom:414.223467pt;}
.y168{bottom:414.272800pt;}
.y1fa{bottom:418.231467pt;}
.y11e{bottom:419.558133pt;}
.y187{bottom:420.896800pt;}
.ybc{bottom:420.903467pt;}
.y1b1{bottom:420.934133pt;}
.y154{bottom:420.958133pt;}
.y9a{bottom:420.983600pt;}
.y1d{bottom:428.575467pt;}
.y7a{bottom:434.207467pt;}
.y1bc{bottom:434.222133pt;}
.ydf{bottom:434.228800pt;}
.y138{bottom:434.252800pt;}
.y167{bottom:434.278133pt;}
.y1f9{bottom:436.898133pt;}
.y1d7{bottom:437.364400pt;}
.y11d{bottom:439.563467pt;}
.y186{bottom:440.902133pt;}
.ybb{bottom:440.908800pt;}
.yfb{bottom:440.919467pt;}
.y1b0{bottom:440.939467pt;}
.y153{bottom:440.963467pt;}
.y99{bottom:440.988933pt;}
.y1c{bottom:447.247467pt;}
.y79{bottom:454.212800pt;}
.yde{bottom:454.234133pt;}
.y137{bottom:454.258133pt;}
.y166{bottom:454.283467pt;}
.y1d6{bottom:456.031067pt;}
.y11c{bottom:459.568800pt;}
.y185{bottom:460.907467pt;}
.yba{bottom:460.914133pt;}
.yfa{bottom:460.924800pt;}
.y1af{bottom:460.944800pt;}
.y152{bottom:460.968800pt;}
.y1b{bottom:462.583467pt;}
.y1f8{bottom:464.898133pt;}
.y4a{bottom:467.943467pt;}
.y6d{bottom:474.218133pt;}
.ydd{bottom:474.239467pt;}
.y136{bottom:474.263467pt;}
.y165{bottom:474.288800pt;}
.y1a{bottom:477.919467pt;}
.y184{bottom:480.912800pt;}
.yb9{bottom:480.919467pt;}
.yf9{bottom:480.930133pt;}
.y98{bottom:480.946267pt;}
.y1ae{bottom:480.950133pt;}
.y151{bottom:480.974133pt;}
.y1f7{bottom:483.564800pt;}
.y1d5{bottom:484.031067pt;}
.y49{bottom:487.948800pt;}
.y19{bottom:493.255467pt;}
.y6c{bottom:494.223467pt;}
.y135{bottom:494.268800pt;}
.y11b{bottom:499.482133pt;}
.y183{bottom:500.918133pt;}
.yb8{bottom:500.924800pt;}
.yf8{bottom:500.935467pt;}
.y97{bottom:500.951600pt;}
.y150{bottom:500.979467pt;}
.y48{bottom:507.954133pt;}
.y18{bottom:508.591467pt;}
.y1f6{bottom:511.564800pt;}
.y1d4{bottom:512.031067pt;}
.y6b{bottom:514.228800pt;}
.ydc{bottom:514.235467pt;}
.y134{bottom:514.274133pt;}
.y164{bottom:514.284800pt;}
.y11a{bottom:519.487467pt;}
.y182{bottom:520.923467pt;}
.yf7{bottom:520.940800pt;}
.y1ad{bottom:520.946133pt;}
.y96{bottom:520.956933pt;}
.y14f{bottom:520.984800pt;}
.y17{bottom:523.927467pt;}
.y47{bottom:527.959467pt;}
.y1f5{bottom:530.231467pt;}
.y1d3{bottom:530.697733pt;}
.y6a{bottom:534.234133pt;}
.ydb{bottom:534.240800pt;}
.y133{bottom:534.279467pt;}
.y163{bottom:534.290133pt;}
.y16{bottom:539.263467pt;}
.y119{bottom:539.492800pt;}
.yb7{bottom:540.920800pt;}
.y181{bottom:540.928800pt;}
.yf6{bottom:540.946133pt;}
.y1ac{bottom:540.951467pt;}
.y95{bottom:540.962267pt;}
.y46{bottom:547.964800pt;}
.y193{bottom:554.224800pt;}
.y69{bottom:554.239467pt;}
.yda{bottom:554.246133pt;}
.y132{bottom:554.284800pt;}
.y162{bottom:554.295467pt;}
.y15{bottom:554.599467pt;}
.y1f4{bottom:558.231467pt;}
.y1d2{bottom:558.697733pt;}
.y118{bottom:559.498133pt;}
.yb6{bottom:560.926133pt;}
.y180{bottom:560.934133pt;}
.yf5{bottom:560.951467pt;}
.y1ab{bottom:560.956800pt;}
.y94{bottom:560.967600pt;}
.y14e{bottom:560.984800pt;}
.y45{bottom:567.970133pt;}
.y14{bottom:569.935467pt;}
.y192{bottom:574.230133pt;}
.y68{bottom:574.244800pt;}
.yd9{bottom:574.251467pt;}
.y131{bottom:574.290133pt;}
.y161{bottom:574.300800pt;}
.y1f3{bottom:576.898133pt;}
.y1d1{bottom:577.364400pt;}
.y117{bottom:579.503467pt;}
.yb5{bottom:580.931467pt;}
.yf4{bottom:580.956800pt;}
.y1aa{bottom:580.962133pt;}
.y44{bottom:587.975467pt;}
.y191{bottom:594.235467pt;}
.y1bb{bottom:594.250133pt;}
.yd8{bottom:594.256800pt;}
.y130{bottom:594.295467pt;}
.y160{bottom:594.306133pt;}
.y1f2{bottom:595.564800pt;}
.y1d0{bottom:596.031067pt;}
.y17f{bottom:600.930133pt;}
.yb4{bottom:600.936800pt;}
.y93{bottom:600.963600pt;}
.y1a9{bottom:600.967467pt;}
.y43{bottom:607.980800pt;}
.y67{bottom:614.240800pt;}
.yd7{bottom:614.262133pt;}
.y12f{bottom:614.300800pt;}
.y15f{bottom:614.311467pt;}
.y13{bottom:618.160667pt;}
.y116{bottom:619.499467pt;}
.y17e{bottom:620.935467pt;}
.yb3{bottom:620.942133pt;}
.yf3{bottom:620.952800pt;}
.y92{bottom:620.968933pt;}
.y1a8{bottom:620.972800pt;}
.y1f1{bottom:623.564800pt;}
.y1cf{bottom:624.031067pt;}
.y42{bottom:627.986133pt;}
.y66{bottom:634.246133pt;}
.yd6{bottom:634.267467pt;}
.y12e{bottom:634.306133pt;}
.y15e{bottom:634.316800pt;}
.y12{bottom:636.827333pt;}
.y115{bottom:639.504800pt;}
.y17d{bottom:640.940800pt;}
.yb2{bottom:640.947467pt;}
.yf2{bottom:640.958133pt;}
.y91{bottom:640.974267pt;}
.y1a7{bottom:640.978133pt;}
.y1ce{bottom:642.697733pt;}
.y41{bottom:647.991467pt;}
.y1f0{bottom:651.564800pt;}
.y65{bottom:654.251467pt;}
.y14d{bottom:654.272800pt;}
.y12d{bottom:654.311467pt;}
.y15d{bottom:654.322133pt;}
.y11{bottom:655.494000pt;}
.y29{bottom:659.323467pt;}
.y114{bottom:659.510133pt;}
.y17c{bottom:660.946133pt;}
.yb1{bottom:660.952800pt;}
.yf1{bottom:660.963467pt;}
.y90{bottom:660.979600pt;}
.y1a6{bottom:660.983467pt;}
.y40{bottom:667.996800pt;}
.y1ef{bottom:670.231467pt;}
.y1cd{bottom:670.697733pt;}
.y10{bottom:674.160667pt;}
.y64{bottom:674.256800pt;}
.yd5{bottom:674.263467pt;}
.y14c{bottom:674.278133pt;}
.y12c{bottom:674.316800pt;}
.y28{bottom:676.651467pt;}
.y113{bottom:679.515467pt;}
.y17b{bottom:680.951467pt;}
.y8f{bottom:680.956800pt;}
.yb0{bottom:680.958133pt;}
.yf0{bottom:680.968800pt;}
.y1a5{bottom:680.988800pt;}
.y1cc{bottom:689.364400pt;}
.y15c{bottom:694.247467pt;}
.y63{bottom:694.262133pt;}
.yd4{bottom:694.268800pt;}
.y14b{bottom:694.283467pt;}
.y12b{bottom:694.322133pt;}
.y1ee{bottom:698.231467pt;}
.y112{bottom:699.520800pt;}
.y17a{bottom:700.956800pt;}
.yaf{bottom:700.963467pt;}
.yef{bottom:700.974133pt;}
.y3f{bottom:707.992800pt;}
.y15b{bottom:714.252800pt;}
.y78{bottom:714.267467pt;}
.yd3{bottom:714.274133pt;}
.y14a{bottom:714.288800pt;}
.y1ed{bottom:716.898133pt;}
.y1cb{bottom:717.364400pt;}
.y111{bottom:719.526133pt;}
.y8e{bottom:720.952800pt;}
.y1a4{bottom:720.963467pt;}
.yae{bottom:720.968800pt;}
.yee{bottom:720.979467pt;}
.y3e{bottom:727.998133pt;}
.y62{bottom:734.258133pt;}
.y77{bottom:734.272800pt;}
.yd2{bottom:734.279467pt;}
.y149{bottom:734.294133pt;}
.y110{bottom:739.531467pt;}
.y179{bottom:740.952800pt;}
.y8d{bottom:740.958133pt;}
.y1a3{bottom:740.968800pt;}
.yad{bottom:740.974133pt;}
.yed{bottom:740.984800pt;}
.y1ec{bottom:744.898133pt;}
.y1ca{bottom:745.364400pt;}
.y3d{bottom:748.003467pt;}
.y61{bottom:754.263467pt;}
.y76{bottom:754.278133pt;}
.yd1{bottom:754.284800pt;}
.y10f{bottom:759.536800pt;}
.y178{bottom:760.958133pt;}
.y8c{bottom:760.963467pt;}
.y1a2{bottom:760.974133pt;}
.yac{bottom:760.979467pt;}
.yf{bottom:764.316133pt;}
.y3c{bottom:768.008800pt;}
.y1eb{bottom:772.898133pt;}
.y1c9{bottom:773.364400pt;}
.y60{bottom:774.268800pt;}
.y148{bottom:774.290133pt;}
.y10e{bottom:779.542133pt;}
.y177{bottom:780.963467pt;}
.y8b{bottom:780.968800pt;}
.y1a1{bottom:780.979467pt;}
.yab{bottom:780.984800pt;}
.y3b{bottom:788.014133pt;}
.ye{bottom:788.316133pt;}
.y1ea{bottom:791.564800pt;}
.y5f{bottom:794.274133pt;}
.yd0{bottom:794.280800pt;}
.y147{bottom:794.295467pt;}
.y10d{bottom:799.547467pt;}
.y176{bottom:800.968800pt;}
.y8a{bottom:800.974133pt;}
.y1a0{bottom:800.984800pt;}
.y1c8{bottom:801.364400pt;}
.y5e{bottom:814.279467pt;}
.ycf{bottom:814.286133pt;}
.y146{bottom:814.300800pt;}
.y10c{bottom:819.552800pt;}
.y1e9{bottom:819.564800pt;}
.y1c7{bottom:820.031067pt;}
.y175{bottom:820.974133pt;}
.y89{bottom:820.979467pt;}
.yaa{bottom:820.984800pt;}
.yd{bottom:823.654667pt;}
.y3a{bottom:828.010133pt;}
.y5d{bottom:834.284800pt;}
.yce{bottom:834.291467pt;}
.y145{bottom:834.306133pt;}
.y1e8{bottom:838.231467pt;}
.ya9{bottom:839.651467pt;}
.y174{bottom:840.979467pt;}
.y88{bottom:840.984800pt;}
.y39{bottom:848.015467pt;}
.yec{bottom:854.275467pt;}
.y5c{bottom:854.290133pt;}
.ycd{bottom:854.296800pt;}
.y144{bottom:854.311467pt;}
.yc{bottom:854.321333pt;}
.ya8{bottom:858.318133pt;}
.y1c6{bottom:858.697733pt;}
.y10b{bottom:859.548800pt;}
.y173{bottom:860.984800pt;}
.y1e7{bottom:866.231467pt;}
.y38{bottom:868.020800pt;}
.yeb{bottom:874.280800pt;}
.ycc{bottom:874.302133pt;}
.y143{bottom:874.316800pt;}
.ya7{bottom:876.984800pt;}
.y10a{bottom:879.554133pt;}
.y87{bottom:880.984800pt;}
.yb{bottom:884.988000pt;}
.y37{bottom:888.026133pt;}
.y1e6{bottom:894.231467pt;}
.y5b{bottom:894.286133pt;}
.ycb{bottom:894.307467pt;}
.y142{bottom:894.322133pt;}
.ya6{bottom:895.651467pt;}
.y109{bottom:899.559467pt;}
.y172{bottom:900.984800pt;}
.y36{bottom:908.015467pt;}
.y5a{bottom:914.291467pt;}
.yca{bottom:914.312800pt;}
.y108{bottom:919.564800pt;}
.y1e5{bottom:922.231467pt;}
.y35{bottom:928.020800pt;}
.y59{bottom:934.296800pt;}
.yc9{bottom:934.311467pt;}
.y1e4{bottom:940.898133pt;}
.y1c5{bottom:941.364800pt;}
.y34{bottom:948.026133pt;}
.y58{bottom:954.302133pt;}
.y107{bottom:959.564800pt;}
.y33{bottom:968.031467pt;}
.y1e3{bottom:968.898133pt;}
.y1c4{bottom:969.364800pt;}
.y57{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y106{bottom:978.231467pt;}
.y56{bottom:994.312800pt;}
.y105{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y32{bottom:1008.031467pt;}
.y55{bottom:1014.318133pt;}
.y104{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y30{bottom:1053.625200pt;}
.y31{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h5{height:61.600000pt;}
.h12{height:61.626667pt;}
.h17{height:61.642667pt;}
.hd{height:61.664000pt;}
.h11{height:61.669333pt;}
.he{height:61.685333pt;}
.h14{height:61.690667pt;}
.hf{height:61.712533pt;}
.h16{height:61.733333pt;}
.h10{height:61.754667pt;}
.h18{height:61.840000pt;}
.h13{height:61.861333pt;}
.h19{height:61.882667pt;}
.h15{height:61.930667pt;}
.ha{height:64.000000pt;}
.h8{height:64.102033pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897600pt;}
.xc{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x10{left:120.944800pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.xd{left:724.913333pt;}
.xe{left:732.936000pt;}
.x11{left:734.239467pt;}
}




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