
    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_24be2b25cc2c7b0abe99f468.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_e8b76188a70e17cd4bc0ec77.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_feb1ed2f277fc45bdd52a0ea.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_e56a5a0be3fe9fe7b3b14773.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_1479272aedba169d8077a38a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_724b71cedb49c0a1ad5ac5d6.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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:33.140880px;}
.ls30{letter-spacing:-2.880000px;}
.ls3e{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.728640px;}
.ls27{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.596160px;}
.ls33{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.337680px;}
.lsa{letter-spacing:-0.336960px;}
.ls6{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.241200px;}
.ls20{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.152640px;}
.ls25{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.336960px;}
.ls18{letter-spacing:0.337680px;}
.ls14{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.383040px;}
.ls1c{letter-spacing:0.385920px;}
.ls0{letter-spacing:0.440496px;}
.ls19{letter-spacing:0.496080px;}
.ls2e{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.872640px;}
.ls10{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.880000px;}
.ls34{letter-spacing:4.320000px;}
.ls13{letter-spacing:4.327200px;}
.ls35{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.760000px;}
.ls29{letter-spacing:7.200000px;}
.ls38{letter-spacing:10.080000px;}
.ls2{letter-spacing:10.800000px;}
.ls4{letter-spacing:13.680000px;}
.ls17{letter-spacing:14.400000px;}
.lsf{letter-spacing:15.120000px;}
.ls31{letter-spacing:15.840000px;}
.ls37{letter-spacing:18.720000px;}
.ls3a{letter-spacing:20.160000px;}
.ls32{letter-spacing:21.600000px;}
.ls39{letter-spacing:23.760000px;}
.ls16{letter-spacing:30.240000px;}
.ls7{letter-spacing:30.960000px;}
.ls36{letter-spacing:31.680000px;}
.ls28{letter-spacing:33.984000px;}
.ls22{letter-spacing:50.400000px;}
.ls2c{letter-spacing:54.144000px;}
.ls8{letter-spacing:54.864000px;}
.ls3d{letter-spacing:59.904000px;}
.ls2b{letter-spacing:75.744000px;}
.ls3c{letter-spacing:95.904000px;}
.ls2a{letter-spacing:117.504000px;}
.ls3b{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;}
}
.ws6d{word-spacing:-18.720000px;}
.ws25{word-spacing:-18.288000px;}
.ws40{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws5b{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.856000px;}
.ws2f{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws6e{word-spacing:-17.568000px;}
.ws6f{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.891200px;}
.ws48{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.963840px;}
.wsd{word-spacing:-15.831360px;}
.ws27{word-spacing:-12.445920px;}
.ws26{word-spacing:-12.060000px;}
.ws30{word-spacing:-11.722320px;}
.ws2d{word-spacing:-4.464000px;}
.ws4e{word-spacing:-4.320000px;}
.ws58{word-spacing:-4.032000px;}
.ws9{word-spacing:-3.600000px;}
.ws33{word-spacing:-2.880000px;}
.ws3b{word-spacing:-2.160000px;}
.ws71{word-spacing:-2.016000px;}
.ws72{word-spacing:-1.872000px;}
.ws18{word-spacing:-1.440000px;}
.ws56{word-spacing:-1.152000px;}
.ws3f{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.505440px;}
.ws2e{word-spacing:-0.385920px;}
.wsf{word-spacing:-0.336960px;}
.ws15{word-spacing:-0.288000px;}
.ws64{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.054000px;}
.ws4f{word-spacing:0.072000px;}
.ws35{word-spacing:0.144000px;}
.ws3a{word-spacing:0.216000px;}
.ws36{word-spacing:0.241200px;}
.ws8{word-spacing:0.288000px;}
.wse{word-spacing:0.336960px;}
.ws32{word-spacing:0.337680px;}
.ws31{word-spacing:0.432000px;}
.ws5a{word-spacing:0.576000px;}
.ws28{word-spacing:0.720000px;}
.ws4a{word-spacing:0.936000px;}
.ws6a{word-spacing:1.296000px;}
.ws1b{word-spacing:1.440000px;}
.ws1a{word-spacing:2.160000px;}
.ws46{word-spacing:2.448000px;}
.ws3c{word-spacing:2.880000px;}
.ws45{word-spacing:3.168000px;}
.ws19{word-spacing:3.600000px;}
.ws47{word-spacing:3.888000px;}
.ws23{word-spacing:4.176000px;}
.ws24{word-spacing:4.320000px;}
.ws20{word-spacing:5.040000px;}
.ws1d{word-spacing:5.760000px;}
.ws1c{word-spacing:6.048000px;}
.ws4d{word-spacing:6.480000px;}
.ws6{word-spacing:7.200000px;}
.ws4b{word-spacing:7.488000px;}
.ws1f{word-spacing:7.920000px;}
.ws43{word-spacing:8.208000px;}
.ws67{word-spacing:8.496000px;}
.ws41{word-spacing:8.640000px;}
.ws59{word-spacing:8.928000px;}
.ws54{word-spacing:9.360000px;}
.ws66{word-spacing:9.936000px;}
.ws10{word-spacing:10.080000px;}
.ws51{word-spacing:10.800000px;}
.ws4c{word-spacing:11.520000px;}
.ws3e{word-spacing:12.240000px;}
.ws6b{word-spacing:12.528000px;}
.ws7{word-spacing:12.960000px;}
.ws5f{word-spacing:13.248000px;}
.ws1e{word-spacing:13.536000px;}
.wsb{word-spacing:13.680000px;}
.ws3d{word-spacing:13.968000px;}
.ws29{word-spacing:14.400000px;}
.ws2a{word-spacing:14.688000px;}
.ws34{word-spacing:15.120000px;}
.ws6c{word-spacing:15.408000px;}
.ws12{word-spacing:15.840000px;}
.ws42{word-spacing:16.560000px;}
.ws50{word-spacing:17.280000px;}
.ws49{word-spacing:18.000000px;}
.ws62{word-spacing:18.720000px;}
.ws53{word-spacing:19.440000px;}
.ws11{word-spacing:20.160000px;}
.ws44{word-spacing:20.880000px;}
.ws60{word-spacing:21.168000px;}
.ws65{word-spacing:21.456000px;}
.ws57{word-spacing:22.320000px;}
.ws13{word-spacing:23.040000px;}
.ws5e{word-spacing:23.760000px;}
.ws5d{word-spacing:24.048000px;}
.ws5c{word-spacing:24.480000px;}
.ws2c{word-spacing:25.920000px;}
.ws52{word-spacing:26.640000px;}
.ws63{word-spacing:28.800000px;}
.ws22{word-spacing:29.520000px;}
.ws61{word-spacing:30.240000px;}
.ws69{word-spacing:30.528000px;}
.ws2b{word-spacing:31.680000px;}
.ws21{word-spacing:31.968000px;}
.ws39{word-spacing:37.728000px;}
.ws70{word-spacing:38.880000px;}
.ws68{word-spacing:41.760000px;}
.ws38{word-spacing:50.256000px;}
.ws37{word-spacing:50.400000px;}
.ws55{word-spacing:66.240000px;}
._1b{margin-left:-5.170464px;}
._e{margin-left:-3.973536px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.066464px;}
._1{width:1.149120px;}
._11{width:2.160000px;}
._14{width:3.528000px;}
._10{width:4.536000px;}
._f{width:5.904000px;}
._4{width:7.128000px;}
._5{width:8.136000px;}
._9{width:10.124928px;}
._8{width:11.304000px;}
._a{width:12.672000px;}
._b{width:13.896000px;}
._2{width:15.192000px;}
._3{width:16.488000px;}
._19{width:19.127808px;}
._15{width:20.160000px;}
._12{width:21.384000px;}
._20{width:22.397760px;}
._18{width:23.402880px;}
._1c{width:25.416000px;}
._c{width:27.288000px;}
._d{width:28.584000px;}
._16{width:30.456000px;}
._17{width:31.680000px;}
._1a{width:32.976000px;}
._1d{width:34.704000px;}
._13{width:36.648000px;}
._25{width:37.676160px;}
._7{width:39.744000px;}
._21{width:40.896000px;}
._26{width:41.906880px;}
._27{width:43.402464px;}
._23{width:48.024000px;}
._24{width:49.032000px;}
._22{width:50.184000px;}
._1e{width:53.568000px;}
._1f{width:54.648000px;}
._28{width:846.072000px;}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.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;}
.y92{bottom:110.340000px;}
.y24{bottom:110.700000px;}
.y15d{bottom:112.140000px;}
.y52{bottom:113.400000px;}
.y12a{bottom:116.100000px;}
.y18b{bottom:122.760000px;}
.y9a{bottom:123.120000px;}
.y41{bottom:123.300000px;}
.yd6{bottom:127.080000px;}
.yf8{bottom:129.780000px;}
.yd0{bottom:130.500000px;}
.y147{bottom:135.540000px;}
.y73{bottom:140.580000px;}
.y91{bottom:141.480000px;}
.y23{bottom:141.840000px;}
.y107{bottom:142.020000px;}
.y15c{bottom:143.280000px;}
.y51{bottom:145.800000px;}
.yb9{bottom:146.520000px;}
.y129{bottom:147.060000px;}
.y126{bottom:147.240000px;}
.y18a{bottom:153.900000px;}
.y99{bottom:154.080000px;}
.y40{bottom:154.260000px;}
.yd5{bottom:158.040000px;}
.y1bb{bottom:160.200000px;}
.yf7{bottom:160.740000px;}
.ycf{bottom:161.460000px;}
.y146{bottom:166.500000px;}
.y72{bottom:171.720000px;}
.y90{bottom:172.440000px;}
.y22{bottom:172.800000px;}
.y106{bottom:172.980000px;}
.y15b{bottom:174.240000px;}
.y50{bottom:176.760000px;}
.yb8{bottom:177.480000px;}
.y125{bottom:178.200000px;}
.y16c{bottom:180.540000px;}
.y189{bottom:184.860000px;}
.y3f{bottom:185.220000px;}
.yd4{bottom:189.180000px;}
.y1ba{bottom:191.160000px;}
.yf6{bottom:191.880000px;}
.yce{bottom:192.600000px;}
.y145{bottom:197.640000px;}
.y71{bottom:202.680000px;}
.y8f{bottom:203.580000px;}
.y21{bottom:203.940000px;}
.y15a{bottom:205.380000px;}
.yb7{bottom:208.620000px;}
.y128{bottom:209.160000px;}
.y4f{bottom:209.340000px;}
.y124{bottom:210.600000px;}
.y16b{bottom:211.680000px;}
.y188{bottom:216.000000px;}
.y98{bottom:216.180000px;}
.yd3{bottom:220.140000px;}
.y1b9{bottom:222.300000px;}
.yf5{bottom:222.840000px;}
.ycd{bottom:223.560000px;}
.y144{bottom:228.600000px;}
.y3e{bottom:233.100000px;}
.y70{bottom:233.820000px;}
.y8e{bottom:234.540000px;}
.y20{bottom:234.900000px;}
.y105{bottom:235.080000px;}
.y159{bottom:236.340000px;}
.yb6{bottom:239.580000px;}
.y4e{bottom:240.300000px;}
.y123{bottom:241.560000px;}
.y16a{bottom:242.640000px;}
.y187{bottom:246.960000px;}
.yd2{bottom:251.280000px;}
.y1b8{bottom:253.260000px;}
.yf4{bottom:253.980000px;}
.ycc{bottom:254.700000px;}
.y97{bottom:259.380000px;}
.y143{bottom:259.740000px;}
.y6f{bottom:264.780000px;}
.y1f{bottom:266.040000px;}
.y3d{bottom:267.480000px;}
.yb5{bottom:270.720000px;}
.y4d{bottom:271.260000px;}
.y8d{bottom:273.240000px;}
.y169{bottom:273.600000px;}
.y122{bottom:274.140000px;}
.y186{bottom:278.100000px;}
.yd1{bottom:282.240000px;}
.y1b7{bottom:284.400000px;}
.ycb{bottom:285.660000px;}
.y142{bottom:290.700000px;}
.yf3{bottom:293.220000px;}
.y6e{bottom:295.920000px;}
.y1e{bottom:297.000000px;}
.y104{bottom:297.180000px;}
.y158{bottom:298.440000px;}
.yb4{bottom:301.680000px;}
.y96{bottom:302.400000px;}
.y4c{bottom:303.660000px;}
.y168{bottom:304.740000px;}
.y121{bottom:304.920000px;}
.y3c{bottom:306.540000px;}
.y185{bottom:309.060000px;}
.y8c{bottom:313.200000px;}
.y19d{bottom:315.000000px;}
.y1b6{bottom:315.360000px;}
.yca{bottom:316.800000px;}
.y141{bottom:321.840000px;}
.y6d{bottom:326.880000px;}
.y1d{bottom:328.140000px;}
.y157{bottom:329.580000px;}
.yb3{bottom:332.820000px;}
.y95{bottom:333.360000px;}
.y4b{bottom:334.620000px;}
.y167{bottom:335.700000px;}
.yf2{bottom:336.060000px;}
.y120{bottom:337.320000px;}
.y184{bottom:340.200000px;}
.y8b{bottom:344.340000px;}
.y1b5{bottom:346.500000px;}
.yc9{bottom:347.760000px;}
.y140{bottom:352.800000px;}
.y127{bottom:355.500000px;}
.y6c{bottom:358.020000px;}
.y1c{bottom:359.100000px;}
.y103{bottom:359.280000px;}
.y156{bottom:360.540000px;}
.yb2{bottom:363.780000px;}
.y94{bottom:364.500000px;}
.y166{bottom:366.840000px;}
.y4a{bottom:367.020000px;}
.yf1{bottom:367.200000px;}
.y11f{bottom:369.720000px;}
.y183{bottom:371.160000px;}
.ye5{bottom:375.300000px;}
.y1b4{bottom:377.460000px;}
.yc8{bottom:378.900000px;}
.y8a{bottom:383.580000px;}
.y13f{bottom:383.940000px;}
.y6b{bottom:388.980000px;}
.y1b{bottom:390.240000px;}
.y155{bottom:391.680000px;}
.yb1{bottom:394.920000px;}
.y93{bottom:395.460000px;}
.y165{bottom:397.800000px;}
.yf0{bottom:398.160000px;}
.y49{bottom:399.240000px;}
.y11e{bottom:400.680000px;}
.y182{bottom:402.300000px;}
.ye4{bottom:406.440000px;}
.y1b3{bottom:408.600000px;}
.yc7{bottom:409.860000px;}
.y13e{bottom:414.900000px;}
.y6a{bottom:420.120000px;}
.y1a{bottom:421.200000px;}
.y102{bottom:421.380000px;}
.y154{bottom:422.640000px;}
.yb0{bottom:425.880000px;}
.y89{bottom:426.600000px;}
.y164{bottom:428.940000px;}
.yef{bottom:429.300000px;}
.y48{bottom:431.640000px;}
.y11d{bottom:433.260000px;}
.ye3{bottom:437.400000px;}
.y1b2{bottom:439.560000px;}
.yc6{bottom:441.000000px;}
.y13d{bottom:445.860000px;}
.y69{bottom:451.080000px;}
.y19{bottom:452.160000px;}
.y101{bottom:452.340000px;}
.y153{bottom:453.780000px;}
.yaf{bottom:457.020000px;}
.y88{bottom:457.560000px;}
.y163{bottom:459.900000px;}
.yee{bottom:460.260000px;}
.y11c{bottom:464.220000px;}
.ye2{bottom:468.540000px;}
.y3b{bottom:469.800000px;}
.y1b1{bottom:470.700000px;}
.yc5{bottom:471.960000px;}
.y13c{bottom:477.000000px;}
.y47{bottom:479.520000px;}
.y181{bottom:480.960000px;}
.y68{bottom:482.220000px;}
.y18{bottom:483.300000px;}
.y100{bottom:483.480000px;}
.y152{bottom:484.740000px;}
.yae{bottom:487.980000px;}
.y87{bottom:488.700000px;}
.y162{bottom:491.040000px;}
.yed{bottom:491.400000px;}
.y11b{bottom:495.180000px;}
.ye1{bottom:499.500000px;}
.y3a{bottom:500.760000px;}
.y1b0{bottom:501.660000px;}
.yc4{bottom:503.100000px;}
.y46{bottom:505.260000px;}
.y13b{bottom:507.960000px;}
.y180{bottom:512.100000px;}
.y67{bottom:513.180000px;}
.y17{bottom:514.260000px;}
.yff{bottom:514.440000px;}
.y151{bottom:515.880000px;}
.yad{bottom:519.120000px;}
.y86{bottom:519.660000px;}
.y161{bottom:522.000000px;}
.yec{bottom:522.360000px;}
.y11a{bottom:527.580000px;}
.ye0{bottom:530.640000px;}
.y39{bottom:531.900000px;}
.y1af{bottom:532.800000px;}
.yc3{bottom:534.060000px;}
.y13a{bottom:539.100000px;}
.y17f{bottom:543.060000px;}
.y66{bottom:544.320000px;}
.y16{bottom:545.400000px;}
.yfe{bottom:545.580000px;}
.y150{bottom:546.840000px;}
.yac{bottom:550.080000px;}
.y85{bottom:550.800000px;}
.yeb{bottom:553.500000px;}
.y119{bottom:558.540000px;}
.ydf{bottom:561.600000px;}
.y38{bottom:562.860000px;}
.y1ae{bottom:563.760000px;}
.yc2{bottom:565.200000px;}
.y139{bottom:570.060000px;}
.y17e{bottom:574.200000px;}
.y65{bottom:575.100000px;}
.y19c{bottom:575.280000px;}
.y15{bottom:576.360000px;}
.y14f{bottom:577.800000px;}
.yab{bottom:581.220000px;}
.y84{bottom:581.760000px;}
.yea{bottom:584.460000px;}
.y118{bottom:590.940000px;}
.yde{bottom:592.740000px;}
.y37{bottom:594.000000px;}
.y1ad{bottom:594.900000px;}
.yc1{bottom:596.160000px;}
.y138{bottom:601.200000px;}
.y17d{bottom:605.160000px;}
.y19b{bottom:606.420000px;}
.y14{bottom:607.500000px;}
.y64{bottom:607.680000px;}
.yfd{bottom:608.940000px;}
.yaa{bottom:612.180000px;}
.y83{bottom:612.900000px;}
.ye9{bottom:615.600000px;}
.y117{bottom:621.900000px;}
.ydd{bottom:623.700000px;}
.y36{bottom:624.780000px;}
.y1ac{bottom:625.860000px;}
.yc0{bottom:627.120000px;}
.y137{bottom:632.160000px;}
.y17c{bottom:636.120000px;}
.y19a{bottom:637.380000px;}
.y13{bottom:638.460000px;}
.y63{bottom:638.640000px;}
.yfc{bottom:639.900000px;}
.ya9{bottom:643.320000px;}
.y82{bottom:643.860000px;}
.y116{bottom:654.300000px;}
.ydc{bottom:654.840000px;}
.y1ab{bottom:656.820000px;}
.y35{bottom:657.180000px;}
.ybf{bottom:658.260000px;}
.ye8{bottom:663.300000px;}
.y17b{bottom:667.260000px;}
.y199{bottom:668.520000px;}
.y12{bottom:669.600000px;}
.y62{bottom:669.780000px;}
.y14e{bottom:671.040000px;}
.yfb{bottom:672.300000px;}
.ya8{bottom:674.280000px;}
.y81{bottom:674.820000px;}
.y115{bottom:685.440000px;}
.ydb{bottom:685.800000px;}
.y1aa{bottom:687.960000px;}
.ybe{bottom:689.220000px;}
.y34{bottom:689.580000px;}
.y136{bottom:694.260000px;}
.ye7{bottom:697.680000px;}
.y17a{bottom:698.220000px;}
.y198{bottom:699.480000px;}
.y11{bottom:700.560000px;}
.y61{bottom:700.740000px;}
.y14d{bottom:702.000000px;}
.yfa{bottom:703.260000px;}
.ya7{bottom:705.420000px;}
.y80{bottom:705.960000px;}
.y114{bottom:716.400000px;}
.yda{bottom:716.940000px;}
.y1a9{bottom:718.920000px;}
.ybd{bottom:720.360000px;}
.y33{bottom:721.800000px;}
.ye6{bottom:724.680000px;}
.y135{bottom:726.480000px;}
.y179{bottom:729.360000px;}
.y197{bottom:730.620000px;}
.y10{bottom:731.700000px;}
.y60{bottom:731.880000px;}
.y14c{bottom:733.140000px;}
.yf9{bottom:735.480000px;}
.ya6{bottom:736.380000px;}
.y7f{bottom:736.920000px;}
.y113{bottom:747.360000px;}
.yd9{bottom:747.900000px;}
.y1a8{bottom:750.060000px;}
.ybc{bottom:751.320000px;}
.y32{bottom:754.200000px;}
.y134{bottom:759.060000px;}
.y178{bottom:760.320000px;}
.y196{bottom:761.580000px;}
.yf{bottom:762.660000px;}
.y5f{bottom:762.840000px;}
.y14b{bottom:764.100000px;}
.ya5{bottom:767.520000px;}
.y7e{bottom:768.060000px;}
.yd8{bottom:779.040000px;}
.y112{bottom:779.940000px;}
.y1a7{bottom:781.020000px;}
.ybb{bottom:782.460000px;}
.y31{bottom:786.600000px;}
.y133{bottom:789.840000px;}
.y177{bottom:791.460000px;}
.y195{bottom:792.720000px;}
.ye{bottom:793.800000px;}
.y14a{bottom:795.240000px;}
.ya4{bottom:798.480000px;}
.y7d{bottom:799.020000px;}
.y111{bottom:810.900000px;}
.y1a6{bottom:812.160000px;}
.y12d{bottom:813.420000px;}
.yd7{bottom:818.280000px;}
.y30{bottom:819.000000px;}
.yba{bottom:821.160000px;}
.y132{bottom:822.420000px;}
.y194{bottom:823.680000px;}
.yd{bottom:824.760000px;}
.y5e{bottom:826.200000px;}
.ya3{bottom:829.620000px;}
.y7c{bottom:830.160000px;}
.y110{bottom:841.860000px;}
.y1a5{bottom:843.120000px;}
.y12c{bottom:844.560000px;}
.y2f{bottom:850.140000px;}
.y131{bottom:853.380000px;}
.y176{bottom:853.560000px;}
.y193{bottom:854.820000px;}
.yc{bottom:855.900000px;}
.y5d{bottom:857.340000px;}
.ya2{bottom:860.580000px;}
.y7b{bottom:861.120000px;}
.y10f{bottom:874.260000px;}
.y160{bottom:875.520000px;}
.y2e{bottom:881.100000px;}
.y12b{bottom:883.260000px;}
.y175{bottom:884.520000px;}
.y130{bottom:885.600000px;}
.y192{bottom:885.780000px;}
.yb{bottom:886.860000px;}
.y5c{bottom:888.300000px;}
.y7a{bottom:892.260000px;}
.ya1{bottom:899.280000px;}
.y10e{bottom:905.220000px;}
.y15f{bottom:906.660000px;}
.y2d{bottom:912.240000px;}
.y174{bottom:915.660000px;}
.y191{bottom:916.740000px;}
.ya{bottom:918.000000px;}
.y149{bottom:919.440000px;}
.y5b{bottom:920.700000px;}
.y79{bottom:923.220000px;}
.y1a4{bottom:936.360000px;}
.y10d{bottom:937.620000px;}
.ya0{bottom:942.300000px;}
.y2c{bottom:943.200000px;}
.y173{bottom:946.620000px;}
.y9{bottom:948.960000px;}
.y190{bottom:949.140000px;}
.y12f{bottom:950.220000px;}
.y5a{bottom:951.660000px;}
.y78{bottom:954.360000px;}
.y1a3{bottom:967.320000px;}
.y10c{bottom:968.760000px;}
.y9f{bottom:973.440000px;}
.y2b{bottom:974.340000px;}
.y172{bottom:977.760000px;}
.y8{bottom:980.100000px;}
.y59{bottom:982.620000px;}
.y77{bottom:985.320000px;}
.y1a2{bottom:998.460000px;}
.y10b{bottom:999.720000px;}
.y9e{bottom:1004.400000px;}
.y2a{bottom:1005.300000px;}
.y15e{bottom:1007.460000px;}
.y171{bottom:1008.720000px;}
.y7{bottom:1011.060000px;}
.y18f{bottom:1012.320000px;}
.y12e{bottom:1015.020000px;}
.y58{bottom:1015.200000px;}
.y76{bottom:1016.460000px;}
.y1a1{bottom:1029.420000px;}
.y10a{bottom:1030.860000px;}
.y9d{bottom:1035.540000px;}
.y29{bottom:1036.440000px;}
.y170{bottom:1039.860000px;}
.y18e{bottom:1044.900000px;}
.y148{bottom:1045.980000px;}
.y57{bottom:1046.160000px;}
.y75{bottom:1047.420000px;}
.y6{bottom:1050.300000px;}
.y1a0{bottom:1060.560000px;}
.y109{bottom:1061.820000px;}
.y45{bottom:1066.500000px;}
.y28{bottom:1067.400000px;}
.y16f{bottom:1070.820000px;}
.y18d{bottom:1075.860000px;}
.y56{bottom:1077.300000px;}
.y74{bottom:1078.560000px;}
.y19f{bottom:1091.520000px;}
.y5{bottom:1093.320000px;}
.y9c{bottom:1097.640000px;}
.y27{bottom:1098.540000px;}
.y108{bottom:1100.520000px;}
.y16e{bottom:1101.960000px;}
.y18c{bottom:1108.080000px;}
.y55{bottom:1108.260000px;}
.y44{bottom:1109.520000px;}
.y19e{bottom:1122.660000px;}
.y9b{bottom:1128.600000px;}
.y4{bottom:1129.140000px;}
.y26{bottom:1129.500000px;}
.y16d{bottom:1132.920000px;}
.y54{bottom:1139.400000px;}
.y43{bottom:1140.660000px;}
.y25{bottom:1168.740000px;}
.y53{bottom:1170.180000px;}
.y42{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h3{height:58.671562px;}
.h2{height:63.175781px;}
.h7{height:63.773438px;}
.h5{height:64.160156px;}
.h8{height:69.687773px;}
.ha{height:70.088203px;}
.h9{height:70.109083px;}
.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;}
.xd{left:127.440000px;}
.x5{left:133.200000px;}
.xe{left:143.100000px;}
.x10{left:148.680000px;}
.x4{left:159.300000px;}
.xf{left:170.100000px;}
.x11{left:186.120000px;}
.x13{left:187.200000px;}
.x12{left:212.580000px;}
.x3{left:295.380000px;}
.xa{left:309.060000px;}
.x8{left:318.600000px;}
.xb{left:390.060000px;}
.x9{left:394.200000px;}
.x1{left:432.900000px;}
.xc{left:590.400000px;}
.x7{left:666.360000px;}
.x6{left:720.360000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:29.458560pt;}
.ls30{letter-spacing:-2.560000pt;}
.ls3e{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.647680pt;}
.ls27{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.529920pt;}
.ls33{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.300160pt;}
.lsa{letter-spacing:-0.299520pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.214400pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.135680pt;}
.ls25{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.299520pt;}
.ls18{letter-spacing:0.300160pt;}
.ls14{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.340480pt;}
.ls1c{letter-spacing:0.343040pt;}
.ls0{letter-spacing:0.391552pt;}
.ls19{letter-spacing:0.440960pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.775680pt;}
.ls10{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls34{letter-spacing:3.840000pt;}
.ls13{letter-spacing:3.846400pt;}
.ls35{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls29{letter-spacing:6.400000pt;}
.ls38{letter-spacing:8.960000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls4{letter-spacing:12.160000pt;}
.ls17{letter-spacing:12.800000pt;}
.lsf{letter-spacing:13.440000pt;}
.ls31{letter-spacing:14.080000pt;}
.ls37{letter-spacing:16.640000pt;}
.ls3a{letter-spacing:17.920000pt;}
.ls32{letter-spacing:19.200000pt;}
.ls39{letter-spacing:21.120000pt;}
.ls16{letter-spacing:26.880000pt;}
.ls7{letter-spacing:27.520000pt;}
.ls36{letter-spacing:28.160000pt;}
.ls28{letter-spacing:30.208000pt;}
.ls22{letter-spacing:44.800000pt;}
.ls2c{letter-spacing:48.128000pt;}
.ls8{letter-spacing:48.768000pt;}
.ls3d{letter-spacing:53.248000pt;}
.ls2b{letter-spacing:67.328000pt;}
.ls3c{letter-spacing:85.248000pt;}
.ls2a{letter-spacing:104.448000pt;}
.ls3b{letter-spacing:752.000000pt;}
.ws6d{word-spacing:-16.640000pt;}
.ws25{word-spacing:-16.256000pt;}
.ws40{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws5b{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws2f{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws6e{word-spacing:-15.616000pt;}
.ws6f{word-spacing:-15.168000pt;}
.wsc{word-spacing:-15.014400pt;}
.ws48{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.190080pt;}
.wsd{word-spacing:-14.072320pt;}
.ws27{word-spacing:-11.063040pt;}
.ws26{word-spacing:-10.720000pt;}
.ws30{word-spacing:-10.419840pt;}
.ws2d{word-spacing:-3.968000pt;}
.ws4e{word-spacing:-3.840000pt;}
.ws58{word-spacing:-3.584000pt;}
.ws9{word-spacing:-3.200000pt;}
.ws33{word-spacing:-2.560000pt;}
.ws3b{word-spacing:-1.920000pt;}
.ws71{word-spacing:-1.792000pt;}
.ws72{word-spacing:-1.664000pt;}
.ws18{word-spacing:-1.280000pt;}
.ws56{word-spacing:-1.024000pt;}
.ws3f{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.449280pt;}
.ws2e{word-spacing:-0.343040pt;}
.wsf{word-spacing:-0.299520pt;}
.ws15{word-spacing:-0.256000pt;}
.ws64{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.064000pt;}
.ws35{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.192000pt;}
.ws36{word-spacing:0.214400pt;}
.ws8{word-spacing:0.256000pt;}
.wse{word-spacing:0.299520pt;}
.ws32{word-spacing:0.300160pt;}
.ws31{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.512000pt;}
.ws28{word-spacing:0.640000pt;}
.ws4a{word-spacing:0.832000pt;}
.ws6a{word-spacing:1.152000pt;}
.ws1b{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.920000pt;}
.ws46{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.560000pt;}
.ws45{word-spacing:2.816000pt;}
.ws19{word-spacing:3.200000pt;}
.ws47{word-spacing:3.456000pt;}
.ws23{word-spacing:3.712000pt;}
.ws24{word-spacing:3.840000pt;}
.ws20{word-spacing:4.480000pt;}
.ws1d{word-spacing:5.120000pt;}
.ws1c{word-spacing:5.376000pt;}
.ws4d{word-spacing:5.760000pt;}
.ws6{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.656000pt;}
.ws1f{word-spacing:7.040000pt;}
.ws43{word-spacing:7.296000pt;}
.ws67{word-spacing:7.552000pt;}
.ws41{word-spacing:7.680000pt;}
.ws59{word-spacing:7.936000pt;}
.ws54{word-spacing:8.320000pt;}
.ws66{word-spacing:8.832000pt;}
.ws10{word-spacing:8.960000pt;}
.ws51{word-spacing:9.600000pt;}
.ws4c{word-spacing:10.240000pt;}
.ws3e{word-spacing:10.880000pt;}
.ws6b{word-spacing:11.136000pt;}
.ws7{word-spacing:11.520000pt;}
.ws5f{word-spacing:11.776000pt;}
.ws1e{word-spacing:12.032000pt;}
.wsb{word-spacing:12.160000pt;}
.ws3d{word-spacing:12.416000pt;}
.ws29{word-spacing:12.800000pt;}
.ws2a{word-spacing:13.056000pt;}
.ws34{word-spacing:13.440000pt;}
.ws6c{word-spacing:13.696000pt;}
.ws12{word-spacing:14.080000pt;}
.ws42{word-spacing:14.720000pt;}
.ws50{word-spacing:15.360000pt;}
.ws49{word-spacing:16.000000pt;}
.ws62{word-spacing:16.640000pt;}
.ws53{word-spacing:17.280000pt;}
.ws11{word-spacing:17.920000pt;}
.ws44{word-spacing:18.560000pt;}
.ws60{word-spacing:18.816000pt;}
.ws65{word-spacing:19.072000pt;}
.ws57{word-spacing:19.840000pt;}
.ws13{word-spacing:20.480000pt;}
.ws5e{word-spacing:21.120000pt;}
.ws5d{word-spacing:21.376000pt;}
.ws5c{word-spacing:21.760000pt;}
.ws2c{word-spacing:23.040000pt;}
.ws52{word-spacing:23.680000pt;}
.ws63{word-spacing:25.600000pt;}
.ws22{word-spacing:26.240000pt;}
.ws61{word-spacing:26.880000pt;}
.ws69{word-spacing:27.136000pt;}
.ws2b{word-spacing:28.160000pt;}
.ws21{word-spacing:28.416000pt;}
.ws39{word-spacing:33.536000pt;}
.ws70{word-spacing:34.560000pt;}
.ws68{word-spacing:37.120000pt;}
.ws38{word-spacing:44.672000pt;}
.ws37{word-spacing:44.800000pt;}
.ws55{word-spacing:58.880000pt;}
._1b{margin-left:-4.595968pt;}
._e{margin-left:-3.532032pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-0.947968pt;}
._1{width:1.021440pt;}
._11{width:1.920000pt;}
._14{width:3.136000pt;}
._10{width:4.032000pt;}
._f{width:5.248000pt;}
._4{width:6.336000pt;}
._5{width:7.232000pt;}
._9{width:8.999936pt;}
._8{width:10.048000pt;}
._a{width:11.264000pt;}
._b{width:12.352000pt;}
._2{width:13.504000pt;}
._3{width:14.656000pt;}
._19{width:17.002496pt;}
._15{width:17.920000pt;}
._12{width:19.008000pt;}
._20{width:19.909120pt;}
._18{width:20.802560pt;}
._1c{width:22.592000pt;}
._c{width:24.256000pt;}
._d{width:25.408000pt;}
._16{width:27.072000pt;}
._17{width:28.160000pt;}
._1a{width:29.312000pt;}
._1d{width:30.848000pt;}
._13{width:32.576000pt;}
._25{width:33.489920pt;}
._7{width:35.328000pt;}
._21{width:36.352000pt;}
._26{width:37.250560pt;}
._27{width:38.579968pt;}
._23{width:42.688000pt;}
._24{width:43.584000pt;}
._22{width:44.608000pt;}
._1e{width:47.616000pt;}
._1f{width:48.576000pt;}
._28{width:752.064000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.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;}
.y92{bottom:98.080000pt;}
.y24{bottom:98.400000pt;}
.y15d{bottom:99.680000pt;}
.y52{bottom:100.800000pt;}
.y12a{bottom:103.200000pt;}
.y18b{bottom:109.120000pt;}
.y9a{bottom:109.440000pt;}
.y41{bottom:109.600000pt;}
.yd6{bottom:112.960000pt;}
.yf8{bottom:115.360000pt;}
.yd0{bottom:116.000000pt;}
.y147{bottom:120.480000pt;}
.y73{bottom:124.960000pt;}
.y91{bottom:125.760000pt;}
.y23{bottom:126.080000pt;}
.y107{bottom:126.240000pt;}
.y15c{bottom:127.360000pt;}
.y51{bottom:129.600000pt;}
.yb9{bottom:130.240000pt;}
.y129{bottom:130.720000pt;}
.y126{bottom:130.880000pt;}
.y18a{bottom:136.800000pt;}
.y99{bottom:136.960000pt;}
.y40{bottom:137.120000pt;}
.yd5{bottom:140.480000pt;}
.y1bb{bottom:142.400000pt;}
.yf7{bottom:142.880000pt;}
.ycf{bottom:143.520000pt;}
.y146{bottom:148.000000pt;}
.y72{bottom:152.640000pt;}
.y90{bottom:153.280000pt;}
.y22{bottom:153.600000pt;}
.y106{bottom:153.760000pt;}
.y15b{bottom:154.880000pt;}
.y50{bottom:157.120000pt;}
.yb8{bottom:157.760000pt;}
.y125{bottom:158.400000pt;}
.y16c{bottom:160.480000pt;}
.y189{bottom:164.320000pt;}
.y3f{bottom:164.640000pt;}
.yd4{bottom:168.160000pt;}
.y1ba{bottom:169.920000pt;}
.yf6{bottom:170.560000pt;}
.yce{bottom:171.200000pt;}
.y145{bottom:175.680000pt;}
.y71{bottom:180.160000pt;}
.y8f{bottom:180.960000pt;}
.y21{bottom:181.280000pt;}
.y15a{bottom:182.560000pt;}
.yb7{bottom:185.440000pt;}
.y128{bottom:185.920000pt;}
.y4f{bottom:186.080000pt;}
.y124{bottom:187.200000pt;}
.y16b{bottom:188.160000pt;}
.y188{bottom:192.000000pt;}
.y98{bottom:192.160000pt;}
.yd3{bottom:195.680000pt;}
.y1b9{bottom:197.600000pt;}
.yf5{bottom:198.080000pt;}
.ycd{bottom:198.720000pt;}
.y144{bottom:203.200000pt;}
.y3e{bottom:207.200000pt;}
.y70{bottom:207.840000pt;}
.y8e{bottom:208.480000pt;}
.y20{bottom:208.800000pt;}
.y105{bottom:208.960000pt;}
.y159{bottom:210.080000pt;}
.yb6{bottom:212.960000pt;}
.y4e{bottom:213.600000pt;}
.y123{bottom:214.720000pt;}
.y16a{bottom:215.680000pt;}
.y187{bottom:219.520000pt;}
.yd2{bottom:223.360000pt;}
.y1b8{bottom:225.120000pt;}
.yf4{bottom:225.760000pt;}
.ycc{bottom:226.400000pt;}
.y97{bottom:230.560000pt;}
.y143{bottom:230.880000pt;}
.y6f{bottom:235.360000pt;}
.y1f{bottom:236.480000pt;}
.y3d{bottom:237.760000pt;}
.yb5{bottom:240.640000pt;}
.y4d{bottom:241.120000pt;}
.y8d{bottom:242.880000pt;}
.y169{bottom:243.200000pt;}
.y122{bottom:243.680000pt;}
.y186{bottom:247.200000pt;}
.yd1{bottom:250.880000pt;}
.y1b7{bottom:252.800000pt;}
.ycb{bottom:253.920000pt;}
.y142{bottom:258.400000pt;}
.yf3{bottom:260.640000pt;}
.y6e{bottom:263.040000pt;}
.y1e{bottom:264.000000pt;}
.y104{bottom:264.160000pt;}
.y158{bottom:265.280000pt;}
.yb4{bottom:268.160000pt;}
.y96{bottom:268.800000pt;}
.y4c{bottom:269.920000pt;}
.y168{bottom:270.880000pt;}
.y121{bottom:271.040000pt;}
.y3c{bottom:272.480000pt;}
.y185{bottom:274.720000pt;}
.y8c{bottom:278.400000pt;}
.y19d{bottom:280.000000pt;}
.y1b6{bottom:280.320000pt;}
.yca{bottom:281.600000pt;}
.y141{bottom:286.080000pt;}
.y6d{bottom:290.560000pt;}
.y1d{bottom:291.680000pt;}
.y157{bottom:292.960000pt;}
.yb3{bottom:295.840000pt;}
.y95{bottom:296.320000pt;}
.y4b{bottom:297.440000pt;}
.y167{bottom:298.400000pt;}
.yf2{bottom:298.720000pt;}
.y120{bottom:299.840000pt;}
.y184{bottom:302.400000pt;}
.y8b{bottom:306.080000pt;}
.y1b5{bottom:308.000000pt;}
.yc9{bottom:309.120000pt;}
.y140{bottom:313.600000pt;}
.y127{bottom:316.000000pt;}
.y6c{bottom:318.240000pt;}
.y1c{bottom:319.200000pt;}
.y103{bottom:319.360000pt;}
.y156{bottom:320.480000pt;}
.yb2{bottom:323.360000pt;}
.y94{bottom:324.000000pt;}
.y166{bottom:326.080000pt;}
.y4a{bottom:326.240000pt;}
.yf1{bottom:326.400000pt;}
.y11f{bottom:328.640000pt;}
.y183{bottom:329.920000pt;}
.ye5{bottom:333.600000pt;}
.y1b4{bottom:335.520000pt;}
.yc8{bottom:336.800000pt;}
.y8a{bottom:340.960000pt;}
.y13f{bottom:341.280000pt;}
.y6b{bottom:345.760000pt;}
.y1b{bottom:346.880000pt;}
.y155{bottom:348.160000pt;}
.yb1{bottom:351.040000pt;}
.y93{bottom:351.520000pt;}
.y165{bottom:353.600000pt;}
.yf0{bottom:353.920000pt;}
.y49{bottom:354.880000pt;}
.y11e{bottom:356.160000pt;}
.y182{bottom:357.600000pt;}
.ye4{bottom:361.280000pt;}
.y1b3{bottom:363.200000pt;}
.yc7{bottom:364.320000pt;}
.y13e{bottom:368.800000pt;}
.y6a{bottom:373.440000pt;}
.y1a{bottom:374.400000pt;}
.y102{bottom:374.560000pt;}
.y154{bottom:375.680000pt;}
.yb0{bottom:378.560000pt;}
.y89{bottom:379.200000pt;}
.y164{bottom:381.280000pt;}
.yef{bottom:381.600000pt;}
.y48{bottom:383.680000pt;}
.y11d{bottom:385.120000pt;}
.ye3{bottom:388.800000pt;}
.y1b2{bottom:390.720000pt;}
.yc6{bottom:392.000000pt;}
.y13d{bottom:396.320000pt;}
.y69{bottom:400.960000pt;}
.y19{bottom:401.920000pt;}
.y101{bottom:402.080000pt;}
.y153{bottom:403.360000pt;}
.yaf{bottom:406.240000pt;}
.y88{bottom:406.720000pt;}
.y163{bottom:408.800000pt;}
.yee{bottom:409.120000pt;}
.y11c{bottom:412.640000pt;}
.ye2{bottom:416.480000pt;}
.y3b{bottom:417.600000pt;}
.y1b1{bottom:418.400000pt;}
.yc5{bottom:419.520000pt;}
.y13c{bottom:424.000000pt;}
.y47{bottom:426.240000pt;}
.y181{bottom:427.520000pt;}
.y68{bottom:428.640000pt;}
.y18{bottom:429.600000pt;}
.y100{bottom:429.760000pt;}
.y152{bottom:430.880000pt;}
.yae{bottom:433.760000pt;}
.y87{bottom:434.400000pt;}
.y162{bottom:436.480000pt;}
.yed{bottom:436.800000pt;}
.y11b{bottom:440.160000pt;}
.ye1{bottom:444.000000pt;}
.y3a{bottom:445.120000pt;}
.y1b0{bottom:445.920000pt;}
.yc4{bottom:447.200000pt;}
.y46{bottom:449.120000pt;}
.y13b{bottom:451.520000pt;}
.y180{bottom:455.200000pt;}
.y67{bottom:456.160000pt;}
.y17{bottom:457.120000pt;}
.yff{bottom:457.280000pt;}
.y151{bottom:458.560000pt;}
.yad{bottom:461.440000pt;}
.y86{bottom:461.920000pt;}
.y161{bottom:464.000000pt;}
.yec{bottom:464.320000pt;}
.y11a{bottom:468.960000pt;}
.ye0{bottom:471.680000pt;}
.y39{bottom:472.800000pt;}
.y1af{bottom:473.600000pt;}
.yc3{bottom:474.720000pt;}
.y13a{bottom:479.200000pt;}
.y17f{bottom:482.720000pt;}
.y66{bottom:483.840000pt;}
.y16{bottom:484.800000pt;}
.yfe{bottom:484.960000pt;}
.y150{bottom:486.080000pt;}
.yac{bottom:488.960000pt;}
.y85{bottom:489.600000pt;}
.yeb{bottom:492.000000pt;}
.y119{bottom:496.480000pt;}
.ydf{bottom:499.200000pt;}
.y38{bottom:500.320000pt;}
.y1ae{bottom:501.120000pt;}
.yc2{bottom:502.400000pt;}
.y139{bottom:506.720000pt;}
.y17e{bottom:510.400000pt;}
.y65{bottom:511.200000pt;}
.y19c{bottom:511.360000pt;}
.y15{bottom:512.320000pt;}
.y14f{bottom:513.600000pt;}
.yab{bottom:516.640000pt;}
.y84{bottom:517.120000pt;}
.yea{bottom:519.520000pt;}
.y118{bottom:525.280000pt;}
.yde{bottom:526.880000pt;}
.y37{bottom:528.000000pt;}
.y1ad{bottom:528.800000pt;}
.yc1{bottom:529.920000pt;}
.y138{bottom:534.400000pt;}
.y17d{bottom:537.920000pt;}
.y19b{bottom:539.040000pt;}
.y14{bottom:540.000000pt;}
.y64{bottom:540.160000pt;}
.yfd{bottom:541.280000pt;}
.yaa{bottom:544.160000pt;}
.y83{bottom:544.800000pt;}
.ye9{bottom:547.200000pt;}
.y117{bottom:552.800000pt;}
.ydd{bottom:554.400000pt;}
.y36{bottom:555.360000pt;}
.y1ac{bottom:556.320000pt;}
.yc0{bottom:557.440000pt;}
.y137{bottom:561.920000pt;}
.y17c{bottom:565.440000pt;}
.y19a{bottom:566.560000pt;}
.y13{bottom:567.520000pt;}
.y63{bottom:567.680000pt;}
.yfc{bottom:568.800000pt;}
.ya9{bottom:571.840000pt;}
.y82{bottom:572.320000pt;}
.y116{bottom:581.600000pt;}
.ydc{bottom:582.080000pt;}
.y1ab{bottom:583.840000pt;}
.y35{bottom:584.160000pt;}
.ybf{bottom:585.120000pt;}
.ye8{bottom:589.600000pt;}
.y17b{bottom:593.120000pt;}
.y199{bottom:594.240000pt;}
.y12{bottom:595.200000pt;}
.y62{bottom:595.360000pt;}
.y14e{bottom:596.480000pt;}
.yfb{bottom:597.600000pt;}
.ya8{bottom:599.360000pt;}
.y81{bottom:599.840000pt;}
.y115{bottom:609.280000pt;}
.ydb{bottom:609.600000pt;}
.y1aa{bottom:611.520000pt;}
.ybe{bottom:612.640000pt;}
.y34{bottom:612.960000pt;}
.y136{bottom:617.120000pt;}
.ye7{bottom:620.160000pt;}
.y17a{bottom:620.640000pt;}
.y198{bottom:621.760000pt;}
.y11{bottom:622.720000pt;}
.y61{bottom:622.880000pt;}
.y14d{bottom:624.000000pt;}
.yfa{bottom:625.120000pt;}
.ya7{bottom:627.040000pt;}
.y80{bottom:627.520000pt;}
.y114{bottom:636.800000pt;}
.yda{bottom:637.280000pt;}
.y1a9{bottom:639.040000pt;}
.ybd{bottom:640.320000pt;}
.y33{bottom:641.600000pt;}
.ye6{bottom:644.160000pt;}
.y135{bottom:645.760000pt;}
.y179{bottom:648.320000pt;}
.y197{bottom:649.440000pt;}
.y10{bottom:650.400000pt;}
.y60{bottom:650.560000pt;}
.y14c{bottom:651.680000pt;}
.yf9{bottom:653.760000pt;}
.ya6{bottom:654.560000pt;}
.y7f{bottom:655.040000pt;}
.y113{bottom:664.320000pt;}
.yd9{bottom:664.800000pt;}
.y1a8{bottom:666.720000pt;}
.ybc{bottom:667.840000pt;}
.y32{bottom:670.400000pt;}
.y134{bottom:674.720000pt;}
.y178{bottom:675.840000pt;}
.y196{bottom:676.960000pt;}
.yf{bottom:677.920000pt;}
.y5f{bottom:678.080000pt;}
.y14b{bottom:679.200000pt;}
.ya5{bottom:682.240000pt;}
.y7e{bottom:682.720000pt;}
.yd8{bottom:692.480000pt;}
.y112{bottom:693.280000pt;}
.y1a7{bottom:694.240000pt;}
.ybb{bottom:695.520000pt;}
.y31{bottom:699.200000pt;}
.y133{bottom:702.080000pt;}
.y177{bottom:703.520000pt;}
.y195{bottom:704.640000pt;}
.ye{bottom:705.600000pt;}
.y14a{bottom:706.880000pt;}
.ya4{bottom:709.760000pt;}
.y7d{bottom:710.240000pt;}
.y111{bottom:720.800000pt;}
.y1a6{bottom:721.920000pt;}
.y12d{bottom:723.040000pt;}
.yd7{bottom:727.360000pt;}
.y30{bottom:728.000000pt;}
.yba{bottom:729.920000pt;}
.y132{bottom:731.040000pt;}
.y194{bottom:732.160000pt;}
.yd{bottom:733.120000pt;}
.y5e{bottom:734.400000pt;}
.ya3{bottom:737.440000pt;}
.y7c{bottom:737.920000pt;}
.y110{bottom:748.320000pt;}
.y1a5{bottom:749.440000pt;}
.y12c{bottom:750.720000pt;}
.y2f{bottom:755.680000pt;}
.y131{bottom:758.560000pt;}
.y176{bottom:758.720000pt;}
.y193{bottom:759.840000pt;}
.yc{bottom:760.800000pt;}
.y5d{bottom:762.080000pt;}
.ya2{bottom:764.960000pt;}
.y7b{bottom:765.440000pt;}
.y10f{bottom:777.120000pt;}
.y160{bottom:778.240000pt;}
.y2e{bottom:783.200000pt;}
.y12b{bottom:785.120000pt;}
.y175{bottom:786.240000pt;}
.y130{bottom:787.200000pt;}
.y192{bottom:787.360000pt;}
.yb{bottom:788.320000pt;}
.y5c{bottom:789.600000pt;}
.y7a{bottom:793.120000pt;}
.ya1{bottom:799.360000pt;}
.y10e{bottom:804.640000pt;}
.y15f{bottom:805.920000pt;}
.y2d{bottom:810.880000pt;}
.y174{bottom:813.920000pt;}
.y191{bottom:814.880000pt;}
.ya{bottom:816.000000pt;}
.y149{bottom:817.280000pt;}
.y5b{bottom:818.400000pt;}
.y79{bottom:820.640000pt;}
.y1a4{bottom:832.320000pt;}
.y10d{bottom:833.440000pt;}
.ya0{bottom:837.600000pt;}
.y2c{bottom:838.400000pt;}
.y173{bottom:841.440000pt;}
.y9{bottom:843.520000pt;}
.y190{bottom:843.680000pt;}
.y12f{bottom:844.640000pt;}
.y5a{bottom:845.920000pt;}
.y78{bottom:848.320000pt;}
.y1a3{bottom:859.840000pt;}
.y10c{bottom:861.120000pt;}
.y9f{bottom:865.280000pt;}
.y2b{bottom:866.080000pt;}
.y172{bottom:869.120000pt;}
.y8{bottom:871.200000pt;}
.y59{bottom:873.440000pt;}
.y77{bottom:875.840000pt;}
.y1a2{bottom:887.520000pt;}
.y10b{bottom:888.640000pt;}
.y9e{bottom:892.800000pt;}
.y2a{bottom:893.600000pt;}
.y15e{bottom:895.520000pt;}
.y171{bottom:896.640000pt;}
.y7{bottom:898.720000pt;}
.y18f{bottom:899.840000pt;}
.y12e{bottom:902.240000pt;}
.y58{bottom:902.400000pt;}
.y76{bottom:903.520000pt;}
.y1a1{bottom:915.040000pt;}
.y10a{bottom:916.320000pt;}
.y9d{bottom:920.480000pt;}
.y29{bottom:921.280000pt;}
.y170{bottom:924.320000pt;}
.y18e{bottom:928.800000pt;}
.y148{bottom:929.760000pt;}
.y57{bottom:929.920000pt;}
.y75{bottom:931.040000pt;}
.y6{bottom:933.600000pt;}
.y1a0{bottom:942.720000pt;}
.y109{bottom:943.840000pt;}
.y45{bottom:948.000000pt;}
.y28{bottom:948.800000pt;}
.y16f{bottom:951.840000pt;}
.y18d{bottom:956.320000pt;}
.y56{bottom:957.600000pt;}
.y74{bottom:958.720000pt;}
.y19f{bottom:970.240000pt;}
.y5{bottom:971.840000pt;}
.y9c{bottom:975.680000pt;}
.y27{bottom:976.480000pt;}
.y108{bottom:978.240000pt;}
.y16e{bottom:979.520000pt;}
.y18c{bottom:984.960000pt;}
.y55{bottom:985.120000pt;}
.y44{bottom:986.240000pt;}
.y19e{bottom:997.920000pt;}
.y9b{bottom:1003.200000pt;}
.y4{bottom:1003.680000pt;}
.y26{bottom:1004.000000pt;}
.y16d{bottom:1007.040000pt;}
.y54{bottom:1012.800000pt;}
.y43{bottom:1013.920000pt;}
.y25{bottom:1038.880000pt;}
.y53{bottom:1040.160000pt;}
.y42{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h3{height:52.152500pt;}
.h2{height:56.156250pt;}
.h7{height:56.687500pt;}
.h5{height:57.031250pt;}
.h8{height:61.944687pt;}
.ha{height:62.300625pt;}
.h9{height:62.319185pt;}
.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;}
.xd{left:113.280000pt;}
.x5{left:118.400000pt;}
.xe{left:127.200000pt;}
.x10{left:132.160000pt;}
.x4{left:141.600000pt;}
.xf{left:151.200000pt;}
.x11{left:165.440000pt;}
.x13{left:166.400000pt;}
.x12{left:188.960000pt;}
.x3{left:262.560000pt;}
.xa{left:274.720000pt;}
.x8{left:283.200000pt;}
.xb{left:346.720000pt;}
.x9{left:350.400000pt;}
.x1{left:384.800000pt;}
.xc{left:524.800000pt;}
.x7{left:592.320000pt;}
.x6{left:640.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; }
  