
    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_1970bfd2fde83f6222c991b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091000;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_5ad6ef5559eef862445c2955.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2181f5b6a7d332e0b35d9fe0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_d541c20fd4adacb19c566b55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_99858b7c95523d72cad8b510.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b6062850eaa8eefd498eb00b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912598;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_9eba84ed159bfa9db128a414.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_83b949a06b32466b9ada258f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.865000;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-5.688000px;}
.ls3{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.100000px;}
.ls1{letter-spacing:54.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;}
}
.ws7{word-spacing:-90.000000px;}
.ws2{word-spacing:-45.000000px;}
.wsb9{word-spacing:-30.000000px;}
.ws3{word-spacing:-21.000000px;}
.ws87{word-spacing:-18.000000px;}
.wsad{word-spacing:-17.100000px;}
.ws5f{word-spacing:-15.000000px;}
.ws1a{word-spacing:-8.640000px;}
.ws40{word-spacing:-8.136000px;}
.ws66{word-spacing:-7.848000px;}
.ws84{word-spacing:-5.400000px;}
.ws5c{word-spacing:-5.256000px;}
.wsb{word-spacing:-5.184000px;}
.ws55{word-spacing:-4.896000px;}
.wsaa{word-spacing:-4.752000px;}
.ws29{word-spacing:-4.536000px;}
.ws5a{word-spacing:-4.320000px;}
.ws5b{word-spacing:-4.032000px;}
.wsbc{word-spacing:-3.960000px;}
.ws86{word-spacing:-3.888000px;}
.ws5e{word-spacing:-3.816000px;}
.ws31{word-spacing:-3.672000px;}
.ws2b{word-spacing:-3.600000px;}
.ws41{word-spacing:-3.528000px;}
.wsd{word-spacing:-3.312000px;}
.ws47{word-spacing:-3.168000px;}
.ws61{word-spacing:-3.024000px;}
.ws98{word-spacing:-2.952000px;}
.ws1f{word-spacing:-2.808000px;}
.ws88{word-spacing:-2.664000px;}
.ws4b{word-spacing:-2.592000px;}
.ws16{word-spacing:-2.520000px;}
.ws11{word-spacing:-2.448000px;}
.ws2a{word-spacing:-2.232000px;}
.wsa0{word-spacing:-2.220000px;}
.ws76{word-spacing:-2.160000px;}
.ws1{word-spacing:-2.100000px;}
.ws85{word-spacing:-2.088000px;}
.ws63{word-spacing:-2.016000px;}
.ws14{word-spacing:-1.872000px;}
.ws8{word-spacing:-1.800000px;}
.wsb5{word-spacing:-1.728000px;}
.ws97{word-spacing:-1.440000px;}
.ws9c{word-spacing:-1.296000px;}
.ws59{word-spacing:-1.224000px;}
.ws65{word-spacing:-1.152000px;}
.wsbe{word-spacing:-1.092000px;}
.ws2e{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.020000px;}
.ws6e{word-spacing:-1.008000px;}
.ws6f{word-spacing:-0.936000px;}
.ws8c{word-spacing:-0.792000px;}
.ws24{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.576000px;}
.ws44{word-spacing:-0.432000px;}
.wsb7{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.144000px;}
.wsbb{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsa3{word-spacing:0.072000px;}
.ws36{word-spacing:0.144000px;}
.wsb8{word-spacing:0.216000px;}
.ws3a{word-spacing:0.288000px;}
.ws3b{word-spacing:0.360000px;}
.ws9f{word-spacing:0.432000px;}
.ws9d{word-spacing:0.576000px;}
.ws7b{word-spacing:0.720000px;}
.ws22{word-spacing:0.792000px;}
.ws20{word-spacing:0.864000px;}
.ws37{word-spacing:0.936000px;}
.ws2c{word-spacing:1.008000px;}
.ws64{word-spacing:1.080000px;}
.ws34{word-spacing:1.152000px;}
.ws6a{word-spacing:1.224000px;}
.ws28{word-spacing:1.296000px;}
.wsf{word-spacing:1.368000px;}
.ws25{word-spacing:1.440000px;}
.ws26{word-spacing:1.512000px;}
.wsac{word-spacing:1.584000px;}
.ws54{word-spacing:1.800000px;}
.ws93{word-spacing:1.944000px;}
.wsa9{word-spacing:2.016000px;}
.ws19{word-spacing:2.160000px;}
.ws23{word-spacing:2.232000px;}
.ws6c{word-spacing:2.304000px;}
.ws99{word-spacing:2.448000px;}
.ws50{word-spacing:2.592000px;}
.ws72{word-spacing:2.736000px;}
.ws8d{word-spacing:2.880000px;}
.ws7d{word-spacing:2.952000px;}
.ws4c{word-spacing:3.096000px;}
.ws1e{word-spacing:3.240000px;}
.ws35{word-spacing:3.312000px;}
.wsa{word-spacing:3.456000px;}
.wsa5{word-spacing:3.528000px;}
.ws4f{word-spacing:3.600000px;}
.ws3d{word-spacing:3.672000px;}
.ws60{word-spacing:3.744000px;}
.ws3e{word-spacing:3.888000px;}
.ws62{word-spacing:3.960000px;}
.ws71{word-spacing:4.032000px;}
.ws17{word-spacing:4.104000px;}
.ws9e{word-spacing:4.176000px;}
.wsa1{word-spacing:4.320000px;}
.ws43{word-spacing:4.464000px;}
.ws3c{word-spacing:4.536000px;}
.wsb6{word-spacing:4.608000px;}
.ws2f{word-spacing:4.752000px;}
.ws1c{word-spacing:4.824000px;}
.ws90{word-spacing:4.968000px;}
.ws2d{word-spacing:5.112000px;}
.ws6{word-spacing:5.124000px;}
.ws1b{word-spacing:5.184000px;}
.ws96{word-spacing:5.256000px;}
.ws58{word-spacing:5.616000px;}
.ws48{word-spacing:5.688000px;}
.ws52{word-spacing:5.760000px;}
.wsc{word-spacing:5.976000px;}
.ws46{word-spacing:6.192000px;}
.wsbd{word-spacing:6.552000px;}
.ws51{word-spacing:6.624000px;}
.ws57{word-spacing:6.696000px;}
.ws80{word-spacing:6.912000px;}
.ws77{word-spacing:6.984000px;}
.wsab{word-spacing:7.056000px;}
.wsa7{word-spacing:7.128000px;}
.ws45{word-spacing:7.344000px;}
.ws6b{word-spacing:7.560000px;}
.ws74{word-spacing:7.632000px;}
.wsae{word-spacing:7.704000px;}
.ws92{word-spacing:7.920000px;}
.ws91{word-spacing:7.992000px;}
.ws49{word-spacing:8.352000px;}
.ws79{word-spacing:8.424000px;}
.ws7a{word-spacing:8.496000px;}
.wse{word-spacing:8.568000px;}
.ws68{word-spacing:8.640000px;}
.wsb0{word-spacing:8.856000px;}
.ws39{word-spacing:9.000000px;}
.ws5d{word-spacing:9.072000px;}
.ws9b{word-spacing:9.216000px;}
.ws4d{word-spacing:9.288000px;}
.wsa2{word-spacing:9.432000px;}
.ws9a{word-spacing:9.504000px;}
.ws78{word-spacing:9.648000px;}
.ws13{word-spacing:9.720000px;}
.ws83{word-spacing:9.792000px;}
.ws18{word-spacing:10.152000px;}
.wsbf{word-spacing:10.332000px;}
.ws15{word-spacing:10.440000px;}
.ws8e{word-spacing:10.656000px;}
.ws6d{word-spacing:10.728000px;}
.wsb2{word-spacing:10.800000px;}
.ws73{word-spacing:10.872000px;}
.ws4e{word-spacing:11.160000px;}
.ws8a{word-spacing:11.232000px;}
.ws30{word-spacing:11.304000px;}
.ws7e{word-spacing:11.592000px;}
.ws89{word-spacing:11.808000px;}
.ws75{word-spacing:12.744000px;}
.wsa8{word-spacing:12.816000px;}
.ws4a{word-spacing:12.888000px;}
.ws7c{word-spacing:12.960000px;}
.ws42{word-spacing:13.320000px;}
.ws7f{word-spacing:13.464000px;}
.ws21{word-spacing:13.752000px;}
.wsb1{word-spacing:13.824000px;}
.wsa6{word-spacing:14.184000px;}
.ws8b{word-spacing:14.616000px;}
.ws3f{word-spacing:14.760000px;}
.ws94{word-spacing:14.976000px;}
.ws67{word-spacing:15.264000px;}
.ws1d{word-spacing:15.984000px;}
.ws27{word-spacing:16.344000px;}
.ws82{word-spacing:16.848000px;}
.wsb3{word-spacing:17.208000px;}
.ws69{word-spacing:17.568000px;}
.ws10{word-spacing:18.000000px;}
.wsaf{word-spacing:18.144000px;}
.ws95{word-spacing:19.584000px;}
.ws70{word-spacing:19.656000px;}
.ws81{word-spacing:20.232000px;}
.wsa4{word-spacing:21.528000px;}
.ws8f{word-spacing:22.464000px;}
.ws38{word-spacing:24.336000px;}
.wsc0{word-spacing:25.368000px;}
.ws32{word-spacing:30.168000px;}
.ws56{word-spacing:38.520000px;}
.ws4{word-spacing:189.000000px;}
.ws5{word-spacing:198.000000px;}
.wsba{word-spacing:199.518000px;}
._29{margin-left:-213.615600px;}
._28{margin-left:-199.544400px;}
._6{margin-left:-198.000000px;}
._4{margin-left:-189.101400px;}
._c{margin-left:-161.892000px;}
._d{margin-left:-149.976000px;}
._7{margin-left:-141.890400px;}
._5{margin-left:-128.703600px;}
._a{margin-left:-116.751600px;}
._2b{margin-left:-59.624400px;}
._2a{margin-left:-37.936800px;}
._b{margin-left:-32.804400px;}
._25{margin-left:-17.433600px;}
._10{margin-left:-15.336000px;}
._1f{margin-left:-10.497600px;}
._f{margin-left:-9.384000px;}
._1e{margin-left:-8.006400px;}
._e{margin-left:-6.966000px;}
._1{margin-left:-5.124000px;}
._0{margin-left:-3.240000px;}
._2{margin-left:-2.024400px;}
._23{margin-left:-1.000800px;}
._12{width:1.012800px;}
._3{width:2.024400px;}
._11{width:3.427200px;}
._13{width:4.687200px;}
._14{width:5.768400px;}
._17{width:7.278000px;}
._8{width:8.280000px;}
._15{width:9.424800px;}
._19{width:10.785600px;}
._1c{width:12.434400px;}
._22{width:13.456800px;}
._1d{width:14.721600px;}
._18{width:16.653600px;}
._24{width:19.944000px;}
._1a{width:23.922000px;}
._1b{width:25.268400px;}
._16{width:29.966400px;}
._21{width:72.021600px;}
._26{width:75.332400px;}
._20{width:95.954400px;}
._9{width:198.000000px;}
._27{width:199.498200px;}
.fc2{color:rgb(89,104,111);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fs8{font-size:144.000000px;}
.fs4{font-size:180.000000px;}
.fs3{font-size:288.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:127.559100px;}
.y150{bottom:127.728900px;}
.y9f{bottom:130.474500px;}
.yd7{bottom:130.651650px;}
.y56{bottom:132.299850px;}
.y10{bottom:133.647600px;}
.y36{bottom:133.752600px;}
.y7{bottom:139.896900px;}
.ye4{bottom:140.236050px;}
.y130{bottom:140.655000px;}
.y77{bottom:142.184850px;}
.y11b{bottom:143.247900px;}
.y16a{bottom:144.665250px;}
.ye7{bottom:145.559100px;}
.y177{bottom:147.677100px;}
.yf3{bottom:149.159100px;}
.y14f{bottom:150.228900px;}
.y9e{bottom:152.974500px;}
.yd6{bottom:153.151650px;}
.y55{bottom:154.799850px;}
.y35{bottom:156.252600px;}
.ye3{bottom:162.736050px;}
.y11c{bottom:163.559100px;}
.y193{bottom:164.892000px;}
.y11a{bottom:165.747900px;}
.y176{bottom:170.177100px;}
.y6{bottom:172.452750px;}
.y14e{bottom:172.728900px;}
.yd5{bottom:175.651650px;}
.y54{bottom:177.299850px;}
.y10d{bottom:185.236050px;}
.y192{bottom:187.392000px;}
.y119{bottom:188.247900px;}
.y76{bottom:190.196700px;}
.y169{bottom:192.677100px;}
.y14d{bottom:195.228900px;}
.yd4{bottom:198.151650px;}
.y53{bottom:199.799850px;}
.y9d{bottom:200.986200px;}
.y5{bottom:205.008750px;}
.y10c{bottom:207.736050px;}
.y24{bottom:209.593500px;}
.ye2{bottom:210.747900px;}
.y75{bottom:212.696700px;}
.yf{bottom:213.159450px;}
.y168{bottom:215.177100px;}
.yd3{bottom:220.651650px;}
.y34{bottom:221.272200px;}
.y52{bottom:222.299850px;}
.y9c{bottom:223.486200px;}
.y10b{bottom:230.236050px;}
.ye1{bottom:233.247900px;}
.y191{bottom:235.403850px;}
.y167{bottom:237.677100px;}
.y175{bottom:240.688800px;}
.yd2{bottom:243.151650px;}
.y14c{bottom:243.240750px;}
.y33{bottom:243.772200px;}
.y51{bottom:244.799850px;}
.y9b{bottom:245.986200px;}
.y1a6{bottom:251.141550px;}
.y10a{bottom:252.736050px;}
.ye0{bottom:255.747900px;}
.y190{bottom:257.903850px;}
.y166{bottom:260.177100px;}
.y74{bottom:260.708550px;}
.y174{bottom:263.188800px;}
.yd1{bottom:265.651650px;}
.y14b{bottom:265.740750px;}
.y32{bottom:266.272200px;}
.y50{bottom:267.299850px;}
.y12f{bottom:268.214100px;}
.y9a{bottom:268.486200px;}
.y1a5{bottom:273.641550px;}
.y1b2{bottom:274.396200px;}
.ydf{bottom:278.247900px;}
.y129{bottom:284.817150px;}
.yd0{bottom:288.151650px;}
.y14a{bottom:288.240750px;}
.y31{bottom:288.772200px;}
.y4f{bottom:289.799850px;}
.y99{bottom:290.986200px;}
.y13a{bottom:292.131750px;}
.ye{bottom:292.671300px;}
.y1b1{bottom:296.896200px;}
.yde{bottom:300.747900px;}
.y18f{bottom:305.915550px;}
.y165{bottom:308.188800px;}
.ycf{bottom:310.651650px;}
.y149{bottom:310.740750px;}
.y173{bottom:311.200650px;}
.y30{bottom:311.272200px;}
.y4e{bottom:312.299850px;}
.y98{bottom:313.486200px;}
.y139{bottom:313.731750px;}
.y128{bottom:314.921100px;}
.y1a4{bottom:321.653400px;}
.ydd{bottom:323.247900px;}
.y18e{bottom:328.415550px;}
.yce{bottom:333.151650px;}
.y172{bottom:333.700650px;}
.y4d{bottom:334.799850px;}
.y97{bottom:335.986200px;}
.y1b0{bottom:336.403950px;}
.y1a3{bottom:344.153400px;}
.ydc{bottom:345.747900px;}
.ycd{bottom:355.651650px;}
.y164{bottom:356.200650px;}
.y4c{bottom:357.299850px;}
.y96{bottom:358.486200px;}
.y23{bottom:358.752600px;}
.y1af{bottom:358.903950px;}
.y126{bottom:359.973150px;}
.y4{bottom:360.871650px;}
.y15{bottom:364.396200px;}
.y73{bottom:368.247900px;}
.yfe{bottom:368.919600px;}
.y138{bottom:370.855200px;}
.yd{bottom:372.183150px;}
.y2f{bottom:376.291950px;}
.y18d{bottom:376.427400px;}
.ycc{bottom:378.151500px;}
.y163{bottom:378.700650px;}
.y4b{bottom:379.799850px;}
.y95{bottom:380.986350px;}
.y22{bottom:381.252600px;}
.y1ae{bottom:381.403950px;}
.yef{bottom:381.879900px;}
.y14{bottom:386.896200px;}
.yfd{bottom:386.919600px;}
.y72{bottom:390.747900px;}
.y1a2{bottom:392.165250px;}
.y137{bottom:392.455200px;}
.y12e{bottom:395.252700px;}
.y2e{bottom:398.791950px;}
.y18c{bottom:398.927400px;}
.y123{bottom:399.249000px;}
.y162{bottom:401.200650px;}
.yec{bottom:402.299850px;}
.y127{bottom:402.512400px;}
.y148{bottom:403.752600px;}
.y1ad{bottom:403.903950px;}
.yf2{bottom:407.760300px;}
.ye9{bottom:408.189000px;}
.y71{bottom:413.247900px;}
.y1a1{bottom:414.665250px;}
.yb7{bottom:416.259750px;}
.y122{bottom:417.249000px;}
.y2d{bottom:421.291950px;}
.y171{bottom:423.700650px;}
.yeb{bottom:424.799850px;}
.ycb{bottom:426.163350px;}
.ye8{bottom:426.189000px;}
.y13{bottom:426.403950px;}
.y4a{bottom:427.811550px;}
.y94{bottom:428.998050px;}
.yf1{bottom:429.360300px;}
.y10e{bottom:432.477600px;}
.y70{bottom:435.747900px;}
.y1a0{bottom:437.165250px;}
.yb6{bottom:438.759750px;}
.ybb{bottom:441.141750px;}
.y2c{bottom:443.791950px;}
.y21{bottom:446.272200px;}
.y18b{bottom:446.939100px;}
.y104{bottom:447.621900px;}
.y111{bottom:448.582650px;}
.y12{bottom:448.903950px;}
.y161{bottom:449.212500px;}
.y49{bottom:450.311550px;}
.yf0{bottom:450.960300px;}
.y93{bottom:451.498050px;}
.yc{bottom:451.695000px;}
.y147{bottom:451.764300px;}
.yca{bottom:457.167300px;}
.y6f{bottom:458.247900px;}
.yb5{bottom:461.259750px;}
.y103{bottom:465.621900px;}
.y2b{bottom:466.291950px;}
.y110{bottom:466.582650px;}
.y20{bottom:468.772200px;}
.y18a{bottom:469.439100px;}
.y160{bottom:471.712500px;}
.y48{bottom:472.811550px;}
.y92{bottom:473.998050px;}
.y11e{bottom:478.080750px;}
.y118{bottom:478.346400px;}
.yc9{bottom:479.667300px;}
.y6e{bottom:480.747900px;}
.yb4{bottom:483.759750px;}
.y19f{bottom:485.177100px;}
.y2a{bottom:488.791950px;}
.y1f{bottom:491.272200px;}
.y15f{bottom:494.212500px;}
.y47{bottom:495.311550px;}
.y11d{bottom:496.080750px;}
.y117{bottom:496.346400px;}
.y91{bottom:496.498050px;}
.y146{bottom:499.776150px;}
.y6d{bottom:503.247900px;}
.yb3{bottom:506.259750px;}
.y19e{bottom:507.677100px;}
.yc8{bottom:510.671250px;}
.y170{bottom:516.712500px;}
.y189{bottom:517.450950px;}
.y46{bottom:517.811550px;}
.y90{bottom:518.998050px;}
.y140{bottom:521.744700px;}
.y12d{bottom:522.269100px;}
.y6c{bottom:525.747900px;}
.yb2{bottom:528.759750px;}
.yb{bottom:531.206700px;}
.yc7{bottom:533.171250px;}
.y188{bottom:539.950950px;}
.y45{bottom:540.311550px;}
.y8f{bottom:541.498050px;}
.y15e{bottom:542.224200px;}
.y145{bottom:547.788000px;}
.y6b{bottom:548.247900px;}
.yb1{bottom:551.259750px;}
.y29{bottom:553.811550px;}
.y19d{bottom:555.688800px;}
.y1e{bottom:556.291950px;}
.y44{bottom:562.811550px;}
.y8e{bottom:563.998050px;}
.yc6{bottom:564.175200px;}
.y3{bottom:564.654300px;}
.y15d{bottom:564.724200px;}
.y6a{bottom:570.747900px;}
.yb0{bottom:573.759750px;}
.y28{bottom:576.311550px;}
.y19c{bottom:578.188800px;}
.y1d{bottom:578.791950px;}
.y43{bottom:585.311550px;}
.y13f{bottom:586.764300px;}
.y15c{bottom:587.224200px;}
.y187{bottom:587.962800px;}
.y125{bottom:592.387500px;}
.ydb{bottom:593.247900px;}
.yfc{bottom:595.520550px;}
.y144{bottom:595.799850px;}
.yaf{bottom:596.259750px;}
.y27{bottom:598.811550px;}
.y42{bottom:607.811550px;}
.y15b{bottom:609.724200px;}
.y186{bottom:610.462800px;}
.ya{bottom:610.718550px;}
.y8d{bottom:612.009900px;}
.yc5{bottom:612.187050px;}
.yfb{bottom:613.520550px;}
.yda{bottom:615.747900px;}
.y143{bottom:618.299850px;}
.y69{bottom:618.759750px;}
.y26{bottom:621.311550px;}
.y114{bottom:621.771450px;}
.y2{bottom:623.870100px;}
.y19b{bottom:626.200650px;}
.y136{bottom:627.390750px;}
.y41{bottom:630.311550px;}
.y15a{bottom:632.224200px;}
.y185{bottom:632.962800px;}
.y8c{bottom:634.509900px;}
.yc4{bottom:634.687050px;}
.y16f{bottom:635.236050px;}
.y68{bottom:641.259750px;}
.y1c{bottom:643.811550px;}
.y113{bottom:644.271450px;}
.y13e{bottom:647.532000px;}
.y135{bottom:648.990750px;}
.y40{bottom:652.811550px;}
.y12c{bottom:653.493450px;}
.y8b{bottom:657.009900px;}
.y67{bottom:663.759750px;}
.y1b{bottom:666.311550px;}
.yae{bottom:666.771450px;}
.y19a{bottom:674.212500px;}
.y3f{bottom:675.311550px;}
.yee{bottom:677.258850px;}
.y8a{bottom:679.509900px;}
.y159{bottom:680.236050px;}
.y184{bottom:680.974650px;}
.yc3{bottom:682.698750px;}
.y16e{bottom:683.247900px;}
.y66{bottom:686.259750px;}
.y1a{bottom:688.811550px;}
.yad{bottom:689.271450px;}
.y121{bottom:689.929650px;}
.y9{bottom:690.230400px;}
.y3e{bottom:697.811550px;}
.y89{bottom:702.009900px;}
.y158{bottom:702.736050px;}
.y183{bottom:703.474650px;}
.y13d{bottom:704.047800px;}
.yc2{bottom:705.198750px;}
.y16d{bottom:705.747900px;}
.y120{bottom:707.929650px;}
.y65{bottom:708.759750px;}
.y142{bottom:711.311550px;}
.yac{bottom:711.771450px;}
.ye6{bottom:714.783300px;}
.y199{bottom:722.224200px;}
.yea{bottom:723.323400px;}
.y88{bottom:724.509900px;}
.y182{bottom:725.974650px;}
.y10f{bottom:727.086600px;}
.yc1{bottom:727.698750px;}
.y16c{bottom:728.247900px;}
.y64{bottom:731.259750px;}
.y25{bottom:731.331300px;}
.y1{bottom:731.870100px;}
.y141{bottom:733.811550px;}
.yba{bottom:734.271450px;}
.y134{bottom:734.384250px;}
.y102{bottom:737.265750px;}
.ye5{bottom:737.283300px;}
.y198{bottom:744.724200px;}
.y3d{bottom:745.823400px;}
.y87{bottom:747.009900px;}
.y181{bottom:748.474650px;}
.yc0{bottom:750.198750px;}
.y157{bottom:750.747900px;}
.y19{bottom:753.831300px;}
.yb9{bottom:756.771450px;}
.y133{bottom:756.884250px;}
.y101{bottom:759.765750px;}
.yab{bottom:759.783300px;}
.y13c{bottom:764.815500px;}
.y86{bottom:769.509900px;}
.y156{bottom:773.247900px;}
.y18{bottom:776.331300px;}
.y63{bottom:779.271450px;}
.y132{bottom:779.384250px;}
.y100{bottom:782.265750px;}
.yaa{bottom:782.283300px;}
.y12b{bottom:785.682150px;}
.y85{bottom:792.009900px;}
.y197{bottom:792.736050px;}
.y180{bottom:796.486500px;}
.y16b{bottom:798.759750px;}
.y17{bottom:798.831300px;}
.y62{bottom:801.771450px;}
.yff{bottom:804.765750px;}
.ya9{bottom:804.783300px;}
.y1ac{bottom:804.990450px;}
.y196{bottom:815.236050px;}
.y17f{bottom:818.986500px;}
.y155{bottom:821.259750px;}
.y11f{bottom:822.755850px;}
.y124{bottom:823.357650px;}
.ybf{bottom:823.722450px;}
.y61{bottom:824.271450px;}
.y84{bottom:827.265750px;}
.ya8{bottom:827.283300px;}
.y1ab{bottom:827.490450px;}
.y116{bottom:829.133850px;}
.y154{bottom:843.759750px;}
.y60{bottom:846.771450px;}
.y115{bottom:847.133850px;}
.y83{bottom:849.765750px;}
.ya7{bottom:849.783300px;}
.y1aa{bottom:849.990450px;}
.ybe{bottom:854.726400px;}
.y195{bottom:863.247900px;}
.y153{bottom:866.259750px;}
.y17e{bottom:866.998350px;}
.y109{bottom:869.271450px;}
.y82{bottom:872.265750px;}
.ya6{bottom:872.283300px;}
.yfa{bottom:875.277600px;}
.ybd{bottom:877.226400px;}
.y152{bottom:888.759750px;}
.y17d{bottom:889.498350px;}
.y108{bottom:891.771450px;}
.y81{bottom:894.765750px;}
.y5f{bottom:894.783300px;}
.y3c{bottom:895.882500px;}
.yf9{bottom:897.777600px;}
.y112{bottom:897.795150px;}
.y1a9{bottom:898.002300px;}
.y131{bottom:911.015400px;}
.y194{bottom:911.259750px;}
.y107{bottom:914.271450px;}
.y80{bottom:917.265750px;}
.y5e{bottom:917.283300px;}
.y12a{bottom:917.386650px;}
.yf8{bottom:920.277600px;}
.ya5{bottom:920.295150px;}
.ybc{bottom:925.238100px;}
.y106{bottom:936.771450px;}
.y17c{bottom:937.510200px;}
.yed{bottom:937.558950px;}
.y7f{bottom:939.765750px;}
.y5d{bottom:939.783300px;}
.yf7{bottom:942.777600px;}
.ya4{bottom:942.795150px;}
.y16{bottom:948.890400px;}
.y105{bottom:959.271450px;}
.y8{bottom:961.080750px;}
.y7e{bottom:962.265750px;}
.y5c{bottom:962.283300px;}
.y1a8{bottom:963.021900px;}
.yf6{bottom:965.277600px;}
.ya3{bottom:965.295150px;}
.y151{bottom:981.771450px;}
.y7d{bottom:984.765750px;}
.y5b{bottom:984.783300px;}
.y17b{bottom:985.521900px;}
.yf5{bottom:987.777600px;}
.ya2{bottom:987.795150px;}
.y3b{bottom:990.275550px;}
.y5a{bottom:1007.283300px;}
.y17a{bottom:1008.021900px;}
.yf4{bottom:1010.277600px;}
.ya1{bottom:1010.295150px;}
.y3a{bottom:1012.775550px;}
.y13b{bottom:1013.732850px;}
.yd9{bottom:1029.783300px;}
.y7c{bottom:1032.777600px;}
.ya0{bottom:1032.795150px;}
.y1a7{bottom:1033.533750px;}
.y39{bottom:1035.275550px;}
.yd8{bottom:1052.283300px;}
.y7b{bottom:1055.277600px;}
.y59{bottom:1055.295150px;}
.y179{bottom:1056.033750px;}
.y38{bottom:1057.775550px;}
.y7a{bottom:1077.777600px;}
.y58{bottom:1077.795150px;}
.y79{bottom:1100.277600px;}
.y57{bottom:1100.295150px;}
.y178{bottom:1121.053500px;}
.y78{bottom:1122.777600px;}
.y37{bottom:1122.795150px;}
.y11{bottom:1124.025600px;}
.h13{height:49.992188px;}
.hd{height:50.027344px;}
.h15{height:50.167969px;}
.h14{height:50.400000px;}
.h7{height:51.360000px;}
.ha{height:52.646484px;}
.h12{height:52.792969px;}
.h4{height:57.911133px;}
.h16{height:58.365234px;}
.h11{height:58.529297px;}
.hc{height:63.175781px;}
.h9{height:63.351562px;}
.he{height:63.949219px;}
.h3{height:71.904000px;}
.h8{height:73.705078px;}
.h10{height:74.607422px;}
.hf{height:106.582031px;}
.h6{height:157.939453px;}
.h5{height:255.796875px;}
.h2{height:308.160000px;}
.hb{height:319.746094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.559100px;}
.x9{left:129.547950px;}
.x19{left:133.781400px;}
.x8{left:134.982450px;}
.x22{left:136.308150px;}
.x12{left:138.274050px;}
.x25{left:142.929300px;}
.xa{left:145.565700px;}
.x14{left:153.426300px;}
.x18{left:157.255500px;}
.x10{left:159.167100px;}
.x1e{left:161.796450px;}
.xc{left:165.143250px;}
.x16{left:166.425450px;}
.x20{left:174.255000px;}
.x23{left:177.558150px;}
.x15{left:189.241800px;}
.x11{left:198.044100px;}
.xf{left:200.732100px;}
.x7{left:211.652400px;}
.x2{left:221.102400px;}
.x17{left:223.774050px;}
.x21{left:229.450350px;}
.xe{left:235.837050px;}
.x13{left:237.221250px;}
.x3{left:246.614100px;}
.x1f{left:255.824850px;}
.x1a{left:259.596750px;}
.x1d{left:263.742300px;}
.x27{left:268.334550px;}
.x1c{left:283.026900px;}
.x29{left:284.881800px;}
.x26{left:288.329700px;}
.xb{left:306.786300px;}
.x24{left:330.400050px;}
.x6{left:388.655100px;}
.x1b{left:389.960550px;}
.x4{left:524.841600px;}
.x2a{left:542.542800px;}
.x28{left:564.281550px;}
.x5{left:571.255200px;}
.xd{left:615.310350px;}
.x2b{left:638.835750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-5.056000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.866667pt;}
.ls1{letter-spacing:48.000000pt;}
.ws7{word-spacing:-80.000000pt;}
.ws2{word-spacing:-40.000000pt;}
.wsb9{word-spacing:-26.666667pt;}
.ws3{word-spacing:-18.666667pt;}
.ws87{word-spacing:-16.000000pt;}
.wsad{word-spacing:-15.200000pt;}
.ws5f{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-7.680000pt;}
.ws40{word-spacing:-7.232000pt;}
.ws66{word-spacing:-6.976000pt;}
.ws84{word-spacing:-4.800000pt;}
.ws5c{word-spacing:-4.672000pt;}
.wsb{word-spacing:-4.608000pt;}
.ws55{word-spacing:-4.352000pt;}
.wsaa{word-spacing:-4.224000pt;}
.ws29{word-spacing:-4.032000pt;}
.ws5a{word-spacing:-3.840000pt;}
.ws5b{word-spacing:-3.584000pt;}
.wsbc{word-spacing:-3.520000pt;}
.ws86{word-spacing:-3.456000pt;}
.ws5e{word-spacing:-3.392000pt;}
.ws31{word-spacing:-3.264000pt;}
.ws2b{word-spacing:-3.200000pt;}
.ws41{word-spacing:-3.136000pt;}
.wsd{word-spacing:-2.944000pt;}
.ws47{word-spacing:-2.816000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws98{word-spacing:-2.624000pt;}
.ws1f{word-spacing:-2.496000pt;}
.ws88{word-spacing:-2.368000pt;}
.ws4b{word-spacing:-2.304000pt;}
.ws16{word-spacing:-2.240000pt;}
.ws11{word-spacing:-2.176000pt;}
.ws2a{word-spacing:-1.984000pt;}
.wsa0{word-spacing:-1.973333pt;}
.ws76{word-spacing:-1.920000pt;}
.ws1{word-spacing:-1.866667pt;}
.ws85{word-spacing:-1.856000pt;}
.ws63{word-spacing:-1.792000pt;}
.ws14{word-spacing:-1.664000pt;}
.ws8{word-spacing:-1.600000pt;}
.wsb5{word-spacing:-1.536000pt;}
.ws97{word-spacing:-1.280000pt;}
.ws9c{word-spacing:-1.152000pt;}
.ws59{word-spacing:-1.088000pt;}
.ws65{word-spacing:-1.024000pt;}
.wsbe{word-spacing:-0.970667pt;}
.ws2e{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.906667pt;}
.ws6e{word-spacing:-0.896000pt;}
.ws6f{word-spacing:-0.832000pt;}
.ws8c{word-spacing:-0.704000pt;}
.ws24{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.512000pt;}
.ws44{word-spacing:-0.384000pt;}
.wsb7{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.128000pt;}
.wsbb{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.064000pt;}
.ws36{word-spacing:0.128000pt;}
.wsb8{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.256000pt;}
.ws3b{word-spacing:0.320000pt;}
.ws9f{word-spacing:0.384000pt;}
.ws9d{word-spacing:0.512000pt;}
.ws7b{word-spacing:0.640000pt;}
.ws22{word-spacing:0.704000pt;}
.ws20{word-spacing:0.768000pt;}
.ws37{word-spacing:0.832000pt;}
.ws2c{word-spacing:0.896000pt;}
.ws64{word-spacing:0.960000pt;}
.ws34{word-spacing:1.024000pt;}
.ws6a{word-spacing:1.088000pt;}
.ws28{word-spacing:1.152000pt;}
.wsf{word-spacing:1.216000pt;}
.ws25{word-spacing:1.280000pt;}
.ws26{word-spacing:1.344000pt;}
.wsac{word-spacing:1.408000pt;}
.ws54{word-spacing:1.600000pt;}
.ws93{word-spacing:1.728000pt;}
.wsa9{word-spacing:1.792000pt;}
.ws19{word-spacing:1.920000pt;}
.ws23{word-spacing:1.984000pt;}
.ws6c{word-spacing:2.048000pt;}
.ws99{word-spacing:2.176000pt;}
.ws50{word-spacing:2.304000pt;}
.ws72{word-spacing:2.432000pt;}
.ws8d{word-spacing:2.560000pt;}
.ws7d{word-spacing:2.624000pt;}
.ws4c{word-spacing:2.752000pt;}
.ws1e{word-spacing:2.880000pt;}
.ws35{word-spacing:2.944000pt;}
.wsa{word-spacing:3.072000pt;}
.wsa5{word-spacing:3.136000pt;}
.ws4f{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.264000pt;}
.ws60{word-spacing:3.328000pt;}
.ws3e{word-spacing:3.456000pt;}
.ws62{word-spacing:3.520000pt;}
.ws71{word-spacing:3.584000pt;}
.ws17{word-spacing:3.648000pt;}
.ws9e{word-spacing:3.712000pt;}
.wsa1{word-spacing:3.840000pt;}
.ws43{word-spacing:3.968000pt;}
.ws3c{word-spacing:4.032000pt;}
.wsb6{word-spacing:4.096000pt;}
.ws2f{word-spacing:4.224000pt;}
.ws1c{word-spacing:4.288000pt;}
.ws90{word-spacing:4.416000pt;}
.ws2d{word-spacing:4.544000pt;}
.ws6{word-spacing:4.554667pt;}
.ws1b{word-spacing:4.608000pt;}
.ws96{word-spacing:4.672000pt;}
.ws58{word-spacing:4.992000pt;}
.ws48{word-spacing:5.056000pt;}
.ws52{word-spacing:5.120000pt;}
.wsc{word-spacing:5.312000pt;}
.ws46{word-spacing:5.504000pt;}
.wsbd{word-spacing:5.824000pt;}
.ws51{word-spacing:5.888000pt;}
.ws57{word-spacing:5.952000pt;}
.ws80{word-spacing:6.144000pt;}
.ws77{word-spacing:6.208000pt;}
.wsab{word-spacing:6.272000pt;}
.wsa7{word-spacing:6.336000pt;}
.ws45{word-spacing:6.528000pt;}
.ws6b{word-spacing:6.720000pt;}
.ws74{word-spacing:6.784000pt;}
.wsae{word-spacing:6.848000pt;}
.ws92{word-spacing:7.040000pt;}
.ws91{word-spacing:7.104000pt;}
.ws49{word-spacing:7.424000pt;}
.ws79{word-spacing:7.488000pt;}
.ws7a{word-spacing:7.552000pt;}
.wse{word-spacing:7.616000pt;}
.ws68{word-spacing:7.680000pt;}
.wsb0{word-spacing:7.872000pt;}
.ws39{word-spacing:8.000000pt;}
.ws5d{word-spacing:8.064000pt;}
.ws9b{word-spacing:8.192000pt;}
.ws4d{word-spacing:8.256000pt;}
.wsa2{word-spacing:8.384000pt;}
.ws9a{word-spacing:8.448000pt;}
.ws78{word-spacing:8.576000pt;}
.ws13{word-spacing:8.640000pt;}
.ws83{word-spacing:8.704000pt;}
.ws18{word-spacing:9.024000pt;}
.wsbf{word-spacing:9.184000pt;}
.ws15{word-spacing:9.280000pt;}
.ws8e{word-spacing:9.472000pt;}
.ws6d{word-spacing:9.536000pt;}
.wsb2{word-spacing:9.600000pt;}
.ws73{word-spacing:9.664000pt;}
.ws4e{word-spacing:9.920000pt;}
.ws8a{word-spacing:9.984000pt;}
.ws30{word-spacing:10.048000pt;}
.ws7e{word-spacing:10.304000pt;}
.ws89{word-spacing:10.496000pt;}
.ws75{word-spacing:11.328000pt;}
.wsa8{word-spacing:11.392000pt;}
.ws4a{word-spacing:11.456000pt;}
.ws7c{word-spacing:11.520000pt;}
.ws42{word-spacing:11.840000pt;}
.ws7f{word-spacing:11.968000pt;}
.ws21{word-spacing:12.224000pt;}
.wsb1{word-spacing:12.288000pt;}
.wsa6{word-spacing:12.608000pt;}
.ws8b{word-spacing:12.992000pt;}
.ws3f{word-spacing:13.120000pt;}
.ws94{word-spacing:13.312000pt;}
.ws67{word-spacing:13.568000pt;}
.ws1d{word-spacing:14.208000pt;}
.ws27{word-spacing:14.528000pt;}
.ws82{word-spacing:14.976000pt;}
.wsb3{word-spacing:15.296000pt;}
.ws69{word-spacing:15.616000pt;}
.ws10{word-spacing:16.000000pt;}
.wsaf{word-spacing:16.128000pt;}
.ws95{word-spacing:17.408000pt;}
.ws70{word-spacing:17.472000pt;}
.ws81{word-spacing:17.984000pt;}
.wsa4{word-spacing:19.136000pt;}
.ws8f{word-spacing:19.968000pt;}
.ws38{word-spacing:21.632000pt;}
.wsc0{word-spacing:22.549333pt;}
.ws32{word-spacing:26.816000pt;}
.ws56{word-spacing:34.240000pt;}
.ws4{word-spacing:168.000000pt;}
.ws5{word-spacing:176.000000pt;}
.wsba{word-spacing:177.349333pt;}
._29{margin-left:-189.880533pt;}
._28{margin-left:-177.372800pt;}
._6{margin-left:-176.000000pt;}
._4{margin-left:-168.090133pt;}
._c{margin-left:-143.904000pt;}
._d{margin-left:-133.312000pt;}
._7{margin-left:-126.124800pt;}
._5{margin-left:-114.403200pt;}
._a{margin-left:-103.779200pt;}
._2b{margin-left:-52.999467pt;}
._2a{margin-left:-33.721600pt;}
._b{margin-left:-29.159467pt;}
._25{margin-left:-15.496533pt;}
._10{margin-left:-13.632000pt;}
._1f{margin-left:-9.331200pt;}
._f{margin-left:-8.341333pt;}
._1e{margin-left:-7.116800pt;}
._e{margin-left:-6.192000pt;}
._1{margin-left:-4.554667pt;}
._0{margin-left:-2.880000pt;}
._2{margin-left:-1.799467pt;}
._23{margin-left:-0.889600pt;}
._12{width:0.900267pt;}
._3{width:1.799467pt;}
._11{width:3.046400pt;}
._13{width:4.166400pt;}
._14{width:5.127467pt;}
._17{width:6.469333pt;}
._8{width:7.360000pt;}
._15{width:8.377600pt;}
._19{width:9.587200pt;}
._1c{width:11.052800pt;}
._22{width:11.961600pt;}
._1d{width:13.085867pt;}
._18{width:14.803200pt;}
._24{width:17.728000pt;}
._1a{width:21.264000pt;}
._1b{width:22.460800pt;}
._16{width:26.636800pt;}
._21{width:64.019200pt;}
._26{width:66.962133pt;}
._20{width:85.292800pt;}
._9{width:176.000000pt;}
._27{width:177.331733pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fs8{font-size:128.000000pt;}
.fs4{font-size:160.000000pt;}
.fs3{font-size:256.000000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:113.385867pt;}
.y150{bottom:113.536800pt;}
.y9f{bottom:115.977333pt;}
.yd7{bottom:116.134800pt;}
.y56{bottom:117.599867pt;}
.y10{bottom:118.797867pt;}
.y36{bottom:118.891200pt;}
.y7{bottom:124.352800pt;}
.ye4{bottom:124.654267pt;}
.y130{bottom:125.026667pt;}
.y77{bottom:126.386533pt;}
.y11b{bottom:127.331467pt;}
.y16a{bottom:128.591333pt;}
.ye7{bottom:129.385867pt;}
.y177{bottom:131.268533pt;}
.yf3{bottom:132.585867pt;}
.y14f{bottom:133.536800pt;}
.y9e{bottom:135.977333pt;}
.yd6{bottom:136.134800pt;}
.y55{bottom:137.599867pt;}
.y35{bottom:138.891200pt;}
.ye3{bottom:144.654267pt;}
.y11c{bottom:145.385867pt;}
.y193{bottom:146.570667pt;}
.y11a{bottom:147.331467pt;}
.y176{bottom:151.268533pt;}
.y6{bottom:153.291333pt;}
.y14e{bottom:153.536800pt;}
.yd5{bottom:156.134800pt;}
.y54{bottom:157.599867pt;}
.y10d{bottom:164.654267pt;}
.y192{bottom:166.570667pt;}
.y119{bottom:167.331467pt;}
.y76{bottom:169.063733pt;}
.y169{bottom:171.268533pt;}
.y14d{bottom:173.536800pt;}
.yd4{bottom:176.134800pt;}
.y53{bottom:177.599867pt;}
.y9d{bottom:178.654400pt;}
.y5{bottom:182.230000pt;}
.y10c{bottom:184.654267pt;}
.y24{bottom:186.305333pt;}
.ye2{bottom:187.331467pt;}
.y75{bottom:189.063733pt;}
.yf{bottom:189.475067pt;}
.y168{bottom:191.268533pt;}
.yd3{bottom:196.134800pt;}
.y34{bottom:196.686400pt;}
.y52{bottom:197.599867pt;}
.y9c{bottom:198.654400pt;}
.y10b{bottom:204.654267pt;}
.ye1{bottom:207.331467pt;}
.y191{bottom:209.247867pt;}
.y167{bottom:211.268533pt;}
.y175{bottom:213.945600pt;}
.yd2{bottom:216.134800pt;}
.y14c{bottom:216.214000pt;}
.y33{bottom:216.686400pt;}
.y51{bottom:217.599867pt;}
.y9b{bottom:218.654400pt;}
.y1a6{bottom:223.236933pt;}
.y10a{bottom:224.654267pt;}
.ye0{bottom:227.331467pt;}
.y190{bottom:229.247867pt;}
.y166{bottom:231.268533pt;}
.y74{bottom:231.740933pt;}
.y174{bottom:233.945600pt;}
.yd1{bottom:236.134800pt;}
.y14b{bottom:236.214000pt;}
.y32{bottom:236.686400pt;}
.y50{bottom:237.599867pt;}
.y12f{bottom:238.412533pt;}
.y9a{bottom:238.654400pt;}
.y1a5{bottom:243.236933pt;}
.y1b2{bottom:243.907733pt;}
.ydf{bottom:247.331467pt;}
.y129{bottom:253.170800pt;}
.yd0{bottom:256.134800pt;}
.y14a{bottom:256.214000pt;}
.y31{bottom:256.686400pt;}
.y4f{bottom:257.599867pt;}
.y99{bottom:258.654400pt;}
.y13a{bottom:259.672667pt;}
.ye{bottom:260.152267pt;}
.y1b1{bottom:263.907733pt;}
.yde{bottom:267.331467pt;}
.y18f{bottom:271.924933pt;}
.y165{bottom:273.945600pt;}
.ycf{bottom:276.134800pt;}
.y149{bottom:276.214000pt;}
.y173{bottom:276.622800pt;}
.y30{bottom:276.686400pt;}
.y4e{bottom:277.599867pt;}
.y98{bottom:278.654400pt;}
.y139{bottom:278.872667pt;}
.y128{bottom:279.929867pt;}
.y1a4{bottom:285.914133pt;}
.ydd{bottom:287.331467pt;}
.y18e{bottom:291.924933pt;}
.yce{bottom:296.134800pt;}
.y172{bottom:296.622800pt;}
.y4d{bottom:297.599867pt;}
.y97{bottom:298.654400pt;}
.y1b0{bottom:299.025733pt;}
.y1a3{bottom:305.914133pt;}
.ydc{bottom:307.331467pt;}
.ycd{bottom:316.134800pt;}
.y164{bottom:316.622800pt;}
.y4c{bottom:317.599867pt;}
.y96{bottom:318.654400pt;}
.y23{bottom:318.891200pt;}
.y1af{bottom:319.025733pt;}
.y126{bottom:319.976133pt;}
.y4{bottom:320.774800pt;}
.y15{bottom:323.907733pt;}
.y73{bottom:327.331467pt;}
.yfe{bottom:327.928533pt;}
.y138{bottom:329.649067pt;}
.yd{bottom:330.829467pt;}
.y2f{bottom:334.481733pt;}
.y18d{bottom:334.602133pt;}
.ycc{bottom:336.134667pt;}
.y163{bottom:336.622800pt;}
.y4b{bottom:337.599867pt;}
.y95{bottom:338.654533pt;}
.y22{bottom:338.891200pt;}
.y1ae{bottom:339.025733pt;}
.yef{bottom:339.448800pt;}
.y14{bottom:343.907733pt;}
.yfd{bottom:343.928533pt;}
.y72{bottom:347.331467pt;}
.y1a2{bottom:348.591333pt;}
.y137{bottom:348.849067pt;}
.y12e{bottom:351.335733pt;}
.y2e{bottom:354.481733pt;}
.y18c{bottom:354.602133pt;}
.y123{bottom:354.888000pt;}
.y162{bottom:356.622800pt;}
.yec{bottom:357.599867pt;}
.y127{bottom:357.788800pt;}
.y148{bottom:358.891200pt;}
.y1ad{bottom:359.025733pt;}
.yf2{bottom:362.453600pt;}
.ye9{bottom:362.834667pt;}
.y71{bottom:367.331467pt;}
.y1a1{bottom:368.591333pt;}
.yb7{bottom:370.008667pt;}
.y122{bottom:370.888000pt;}
.y2d{bottom:374.481733pt;}
.y171{bottom:376.622800pt;}
.yeb{bottom:377.599867pt;}
.ycb{bottom:378.811867pt;}
.ye8{bottom:378.834667pt;}
.y13{bottom:379.025733pt;}
.y4a{bottom:380.276933pt;}
.y94{bottom:381.331600pt;}
.yf1{bottom:381.653600pt;}
.y10e{bottom:384.424533pt;}
.y70{bottom:387.331467pt;}
.y1a0{bottom:388.591333pt;}
.yb6{bottom:390.008667pt;}
.ybb{bottom:392.126000pt;}
.y2c{bottom:394.481733pt;}
.y21{bottom:396.686400pt;}
.y18b{bottom:397.279200pt;}
.y104{bottom:397.886133pt;}
.y111{bottom:398.740133pt;}
.y12{bottom:399.025733pt;}
.y161{bottom:399.300000pt;}
.y49{bottom:400.276933pt;}
.yf0{bottom:400.853600pt;}
.y93{bottom:401.331600pt;}
.yc{bottom:401.506667pt;}
.y147{bottom:401.568267pt;}
.yca{bottom:406.370933pt;}
.y6f{bottom:407.331467pt;}
.yb5{bottom:410.008667pt;}
.y103{bottom:413.886133pt;}
.y2b{bottom:414.481733pt;}
.y110{bottom:414.740133pt;}
.y20{bottom:416.686400pt;}
.y18a{bottom:417.279200pt;}
.y160{bottom:419.300000pt;}
.y48{bottom:420.276933pt;}
.y92{bottom:421.331600pt;}
.y11e{bottom:424.960667pt;}
.y118{bottom:425.196800pt;}
.yc9{bottom:426.370933pt;}
.y6e{bottom:427.331467pt;}
.yb4{bottom:430.008667pt;}
.y19f{bottom:431.268533pt;}
.y2a{bottom:434.481733pt;}
.y1f{bottom:436.686400pt;}
.y15f{bottom:439.300000pt;}
.y47{bottom:440.276933pt;}
.y11d{bottom:440.960667pt;}
.y117{bottom:441.196800pt;}
.y91{bottom:441.331600pt;}
.y146{bottom:444.245467pt;}
.y6d{bottom:447.331467pt;}
.yb3{bottom:450.008667pt;}
.y19e{bottom:451.268533pt;}
.yc8{bottom:453.930000pt;}
.y170{bottom:459.300000pt;}
.y189{bottom:459.956400pt;}
.y46{bottom:460.276933pt;}
.y90{bottom:461.331600pt;}
.y140{bottom:463.773067pt;}
.y12d{bottom:464.239200pt;}
.y6c{bottom:467.331467pt;}
.yb2{bottom:470.008667pt;}
.yb{bottom:472.183733pt;}
.yc7{bottom:473.930000pt;}
.y188{bottom:479.956400pt;}
.y45{bottom:480.276933pt;}
.y8f{bottom:481.331600pt;}
.y15e{bottom:481.977067pt;}
.y145{bottom:486.922667pt;}
.y6b{bottom:487.331467pt;}
.yb1{bottom:490.008667pt;}
.y29{bottom:492.276933pt;}
.y19d{bottom:493.945600pt;}
.y1e{bottom:494.481733pt;}
.y44{bottom:500.276933pt;}
.y8e{bottom:501.331600pt;}
.yc6{bottom:501.489067pt;}
.y3{bottom:501.914933pt;}
.y15d{bottom:501.977067pt;}
.y6a{bottom:507.331467pt;}
.yb0{bottom:510.008667pt;}
.y28{bottom:512.276933pt;}
.y19c{bottom:513.945600pt;}
.y1d{bottom:514.481733pt;}
.y43{bottom:520.276933pt;}
.y13f{bottom:521.568267pt;}
.y15c{bottom:521.977067pt;}
.y187{bottom:522.633600pt;}
.y125{bottom:526.566667pt;}
.ydb{bottom:527.331467pt;}
.yfc{bottom:529.351600pt;}
.y144{bottom:529.599867pt;}
.yaf{bottom:530.008667pt;}
.y27{bottom:532.276933pt;}
.y42{bottom:540.276933pt;}
.y15b{bottom:541.977067pt;}
.y186{bottom:542.633600pt;}
.ya{bottom:542.860933pt;}
.y8d{bottom:544.008800pt;}
.yc5{bottom:544.166267pt;}
.yfb{bottom:545.351600pt;}
.yda{bottom:547.331467pt;}
.y143{bottom:549.599867pt;}
.y69{bottom:550.008667pt;}
.y26{bottom:552.276933pt;}
.y114{bottom:552.685733pt;}
.y2{bottom:554.551200pt;}
.y19b{bottom:556.622800pt;}
.y136{bottom:557.680667pt;}
.y41{bottom:560.276933pt;}
.y15a{bottom:561.977067pt;}
.y185{bottom:562.633600pt;}
.y8c{bottom:564.008800pt;}
.yc4{bottom:564.166267pt;}
.y16f{bottom:564.654267pt;}
.y68{bottom:570.008667pt;}
.y1c{bottom:572.276933pt;}
.y113{bottom:572.685733pt;}
.y13e{bottom:575.584000pt;}
.y135{bottom:576.880667pt;}
.y40{bottom:580.276933pt;}
.y12c{bottom:580.883067pt;}
.y8b{bottom:584.008800pt;}
.y67{bottom:590.008667pt;}
.y1b{bottom:592.276933pt;}
.yae{bottom:592.685733pt;}
.y19a{bottom:599.300000pt;}
.y3f{bottom:600.276933pt;}
.yee{bottom:602.007867pt;}
.y8a{bottom:604.008800pt;}
.y159{bottom:604.654267pt;}
.y184{bottom:605.310800pt;}
.yc3{bottom:606.843333pt;}
.y16e{bottom:607.331467pt;}
.y66{bottom:610.008667pt;}
.y1a{bottom:612.276933pt;}
.yad{bottom:612.685733pt;}
.y121{bottom:613.270800pt;}
.y9{bottom:613.538133pt;}
.y3e{bottom:620.276933pt;}
.y89{bottom:624.008800pt;}
.y158{bottom:624.654267pt;}
.y183{bottom:625.310800pt;}
.y13d{bottom:625.820267pt;}
.yc2{bottom:626.843333pt;}
.y16d{bottom:627.331467pt;}
.y120{bottom:629.270800pt;}
.y65{bottom:630.008667pt;}
.y142{bottom:632.276933pt;}
.yac{bottom:632.685733pt;}
.ye6{bottom:635.362933pt;}
.y199{bottom:641.977067pt;}
.yea{bottom:642.954133pt;}
.y88{bottom:644.008800pt;}
.y182{bottom:645.310800pt;}
.y10f{bottom:646.299200pt;}
.yc1{bottom:646.843333pt;}
.y16c{bottom:647.331467pt;}
.y64{bottom:650.008667pt;}
.y25{bottom:650.072267pt;}
.y1{bottom:650.551200pt;}
.y141{bottom:652.276933pt;}
.yba{bottom:652.685733pt;}
.y134{bottom:652.786000pt;}
.y102{bottom:655.347333pt;}
.ye5{bottom:655.362933pt;}
.y198{bottom:661.977067pt;}
.y3d{bottom:662.954133pt;}
.y87{bottom:664.008800pt;}
.y181{bottom:665.310800pt;}
.yc0{bottom:666.843333pt;}
.y157{bottom:667.331467pt;}
.y19{bottom:670.072267pt;}
.yb9{bottom:672.685733pt;}
.y133{bottom:672.786000pt;}
.y101{bottom:675.347333pt;}
.yab{bottom:675.362933pt;}
.y13c{bottom:679.836000pt;}
.y86{bottom:684.008800pt;}
.y156{bottom:687.331467pt;}
.y18{bottom:690.072267pt;}
.y63{bottom:692.685733pt;}
.y132{bottom:692.786000pt;}
.y100{bottom:695.347333pt;}
.yaa{bottom:695.362933pt;}
.y12b{bottom:698.384133pt;}
.y85{bottom:704.008800pt;}
.y197{bottom:704.654267pt;}
.y180{bottom:707.988000pt;}
.y16b{bottom:710.008667pt;}
.y17{bottom:710.072267pt;}
.y62{bottom:712.685733pt;}
.yff{bottom:715.347333pt;}
.ya9{bottom:715.362933pt;}
.y1ac{bottom:715.547067pt;}
.y196{bottom:724.654267pt;}
.y17f{bottom:727.988000pt;}
.y155{bottom:730.008667pt;}
.y11f{bottom:731.338533pt;}
.y124{bottom:731.873467pt;}
.ybf{bottom:732.197733pt;}
.y61{bottom:732.685733pt;}
.y84{bottom:735.347333pt;}
.ya8{bottom:735.362933pt;}
.y1ab{bottom:735.547067pt;}
.y116{bottom:737.007867pt;}
.y154{bottom:750.008667pt;}
.y60{bottom:752.685733pt;}
.y115{bottom:753.007867pt;}
.y83{bottom:755.347333pt;}
.ya7{bottom:755.362933pt;}
.y1aa{bottom:755.547067pt;}
.ybe{bottom:759.756800pt;}
.y195{bottom:767.331467pt;}
.y153{bottom:770.008667pt;}
.y17e{bottom:770.665200pt;}
.y109{bottom:772.685733pt;}
.y82{bottom:775.347333pt;}
.ya6{bottom:775.362933pt;}
.yfa{bottom:778.024533pt;}
.ybd{bottom:779.756800pt;}
.y152{bottom:790.008667pt;}
.y17d{bottom:790.665200pt;}
.y108{bottom:792.685733pt;}
.y81{bottom:795.347333pt;}
.y5f{bottom:795.362933pt;}
.y3c{bottom:796.340000pt;}
.yf9{bottom:798.024533pt;}
.y112{bottom:798.040133pt;}
.y1a9{bottom:798.224267pt;}
.y131{bottom:809.791467pt;}
.y194{bottom:810.008667pt;}
.y107{bottom:812.685733pt;}
.y80{bottom:815.347333pt;}
.y5e{bottom:815.362933pt;}
.y12a{bottom:815.454800pt;}
.yf8{bottom:818.024533pt;}
.ya5{bottom:818.040133pt;}
.ybc{bottom:822.433867pt;}
.y106{bottom:832.685733pt;}
.y17c{bottom:833.342400pt;}
.yed{bottom:833.385733pt;}
.y7f{bottom:835.347333pt;}
.y5d{bottom:835.362933pt;}
.yf7{bottom:838.024533pt;}
.ya4{bottom:838.040133pt;}
.y16{bottom:843.458133pt;}
.y105{bottom:852.685733pt;}
.y8{bottom:854.294000pt;}
.y7e{bottom:855.347333pt;}
.y5c{bottom:855.362933pt;}
.y1a8{bottom:856.019467pt;}
.yf6{bottom:858.024533pt;}
.ya3{bottom:858.040133pt;}
.y151{bottom:872.685733pt;}
.y7d{bottom:875.347333pt;}
.y5b{bottom:875.362933pt;}
.y17b{bottom:876.019467pt;}
.yf5{bottom:878.024533pt;}
.ya2{bottom:878.040133pt;}
.y3b{bottom:880.244933pt;}
.y5a{bottom:895.362933pt;}
.y17a{bottom:896.019467pt;}
.yf4{bottom:898.024533pt;}
.ya1{bottom:898.040133pt;}
.y3a{bottom:900.244933pt;}
.y13b{bottom:901.095867pt;}
.yd9{bottom:915.362933pt;}
.y7c{bottom:918.024533pt;}
.ya0{bottom:918.040133pt;}
.y1a7{bottom:918.696667pt;}
.y39{bottom:920.244933pt;}
.yd8{bottom:935.362933pt;}
.y7b{bottom:938.024533pt;}
.y59{bottom:938.040133pt;}
.y179{bottom:938.696667pt;}
.y38{bottom:940.244933pt;}
.y7a{bottom:958.024533pt;}
.y58{bottom:958.040133pt;}
.y79{bottom:978.024533pt;}
.y57{bottom:978.040133pt;}
.y178{bottom:996.492000pt;}
.y78{bottom:998.024533pt;}
.y37{bottom:998.040133pt;}
.y11{bottom:999.133867pt;}
.h13{height:44.437500pt;}
.hd{height:44.468750pt;}
.h15{height:44.593750pt;}
.h14{height:44.800000pt;}
.h7{height:45.653333pt;}
.ha{height:46.796875pt;}
.h12{height:46.927083pt;}
.h4{height:51.476562pt;}
.h16{height:51.880208pt;}
.h11{height:52.026042pt;}
.hc{height:56.156250pt;}
.h9{height:56.312500pt;}
.he{height:56.843750pt;}
.h3{height:63.914667pt;}
.h8{height:65.515625pt;}
.h10{height:66.317708pt;}
.hf{height:94.739583pt;}
.h6{height:140.390625pt;}
.h5{height:227.375000pt;}
.h2{height:273.920000pt;}
.hb{height:284.218750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.385867pt;}
.x9{left:115.153733pt;}
.x19{left:118.916800pt;}
.x8{left:119.984400pt;}
.x22{left:121.162800pt;}
.x12{left:122.910267pt;}
.x25{left:127.048267pt;}
.xa{left:129.391733pt;}
.x14{left:136.378933pt;}
.x18{left:139.782667pt;}
.x10{left:141.481867pt;}
.x1e{left:143.819067pt;}
.xc{left:146.794000pt;}
.x16{left:147.933733pt;}
.x20{left:154.893333pt;}
.x23{left:157.829467pt;}
.x15{left:168.214933pt;}
.x11{left:176.039200pt;}
.xf{left:178.428533pt;}
.x7{left:188.135467pt;}
.x2{left:196.535467pt;}
.x17{left:198.910267pt;}
.x21{left:203.955867pt;}
.xe{left:209.632933pt;}
.x13{left:210.863333pt;}
.x3{left:219.212533pt;}
.x1f{left:227.399867pt;}
.x1a{left:230.752667pt;}
.x1d{left:234.437600pt;}
.x27{left:238.519600pt;}
.x1c{left:251.579467pt;}
.x29{left:253.228267pt;}
.x26{left:256.293067pt;}
.xb{left:272.698933pt;}
.x24{left:293.688933pt;}
.x6{left:345.471200pt;}
.x1b{left:346.631600pt;}
.x4{left:466.525867pt;}
.x2a{left:482.260267pt;}
.x28{left:501.583600pt;}
.x5{left:507.782400pt;}
.xd{left:546.942533pt;}
.x2b{left:567.854000pt;}
}




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