
    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_188cf2045b0722f9b5c0cbd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_35b59316fb289f7d2ed01d17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_436b9147e3d94a9727ed9612.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_b03201087fe44ebecd5b070a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v5{vertical-align:-13.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls8{letter-spacing:-1.080000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.093000px;}
.ls4{letter-spacing:0.112200px;}
.ls7{letter-spacing:0.289200px;}
.ls6{letter-spacing:0.332400px;}
.ls0{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.840000px;}
.ls1{letter-spacing:1.368000px;}
.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;}
}
.ws2{word-spacing:-19.368000px;}
.ws9d{word-spacing:-16.500000px;}
.ws1{word-spacing:-13.986000px;}
.ws0{word-spacing:-13.500000px;}
.ws8f{word-spacing:-12.420000px;}
.ws43{word-spacing:-12.000000px;}
.ws9e{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.500000px;}
.ws4{word-spacing:-8.775000px;}
.ws5{word-spacing:-7.800000px;}
.ws90{word-spacing:-4.411800px;}
.ws44{word-spacing:-3.948000px;}
.ws1c{word-spacing:-3.864000px;}
.ws75{word-spacing:-2.916000px;}
.ws45{word-spacing:-2.646000px;}
.ws78{word-spacing:-2.592000px;}
.ws59{word-spacing:-2.430000px;}
.wsa{word-spacing:-2.376000px;}
.ws5a{word-spacing:-2.321995px;}
.ws3d{word-spacing:-2.268000px;}
.wsb3{word-spacing:-2.184000px;}
.wsc4{word-spacing:-2.058000px;}
.ws4d{word-spacing:-2.052000px;}
.ws31{word-spacing:-1.998000px;}
.ws2d{word-spacing:-1.944000px;}
.ws5b{word-spacing:-1.890000px;}
.wsd4{word-spacing:-1.848000px;}
.ws3f{word-spacing:-1.836000px;}
.wsb8{word-spacing:-1.805996px;}
.ws10{word-spacing:-1.782000px;}
.ws2e{word-spacing:-1.728000px;}
.wsb5{word-spacing:-1.680000px;}
.ws98{word-spacing:-1.674000px;}
.wscb{word-spacing:-1.596000px;}
.ws8a{word-spacing:-1.512000px;}
.wsd1{word-spacing:-1.470000px;}
.ws24{word-spacing:-1.458000px;}
.wsac{word-spacing:-1.428000px;}
.ws27{word-spacing:-1.404000px;}
.ws73{word-spacing:-1.350000px;}
.ws25{word-spacing:-1.296000px;}
.ws8{word-spacing:-1.242000px;}
.wsca{word-spacing:-1.218000px;}
.wscd{word-spacing:-1.176000px;}
.wsdd{word-spacing:-1.134000px;}
.ws2b{word-spacing:-1.080000px;}
.wsba{word-spacing:-1.050000px;}
.wsf{word-spacing:-1.026000px;}
.ws5c{word-spacing:-0.972000px;}
.wsa8{word-spacing:-0.924000px;}
.ws3e{word-spacing:-0.918000px;}
.ws2f{word-spacing:-0.864000px;}
.wsbd{word-spacing:-0.798000px;}
.wsb9{word-spacing:-0.756000px;}
.ws20{word-spacing:-0.702000px;}
.ws47{word-spacing:-0.648000px;}
.wsb2{word-spacing:-0.630000px;}
.ws58{word-spacing:-0.594000px;}
.wsb4{word-spacing:-0.546000px;}
.ws70{word-spacing:-0.540000px;}
.wsa7{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.486000px;}
.ws48{word-spacing:-0.432000px;}
.wsab{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.378000px;}
.wsa4{word-spacing:-0.336000px;}
.ws86{word-spacing:-0.324000px;}
.ws49{word-spacing:-0.270000px;}
.wsdb{word-spacing:-0.252000px;}
.ws68{word-spacing:-0.216000px;}
.ws7a{word-spacing:-0.162000px;}
.ws1b{word-spacing:-0.144000px;}
.wsce{word-spacing:-0.126000px;}
.ws56{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.wsad{word-spacing:0.042000px;}
.ws1e{word-spacing:0.108000px;}
.wsb1{word-spacing:0.126000px;}
.ws6d{word-spacing:0.162000px;}
.wsa2{word-spacing:0.252000px;}
.ws28{word-spacing:0.270000px;}
.ws15{word-spacing:0.324000px;}
.wscc{word-spacing:0.336000px;}
.ws1a{word-spacing:0.378000px;}
.ws29{word-spacing:0.432000px;}
.wse{word-spacing:0.486000px;}
.wsd8{word-spacing:0.504000px;}
.wsd5{word-spacing:0.546000px;}
.wsbc{word-spacing:0.588000px;}
.ws89{word-spacing:0.594000px;}
.ws6c{word-spacing:0.648000px;}
.ws5e{word-spacing:0.702000px;}
.ws5d{word-spacing:0.756000px;}
.wscf{word-spacing:0.798000px;}
.ws85{word-spacing:0.810000px;}
.wsc3{word-spacing:0.840000px;}
.ws26{word-spacing:0.864000px;}
.ws67{word-spacing:0.918000px;}
.wsb7{word-spacing:1.008000px;}
.ws9{word-spacing:1.026000px;}
.ws8c{word-spacing:1.080000px;}
.wsde{word-spacing:1.092000px;}
.ws8d{word-spacing:1.134000px;}
.ws11{word-spacing:1.188000px;}
.wsa6{word-spacing:1.218000px;}
.ws39{word-spacing:1.242000px;}
.ws38{word-spacing:1.296000px;}
.wsda{word-spacing:1.302000px;}
.ws57{word-spacing:1.350000px;}
.ws93{word-spacing:1.404000px;}
.ws3b{word-spacing:1.458000px;}
.wsa3{word-spacing:1.470000px;}
.ws6f{word-spacing:1.512000px;}
.wse1{word-spacing:1.554000px;}
.wsdf{word-spacing:1.596000px;}
.ws91{word-spacing:1.620000px;}
.ws65{word-spacing:1.674000px;}
.wsb6{word-spacing:1.680000px;}
.wsd9{word-spacing:1.764000px;}
.ws8b{word-spacing:1.782000px;}
.wsd2{word-spacing:1.805996px;}
.ws76{word-spacing:1.836000px;}
.ws84{word-spacing:1.890000px;}
.ws4c{word-spacing:1.944000px;}
.wse4{word-spacing:1.974000px;}
.ws21{word-spacing:1.998000px;}
.wsae{word-spacing:2.016000px;}
.wsc9{word-spacing:2.100000px;}
.ws79{word-spacing:2.106000px;}
.ws96{word-spacing:2.160000px;}
.wsd6{word-spacing:2.184000px;}
.ws4b{word-spacing:2.214000px;}
.ws2a{word-spacing:2.268000px;}
.ws61{word-spacing:2.376000px;}
.ws5f{word-spacing:2.430000px;}
.ws52{word-spacing:2.484000px;}
.ws60{word-spacing:2.538000px;}
.ws41{word-spacing:2.592000px;}
.ws64{word-spacing:2.646000px;}
.ws12{word-spacing:2.700000px;}
.wsd3{word-spacing:2.730000px;}
.ws3a{word-spacing:2.753995px;}
.wsd7{word-spacing:2.856000px;}
.ws2c{word-spacing:2.862000px;}
.wsc{word-spacing:2.916000px;}
.ws63{word-spacing:2.970000px;}
.wse2{word-spacing:2.981996px;}
.wsbf{word-spacing:3.024000px;}
.wsaa{word-spacing:3.066000px;}
.ws97{word-spacing:3.186000px;}
.ws16{word-spacing:3.240000px;}
.ws74{word-spacing:3.348000px;}
.ws3c{word-spacing:3.402000px;}
.wsdc{word-spacing:3.444000px;}
.ws23{word-spacing:3.510000px;}
.ws53{word-spacing:3.672000px;}
.ws7d{word-spacing:3.726000px;}
.ws7e{word-spacing:3.780000px;}
.wsb0{word-spacing:3.822000px;}
.wsc1{word-spacing:3.864000px;}
.wsbe{word-spacing:3.906000px;}
.ws4e{word-spacing:3.942000px;}
.ws71{word-spacing:4.050000px;}
.wsc5{word-spacing:4.074000px;}
.ws82{word-spacing:4.104000px;}
.ws46{word-spacing:4.158000px;}
.ws1f{word-spacing:4.212000px;}
.ws37{word-spacing:4.266000px;}
.ws92{word-spacing:4.320000px;}
.ws13{word-spacing:4.374000px;}
.ws19{word-spacing:4.482000px;}
.wsc7{word-spacing:4.494000px;}
.ws14{word-spacing:4.643995px;}
.wse0{word-spacing:4.662000px;}
.ws7{word-spacing:4.697995px;}
.ws7f{word-spacing:4.806000px;}
.ws22{word-spacing:4.860000px;}
.wsd0{word-spacing:4.872000px;}
.ws99{word-spacing:4.914000px;}
.ws69{word-spacing:4.968000px;}
.ws72{word-spacing:5.076000px;}
.ws34{word-spacing:5.184000px;}
.ws54{word-spacing:5.346000px;}
.wsbb{word-spacing:5.502000px;}
.wse3{word-spacing:5.544000px;}
.ws32{word-spacing:5.616000px;}
.ws95{word-spacing:5.670000px;}
.ws4a{word-spacing:5.724000px;}
.wsa9{word-spacing:5.754000px;}
.ws6b{word-spacing:5.778000px;}
.ws7c{word-spacing:5.832000px;}
.wsaf{word-spacing:6.090000px;}
.ws33{word-spacing:6.210000px;}
.ws4f{word-spacing:6.318000px;}
.ws7b{word-spacing:6.372000px;}
.ws9f{word-spacing:6.480000px;}
.ws17{word-spacing:6.588000px;}
.ws77{word-spacing:6.696000px;}
.ws87{word-spacing:6.804000px;}
.ws80{word-spacing:6.966000px;}
.ws1d{word-spacing:7.020000px;}
.wsc6{word-spacing:7.056000px;}
.ws81{word-spacing:7.182000px;}
.ws94{word-spacing:7.290000px;}
.ws36{word-spacing:7.344000px;}
.ws30{word-spacing:7.614000px;}
.ws62{word-spacing:7.668000px;}
.ws83{word-spacing:7.884000px;}
.wsc8{word-spacing:7.896000px;}
.ws66{word-spacing:7.938000px;}
.ws9a{word-spacing:7.992000px;}
.ws42{word-spacing:8.424000px;}
.ws35{word-spacing:8.694000px;}
.wsc2{word-spacing:9.072000px;}
.ws88{word-spacing:9.126000px;}
.ws9c{word-spacing:9.612000px;}
.ws55{word-spacing:9.666000px;}
.ws6a{word-spacing:9.828000px;}
.ws8e{word-spacing:10.638000px;}
.ws51{word-spacing:10.692000px;}
.ws40{word-spacing:10.746000px;}
.wsa0{word-spacing:11.880000px;}
.ws50{word-spacing:13.500000px;}
.ws9b{word-spacing:13.770000px;}
.wsa1{word-spacing:14.418000px;}
.wsc0{word-spacing:14.826000px;}
.ws6{word-spacing:16.500000px;}
.wsa5{word-spacing:17.136000px;}
._b{margin-left:-10.500000px;}
._8{margin-left:-6.930000px;}
._7{margin-left:-5.409000px;}
._3{margin-left:-4.109400px;}
._6{margin-left:-2.970000px;}
._1{margin-left:-1.776600px;}
._0{width:1.398600px;}
._4{width:2.435400px;}
._2{width:3.623400px;}
._5{width:4.638600px;}
._c{width:6.436800px;}
._d{width:7.522200px;}
._e{width:8.537400px;}
._f{width:11.021400px;}
._10{width:13.203000px;}
._11{width:15.201000px;}
._a{width:27.552000px;}
._9{width:50.536800px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fsa{font-size:30.420000px;}
.fs6{font-size:31.200000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:30.698550px;}
.y29{bottom:30.728700px;}
.yab{bottom:73.438200px;}
.y1a8{bottom:73.747650px;}
.yc3{bottom:74.109150px;}
.y172{bottom:76.536150px;}
.y148{bottom:76.666650px;}
.y11d{bottom:76.693050px;}
.y99{bottom:76.987650px;}
.y31{bottom:77.402700px;}
.y15{bottom:77.500200px;}
.y20f{bottom:81.934650px;}
.y1a7{bottom:87.250650px;}
.y30{bottom:90.905700px;}
.yaa{bottom:91.433700px;}
.yc2{bottom:92.104650px;}
.yf2{bottom:93.454650px;}
.y171{bottom:94.531650px;}
.y147{bottom:94.662150px;}
.y11c{bottom:94.688550px;}
.y98{bottom:94.983150px;}
.y20e{bottom:95.437650px;}
.y14{bottom:95.495700px;}
.y1a6{bottom:100.753650px;}
.y2f{bottom:104.408700px;}
.y20d{bottom:108.940650px;}
.yc1{bottom:110.100150px;}
.yf1{bottom:111.450150px;}
.y170{bottom:112.527150px;}
.y11b{bottom:112.684050px;}
.y97{bottom:112.978650px;}
.y13{bottom:113.491200px;}
.y1a5{bottom:114.256650px;}
.y2e{bottom:117.911700px;}
.ya9{bottom:118.433700px;}
.y146{bottom:121.662150px;}
.y20c{bottom:122.443650px;}
.y1a4{bottom:127.759650px;}
.yf0{bottom:129.445650px;}
.y16f{bottom:130.522650px;}
.y11a{bottom:130.679550px;}
.y96{bottom:130.974150px;}
.y2d{bottom:131.414700px;}
.y12{bottom:131.486700px;}
.y20b{bottom:135.946650px;}
.ya7{bottom:136.433700px;}
.yc0{bottom:137.100150px;}
.y145{bottom:139.657650px;}
.ya8{bottom:140.924700px;}
.y1a3{bottom:141.262650px;}
.y2c{bottom:144.917700px;}
.yef{bottom:147.441150px;}
.y20a{bottom:149.449650px;}
.ya5{bottom:154.439550px;}
.y1a2{bottom:154.765650px;}
.y16e{bottom:155.722650px;}
.y144{bottom:157.653150px;}
.y119{bottom:157.679550px;}
.y95{bottom:157.974150px;}
.y2b{bottom:158.420700px;}
.y11{bottom:158.486700px;}
.ya6{bottom:158.924700px;}
.y209{bottom:162.952650px;}
.yee{bottom:165.436650px;}
.y1a1{bottom:168.268650px;}
.y2a{bottom:171.923700px;}
.ya4{bottom:172.435050px;}
.y143{bottom:175.648650px;}
.y94{bottom:175.969650px;}
.y208{bottom:176.455650px;}
.y10{bottom:176.482200px;}
.ybf{bottom:177.033150px;}
.y1a0{bottom:181.771650px;}
.y207{bottom:189.958650px;}
.ya3{bottom:190.430550px;}
.yed{bottom:192.436650px;}
.y142{bottom:193.644150px;}
.y93{bottom:193.965150px;}
.yf{bottom:194.477700px;}
.ybe{bottom:195.028650px;}
.y19f{bottom:195.274650px;}
.y16d{bottom:200.794650px;}
.y206{bottom:203.461650px;}
.y118{bottom:206.617050px;}
.y19e{bottom:208.777650px;}
.y141{bottom:211.639650px;}
.y92{bottom:211.960650px;}
.ye{bottom:212.473200px;}
.ybd{bottom:213.024150px;}
.y205{bottom:216.964650px;}
.ya2{bottom:217.430550px;}
.y16c{bottom:218.790150px;}
.y19d{bottom:222.280650px;}
.y117{bottom:224.612550px;}
.y140{bottom:229.635150px;}
.y91{bottom:229.956150px;}
.y204{bottom:230.467650px;}
.yd{bottom:230.468700px;}
.ybc{bottom:231.019650px;}
.y62{bottom:235.147200px;}
.y19c{bottom:235.783650px;}
.yec{bottom:235.933650px;}
.y16b{bottom:236.785650px;}
.y116{bottom:242.608050px;}
.y203{bottom:243.970650px;}
.y90{bottom:247.951650px;}
.yc{bottom:248.464200px;}
.yb5{bottom:248.554200px;}
.y61{bottom:248.650200px;}
.y19b{bottom:249.286650px;}
.yeb{bottom:253.929150px;}
.y16a{bottom:254.781150px;}
.yba{bottom:255.041550px;}
.y13f{bottom:256.635150px;}
.y202{bottom:257.473650px;}
.ybb{bottom:259.518150px;}
.y115{bottom:260.603550px;}
.y60{bottom:262.153200px;}
.y19a{bottom:262.789650px;}
.yb4{bottom:263.554200px;}
.y8f{bottom:265.947150px;}
.yb{bottom:266.459700px;}
.y201{bottom:270.976650px;}
.y1ce{bottom:271.021650px;}
.yea{bottom:271.924650px;}
.y169{bottom:272.776650px;}
.yb9{bottom:273.037050px;}
.y5f{bottom:275.656200px;}
.y199{bottom:276.292650px;}
.yb2{bottom:278.554200px;}
.y114{bottom:278.599050px;}
.yb3{bottom:282.550200px;}
.y8e{bottom:283.942650px;}
.ya{bottom:284.455200px;}
.y200{bottom:284.479650px;}
.y1cd{bottom:284.524650px;}
.y5e{bottom:289.159200px;}
.y198{bottom:289.795650px;}
.ye9{bottom:289.920150px;}
.y168{bottom:290.772150px;}
.yb8{bottom:291.032550px;}
.yb1{bottom:293.554200px;}
.y113{bottom:296.594550px;}
.y1ff{bottom:297.982650px;}
.y1cc{bottom:298.027650px;}
.y215{bottom:298.135650px;}
.y8d{bottom:301.938150px;}
.y5d{bottom:302.662200px;}
.y197{bottom:303.298650px;}
.y13e{bottom:305.572650px;}
.ye8{bottom:307.915650px;}
.yb0{bottom:308.554200px;}
.y167{bottom:308.767650px;}
.yb7{bottom:309.028050px;}
.y9{bottom:311.455200px;}
.y1fe{bottom:311.485650px;}
.y1cb{bottom:311.530650px;}
.y214{bottom:311.638650px;}
.y112{bottom:314.590050px;}
.y5c{bottom:316.165200px;}
.y196{bottom:316.801650px;}
.yaf{bottom:323.554200px;}
.y13d{bottom:323.568150px;}
.y1fd{bottom:324.988650px;}
.y1ca{bottom:325.033650px;}
.y213{bottom:325.141650px;}
.ye7{bottom:325.911150px;}
.y166{bottom:326.763150px;}
.yb6{bottom:327.023550px;}
.y8c{bottom:328.938150px;}
.y8{bottom:329.450700px;}
.y5b{bottom:329.668200px;}
.y195{bottom:330.304650px;}
.y111{bottom:332.585550px;}
.y1fc{bottom:338.491650px;}
.y1c9{bottom:338.536650px;}
.yae{bottom:338.554200px;}
.y212{bottom:338.644650px;}
.y13c{bottom:341.563650px;}
.y5a{bottom:343.171200px;}
.y194{bottom:343.807650px;}
.ye6{bottom:343.906650px;}
.y165{bottom:344.758650px;}
.y8b{bottom:346.933650px;}
.y7{bottom:347.446200px;}
.y110{bottom:350.581050px;}
.y1fb{bottom:351.994650px;}
.y1c8{bottom:352.039650px;}
.y211{bottom:352.147650px;}
.yad{bottom:353.554200px;}
.y59{bottom:356.674200px;}
.y193{bottom:357.310650px;}
.y13b{bottom:359.559150px;}
.ye5{bottom:361.902150px;}
.y164{bottom:362.754150px;}
.y8a{bottom:364.929150px;}
.y6{bottom:365.441700px;}
.y1fa{bottom:365.497650px;}
.y1c7{bottom:365.542650px;}
.yac{bottom:368.554200px;}
.y10f{bottom:368.576550px;}
.y58{bottom:370.177200px;}
.y192{bottom:370.813650px;}
.yc8{bottom:372.297150px;}
.y210{bottom:374.647650px;}
.y13a{bottom:377.554650px;}
.y1f9{bottom:379.000650px;}
.y1c6{bottom:379.045650px;}
.y89{bottom:382.924650px;}
.y5{bottom:383.437200px;}
.y57{bottom:383.680200px;}
.y191{bottom:384.316650px;}
.y10e{bottom:386.572050px;}
.y163{bottom:386.757150px;}
.yc7{bottom:387.297150px;}
.ye4{bottom:388.902150px;}
.y1f8{bottom:392.503650px;}
.y1c5{bottom:392.548650px;}
.y139{bottom:395.550150px;}
.y56{bottom:397.183200px;}
.y190{bottom:397.819650px;}
.y88{bottom:400.920150px;}
.y4{bottom:401.432700px;}
.yc6{bottom:402.297150px;}
.y162{bottom:404.752650px;}
.y1f7{bottom:406.006650px;}
.y1c4{bottom:406.051650px;}
.ye2{bottom:406.986150px;}
.y55{bottom:410.686200px;}
.y18f{bottom:411.322650px;}
.ye3{bottom:411.393150px;}
.y138{bottom:413.545650px;}
.y10d{bottom:413.572050px;}
.yc5{bottom:417.297150px;}
.y87{bottom:418.915650px;}
.y3{bottom:419.428200px;}
.y1f6{bottom:419.509650px;}
.y1c3{bottom:419.554650px;}
.y161{bottom:422.748150px;}
.y18e{bottom:424.825650px;}
.ye1{bottom:424.981650px;}
.y54{bottom:427.181700px;}
.y137{bottom:431.541150px;}
.y10c{bottom:431.567550px;}
.yc4{bottom:432.297150px;}
.y1f5{bottom:433.012650px;}
.y1c2{bottom:433.057650px;}
.y86{bottom:436.911150px;}
.y2{bottom:437.423700px;}
.y18d{bottom:438.328650px;}
.y160{bottom:440.743650px;}
.ye0{bottom:442.977150px;}
.y1f4{bottom:446.515650px;}
.y1c1{bottom:446.560650px;}
.y136{bottom:449.536650px;}
.y10b{bottom:449.563050px;}
.y18c{bottom:451.831650px;}
.y85{bottom:454.906650px;}
.y15f{bottom:458.739150px;}
.y1f3{bottom:460.018650px;}
.y1c0{bottom:460.063650px;}
.ydf{bottom:460.972650px;}
.y1{bottom:464.423700px;}
.y53{bottom:464.677200px;}
.y18b{bottom:465.334650px;}
.y10a{bottom:467.558550px;}
.y84{bottom:472.902150px;}
.y1f2{bottom:473.521650px;}
.y1bf{bottom:473.566650px;}
.y135{bottom:476.536650px;}
.y15e{bottom:476.734650px;}
.y52{bottom:478.180200px;}
.y18a{bottom:478.837650px;}
.yde{bottom:484.975650px;}
.y109{bottom:485.554050px;}
.y1f1{bottom:487.024650px;}
.y1be{bottom:487.069650px;}
.y83{bottom:490.897650px;}
.y189{bottom:492.340650px;}
.y134{bottom:494.532150px;}
.y15d{bottom:494.730150px;}
.y1f0{bottom:500.527650px;}
.y1bd{bottom:500.572650px;}
.ydd{bottom:502.971150px;}
.y108{bottom:503.549550px;}
.y188{bottom:505.843650px;}
.y51{bottom:508.934700px;}
.y28{bottom:512.084700px;}
.y133{bottom:512.527650px;}
.y15c{bottom:512.725650px;}
.y1ef{bottom:514.030650px;}
.y1bc{bottom:514.075650px;}
.y82{bottom:517.897650px;}
.y187{bottom:519.346650px;}
.ydc{bottom:520.966650px;}
.y107{bottom:521.545050px;}
.y50{bottom:522.437700px;}
.y1ee{bottom:527.533650px;}
.y1bb{bottom:527.578650px;}
.y27{bottom:530.080200px;}
.y132{bottom:530.523150px;}
.y15b{bottom:530.721150px;}
.y186{bottom:532.849650px;}
.y4f{bottom:535.940700px;}
.ydb{bottom:538.962150px;}
.y106{bottom:539.540550px;}
.y1ed{bottom:541.036650px;}
.y1ba{bottom:541.081650px;}
.y81{bottom:543.397650px;}
.y185{bottom:546.352650px;}
.y26{bottom:548.075700px;}
.y131{bottom:548.518650px;}
.y15a{bottom:548.716650px;}
.y4e{bottom:549.443700px;}
.y1ec{bottom:554.539650px;}
.y1b9{bottom:554.584650px;}
.yda{bottom:556.957650px;}
.y184{bottom:559.855650px;}
.y4d{bottom:562.946700px;}
.y25{bottom:566.071200px;}
.y130{bottom:566.514150px;}
.y105{bottom:566.540550px;}
.y159{bottom:566.712150px;}
.y1eb{bottom:568.042650px;}
.y1b8{bottom:568.087650px;}
.y183{bottom:573.358650px;}
.yd9{bottom:574.953150px;}
.y4c{bottom:576.449700px;}
.y1ea{bottom:581.545650px;}
.y1b7{bottom:581.590650px;}
.y24{bottom:584.066700px;}
.y12f{bottom:584.509650px;}
.y104{bottom:584.536050px;}
.y158{bottom:584.707650px;}
.y182{bottom:586.861650px;}
.y80{bottom:588.491550px;}
.y4b{bottom:592.945200px;}
.yd8{bottom:592.948650px;}
.y1e9{bottom:595.048650px;}
.y1b6{bottom:595.093650px;}
.y181{bottom:600.364650px;}
.y23{bottom:602.062200px;}
.y12e{bottom:602.505150px;}
.y103{bottom:602.531550px;}
.y157{bottom:602.703150px;}
.y7f{bottom:606.487050px;}
.y1e8{bottom:608.551650px;}
.y1b5{bottom:608.596650px;}
.yd7{bottom:610.944150px;}
.y180{bottom:613.867650px;}
.y22{bottom:620.057700px;}
.y12d{bottom:620.500650px;}
.y102{bottom:620.527050px;}
.y156{bottom:620.698650px;}
.y1e7{bottom:622.054650px;}
.y1b4{bottom:622.099650px;}
.y7e{bottom:624.482550px;}
.y17f{bottom:627.370650px;}
.yd6{bottom:628.939650px;}
.y4a{bottom:630.440700px;}
.y1e6{bottom:635.557650px;}
.y1b3{bottom:635.602650px;}
.y21{bottom:638.053200px;}
.y12c{bottom:638.496150px;}
.y101{bottom:638.522550px;}
.y155{bottom:638.694150px;}
.y17e{bottom:640.873650px;}
.y7d{bottom:642.478050px;}
.y49{bottom:643.943700px;}
.yd5{bottom:646.935150px;}
.y1e5{bottom:649.060650px;}
.y1b2{bottom:649.105650px;}
.y17d{bottom:654.376650px;}
.y20{bottom:656.048700px;}
.y12b{bottom:656.491650px;}
.y100{bottom:656.518050px;}
.y154{bottom:656.689650px;}
.y48{bottom:660.439200px;}
.y7c{bottom:660.473550px;}
.y1e4{bottom:662.563650px;}
.y1b1{bottom:662.608650px;}
.yd4{bottom:664.930650px;}
.y17c{bottom:667.879650px;}
.y12a{bottom:674.487150px;}
.yff{bottom:674.513550px;}
.y153{bottom:674.685150px;}
.y1e3{bottom:676.066650px;}
.y1b0{bottom:676.111650px;}
.y17b{bottom:681.382650px;}
.y7b{bottom:687.473550px;}
.y1f{bottom:688.789200px;}
.yd3{bottom:688.933650px;}
.y1e2{bottom:689.569650px;}
.y1af{bottom:689.614650px;}
.y129{bottom:692.482650px;}
.yfe{bottom:692.509050px;}
.y17a{bottom:694.885650px;}
.y47{bottom:697.934700px;}
.y152{bottom:701.685150px;}
.y1e1{bottom:703.072650px;}
.y1ae{bottom:703.117650px;}
.y7a{bottom:705.469050px;}
.y1e{bottom:706.784700px;}
.yd2{bottom:706.929150px;}
.y179{bottom:708.388650px;}
.y128{bottom:710.478150px;}
.yfd{bottom:710.504550px;}
.y46{bottom:711.437700px;}
.y1e0{bottom:716.575650px;}
.y1ad{bottom:716.620650px;}
.y178{bottom:721.891650px;}
.y79{bottom:723.464550px;}
.y1d{bottom:724.780200px;}
.yd1{bottom:724.924650px;}
.y45{bottom:727.933200px;}
.y127{bottom:728.473650px;}
.y1df{bottom:730.078650px;}
.y1ac{bottom:730.123650px;}
.y177{bottom:735.394650px;}
.yfc{bottom:737.504550px;}
.y78{bottom:741.460050px;}
.y1c{bottom:742.775700px;}
.yd0{bottom:742.920150px;}
.y1de{bottom:743.581650px;}
.y1ab{bottom:743.626650px;}
.y151{bottom:744.457050px;}
.y126{bottom:746.469150px;}
.y176{bottom:748.897650px;}
.y1dd{bottom:757.084650px;}
.y1aa{bottom:757.129650px;}
.y77{bottom:759.455550px;}
.y1b{bottom:760.771200px;}
.ycf{bottom:760.915650px;}
.y150{bottom:762.452550px;}
.y125{bottom:764.464650px;}
.y44{bottom:767.686200px;}
.y1dc{bottom:770.587650px;}
.y1a9{bottom:770.632650px;}
.y175{bottom:771.397650px;}
.y76{bottom:777.451050px;}
.y1a{bottom:778.766700px;}
.yce{bottom:778.911150px;}
.y14f{bottom:780.448050px;}
.y43{bottom:781.189200px;}
.y124{bottom:782.460150px;}
.y1db{bottom:784.090650px;}
.yfb{bottom:786.442050px;}
.y42{bottom:794.692200px;}
.y75{bottom:795.446550px;}
.y19{bottom:796.762200px;}
.ycd{bottom:796.906650px;}
.y1da{bottom:797.593650px;}
.y14e{bottom:798.443550px;}
.yfa{bottom:804.437550px;}
.y41{bottom:808.195200px;}
.y123{bottom:809.460150px;}
.y1d9{bottom:811.096650px;}
.y74{bottom:813.442050px;}
.y18{bottom:814.757700px;}
.ycc{bottom:814.902150px;}
.y14d{bottom:816.439050px;}
.y40{bottom:821.698200px;}
.yf9{bottom:822.433050px;}
.y174{bottom:822.446550px;}
.y1d8{bottom:824.599650px;}
.y73{bottom:831.437550px;}
.y17{bottom:832.753200px;}
.ycb{bottom:832.897650px;}
.y14c{bottom:834.434550px;}
.y3f{bottom:835.201200px;}
.y1d7{bottom:838.102650px;}
.yf8{bottom:840.428550px;}
.y173{bottom:840.442050px;}
.y3e{bottom:848.704200px;}
.y72{bottom:849.433050px;}
.y16{bottom:850.748700px;}
.y1d6{bottom:851.605650px;}
.y14b{bottom:852.430050px;}
.yf7{bottom:858.424050px;}
.y121{bottom:858.437550px;}
.yca{bottom:859.897650px;}
.y3d{bottom:862.207200px;}
.y122{bottom:862.893150px;}
.y1d5{bottom:865.108650px;}
.y71{bottom:867.428550px;}
.y14a{bottom:870.425550px;}
.y3c{bottom:875.710200px;}
.yf6{bottom:876.419550px;}
.y120{bottom:876.433050px;}
.y1d4{bottom:878.611650px;}
.yc9{bottom:885.397650px;}
.y70{bottom:885.424050px;}
.y149{bottom:888.421050px;}
.y3b{bottom:889.213200px;}
.y1d3{bottom:892.114650px;}
.y11f{bottom:894.428550px;}
.y36{bottom:895.298550px;}
.y3a{bottom:902.716200px;}
.y6f{bottom:903.419550px;}
.y1d2{bottom:905.617650px;}
.y11e{bottom:912.424050px;}
.y35{bottom:915.794550px;}
.y39{bottom:916.219200px;}
.y1d1{bottom:919.120650px;}
.yf5{bottom:921.415050px;}
.y38{bottom:929.722200px;}
.y6e{bottom:930.419550px;}
.y1d0{bottom:932.623650px;}
.yf4{bottom:939.410550px;}
.y34{bottom:939.698700px;}
.y1cf{bottom:946.126650px;}
.y37{bottom:946.217700px;}
.y6d{bottom:948.415050px;}
.yf3{bottom:957.406050px;}
.ya0{bottom:959.629650px;}
.y6c{bottom:966.410550px;}
.y33{bottom:967.898550px;}
.y9f{bottom:973.132650px;}
.y63{bottom:976.592700px;}
.y6b{bottom:984.406050px;}
.y9e{bottom:986.635650px;}
.y32{bottom:994.898550px;}
.y64{bottom:996.098550px;}
.y9d{bottom:1000.138650px;}
.y6a{bottom:1002.401550px;}
.y9c{bottom:1013.641650px;}
.y69{bottom:1020.397050px;}
.y9b{bottom:1027.144650px;}
.y68{bottom:1038.392550px;}
.y9a{bottom:1040.647650px;}
.y66{bottom:1096.623600px;}
.y67{bottom:1097.773650px;}
.ya1{bottom:1158.405000px;}
.h8{height:22.027200px;}
.h10{height:24.780600px;}
.ha{height:29.148000px;}
.h5{height:29.652000px;}
.hf{height:29.855566px;}
.h11{height:33.888000px;}
.hd{height:37.476000px;}
.h9{height:38.011200px;}
.h3{height:38.124000px;}
.h7{height:42.341400px;}
.hc{height:42.360000px;}
.h2{height:45.804000px;}
.h4{height:49.968000px;}
.hb{height:58.296000px;}
.h6{height:62.460000px;}
.h1{height:1182.000000px;}
.he{height:1182.045000px;}
.h0{height:1182.046509px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.x2{left:45.713100px;}
.x3{left:60.713250px;}
.x1{left:250.671300px;}
.xf{left:262.459350px;}
.x5{left:272.871300px;}
.xb{left:346.897350px;}
.xe{left:437.292750px;}
.x9{left:541.018050px;}
.x8{left:548.972700px;}
.x6{left:690.543300px;}
.xa{left:722.274600px;}
.xc{left:772.053450px;}
.xd{left:808.583550px;}
.x10{left:810.925800px;}
.x4{left:817.675800px;}
.x7{left:878.820000px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v5{vertical-align:-11.946667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.082667pt;}
.ls4{letter-spacing:0.099733pt;}
.ls7{letter-spacing:0.257067pt;}
.ls6{letter-spacing:0.295467pt;}
.ls0{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls1{letter-spacing:1.216000pt;}
.ws2{word-spacing:-17.216000pt;}
.ws9d{word-spacing:-14.666667pt;}
.ws1{word-spacing:-12.432000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8f{word-spacing:-11.040000pt;}
.ws43{word-spacing:-10.666667pt;}
.ws9e{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws4{word-spacing:-7.800000pt;}
.ws5{word-spacing:-6.933333pt;}
.ws90{word-spacing:-3.921600pt;}
.ws44{word-spacing:-3.509333pt;}
.ws1c{word-spacing:-3.434667pt;}
.ws75{word-spacing:-2.592000pt;}
.ws45{word-spacing:-2.352000pt;}
.ws78{word-spacing:-2.304000pt;}
.ws59{word-spacing:-2.160000pt;}
.wsa{word-spacing:-2.112000pt;}
.ws5a{word-spacing:-2.063995pt;}
.ws3d{word-spacing:-2.016000pt;}
.wsb3{word-spacing:-1.941333pt;}
.wsc4{word-spacing:-1.829333pt;}
.ws4d{word-spacing:-1.824000pt;}
.ws31{word-spacing:-1.776000pt;}
.ws2d{word-spacing:-1.728000pt;}
.ws5b{word-spacing:-1.680000pt;}
.wsd4{word-spacing:-1.642667pt;}
.ws3f{word-spacing:-1.632000pt;}
.wsb8{word-spacing:-1.605330pt;}
.ws10{word-spacing:-1.584000pt;}
.ws2e{word-spacing:-1.536000pt;}
.wsb5{word-spacing:-1.493333pt;}
.ws98{word-spacing:-1.488000pt;}
.wscb{word-spacing:-1.418667pt;}
.ws8a{word-spacing:-1.344000pt;}
.wsd1{word-spacing:-1.306667pt;}
.ws24{word-spacing:-1.296000pt;}
.wsac{word-spacing:-1.269333pt;}
.ws27{word-spacing:-1.248000pt;}
.ws73{word-spacing:-1.200000pt;}
.ws25{word-spacing:-1.152000pt;}
.ws8{word-spacing:-1.104000pt;}
.wsca{word-spacing:-1.082667pt;}
.wscd{word-spacing:-1.045333pt;}
.wsdd{word-spacing:-1.008000pt;}
.ws2b{word-spacing:-0.960000pt;}
.wsba{word-spacing:-0.933333pt;}
.wsf{word-spacing:-0.912000pt;}
.ws5c{word-spacing:-0.864000pt;}
.wsa8{word-spacing:-0.821333pt;}
.ws3e{word-spacing:-0.816000pt;}
.ws2f{word-spacing:-0.768000pt;}
.wsbd{word-spacing:-0.709333pt;}
.wsb9{word-spacing:-0.672000pt;}
.ws20{word-spacing:-0.624000pt;}
.ws47{word-spacing:-0.576000pt;}
.wsb2{word-spacing:-0.560000pt;}
.ws58{word-spacing:-0.528000pt;}
.wsb4{word-spacing:-0.485333pt;}
.ws70{word-spacing:-0.480000pt;}
.wsa7{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.432000pt;}
.ws48{word-spacing:-0.384000pt;}
.wsab{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.336000pt;}
.wsa4{word-spacing:-0.298667pt;}
.ws86{word-spacing:-0.288000pt;}
.ws49{word-spacing:-0.240000pt;}
.wsdb{word-spacing:-0.224000pt;}
.ws68{word-spacing:-0.192000pt;}
.ws7a{word-spacing:-0.144000pt;}
.ws1b{word-spacing:-0.128000pt;}
.wsce{word-spacing:-0.112000pt;}
.ws56{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.wsad{word-spacing:0.037333pt;}
.ws1e{word-spacing:0.096000pt;}
.wsb1{word-spacing:0.112000pt;}
.ws6d{word-spacing:0.144000pt;}
.wsa2{word-spacing:0.224000pt;}
.ws28{word-spacing:0.240000pt;}
.ws15{word-spacing:0.288000pt;}
.wscc{word-spacing:0.298667pt;}
.ws1a{word-spacing:0.336000pt;}
.ws29{word-spacing:0.384000pt;}
.wse{word-spacing:0.432000pt;}
.wsd8{word-spacing:0.448000pt;}
.wsd5{word-spacing:0.485333pt;}
.wsbc{word-spacing:0.522667pt;}
.ws89{word-spacing:0.528000pt;}
.ws6c{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.672000pt;}
.wscf{word-spacing:0.709333pt;}
.ws85{word-spacing:0.720000pt;}
.wsc3{word-spacing:0.746667pt;}
.ws26{word-spacing:0.768000pt;}
.ws67{word-spacing:0.816000pt;}
.wsb7{word-spacing:0.896000pt;}
.ws9{word-spacing:0.912000pt;}
.ws8c{word-spacing:0.960000pt;}
.wsde{word-spacing:0.970667pt;}
.ws8d{word-spacing:1.008000pt;}
.ws11{word-spacing:1.056000pt;}
.wsa6{word-spacing:1.082667pt;}
.ws39{word-spacing:1.104000pt;}
.ws38{word-spacing:1.152000pt;}
.wsda{word-spacing:1.157333pt;}
.ws57{word-spacing:1.200000pt;}
.ws93{word-spacing:1.248000pt;}
.ws3b{word-spacing:1.296000pt;}
.wsa3{word-spacing:1.306667pt;}
.ws6f{word-spacing:1.344000pt;}
.wse1{word-spacing:1.381333pt;}
.wsdf{word-spacing:1.418667pt;}
.ws91{word-spacing:1.440000pt;}
.ws65{word-spacing:1.488000pt;}
.wsb6{word-spacing:1.493333pt;}
.wsd9{word-spacing:1.568000pt;}
.ws8b{word-spacing:1.584000pt;}
.wsd2{word-spacing:1.605330pt;}
.ws76{word-spacing:1.632000pt;}
.ws84{word-spacing:1.680000pt;}
.ws4c{word-spacing:1.728000pt;}
.wse4{word-spacing:1.754667pt;}
.ws21{word-spacing:1.776000pt;}
.wsae{word-spacing:1.792000pt;}
.wsc9{word-spacing:1.866667pt;}
.ws79{word-spacing:1.872000pt;}
.ws96{word-spacing:1.920000pt;}
.wsd6{word-spacing:1.941333pt;}
.ws4b{word-spacing:1.968000pt;}
.ws2a{word-spacing:2.016000pt;}
.ws61{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.160000pt;}
.ws52{word-spacing:2.208000pt;}
.ws60{word-spacing:2.256000pt;}
.ws41{word-spacing:2.304000pt;}
.ws64{word-spacing:2.352000pt;}
.ws12{word-spacing:2.400000pt;}
.wsd3{word-spacing:2.426667pt;}
.ws3a{word-spacing:2.447995pt;}
.wsd7{word-spacing:2.538667pt;}
.ws2c{word-spacing:2.544000pt;}
.wsc{word-spacing:2.592000pt;}
.ws63{word-spacing:2.640000pt;}
.wse2{word-spacing:2.650663pt;}
.wsbf{word-spacing:2.688000pt;}
.wsaa{word-spacing:2.725333pt;}
.ws97{word-spacing:2.832000pt;}
.ws16{word-spacing:2.880000pt;}
.ws74{word-spacing:2.976000pt;}
.ws3c{word-spacing:3.024000pt;}
.wsdc{word-spacing:3.061333pt;}
.ws23{word-spacing:3.120000pt;}
.ws53{word-spacing:3.264000pt;}
.ws7d{word-spacing:3.312000pt;}
.ws7e{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.397333pt;}
.wsc1{word-spacing:3.434667pt;}
.wsbe{word-spacing:3.472000pt;}
.ws4e{word-spacing:3.504000pt;}
.ws71{word-spacing:3.600000pt;}
.wsc5{word-spacing:3.621333pt;}
.ws82{word-spacing:3.648000pt;}
.ws46{word-spacing:3.696000pt;}
.ws1f{word-spacing:3.744000pt;}
.ws37{word-spacing:3.792000pt;}
.ws92{word-spacing:3.840000pt;}
.ws13{word-spacing:3.888000pt;}
.ws19{word-spacing:3.984000pt;}
.wsc7{word-spacing:3.994667pt;}
.ws14{word-spacing:4.127995pt;}
.wse0{word-spacing:4.144000pt;}
.ws7{word-spacing:4.175995pt;}
.ws7f{word-spacing:4.272000pt;}
.ws22{word-spacing:4.320000pt;}
.wsd0{word-spacing:4.330667pt;}
.ws99{word-spacing:4.368000pt;}
.ws69{word-spacing:4.416000pt;}
.ws72{word-spacing:4.512000pt;}
.ws34{word-spacing:4.608000pt;}
.ws54{word-spacing:4.752000pt;}
.wsbb{word-spacing:4.890667pt;}
.wse3{word-spacing:4.928000pt;}
.ws32{word-spacing:4.992000pt;}
.ws95{word-spacing:5.040000pt;}
.ws4a{word-spacing:5.088000pt;}
.wsa9{word-spacing:5.114667pt;}
.ws6b{word-spacing:5.136000pt;}
.ws7c{word-spacing:5.184000pt;}
.wsaf{word-spacing:5.413333pt;}
.ws33{word-spacing:5.520000pt;}
.ws4f{word-spacing:5.616000pt;}
.ws7b{word-spacing:5.664000pt;}
.ws9f{word-spacing:5.760000pt;}
.ws17{word-spacing:5.856000pt;}
.ws77{word-spacing:5.952000pt;}
.ws87{word-spacing:6.048000pt;}
.ws80{word-spacing:6.192000pt;}
.ws1d{word-spacing:6.240000pt;}
.wsc6{word-spacing:6.272000pt;}
.ws81{word-spacing:6.384000pt;}
.ws94{word-spacing:6.480000pt;}
.ws36{word-spacing:6.528000pt;}
.ws30{word-spacing:6.768000pt;}
.ws62{word-spacing:6.816000pt;}
.ws83{word-spacing:7.008000pt;}
.wsc8{word-spacing:7.018667pt;}
.ws66{word-spacing:7.056000pt;}
.ws9a{word-spacing:7.104000pt;}
.ws42{word-spacing:7.488000pt;}
.ws35{word-spacing:7.728000pt;}
.wsc2{word-spacing:8.064000pt;}
.ws88{word-spacing:8.112000pt;}
.ws9c{word-spacing:8.544000pt;}
.ws55{word-spacing:8.592000pt;}
.ws6a{word-spacing:8.736000pt;}
.ws8e{word-spacing:9.456000pt;}
.ws51{word-spacing:9.504000pt;}
.ws40{word-spacing:9.552000pt;}
.wsa0{word-spacing:10.560000pt;}
.ws50{word-spacing:12.000000pt;}
.ws9b{word-spacing:12.240000pt;}
.wsa1{word-spacing:12.816000pt;}
.wsc0{word-spacing:13.178667pt;}
.ws6{word-spacing:14.666667pt;}
.wsa5{word-spacing:15.232000pt;}
._b{margin-left:-9.333333pt;}
._8{margin-left:-6.160000pt;}
._7{margin-left:-4.808000pt;}
._3{margin-left:-3.652800pt;}
._6{margin-left:-2.640000pt;}
._1{margin-left:-1.579200pt;}
._0{width:1.243200pt;}
._4{width:2.164800pt;}
._2{width:3.220800pt;}
._5{width:4.123200pt;}
._c{width:5.721600pt;}
._d{width:6.686400pt;}
._e{width:7.588800pt;}
._f{width:9.796800pt;}
._10{width:11.736000pt;}
._11{width:13.512000pt;}
._a{width:24.490667pt;}
._9{width:44.921600pt;}
.fsa{font-size:27.040000pt;}
.fs6{font-size:27.733333pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:27.287600pt;}
.y29{bottom:27.314400pt;}
.yab{bottom:65.278400pt;}
.y1a8{bottom:65.553467pt;}
.yc3{bottom:65.874800pt;}
.y172{bottom:68.032133pt;}
.y148{bottom:68.148133pt;}
.y11d{bottom:68.171600pt;}
.y99{bottom:68.433467pt;}
.y31{bottom:68.802400pt;}
.y15{bottom:68.889067pt;}
.y20f{bottom:72.830800pt;}
.y1a7{bottom:77.556133pt;}
.y30{bottom:80.805067pt;}
.yaa{bottom:81.274400pt;}
.yc2{bottom:81.870800pt;}
.yf2{bottom:83.070800pt;}
.y171{bottom:84.028133pt;}
.y147{bottom:84.144133pt;}
.y11c{bottom:84.167600pt;}
.y98{bottom:84.429467pt;}
.y20e{bottom:84.833467pt;}
.y14{bottom:84.885067pt;}
.y1a6{bottom:89.558800pt;}
.y2f{bottom:92.807733pt;}
.y20d{bottom:96.836133pt;}
.yc1{bottom:97.866800pt;}
.yf1{bottom:99.066800pt;}
.y170{bottom:100.024133pt;}
.y11b{bottom:100.163600pt;}
.y97{bottom:100.425467pt;}
.y13{bottom:100.881067pt;}
.y1a5{bottom:101.561467pt;}
.y2e{bottom:104.810400pt;}
.ya9{bottom:105.274400pt;}
.y146{bottom:108.144133pt;}
.y20c{bottom:108.838800pt;}
.y1a4{bottom:113.564133pt;}
.yf0{bottom:115.062800pt;}
.y16f{bottom:116.020133pt;}
.y11a{bottom:116.159600pt;}
.y96{bottom:116.421467pt;}
.y2d{bottom:116.813067pt;}
.y12{bottom:116.877067pt;}
.y20b{bottom:120.841467pt;}
.ya7{bottom:121.274400pt;}
.yc0{bottom:121.866800pt;}
.y145{bottom:124.140133pt;}
.ya8{bottom:125.266400pt;}
.y1a3{bottom:125.566800pt;}
.y2c{bottom:128.815733pt;}
.yef{bottom:131.058800pt;}
.y20a{bottom:132.844133pt;}
.ya5{bottom:137.279600pt;}
.y1a2{bottom:137.569467pt;}
.y16e{bottom:138.420133pt;}
.y144{bottom:140.136133pt;}
.y119{bottom:140.159600pt;}
.y95{bottom:140.421467pt;}
.y2b{bottom:140.818400pt;}
.y11{bottom:140.877067pt;}
.ya6{bottom:141.266400pt;}
.y209{bottom:144.846800pt;}
.yee{bottom:147.054800pt;}
.y1a1{bottom:149.572133pt;}
.y2a{bottom:152.821067pt;}
.ya4{bottom:153.275600pt;}
.y143{bottom:156.132133pt;}
.y94{bottom:156.417467pt;}
.y208{bottom:156.849467pt;}
.y10{bottom:156.873067pt;}
.ybf{bottom:157.362800pt;}
.y1a0{bottom:161.574800pt;}
.y207{bottom:168.852133pt;}
.ya3{bottom:169.271600pt;}
.yed{bottom:171.054800pt;}
.y142{bottom:172.128133pt;}
.y93{bottom:172.413467pt;}
.yf{bottom:172.869067pt;}
.ybe{bottom:173.358800pt;}
.y19f{bottom:173.577467pt;}
.y16d{bottom:178.484133pt;}
.y206{bottom:180.854800pt;}
.y118{bottom:183.659600pt;}
.y19e{bottom:185.580133pt;}
.y141{bottom:188.124133pt;}
.y92{bottom:188.409467pt;}
.ye{bottom:188.865067pt;}
.ybd{bottom:189.354800pt;}
.y205{bottom:192.857467pt;}
.ya2{bottom:193.271600pt;}
.y16c{bottom:194.480133pt;}
.y19d{bottom:197.582800pt;}
.y117{bottom:199.655600pt;}
.y140{bottom:204.120133pt;}
.y91{bottom:204.405467pt;}
.y204{bottom:204.860133pt;}
.yd{bottom:204.861067pt;}
.ybc{bottom:205.350800pt;}
.y62{bottom:209.019733pt;}
.y19c{bottom:209.585467pt;}
.yec{bottom:209.718800pt;}
.y16b{bottom:210.476133pt;}
.y116{bottom:215.651600pt;}
.y203{bottom:216.862800pt;}
.y90{bottom:220.401467pt;}
.yc{bottom:220.857067pt;}
.yb5{bottom:220.937067pt;}
.y61{bottom:221.022400pt;}
.y19b{bottom:221.588133pt;}
.yeb{bottom:225.714800pt;}
.y16a{bottom:226.472133pt;}
.yba{bottom:226.703600pt;}
.y13f{bottom:228.120133pt;}
.y202{bottom:228.865467pt;}
.ybb{bottom:230.682800pt;}
.y115{bottom:231.647600pt;}
.y60{bottom:233.025067pt;}
.y19a{bottom:233.590800pt;}
.yb4{bottom:234.270400pt;}
.y8f{bottom:236.397467pt;}
.yb{bottom:236.853067pt;}
.y201{bottom:240.868133pt;}
.y1ce{bottom:240.908133pt;}
.yea{bottom:241.710800pt;}
.y169{bottom:242.468133pt;}
.yb9{bottom:242.699600pt;}
.y5f{bottom:245.027733pt;}
.y199{bottom:245.593467pt;}
.yb2{bottom:247.603733pt;}
.y114{bottom:247.643600pt;}
.yb3{bottom:251.155733pt;}
.y8e{bottom:252.393467pt;}
.ya{bottom:252.849067pt;}
.y200{bottom:252.870800pt;}
.y1cd{bottom:252.910800pt;}
.y5e{bottom:257.030400pt;}
.y198{bottom:257.596133pt;}
.ye9{bottom:257.706800pt;}
.y168{bottom:258.464133pt;}
.yb8{bottom:258.695600pt;}
.yb1{bottom:260.937067pt;}
.y113{bottom:263.639600pt;}
.y1ff{bottom:264.873467pt;}
.y1cc{bottom:264.913467pt;}
.y215{bottom:265.009467pt;}
.y8d{bottom:268.389467pt;}
.y5d{bottom:269.033067pt;}
.y197{bottom:269.598800pt;}
.y13e{bottom:271.620133pt;}
.ye8{bottom:273.702800pt;}
.yb0{bottom:274.270400pt;}
.y167{bottom:274.460133pt;}
.yb7{bottom:274.691600pt;}
.y9{bottom:276.849067pt;}
.y1fe{bottom:276.876133pt;}
.y1cb{bottom:276.916133pt;}
.y214{bottom:277.012133pt;}
.y112{bottom:279.635600pt;}
.y5c{bottom:281.035733pt;}
.y196{bottom:281.601467pt;}
.yaf{bottom:287.603733pt;}
.y13d{bottom:287.616133pt;}
.y1fd{bottom:288.878800pt;}
.y1ca{bottom:288.918800pt;}
.y213{bottom:289.014800pt;}
.ye7{bottom:289.698800pt;}
.y166{bottom:290.456133pt;}
.yb6{bottom:290.687600pt;}
.y8c{bottom:292.389467pt;}
.y8{bottom:292.845067pt;}
.y5b{bottom:293.038400pt;}
.y195{bottom:293.604133pt;}
.y111{bottom:295.631600pt;}
.y1fc{bottom:300.881467pt;}
.y1c9{bottom:300.921467pt;}
.yae{bottom:300.937067pt;}
.y212{bottom:301.017467pt;}
.y13c{bottom:303.612133pt;}
.y5a{bottom:305.041067pt;}
.y194{bottom:305.606800pt;}
.ye6{bottom:305.694800pt;}
.y165{bottom:306.452133pt;}
.y8b{bottom:308.385467pt;}
.y7{bottom:308.841067pt;}
.y110{bottom:311.627600pt;}
.y1fb{bottom:312.884133pt;}
.y1c8{bottom:312.924133pt;}
.y211{bottom:313.020133pt;}
.yad{bottom:314.270400pt;}
.y59{bottom:317.043733pt;}
.y193{bottom:317.609467pt;}
.y13b{bottom:319.608133pt;}
.ye5{bottom:321.690800pt;}
.y164{bottom:322.448133pt;}
.y8a{bottom:324.381467pt;}
.y6{bottom:324.837067pt;}
.y1fa{bottom:324.886800pt;}
.y1c7{bottom:324.926800pt;}
.yac{bottom:327.603733pt;}
.y10f{bottom:327.623600pt;}
.y58{bottom:329.046400pt;}
.y192{bottom:329.612133pt;}
.yc8{bottom:330.930800pt;}
.y210{bottom:333.020133pt;}
.y13a{bottom:335.604133pt;}
.y1f9{bottom:336.889467pt;}
.y1c6{bottom:336.929467pt;}
.y89{bottom:340.377467pt;}
.y5{bottom:340.833067pt;}
.y57{bottom:341.049067pt;}
.y191{bottom:341.614800pt;}
.y10e{bottom:343.619600pt;}
.y163{bottom:343.784133pt;}
.yc7{bottom:344.264133pt;}
.ye4{bottom:345.690800pt;}
.y1f8{bottom:348.892133pt;}
.y1c5{bottom:348.932133pt;}
.y139{bottom:351.600133pt;}
.y56{bottom:353.051733pt;}
.y190{bottom:353.617467pt;}
.y88{bottom:356.373467pt;}
.y4{bottom:356.829067pt;}
.yc6{bottom:357.597467pt;}
.y162{bottom:359.780133pt;}
.y1f7{bottom:360.894800pt;}
.y1c4{bottom:360.934800pt;}
.ye2{bottom:361.765467pt;}
.y55{bottom:365.054400pt;}
.y18f{bottom:365.620133pt;}
.ye3{bottom:365.682800pt;}
.y138{bottom:367.596133pt;}
.y10d{bottom:367.619600pt;}
.yc5{bottom:370.930800pt;}
.y87{bottom:372.369467pt;}
.y3{bottom:372.825067pt;}
.y1f6{bottom:372.897467pt;}
.y1c3{bottom:372.937467pt;}
.y161{bottom:375.776133pt;}
.y18e{bottom:377.622800pt;}
.ye1{bottom:377.761467pt;}
.y54{bottom:379.717067pt;}
.y137{bottom:383.592133pt;}
.y10c{bottom:383.615600pt;}
.yc4{bottom:384.264133pt;}
.y1f5{bottom:384.900133pt;}
.y1c2{bottom:384.940133pt;}
.y86{bottom:388.365467pt;}
.y2{bottom:388.821067pt;}
.y18d{bottom:389.625467pt;}
.y160{bottom:391.772133pt;}
.ye0{bottom:393.757467pt;}
.y1f4{bottom:396.902800pt;}
.y1c1{bottom:396.942800pt;}
.y136{bottom:399.588133pt;}
.y10b{bottom:399.611600pt;}
.y18c{bottom:401.628133pt;}
.y85{bottom:404.361467pt;}
.y15f{bottom:407.768133pt;}
.y1f3{bottom:408.905467pt;}
.y1c0{bottom:408.945467pt;}
.ydf{bottom:409.753467pt;}
.y1{bottom:412.821067pt;}
.y53{bottom:413.046400pt;}
.y18b{bottom:413.630800pt;}
.y10a{bottom:415.607600pt;}
.y84{bottom:420.357467pt;}
.y1f2{bottom:420.908133pt;}
.y1bf{bottom:420.948133pt;}
.y135{bottom:423.588133pt;}
.y15e{bottom:423.764133pt;}
.y52{bottom:425.049067pt;}
.y18a{bottom:425.633467pt;}
.yde{bottom:431.089467pt;}
.y109{bottom:431.603600pt;}
.y1f1{bottom:432.910800pt;}
.y1be{bottom:432.950800pt;}
.y83{bottom:436.353467pt;}
.y189{bottom:437.636133pt;}
.y134{bottom:439.584133pt;}
.y15d{bottom:439.760133pt;}
.y1f0{bottom:444.913467pt;}
.y1bd{bottom:444.953467pt;}
.ydd{bottom:447.085467pt;}
.y108{bottom:447.599600pt;}
.y188{bottom:449.638800pt;}
.y51{bottom:452.386400pt;}
.y28{bottom:455.186400pt;}
.y133{bottom:455.580133pt;}
.y15c{bottom:455.756133pt;}
.y1ef{bottom:456.916133pt;}
.y1bc{bottom:456.956133pt;}
.y82{bottom:460.353467pt;}
.y187{bottom:461.641467pt;}
.ydc{bottom:463.081467pt;}
.y107{bottom:463.595600pt;}
.y50{bottom:464.389067pt;}
.y1ee{bottom:468.918800pt;}
.y1bb{bottom:468.958800pt;}
.y27{bottom:471.182400pt;}
.y132{bottom:471.576133pt;}
.y15b{bottom:471.752133pt;}
.y186{bottom:473.644133pt;}
.y4f{bottom:476.391733pt;}
.ydb{bottom:479.077467pt;}
.y106{bottom:479.591600pt;}
.y1ed{bottom:480.921467pt;}
.y1ba{bottom:480.961467pt;}
.y81{bottom:483.020133pt;}
.y185{bottom:485.646800pt;}
.y26{bottom:487.178400pt;}
.y131{bottom:487.572133pt;}
.y15a{bottom:487.748133pt;}
.y4e{bottom:488.394400pt;}
.y1ec{bottom:492.924133pt;}
.y1b9{bottom:492.964133pt;}
.yda{bottom:495.073467pt;}
.y184{bottom:497.649467pt;}
.y4d{bottom:500.397067pt;}
.y25{bottom:503.174400pt;}
.y130{bottom:503.568133pt;}
.y105{bottom:503.591600pt;}
.y159{bottom:503.744133pt;}
.y1eb{bottom:504.926800pt;}
.y1b8{bottom:504.966800pt;}
.y183{bottom:509.652133pt;}
.yd9{bottom:511.069467pt;}
.y4c{bottom:512.399733pt;}
.y1ea{bottom:516.929467pt;}
.y1b7{bottom:516.969467pt;}
.y24{bottom:519.170400pt;}
.y12f{bottom:519.564133pt;}
.y104{bottom:519.587600pt;}
.y158{bottom:519.740133pt;}
.y182{bottom:521.654800pt;}
.y80{bottom:523.103600pt;}
.y4b{bottom:527.062400pt;}
.yd8{bottom:527.065467pt;}
.y1e9{bottom:528.932133pt;}
.y1b6{bottom:528.972133pt;}
.y181{bottom:533.657467pt;}
.y23{bottom:535.166400pt;}
.y12e{bottom:535.560133pt;}
.y103{bottom:535.583600pt;}
.y157{bottom:535.736133pt;}
.y7f{bottom:539.099600pt;}
.y1e8{bottom:540.934800pt;}
.y1b5{bottom:540.974800pt;}
.yd7{bottom:543.061467pt;}
.y180{bottom:545.660133pt;}
.y22{bottom:551.162400pt;}
.y12d{bottom:551.556133pt;}
.y102{bottom:551.579600pt;}
.y156{bottom:551.732133pt;}
.y1e7{bottom:552.937467pt;}
.y1b4{bottom:552.977467pt;}
.y7e{bottom:555.095600pt;}
.y17f{bottom:557.662800pt;}
.yd6{bottom:559.057467pt;}
.y4a{bottom:560.391733pt;}
.y1e6{bottom:564.940133pt;}
.y1b3{bottom:564.980133pt;}
.y21{bottom:567.158400pt;}
.y12c{bottom:567.552133pt;}
.y101{bottom:567.575600pt;}
.y155{bottom:567.728133pt;}
.y17e{bottom:569.665467pt;}
.y7d{bottom:571.091600pt;}
.y49{bottom:572.394400pt;}
.yd5{bottom:575.053467pt;}
.y1e5{bottom:576.942800pt;}
.y1b2{bottom:576.982800pt;}
.y17d{bottom:581.668133pt;}
.y20{bottom:583.154400pt;}
.y12b{bottom:583.548133pt;}
.y100{bottom:583.571600pt;}
.y154{bottom:583.724133pt;}
.y48{bottom:587.057067pt;}
.y7c{bottom:587.087600pt;}
.y1e4{bottom:588.945467pt;}
.y1b1{bottom:588.985467pt;}
.yd4{bottom:591.049467pt;}
.y17c{bottom:593.670800pt;}
.y12a{bottom:599.544133pt;}
.yff{bottom:599.567600pt;}
.y153{bottom:599.720133pt;}
.y1e3{bottom:600.948133pt;}
.y1b0{bottom:600.988133pt;}
.y17b{bottom:605.673467pt;}
.y7b{bottom:611.087600pt;}
.y1f{bottom:612.257067pt;}
.yd3{bottom:612.385467pt;}
.y1e2{bottom:612.950800pt;}
.y1af{bottom:612.990800pt;}
.y129{bottom:615.540133pt;}
.yfe{bottom:615.563600pt;}
.y17a{bottom:617.676133pt;}
.y47{bottom:620.386400pt;}
.y152{bottom:623.720133pt;}
.y1e1{bottom:624.953467pt;}
.y1ae{bottom:624.993467pt;}
.y7a{bottom:627.083600pt;}
.y1e{bottom:628.253067pt;}
.yd2{bottom:628.381467pt;}
.y179{bottom:629.678800pt;}
.y128{bottom:631.536133pt;}
.yfd{bottom:631.559600pt;}
.y46{bottom:632.389067pt;}
.y1e0{bottom:636.956133pt;}
.y1ad{bottom:636.996133pt;}
.y178{bottom:641.681467pt;}
.y79{bottom:643.079600pt;}
.y1d{bottom:644.249067pt;}
.yd1{bottom:644.377467pt;}
.y45{bottom:647.051733pt;}
.y127{bottom:647.532133pt;}
.y1df{bottom:648.958800pt;}
.y1ac{bottom:648.998800pt;}
.y177{bottom:653.684133pt;}
.yfc{bottom:655.559600pt;}
.y78{bottom:659.075600pt;}
.y1c{bottom:660.245067pt;}
.yd0{bottom:660.373467pt;}
.y1de{bottom:660.961467pt;}
.y1ab{bottom:661.001467pt;}
.y151{bottom:661.739600pt;}
.y126{bottom:663.528133pt;}
.y176{bottom:665.686800pt;}
.y1dd{bottom:672.964133pt;}
.y1aa{bottom:673.004133pt;}
.y77{bottom:675.071600pt;}
.y1b{bottom:676.241067pt;}
.ycf{bottom:676.369467pt;}
.y150{bottom:677.735600pt;}
.y125{bottom:679.524133pt;}
.y44{bottom:682.387733pt;}
.y1dc{bottom:684.966800pt;}
.y1a9{bottom:685.006800pt;}
.y175{bottom:685.686800pt;}
.y76{bottom:691.067600pt;}
.y1a{bottom:692.237067pt;}
.yce{bottom:692.365467pt;}
.y14f{bottom:693.731600pt;}
.y43{bottom:694.390400pt;}
.y124{bottom:695.520133pt;}
.y1db{bottom:696.969467pt;}
.yfb{bottom:699.059600pt;}
.y42{bottom:706.393067pt;}
.y75{bottom:707.063600pt;}
.y19{bottom:708.233067pt;}
.ycd{bottom:708.361467pt;}
.y1da{bottom:708.972133pt;}
.y14e{bottom:709.727600pt;}
.yfa{bottom:715.055600pt;}
.y41{bottom:718.395733pt;}
.y123{bottom:719.520133pt;}
.y1d9{bottom:720.974800pt;}
.y74{bottom:723.059600pt;}
.y18{bottom:724.229067pt;}
.ycc{bottom:724.357467pt;}
.y14d{bottom:725.723600pt;}
.y40{bottom:730.398400pt;}
.yf9{bottom:731.051600pt;}
.y174{bottom:731.063600pt;}
.y1d8{bottom:732.977467pt;}
.y73{bottom:739.055600pt;}
.y17{bottom:740.225067pt;}
.ycb{bottom:740.353467pt;}
.y14c{bottom:741.719600pt;}
.y3f{bottom:742.401067pt;}
.y1d7{bottom:744.980133pt;}
.yf8{bottom:747.047600pt;}
.y173{bottom:747.059600pt;}
.y3e{bottom:754.403733pt;}
.y72{bottom:755.051600pt;}
.y16{bottom:756.221067pt;}
.y1d6{bottom:756.982800pt;}
.y14b{bottom:757.715600pt;}
.yf7{bottom:763.043600pt;}
.y121{bottom:763.055600pt;}
.yca{bottom:764.353467pt;}
.y3d{bottom:766.406400pt;}
.y122{bottom:767.016133pt;}
.y1d5{bottom:768.985467pt;}
.y71{bottom:771.047600pt;}
.y14a{bottom:773.711600pt;}
.y3c{bottom:778.409067pt;}
.yf6{bottom:779.039600pt;}
.y120{bottom:779.051600pt;}
.y1d4{bottom:780.988133pt;}
.yc9{bottom:787.020133pt;}
.y70{bottom:787.043600pt;}
.y149{bottom:789.707600pt;}
.y3b{bottom:790.411733pt;}
.y1d3{bottom:792.990800pt;}
.y11f{bottom:795.047600pt;}
.y36{bottom:795.820933pt;}
.y3a{bottom:802.414400pt;}
.y6f{bottom:803.039600pt;}
.y1d2{bottom:804.993467pt;}
.y11e{bottom:811.043600pt;}
.y35{bottom:814.039600pt;}
.y39{bottom:814.417067pt;}
.y1d1{bottom:816.996133pt;}
.yf5{bottom:819.035600pt;}
.y38{bottom:826.419733pt;}
.y6e{bottom:827.039600pt;}
.y1d0{bottom:828.998800pt;}
.yf4{bottom:835.031600pt;}
.y34{bottom:835.287733pt;}
.y1cf{bottom:841.001467pt;}
.y37{bottom:841.082400pt;}
.y6d{bottom:843.035600pt;}
.yf3{bottom:851.027600pt;}
.ya0{bottom:853.004133pt;}
.y6c{bottom:859.031600pt;}
.y33{bottom:860.354267pt;}
.y9f{bottom:865.006800pt;}
.y63{bottom:868.082400pt;}
.y6b{bottom:875.027600pt;}
.y9e{bottom:877.009467pt;}
.y32{bottom:884.354267pt;}
.y64{bottom:885.420933pt;}
.y9d{bottom:889.012133pt;}
.y6a{bottom:891.023600pt;}
.y9c{bottom:901.014800pt;}
.y69{bottom:907.019600pt;}
.y9b{bottom:913.017467pt;}
.y68{bottom:923.015600pt;}
.y9a{bottom:925.020133pt;}
.y66{bottom:974.776533pt;}
.y67{bottom:975.798800pt;}
.ya1{bottom:1029.693333pt;}
.h8{height:19.579733pt;}
.h10{height:22.027200pt;}
.ha{height:25.909333pt;}
.h5{height:26.357333pt;}
.hf{height:26.538281pt;}
.h11{height:30.122667pt;}
.hd{height:33.312000pt;}
.h9{height:33.787733pt;}
.h3{height:33.888000pt;}
.h7{height:37.636800pt;}
.hc{height:37.653333pt;}
.h2{height:40.714667pt;}
.h4{height:44.416000pt;}
.hb{height:51.818667pt;}
.h6{height:55.520000pt;}
.h1{height:1050.666667pt;}
.he{height:1050.706667pt;}
.h0{height:1050.708008pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.x2{left:40.633867pt;}
.x3{left:53.967333pt;}
.x1{left:222.818933pt;}
.xf{left:233.297200pt;}
.x5{left:242.552267pt;}
.xb{left:308.353200pt;}
.xe{left:388.704667pt;}
.x9{left:480.904933pt;}
.x8{left:487.975733pt;}
.x6{left:613.816267pt;}
.xa{left:642.021867pt;}
.xc{left:686.269733pt;}
.xd{left:718.740933pt;}
.x10{left:720.822933pt;}
.x4{left:726.822933pt;}
.x7{left:781.173333pt;}
}




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