
    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_ccaf32acf180f4d30f5f9686.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_deb766070c8e9c735aeeb7ba.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_8951ee505d35c84e25269bdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_31f1be694dd4feaf7a03b1e0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_731617524d0f1480a5a176ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_982ab7bccbd59dfdcc3a96d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724000;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_a8b39cbe06794e84358f644c.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;}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-24.847800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.661400px;}
.ls7{letter-spacing:-1.620000px;}
.ls3{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.720000px;}
.ls2{letter-spacing:9.152400px;}
.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;}
}
.wsc3{word-spacing:-72.000000px;}
.ws24{word-spacing:-18.000000px;}
.ws4f{word-spacing:-17.280000px;}
.wsc2{word-spacing:-16.344000px;}
.ws19{word-spacing:-13.500000px;}
.ws50{word-spacing:-12.960000px;}
.ws64{word-spacing:-11.880000px;}
.ws70{word-spacing:-5.472000px;}
.ws99{word-spacing:-4.608000px;}
.wsf{word-spacing:-3.960000px;}
.ws95{word-spacing:-3.744000px;}
.ws9f{word-spacing:-3.528000px;}
.wsbc{word-spacing:-3.312000px;}
.ws54{word-spacing:-3.240000px;}
.ws6b{word-spacing:-3.168000px;}
.ws8f{word-spacing:-3.024000px;}
.wsab{word-spacing:-2.970000px;}
.ws1b{word-spacing:-2.952000px;}
.ws25{word-spacing:-2.736000px;}
.ws85{word-spacing:-2.592000px;}
.ws39{word-spacing:-2.520000px;}
.wsbb{word-spacing:-2.304000px;}
.ws90{word-spacing:-2.232000px;}
.ws57{word-spacing:-2.160000px;}
.ws59{word-spacing:-2.088000px;}
.ws6f{word-spacing:-2.016000px;}
.ws1{word-spacing:-1.944000px;}
.ws51{word-spacing:-1.872000px;}
.ws71{word-spacing:-1.728000px;}
.ws6e{word-spacing:-1.674000px;}
.ws1c{word-spacing:-1.656000px;}
.ws2e{word-spacing:-1.584000px;}
.ws42{word-spacing:-1.512000px;}
.ws8d{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.296000px;}
.ws5c{word-spacing:-1.224000px;}
.ws8c{word-spacing:-1.152000px;}
.ws13{word-spacing:-1.080000px;}
.ws81{word-spacing:-1.008000px;}
.ws5e{word-spacing:-0.972000px;}
.ws4d{word-spacing:-0.936000px;}
.ws9b{word-spacing:-0.864000px;}
.wsb9{word-spacing:-0.792000px;}
.ws31{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.648000px;}
.ws6c{word-spacing:-0.576000px;}
.ws84{word-spacing:-0.504000px;}
.ws52{word-spacing:-0.432000px;}
.wse{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.072000px;}
.ws20{word-spacing:0.216000px;}
.ws69{word-spacing:0.288000px;}
.ws53{word-spacing:0.360000px;}
.ws22{word-spacing:0.432000px;}
.ws7d{word-spacing:0.504000px;}
.ws1a{word-spacing:0.576000px;}
.ws60{word-spacing:0.648000px;}
.ws67{word-spacing:0.720000px;}
.wsc{word-spacing:0.792000px;}
.ws5d{word-spacing:0.864000px;}
.wsa{word-spacing:0.936000px;}
.ws2a{word-spacing:1.008000px;}
.ws37{word-spacing:1.080000px;}
.ws55{word-spacing:1.152000px;}
.ws6a{word-spacing:1.224000px;}
.ws7{word-spacing:1.296000px;}
.ws62{word-spacing:1.368000px;}
.ws21{word-spacing:1.512000px;}
.ws3e{word-spacing:1.584000px;}
.ws5{word-spacing:1.656000px;}
.ws34{word-spacing:1.728000px;}
.ws9d{word-spacing:1.800000px;}
.ws3d{word-spacing:1.872000px;}
.ws56{word-spacing:1.944000px;}
.ws66{word-spacing:2.016000px;}
.ws3b{word-spacing:2.160000px;}
.ws6{word-spacing:2.376000px;}
.ws9a{word-spacing:2.448000px;}
.ws5a{word-spacing:2.664000px;}
.ws97{word-spacing:2.808000px;}
.ws9e{word-spacing:2.880000px;}
.ws58{word-spacing:3.024000px;}
.ws32{word-spacing:3.096000px;}
.ws27{word-spacing:3.168000px;}
.ws4a{word-spacing:3.384000px;}
.ws63{word-spacing:3.456000px;}
.wsbd{word-spacing:3.528000px;}
.ws61{word-spacing:3.600000px;}
.ws18{word-spacing:3.672000px;}
.ws83{word-spacing:3.744000px;}
.ws72{word-spacing:3.888000px;}
.ws3{word-spacing:3.960000px;}
.ws10{word-spacing:4.104000px;}
.ws8e{word-spacing:4.176000px;}
.ws98{word-spacing:4.248000px;}
.ws1e{word-spacing:4.320000px;}
.ws5b{word-spacing:4.392000px;}
.ws96{word-spacing:4.464000px;}
.wsc4{word-spacing:4.608000px;}
.ws14{word-spacing:4.752000px;}
.ws28{word-spacing:4.896000px;}
.ws4b{word-spacing:4.968000px;}
.wsa3{word-spacing:5.040000px;}
.wsd{word-spacing:5.112000px;}
.ws23{word-spacing:5.184000px;}
.ws3c{word-spacing:5.256000px;}
.wsaa{word-spacing:5.328000px;}
.ws7e{word-spacing:5.400000px;}
.ws6d{word-spacing:5.472000px;}
.wsb7{word-spacing:5.544000px;}
.ws1f{word-spacing:5.616000px;}
.ws26{word-spacing:5.688000px;}
.ws33{word-spacing:5.760000px;}
.ws15{word-spacing:5.904000px;}
.ws73{word-spacing:5.976000px;}
.ws8a{word-spacing:6.048000px;}
.ws9{word-spacing:6.120000px;}
.ws36{word-spacing:6.264000px;}
.wsc1{word-spacing:6.336000px;}
.wsa2{word-spacing:6.408000px;}
.ws5f{word-spacing:6.480000px;}
.ws12{word-spacing:6.624000px;}
.wsaf{word-spacing:6.696000px;}
.wsae{word-spacing:6.768000px;}
.ws2b{word-spacing:6.840000px;}
.ws16{word-spacing:6.912000px;}
.wsad{word-spacing:6.984000px;}
.ws8{word-spacing:7.056000px;}
.ws74{word-spacing:7.128000px;}
.ws4e{word-spacing:7.200000px;}
.ws82{word-spacing:7.416000px;}
.ws35{word-spacing:7.920000px;}
.ws17{word-spacing:7.992000px;}
.ws9c{word-spacing:8.280000px;}
.ws3f{word-spacing:8.424000px;}
.ws4c{word-spacing:8.496000px;}
.ws41{word-spacing:8.568000px;}
.ws7f{word-spacing:8.928000px;}
.wsac{word-spacing:9.072000px;}
.wsb{word-spacing:9.144000px;}
.ws3a{word-spacing:9.216000px;}
.ws88{word-spacing:9.288000px;}
.ws49{word-spacing:9.504000px;}
.wsbf{word-spacing:9.576000px;}
.ws79{word-spacing:9.648000px;}
.ws65{word-spacing:9.792000px;}
.wsa8{word-spacing:10.080000px;}
.ws76{word-spacing:10.224000px;}
.wsa1{word-spacing:10.440000px;}
.ws68{word-spacing:10.872000px;}
.wsb2{word-spacing:10.944000px;}
.ws30{word-spacing:11.304000px;}
.wsa0{word-spacing:11.448000px;}
.ws45{word-spacing:12.240000px;}
.ws2f{word-spacing:12.312000px;}
.ws29{word-spacing:12.456000px;}
.wsa7{word-spacing:12.960000px;}
.ws46{word-spacing:13.248000px;}
.wsba{word-spacing:13.392000px;}
.wsa6{word-spacing:13.464000px;}
.ws2d{word-spacing:13.536000px;}
.ws78{word-spacing:13.680000px;}
.ws44{word-spacing:13.752000px;}
.ws2c{word-spacing:13.824000px;}
.wsa4{word-spacing:14.040000px;}
.ws92{word-spacing:14.544000px;}
.ws40{word-spacing:14.616000px;}
.wsb5{word-spacing:14.688000px;}
.ws43{word-spacing:14.760000px;}
.ws91{word-spacing:15.048000px;}
.ws7b{word-spacing:15.120000px;}
.ws47{word-spacing:15.192000px;}
.wsb3{word-spacing:16.128000px;}
.ws7a{word-spacing:16.200000px;}
.wsb8{word-spacing:16.488000px;}
.ws48{word-spacing:16.560000px;}
.ws94{word-spacing:16.632000px;}
.ws87{word-spacing:16.920000px;}
.wsc0{word-spacing:17.064000px;}
.wsa5{word-spacing:17.280000px;}
.ws93{word-spacing:17.352000px;}
.wsb0{word-spacing:17.496000px;}
.wsb1{word-spacing:17.928000px;}
.wsb4{word-spacing:18.000000px;}
.ws80{word-spacing:18.432000px;}
.wsb6{word-spacing:18.504000px;}
.ws75{word-spacing:18.864000px;}
.ws86{word-spacing:19.584000px;}
.ws7c{word-spacing:20.664000px;}
.ws89{word-spacing:22.104000px;}
.ws77{word-spacing:23.112000px;}
.wsbe{word-spacing:24.336000px;}
.ws8b{word-spacing:26.136000px;}
.wsa9{word-spacing:28.080000px;}
._13{margin-left:-18.031800px;}
._0{margin-left:-12.640800px;}
._4{margin-left:-9.709200px;}
._1c{margin-left:-8.568000px;}
._6{margin-left:-6.595200px;}
._3{margin-left:-5.412000px;}
._1{margin-left:-3.702600px;}
._2{margin-left:-2.329800px;}
._9{margin-left:-1.152000px;}
._8{width:1.342800px;}
._f{width:2.520000px;}
._7{width:3.888600px;}
._a{width:5.569800px;}
._10{width:7.372800px;}
._12{width:8.968800px;}
._14{width:10.065600px;}
._1e{width:11.124000px;}
._1f{width:12.456000px;}
._d{width:13.459800px;}
._11{width:14.545200px;}
._1d{width:16.508400px;}
._21{width:19.252800px;}
._23{width:22.777200px;}
._20{width:23.882400px;}
._1b{width:38.772000px;}
._1a{width:41.169600px;}
._17{width:75.377400px;}
._22{width:131.179800px;}
._e{width:213.027600px;}
._18{width:242.158800px;}
._15{width:298.120200px;}
._c{width:355.377600px;}
._b{width:394.517400px;}
._16{width:1396.259400px;}
._24{width:1870.308600px;}
._19{width:2055.138000px;}
._5{width:2085.228600px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(210,32,39);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y103{bottom:57.762000px;}
.y1d{bottom:59.197650px;}
.y14{bottom:59.803050px;}
.y1a6{bottom:71.520750px;}
.y57{bottom:71.878650px;}
.yf8{bottom:72.022350px;}
.y149{bottom:72.087150px;}
.ya5{bottom:72.293700px;}
.y94{bottom:72.303750px;}
.yeb{bottom:72.844350px;}
.y5d{bottom:72.986100px;}
.y148{bottom:73.150050px;}
.ya2{bottom:73.178100px;}
.y5a{bottom:73.198650px;}
.y59{bottom:73.259250px;}
.ycc{bottom:73.494300px;}
.y131{bottom:73.539900px;}
.yff{bottom:73.794000px;}
.y42{bottom:74.248500px;}
.y177{bottom:78.965100px;}
.y18c{bottom:79.344300px;}
.y12f{bottom:79.344450px;}
.yf5{bottom:79.362000px;}
.y154{bottom:79.549500px;}
.y179{bottom:83.177700px;}
.yfe{bottom:83.578650px;}
.yea{bottom:87.873000px;}
.yf7{bottom:88.222350px;}
.ya4{bottom:88.493700px;}
.y89{bottom:88.688100px;}
.y1a5{bottom:93.120900px;}
.y56{bottom:93.478650px;}
.y93{bottom:93.903750px;}
.ycb{bottom:95.094300px;}
.y176{bottom:100.565100px;}
.y18b{bottom:100.944300px;}
.y12e{bottom:100.944450px;}
.yf4{bottom:100.962000px;}
.y153{bottom:101.149500px;}
.y11e{bottom:101.788200px;}
.ya3{bottom:104.693700px;}
.yfd{bottom:105.178650px;}
.ye9{bottom:109.473000px;}
.y88{bottom:110.287950px;}
.y1a4{bottom:114.720900px;}
.y55{bottom:115.078650px;}
.y92{bottom:115.503750px;}
.yca{bottom:116.694300px;}
.y175{bottom:122.165100px;}
.y18a{bottom:122.544300px;}
.y12d{bottom:122.544450px;}
.yf3{bottom:122.562000px;}
.y152{bottom:122.749500px;}
.y11d{bottom:123.388200px;}
.yfc{bottom:126.778650px;}
.ye8{bottom:131.073000px;}
.y87{bottom:131.888100px;}
.y7b{bottom:132.880200px;}
.y1a3{bottom:136.320900px;}
.y1c0{bottom:136.338450px;}
.yc9{bottom:138.294300px;}
.y174{bottom:143.765100px;}
.y12c{bottom:144.144450px;}
.yf2{bottom:144.162000px;}
.y151{bottom:144.349500px;}
.y11c{bottom:144.988200px;}
.yfb{bottom:148.378650px;}
.y6e{bottom:151.993050px;}
.ye7{bottom:152.673000px;}
.y8c{bottom:153.487950px;}
.y7a{bottom:154.480200px;}
.y6d{bottom:157.129200px;}
.y1a2{bottom:157.920750px;}
.y1bf{bottom:157.938450px;}
.y91{bottom:158.703750px;}
.y173{bottom:165.365100px;}
.y12b{bottom:165.744450px;}
.yf1{bottom:165.762000px;}
.y150{bottom:165.949500px;}
.y11b{bottom:166.588200px;}
.y54{bottom:166.718550px;}
.yfa{bottom:169.978650px;}
.ye6{bottom:174.273000px;}
.y86{bottom:175.087950px;}
.y79{bottom:176.080200px;}
.y6c{bottom:178.729200px;}
.y1a1{bottom:179.520750px;}
.y1be{bottom:179.538450px;}
.y90{bottom:180.303750px;}
.yc8{bottom:181.494300px;}
.y33{bottom:186.756750px;}
.y172{bottom:186.965100px;}
.y189{bottom:187.344300px;}
.y12a{bottom:187.344450px;}
.yf0{bottom:187.362000px;}
.ybb{bottom:187.532100px;}
.y14f{bottom:187.549500px;}
.y11a{bottom:188.188200px;}
.ye5{bottom:195.873000px;}
.y85{bottom:196.688100px;}
.y78{bottom:197.680200px;}
.y6b{bottom:200.329200px;}
.y1a0{bottom:201.120900px;}
.y1bd{bottom:201.138450px;}
.y8f{bottom:201.903750px;}
.yc7{bottom:203.094300px;}
.y32{bottom:208.356600px;}
.y171{bottom:208.565100px;}
.y188{bottom:208.944300px;}
.y129{bottom:208.944450px;}
.y3f{bottom:208.962000px;}
.yba{bottom:209.132100px;}
.y14e{bottom:209.149500px;}
.y119{bottom:209.788200px;}
.y84{bottom:218.287950px;}
.y77{bottom:219.280200px;}
.y6a{bottom:221.929200px;}
.y19f{bottom:222.720900px;}
.y1bc{bottom:222.738450px;}
.y8e{bottom:223.503750px;}
.yf9{bottom:224.108100px;}
.yc6{bottom:224.694300px;}
.y170{bottom:230.165100px;}
.y187{bottom:230.544300px;}
.y128{bottom:230.544450px;}
.y102{bottom:230.562000px;}
.yb9{bottom:230.732100px;}
.y14d{bottom:230.749500px;}
.y1c6{bottom:237.347700px;}
.ye4{bottom:239.073000px;}
.y83{bottom:239.888100px;}
.y76{bottom:240.880200px;}
.y69{bottom:243.529200px;}
.y19e{bottom:244.320900px;}
.y1bb{bottom:244.338450px;}
.yc5{bottom:246.294300px;}
.y53{bottom:247.683300px;}
.ybc{bottom:248.217450px;}
.y31{bottom:251.556750px;}
.y16f{bottom:251.765100px;}
.y117{bottom:251.885700px;}
.y127{bottom:252.144450px;}
.yef{bottom:252.162000px;}
.yb8{bottom:252.332100px;}
.y14c{bottom:252.349500px;}
.y1c5{bottom:258.947550px;}
.ye3{bottom:260.673000px;}
.y82{bottom:261.487950px;}
.y75{bottom:262.480200px;}
.y68{bottom:265.129200px;}
.y19d{bottom:265.920750px;}
.y1ba{bottom:265.938450px;}
.yc4{bottom:267.894300px;}
.y52{bottom:269.283300px;}
.y158{bottom:272.319300px;}
.y30{bottom:273.156750px;}
.y16e{bottom:273.365100px;}
.y116{bottom:273.485700px;}
.y186{bottom:273.744300px;}
.y126{bottom:273.744450px;}
.yee{bottom:273.762000px;}
.yb7{bottom:273.932100px;}
.y145{bottom:273.949500px;}
.y41{bottom:278.697300px;}
.y1c4{bottom:280.547700px;}
.ye2{bottom:282.273000px;}
.y81{bottom:283.087950px;}
.y67{bottom:286.729200px;}
.y8d{bottom:287.214450px;}
.y19c{bottom:287.520750px;}
.y1b9{bottom:287.538450px;}
.yc3{bottom:289.494300px;}
.y51{bottom:290.883300px;}
.y2f{bottom:294.756750px;}
.y16d{bottom:294.965100px;}
.y115{bottom:295.085700px;}
.y185{bottom:295.344300px;}
.y125{bottom:295.344450px;}
.yed{bottom:295.362000px;}
.yb6{bottom:295.532100px;}
.y14b{bottom:295.549500px;}
.y1c3{bottom:302.147550px;}
.ye1{bottom:303.873000px;}
.y156{bottom:304.209150px;}
.y80{bottom:304.687950px;}
.y8b{bottom:304.688100px;}
.y74{bottom:307.421550px;}
.y66{bottom:308.329200px;}
.y19b{bottom:309.120900px;}
.y1b8{bottom:309.138450px;}
.yc2{bottom:311.094300px;}
.y58{bottom:311.663250px;}
.y50{bottom:312.483300px;}
.y2e{bottom:316.356600px;}
.y16c{bottom:316.565100px;}
.y114{bottom:316.685700px;}
.y184{bottom:316.944300px;}
.y124{bottom:316.944450px;}
.y3e{bottom:316.962000px;}
.yb5{bottom:317.132100px;}
.y144{bottom:317.149500px;}
.ye0{bottom:325.473000px;}
.y7f{bottom:326.287950px;}
.y65{bottom:329.929200px;}
.y19a{bottom:330.720900px;}
.y1b7{bottom:330.738450px;}
.yc1{bottom:332.694300px;}
.y4f{bottom:334.083300px;}
.y16b{bottom:338.165100px;}
.y113{bottom:338.285700px;}
.y183{bottom:338.544300px;}
.y123{bottom:338.544450px;}
.y3d{bottom:338.562000px;}
.yb4{bottom:338.732100px;}
.y143{bottom:338.749500px;}
.ydf{bottom:347.073000px;}
.y7e{bottom:347.887950px;}
.y8a{bottom:347.888100px;}
.y64{bottom:351.529200px;}
.y199{bottom:352.320900px;}
.y1b6{bottom:352.338450px;}
.y4e{bottom:355.683300px;}
.y2d{bottom:359.556750px;}
.y16a{bottom:359.765100px;}
.y112{bottom:359.885700px;}
.y182{bottom:360.144300px;}
.y122{bottom:360.144450px;}
.y3c{bottom:360.162000px;}
.yb3{bottom:360.332100px;}
.y142{bottom:360.349500px;}
.yec{bottom:368.105850px;}
.yde{bottom:368.673000px;}
.y7d{bottom:369.487950px;}
.y63{bottom:373.129200px;}
.y198{bottom:373.920750px;}
.y1b5{bottom:373.938450px;}
.yc0{bottom:375.894300px;}
.y4d{bottom:377.283300px;}
.y2c{bottom:381.156750px;}
.y169{bottom:381.365100px;}
.y111{bottom:381.485700px;}
.y181{bottom:381.744300px;}
.y121{bottom:381.744450px;}
.y5c{bottom:381.762000px;}
.yb2{bottom:381.932100px;}
.y141{bottom:381.949500px;}
.y5{bottom:382.046400px;}
.y107{bottom:383.557050px;}
.ydd{bottom:390.273000px;}
.y118{bottom:392.043150px;}
.ya{bottom:394.344450px;}
.y62{bottom:394.729200px;}
.y197{bottom:395.520750px;}
.y1b4{bottom:395.538450px;}
.ybf{bottom:397.494300px;}
.y4{bottom:401.846400px;}
.y2b{bottom:402.756750px;}
.y168{bottom:402.965100px;}
.y110{bottom:403.085700px;}
.y180{bottom:403.344300px;}
.y120{bottom:403.344450px;}
.y3b{bottom:403.362000px;}
.yb1{bottom:403.532100px;}
.y140{bottom:403.549500px;}
.ydc{bottom:411.873000px;}
.y61{bottom:416.329200px;}
.y196{bottom:417.120900px;}
.y1b3{bottom:417.138450px;}
.ybe{bottom:419.094300px;}
.y3{bottom:421.646400px;}
.y2a{bottom:424.356600px;}
.y167{bottom:424.565100px;}
.y10f{bottom:424.685700px;}
.y17f{bottom:424.944300px;}
.y3a{bottom:424.962000px;}
.yb0{bottom:425.132100px;}
.y13f{bottom:425.149500px;}
.yf6{bottom:425.624100px;}
.y7c{bottom:430.718400px;}
.y45{bottom:431.945400px;}
.ydb{bottom:433.473150px;}
.y9{bottom:437.544450px;}
.y60{bottom:437.929200px;}
.y195{bottom:438.720900px;}
.y1b2{bottom:438.738450px;}
.y29{bottom:445.956600px;}
.y166{bottom:446.165100px;}
.y10e{bottom:446.285700px;}
.y17e{bottom:446.544300px;}
.ya1{bottom:446.544450px;}
.y39{bottom:446.562000px;}
.yaf{bottom:446.732100px;}
.y14a{bottom:446.749500px;}
.y105{bottom:452.892450px;}
.yda{bottom:455.073000px;}
.ybd{bottom:458.356200px;}
.y8{bottom:459.144450px;}
.y5f{bottom:459.529200px;}
.y194{bottom:460.320900px;}
.y1b1{bottom:460.338450px;}
.y4c{bottom:463.470750px;}
.y178{bottom:466.505700px;}
.y28{bottom:467.556750px;}
.y165{bottom:467.765100px;}
.y10d{bottom:467.885700px;}
.ya0{bottom:468.144450px;}
.y38{bottom:468.162000px;}
.yae{bottom:468.332100px;}
.y13e{bottom:468.349500px;}
.y104{bottom:469.092450px;}
.yd9{bottom:476.673000px;}
.y7{bottom:480.744450px;}
.y193{bottom:481.920750px;}
.y1b0{bottom:481.938450px;}
.y1c2{bottom:483.795900px;}
.y2{bottom:484.646400px;}
.y4b{bottom:485.070750px;}
.y164{bottom:489.365100px;}
.y10c{bottom:489.485700px;}
.y17d{bottom:489.744300px;}
.y9f{bottom:489.744450px;}
.y37{bottom:489.762000px;}
.y13d{bottom:489.949500px;}
.y6{bottom:502.344450px;}
.y192{bottom:503.520750px;}
.y1af{bottom:503.538450px;}
.y4a{bottom:506.670750px;}
.y27{bottom:510.756750px;}
.y163{bottom:510.965100px;}
.y10b{bottom:511.085700px;}
.y17c{bottom:511.344300px;}
.y9e{bottom:511.344450px;}
.y5b{bottom:511.362000px;}
.yad{bottom:511.532100px;}
.y13c{bottom:511.549500px;}
.yd8{bottom:511.751700px;}
.y5e{bottom:515.911350px;}
.y155{bottom:517.126500px;}
.y147{bottom:522.234900px;}
.y157{bottom:523.717050px;}
.y40{bottom:524.248500px;}
.y191{bottom:525.120900px;}
.y1ae{bottom:525.138450px;}
.y1c1{bottom:525.195900px;}
.y1{bottom:526.046400px;}
.ycd{bottom:527.061000px;}
.y101{bottom:527.160150px;}
.y159{bottom:528.159300px;}
.y49{bottom:528.270750px;}
.y26{bottom:532.356600px;}
.y10a{bottom:532.685700px;}
.y17b{bottom:532.944300px;}
.y9d{bottom:532.944450px;}
.y36{bottom:532.962000px;}
.yac{bottom:533.132100px;}
.y13b{bottom:533.149500px;}
.yd7{bottom:533.351700px;}
.y130{bottom:538.421700px;}
.y146{bottom:538.434900px;}
.y100{bottom:543.360150px;}
.y190{bottom:546.720900px;}
.y1ad{bottom:546.738450px;}
.y44{bottom:549.064800px;}
.y48{bottom:549.870750px;}
.y25{bottom:553.956600px;}
.y162{bottom:554.165100px;}
.y109{bottom:554.285700px;}
.y17a{bottom:554.544300px;}
.y9c{bottom:554.544450px;}
.y35{bottom:554.562000px;}
.yab{bottom:554.732100px;}
.y13a{bottom:554.749500px;}
.yd6{bottom:554.951700px;}
.y18f{bottom:568.320900px;}
.y1ac{bottom:568.338450px;}
.y47{bottom:571.470750px;}
.y24{bottom:575.556750px;}
.y161{bottom:575.765100px;}
.y108{bottom:575.885700px;}
.y9b{bottom:576.144450px;}
.y12{bottom:576.162000px;}
.yaa{bottom:576.332100px;}
.y139{bottom:576.349500px;}
.yd5{bottom:576.551850px;}
.y18e{bottom:589.920750px;}
.y1ab{bottom:589.938450px;}
.y46{bottom:593.070750px;}
.y23{bottom:597.156750px;}
.y160{bottom:597.365250px;}
.y9a{bottom:597.744450px;}
.y11{bottom:597.762000px;}
.ya9{bottom:597.932100px;}
.y138{bottom:597.949500px;}
.yd4{bottom:598.151850px;}
.y1a{bottom:611.520750px;}
.y1aa{bottom:611.538450px;}
.y15f{bottom:618.965250px;}
.y99{bottom:619.344450px;}
.y10{bottom:619.362000px;}
.ya8{bottom:619.532100px;}
.y137{bottom:619.549500px;}
.yd3{bottom:619.751850px;}
.y19{bottom:633.120900px;}
.y1a9{bottom:633.138450px;}
.y73{bottom:640.149300px;}
.y22{bottom:640.356600px;}
.y15e{bottom:640.565250px;}
.y11f{bottom:640.944450px;}
.yf{bottom:640.962000px;}
.ya7{bottom:641.132100px;}
.y136{bottom:641.149500px;}
.yd2{bottom:641.351850px;}
.y1c{bottom:654.133050px;}
.y18{bottom:654.720900px;}
.y1a8{bottom:654.738450px;}
.y106{bottom:658.163250px;}
.y72{bottom:661.749300px;}
.y21{bottom:661.956600px;}
.y15d{bottom:662.165250px;}
.y98{bottom:662.544450px;}
.ye{bottom:662.562000px;}
.ya6{bottom:662.732100px;}
.y135{bottom:662.749500px;}
.yd1{bottom:662.951850px;}
.y1b{bottom:675.733050px;}
.y17{bottom:676.320900px;}
.y1a7{bottom:676.338450px;}
.y71{bottom:683.349300px;}
.y20{bottom:683.556750px;}
.y15c{bottom:683.765250px;}
.y97{bottom:684.144450px;}
.yd{bottom:684.162000px;}
.y134{bottom:684.349500px;}
.yd0{bottom:684.551850px;}
.y70{bottom:704.949300px;}
.y1f{bottom:705.156750px;}
.y15b{bottom:705.365250px;}
.y96{bottom:705.744450px;}
.yc{bottom:705.762000px;}
.y133{bottom:705.949500px;}
.ycf{bottom:706.151850px;}
.y6f{bottom:726.549300px;}
.y1e{bottom:726.756750px;}
.y15a{bottom:726.965250px;}
.y95{bottom:727.344450px;}
.yb{bottom:727.362000px;}
.y132{bottom:727.549500px;}
.y16{bottom:727.652100px;}
.yce{bottom:727.751850px;}
.y43{bottom:825.827550px;}
.y15{bottom:826.220250px;}
.y13{bottom:826.432950px;}
.y18d{bottom:826.677900px;}
.y34{bottom:827.283300px;}
.h9{height:37.494141px;}
.h8{height:47.381836px;}
.h6{height:49.289062px;}
.h4{height:49.992188px;}
.h3{height:57.911133px;}
.h7{height:58.896000px;}
.h5{height:63.175781px;}
.ha{height:73.043236px;}
.h2{height:95.818359px;}
.hb{height:121.086914px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:54.000000px;}
.xe{left:55.063050px;}
.x1b{left:64.494150px;}
.x19{left:343.541400px;}
.xf{left:344.763750px;}
.x17{left:346.256400px;}
.x18{left:350.291400px;}
.x1d{left:503.513700px;}
.x3{left:528.928350px;}
.x1{left:549.462150px;}
.x4{left:560.530500px;}
.x2{left:565.984800px;}
.x1c{left:576.434700px;}
.x5{left:604.898400px;}
.xd{left:646.299150px;}
.x12{left:648.425250px;}
.x7{left:655.123650px;}
.x6{left:663.728100px;}
.x8{left:701.055300px;}
.xa{left:816.438150px;}
.x9{left:820.569000px;}
.x14{left:831.179700px;}
.x11{left:836.574750px;}
.x16{left:933.378000px;}
.x13{left:936.859200px;}
.x1a{left:938.024100px;}
.x15{left:1013.244000px;}
.x10{left:1190.834700px;}
.xc{left:1199.834700px;}
@media print{
.v2{vertical-align:-22.086933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.810133pt;}
.ls7{letter-spacing:-1.440000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2{letter-spacing:8.135467pt;}
.wsc3{word-spacing:-64.000000pt;}
.ws24{word-spacing:-16.000000pt;}
.ws4f{word-spacing:-15.360000pt;}
.wsc2{word-spacing:-14.528000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws50{word-spacing:-11.520000pt;}
.ws64{word-spacing:-10.560000pt;}
.ws70{word-spacing:-4.864000pt;}
.ws99{word-spacing:-4.096000pt;}
.wsf{word-spacing:-3.520000pt;}
.ws95{word-spacing:-3.328000pt;}
.ws9f{word-spacing:-3.136000pt;}
.wsbc{word-spacing:-2.944000pt;}
.ws54{word-spacing:-2.880000pt;}
.ws6b{word-spacing:-2.816000pt;}
.ws8f{word-spacing:-2.688000pt;}
.wsab{word-spacing:-2.640000pt;}
.ws1b{word-spacing:-2.624000pt;}
.ws25{word-spacing:-2.432000pt;}
.ws85{word-spacing:-2.304000pt;}
.ws39{word-spacing:-2.240000pt;}
.wsbb{word-spacing:-2.048000pt;}
.ws90{word-spacing:-1.984000pt;}
.ws57{word-spacing:-1.920000pt;}
.ws59{word-spacing:-1.856000pt;}
.ws6f{word-spacing:-1.792000pt;}
.ws1{word-spacing:-1.728000pt;}
.ws51{word-spacing:-1.664000pt;}
.ws71{word-spacing:-1.536000pt;}
.ws6e{word-spacing:-1.488000pt;}
.ws1c{word-spacing:-1.472000pt;}
.ws2e{word-spacing:-1.408000pt;}
.ws42{word-spacing:-1.344000pt;}
.ws8d{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.152000pt;}
.ws5c{word-spacing:-1.088000pt;}
.ws8c{word-spacing:-1.024000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws81{word-spacing:-0.896000pt;}
.ws5e{word-spacing:-0.864000pt;}
.ws4d{word-spacing:-0.832000pt;}
.ws9b{word-spacing:-0.768000pt;}
.wsb9{word-spacing:-0.704000pt;}
.ws31{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws6c{word-spacing:-0.512000pt;}
.ws84{word-spacing:-0.448000pt;}
.ws52{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.064000pt;}
.ws20{word-spacing:0.192000pt;}
.ws69{word-spacing:0.256000pt;}
.ws53{word-spacing:0.320000pt;}
.ws22{word-spacing:0.384000pt;}
.ws7d{word-spacing:0.448000pt;}
.ws1a{word-spacing:0.512000pt;}
.ws60{word-spacing:0.576000pt;}
.ws67{word-spacing:0.640000pt;}
.wsc{word-spacing:0.704000pt;}
.ws5d{word-spacing:0.768000pt;}
.wsa{word-spacing:0.832000pt;}
.ws2a{word-spacing:0.896000pt;}
.ws37{word-spacing:0.960000pt;}
.ws55{word-spacing:1.024000pt;}
.ws6a{word-spacing:1.088000pt;}
.ws7{word-spacing:1.152000pt;}
.ws62{word-spacing:1.216000pt;}
.ws21{word-spacing:1.344000pt;}
.ws3e{word-spacing:1.408000pt;}
.ws5{word-spacing:1.472000pt;}
.ws34{word-spacing:1.536000pt;}
.ws9d{word-spacing:1.600000pt;}
.ws3d{word-spacing:1.664000pt;}
.ws56{word-spacing:1.728000pt;}
.ws66{word-spacing:1.792000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws6{word-spacing:2.112000pt;}
.ws9a{word-spacing:2.176000pt;}
.ws5a{word-spacing:2.368000pt;}
.ws97{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.560000pt;}
.ws58{word-spacing:2.688000pt;}
.ws32{word-spacing:2.752000pt;}
.ws27{word-spacing:2.816000pt;}
.ws4a{word-spacing:3.008000pt;}
.ws63{word-spacing:3.072000pt;}
.wsbd{word-spacing:3.136000pt;}
.ws61{word-spacing:3.200000pt;}
.ws18{word-spacing:3.264000pt;}
.ws83{word-spacing:3.328000pt;}
.ws72{word-spacing:3.456000pt;}
.ws3{word-spacing:3.520000pt;}
.ws10{word-spacing:3.648000pt;}
.ws8e{word-spacing:3.712000pt;}
.ws98{word-spacing:3.776000pt;}
.ws1e{word-spacing:3.840000pt;}
.ws5b{word-spacing:3.904000pt;}
.ws96{word-spacing:3.968000pt;}
.wsc4{word-spacing:4.096000pt;}
.ws14{word-spacing:4.224000pt;}
.ws28{word-spacing:4.352000pt;}
.ws4b{word-spacing:4.416000pt;}
.wsa3{word-spacing:4.480000pt;}
.wsd{word-spacing:4.544000pt;}
.ws23{word-spacing:4.608000pt;}
.ws3c{word-spacing:4.672000pt;}
.wsaa{word-spacing:4.736000pt;}
.ws7e{word-spacing:4.800000pt;}
.ws6d{word-spacing:4.864000pt;}
.wsb7{word-spacing:4.928000pt;}
.ws1f{word-spacing:4.992000pt;}
.ws26{word-spacing:5.056000pt;}
.ws33{word-spacing:5.120000pt;}
.ws15{word-spacing:5.248000pt;}
.ws73{word-spacing:5.312000pt;}
.ws8a{word-spacing:5.376000pt;}
.ws9{word-spacing:5.440000pt;}
.ws36{word-spacing:5.568000pt;}
.wsc1{word-spacing:5.632000pt;}
.wsa2{word-spacing:5.696000pt;}
.ws5f{word-spacing:5.760000pt;}
.ws12{word-spacing:5.888000pt;}
.wsaf{word-spacing:5.952000pt;}
.wsae{word-spacing:6.016000pt;}
.ws2b{word-spacing:6.080000pt;}
.ws16{word-spacing:6.144000pt;}
.wsad{word-spacing:6.208000pt;}
.ws8{word-spacing:6.272000pt;}
.ws74{word-spacing:6.336000pt;}
.ws4e{word-spacing:6.400000pt;}
.ws82{word-spacing:6.592000pt;}
.ws35{word-spacing:7.040000pt;}
.ws17{word-spacing:7.104000pt;}
.ws9c{word-spacing:7.360000pt;}
.ws3f{word-spacing:7.488000pt;}
.ws4c{word-spacing:7.552000pt;}
.ws41{word-spacing:7.616000pt;}
.ws7f{word-spacing:7.936000pt;}
.wsac{word-spacing:8.064000pt;}
.wsb{word-spacing:8.128000pt;}
.ws3a{word-spacing:8.192000pt;}
.ws88{word-spacing:8.256000pt;}
.ws49{word-spacing:8.448000pt;}
.wsbf{word-spacing:8.512000pt;}
.ws79{word-spacing:8.576000pt;}
.ws65{word-spacing:8.704000pt;}
.wsa8{word-spacing:8.960000pt;}
.ws76{word-spacing:9.088000pt;}
.wsa1{word-spacing:9.280000pt;}
.ws68{word-spacing:9.664000pt;}
.wsb2{word-spacing:9.728000pt;}
.ws30{word-spacing:10.048000pt;}
.wsa0{word-spacing:10.176000pt;}
.ws45{word-spacing:10.880000pt;}
.ws2f{word-spacing:10.944000pt;}
.ws29{word-spacing:11.072000pt;}
.wsa7{word-spacing:11.520000pt;}
.ws46{word-spacing:11.776000pt;}
.wsba{word-spacing:11.904000pt;}
.wsa6{word-spacing:11.968000pt;}
.ws2d{word-spacing:12.032000pt;}
.ws78{word-spacing:12.160000pt;}
.ws44{word-spacing:12.224000pt;}
.ws2c{word-spacing:12.288000pt;}
.wsa4{word-spacing:12.480000pt;}
.ws92{word-spacing:12.928000pt;}
.ws40{word-spacing:12.992000pt;}
.wsb5{word-spacing:13.056000pt;}
.ws43{word-spacing:13.120000pt;}
.ws91{word-spacing:13.376000pt;}
.ws7b{word-spacing:13.440000pt;}
.ws47{word-spacing:13.504000pt;}
.wsb3{word-spacing:14.336000pt;}
.ws7a{word-spacing:14.400000pt;}
.wsb8{word-spacing:14.656000pt;}
.ws48{word-spacing:14.720000pt;}
.ws94{word-spacing:14.784000pt;}
.ws87{word-spacing:15.040000pt;}
.wsc0{word-spacing:15.168000pt;}
.wsa5{word-spacing:15.360000pt;}
.ws93{word-spacing:15.424000pt;}
.wsb0{word-spacing:15.552000pt;}
.wsb1{word-spacing:15.936000pt;}
.wsb4{word-spacing:16.000000pt;}
.ws80{word-spacing:16.384000pt;}
.wsb6{word-spacing:16.448000pt;}
.ws75{word-spacing:16.768000pt;}
.ws86{word-spacing:17.408000pt;}
.ws7c{word-spacing:18.368000pt;}
.ws89{word-spacing:19.648000pt;}
.ws77{word-spacing:20.544000pt;}
.wsbe{word-spacing:21.632000pt;}
.ws8b{word-spacing:23.232000pt;}
.wsa9{word-spacing:24.960000pt;}
._13{margin-left:-16.028267pt;}
._0{margin-left:-11.236267pt;}
._4{margin-left:-8.630400pt;}
._1c{margin-left:-7.616000pt;}
._6{margin-left:-5.862400pt;}
._3{margin-left:-4.810667pt;}
._1{margin-left:-3.291200pt;}
._2{margin-left:-2.070933pt;}
._9{margin-left:-1.024000pt;}
._8{width:1.193600pt;}
._f{width:2.240000pt;}
._7{width:3.456533pt;}
._a{width:4.950933pt;}
._10{width:6.553600pt;}
._12{width:7.972267pt;}
._14{width:8.947200pt;}
._1e{width:9.888000pt;}
._1f{width:11.072000pt;}
._d{width:11.964267pt;}
._11{width:12.929067pt;}
._1d{width:14.674133pt;}
._21{width:17.113600pt;}
._23{width:20.246400pt;}
._20{width:21.228800pt;}
._1b{width:34.464000pt;}
._1a{width:36.595200pt;}
._17{width:67.002133pt;}
._22{width:116.604267pt;}
._e{width:189.357867pt;}
._18{width:215.252267pt;}
._15{width:264.995733pt;}
._c{width:315.891200pt;}
._b{width:350.682133pt;}
._16{width:1241.119467pt;}
._24{width:1662.496533pt;}
._19{width:1826.789333pt;}
._5{width:1853.536533pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:51.344000pt;}
.y1d{bottom:52.620133pt;}
.y14{bottom:53.158267pt;}
.y1a6{bottom:63.574000pt;}
.y57{bottom:63.892133pt;}
.yf8{bottom:64.019867pt;}
.y149{bottom:64.077467pt;}
.ya5{bottom:64.261067pt;}
.y94{bottom:64.270000pt;}
.yeb{bottom:64.750533pt;}
.y5d{bottom:64.876533pt;}
.y148{bottom:65.022267pt;}
.ya2{bottom:65.047200pt;}
.y5a{bottom:65.065467pt;}
.y59{bottom:65.119333pt;}
.ycc{bottom:65.328267pt;}
.y131{bottom:65.368800pt;}
.yff{bottom:65.594667pt;}
.y42{bottom:65.998667pt;}
.y177{bottom:70.191200pt;}
.y18c{bottom:70.528267pt;}
.y12f{bottom:70.528400pt;}
.yf5{bottom:70.544000pt;}
.y154{bottom:70.710667pt;}
.y179{bottom:73.935733pt;}
.yfe{bottom:74.292133pt;}
.yea{bottom:78.109333pt;}
.yf7{bottom:78.419867pt;}
.ya4{bottom:78.661067pt;}
.y89{bottom:78.833867pt;}
.y1a5{bottom:82.774133pt;}
.y56{bottom:83.092133pt;}
.y93{bottom:83.470000pt;}
.ycb{bottom:84.528267pt;}
.y176{bottom:89.391200pt;}
.y18b{bottom:89.728267pt;}
.y12e{bottom:89.728400pt;}
.yf4{bottom:89.744000pt;}
.y153{bottom:89.910667pt;}
.y11e{bottom:90.478400pt;}
.ya3{bottom:93.061067pt;}
.yfd{bottom:93.492133pt;}
.ye9{bottom:97.309333pt;}
.y88{bottom:98.033733pt;}
.y1a4{bottom:101.974133pt;}
.y55{bottom:102.292133pt;}
.y92{bottom:102.670000pt;}
.yca{bottom:103.728267pt;}
.y175{bottom:108.591200pt;}
.y18a{bottom:108.928267pt;}
.y12d{bottom:108.928400pt;}
.yf3{bottom:108.944000pt;}
.y152{bottom:109.110667pt;}
.y11d{bottom:109.678400pt;}
.yfc{bottom:112.692133pt;}
.ye8{bottom:116.509333pt;}
.y87{bottom:117.233867pt;}
.y7b{bottom:118.115733pt;}
.y1a3{bottom:121.174133pt;}
.y1c0{bottom:121.189733pt;}
.yc9{bottom:122.928267pt;}
.y174{bottom:127.791200pt;}
.y12c{bottom:128.128400pt;}
.yf2{bottom:128.144000pt;}
.y151{bottom:128.310667pt;}
.y11c{bottom:128.878400pt;}
.yfb{bottom:131.892133pt;}
.y6e{bottom:135.104933pt;}
.ye7{bottom:135.709333pt;}
.y8c{bottom:136.433733pt;}
.y7a{bottom:137.315733pt;}
.y6d{bottom:139.670400pt;}
.y1a2{bottom:140.374000pt;}
.y1bf{bottom:140.389733pt;}
.y91{bottom:141.070000pt;}
.y173{bottom:146.991200pt;}
.y12b{bottom:147.328400pt;}
.yf1{bottom:147.344000pt;}
.y150{bottom:147.510667pt;}
.y11b{bottom:148.078400pt;}
.y54{bottom:148.194267pt;}
.yfa{bottom:151.092133pt;}
.ye6{bottom:154.909333pt;}
.y86{bottom:155.633733pt;}
.y79{bottom:156.515733pt;}
.y6c{bottom:158.870400pt;}
.y1a1{bottom:159.574000pt;}
.y1be{bottom:159.589733pt;}
.y90{bottom:160.270000pt;}
.yc8{bottom:161.328267pt;}
.y33{bottom:166.006000pt;}
.y172{bottom:166.191200pt;}
.y189{bottom:166.528267pt;}
.y12a{bottom:166.528400pt;}
.yf0{bottom:166.544000pt;}
.ybb{bottom:166.695200pt;}
.y14f{bottom:166.710667pt;}
.y11a{bottom:167.278400pt;}
.ye5{bottom:174.109333pt;}
.y85{bottom:174.833867pt;}
.y78{bottom:175.715733pt;}
.y6b{bottom:178.070400pt;}
.y1a0{bottom:178.774133pt;}
.y1bd{bottom:178.789733pt;}
.y8f{bottom:179.470000pt;}
.yc7{bottom:180.528267pt;}
.y32{bottom:185.205867pt;}
.y171{bottom:185.391200pt;}
.y188{bottom:185.728267pt;}
.y129{bottom:185.728400pt;}
.y3f{bottom:185.744000pt;}
.yba{bottom:185.895200pt;}
.y14e{bottom:185.910667pt;}
.y119{bottom:186.478400pt;}
.y84{bottom:194.033733pt;}
.y77{bottom:194.915733pt;}
.y6a{bottom:197.270400pt;}
.y19f{bottom:197.974133pt;}
.y1bc{bottom:197.989733pt;}
.y8e{bottom:198.670000pt;}
.yf9{bottom:199.207200pt;}
.yc6{bottom:199.728267pt;}
.y170{bottom:204.591200pt;}
.y187{bottom:204.928267pt;}
.y128{bottom:204.928400pt;}
.y102{bottom:204.944000pt;}
.yb9{bottom:205.095200pt;}
.y14d{bottom:205.110667pt;}
.y1c6{bottom:210.975733pt;}
.ye4{bottom:212.509333pt;}
.y83{bottom:213.233867pt;}
.y76{bottom:214.115733pt;}
.y69{bottom:216.470400pt;}
.y19e{bottom:217.174133pt;}
.y1bb{bottom:217.189733pt;}
.yc5{bottom:218.928267pt;}
.y53{bottom:220.162933pt;}
.ybc{bottom:220.637733pt;}
.y31{bottom:223.606000pt;}
.y16f{bottom:223.791200pt;}
.y117{bottom:223.898400pt;}
.y127{bottom:224.128400pt;}
.yef{bottom:224.144000pt;}
.yb8{bottom:224.295200pt;}
.y14c{bottom:224.310667pt;}
.y1c5{bottom:230.175600pt;}
.ye3{bottom:231.709333pt;}
.y82{bottom:232.433733pt;}
.y75{bottom:233.315733pt;}
.y68{bottom:235.670400pt;}
.y19d{bottom:236.374000pt;}
.y1ba{bottom:236.389733pt;}
.yc4{bottom:238.128267pt;}
.y52{bottom:239.362933pt;}
.y158{bottom:242.061600pt;}
.y30{bottom:242.806000pt;}
.y16e{bottom:242.991200pt;}
.y116{bottom:243.098400pt;}
.y186{bottom:243.328267pt;}
.y126{bottom:243.328400pt;}
.yee{bottom:243.344000pt;}
.yb7{bottom:243.495200pt;}
.y145{bottom:243.510667pt;}
.y41{bottom:247.730933pt;}
.y1c4{bottom:249.375733pt;}
.ye2{bottom:250.909333pt;}
.y81{bottom:251.633733pt;}
.y67{bottom:254.870400pt;}
.y8d{bottom:255.301733pt;}
.y19c{bottom:255.574000pt;}
.y1b9{bottom:255.589733pt;}
.yc3{bottom:257.328267pt;}
.y51{bottom:258.562933pt;}
.y2f{bottom:262.006000pt;}
.y16d{bottom:262.191200pt;}
.y115{bottom:262.298400pt;}
.y185{bottom:262.528267pt;}
.y125{bottom:262.528400pt;}
.yed{bottom:262.544000pt;}
.yb6{bottom:262.695200pt;}
.y14b{bottom:262.710667pt;}
.y1c3{bottom:268.575600pt;}
.ye1{bottom:270.109333pt;}
.y156{bottom:270.408133pt;}
.y80{bottom:270.833733pt;}
.y8b{bottom:270.833867pt;}
.y74{bottom:273.263600pt;}
.y66{bottom:274.070400pt;}
.y19b{bottom:274.774133pt;}
.y1b8{bottom:274.789733pt;}
.yc2{bottom:276.528267pt;}
.y58{bottom:277.034000pt;}
.y50{bottom:277.762933pt;}
.y2e{bottom:281.205867pt;}
.y16c{bottom:281.391200pt;}
.y114{bottom:281.498400pt;}
.y184{bottom:281.728267pt;}
.y124{bottom:281.728400pt;}
.y3e{bottom:281.744000pt;}
.yb5{bottom:281.895200pt;}
.y144{bottom:281.910667pt;}
.ye0{bottom:289.309333pt;}
.y7f{bottom:290.033733pt;}
.y65{bottom:293.270400pt;}
.y19a{bottom:293.974133pt;}
.y1b7{bottom:293.989733pt;}
.yc1{bottom:295.728267pt;}
.y4f{bottom:296.962933pt;}
.y16b{bottom:300.591200pt;}
.y113{bottom:300.698400pt;}
.y183{bottom:300.928267pt;}
.y123{bottom:300.928400pt;}
.y3d{bottom:300.944000pt;}
.yb4{bottom:301.095200pt;}
.y143{bottom:301.110667pt;}
.ydf{bottom:308.509333pt;}
.y7e{bottom:309.233733pt;}
.y8a{bottom:309.233867pt;}
.y64{bottom:312.470400pt;}
.y199{bottom:313.174133pt;}
.y1b6{bottom:313.189733pt;}
.y4e{bottom:316.162933pt;}
.y2d{bottom:319.606000pt;}
.y16a{bottom:319.791200pt;}
.y112{bottom:319.898400pt;}
.y182{bottom:320.128267pt;}
.y122{bottom:320.128400pt;}
.y3c{bottom:320.144000pt;}
.yb3{bottom:320.295200pt;}
.y142{bottom:320.310667pt;}
.yec{bottom:327.205200pt;}
.yde{bottom:327.709333pt;}
.y7d{bottom:328.433733pt;}
.y63{bottom:331.670400pt;}
.y198{bottom:332.374000pt;}
.y1b5{bottom:332.389733pt;}
.yc0{bottom:334.128267pt;}
.y4d{bottom:335.362933pt;}
.y2c{bottom:338.806000pt;}
.y169{bottom:338.991200pt;}
.y111{bottom:339.098400pt;}
.y181{bottom:339.328267pt;}
.y121{bottom:339.328400pt;}
.y5c{bottom:339.344000pt;}
.yb2{bottom:339.495200pt;}
.y141{bottom:339.510667pt;}
.y5{bottom:339.596800pt;}
.y107{bottom:340.939600pt;}
.ydd{bottom:346.909333pt;}
.y118{bottom:348.482800pt;}
.ya{bottom:350.528400pt;}
.y62{bottom:350.870400pt;}
.y197{bottom:351.574000pt;}
.y1b4{bottom:351.589733pt;}
.ybf{bottom:353.328267pt;}
.y4{bottom:357.196800pt;}
.y2b{bottom:358.006000pt;}
.y168{bottom:358.191200pt;}
.y110{bottom:358.298400pt;}
.y180{bottom:358.528267pt;}
.y120{bottom:358.528400pt;}
.y3b{bottom:358.544000pt;}
.yb1{bottom:358.695200pt;}
.y140{bottom:358.710667pt;}
.ydc{bottom:366.109333pt;}
.y61{bottom:370.070400pt;}
.y196{bottom:370.774133pt;}
.y1b3{bottom:370.789733pt;}
.ybe{bottom:372.528267pt;}
.y3{bottom:374.796800pt;}
.y2a{bottom:377.205867pt;}
.y167{bottom:377.391200pt;}
.y10f{bottom:377.498400pt;}
.y17f{bottom:377.728267pt;}
.y3a{bottom:377.744000pt;}
.yb0{bottom:377.895200pt;}
.y13f{bottom:377.910667pt;}
.yf6{bottom:378.332533pt;}
.y7c{bottom:382.860800pt;}
.y45{bottom:383.951467pt;}
.ydb{bottom:385.309467pt;}
.y9{bottom:388.928400pt;}
.y60{bottom:389.270400pt;}
.y195{bottom:389.974133pt;}
.y1b2{bottom:389.989733pt;}
.y29{bottom:396.405867pt;}
.y166{bottom:396.591200pt;}
.y10e{bottom:396.698400pt;}
.y17e{bottom:396.928267pt;}
.ya1{bottom:396.928400pt;}
.y39{bottom:396.944000pt;}
.yaf{bottom:397.095200pt;}
.y14a{bottom:397.110667pt;}
.y105{bottom:402.571067pt;}
.yda{bottom:404.509333pt;}
.ybd{bottom:407.427733pt;}
.y8{bottom:408.128400pt;}
.y5f{bottom:408.470400pt;}
.y194{bottom:409.174133pt;}
.y1b1{bottom:409.189733pt;}
.y4c{bottom:411.974000pt;}
.y178{bottom:414.671733pt;}
.y28{bottom:415.606000pt;}
.y165{bottom:415.791200pt;}
.y10d{bottom:415.898400pt;}
.ya0{bottom:416.128400pt;}
.y38{bottom:416.144000pt;}
.yae{bottom:416.295200pt;}
.y13e{bottom:416.310667pt;}
.y104{bottom:416.971067pt;}
.yd9{bottom:423.709333pt;}
.y7{bottom:427.328400pt;}
.y193{bottom:428.374000pt;}
.y1b0{bottom:428.389733pt;}
.y1c2{bottom:430.040800pt;}
.y2{bottom:430.796800pt;}
.y4b{bottom:431.174000pt;}
.y164{bottom:434.991200pt;}
.y10c{bottom:435.098400pt;}
.y17d{bottom:435.328267pt;}
.y9f{bottom:435.328400pt;}
.y37{bottom:435.344000pt;}
.y13d{bottom:435.510667pt;}
.y6{bottom:446.528400pt;}
.y192{bottom:447.574000pt;}
.y1af{bottom:447.589733pt;}
.y4a{bottom:450.374000pt;}
.y27{bottom:454.006000pt;}
.y163{bottom:454.191200pt;}
.y10b{bottom:454.298400pt;}
.y17c{bottom:454.528267pt;}
.y9e{bottom:454.528400pt;}
.y5b{bottom:454.544000pt;}
.yad{bottom:454.695200pt;}
.y13c{bottom:454.710667pt;}
.yd8{bottom:454.890400pt;}
.y5e{bottom:458.587867pt;}
.y155{bottom:459.668000pt;}
.y147{bottom:464.208800pt;}
.y157{bottom:465.526267pt;}
.y40{bottom:465.998667pt;}
.y191{bottom:466.774133pt;}
.y1ae{bottom:466.789733pt;}
.y1c1{bottom:466.840800pt;}
.y1{bottom:467.596800pt;}
.ycd{bottom:468.498667pt;}
.y101{bottom:468.586800pt;}
.y159{bottom:469.474933pt;}
.y49{bottom:469.574000pt;}
.y26{bottom:473.205867pt;}
.y10a{bottom:473.498400pt;}
.y17b{bottom:473.728267pt;}
.y9d{bottom:473.728400pt;}
.y36{bottom:473.744000pt;}
.yac{bottom:473.895200pt;}
.y13b{bottom:473.910667pt;}
.yd7{bottom:474.090400pt;}
.y130{bottom:478.597067pt;}
.y146{bottom:478.608800pt;}
.y100{bottom:482.986800pt;}
.y190{bottom:485.974133pt;}
.y1ad{bottom:485.989733pt;}
.y44{bottom:488.057600pt;}
.y48{bottom:488.774000pt;}
.y25{bottom:492.405867pt;}
.y162{bottom:492.591200pt;}
.y109{bottom:492.698400pt;}
.y17a{bottom:492.928267pt;}
.y9c{bottom:492.928400pt;}
.y35{bottom:492.944000pt;}
.yab{bottom:493.095200pt;}
.y13a{bottom:493.110667pt;}
.yd6{bottom:493.290400pt;}
.y18f{bottom:505.174133pt;}
.y1ac{bottom:505.189733pt;}
.y47{bottom:507.974000pt;}
.y24{bottom:511.606000pt;}
.y161{bottom:511.791200pt;}
.y108{bottom:511.898400pt;}
.y9b{bottom:512.128400pt;}
.y12{bottom:512.144000pt;}
.yaa{bottom:512.295200pt;}
.y139{bottom:512.310667pt;}
.yd5{bottom:512.490533pt;}
.y18e{bottom:524.374000pt;}
.y1ab{bottom:524.389733pt;}
.y46{bottom:527.174000pt;}
.y23{bottom:530.806000pt;}
.y160{bottom:530.991333pt;}
.y9a{bottom:531.328400pt;}
.y11{bottom:531.344000pt;}
.ya9{bottom:531.495200pt;}
.y138{bottom:531.510667pt;}
.yd4{bottom:531.690533pt;}
.y1a{bottom:543.574000pt;}
.y1aa{bottom:543.589733pt;}
.y15f{bottom:550.191333pt;}
.y99{bottom:550.528400pt;}
.y10{bottom:550.544000pt;}
.ya8{bottom:550.695200pt;}
.y137{bottom:550.710667pt;}
.yd3{bottom:550.890533pt;}
.y19{bottom:562.774133pt;}
.y1a9{bottom:562.789733pt;}
.y73{bottom:569.021600pt;}
.y22{bottom:569.205867pt;}
.y15e{bottom:569.391333pt;}
.y11f{bottom:569.728400pt;}
.yf{bottom:569.744000pt;}
.ya7{bottom:569.895200pt;}
.y136{bottom:569.910667pt;}
.yd2{bottom:570.090533pt;}
.y1c{bottom:581.451600pt;}
.y18{bottom:581.974133pt;}
.y1a8{bottom:581.989733pt;}
.y106{bottom:585.034000pt;}
.y72{bottom:588.221600pt;}
.y21{bottom:588.405867pt;}
.y15d{bottom:588.591333pt;}
.y98{bottom:588.928400pt;}
.ye{bottom:588.944000pt;}
.ya6{bottom:589.095200pt;}
.y135{bottom:589.110667pt;}
.yd1{bottom:589.290533pt;}
.y1b{bottom:600.651600pt;}
.y17{bottom:601.174133pt;}
.y1a7{bottom:601.189733pt;}
.y71{bottom:607.421600pt;}
.y20{bottom:607.606000pt;}
.y15c{bottom:607.791333pt;}
.y97{bottom:608.128400pt;}
.yd{bottom:608.144000pt;}
.y134{bottom:608.310667pt;}
.yd0{bottom:608.490533pt;}
.y70{bottom:626.621600pt;}
.y1f{bottom:626.806000pt;}
.y15b{bottom:626.991333pt;}
.y96{bottom:627.328400pt;}
.yc{bottom:627.344000pt;}
.y133{bottom:627.510667pt;}
.ycf{bottom:627.690533pt;}
.y6f{bottom:645.821600pt;}
.y1e{bottom:646.006000pt;}
.y15a{bottom:646.191333pt;}
.y95{bottom:646.528400pt;}
.yb{bottom:646.544000pt;}
.y132{bottom:646.710667pt;}
.y16{bottom:646.801867pt;}
.yce{bottom:646.890533pt;}
.y43{bottom:734.068933pt;}
.y15{bottom:734.418000pt;}
.y13{bottom:734.607067pt;}
.y18d{bottom:734.824800pt;}
.y34{bottom:735.362933pt;}
.h9{height:33.328125pt;}
.h8{height:42.117188pt;}
.h6{height:43.812500pt;}
.h4{height:44.437500pt;}
.h3{height:51.476562pt;}
.h7{height:52.352000pt;}
.h5{height:56.156250pt;}
.ha{height:64.927321pt;}
.h2{height:85.171875pt;}
.hb{height:107.632812pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:48.000000pt;}
.xe{left:48.944933pt;}
.x1b{left:57.328133pt;}
.x19{left:305.370133pt;}
.xf{left:306.456667pt;}
.x17{left:307.783467pt;}
.x18{left:311.370133pt;}
.x1d{left:447.567733pt;}
.x3{left:470.158533pt;}
.x1{left:488.410800pt;}
.x4{left:498.249333pt;}
.x2{left:503.097600pt;}
.x1c{left:512.386400pt;}
.x5{left:537.687467pt;}
.xd{left:574.488133pt;}
.x12{left:576.378000pt;}
.x7{left:582.332133pt;}
.x6{left:589.980533pt;}
.x8{left:623.160267pt;}
.xa{left:725.722800pt;}
.x9{left:729.394667pt;}
.x14{left:738.826400pt;}
.x11{left:743.622000pt;}
.x16{left:829.669333pt;}
.x13{left:832.763733pt;}
.x1a{left:833.799200pt;}
.x15{left:900.661333pt;}
.x10{left:1058.519733pt;}
.xc{left:1066.519733pt;}
}




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