
    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_98ae3d3ad2ae43ff04f14f58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_50394394bcdec5bbc9ac5879.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_296b5795fdf0b72da2bc29ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_784c76f632b1bb6c1ae088e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_7a50ffc9f1be73848fe7d7b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_7ee74bf7dc328a4f5187f67b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_4f0195ea73583a148fb5e2b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102539;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_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_c2a0a12472d4a07fc3ddb148.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_322165f84ef93040f8050ff7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.756836;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_dec01e997d3afd5ae1616d9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.008000px;}
.ls33{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.336960px;}
.lsa{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.084240px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.075816px;}
.ls30{letter-spacing:0.084240px;}
.ls17{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.336960px;}
.ls2a{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.383040px;}
.ls2c{letter-spacing:0.385920px;}
.ls11{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls19{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.880000px;}
.ls6{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls28{letter-spacing:5.040000px;}
.ls24{letter-spacing:5.760000px;}
.ls18{letter-spacing:6.480000px;}
.ls31{letter-spacing:7.200000px;}
.ls2b{letter-spacing:7.920000px;}
.ls5{letter-spacing:8.640000px;}
.ls23{letter-spacing:9.360000px;}
.ls25{letter-spacing:10.080000px;}
.lsf{letter-spacing:11.520000px;}
.ls4{letter-spacing:13.680000px;}
.ls1f{letter-spacing:15.120000px;}
.ls12{letter-spacing:15.840000px;}
.ls2{letter-spacing:17.280000px;}
.ls22{letter-spacing:18.000000px;}
.ls21{letter-spacing:21.600000px;}
.ls2d{letter-spacing:23.040000px;}
.ls2e{letter-spacing:27.360000px;}
.ls7{letter-spacing:28.800000px;}
.ls32{letter-spacing:33.984000px;}
.ls3{letter-spacing:42.480000px;}
.ls27{letter-spacing:54.864000px;}
.ls1e{letter-spacing:64.016640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws76{word-spacing:-72.000000px;}
.ws47{word-spacing:-59.760000px;}
.ws26{word-spacing:-21.396960px;}
.ws74{word-spacing:-21.144240px;}
.ws6f{word-spacing:-18.288000px;}
.ws2e{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws2d{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws27{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws69{word-spacing:-17.568000px;}
.ws28{word-spacing:-16.891200px;}
.ws29{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws63{word-spacing:-12.445920px;}
.ws6e{word-spacing:-4.464000px;}
.wsa{word-spacing:-4.320000px;}
.ws3e{word-spacing:-3.744000px;}
.ws1a{word-spacing:-3.600000px;}
.ws39{word-spacing:-3.312000px;}
.ws43{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.592000px;}
.ws2b{word-spacing:-2.160000px;}
.ws83{word-spacing:-2.016000px;}
.ws4f{word-spacing:-1.872000px;}
.ws1c{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.152000px;}
.ws75{word-spacing:-1.010880px;}
.ws71{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.505440px;}
.ws38{word-spacing:-0.504000px;}
.ws32{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.383040px;}
.ws2a{word-spacing:-0.336960px;}
.ws73{word-spacing:-0.331200px;}
.ws61{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.084240px;}
.ws55{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.072000px;}
.ws5b{word-spacing:0.084240px;}
.ws24{word-spacing:0.144000px;}
.ws5a{word-spacing:0.168480px;}
.ws6a{word-spacing:0.216000px;}
.ws12{word-spacing:0.288000px;}
.ws34{word-spacing:0.336960px;}
.ws2c{word-spacing:0.432000px;}
.ws66{word-spacing:0.576000px;}
.ws19{word-spacing:0.720000px;}
.ws86{word-spacing:0.936000px;}
.ws3b{word-spacing:1.008000px;}
.ws37{word-spacing:1.296000px;}
.ws36{word-spacing:1.440000px;}
.ws77{word-spacing:1.728000px;}
.ws41{word-spacing:2.016000px;}
.ws4e{word-spacing:2.160000px;}
.ws40{word-spacing:2.448000px;}
.ws3a{word-spacing:2.736000px;}
.ws23{word-spacing:2.880000px;}
.ws20{word-spacing:3.168000px;}
.ws4c{word-spacing:3.312000px;}
.ws14{word-spacing:3.600000px;}
.ws16{word-spacing:3.888000px;}
.ws21{word-spacing:4.320000px;}
.ws1b{word-spacing:5.040000px;}
.ws6b{word-spacing:5.472000px;}
.wsc{word-spacing:5.760000px;}
.wse{word-spacing:6.048000px;}
.ws2f{word-spacing:6.336000px;}
.ws1e{word-spacing:6.480000px;}
.ws6c{word-spacing:6.768000px;}
.ws5e{word-spacing:7.200000px;}
.ws7b{word-spacing:7.344000px;}
.ws64{word-spacing:7.416000px;}
.ws62{word-spacing:7.776000px;}
.ws5d{word-spacing:7.920000px;}
.ws11{word-spacing:8.640000px;}
.ws45{word-spacing:9.360000px;}
.ws13{word-spacing:9.648000px;}
.ws57{word-spacing:9.936000px;}
.ws59{word-spacing:10.080000px;}
.ws58{word-spacing:10.368000px;}
.wsd{word-spacing:10.800000px;}
.ws52{word-spacing:11.088000px;}
.ws1f{word-spacing:11.520000px;}
.ws3c{word-spacing:12.240000px;}
.ws7d{word-spacing:12.816000px;}
.ws33{word-spacing:12.960000px;}
.ws53{word-spacing:13.104000px;}
.ws50{word-spacing:13.248000px;}
.ws10{word-spacing:13.680000px;}
.ws42{word-spacing:14.400000px;}
.ws5f{word-spacing:14.976000px;}
.ws4a{word-spacing:15.120000px;}
.ws49{word-spacing:15.408000px;}
.ws46{word-spacing:15.840000px;}
.ws65{word-spacing:16.416000px;}
.ws82{word-spacing:16.560000px;}
.ws81{word-spacing:16.704000px;}
.ws9{word-spacing:17.280000px;}
.ws48{word-spacing:18.000000px;}
.ws6d{word-spacing:19.440000px;}
.ws4d{word-spacing:20.160000px;}
.ws22{word-spacing:20.880000px;}
.ws56{word-spacing:21.600000px;}
.ws4b{word-spacing:21.888000px;}
.ws67{word-spacing:23.040000px;}
.ws51{word-spacing:23.760000px;}
.ws78{word-spacing:24.480000px;}
.ws31{word-spacing:25.200000px;}
.ws30{word-spacing:25.488000px;}
.ws70{word-spacing:25.920000px;}
.ws68{word-spacing:27.360000px;}
.ws54{word-spacing:28.080000px;}
.ws18{word-spacing:28.800000px;}
.ws7f{word-spacing:29.088000px;}
.ws84{word-spacing:29.808000px;}
.ws7a{word-spacing:30.240000px;}
.ws80{word-spacing:30.456000px;}
.ws79{word-spacing:30.528000px;}
.ws85{word-spacing:31.680000px;}
.ws17{word-spacing:31.968000px;}
.ws5c{word-spacing:32.400000px;}
.ws7c{word-spacing:33.120000px;}
.ws87{word-spacing:34.560000px;}
.ws1d{word-spacing:35.280000px;}
.ws3f{word-spacing:36.000000px;}
.ws60{word-spacing:37.440000px;}
.ws3d{word-spacing:38.880000px;}
.ws7e{word-spacing:44.640000px;}
.ws72{word-spacing:47.520000px;}
.ws35{word-spacing:66.240000px;}
._f{margin-left:-13.009248px;}
._4{margin-left:-5.112000px;}
._3{margin-left:-3.888000px;}
._d{margin-left:-2.268288px;}
._0{margin-left:-1.066464px;}
._1{width:1.283184px;}
._18{width:2.464704px;}
._13{width:3.839328px;}
._6{width:5.040000px;}
._5{width:6.552000px;}
._23{width:7.632000px;}
._11{width:8.640000px;}
._b{width:10.296000px;}
._c{width:11.376000px;}
._10{width:12.409632px;}
._e{width:13.608000px;}
._19{width:14.760000px;}
._1d{width:15.827184px;}
._2{width:16.919280px;}
._1b{width:19.609632px;}
._12{width:21.240000px;}
._1e{width:22.464000px;}
._7{width:23.688000px;}
._8{width:24.840000px;}
._1c{width:25.865712px;}
._21{width:27.054288px;}
._14{width:28.584000px;}
._1a{width:30.010464px;}
._15{width:31.464000px;}
._26{width:32.579424px;}
._2d{width:33.650784px;}
._24{width:34.865712px;}
._16{width:36.216000px;}
._17{width:37.296000px;}
._22{width:38.761632px;}
._25{width:39.960000px;}
._9{width:41.976000px;}
._a{width:43.056000px;}
._2e{width:44.724816px;}
._2f{width:46.224000px;}
._30{width:47.407392px;}
._27{width:50.832000px;}
._28{width:52.022448px;}
._2a{width:60.048000px;}
._2b{width:61.200000px;}
._20{width:66.096000px;}
._1f{width:67.104000px;}
._2c{width:69.552000px;}
._31{width:71.856000px;}
._32{width:79.344000px;}
._29{width:154.800000px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.y24{bottom:111.960000px;}
.y110{bottom:116.100000px;}
.y176{bottom:120.420000px;}
.y1d7{bottom:121.312800px;}
.ybc{bottom:123.480000px;}
.y6e{bottom:123.660000px;}
.ya6{bottom:124.020000px;}
.y192{bottom:124.560000px;}
.y99{bottom:127.080000px;}
.y15f{bottom:129.780000px;}
.y9e{bottom:135.180000px;}
.y11c{bottom:136.080000px;}
.y23{bottom:143.100000px;}
.y5f{bottom:146.700000px;}
.y46{bottom:147.060000px;}
.y1ad{bottom:151.200000px;}
.y175{bottom:151.380000px;}
.ydc{bottom:154.260000px;}
.y6d{bottom:154.620000px;}
.y1d6{bottom:154.979280px;}
.ya5{bottom:154.980000px;}
.y126{bottom:155.700000px;}
.ybb{bottom:155.880000px;}
.y15e{bottom:160.920000px;}
.yf7{bottom:161.640000px;}
.y9d{bottom:166.140000px;}
.y11b{bottom:167.040000px;}
.y5e{bottom:169.200000px;}
.y98{bottom:170.280000px;}
.y1cd{bottom:170.460000px;}
.y22{bottom:174.060000px;}
.y45{bottom:178.200000px;}
.y174{bottom:182.520000px;}
.ydb{bottom:185.400000px;}
.y6c{bottom:185.760000px;}
.ya4{bottom:186.120000px;}
.y191{bottom:186.660000px;}
.y125{bottom:186.840000px;}
.yba{bottom:188.280000px;}
.y10f{bottom:188.460000px;}
.y1d5{bottom:188.811360px;}
.y15d{bottom:191.880000px;}
.yf6{bottom:192.600000px;}
.y1ac{bottom:194.220000px;}
.y5d{bottom:196.200000px;}
.y9c{bottom:197.280000px;}
.y11a{bottom:198.180000px;}
.y97{bottom:201.240000px;}
.y1cc{bottom:201.600000px;}
.y21{bottom:205.200000px;}
.y44{bottom:209.160000px;}
.y173{bottom:213.480000px;}
.yda{bottom:216.360000px;}
.y6b{bottom:216.720000px;}
.ya3{bottom:217.080000px;}
.y124{bottom:217.620000px;}
.y10e{bottom:219.600000px;}
.yb9{bottom:220.500000px;}
.y1d4{bottom:222.477840px;}
.y15c{bottom:223.020000px;}
.y190{bottom:225.900000px;}
.y9b{bottom:228.240000px;}
.y119{bottom:229.140000px;}
.y143{bottom:229.680000px;}
.yf5{bottom:231.300000px;}
.y96{bottom:232.380000px;}
.y1cb{bottom:232.560000px;}
.y20{bottom:236.160000px;}
.y1ab{bottom:237.240000px;}
.y43{bottom:240.300000px;}
.y81{bottom:244.440000px;}
.y172{bottom:244.620000px;}
.yd9{bottom:247.500000px;}
.y6a{bottom:247.860000px;}
.ya2{bottom:248.220000px;}
.y123{bottom:250.200000px;}
.y10d{bottom:250.560000px;}
.yb8{bottom:252.900000px;}
.y15b{bottom:253.980000px;}
.y1d3{bottom:256.309920px;}
.y9a{bottom:259.380000px;}
.y118{bottom:260.280000px;}
.y142{bottom:260.820000px;}
.y95{bottom:263.340000px;}
.y1ca{bottom:263.700000px;}
.y1f{bottom:267.300000px;}
.y1aa{bottom:268.380000px;}
.y42{bottom:271.260000px;}
.y18f{bottom:271.800000px;}
.yf4{bottom:274.500000px;}
.y171{bottom:275.580000px;}
.yd8{bottom:278.460000px;}
.y69{bottom:278.820000px;}
.ya1{bottom:279.180000px;}
.y122{bottom:281.160000px;}
.y10c{bottom:281.700000px;}
.y15a{bottom:285.120000px;}
.yb7{bottom:285.300000px;}
.y1d2{bottom:289.976400px;}
.y80{bottom:290.340000px;}
.y117{bottom:291.240000px;}
.y141{bottom:291.780000px;}
.y94{bottom:294.300000px;}
.y1c9{bottom:294.660000px;}
.y1e{bottom:298.260000px;}
.y1a9{bottom:299.340000px;}
.y41{bottom:302.400000px;}
.y18e{bottom:304.020000px;}
.yf3{bottom:305.460000px;}
.y170{bottom:306.720000px;}
.yd7{bottom:309.600000px;}
.y68{bottom:309.960000px;}
.ya0{bottom:310.320000px;}
.y121{bottom:312.300000px;}
.y10b{bottom:312.660000px;}
.y159{bottom:316.080000px;}
.yb6{bottom:317.520000px;}
.y7f{bottom:321.300000px;}
.y116{bottom:322.200000px;}
.y140{bottom:322.920000px;}
.y1d1{bottom:323.642880px;}
.y93{bottom:325.440000px;}
.y1c8{bottom:325.800000px;}
.y1d{bottom:329.400000px;}
.y1a8{bottom:330.480000px;}
.y40{bottom:333.360000px;}
.y18d{bottom:336.420000px;}
.yf2{bottom:336.600000px;}
.y16f{bottom:337.680000px;}
.yd6{bottom:340.560000px;}
.y67{bottom:340.920000px;}
.y120{bottom:343.260000px;}
.y10a{bottom:343.800000px;}
.y158{bottom:347.220000px;}
.y9f{bottom:349.560000px;}
.yb5{bottom:349.920000px;}
.y7e{bottom:352.440000px;}
.y115{bottom:353.340000px;}
.y13f{bottom:353.880000px;}
.y92{bottom:356.400000px;}
.y1c7{bottom:356.760000px;}
.y1d0{bottom:357.474960px;}
.y1c{bottom:360.360000px;}
.y1a7{bottom:361.440000px;}
.y3f{bottom:364.500000px;}
.y18c{bottom:368.820000px;}
.yd5{bottom:371.700000px;}
.y66{bottom:372.060000px;}
.y11f{bottom:374.400000px;}
.y109{bottom:374.760000px;}
.yf1{bottom:375.300000px;}
.y157{bottom:378.180000px;}
.y16e{bottom:379.440000px;}
.yb4{bottom:382.320000px;}
.y7d{bottom:383.400000px;}
.y114{bottom:384.300000px;}
.y13e{bottom:384.840000px;}
.y91{bottom:387.540000px;}
.y1c6{bottom:387.900000px;}
.y1cf{bottom:391.141440px;}
.y1b{bottom:391.500000px;}
.y1a6{bottom:392.580000px;}
.y3e{bottom:395.460000px;}
.y16d{bottom:398.880000px;}
.y18b{bottom:401.220000px;}
.yd4{bottom:402.660000px;}
.y65{bottom:403.020000px;}
.y108{bottom:405.900000px;}
.y156{bottom:409.320000px;}
.y7c{bottom:414.540000px;}
.y113{bottom:415.440000px;}
.y11e{bottom:415.980000px;}
.y13d{bottom:417.240000px;}
.yf0{bottom:418.320000px;}
.y90{bottom:418.500000px;}
.y1c5{bottom:418.860000px;}
.y16c{bottom:419.580000px;}
.y1a{bottom:422.460000px;}
.y1a5{bottom:423.540000px;}
.y1ce{bottom:424.973520px;}
.yb3{bottom:425.340000px;}
.y3d{bottom:426.600000px;}
.y18a{bottom:432.180000px;}
.yd3{bottom:433.800000px;}
.y64{bottom:434.160000px;}
.y107{bottom:436.860000px;}
.y155{bottom:440.280000px;}
.y11d{bottom:441.720000px;}
.y7b{bottom:445.500000px;}
.y112{bottom:446.400000px;}
.yef{bottom:449.280000px;}
.y13c{bottom:449.640000px;}
.y1c4{bottom:450.000000px;}
.y19{bottom:453.600000px;}
.y3c{bottom:457.560000px;}
.y16b{bottom:458.640000px;}
.y8f{bottom:461.700000px;}
.y189{bottom:464.580000px;}
.yd2{bottom:464.760000px;}
.y63{bottom:465.120000px;}
.y106{bottom:468.000000px;}
.y1a4{bottom:468.720000px;}
.y154{bottom:471.420000px;}
.y7a{bottom:476.640000px;}
.y111{bottom:477.540000px;}
.yee{bottom:480.420000px;}
.y13b{bottom:480.780000px;}
.y1c3{bottom:480.960000px;}
.y18{bottom:484.560000px;}
.y3b{bottom:488.700000px;}
.yb2{bottom:489.960000px;}
.y8e{bottom:492.660000px;}
.y188{bottom:495.720000px;}
.yd1{bottom:495.900000px;}
.y62{bottom:496.260000px;}
.y105{bottom:498.960000px;}
.y153{bottom:502.380000px;}
.y79{bottom:507.600000px;}
.y5c{bottom:508.500000px;}
.yed{bottom:511.380000px;}
.y13a{bottom:511.740000px;}
.y1c2{bottom:512.100000px;}
.y1a3{bottom:514.440000px;}
.y17{bottom:515.700000px;}
.y3a{bottom:519.660000px;}
.yb1{bottom:522.360000px;}
.y8d{bottom:523.800000px;}
.y187{bottom:526.680000px;}
.yd0{bottom:526.860000px;}
.y104{bottom:530.100000px;}
.y152{bottom:533.520000px;}
.y78{bottom:538.740000px;}
.y61{bottom:539.105040px;}
.y5b{bottom:539.640000px;}
.yec{bottom:542.520000px;}
.y139{bottom:542.700000px;}
.y1c1{bottom:543.060000px;}
.y1a2{bottom:545.580000px;}
.y16{bottom:546.660000px;}
.y39{bottom:550.800000px;}
.yb0{bottom:554.580000px;}
.y8c{bottom:554.760000px;}
.y186{bottom:557.820000px;}
.ycf{bottom:558.000000px;}
.y103{bottom:561.060000px;}
.y60{bottom:566.820000px;}
.y151{bottom:567.720000px;}
.y77{bottom:569.700000px;}
.y5a{bottom:570.600000px;}
.yeb{bottom:573.480000px;}
.y138{bottom:573.660000px;}
.y1c0{bottom:574.200000px;}
.y1a1{bottom:576.540000px;}
.y15{bottom:577.800000px;}
.y38{bottom:581.760000px;}
.y8b{bottom:585.900000px;}
.yaf{bottom:586.980000px;}
.y185{bottom:588.780000px;}
.yce{bottom:588.960000px;}
.y102{bottom:592.020000px;}
.y76{bottom:600.840000px;}
.y59{bottom:601.740000px;}
.yea{bottom:604.620000px;}
.y1bf{bottom:605.160000px;}
.y137{bottom:606.240000px;}
.y1a0{bottom:607.680000px;}
.y14{bottom:608.760000px;}
.y150{bottom:610.740000px;}
.y37{bottom:612.900000px;}
.y8a{bottom:616.860000px;}
.yae{bottom:619.380000px;}
.y184{bottom:619.920000px;}
.ycd{bottom:620.100000px;}
.y101{bottom:623.160000px;}
.y75{bottom:631.800000px;}
.y58{bottom:632.700000px;}
.ye9{bottom:635.580000px;}
.y1be{bottom:636.120000px;}
.y19f{bottom:638.640000px;}
.y13{bottom:639.900000px;}
.y14f{bottom:641.880000px;}
.y36{bottom:643.860000px;}
.y136{bottom:645.480000px;}
.y89{bottom:647.820000px;}
.y183{bottom:650.880000px;}
.yad{bottom:651.780000px;}
.ycc{bottom:659.340000px;}
.y100{bottom:662.400000px;}
.y74{bottom:662.940000px;}
.y57{bottom:663.840000px;}
.ye8{bottom:666.720000px;}
.y1bd{bottom:667.260000px;}
.y19e{bottom:669.780000px;}
.y12{bottom:670.860000px;}
.y35{bottom:674.820000px;}
.y88{bottom:678.960000px;}
.y182{bottom:682.020000px;}
.yac{bottom:682.920000px;}
.y14e{bottom:684.720000px;}
.y135{bottom:688.320000px;}
.y73{bottom:693.900000px;}
.y56{bottom:694.800000px;}
.ye7{bottom:697.680000px;}
.y1bc{bottom:698.220000px;}
.y19d{bottom:700.740000px;}
.y11{bottom:702.000000px;}
.ycb{bottom:705.240000px;}
.yff{bottom:705.420000px;}
.y34{bottom:705.960000px;}
.y181{bottom:712.980000px;}
.yab{bottom:713.880000px;}
.y14d{bottom:717.120000px;}
.y134{bottom:719.460000px;}
.y72{bottom:725.040000px;}
.y55{bottom:725.940000px;}
.ye6{bottom:728.820000px;}
.y1bb{bottom:729.360000px;}
.y19c{bottom:731.880000px;}
.y10{bottom:732.960000px;}
.yca{bottom:736.380000px;}
.y33{bottom:736.920000px;}
.y180{bottom:744.120000px;}
.yaa{bottom:745.020000px;}
.y14c{bottom:749.520000px;}
.y133{bottom:750.420000px;}
.y71{bottom:756.000000px;}
.y54{bottom:756.900000px;}
.ye5{bottom:759.780000px;}
.y1ba{bottom:760.320000px;}
.y19b{bottom:762.840000px;}
.yf{bottom:764.100000px;}
.yc9{bottom:767.340000px;}
.yfe{bottom:767.520000px;}
.y32{bottom:768.060000px;}
.y17f{bottom:775.080000px;}
.ya9{bottom:775.980000px;}
.y16a{bottom:780.660000px;}
.y132{bottom:781.560000px;}
.y70{bottom:787.140000px;}
.y53{bottom:788.040000px;}
.ye4{bottom:790.920000px;}
.y1b9{bottom:791.460000px;}
.y14b{bottom:792.540000px;}
.y19a{bottom:793.980000px;}
.ye{bottom:795.060000px;}
.yc8{bottom:798.480000px;}
.y31{bottom:799.020000px;}
.y17e{bottom:806.220000px;}
.ya8{bottom:807.120000px;}
.y169{bottom:811.620000px;}
.y131{bottom:812.520000px;}
.y6f{bottom:818.100000px;}
.y52{bottom:819.000000px;}
.ye3{bottom:821.880000px;}
.y1b8{bottom:822.420000px;}
.y14a{bottom:824.940000px;}
.yd{bottom:826.200000px;}
.yc7{bottom:829.440000px;}
.y30{bottom:830.160000px;}
.y17d{bottom:837.180000px;}
.yfd{bottom:841.500000px;}
.y168{bottom:842.760000px;}
.y130{bottom:843.660000px;}
.ya7{bottom:846.360000px;}
.y87{bottom:849.240000px;}
.y51{bottom:850.140000px;}
.ye2{bottom:853.020000px;}
.y1b7{bottom:853.560000px;}
.y149{bottom:855.900000px;}
.y199{bottom:856.080000px;}
.yc{bottom:857.160000px;}
.yc6{bottom:860.400000px;}
.y2f{bottom:861.120000px;}
.y17c{bottom:868.320000px;}
.yfc{bottom:872.640000px;}
.y167{bottom:873.720000px;}
.y12f{bottom:874.620000px;}
.y86{bottom:880.200000px;}
.y50{bottom:881.100000px;}
.y1b6{bottom:884.520000px;}
.y198{bottom:887.040000px;}
.yb{bottom:888.300000px;}
.yc5{bottom:891.540000px;}
.ye1{bottom:891.720000px;}
.y2e{bottom:892.260000px;}
.y17b{bottom:899.280000px;}
.yfb{bottom:903.600000px;}
.y166{bottom:904.860000px;}
.y12e{bottom:905.760000px;}
.y85{bottom:911.340000px;}
.y4f{bottom:912.240000px;}
.y1b5{bottom:915.660000px;}
.y197{bottom:918.180000px;}
.ya{bottom:919.260000px;}
.y148{bottom:919.440000px;}
.yc4{bottom:922.500000px;}
.y2d{bottom:923.220000px;}
.y17a{bottom:930.420000px;}
.ye0{bottom:934.740000px;}
.y165{bottom:935.820000px;}
.y12d{bottom:936.720000px;}
.y84{bottom:942.300000px;}
.y4e{bottom:943.200000px;}
.y1b4{bottom:946.620000px;}
.y196{bottom:949.140000px;}
.y9{bottom:950.400000px;}
.y2c{bottom:954.360000px;}
.y179{bottom:961.380000px;}
.yc3{bottom:965.520000px;}
.ydf{bottom:965.700000px;}
.y164{bottom:966.960000px;}
.y83{bottom:973.440000px;}
.y4d{bottom:974.340000px;}
.y1b3{bottom:977.760000px;}
.y195{bottom:980.280000px;}
.y8{bottom:981.360000px;}
.y147{bottom:981.540000px;}
.y12c{bottom:982.800000px;}
.y2b{bottom:985.320000px;}
.y178{bottom:992.340000px;}
.yde{bottom:996.840000px;}
.yc2{bottom:997.740000px;}
.y163{bottom:997.920000px;}
.y82{bottom:1004.400000px;}
.y4c{bottom:1005.300000px;}
.y1b2{bottom:1008.720000px;}
.y194{bottom:1011.240000px;}
.y146{bottom:1012.320000px;}
.y12b{bottom:1013.760000px;}
.y2a{bottom:1016.460000px;}
.y7{bottom:1020.600000px;}
.yfa{bottom:1027.800000px;}
.yc1{bottom:1030.140000px;}
.ydd{bottom:1035.540000px;}
.y4b{bottom:1036.440000px;}
.y1b1{bottom:1039.860000px;}
.y162{bottom:1040.940000px;}
.y193{bottom:1042.380000px;}
.y145{bottom:1044.900000px;}
.y12a{bottom:1046.160000px;}
.y29{bottom:1047.420000px;}
.yf9{bottom:1058.940000px;}
.y6{bottom:1062.180000px;}
.yc0{bottom:1062.540000px;}
.y177{bottom:1066.500000px;}
.y4a{bottom:1067.400000px;}
.y1b0{bottom:1070.820000px;}
.y161{bottom:1073.160000px;}
.y144{bottom:1075.860000px;}
.y129{bottom:1077.300000px;}
.y28{bottom:1078.560000px;}
.ybf{bottom:1094.940000px;}
.y5{bottom:1097.467380px;}
.yf8{bottom:1097.640000px;}
.y49{bottom:1098.540000px;}
.y1af{bottom:1101.960000px;}
.y160{bottom:1105.560000px;}
.y128{bottom:1108.260000px;}
.y27{bottom:1109.520000px;}
.y4{bottom:1129.140000px;}
.y48{bottom:1129.500000px;}
.y1ae{bottom:1132.920000px;}
.ybe{bottom:1137.960000px;}
.y127{bottom:1139.400000px;}
.y26{bottom:1140.660000px;}
.y47{bottom:1168.740000px;}
.ybd{bottom:1170.180000px;}
.y25{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.ha{height:54.628594px;}
.h3{height:58.671562px;}
.h2{height:63.175781px;}
.h9{height:63.351562px;}
.h7{height:63.773438px;}
.h8{height:63.843750px;}
.h5{height:64.160156px;}
.h6{height:75.067383px;}
.h4{height:85.333008px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.x6{left:126.543960px;}
.x7{left:133.200000px;}
.x8{left:137.700000px;}
.x4{left:159.300000px;}
.xa{left:187.200000px;}
.xf{left:190.620000px;}
.xb{left:214.200000px;}
.xd{left:239.400000px;}
.xe{left:266.400000px;}
.x3{left:295.380000px;}
.x1{left:432.900000px;}
.x5{left:603.360000px;}
.xc{left:652.860000px;}
.x9{left:675.360000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.299520pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.074880pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.067392pt;}
.ls30{letter-spacing:0.074880pt;}
.ls17{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.299520pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.340480pt;}
.ls2c{letter-spacing:0.343040pt;}
.ls11{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls28{letter-spacing:4.480000pt;}
.ls24{letter-spacing:5.120000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls31{letter-spacing:6.400000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls25{letter-spacing:8.960000pt;}
.lsf{letter-spacing:10.240000pt;}
.ls4{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:13.440000pt;}
.ls12{letter-spacing:14.080000pt;}
.ls2{letter-spacing:15.360000pt;}
.ls22{letter-spacing:16.000000pt;}
.ls21{letter-spacing:19.200000pt;}
.ls2d{letter-spacing:20.480000pt;}
.ls2e{letter-spacing:24.320000pt;}
.ls7{letter-spacing:25.600000pt;}
.ls32{letter-spacing:30.208000pt;}
.ls3{letter-spacing:37.760000pt;}
.ls27{letter-spacing:48.768000pt;}
.ls1e{letter-spacing:56.903680pt;}
.ws76{word-spacing:-64.000000pt;}
.ws47{word-spacing:-53.120000pt;}
.ws26{word-spacing:-19.019520pt;}
.ws74{word-spacing:-18.794880pt;}
.ws6f{word-spacing:-16.256000pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2d{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws27{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws69{word-spacing:-15.616000pt;}
.ws28{word-spacing:-15.014400pt;}
.ws29{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws63{word-spacing:-11.063040pt;}
.ws6e{word-spacing:-3.968000pt;}
.wsa{word-spacing:-3.840000pt;}
.ws3e{word-spacing:-3.328000pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws39{word-spacing:-2.944000pt;}
.ws43{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.304000pt;}
.ws2b{word-spacing:-1.920000pt;}
.ws83{word-spacing:-1.792000pt;}
.ws4f{word-spacing:-1.664000pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.024000pt;}
.ws75{word-spacing:-0.898560pt;}
.ws71{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.449280pt;}
.ws38{word-spacing:-0.448000pt;}
.ws32{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.340480pt;}
.ws2a{word-spacing:-0.299520pt;}
.ws73{word-spacing:-0.294400pt;}
.ws61{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.074880pt;}
.ws55{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.064000pt;}
.ws5b{word-spacing:0.074880pt;}
.ws24{word-spacing:0.128000pt;}
.ws5a{word-spacing:0.149760pt;}
.ws6a{word-spacing:0.192000pt;}
.ws12{word-spacing:0.256000pt;}
.ws34{word-spacing:0.299520pt;}
.ws2c{word-spacing:0.384000pt;}
.ws66{word-spacing:0.512000pt;}
.ws19{word-spacing:0.640000pt;}
.ws86{word-spacing:0.832000pt;}
.ws3b{word-spacing:0.896000pt;}
.ws37{word-spacing:1.152000pt;}
.ws36{word-spacing:1.280000pt;}
.ws77{word-spacing:1.536000pt;}
.ws41{word-spacing:1.792000pt;}
.ws4e{word-spacing:1.920000pt;}
.ws40{word-spacing:2.176000pt;}
.ws3a{word-spacing:2.432000pt;}
.ws23{word-spacing:2.560000pt;}
.ws20{word-spacing:2.816000pt;}
.ws4c{word-spacing:2.944000pt;}
.ws14{word-spacing:3.200000pt;}
.ws16{word-spacing:3.456000pt;}
.ws21{word-spacing:3.840000pt;}
.ws1b{word-spacing:4.480000pt;}
.ws6b{word-spacing:4.864000pt;}
.wsc{word-spacing:5.120000pt;}
.wse{word-spacing:5.376000pt;}
.ws2f{word-spacing:5.632000pt;}
.ws1e{word-spacing:5.760000pt;}
.ws6c{word-spacing:6.016000pt;}
.ws5e{word-spacing:6.400000pt;}
.ws7b{word-spacing:6.528000pt;}
.ws64{word-spacing:6.592000pt;}
.ws62{word-spacing:6.912000pt;}
.ws5d{word-spacing:7.040000pt;}
.ws11{word-spacing:7.680000pt;}
.ws45{word-spacing:8.320000pt;}
.ws13{word-spacing:8.576000pt;}
.ws57{word-spacing:8.832000pt;}
.ws59{word-spacing:8.960000pt;}
.ws58{word-spacing:9.216000pt;}
.wsd{word-spacing:9.600000pt;}
.ws52{word-spacing:9.856000pt;}
.ws1f{word-spacing:10.240000pt;}
.ws3c{word-spacing:10.880000pt;}
.ws7d{word-spacing:11.392000pt;}
.ws33{word-spacing:11.520000pt;}
.ws53{word-spacing:11.648000pt;}
.ws50{word-spacing:11.776000pt;}
.ws10{word-spacing:12.160000pt;}
.ws42{word-spacing:12.800000pt;}
.ws5f{word-spacing:13.312000pt;}
.ws4a{word-spacing:13.440000pt;}
.ws49{word-spacing:13.696000pt;}
.ws46{word-spacing:14.080000pt;}
.ws65{word-spacing:14.592000pt;}
.ws82{word-spacing:14.720000pt;}
.ws81{word-spacing:14.848000pt;}
.ws9{word-spacing:15.360000pt;}
.ws48{word-spacing:16.000000pt;}
.ws6d{word-spacing:17.280000pt;}
.ws4d{word-spacing:17.920000pt;}
.ws22{word-spacing:18.560000pt;}
.ws56{word-spacing:19.200000pt;}
.ws4b{word-spacing:19.456000pt;}
.ws67{word-spacing:20.480000pt;}
.ws51{word-spacing:21.120000pt;}
.ws78{word-spacing:21.760000pt;}
.ws31{word-spacing:22.400000pt;}
.ws30{word-spacing:22.656000pt;}
.ws70{word-spacing:23.040000pt;}
.ws68{word-spacing:24.320000pt;}
.ws54{word-spacing:24.960000pt;}
.ws18{word-spacing:25.600000pt;}
.ws7f{word-spacing:25.856000pt;}
.ws84{word-spacing:26.496000pt;}
.ws7a{word-spacing:26.880000pt;}
.ws80{word-spacing:27.072000pt;}
.ws79{word-spacing:27.136000pt;}
.ws85{word-spacing:28.160000pt;}
.ws17{word-spacing:28.416000pt;}
.ws5c{word-spacing:28.800000pt;}
.ws7c{word-spacing:29.440000pt;}
.ws87{word-spacing:30.720000pt;}
.ws1d{word-spacing:31.360000pt;}
.ws3f{word-spacing:32.000000pt;}
.ws60{word-spacing:33.280000pt;}
.ws3d{word-spacing:34.560000pt;}
.ws7e{word-spacing:39.680000pt;}
.ws72{word-spacing:42.240000pt;}
.ws35{word-spacing:58.880000pt;}
._f{margin-left:-11.563776pt;}
._4{margin-left:-4.544000pt;}
._3{margin-left:-3.456000pt;}
._d{margin-left:-2.016256pt;}
._0{margin-left:-0.947968pt;}
._1{width:1.140608pt;}
._18{width:2.190848pt;}
._13{width:3.412736pt;}
._6{width:4.480000pt;}
._5{width:5.824000pt;}
._23{width:6.784000pt;}
._11{width:7.680000pt;}
._b{width:9.152000pt;}
._c{width:10.112000pt;}
._10{width:11.030784pt;}
._e{width:12.096000pt;}
._19{width:13.120000pt;}
._1d{width:14.068608pt;}
._2{width:15.039360pt;}
._1b{width:17.430784pt;}
._12{width:18.880000pt;}
._1e{width:19.968000pt;}
._7{width:21.056000pt;}
._8{width:22.080000pt;}
._1c{width:22.991744pt;}
._21{width:24.048256pt;}
._14{width:25.408000pt;}
._1a{width:26.675968pt;}
._15{width:27.968000pt;}
._26{width:28.959488pt;}
._2d{width:29.911808pt;}
._24{width:30.991744pt;}
._16{width:32.192000pt;}
._17{width:33.152000pt;}
._22{width:34.454784pt;}
._25{width:35.520000pt;}
._9{width:37.312000pt;}
._a{width:38.272000pt;}
._2e{width:39.755392pt;}
._2f{width:41.088000pt;}
._30{width:42.139904pt;}
._27{width:45.184000pt;}
._28{width:46.242176pt;}
._2a{width:53.376000pt;}
._2b{width:54.400000pt;}
._20{width:58.752000pt;}
._1f{width:59.648000pt;}
._2c{width:61.824000pt;}
._31{width:63.872000pt;}
._32{width:70.528000pt;}
._29{width:137.600000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.y24{bottom:99.520000pt;}
.y110{bottom:103.200000pt;}
.y176{bottom:107.040000pt;}
.y1d7{bottom:107.833600pt;}
.ybc{bottom:109.760000pt;}
.y6e{bottom:109.920000pt;}
.ya6{bottom:110.240000pt;}
.y192{bottom:110.720000pt;}
.y99{bottom:112.960000pt;}
.y15f{bottom:115.360000pt;}
.y9e{bottom:120.160000pt;}
.y11c{bottom:120.960000pt;}
.y23{bottom:127.200000pt;}
.y5f{bottom:130.400000pt;}
.y46{bottom:130.720000pt;}
.y1ad{bottom:134.400000pt;}
.y175{bottom:134.560000pt;}
.ydc{bottom:137.120000pt;}
.y6d{bottom:137.440000pt;}
.y1d6{bottom:137.759360pt;}
.ya5{bottom:137.760000pt;}
.y126{bottom:138.400000pt;}
.ybb{bottom:138.560000pt;}
.y15e{bottom:143.040000pt;}
.yf7{bottom:143.680000pt;}
.y9d{bottom:147.680000pt;}
.y11b{bottom:148.480000pt;}
.y5e{bottom:150.400000pt;}
.y98{bottom:151.360000pt;}
.y1cd{bottom:151.520000pt;}
.y22{bottom:154.720000pt;}
.y45{bottom:158.400000pt;}
.y174{bottom:162.240000pt;}
.ydb{bottom:164.800000pt;}
.y6c{bottom:165.120000pt;}
.ya4{bottom:165.440000pt;}
.y191{bottom:165.920000pt;}
.y125{bottom:166.080000pt;}
.yba{bottom:167.360000pt;}
.y10f{bottom:167.520000pt;}
.y1d5{bottom:167.832320pt;}
.y15d{bottom:170.560000pt;}
.yf6{bottom:171.200000pt;}
.y1ac{bottom:172.640000pt;}
.y5d{bottom:174.400000pt;}
.y9c{bottom:175.360000pt;}
.y11a{bottom:176.160000pt;}
.y97{bottom:178.880000pt;}
.y1cc{bottom:179.200000pt;}
.y21{bottom:182.400000pt;}
.y44{bottom:185.920000pt;}
.y173{bottom:189.760000pt;}
.yda{bottom:192.320000pt;}
.y6b{bottom:192.640000pt;}
.ya3{bottom:192.960000pt;}
.y124{bottom:193.440000pt;}
.y10e{bottom:195.200000pt;}
.yb9{bottom:196.000000pt;}
.y1d4{bottom:197.758080pt;}
.y15c{bottom:198.240000pt;}
.y190{bottom:200.800000pt;}
.y9b{bottom:202.880000pt;}
.y119{bottom:203.680000pt;}
.y143{bottom:204.160000pt;}
.yf5{bottom:205.600000pt;}
.y96{bottom:206.560000pt;}
.y1cb{bottom:206.720000pt;}
.y20{bottom:209.920000pt;}
.y1ab{bottom:210.880000pt;}
.y43{bottom:213.600000pt;}
.y81{bottom:217.280000pt;}
.y172{bottom:217.440000pt;}
.yd9{bottom:220.000000pt;}
.y6a{bottom:220.320000pt;}
.ya2{bottom:220.640000pt;}
.y123{bottom:222.400000pt;}
.y10d{bottom:222.720000pt;}
.yb8{bottom:224.800000pt;}
.y15b{bottom:225.760000pt;}
.y1d3{bottom:227.831040pt;}
.y9a{bottom:230.560000pt;}
.y118{bottom:231.360000pt;}
.y142{bottom:231.840000pt;}
.y95{bottom:234.080000pt;}
.y1ca{bottom:234.400000pt;}
.y1f{bottom:237.600000pt;}
.y1aa{bottom:238.560000pt;}
.y42{bottom:241.120000pt;}
.y18f{bottom:241.600000pt;}
.yf4{bottom:244.000000pt;}
.y171{bottom:244.960000pt;}
.yd8{bottom:247.520000pt;}
.y69{bottom:247.840000pt;}
.ya1{bottom:248.160000pt;}
.y122{bottom:249.920000pt;}
.y10c{bottom:250.400000pt;}
.y15a{bottom:253.440000pt;}
.yb7{bottom:253.600000pt;}
.y1d2{bottom:257.756800pt;}
.y80{bottom:258.080000pt;}
.y117{bottom:258.880000pt;}
.y141{bottom:259.360000pt;}
.y94{bottom:261.600000pt;}
.y1c9{bottom:261.920000pt;}
.y1e{bottom:265.120000pt;}
.y1a9{bottom:266.080000pt;}
.y41{bottom:268.800000pt;}
.y18e{bottom:270.240000pt;}
.yf3{bottom:271.520000pt;}
.y170{bottom:272.640000pt;}
.yd7{bottom:275.200000pt;}
.y68{bottom:275.520000pt;}
.ya0{bottom:275.840000pt;}
.y121{bottom:277.600000pt;}
.y10b{bottom:277.920000pt;}
.y159{bottom:280.960000pt;}
.yb6{bottom:282.240000pt;}
.y7f{bottom:285.600000pt;}
.y116{bottom:286.400000pt;}
.y140{bottom:287.040000pt;}
.y1d1{bottom:287.682560pt;}
.y93{bottom:289.280000pt;}
.y1c8{bottom:289.600000pt;}
.y1d{bottom:292.800000pt;}
.y1a8{bottom:293.760000pt;}
.y40{bottom:296.320000pt;}
.y18d{bottom:299.040000pt;}
.yf2{bottom:299.200000pt;}
.y16f{bottom:300.160000pt;}
.yd6{bottom:302.720000pt;}
.y67{bottom:303.040000pt;}
.y120{bottom:305.120000pt;}
.y10a{bottom:305.600000pt;}
.y158{bottom:308.640000pt;}
.y9f{bottom:310.720000pt;}
.yb5{bottom:311.040000pt;}
.y7e{bottom:313.280000pt;}
.y115{bottom:314.080000pt;}
.y13f{bottom:314.560000pt;}
.y92{bottom:316.800000pt;}
.y1c7{bottom:317.120000pt;}
.y1d0{bottom:317.755520pt;}
.y1c{bottom:320.320000pt;}
.y1a7{bottom:321.280000pt;}
.y3f{bottom:324.000000pt;}
.y18c{bottom:327.840000pt;}
.yd5{bottom:330.400000pt;}
.y66{bottom:330.720000pt;}
.y11f{bottom:332.800000pt;}
.y109{bottom:333.120000pt;}
.yf1{bottom:333.600000pt;}
.y157{bottom:336.160000pt;}
.y16e{bottom:337.280000pt;}
.yb4{bottom:339.840000pt;}
.y7d{bottom:340.800000pt;}
.y114{bottom:341.600000pt;}
.y13e{bottom:342.080000pt;}
.y91{bottom:344.480000pt;}
.y1c6{bottom:344.800000pt;}
.y1cf{bottom:347.681280pt;}
.y1b{bottom:348.000000pt;}
.y1a6{bottom:348.960000pt;}
.y3e{bottom:351.520000pt;}
.y16d{bottom:354.560000pt;}
.y18b{bottom:356.640000pt;}
.yd4{bottom:357.920000pt;}
.y65{bottom:358.240000pt;}
.y108{bottom:360.800000pt;}
.y156{bottom:363.840000pt;}
.y7c{bottom:368.480000pt;}
.y113{bottom:369.280000pt;}
.y11e{bottom:369.760000pt;}
.y13d{bottom:370.880000pt;}
.yf0{bottom:371.840000pt;}
.y90{bottom:372.000000pt;}
.y1c5{bottom:372.320000pt;}
.y16c{bottom:372.960000pt;}
.y1a{bottom:375.520000pt;}
.y1a5{bottom:376.480000pt;}
.y1ce{bottom:377.754240pt;}
.yb3{bottom:378.080000pt;}
.y3d{bottom:379.200000pt;}
.y18a{bottom:384.160000pt;}
.yd3{bottom:385.600000pt;}
.y64{bottom:385.920000pt;}
.y107{bottom:388.320000pt;}
.y155{bottom:391.360000pt;}
.y11d{bottom:392.640000pt;}
.y7b{bottom:396.000000pt;}
.y112{bottom:396.800000pt;}
.yef{bottom:399.360000pt;}
.y13c{bottom:399.680000pt;}
.y1c4{bottom:400.000000pt;}
.y19{bottom:403.200000pt;}
.y3c{bottom:406.720000pt;}
.y16b{bottom:407.680000pt;}
.y8f{bottom:410.400000pt;}
.y189{bottom:412.960000pt;}
.yd2{bottom:413.120000pt;}
.y63{bottom:413.440000pt;}
.y106{bottom:416.000000pt;}
.y1a4{bottom:416.640000pt;}
.y154{bottom:419.040000pt;}
.y7a{bottom:423.680000pt;}
.y111{bottom:424.480000pt;}
.yee{bottom:427.040000pt;}
.y13b{bottom:427.360000pt;}
.y1c3{bottom:427.520000pt;}
.y18{bottom:430.720000pt;}
.y3b{bottom:434.400000pt;}
.yb2{bottom:435.520000pt;}
.y8e{bottom:437.920000pt;}
.y188{bottom:440.640000pt;}
.yd1{bottom:440.800000pt;}
.y62{bottom:441.120000pt;}
.y105{bottom:443.520000pt;}
.y153{bottom:446.560000pt;}
.y79{bottom:451.200000pt;}
.y5c{bottom:452.000000pt;}
.yed{bottom:454.560000pt;}
.y13a{bottom:454.880000pt;}
.y1c2{bottom:455.200000pt;}
.y1a3{bottom:457.280000pt;}
.y17{bottom:458.400000pt;}
.y3a{bottom:461.920000pt;}
.yb1{bottom:464.320000pt;}
.y8d{bottom:465.600000pt;}
.y187{bottom:468.160000pt;}
.yd0{bottom:468.320000pt;}
.y104{bottom:471.200000pt;}
.y152{bottom:474.240000pt;}
.y78{bottom:478.880000pt;}
.y61{bottom:479.204480pt;}
.y5b{bottom:479.680000pt;}
.yec{bottom:482.240000pt;}
.y139{bottom:482.400000pt;}
.y1c1{bottom:482.720000pt;}
.y1a2{bottom:484.960000pt;}
.y16{bottom:485.920000pt;}
.y39{bottom:489.600000pt;}
.yb0{bottom:492.960000pt;}
.y8c{bottom:493.120000pt;}
.y186{bottom:495.840000pt;}
.ycf{bottom:496.000000pt;}
.y103{bottom:498.720000pt;}
.y60{bottom:503.840000pt;}
.y151{bottom:504.640000pt;}
.y77{bottom:506.400000pt;}
.y5a{bottom:507.200000pt;}
.yeb{bottom:509.760000pt;}
.y138{bottom:509.920000pt;}
.y1c0{bottom:510.400000pt;}
.y1a1{bottom:512.480000pt;}
.y15{bottom:513.600000pt;}
.y38{bottom:517.120000pt;}
.y8b{bottom:520.800000pt;}
.yaf{bottom:521.760000pt;}
.y185{bottom:523.360000pt;}
.yce{bottom:523.520000pt;}
.y102{bottom:526.240000pt;}
.y76{bottom:534.080000pt;}
.y59{bottom:534.880000pt;}
.yea{bottom:537.440000pt;}
.y1bf{bottom:537.920000pt;}
.y137{bottom:538.880000pt;}
.y1a0{bottom:540.160000pt;}
.y14{bottom:541.120000pt;}
.y150{bottom:542.880000pt;}
.y37{bottom:544.800000pt;}
.y8a{bottom:548.320000pt;}
.yae{bottom:550.560000pt;}
.y184{bottom:551.040000pt;}
.ycd{bottom:551.200000pt;}
.y101{bottom:553.920000pt;}
.y75{bottom:561.600000pt;}
.y58{bottom:562.400000pt;}
.ye9{bottom:564.960000pt;}
.y1be{bottom:565.440000pt;}
.y19f{bottom:567.680000pt;}
.y13{bottom:568.800000pt;}
.y14f{bottom:570.560000pt;}
.y36{bottom:572.320000pt;}
.y136{bottom:573.760000pt;}
.y89{bottom:575.840000pt;}
.y183{bottom:578.560000pt;}
.yad{bottom:579.360000pt;}
.ycc{bottom:586.080000pt;}
.y100{bottom:588.800000pt;}
.y74{bottom:589.280000pt;}
.y57{bottom:590.080000pt;}
.ye8{bottom:592.640000pt;}
.y1bd{bottom:593.120000pt;}
.y19e{bottom:595.360000pt;}
.y12{bottom:596.320000pt;}
.y35{bottom:599.840000pt;}
.y88{bottom:603.520000pt;}
.y182{bottom:606.240000pt;}
.yac{bottom:607.040000pt;}
.y14e{bottom:608.640000pt;}
.y135{bottom:611.840000pt;}
.y73{bottom:616.800000pt;}
.y56{bottom:617.600000pt;}
.ye7{bottom:620.160000pt;}
.y1bc{bottom:620.640000pt;}
.y19d{bottom:622.880000pt;}
.y11{bottom:624.000000pt;}
.ycb{bottom:626.880000pt;}
.yff{bottom:627.040000pt;}
.y34{bottom:627.520000pt;}
.y181{bottom:633.760000pt;}
.yab{bottom:634.560000pt;}
.y14d{bottom:637.440000pt;}
.y134{bottom:639.520000pt;}
.y72{bottom:644.480000pt;}
.y55{bottom:645.280000pt;}
.ye6{bottom:647.840000pt;}
.y1bb{bottom:648.320000pt;}
.y19c{bottom:650.560000pt;}
.y10{bottom:651.520000pt;}
.yca{bottom:654.560000pt;}
.y33{bottom:655.040000pt;}
.y180{bottom:661.440000pt;}
.yaa{bottom:662.240000pt;}
.y14c{bottom:666.240000pt;}
.y133{bottom:667.040000pt;}
.y71{bottom:672.000000pt;}
.y54{bottom:672.800000pt;}
.ye5{bottom:675.360000pt;}
.y1ba{bottom:675.840000pt;}
.y19b{bottom:678.080000pt;}
.yf{bottom:679.200000pt;}
.yc9{bottom:682.080000pt;}
.yfe{bottom:682.240000pt;}
.y32{bottom:682.720000pt;}
.y17f{bottom:688.960000pt;}
.ya9{bottom:689.760000pt;}
.y16a{bottom:693.920000pt;}
.y132{bottom:694.720000pt;}
.y70{bottom:699.680000pt;}
.y53{bottom:700.480000pt;}
.ye4{bottom:703.040000pt;}
.y1b9{bottom:703.520000pt;}
.y14b{bottom:704.480000pt;}
.y19a{bottom:705.760000pt;}
.ye{bottom:706.720000pt;}
.yc8{bottom:709.760000pt;}
.y31{bottom:710.240000pt;}
.y17e{bottom:716.640000pt;}
.ya8{bottom:717.440000pt;}
.y169{bottom:721.440000pt;}
.y131{bottom:722.240000pt;}
.y6f{bottom:727.200000pt;}
.y52{bottom:728.000000pt;}
.ye3{bottom:730.560000pt;}
.y1b8{bottom:731.040000pt;}
.y14a{bottom:733.280000pt;}
.yd{bottom:734.400000pt;}
.yc7{bottom:737.280000pt;}
.y30{bottom:737.920000pt;}
.y17d{bottom:744.160000pt;}
.yfd{bottom:748.000000pt;}
.y168{bottom:749.120000pt;}
.y130{bottom:749.920000pt;}
.ya7{bottom:752.320000pt;}
.y87{bottom:754.880000pt;}
.y51{bottom:755.680000pt;}
.ye2{bottom:758.240000pt;}
.y1b7{bottom:758.720000pt;}
.y149{bottom:760.800000pt;}
.y199{bottom:760.960000pt;}
.yc{bottom:761.920000pt;}
.yc6{bottom:764.800000pt;}
.y2f{bottom:765.440000pt;}
.y17c{bottom:771.840000pt;}
.yfc{bottom:775.680000pt;}
.y167{bottom:776.640000pt;}
.y12f{bottom:777.440000pt;}
.y86{bottom:782.400000pt;}
.y50{bottom:783.200000pt;}
.y1b6{bottom:786.240000pt;}
.y198{bottom:788.480000pt;}
.yb{bottom:789.600000pt;}
.yc5{bottom:792.480000pt;}
.ye1{bottom:792.640000pt;}
.y2e{bottom:793.120000pt;}
.y17b{bottom:799.360000pt;}
.yfb{bottom:803.200000pt;}
.y166{bottom:804.320000pt;}
.y12e{bottom:805.120000pt;}
.y85{bottom:810.080000pt;}
.y4f{bottom:810.880000pt;}
.y1b5{bottom:813.920000pt;}
.y197{bottom:816.160000pt;}
.ya{bottom:817.120000pt;}
.y148{bottom:817.280000pt;}
.yc4{bottom:820.000000pt;}
.y2d{bottom:820.640000pt;}
.y17a{bottom:827.040000pt;}
.ye0{bottom:830.880000pt;}
.y165{bottom:831.840000pt;}
.y12d{bottom:832.640000pt;}
.y84{bottom:837.600000pt;}
.y4e{bottom:838.400000pt;}
.y1b4{bottom:841.440000pt;}
.y196{bottom:843.680000pt;}
.y9{bottom:844.800000pt;}
.y2c{bottom:848.320000pt;}
.y179{bottom:854.560000pt;}
.yc3{bottom:858.240000pt;}
.ydf{bottom:858.400000pt;}
.y164{bottom:859.520000pt;}
.y83{bottom:865.280000pt;}
.y4d{bottom:866.080000pt;}
.y1b3{bottom:869.120000pt;}
.y195{bottom:871.360000pt;}
.y8{bottom:872.320000pt;}
.y147{bottom:872.480000pt;}
.y12c{bottom:873.600000pt;}
.y2b{bottom:875.840000pt;}
.y178{bottom:882.080000pt;}
.yde{bottom:886.080000pt;}
.yc2{bottom:886.880000pt;}
.y163{bottom:887.040000pt;}
.y82{bottom:892.800000pt;}
.y4c{bottom:893.600000pt;}
.y1b2{bottom:896.640000pt;}
.y194{bottom:898.880000pt;}
.y146{bottom:899.840000pt;}
.y12b{bottom:901.120000pt;}
.y2a{bottom:903.520000pt;}
.y7{bottom:907.200000pt;}
.yfa{bottom:913.600000pt;}
.yc1{bottom:915.680000pt;}
.ydd{bottom:920.480000pt;}
.y4b{bottom:921.280000pt;}
.y1b1{bottom:924.320000pt;}
.y162{bottom:925.280000pt;}
.y193{bottom:926.560000pt;}
.y145{bottom:928.800000pt;}
.y12a{bottom:929.920000pt;}
.y29{bottom:931.040000pt;}
.yf9{bottom:941.280000pt;}
.y6{bottom:944.160000pt;}
.yc0{bottom:944.480000pt;}
.y177{bottom:948.000000pt;}
.y4a{bottom:948.800000pt;}
.y1b0{bottom:951.840000pt;}
.y161{bottom:953.920000pt;}
.y144{bottom:956.320000pt;}
.y129{bottom:957.600000pt;}
.y28{bottom:958.720000pt;}
.ybf{bottom:973.280000pt;}
.y5{bottom:975.526560pt;}
.yf8{bottom:975.680000pt;}
.y49{bottom:976.480000pt;}
.y1af{bottom:979.520000pt;}
.y160{bottom:982.720000pt;}
.y128{bottom:985.120000pt;}
.y27{bottom:986.240000pt;}
.y4{bottom:1003.680000pt;}
.y48{bottom:1004.000000pt;}
.y1ae{bottom:1007.040000pt;}
.ybe{bottom:1011.520000pt;}
.y127{bottom:1012.800000pt;}
.y26{bottom:1013.920000pt;}
.y47{bottom:1038.880000pt;}
.ybd{bottom:1040.160000pt;}
.y25{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.ha{height:48.558750pt;}
.h3{height:52.152500pt;}
.h2{height:56.156250pt;}
.h9{height:56.312500pt;}
.h7{height:56.687500pt;}
.h8{height:56.750000pt;}
.h5{height:57.031250pt;}
.h6{height:66.726562pt;}
.h4{height:75.851562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.x6{left:112.483520pt;}
.x7{left:118.400000pt;}
.x8{left:122.400000pt;}
.x4{left:141.600000pt;}
.xa{left:166.400000pt;}
.xf{left:169.440000pt;}
.xb{left:190.400000pt;}
.xd{left:212.800000pt;}
.xe{left:236.800000pt;}
.x3{left:262.560000pt;}
.x1{left:384.800000pt;}
.x5{left:536.320000pt;}
.xc{left:580.320000pt;}
.x9{left:600.320000pt;}
}




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