
    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_a5a14851f61104b79174929e.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_588a1727dc48181ade4b31f4.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_48a5035b3a1df8634cd7a953.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_c87af6b627080147edf33ce0.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_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c2a0a12472d4a07fc3ddb148.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dec01e997d3afd5ae1616d9d.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7231cce988c66ca93d3d5f0d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4f0195ea73583a148fb5e2b8.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls2c{letter-spacing:-0.728640px;}
.ls32{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.336960px;}
.ls7{letter-spacing:-0.331200px;}
.lsa{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.191520px;}
.ls33{letter-spacing:-0.168480px;}
.ls1b{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.336960px;}
.ls3d{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.727200px;}
.ls16{letter-spacing:1.440000px;}
.lse{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls25{letter-spacing:4.320000px;}
.ls19{letter-spacing:5.760000px;}
.ls31{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.200000px;}
.ls28{letter-spacing:7.920000px;}
.ls29{letter-spacing:8.640000px;}
.ls24{letter-spacing:9.360000px;}
.ls36{letter-spacing:10.080000px;}
.ls11{letter-spacing:10.800000px;}
.ls23{letter-spacing:11.520000px;}
.ls2{letter-spacing:12.240000px;}
.ls1d{letter-spacing:12.960000px;}
.ls27{letter-spacing:14.400000px;}
.ls35{letter-spacing:16.560000px;}
.ls4{letter-spacing:18.000000px;}
.ls3c{letter-spacing:18.864000px;}
.ls30{letter-spacing:19.440000px;}
.ls1e{letter-spacing:20.160000px;}
.ls34{letter-spacing:21.600000px;}
.ls1f{letter-spacing:22.320000px;}
.ls12{letter-spacing:23.040000px;}
.ls1a{letter-spacing:23.760000px;}
.ls10{letter-spacing:24.480000px;}
.ls3a{letter-spacing:25.200000px;}
.ls20{letter-spacing:27.360000px;}
.ls26{letter-spacing:30.240000px;}
.ls22{letter-spacing:30.384000px;}
.ls2f{letter-spacing:31.104000px;}
.ls2e{letter-spacing:34.704000px;}
.ls1c{letter-spacing:41.760000px;}
.ls5{letter-spacing:51.264000px;}
.ls2d{letter-spacing:54.864000px;}
.ls39{letter-spacing:60.624000px;}
.ls38{letter-spacing:96.624000px;}
.ls1{letter-spacing:159.264000px;}
.ls0{letter-spacing:194.400000px;}
.ls37{letter-spacing:846.000000px;}
.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;}
}
.ws5c{word-spacing:-21.396960px;}
.ws65{word-spacing:-20.891520px;}
.ws68{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.288000px;}
.ws14{word-spacing:-18.144000px;}
.ws41{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.928000px;}
.ws53{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws57{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws56{word-spacing:-16.228800px;}
.ws6f{word-spacing:-4.464000px;}
.ws2e{word-spacing:-4.320000px;}
.wsb{word-spacing:-3.600000px;}
.ws1d{word-spacing:-2.880000px;}
.ws27{word-spacing:-2.592000px;}
.ws16{word-spacing:-2.160000px;}
.ws72{word-spacing:-2.016000px;}
.ws62{word-spacing:-1.872000px;}
.ws3e{word-spacing:-1.440000px;}
.ws1a{word-spacing:-1.152000px;}
.ws59{word-spacing:-0.728640px;}
.ws13{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.505440px;}
.ws7{word-spacing:-0.336960px;}
.wsa{word-spacing:-0.288000px;}
.wsf{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.132480px;}
.ws6a{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:0.054000px;}
.ws71{word-spacing:0.072000px;}
.ws58{word-spacing:0.132480px;}
.ws31{word-spacing:0.144000px;}
.ws6{word-spacing:0.191520px;}
.wse{word-spacing:0.216000px;}
.ws9{word-spacing:0.288000px;}
.ws5{word-spacing:0.331200px;}
.ws20{word-spacing:0.336960px;}
.ws11{word-spacing:0.720000px;}
.ws5b{word-spacing:0.728640px;}
.ws73{word-spacing:0.936000px;}
.ws30{word-spacing:1.008000px;}
.ws42{word-spacing:1.440000px;}
.ws29{word-spacing:1.728000px;}
.ws54{word-spacing:2.160000px;}
.ws49{word-spacing:2.376000px;}
.ws3c{word-spacing:2.448000px;}
.ws4e{word-spacing:2.592000px;}
.ws1e{word-spacing:2.736000px;}
.ws1c{word-spacing:2.880000px;}
.ws74{word-spacing:3.024000px;}
.ws1b{word-spacing:3.168000px;}
.ws48{word-spacing:3.312000px;}
.ws3d{word-spacing:3.600000px;}
.ws2c{word-spacing:4.176000px;}
.ws18{word-spacing:4.320000px;}
.ws37{word-spacing:4.608000px;}
.ws3f{word-spacing:5.040000px;}
.ws40{word-spacing:5.328000px;}
.ws33{word-spacing:5.616000px;}
.ws34{word-spacing:5.760000px;}
.ws46{word-spacing:5.904000px;}
.ws43{word-spacing:6.048000px;}
.ws19{word-spacing:6.480000px;}
.ws26{word-spacing:7.200000px;}
.ws25{word-spacing:7.488000px;}
.ws28{word-spacing:7.920000px;}
.ws70{word-spacing:8.064000px;}
.ws63{word-spacing:8.640000px;}
.ws4f{word-spacing:9.360000px;}
.ws6e{word-spacing:9.648000px;}
.ws4c{word-spacing:10.080000px;}
.ws4b{word-spacing:10.368000px;}
.ws5d{word-spacing:10.656000px;}
.ws32{word-spacing:10.800000px;}
.ws61{word-spacing:11.088000px;}
.ws39{word-spacing:11.376000px;}
.ws38{word-spacing:11.520000px;}
.ws10{word-spacing:12.240000px;}
.ws67{word-spacing:12.528000px;}
.ws47{word-spacing:12.960000px;}
.ws23{word-spacing:13.680000px;}
.ws52{word-spacing:14.400000px;}
.ws55{word-spacing:14.688000px;}
.ws6d{word-spacing:16.560000px;}
.ws64{word-spacing:17.280000px;}
.ws2f{word-spacing:18.000000px;}
.ws5e{word-spacing:18.720000px;}
.ws6c{word-spacing:19.440000px;}
.ws45{word-spacing:20.160000px;}
.ws3b{word-spacing:22.320000px;}
.ws22{word-spacing:23.040000px;}
.ws2b{word-spacing:23.328000px;}
.ws1f{word-spacing:23.760000px;}
.ws44{word-spacing:24.336000px;}
.ws3a{word-spacing:24.480000px;}
.ws69{word-spacing:24.768000px;}
.ws66{word-spacing:25.200000px;}
.ws12{word-spacing:26.640000px;}
.ws17{word-spacing:27.360000px;}
.ws2d{word-spacing:29.520000px;}
.ws50{word-spacing:30.096000px;}
.ws4d{word-spacing:30.240000px;}
.ws51{word-spacing:30.528000px;}
.wsc{word-spacing:30.816000px;}
.wsd{word-spacing:30.960000px;}
.ws5f{word-spacing:31.680000px;}
.ws6b{word-spacing:31.968000px;}
.ws60{word-spacing:36.720000px;}
.ws4a{word-spacing:39.888000px;}
.ws36{word-spacing:41.328000px;}
.ws21{word-spacing:48.960000px;}
.ws35{word-spacing:105.840000px;}
.ws75{word-spacing:146.160000px;}
._29{margin-left:-9.825408px;}
._1a{margin-left:-5.040000px;}
._7{margin-left:-3.862080px;}
._a{margin-left:-2.833920px;}
._1{margin-left:-1.092960px;}
._0{width:1.139328px;}
._15{width:2.977344px;}
._18{width:4.785984px;}
._19{width:6.336000px;}
._3{width:7.416000px;}
._4{width:8.593344px;}
._5{width:10.296000px;}
._6{width:11.376000px;}
._9{width:12.672000px;}
._10{width:14.328000px;}
._c{width:15.624000px;}
._b{width:16.632000px;}
._2b{width:19.080000px;}
._27{width:20.160000px;}
._1d{width:22.057920px;}
._11{width:23.328000px;}
._12{width:24.336000px;}
._26{width:26.174016px;}
._1f{width:27.360000px;}
._16{width:29.376000px;}
._8{width:30.422592px;}
._17{width:31.602240px;}
._e{width:32.688000px;}
._f{width:33.696000px;}
._2c{width:36.288000px;}
._2{width:37.301040px;}
._23{width:39.358080px;}
._1e{width:41.124960px;}
._24{width:43.128000px;}
._13{width:46.944000px;}
._14{width:47.964672px;}
._1c{width:49.896000px;}
._25{width:52.776000px;}
._1b{width:84.960000px;}
._2a{width:103.680000px;}
._21{width:105.336000px;}
._22{width:106.500960px;}
._20{width:109.440000px;}
._30{width:146.532672px;}
._28{width:162.000000px;}
._d{width:194.400000px;}
._2e{width:267.840000px;}
._2f{width:269.280000px;}
._2d{width:545.328000px;}
._31{width:846.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{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;}
.y11e{bottom:3.600000px;}
.y11c{bottom:5.400000px;}
.yf5{bottom:7.020000px;}
.ye1{bottom:7.200000px;}
.y117{bottom:14.220000px;}
.yf6{bottom:23.760000px;}
.ye9{bottom:23.940000px;}
.y106{bottom:30.960000px;}
.y109{bottom:54.720000px;}
.yfa{bottom:56.160000px;}
.y2{bottom:57.060000px;}
.y113{bottom:70.560000px;}
.y1{bottom:77.760000px;}
.y10d{bottom:78.479850px;}
.yff{bottom:102.240000px;}
.ye3{bottom:105.300000px;}
.ydd{bottom:110.340000px;}
.y75{bottom:111.240000px;}
.y168{bottom:111.600000px;}
.yac{bottom:112.140000px;}
.y12e{bottom:118.440000px;}
.y104{bottom:118.980000px;}
.y136{bottom:121.680000px;}
.y5c{bottom:126.360000px;}
.y177{bottom:127.080000px;}
.y23{bottom:128.160000px;}
.y1ae{bottom:129.060000px;}
.yf7{bottom:129.420000px;}
.y146{bottom:134.100000px;}
.y90{bottom:136.800000px;}
.y190{bottom:139.320000px;}
.y69{bottom:140.927040px;}
.ydc{bottom:141.480000px;}
.y74{bottom:142.200000px;}
.y167{bottom:142.560000px;}
.yab{bottom:143.280000px;}
.ybf{bottom:147.060000px;}
.y44{bottom:149.040000px;}
.y12d{bottom:149.580000px;}
.y135{bottom:152.820000px;}
.yf4{bottom:154.080000px;}
.y5b{bottom:157.500000px;}
.y176{bottom:158.040000px;}
.y22{bottom:159.120000px;}
.y1ad{bottom:160.200000px;}
.y145{bottom:161.100000px;}
.y8f{bottom:167.760000px;}
.y18f{bottom:170.460000px;}
.ydb{bottom:172.440000px;}
.y73{bottom:173.160000px;}
.y166{bottom:173.700000px;}
.yaa{bottom:174.240000px;}
.y68{bottom:174.593520px;}
.ybe{bottom:178.200000px;}
.yea{bottom:178.560000px;}
.y43{bottom:180.000000px;}
.y12c{bottom:180.540000px;}
.y134{bottom:183.780000px;}
.yf3{bottom:185.580000px;}
.y5a{bottom:188.460000px;}
.y175{bottom:189.180000px;}
.y21{bottom:190.080000px;}
.y144{bottom:190.980000px;}
.y1ac{bottom:191.160000px;}
.yb8{bottom:192.600000px;}
.yeb{bottom:197.460000px;}
.y8e{bottom:198.720000px;}
.yda{bottom:203.580000px;}
.y72{bottom:204.300000px;}
.y165{bottom:204.660000px;}
.ya9{bottom:205.380000px;}
.y67{bottom:208.260000px;}
.ybd{bottom:209.160000px;}
.yf2{bottom:209.520000px;}
.y18e{bottom:209.700000px;}
.y42{bottom:211.140000px;}
.y12b{bottom:211.680000px;}
.y133{bottom:214.920000px;}
.y143{bottom:217.980000px;}
.y59{bottom:219.600000px;}
.y174{bottom:220.140000px;}
.y1ab{bottom:222.300000px;}
.y20{bottom:222.660000px;}
.yb7{bottom:223.560000px;}
.y191{bottom:228.420000px;}
.y8d{bottom:231.120000px;}
.yf1{bottom:233.280000px;}
.yd9{bottom:234.540000px;}
.y71{bottom:235.260000px;}
.y164{bottom:235.800000px;}
.ya8{bottom:236.340000px;}
.y66{bottom:238.320000px;}
.ybc{bottom:240.300000px;}
.y41{bottom:242.100000px;}
.y12a{bottom:242.640000px;}
.y132{bottom:245.880000px;}
.y173{bottom:251.280000px;}
.y18d{bottom:252.540000px;}
.y1aa{bottom:253.260000px;}
.y1f{bottom:253.620000px;}
.yb6{bottom:254.700000px;}
.yf0{bottom:257.040000px;}
.y58{bottom:261.360000px;}
.y8c{bottom:263.520000px;}
.yd8{bottom:265.500000px;}
.y163{bottom:266.760000px;}
.ya7{bottom:267.480000px;}
.ybb{bottom:271.260000px;}
.y40{bottom:273.240000px;}
.y65{bottom:280.080000px;}
.yef{bottom:280.800000px;}
.y172{bottom:282.240000px;}
.y70{bottom:283.140000px;}
.y18c{bottom:283.680000px;}
.y129{bottom:284.400000px;}
.y1e{bottom:284.760000px;}
.yb5{bottom:285.660000px;}
.y57{bottom:287.100000px;}
.y131{bottom:293.760000px;}
.y8b{bottom:294.480000px;}
.yd7{bottom:296.640000px;}
.y162{bottom:297.900000px;}
.ya6{bottom:298.440000px;}
.y128{bottom:299.880000px;}
.yba{bottom:302.400000px;}
.y3f{bottom:304.200000px;}
.yee{bottom:304.740000px;}
.y64{bottom:305.820000px;}
.y6f{bottom:308.700000px;}
.y171{bottom:313.200000px;}
.y18b{bottom:314.640000px;}
.y1a9{bottom:315.360000px;}
.y1d{bottom:315.720000px;}
.y127{bottom:322.380000px;}
.y130{bottom:323.460000px;}
.yb4{bottom:324.360000px;}
.y8a{bottom:326.880000px;}
.yd6{bottom:327.600000px;}
.yed{bottom:328.500000px;}
.y161{bottom:328.860000px;}
.ya5{bottom:329.580000px;}
.yb9{bottom:333.360000px;}
.y3e{bottom:335.340000px;}
.y170{bottom:344.340000px;}
.y126{bottom:344.880000px;}
.y18a{bottom:345.780000px;}
.y1a8{bottom:346.500000px;}
.y1c{bottom:346.680000px;}
.y12f{bottom:350.640000px;}
.yec{bottom:352.260000px;}
.y89{bottom:357.840000px;}
.yd5{bottom:358.740000px;}
.y160{bottom:360.000000px;}
.ya4{bottom:360.540000px;}
.yb3{bottom:364.500000px;}
.y3d{bottom:366.300000px;}
.y125{bottom:367.380000px;}
.y16f{bottom:375.300000px;}
.y189{bottom:376.740000px;}
.y1a7{bottom:377.460000px;}
.y1b{bottom:377.820000px;}
.yd4{bottom:389.700000px;}
.y124{bottom:389.880000px;}
.y88{bottom:390.240000px;}
.y15f{bottom:390.960000px;}
.ya3{bottom:391.680000px;}
.ye8{bottom:393.480000px;}
.yb2{bottom:395.460000px;}
.y3c{bottom:405.540000px;}
.y16e{bottom:406.440000px;}
.y188{bottom:407.880000px;}
.y1a6{bottom:408.600000px;}
.y1a{bottom:408.780000px;}
.y123{bottom:412.380000px;}
.ye2{bottom:418.140000px;}
.yd3{bottom:420.840000px;}
.y15e{bottom:422.100000px;}
.y87{bottom:422.460000px;}
.ya2{bottom:422.640000px;}
.yb1{bottom:426.600000px;}
.ye7{bottom:428.220000px;}
.y122{bottom:434.880000px;}
.y16d{bottom:437.400000px;}
.y187{bottom:438.840000px;}
.y1a5{bottom:439.560000px;}
.y19{bottom:439.920000px;}
.y3b{bottom:448.560000px;}
.yd2{bottom:451.800000px;}
.ye6{bottom:451.980000px;}
.y15d{bottom:453.060000px;}
.ya1{bottom:453.780000px;}
.y86{bottom:454.860000px;}
.y121{bottom:457.380000px;}
.yb0{bottom:457.560000px;}
.y16c{bottom:468.540000px;}
.y186{bottom:469.980000px;}
.y1a4{bottom:470.700000px;}
.y18{bottom:470.880000px;}
.ye5{bottom:475.920000px;}
.y3a{bottom:479.520000px;}
.y120{bottom:479.880000px;}
.yd1{bottom:482.940000px;}
.y15c{bottom:484.020000px;}
.ya0{bottom:484.740000px;}
.y85{bottom:487.260000px;}
.y142{bottom:487.444320px;}
.yaf{bottom:488.700000px;}
.y16b{bottom:499.500000px;}
.ye4{bottom:499.680000px;}
.y185{bottom:500.760000px;}
.y1a3{bottom:501.660000px;}
.y17{bottom:502.020000px;}
.y11f{bottom:502.380000px;}
.y39{bottom:510.480000px;}
.y9f{bottom:515.880000px;}
.y141{bottom:516.060000px;}
.y15b{bottom:516.240000px;}
.y84{bottom:518.400000px;}
.yae{bottom:519.660000px;}
.yd0{bottom:521.640000px;}
.y11d{bottom:524.880000px;}
.y16a{bottom:530.640000px;}
.y1a2{bottom:532.800000px;}
.y16{bottom:532.980000px;}
.y184{bottom:533.340000px;}
.y6e{bottom:537.480000px;}
.ye0{bottom:540.900000px;}
.y38{bottom:542.880000px;}
.y140{bottom:545.760000px;}
.y9e{bottom:546.840000px;}
.y11b{bottom:547.380000px;}
.y15a{bottom:548.640000px;}
.y83{bottom:549.360000px;}
.yad{bottom:550.800000px;}
.ycf{bottom:561.600000px;}
.y1a1{bottom:563.760000px;}
.y15{bottom:564.120000px;}
.y183{bottom:564.300000px;}
.y37{bottom:574.020000px;}
.y13f{bottom:576.900000px;}
.y9d{bottom:577.800000px;}
.y6d{bottom:579.060000px;}
.y159{bottom:581.040000px;}
.y63{bottom:581.760000px;}
.y11a{bottom:588.780000px;}
.yce{bottom:592.740000px;}
.ydf{bottom:594.900000px;}
.y14{bottom:595.080000px;}
.y182{bottom:595.440000px;}
.y36{bottom:604.980000px;}
.y62{bottom:605.700000px;}
.y13e{bottom:607.860000px;}
.y9c{bottom:608.940000px;}
.y56{bottom:612.180000px;}
.y82{bottom:612.900000px;}
.y158{bottom:613.260000px;}
.y119{bottom:619.920000px;}
.ycd{bottom:623.700000px;}
.yde{bottom:625.860000px;}
.y13{bottom:626.220000px;}
.y181{bottom:626.400000px;}
.y61{bottom:635.400000px;}
.y35{bottom:637.380000px;}
.y13d{bottom:638.820000px;}
.y9b{bottom:639.900000px;}
.y81{bottom:643.860000px;}
.y157{bottom:645.840000px;}
.y118{bottom:649.620000px;}
.ycc{bottom:654.840000px;}
.y55{bottom:655.200000px;}
.y1a0{bottom:656.820000px;}
.y12{bottom:657.180000px;}
.y180{bottom:657.360000px;}
.y60{bottom:661.140000px;}
.y112{bottom:665.820000px;}
.y34{bottom:668.520000px;}
.y13c{bottom:669.960000px;}
.y9a{bottom:671.040000px;}
.y80{bottom:674.820000px;}
.y156{bottom:676.800000px;}
.ycb{bottom:685.800000px;}
.y54{bottom:686.340000px;}
.y19f{bottom:687.960000px;}
.y11{bottom:688.320000px;}
.y115{bottom:688.860000px;}
.y17f{bottom:689.760000px;}
.y116{bottom:697.680000px;}
.y33{bottom:699.480000px;}
.y13b{bottom:700.920000px;}
.y99{bottom:702.000000px;}
.y7f{bottom:705.960000px;}
.y155{bottom:707.940000px;}
.y114{bottom:712.620000px;}
.yca{bottom:716.940000px;}
.y53{bottom:717.300000px;}
.y19e{bottom:718.920000px;}
.y10{bottom:719.280000px;}
.y17e{bottom:720.720000px;}
.y111{bottom:729.360000px;}
.y32{bottom:730.440000px;}
.y13a{bottom:732.060000px;}
.y98{bottom:733.140000px;}
.y7e{bottom:736.920000px;}
.y154{bottom:738.900000px;}
.yc9{bottom:747.900000px;}
.y52{bottom:748.440000px;}
.y19d{bottom:750.060000px;}
.yf{bottom:750.420000px;}
.y17d{bottom:753.300000px;}
.y110{bottom:754.020000px;}
.y31{bottom:762.840000px;}
.y139{bottom:763.020000px;}
.y97{bottom:764.100000px;}
.y7d{bottom:768.060000px;}
.y153{bottom:770.040000px;}
.y10c{bottom:778.500000px;}
.yc8{bottom:779.040000px;}
.y51{bottom:779.400000px;}
.y19c{bottom:781.020000px;}
.ye{bottom:781.380000px;}
.y17c{bottom:784.260000px;}
.y30{bottom:793.800000px;}
.y138{bottom:794.160000px;}
.y96{bottom:795.240000px;}
.y7c{bottom:799.020000px;}
.y152{bottom:801.000000px;}
.y10f{bottom:809.460000px;}
.yc7{bottom:810.000000px;}
.y50{bottom:810.540000px;}
.y19b{bottom:812.160000px;}
.yd{bottom:812.520000px;}
.y17b{bottom:815.220000px;}
.y169{bottom:818.280000px;}
.y5f{bottom:824.220000px;}
.y2f{bottom:826.200000px;}
.y7b{bottom:830.160000px;}
.y151{bottom:832.140000px;}
.y10e{bottom:833.220000px;}
.yc6{bottom:841.140000px;}
.y4f{bottom:841.500000px;}
.y137{bottom:843.120000px;}
.yc{bottom:843.300000px;}
.y17a{bottom:856.979850px;}
.y2e{bottom:857.340000px;}
.y7a{bottom:861.120000px;}
.y150{bottom:863.100000px;}
.y5e{bottom:865.800000px;}
.yc5{bottom:872.100000px;}
.y4e{bottom:872.640000px;}
.y19a{bottom:874.260000px;}
.y108{bottom:874.440000px;}
.yb{bottom:875.700000px;}
.y6c{bottom:875.880000px;}
.y10b{bottom:881.460000px;}
.y179{bottom:886.860000px;}
.y2d{bottom:888.300000px;}
.y5d{bottom:891.720000px;}
.y79{bottom:892.260000px;}
.yc4{bottom:903.240000px;}
.y4d{bottom:903.600000px;}
.y199{bottom:905.220000px;}
.y10a{bottom:905.400000px;}
.ya{bottom:908.280000px;}
.y14f{bottom:912.240000px;}
.y178{bottom:913.860000px;}
.y6b{bottom:917.640000px;}
.y2c{bottom:919.440000px;}
.y78{bottom:923.220000px;}
.yc3{bottom:934.200000px;}
.y4c{bottom:934.740000px;}
.y198{bottom:936.360000px;}
.y9{bottom:939.240000px;}
.y14e{bottom:943.200000px;}
.y6a{bottom:943.380000px;}
.y105{bottom:946.620000px;}
.y2b{bottom:950.220000px;}
.y95{bottom:950.400000px;}
.y107{bottom:953.640000px;}
.y77{bottom:954.360000px;}
.yc2{bottom:965.340000px;}
.y197{bottom:967.320000px;}
.y8{bottom:970.380000px;}
.y4b{bottom:973.440000px;}
.y14d{bottom:974.340000px;}
.y94{bottom:981.540000px;}
.y2a{bottom:982.800000px;}
.y76{bottom:985.320000px;}
.yfe{bottom:995.040000px;}
.yc1{bottom:996.300000px;}
.y196{bottom:998.460000px;}
.y103{bottom:1002.060000px;}
.y14c{bottom:1005.300000px;}
.y7{bottom:1009.620000px;}
.y93{bottom:1012.500000px;}
.y29{bottom:1013.760000px;}
.y4a{bottom:1016.460000px;}
.y102{bottom:1025.820000px;}
.y195{bottom:1029.420000px;}
.yc0{bottom:1035.540000px;}
.y14b{bottom:1036.440000px;}
.y92{bottom:1043.460000px;}
.y28{bottom:1044.900000px;}
.y49{bottom:1047.420000px;}
.y101{bottom:1049.580000px;}
.y194{bottom:1060.560000px;}
.y6{bottom:1061.460000px;}
.y14a{bottom:1067.400000px;}
.y100{bottom:1073.520000px;}
.y27{bottom:1075.860000px;}
.y48{bottom:1078.560000px;}
.y193{bottom:1091.520000px;}
.y149{bottom:1098.540000px;}
.y5{bottom:1101.609000px;}
.y91{bottom:1106.820000px;}
.y26{bottom:1108.260000px;}
.y47{bottom:1109.520000px;}
.yf9{bottom:1114.740000px;}
.y192{bottom:1122.660000px;}
.yfc{bottom:1123.380000px;}
.y4{bottom:1129.140000px;}
.y148{bottom:1129.500000px;}
.yfd{bottom:1139.220000px;}
.y25{bottom:1139.400000px;}
.y46{bottom:1140.660000px;}
.yfb{bottom:1147.140000px;}
.yf8{bottom:1163.880000px;}
.y147{bottom:1168.740000px;}
.y24{bottom:1170.180000px;}
.y45{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h16{height:22.498500px;}
.h17{height:22.500000px;}
.he{height:23.760000px;}
.hb{height:23.940000px;}
.h15{height:30.960000px;}
.h11{height:47.700000px;}
.h1a{height:52.435898px;}
.h9{height:54.628594px;}
.h18{height:58.121719px;}
.h3{height:58.671562px;}
.h8{height:59.027344px;}
.h2{height:63.175781px;}
.ha{height:63.351562px;}
.h7{height:63.773438px;}
.h19{height:63.843750px;}
.h5{height:64.160156px;}
.h12{height:71.461500px;}
.hf{height:72.900000px;}
.h6{height:75.067383px;}
.h4{height:85.333008px;}
.h14{height:87.300000px;}
.h13{height:95.220000px;}
.h10{height:118.980000px;}
.hc{height:122.040000px;}
.hd{height:214.198500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:50.220000px;}
.w9{width:50.400000px;}
.w7{width:50.401500px;}
.w3{width:121.320000px;}
.w5{width:193.500000px;}
.w4{width:233.280000px;}
.w6{width:235.080000px;}
.w2{width:285.480000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:5.400000px;}
.x13{left:7.740000px;}
.x12{left:9.720000px;}
.x28{left:16.200000px;}
.x29{left:24.300000px;}
.x19{left:40.320000px;}
.x10{left:41.580000px;}
.x15{left:44.820000px;}
.x18{left:49.320000px;}
.x1e{left:61.560000px;}
.xe{left:63.000000px;}
.x1b{left:67.140000px;}
.x1c{left:71.640000px;}
.xd{left:74.160000px;}
.x17{left:76.140000px;}
.x1d{left:85.140000px;}
.x20{left:98.640000px;}
.x2{left:106.200000px;}
.x14{left:114.840000px;}
.x4{left:133.200000px;}
.x2d{left:148.680000px;}
.x5{left:160.200000px;}
.x27{left:188.280000px;}
.x3{left:295.380000px;}
.x1f{left:299.700000px;}
.xf{left:393.300000px;}
.x1{left:437.400000px;}
.x16{left:442.620000px;}
.x1a{left:453.960000px;}
.x11{left:515.340000px;}
.x21{left:534.780000px;}
.xc{left:576.360000px;}
.xb{left:580.860000px;}
.x22{left:585.180000px;}
.x2c{left:587.700000px;}
.xa{left:603.720000px;}
.x2b{left:606.960000px;}
.x9{left:621.360000px;}
.x23{left:635.400000px;}
.x2a{left:642.600000px;}
.x8{left:655.740000px;}
.x7{left:677.700000px;}
.x24{left:685.800000px;}
.x6{left:687.780000px;}
.x25{left:736.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls2c{letter-spacing:-0.647680pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.299520pt;}
.ls7{letter-spacing:-0.294400pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.170240pt;}
.ls33{letter-spacing:-0.149760pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.299520pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.646400pt;}
.ls16{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls31{letter-spacing:5.760000pt;}
.ls14{letter-spacing:6.400000pt;}
.ls28{letter-spacing:7.040000pt;}
.ls29{letter-spacing:7.680000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls36{letter-spacing:8.960000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls23{letter-spacing:10.240000pt;}
.ls2{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:11.520000pt;}
.ls27{letter-spacing:12.800000pt;}
.ls35{letter-spacing:14.720000pt;}
.ls4{letter-spacing:16.000000pt;}
.ls3c{letter-spacing:16.768000pt;}
.ls30{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:17.920000pt;}
.ls34{letter-spacing:19.200000pt;}
.ls1f{letter-spacing:19.840000pt;}
.ls12{letter-spacing:20.480000pt;}
.ls1a{letter-spacing:21.120000pt;}
.ls10{letter-spacing:21.760000pt;}
.ls3a{letter-spacing:22.400000pt;}
.ls20{letter-spacing:24.320000pt;}
.ls26{letter-spacing:26.880000pt;}
.ls22{letter-spacing:27.008000pt;}
.ls2f{letter-spacing:27.648000pt;}
.ls2e{letter-spacing:30.848000pt;}
.ls1c{letter-spacing:37.120000pt;}
.ls5{letter-spacing:45.568000pt;}
.ls2d{letter-spacing:48.768000pt;}
.ls39{letter-spacing:53.888000pt;}
.ls38{letter-spacing:85.888000pt;}
.ls1{letter-spacing:141.568000pt;}
.ls0{letter-spacing:172.800000pt;}
.ls37{letter-spacing:752.000000pt;}
.ws5c{word-spacing:-19.019520pt;}
.ws65{word-spacing:-18.570240pt;}
.ws68{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws14{word-spacing:-16.128000pt;}
.ws41{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.936000pt;}
.ws53{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws57{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws56{word-spacing:-14.425600pt;}
.ws6f{word-spacing:-3.968000pt;}
.ws2e{word-spacing:-3.840000pt;}
.wsb{word-spacing:-3.200000pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws27{word-spacing:-2.304000pt;}
.ws16{word-spacing:-1.920000pt;}
.ws72{word-spacing:-1.792000pt;}
.ws62{word-spacing:-1.664000pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws1a{word-spacing:-1.024000pt;}
.ws59{word-spacing:-0.647680pt;}
.ws13{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.449280pt;}
.ws7{word-spacing:-0.299520pt;}
.wsa{word-spacing:-0.256000pt;}
.wsf{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.117760pt;}
.ws6a{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.048000pt;}
.ws71{word-spacing:0.064000pt;}
.ws58{word-spacing:0.117760pt;}
.ws31{word-spacing:0.128000pt;}
.ws6{word-spacing:0.170240pt;}
.wse{word-spacing:0.192000pt;}
.ws9{word-spacing:0.256000pt;}
.ws5{word-spacing:0.294400pt;}
.ws20{word-spacing:0.299520pt;}
.ws11{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.647680pt;}
.ws73{word-spacing:0.832000pt;}
.ws30{word-spacing:0.896000pt;}
.ws42{word-spacing:1.280000pt;}
.ws29{word-spacing:1.536000pt;}
.ws54{word-spacing:1.920000pt;}
.ws49{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.176000pt;}
.ws4e{word-spacing:2.304000pt;}
.ws1e{word-spacing:2.432000pt;}
.ws1c{word-spacing:2.560000pt;}
.ws74{word-spacing:2.688000pt;}
.ws1b{word-spacing:2.816000pt;}
.ws48{word-spacing:2.944000pt;}
.ws3d{word-spacing:3.200000pt;}
.ws2c{word-spacing:3.712000pt;}
.ws18{word-spacing:3.840000pt;}
.ws37{word-spacing:4.096000pt;}
.ws3f{word-spacing:4.480000pt;}
.ws40{word-spacing:4.736000pt;}
.ws33{word-spacing:4.992000pt;}
.ws34{word-spacing:5.120000pt;}
.ws46{word-spacing:5.248000pt;}
.ws43{word-spacing:5.376000pt;}
.ws19{word-spacing:5.760000pt;}
.ws26{word-spacing:6.400000pt;}
.ws25{word-spacing:6.656000pt;}
.ws28{word-spacing:7.040000pt;}
.ws70{word-spacing:7.168000pt;}
.ws63{word-spacing:7.680000pt;}
.ws4f{word-spacing:8.320000pt;}
.ws6e{word-spacing:8.576000pt;}
.ws4c{word-spacing:8.960000pt;}
.ws4b{word-spacing:9.216000pt;}
.ws5d{word-spacing:9.472000pt;}
.ws32{word-spacing:9.600000pt;}
.ws61{word-spacing:9.856000pt;}
.ws39{word-spacing:10.112000pt;}
.ws38{word-spacing:10.240000pt;}
.ws10{word-spacing:10.880000pt;}
.ws67{word-spacing:11.136000pt;}
.ws47{word-spacing:11.520000pt;}
.ws23{word-spacing:12.160000pt;}
.ws52{word-spacing:12.800000pt;}
.ws55{word-spacing:13.056000pt;}
.ws6d{word-spacing:14.720000pt;}
.ws64{word-spacing:15.360000pt;}
.ws2f{word-spacing:16.000000pt;}
.ws5e{word-spacing:16.640000pt;}
.ws6c{word-spacing:17.280000pt;}
.ws45{word-spacing:17.920000pt;}
.ws3b{word-spacing:19.840000pt;}
.ws22{word-spacing:20.480000pt;}
.ws2b{word-spacing:20.736000pt;}
.ws1f{word-spacing:21.120000pt;}
.ws44{word-spacing:21.632000pt;}
.ws3a{word-spacing:21.760000pt;}
.ws69{word-spacing:22.016000pt;}
.ws66{word-spacing:22.400000pt;}
.ws12{word-spacing:23.680000pt;}
.ws17{word-spacing:24.320000pt;}
.ws2d{word-spacing:26.240000pt;}
.ws50{word-spacing:26.752000pt;}
.ws4d{word-spacing:26.880000pt;}
.ws51{word-spacing:27.136000pt;}
.wsc{word-spacing:27.392000pt;}
.wsd{word-spacing:27.520000pt;}
.ws5f{word-spacing:28.160000pt;}
.ws6b{word-spacing:28.416000pt;}
.ws60{word-spacing:32.640000pt;}
.ws4a{word-spacing:35.456000pt;}
.ws36{word-spacing:36.736000pt;}
.ws21{word-spacing:43.520000pt;}
.ws35{word-spacing:94.080000pt;}
.ws75{word-spacing:129.920000pt;}
._29{margin-left:-8.733696pt;}
._1a{margin-left:-4.480000pt;}
._7{margin-left:-3.432960pt;}
._a{margin-left:-2.519040pt;}
._1{margin-left:-0.971520pt;}
._0{width:1.012736pt;}
._15{width:2.646528pt;}
._18{width:4.254208pt;}
._19{width:5.632000pt;}
._3{width:6.592000pt;}
._4{width:7.638528pt;}
._5{width:9.152000pt;}
._6{width:10.112000pt;}
._9{width:11.264000pt;}
._10{width:12.736000pt;}
._c{width:13.888000pt;}
._b{width:14.784000pt;}
._2b{width:16.960000pt;}
._27{width:17.920000pt;}
._1d{width:19.607040pt;}
._11{width:20.736000pt;}
._12{width:21.632000pt;}
._26{width:23.265792pt;}
._1f{width:24.320000pt;}
._16{width:26.112000pt;}
._8{width:27.042304pt;}
._17{width:28.090880pt;}
._e{width:29.056000pt;}
._f{width:29.952000pt;}
._2c{width:32.256000pt;}
._2{width:33.156480pt;}
._23{width:34.984960pt;}
._1e{width:36.555520pt;}
._24{width:38.336000pt;}
._13{width:41.728000pt;}
._14{width:42.635264pt;}
._1c{width:44.352000pt;}
._25{width:46.912000pt;}
._1b{width:75.520000pt;}
._2a{width:92.160000pt;}
._21{width:93.632000pt;}
._22{width:94.667520pt;}
._20{width:97.280000pt;}
._30{width:130.251264pt;}
._28{width:144.000000pt;}
._d{width:172.800000pt;}
._2e{width:238.080000pt;}
._2f{width:239.360000pt;}
._2d{width:484.736000pt;}
._31{width:752.000000pt;}
.fs4{font-size:48.000000pt;}
.fs5{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;}
.y11e{bottom:3.200000pt;}
.y11c{bottom:4.800000pt;}
.yf5{bottom:6.240000pt;}
.ye1{bottom:6.400000pt;}
.y117{bottom:12.640000pt;}
.yf6{bottom:21.120000pt;}
.ye9{bottom:21.280000pt;}
.y106{bottom:27.520000pt;}
.y109{bottom:48.640000pt;}
.yfa{bottom:49.920000pt;}
.y2{bottom:50.720000pt;}
.y113{bottom:62.720000pt;}
.y1{bottom:69.120000pt;}
.y10d{bottom:69.759867pt;}
.yff{bottom:90.880000pt;}
.ye3{bottom:93.600000pt;}
.ydd{bottom:98.080000pt;}
.y75{bottom:98.880000pt;}
.y168{bottom:99.200000pt;}
.yac{bottom:99.680000pt;}
.y12e{bottom:105.280000pt;}
.y104{bottom:105.760000pt;}
.y136{bottom:108.160000pt;}
.y5c{bottom:112.320000pt;}
.y177{bottom:112.960000pt;}
.y23{bottom:113.920000pt;}
.y1ae{bottom:114.720000pt;}
.yf7{bottom:115.040000pt;}
.y146{bottom:119.200000pt;}
.y90{bottom:121.600000pt;}
.y190{bottom:123.840000pt;}
.y69{bottom:125.268480pt;}
.ydc{bottom:125.760000pt;}
.y74{bottom:126.400000pt;}
.y167{bottom:126.720000pt;}
.yab{bottom:127.360000pt;}
.ybf{bottom:130.720000pt;}
.y44{bottom:132.480000pt;}
.y12d{bottom:132.960000pt;}
.y135{bottom:135.840000pt;}
.yf4{bottom:136.960000pt;}
.y5b{bottom:140.000000pt;}
.y176{bottom:140.480000pt;}
.y22{bottom:141.440000pt;}
.y1ad{bottom:142.400000pt;}
.y145{bottom:143.200000pt;}
.y8f{bottom:149.120000pt;}
.y18f{bottom:151.520000pt;}
.ydb{bottom:153.280000pt;}
.y73{bottom:153.920000pt;}
.y166{bottom:154.400000pt;}
.yaa{bottom:154.880000pt;}
.y68{bottom:155.194240pt;}
.ybe{bottom:158.400000pt;}
.yea{bottom:158.720000pt;}
.y43{bottom:160.000000pt;}
.y12c{bottom:160.480000pt;}
.y134{bottom:163.360000pt;}
.yf3{bottom:164.960000pt;}
.y5a{bottom:167.520000pt;}
.y175{bottom:168.160000pt;}
.y21{bottom:168.960000pt;}
.y144{bottom:169.760000pt;}
.y1ac{bottom:169.920000pt;}
.yb8{bottom:171.200000pt;}
.yeb{bottom:175.520000pt;}
.y8e{bottom:176.640000pt;}
.yda{bottom:180.960000pt;}
.y72{bottom:181.600000pt;}
.y165{bottom:181.920000pt;}
.ya9{bottom:182.560000pt;}
.y67{bottom:185.120000pt;}
.ybd{bottom:185.920000pt;}
.yf2{bottom:186.240000pt;}
.y18e{bottom:186.400000pt;}
.y42{bottom:187.680000pt;}
.y12b{bottom:188.160000pt;}
.y133{bottom:191.040000pt;}
.y143{bottom:193.760000pt;}
.y59{bottom:195.200000pt;}
.y174{bottom:195.680000pt;}
.y1ab{bottom:197.600000pt;}
.y20{bottom:197.920000pt;}
.yb7{bottom:198.720000pt;}
.y191{bottom:203.040000pt;}
.y8d{bottom:205.440000pt;}
.yf1{bottom:207.360000pt;}
.yd9{bottom:208.480000pt;}
.y71{bottom:209.120000pt;}
.y164{bottom:209.600000pt;}
.ya8{bottom:210.080000pt;}
.y66{bottom:211.840000pt;}
.ybc{bottom:213.600000pt;}
.y41{bottom:215.200000pt;}
.y12a{bottom:215.680000pt;}
.y132{bottom:218.560000pt;}
.y173{bottom:223.360000pt;}
.y18d{bottom:224.480000pt;}
.y1aa{bottom:225.120000pt;}
.y1f{bottom:225.440000pt;}
.yb6{bottom:226.400000pt;}
.yf0{bottom:228.480000pt;}
.y58{bottom:232.320000pt;}
.y8c{bottom:234.240000pt;}
.yd8{bottom:236.000000pt;}
.y163{bottom:237.120000pt;}
.ya7{bottom:237.760000pt;}
.ybb{bottom:241.120000pt;}
.y40{bottom:242.880000pt;}
.y65{bottom:248.960000pt;}
.yef{bottom:249.600000pt;}
.y172{bottom:250.880000pt;}
.y70{bottom:251.680000pt;}
.y18c{bottom:252.160000pt;}
.y129{bottom:252.800000pt;}
.y1e{bottom:253.120000pt;}
.yb5{bottom:253.920000pt;}
.y57{bottom:255.200000pt;}
.y131{bottom:261.120000pt;}
.y8b{bottom:261.760000pt;}
.yd7{bottom:263.680000pt;}
.y162{bottom:264.800000pt;}
.ya6{bottom:265.280000pt;}
.y128{bottom:266.560000pt;}
.yba{bottom:268.800000pt;}
.y3f{bottom:270.400000pt;}
.yee{bottom:270.880000pt;}
.y64{bottom:271.840000pt;}
.y6f{bottom:274.400000pt;}
.y171{bottom:278.400000pt;}
.y18b{bottom:279.680000pt;}
.y1a9{bottom:280.320000pt;}
.y1d{bottom:280.640000pt;}
.y127{bottom:286.560000pt;}
.y130{bottom:287.520000pt;}
.yb4{bottom:288.320000pt;}
.y8a{bottom:290.560000pt;}
.yd6{bottom:291.200000pt;}
.yed{bottom:292.000000pt;}
.y161{bottom:292.320000pt;}
.ya5{bottom:292.960000pt;}
.yb9{bottom:296.320000pt;}
.y3e{bottom:298.080000pt;}
.y170{bottom:306.080000pt;}
.y126{bottom:306.560000pt;}
.y18a{bottom:307.360000pt;}
.y1a8{bottom:308.000000pt;}
.y1c{bottom:308.160000pt;}
.y12f{bottom:311.680000pt;}
.yec{bottom:313.120000pt;}
.y89{bottom:318.080000pt;}
.yd5{bottom:318.880000pt;}
.y160{bottom:320.000000pt;}
.ya4{bottom:320.480000pt;}
.yb3{bottom:324.000000pt;}
.y3d{bottom:325.600000pt;}
.y125{bottom:326.560000pt;}
.y16f{bottom:333.600000pt;}
.y189{bottom:334.880000pt;}
.y1a7{bottom:335.520000pt;}
.y1b{bottom:335.840000pt;}
.yd4{bottom:346.400000pt;}
.y124{bottom:346.560000pt;}
.y88{bottom:346.880000pt;}
.y15f{bottom:347.520000pt;}
.ya3{bottom:348.160000pt;}
.ye8{bottom:349.760000pt;}
.yb2{bottom:351.520000pt;}
.y3c{bottom:360.480000pt;}
.y16e{bottom:361.280000pt;}
.y188{bottom:362.560000pt;}
.y1a6{bottom:363.200000pt;}
.y1a{bottom:363.360000pt;}
.y123{bottom:366.560000pt;}
.ye2{bottom:371.680000pt;}
.yd3{bottom:374.080000pt;}
.y15e{bottom:375.200000pt;}
.y87{bottom:375.520000pt;}
.ya2{bottom:375.680000pt;}
.yb1{bottom:379.200000pt;}
.ye7{bottom:380.640000pt;}
.y122{bottom:386.560000pt;}
.y16d{bottom:388.800000pt;}
.y187{bottom:390.080000pt;}
.y1a5{bottom:390.720000pt;}
.y19{bottom:391.040000pt;}
.y3b{bottom:398.720000pt;}
.yd2{bottom:401.600000pt;}
.ye6{bottom:401.760000pt;}
.y15d{bottom:402.720000pt;}
.ya1{bottom:403.360000pt;}
.y86{bottom:404.320000pt;}
.y121{bottom:406.560000pt;}
.yb0{bottom:406.720000pt;}
.y16c{bottom:416.480000pt;}
.y186{bottom:417.760000pt;}
.y1a4{bottom:418.400000pt;}
.y18{bottom:418.560000pt;}
.ye5{bottom:423.040000pt;}
.y3a{bottom:426.240000pt;}
.y120{bottom:426.560000pt;}
.yd1{bottom:429.280000pt;}
.y15c{bottom:430.240000pt;}
.ya0{bottom:430.880000pt;}
.y85{bottom:433.120000pt;}
.y142{bottom:433.283840pt;}
.yaf{bottom:434.400000pt;}
.y16b{bottom:444.000000pt;}
.ye4{bottom:444.160000pt;}
.y185{bottom:445.120000pt;}
.y1a3{bottom:445.920000pt;}
.y17{bottom:446.240000pt;}
.y11f{bottom:446.560000pt;}
.y39{bottom:453.760000pt;}
.y9f{bottom:458.560000pt;}
.y141{bottom:458.720000pt;}
.y15b{bottom:458.880000pt;}
.y84{bottom:460.800000pt;}
.yae{bottom:461.920000pt;}
.yd0{bottom:463.680000pt;}
.y11d{bottom:466.560000pt;}
.y16a{bottom:471.680000pt;}
.y1a2{bottom:473.600000pt;}
.y16{bottom:473.760000pt;}
.y184{bottom:474.080000pt;}
.y6e{bottom:477.760000pt;}
.ye0{bottom:480.800000pt;}
.y38{bottom:482.560000pt;}
.y140{bottom:485.120000pt;}
.y9e{bottom:486.080000pt;}
.y11b{bottom:486.560000pt;}
.y15a{bottom:487.680000pt;}
.y83{bottom:488.320000pt;}
.yad{bottom:489.600000pt;}
.ycf{bottom:499.200000pt;}
.y1a1{bottom:501.120000pt;}
.y15{bottom:501.440000pt;}
.y183{bottom:501.600000pt;}
.y37{bottom:510.240000pt;}
.y13f{bottom:512.800000pt;}
.y9d{bottom:513.600000pt;}
.y6d{bottom:514.720000pt;}
.y159{bottom:516.480000pt;}
.y63{bottom:517.120000pt;}
.y11a{bottom:523.360000pt;}
.yce{bottom:526.880000pt;}
.ydf{bottom:528.800000pt;}
.y14{bottom:528.960000pt;}
.y182{bottom:529.280000pt;}
.y36{bottom:537.760000pt;}
.y62{bottom:538.400000pt;}
.y13e{bottom:540.320000pt;}
.y9c{bottom:541.280000pt;}
.y56{bottom:544.160000pt;}
.y82{bottom:544.800000pt;}
.y158{bottom:545.120000pt;}
.y119{bottom:551.040000pt;}
.ycd{bottom:554.400000pt;}
.yde{bottom:556.320000pt;}
.y13{bottom:556.640000pt;}
.y181{bottom:556.800000pt;}
.y61{bottom:564.800000pt;}
.y35{bottom:566.560000pt;}
.y13d{bottom:567.840000pt;}
.y9b{bottom:568.800000pt;}
.y81{bottom:572.320000pt;}
.y157{bottom:574.080000pt;}
.y118{bottom:577.440000pt;}
.ycc{bottom:582.080000pt;}
.y55{bottom:582.400000pt;}
.y1a0{bottom:583.840000pt;}
.y12{bottom:584.160000pt;}
.y180{bottom:584.320000pt;}
.y60{bottom:587.680000pt;}
.y112{bottom:591.840000pt;}
.y34{bottom:594.240000pt;}
.y13c{bottom:595.520000pt;}
.y9a{bottom:596.480000pt;}
.y80{bottom:599.840000pt;}
.y156{bottom:601.600000pt;}
.ycb{bottom:609.600000pt;}
.y54{bottom:610.080000pt;}
.y19f{bottom:611.520000pt;}
.y11{bottom:611.840000pt;}
.y115{bottom:612.320000pt;}
.y17f{bottom:613.120000pt;}
.y116{bottom:620.160000pt;}
.y33{bottom:621.760000pt;}
.y13b{bottom:623.040000pt;}
.y99{bottom:624.000000pt;}
.y7f{bottom:627.520000pt;}
.y155{bottom:629.280000pt;}
.y114{bottom:633.440000pt;}
.yca{bottom:637.280000pt;}
.y53{bottom:637.600000pt;}
.y19e{bottom:639.040000pt;}
.y10{bottom:639.360000pt;}
.y17e{bottom:640.640000pt;}
.y111{bottom:648.320000pt;}
.y32{bottom:649.280000pt;}
.y13a{bottom:650.720000pt;}
.y98{bottom:651.680000pt;}
.y7e{bottom:655.040000pt;}
.y154{bottom:656.800000pt;}
.yc9{bottom:664.800000pt;}
.y52{bottom:665.280000pt;}
.y19d{bottom:666.720000pt;}
.yf{bottom:667.040000pt;}
.y17d{bottom:669.600000pt;}
.y110{bottom:670.240000pt;}
.y31{bottom:678.080000pt;}
.y139{bottom:678.240000pt;}
.y97{bottom:679.200000pt;}
.y7d{bottom:682.720000pt;}
.y153{bottom:684.480000pt;}
.y10c{bottom:692.000000pt;}
.yc8{bottom:692.480000pt;}
.y51{bottom:692.800000pt;}
.y19c{bottom:694.240000pt;}
.ye{bottom:694.560000pt;}
.y17c{bottom:697.120000pt;}
.y30{bottom:705.600000pt;}
.y138{bottom:705.920000pt;}
.y96{bottom:706.880000pt;}
.y7c{bottom:710.240000pt;}
.y152{bottom:712.000000pt;}
.y10f{bottom:719.520000pt;}
.yc7{bottom:720.000000pt;}
.y50{bottom:720.480000pt;}
.y19b{bottom:721.920000pt;}
.yd{bottom:722.240000pt;}
.y17b{bottom:724.640000pt;}
.y169{bottom:727.360000pt;}
.y5f{bottom:732.640000pt;}
.y2f{bottom:734.400000pt;}
.y7b{bottom:737.920000pt;}
.y151{bottom:739.680000pt;}
.y10e{bottom:740.640000pt;}
.yc6{bottom:747.680000pt;}
.y4f{bottom:748.000000pt;}
.y137{bottom:749.440000pt;}
.yc{bottom:749.600000pt;}
.y17a{bottom:761.759867pt;}
.y2e{bottom:762.080000pt;}
.y7a{bottom:765.440000pt;}
.y150{bottom:767.200000pt;}
.y5e{bottom:769.600000pt;}
.yc5{bottom:775.200000pt;}
.y4e{bottom:775.680000pt;}
.y19a{bottom:777.120000pt;}
.y108{bottom:777.280000pt;}
.yb{bottom:778.400000pt;}
.y6c{bottom:778.560000pt;}
.y10b{bottom:783.520000pt;}
.y179{bottom:788.320000pt;}
.y2d{bottom:789.600000pt;}
.y5d{bottom:792.640000pt;}
.y79{bottom:793.120000pt;}
.yc4{bottom:802.880000pt;}
.y4d{bottom:803.200000pt;}
.y199{bottom:804.640000pt;}
.y10a{bottom:804.800000pt;}
.ya{bottom:807.360000pt;}
.y14f{bottom:810.880000pt;}
.y178{bottom:812.320000pt;}
.y6b{bottom:815.680000pt;}
.y2c{bottom:817.280000pt;}
.y78{bottom:820.640000pt;}
.yc3{bottom:830.400000pt;}
.y4c{bottom:830.880000pt;}
.y198{bottom:832.320000pt;}
.y9{bottom:834.880000pt;}
.y14e{bottom:838.400000pt;}
.y6a{bottom:838.560000pt;}
.y105{bottom:841.440000pt;}
.y2b{bottom:844.640000pt;}
.y95{bottom:844.800000pt;}
.y107{bottom:847.680000pt;}
.y77{bottom:848.320000pt;}
.yc2{bottom:858.080000pt;}
.y197{bottom:859.840000pt;}
.y8{bottom:862.560000pt;}
.y4b{bottom:865.280000pt;}
.y14d{bottom:866.080000pt;}
.y94{bottom:872.480000pt;}
.y2a{bottom:873.600000pt;}
.y76{bottom:875.840000pt;}
.yfe{bottom:884.480000pt;}
.yc1{bottom:885.600000pt;}
.y196{bottom:887.520000pt;}
.y103{bottom:890.720000pt;}
.y14c{bottom:893.600000pt;}
.y7{bottom:897.440000pt;}
.y93{bottom:900.000000pt;}
.y29{bottom:901.120000pt;}
.y4a{bottom:903.520000pt;}
.y102{bottom:911.840000pt;}
.y195{bottom:915.040000pt;}
.yc0{bottom:920.480000pt;}
.y14b{bottom:921.280000pt;}
.y92{bottom:927.520000pt;}
.y28{bottom:928.800000pt;}
.y49{bottom:931.040000pt;}
.y101{bottom:932.960000pt;}
.y194{bottom:942.720000pt;}
.y6{bottom:943.520000pt;}
.y14a{bottom:948.800000pt;}
.y100{bottom:954.240000pt;}
.y27{bottom:956.320000pt;}
.y48{bottom:958.720000pt;}
.y193{bottom:970.240000pt;}
.y149{bottom:976.480000pt;}
.y5{bottom:979.208000pt;}
.y91{bottom:983.840000pt;}
.y26{bottom:985.120000pt;}
.y47{bottom:986.240000pt;}
.yf9{bottom:990.880000pt;}
.y192{bottom:997.920000pt;}
.yfc{bottom:998.560000pt;}
.y4{bottom:1003.680000pt;}
.y148{bottom:1004.000000pt;}
.yfd{bottom:1012.640000pt;}
.y25{bottom:1012.800000pt;}
.y46{bottom:1013.920000pt;}
.yfb{bottom:1019.680000pt;}
.yf8{bottom:1034.560000pt;}
.y147{bottom:1038.880000pt;}
.y24{bottom:1040.160000pt;}
.y45{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h16{height:19.998667pt;}
.h17{height:20.000000pt;}
.he{height:21.120000pt;}
.hb{height:21.280000pt;}
.h15{height:27.520000pt;}
.h11{height:42.400000pt;}
.h1a{height:46.609688pt;}
.h9{height:48.558750pt;}
.h18{height:51.663750pt;}
.h3{height:52.152500pt;}
.h8{height:52.468750pt;}
.h2{height:56.156250pt;}
.ha{height:56.312500pt;}
.h7{height:56.687500pt;}
.h19{height:56.750000pt;}
.h5{height:57.031250pt;}
.h12{height:63.521333pt;}
.hf{height:64.800000pt;}
.h6{height:66.726562pt;}
.h4{height:75.851562pt;}
.h14{height:77.600000pt;}
.h13{height:84.640000pt;}
.h10{height:105.760000pt;}
.hc{height:108.480000pt;}
.hd{height:190.398667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:44.640000pt;}
.w9{width:44.800000pt;}
.w7{width:44.801333pt;}
.w3{width:107.840000pt;}
.w5{width:172.000000pt;}
.w4{width:207.360000pt;}
.w6{width:208.960000pt;}
.w2{width:253.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.800000pt;}
.x13{left:6.880000pt;}
.x12{left:8.640000pt;}
.x28{left:14.400000pt;}
.x29{left:21.600000pt;}
.x19{left:35.840000pt;}
.x10{left:36.960000pt;}
.x15{left:39.840000pt;}
.x18{left:43.840000pt;}
.x1e{left:54.720000pt;}
.xe{left:56.000000pt;}
.x1b{left:59.680000pt;}
.x1c{left:63.680000pt;}
.xd{left:65.920000pt;}
.x17{left:67.680000pt;}
.x1d{left:75.680000pt;}
.x20{left:87.680000pt;}
.x2{left:94.400000pt;}
.x14{left:102.080000pt;}
.x4{left:118.400000pt;}
.x2d{left:132.160000pt;}
.x5{left:142.400000pt;}
.x27{left:167.360000pt;}
.x3{left:262.560000pt;}
.x1f{left:266.400000pt;}
.xf{left:349.600000pt;}
.x1{left:388.800000pt;}
.x16{left:393.440000pt;}
.x1a{left:403.520000pt;}
.x11{left:458.080000pt;}
.x21{left:475.360000pt;}
.xc{left:512.320000pt;}
.xb{left:516.320000pt;}
.x22{left:520.160000pt;}
.x2c{left:522.400000pt;}
.xa{left:536.640000pt;}
.x2b{left:539.520000pt;}
.x9{left:552.320000pt;}
.x23{left:564.800000pt;}
.x2a{left:571.200000pt;}
.x8{left:582.880000pt;}
.x7{left:602.400000pt;}
.x24{left:609.600000pt;}
.x6{left:611.360000pt;}
.x25{left:654.400000pt;}
}




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