
    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_fa619063d079690511e2c293.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_509dc532af700845944aa02a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984048;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_52fb40ce2e6c228aa2d93dbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_f0747e1966689e0ba4d8790f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_54a6fa3eced9110ebd915c1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108000;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_e6d59228842f25d31fc97e09.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.083000;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_fa619063d079690511e2c293.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_27c1f2080d2c93743879bf87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa619063d079690511e2c293.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fa619063d079690511e2c293.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.840000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:21.780000px;}
.v5{vertical-align:24.000000px;}
.ls7{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.396000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.257550px;}
.ls23{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.198000px;}
.ls22{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.132000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.066000px;}
.ls2e{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.066000px;}
.ls24{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.099000px;}
.ls17{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.132000px;}
.ls29{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.231000px;}
.ls1d{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.264000px;}
.lse{letter-spacing:0.330000px;}
.ls26{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.396000px;}
.ls2c{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.462000px;}
.ls2b{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.750000px;}
.ls11{letter-spacing:0.792000px;}
.ls19{letter-spacing:0.924000px;}
.ls2a{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.320000px;}
.ls21{letter-spacing:1.380000px;}
.ls27{letter-spacing:2.100000px;}
.ls12{letter-spacing:4.419000px;}
.ls16{letter-spacing:5.408400px;}
.ls1e{letter-spacing:7.753200px;}
.ls25{letter-spacing:8.700000px;}
.ls28{letter-spacing:8.880000px;}
.ls9{letter-spacing:12.750000px;}
.lsb{letter-spacing:13.500000px;}
.ls4{letter-spacing:107.831700px;}
.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;}
}
.ws39{word-spacing:-66.000000px;}
.ws98{word-spacing:-23.700000px;}
.ws99{word-spacing:-17.100000px;}
.ws12{word-spacing:-16.665000px;}
.ws1{word-spacing:-16.500000px;}
.ws7b{word-spacing:-16.368000px;}
.ws7a{word-spacing:-16.302000px;}
.wsaa{word-spacing:-16.200000px;}
.wsb8{word-spacing:-15.420000px;}
.ws91{word-spacing:-15.120000px;}
.ws7c{word-spacing:-15.000000px;}
.wsb7{word-spacing:-14.880000px;}
.ws24{word-spacing:-13.500000px;}
.ws22{word-spacing:-9.900000px;}
.wsa4{word-spacing:-8.700000px;}
.ws23{word-spacing:-8.100000px;}
.ws0{word-spacing:-7.200000px;}
.ws1c{word-spacing:-1.980000px;}
.ws97{word-spacing:-1.380000px;}
.wsbb{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.ws9d{word-spacing:0.060000px;}
.ws29{word-spacing:0.066000px;}
.wsa5{word-spacing:0.120000px;}
.ws64{word-spacing:0.132000px;}
.ws8a{word-spacing:0.180000px;}
.ws6b{word-spacing:0.198000px;}
.wsb6{word-spacing:0.240000px;}
.ws27{word-spacing:0.264000px;}
.ws33{word-spacing:0.330000px;}
.wsac{word-spacing:0.360000px;}
.ws20{word-spacing:0.396000px;}
.wsa0{word-spacing:0.420000px;}
.ws5f{word-spacing:0.462000px;}
.ws93{word-spacing:0.480000px;}
.ws2c{word-spacing:0.528000px;}
.ws95{word-spacing:0.540000px;}
.wse{word-spacing:0.594000px;}
.ws86{word-spacing:0.600000px;}
.ws3a{word-spacing:0.660000px;}
.wsad{word-spacing:0.720000px;}
.ws9{word-spacing:0.726000px;}
.ws2d{word-spacing:0.792000px;}
.wsa9{word-spacing:0.840000px;}
.ws7{word-spacing:0.858000px;}
.ws7e{word-spacing:0.900000px;}
.ws47{word-spacing:0.924000px;}
.ws4{word-spacing:0.990000px;}
.wsa1{word-spacing:1.020000px;}
.ws46{word-spacing:1.056000px;}
.wsb2{word-spacing:1.080000px;}
.ws69{word-spacing:1.122000px;}
.ws55{word-spacing:1.188000px;}
.ws16{word-spacing:1.254000px;}
.wsa2{word-spacing:1.260000px;}
.ws3{word-spacing:1.320000px;}
.ws2a{word-spacing:1.386000px;}
.wsba{word-spacing:1.440000px;}
.ws21{word-spacing:1.452000px;}
.ws19{word-spacing:1.518000px;}
.wsf{word-spacing:1.584000px;}
.ws8c{word-spacing:1.620000px;}
.ws60{word-spacing:1.650000px;}
.ws9b{word-spacing:1.740000px;}
.ws48{word-spacing:1.782000px;}
.ws65{word-spacing:1.848000px;}
.wsaf{word-spacing:1.860000px;}
.ws31{word-spacing:1.914000px;}
.ws37{word-spacing:1.944000px;}
.ws3f{word-spacing:1.980000px;}
.ws62{word-spacing:2.046000px;}
.wsd{word-spacing:2.112000px;}
.ws28{word-spacing:2.178000px;}
.ws80{word-spacing:2.220000px;}
.ws4b{word-spacing:2.244000px;}
.ws87{word-spacing:2.280000px;}
.ws72{word-spacing:2.310000px;}
.ws6a{word-spacing:2.376000px;}
.wsb1{word-spacing:2.400000px;}
.ws5e{word-spacing:2.442000px;}
.ws76{word-spacing:2.460000px;}
.ws4c{word-spacing:2.508000px;}
.ws85{word-spacing:2.520000px;}
.ws14{word-spacing:2.574000px;}
.ws7f{word-spacing:2.580000px;}
.ws70{word-spacing:2.640000px;}
.wsae{word-spacing:2.700000px;}
.wsb{word-spacing:2.706000px;}
.ws89{word-spacing:2.760000px;}
.ws1b{word-spacing:2.772000px;}
.ws43{word-spacing:2.838000px;}
.ws78{word-spacing:2.880000px;}
.wsc{word-spacing:2.904000px;}
.ws63{word-spacing:2.970000px;}
.ws35{word-spacing:3.036000px;}
.ws4e{word-spacing:3.102000px;}
.wsa{word-spacing:3.168000px;}
.ws51{word-spacing:3.234000px;}
.ws8b{word-spacing:3.240000px;}
.ws6f{word-spacing:3.300000px;}
.wsb5{word-spacing:3.360000px;}
.ws50{word-spacing:3.366000px;}
.wsb9{word-spacing:3.420000px;}
.ws32{word-spacing:3.432000px;}
.ws8d{word-spacing:3.540000px;}
.ws1a{word-spacing:3.564000px;}
.wsa6{word-spacing:3.600000px;}
.ws17{word-spacing:3.630000px;}
.ws88{word-spacing:3.720000px;}
.ws10{word-spacing:3.762000px;}
.ws59{word-spacing:3.894000px;}
.ws9f{word-spacing:3.900000px;}
.ws9a{word-spacing:3.960000px;}
.wsa7{word-spacing:4.020000px;}
.ws81{word-spacing:4.026000px;}
.ws1e{word-spacing:4.092000px;}
.ws54{word-spacing:4.158000px;}
.ws34{word-spacing:4.224000px;}
.ws84{word-spacing:4.260000px;}
.ws71{word-spacing:4.290000px;}
.ws3d{word-spacing:4.356000px;}
.ws68{word-spacing:4.422000px;}
.ws36{word-spacing:4.482000px;}
.ws66{word-spacing:4.488000px;}
.wsab{word-spacing:4.500000px;}
.ws7d{word-spacing:4.560000px;}
.ws3e{word-spacing:4.620000px;}
.ws3c{word-spacing:4.686000px;}
.ws13{word-spacing:4.752000px;}
.ws8f{word-spacing:4.818000px;}
.ws57{word-spacing:4.884000px;}
.ws6c{word-spacing:4.950000px;}
.ws8e{word-spacing:4.980000px;}
.ws4a{word-spacing:5.016000px;}
.ws45{word-spacing:5.082000px;}
.ws18{word-spacing:5.148000px;}
.ws15{word-spacing:5.214000px;}
.wsb0{word-spacing:5.220000px;}
.ws1f{word-spacing:5.280000px;}
.ws61{word-spacing:5.412000px;}
.ws4f{word-spacing:5.478000px;}
.ws40{word-spacing:5.610000px;}
.ws77{word-spacing:5.640000px;}
.ws52{word-spacing:5.676000px;}
.ws75{word-spacing:5.700000px;}
.ws2b{word-spacing:5.742000px;}
.ws9c{word-spacing:5.760000px;}
.ws38{word-spacing:5.778000px;}
.ws53{word-spacing:5.808000px;}
.ws6{word-spacing:5.874000px;}
.ws25{word-spacing:5.940000px;}
.ws73{word-spacing:6.006000px;}
.ws94{word-spacing:6.060000px;}
.ws42{word-spacing:6.072000px;}
.ws5b{word-spacing:6.138000px;}
.ws1d{word-spacing:6.204000px;}
.ws44{word-spacing:6.336000px;}
.ws5c{word-spacing:6.402000px;}
.ws6d{word-spacing:6.534000px;}
.ws92{word-spacing:6.600000px;}
.ws96{word-spacing:6.720000px;}
.ws8{word-spacing:6.732000px;}
.ws2e{word-spacing:6.798000px;}
.ws3b{word-spacing:6.864000px;}
.wsb4{word-spacing:6.900000px;}
.ws79{word-spacing:6.930000px;}
.ws4d{word-spacing:7.062000px;}
.ws9e{word-spacing:7.080000px;}
.ws26{word-spacing:7.128000px;}
.ws67{word-spacing:7.260000px;}
.wsb3{word-spacing:7.320000px;}
.ws58{word-spacing:7.392000px;}
.ws74{word-spacing:7.440000px;}
.ws5a{word-spacing:7.458000px;}
.ws83{word-spacing:7.500000px;}
.ws11{word-spacing:7.524000px;}
.ws2f{word-spacing:7.590000px;}
.ws49{word-spacing:7.656000px;}
.ws82{word-spacing:7.722000px;}
.ws5d{word-spacing:7.920000px;}
.ws56{word-spacing:7.986000px;}
.ws41{word-spacing:8.052000px;}
.ws30{word-spacing:8.184000px;}
.ws5{word-spacing:8.250000px;}
.ws90{word-spacing:8.316000px;}
.wsa3{word-spacing:28.980000px;}
.wsa8{word-spacing:29.580000px;}
.ws6e{word-spacing:49.500000px;}
._c{margin-left:-66.000000px;}
._e{margin-left:-22.440000px;}
._d{margin-left:-19.404000px;}
._b{margin-left:-16.500000px;}
._1{margin-left:-9.120000px;}
._5{margin-left:-5.754000px;}
._4{margin-left:-4.687800px;}
._2{margin-left:-3.431400px;}
._f{margin-left:-2.400000px;}
._0{margin-left:-1.368000px;}
._9{width:1.200600px;}
._3{width:2.520000px;}
._10{width:37.612200px;}
._a{width:49.500000px;}
._7{width:66.000000px;}
._6{width:217.204530px;}
._8{width:313.403730px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:28.800000px;}
.fsb{font-size:32.400000px;}
.fsa{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs9{font-size:51.510000px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:66.660000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:59.528250px;}
.y1{bottom:73.778250px;}
.y72{bottom:110.550750px;}
.y9f{bottom:111.889500px;}
.ya6{bottom:113.135700px;}
.y77{bottom:114.139500px;}
.yf8{bottom:115.005750px;}
.y13f{bottom:116.619900px;}
.y1a1{bottom:118.164000px;}
.y119{bottom:118.373850px;}
.y167{bottom:121.660050px;}
.y46{bottom:122.089800px;}
.y71{bottom:124.800750px;}
.ya5{bottom:128.885550px;}
.y9e{bottom:129.139500px;}
.y173{bottom:129.889500px;}
.y22{bottom:130.492650px;}
.y76{bottom:131.389500px;}
.y13e{bottom:132.369900px;}
.y1a0{bottom:133.914000px;}
.y118{bottom:135.623850px;}
.y166{bottom:138.910050px;}
.y70{bottom:139.050750px;}
.y45{bottom:139.339800px;}
.ya4{bottom:144.635550px;}
.y172{bottom:145.639500px;}
.y9d{bottom:146.389500px;}
.y21{bottom:147.742650px;}
.y13d{bottom:148.119900px;}
.y75{bottom:148.639500px;}
.y19f{bottom:149.664000px;}
.y117{bottom:152.873850px;}
.y165{bottom:156.160050px;}
.y44{bottom:156.589800px;}
.y6f{bottom:157.755750px;}
.ya3{bottom:160.385550px;}
.y171{bottom:161.389500px;}
.yd0{bottom:161.410050px;}
.y9c{bottom:163.639500px;}
.y13c{bottom:163.869900px;}
.y20{bottom:164.992650px;}
.yf7{bottom:165.139500px;}
.y19e{bottom:165.414000px;}
.y74{bottom:165.889500px;}
.y116{bottom:170.123850px;}
.y164{bottom:173.410050px;}
.y43{bottom:173.839800px;}
.ya2{bottom:176.135550px;}
.y170{bottom:177.139500px;}
.ycf{bottom:178.660050px;}
.y13b{bottom:179.619900px;}
.y9b{bottom:180.889500px;}
.y19d{bottom:181.164000px;}
.y1f{bottom:182.242650px;}
.yf6{bottom:182.389500px;}
.y73{bottom:183.139500px;}
.y115{bottom:187.373850px;}
.y163{bottom:190.660050px;}
.y42{bottom:191.089800px;}
.y16f{bottom:192.889500px;}
.y13a{bottom:195.369900px;}
.yce{bottom:195.910050px;}
.y19c{bottom:196.914000px;}
.y9a{bottom:198.139500px;}
.y1e{bottom:199.492650px;}
.yf5{bottom:199.639500px;}
.y6e{bottom:200.389500px;}
.y114{bottom:204.623850px;}
.y162{bottom:207.910050px;}
.y41{bottom:208.339800px;}
.y16e{bottom:208.639500px;}
.y139{bottom:211.119900px;}
.y19b{bottom:212.664000px;}
.ycd{bottom:213.160050px;}
.y99{bottom:215.389500px;}
.y1d{bottom:216.742650px;}
.yf4{bottom:216.889500px;}
.y6d{bottom:217.639500px;}
.y113{bottom:221.873850px;}
.y16d{bottom:224.389500px;}
.y161{bottom:225.160050px;}
.y40{bottom:225.589800px;}
.y138{bottom:226.869900px;}
.y19a{bottom:228.414000px;}
.ycc{bottom:230.410050px;}
.y98{bottom:232.639500px;}
.ya1{bottom:233.389500px;}
.y1c{bottom:233.992650px;}
.yf3{bottom:234.139500px;}
.y6c{bottom:234.889500px;}
.y112{bottom:239.123850px;}
.y16c{bottom:240.139500px;}
.y160{bottom:242.410050px;}
.y137{bottom:242.619900px;}
.y3f{bottom:242.839800px;}
.y199{bottom:244.164000px;}
.ycb{bottom:247.660050px;}
.y97{bottom:249.889500px;}
.ya0{bottom:250.639500px;}
.y1b{bottom:251.242650px;}
.yf2{bottom:251.389500px;}
.y6b{bottom:252.139500px;}
.y16b{bottom:255.889500px;}
.y111{bottom:256.373850px;}
.y136{bottom:258.369900px;}
.y15f{bottom:259.660050px;}
.y198{bottom:259.914000px;}
.yca{bottom:264.910050px;}
.y96{bottom:267.139500px;}
.y1a{bottom:268.492650px;}
.yf1{bottom:268.639500px;}
.y6a{bottom:269.389500px;}
.y16a{bottom:271.639500px;}
.y110{bottom:273.623850px;}
.y135{bottom:274.119900px;}
.y197{bottom:275.664000px;}
.y15e{bottom:276.910050px;}
.y3e{bottom:278.088300px;}
.yc9{bottom:282.160050px;}
.y95{bottom:284.389500px;}
.y19{bottom:285.742650px;}
.yf0{bottom:285.889500px;}
.y69{bottom:286.639500px;}
.y169{bottom:287.389500px;}
.y134{bottom:289.869900px;}
.y10f{bottom:290.873850px;}
.y196{bottom:291.414000px;}
.y15d{bottom:294.160050px;}
.yc8{bottom:299.410050px;}
.y94{bottom:301.639500px;}
.y18{bottom:302.992650px;}
.yef{bottom:303.139500px;}
.y68{bottom:303.889500px;}
.y133{bottom:305.619900px;}
.y195{bottom:307.164000px;}
.y10e{bottom:308.123850px;}
.y15c{bottom:311.410050px;}
.yc7{bottom:316.660050px;}
.y93{bottom:318.889500px;}
.y17{bottom:320.242650px;}
.yee{bottom:320.389500px;}
.y67{bottom:321.139500px;}
.y132{bottom:321.369900px;}
.y194{bottom:322.914000px;}
.y10d{bottom:325.373850px;}
.y3d{bottom:331.338300px;}
.yc6{bottom:333.910050px;}
.y92{bottom:336.139500px;}
.y168{bottom:336.889500px;}
.y131{bottom:337.119900px;}
.y16{bottom:337.492650px;}
.yed{bottom:337.639500px;}
.y66{bottom:338.389500px;}
.y193{bottom:338.664000px;}
.y10c{bottom:342.623850px;}
.y15b{bottom:346.660050px;}
.y3c{bottom:348.588300px;}
.yc5{bottom:351.160050px;}
.y91{bottom:353.389500px;}
.y192{bottom:354.414000px;}
.y15{bottom:354.742650px;}
.yec{bottom:354.889500px;}
.y65{bottom:355.639500px;}
.y10b{bottom:359.873850px;}
.y130{bottom:361.373850px;}
.yc4{bottom:368.410050px;}
.y191{bottom:370.164000px;}
.y90{bottom:370.639500px;}
.y14{bottom:371.992650px;}
.yeb{bottom:372.139500px;}
.y64{bottom:372.889500px;}
.y12f{bottom:378.623850px;}
.y3b{bottom:382.846200px;}
.y10a{bottom:385.627650px;}
.yc3{bottom:385.660050px;}
.y190{bottom:385.914000px;}
.y8f{bottom:387.889500px;}
.y13{bottom:389.242650px;}
.yea{bottom:389.389500px;}
.y63{bottom:390.139500px;}
.y12e{bottom:395.873850px;}
.y15a{bottom:399.910050px;}
.y109{bottom:401.377650px;}
.y18f{bottom:401.664000px;}
.yc2{bottom:402.910050px;}
.y8e{bottom:405.139500px;}
.y12{bottom:406.492650px;}
.ye9{bottom:406.639500px;}
.y62{bottom:407.389500px;}
.y12d{bottom:413.123850px;}
.y108{bottom:417.127650px;}
.y159{bottom:417.160050px;}
.y18e{bottom:417.414000px;}
.yc1{bottom:420.160050px;}
.y8d{bottom:422.389500px;}
.y11{bottom:423.742650px;}
.ye8{bottom:423.889500px;}
.y61{bottom:424.639500px;}
.y3a{bottom:429.859950px;}
.y12c{bottom:430.373850px;}
.y107{bottom:432.877650px;}
.y18d{bottom:433.164000px;}
.y158{bottom:434.410050px;}
.yc0{bottom:437.410050px;}
.y8c{bottom:439.639500px;}
.y10{bottom:440.992650px;}
.ye7{bottom:441.139500px;}
.y60{bottom:441.889500px;}
.y39{bottom:447.109950px;}
.y106{bottom:448.627650px;}
.y18c{bottom:448.914000px;}
.y157{bottom:451.660050px;}
.ybf{bottom:454.660050px;}
.y12b{bottom:456.127650px;}
.y8b{bottom:456.889500px;}
.yf{bottom:458.242650px;}
.ye6{bottom:458.389500px;}
.y5f{bottom:459.139500px;}
.y38{bottom:464.359950px;}
.y105{bottom:464.377650px;}
.y18b{bottom:464.664000px;}
.y156{bottom:468.910050px;}
.y12a{bottom:471.877650px;}
.ybe{bottom:471.910050px;}
.y8a{bottom:474.139500px;}
.ye5{bottom:475.639500px;}
.y5e{bottom:476.389500px;}
.y104{bottom:480.127650px;}
.y18a{bottom:480.414000px;}
.y37{bottom:481.609950px;}
.y155{bottom:486.160050px;}
.ybd{bottom:489.160050px;}
.y89{bottom:491.389500px;}
.ye{bottom:492.500550px;}
.ye4{bottom:492.889500px;}
.y5d{bottom:493.639500px;}
.y129{bottom:496.131750px;}
.y189{bottom:496.164000px;}
.y36{bottom:498.859950px;}
.y154{bottom:503.410050px;}
.y103{bottom:504.381750px;}
.ybc{bottom:506.410050px;}
.y88{bottom:508.639500px;}
.ye3{bottom:510.139500px;}
.y5c{bottom:510.889500px;}
.y188{bottom:511.914000px;}
.y128{bottom:513.381750px;}
.y35{bottom:516.110100px;}
.y153{bottom:520.660050px;}
.y102{bottom:521.631750px;}
.ybb{bottom:523.660050px;}
.y87{bottom:525.889500px;}
.ye2{bottom:527.389500px;}
.y187{bottom:527.664000px;}
.y5b{bottom:528.139500px;}
.y127{bottom:530.631750px;}
.y34{bottom:533.360100px;}
.y152{bottom:537.910050px;}
.y101{bottom:538.881750px;}
.yd{bottom:539.514300px;}
.yba{bottom:540.910050px;}
.y86{bottom:543.139500px;}
.y186{bottom:543.414000px;}
.ye1{bottom:544.639500px;}
.y5a{bottom:545.389500px;}
.y33{bottom:550.610100px;}
.y151{bottom:555.160050px;}
.y100{bottom:556.131750px;}
.y126{bottom:556.385550px;}
.yc{bottom:556.764300px;}
.yb9{bottom:558.160050px;}
.y185{bottom:559.164000px;}
.y85{bottom:560.389500px;}
.ye0{bottom:561.889500px;}
.y59{bottom:562.639500px;}
.y32{bottom:567.860100px;}
.y125{bottom:572.135550px;}
.y150{bottom:572.410050px;}
.y184{bottom:574.914000px;}
.yb8{bottom:575.410050px;}
.y84{bottom:577.639500px;}
.ydf{bottom:579.139500px;}
.y58{bottom:579.889500px;}
.yff{bottom:581.885550px;}
.y31{bottom:585.110100px;}
.y124{bottom:587.885550px;}
.y14f{bottom:589.660050px;}
.y183{bottom:590.664000px;}
.yb7{bottom:592.660050px;}
.y83{bottom:594.889500px;}
.yde{bottom:596.389500px;}
.y57{bottom:597.139500px;}
.yfe{bottom:597.635550px;}
.y30{bottom:602.360100px;}
.y123{bottom:603.635550px;}
.y182{bottom:606.414000px;}
.y14e{bottom:606.910050px;}
.yb{bottom:607.464600px;}
.yb6{bottom:609.910050px;}
.y82{bottom:612.139500px;}
.yfd{bottom:613.385550px;}
.ydd{bottom:613.639500px;}
.y56{bottom:614.389500px;}
.y122{bottom:619.385550px;}
.y2f{bottom:619.610100px;}
.y181{bottom:622.164000px;}
.ya{bottom:623.214600px;}
.y14d{bottom:624.160050px;}
.yb5{bottom:627.160050px;}
.yfc{bottom:629.135550px;}
.y81{bottom:629.389500px;}
.ydc{bottom:630.889500px;}
.y55{bottom:631.639500px;}
.y121{bottom:635.135550px;}
.y2e{bottom:636.860100px;}
.y180{bottom:637.914000px;}
.y14c{bottom:641.410050px;}
.yb4{bottom:644.410050px;}
.yfb{bottom:644.885550px;}
.y80{bottom:646.639500px;}
.y9{bottom:647.469150px;}
.ydb{bottom:648.139500px;}
.y54{bottom:648.889500px;}
.y120{bottom:650.885550px;}
.y17f{bottom:653.664000px;}
.y2d{bottom:654.110100px;}
.y14b{bottom:658.660050px;}
.yfa{bottom:660.635550px;}
.yb3{bottom:661.660050px;}
.y7f{bottom:663.889500px;}
.yda{bottom:665.389500px;}
.y53{bottom:666.139500px;}
.y11f{bottom:666.635550px;}
.y17e{bottom:669.414000px;}
.y2c{bottom:671.360100px;}
.y14a{bottom:675.910050px;}
.yf9{bottom:676.385550px;}
.yb2{bottom:678.910050px;}
.y7e{bottom:681.139500px;}
.y11e{bottom:682.385550px;}
.yd9{bottom:682.639500px;}
.y52{bottom:683.389500px;}
.y17d{bottom:685.164000px;}
.y2b{bottom:688.610100px;}
.y149{bottom:693.160050px;}
.yb1{bottom:696.160050px;}
.y11d{bottom:698.135550px;}
.y7d{bottom:698.389500px;}
.yd8{bottom:699.889500px;}
.y51{bottom:700.639500px;}
.y17c{bottom:700.914000px;}
.y2a{bottom:705.860100px;}
.y8{bottom:707.238750px;}
.y148{bottom:710.410050px;}
.yb0{bottom:713.410050px;}
.y11c{bottom:713.885550px;}
.y7c{bottom:715.639500px;}
.y17b{bottom:716.664000px;}
.yd7{bottom:717.139500px;}
.y50{bottom:717.889500px;}
.y29{bottom:723.110100px;}
.y147{bottom:727.660050px;}
.y11b{bottom:729.635550px;}
.yaf{bottom:730.660050px;}
.y17a{bottom:732.414000px;}
.y7{bottom:732.738750px;}
.y7b{bottom:732.889500px;}
.yd6{bottom:734.389500px;}
.y4f{bottom:735.139500px;}
.y28{bottom:740.360100px;}
.y146{bottom:744.910050px;}
.y11a{bottom:745.385550px;}
.yae{bottom:747.910050px;}
.y179{bottom:748.164000px;}
.y7a{bottom:750.139500px;}
.yd5{bottom:751.639500px;}
.y4e{bottom:752.389500px;}
.y6{bottom:758.238750px;}
.y145{bottom:762.160050px;}
.y178{bottom:763.914000px;}
.yad{bottom:765.160050px;}
.yd4{bottom:768.889500px;}
.y4d{bottom:769.639500px;}
.y27{bottom:774.617850px;}
.y144{bottom:779.410050px;}
.y177{bottom:779.664000px;}
.yac{bottom:782.410050px;}
.y79{bottom:785.389500px;}
.yd3{bottom:786.139500px;}
.y4c{bottom:786.889500px;}
.y176{bottom:795.414000px;}
.y143{bottom:796.660050px;}
.yab{bottom:799.660050px;}
.y5{bottom:800.747250px;}
.y78{bottom:802.639500px;}
.yd2{bottom:803.389500px;}
.y4b{bottom:804.139500px;}
.y175{bottom:811.164000px;}
.y142{bottom:813.910050px;}
.yaa{bottom:816.910050px;}
.yd1{bottom:820.639500px;}
.y4a{bottom:821.389500px;}
.y26{bottom:821.631750px;}
.y174{bottom:826.914000px;}
.y141{bottom:831.160050px;}
.y4{bottom:832.247250px;}
.y49{bottom:838.639500px;}
.y25{bottom:838.881750px;}
.ya9{bottom:842.664000px;}
.y140{bottom:848.410050px;}
.y48{bottom:855.889500px;}
.ya8{bottom:858.414000px;}
.y3{bottom:863.747250px;}
.y24{bottom:873.139500px;}
.ya7{bottom:874.164000px;}
.y23{bottom:915.548100px;}
.y47{bottom:915.660750px;}
.ha{height:30.240000px;}
.h6{height:42.900000px;}
.h2{height:45.390000px;}
.hb{height:48.060000px;}
.h11{height:52.560000px;}
.hc{height:53.400000px;}
.hd{height:55.380000px;}
.h5{height:55.770000px;}
.h8{height:58.740000px;}
.h9{height:59.327400px;}
.h7{height:60.918000px;}
.h4{height:64.354286px;}
.he{height:70.560000px;}
.h10{height:71.400000px;}
.hf{height:77.400000px;}
.h3{height:81.515429px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:93.543000px;}
.xe{left:102.047250px;}
.x4{left:110.156400px;}
.x7{left:112.807050px;}
.x13{left:119.055000px;}
.x14{left:122.418000px;}
.xf{left:127.559250px;}
.x15{left:130.921500px;}
.x11{left:137.939850px;}
.x5{left:140.266800px;}
.x1{left:146.443350px;}
.x17{left:157.323000px;}
.x18{left:165.826500px;}
.x16{left:180.709500px;}
.x19{left:189.213000px;}
.x12{left:235.161000px;}
.x2{left:243.664500px;}
.x9{left:255.622350px;}
.xa{left:266.745600px;}
.xb{left:286.642800px;}
.x3{left:312.360900px;}
.x6{left:325.136100px;}
.x8{left:327.194850px;}
.xd{left:478.515300px;}
.xc{left:483.085650px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.080000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:19.360000pt;}
.v5{vertical-align:21.333333pt;}
.ls7{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.352000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.228933pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.176000pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.058667pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.058667pt;}
.ls24{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.088000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls29{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.205333pt;}
.ls1d{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.293333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.352000pt;}
.ls2c{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.410667pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.666667pt;}
.ls11{letter-spacing:0.704000pt;}
.ls19{letter-spacing:0.821333pt;}
.ls2a{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.173333pt;}
.ls21{letter-spacing:1.226667pt;}
.ls27{letter-spacing:1.866667pt;}
.ls12{letter-spacing:3.928000pt;}
.ls16{letter-spacing:4.807467pt;}
.ls1e{letter-spacing:6.891733pt;}
.ls25{letter-spacing:7.733333pt;}
.ls28{letter-spacing:7.893333pt;}
.ls9{letter-spacing:11.333333pt;}
.lsb{letter-spacing:12.000000pt;}
.ls4{letter-spacing:95.850400pt;}
.ws39{word-spacing:-58.666667pt;}
.ws98{word-spacing:-21.066667pt;}
.ws99{word-spacing:-15.200000pt;}
.ws12{word-spacing:-14.813333pt;}
.ws1{word-spacing:-14.666667pt;}
.ws7b{word-spacing:-14.549333pt;}
.ws7a{word-spacing:-14.490667pt;}
.wsaa{word-spacing:-14.400000pt;}
.wsb8{word-spacing:-13.706667pt;}
.ws91{word-spacing:-13.440000pt;}
.ws7c{word-spacing:-13.333333pt;}
.wsb7{word-spacing:-13.226667pt;}
.ws24{word-spacing:-12.000000pt;}
.ws22{word-spacing:-8.800000pt;}
.wsa4{word-spacing:-7.733333pt;}
.ws23{word-spacing:-7.200000pt;}
.ws0{word-spacing:-6.400000pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws97{word-spacing:-1.226667pt;}
.wsbb{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.053333pt;}
.ws29{word-spacing:0.058667pt;}
.wsa5{word-spacing:0.106667pt;}
.ws64{word-spacing:0.117333pt;}
.ws8a{word-spacing:0.160000pt;}
.ws6b{word-spacing:0.176000pt;}
.wsb6{word-spacing:0.213333pt;}
.ws27{word-spacing:0.234667pt;}
.ws33{word-spacing:0.293333pt;}
.wsac{word-spacing:0.320000pt;}
.ws20{word-spacing:0.352000pt;}
.wsa0{word-spacing:0.373333pt;}
.ws5f{word-spacing:0.410667pt;}
.ws93{word-spacing:0.426667pt;}
.ws2c{word-spacing:0.469333pt;}
.ws95{word-spacing:0.480000pt;}
.wse{word-spacing:0.528000pt;}
.ws86{word-spacing:0.533333pt;}
.ws3a{word-spacing:0.586667pt;}
.wsad{word-spacing:0.640000pt;}
.ws9{word-spacing:0.645333pt;}
.ws2d{word-spacing:0.704000pt;}
.wsa9{word-spacing:0.746667pt;}
.ws7{word-spacing:0.762667pt;}
.ws7e{word-spacing:0.800000pt;}
.ws47{word-spacing:0.821333pt;}
.ws4{word-spacing:0.880000pt;}
.wsa1{word-spacing:0.906667pt;}
.ws46{word-spacing:0.938667pt;}
.wsb2{word-spacing:0.960000pt;}
.ws69{word-spacing:0.997333pt;}
.ws55{word-spacing:1.056000pt;}
.ws16{word-spacing:1.114667pt;}
.wsa2{word-spacing:1.120000pt;}
.ws3{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.232000pt;}
.wsba{word-spacing:1.280000pt;}
.ws21{word-spacing:1.290667pt;}
.ws19{word-spacing:1.349333pt;}
.wsf{word-spacing:1.408000pt;}
.ws8c{word-spacing:1.440000pt;}
.ws60{word-spacing:1.466667pt;}
.ws9b{word-spacing:1.546667pt;}
.ws48{word-spacing:1.584000pt;}
.ws65{word-spacing:1.642667pt;}
.wsaf{word-spacing:1.653333pt;}
.ws31{word-spacing:1.701333pt;}
.ws37{word-spacing:1.728000pt;}
.ws3f{word-spacing:1.760000pt;}
.ws62{word-spacing:1.818667pt;}
.wsd{word-spacing:1.877333pt;}
.ws28{word-spacing:1.936000pt;}
.ws80{word-spacing:1.973333pt;}
.ws4b{word-spacing:1.994667pt;}
.ws87{word-spacing:2.026667pt;}
.ws72{word-spacing:2.053333pt;}
.ws6a{word-spacing:2.112000pt;}
.wsb1{word-spacing:2.133333pt;}
.ws5e{word-spacing:2.170667pt;}
.ws76{word-spacing:2.186667pt;}
.ws4c{word-spacing:2.229333pt;}
.ws85{word-spacing:2.240000pt;}
.ws14{word-spacing:2.288000pt;}
.ws7f{word-spacing:2.293333pt;}
.ws70{word-spacing:2.346667pt;}
.wsae{word-spacing:2.400000pt;}
.wsb{word-spacing:2.405333pt;}
.ws89{word-spacing:2.453333pt;}
.ws1b{word-spacing:2.464000pt;}
.ws43{word-spacing:2.522667pt;}
.ws78{word-spacing:2.560000pt;}
.wsc{word-spacing:2.581333pt;}
.ws63{word-spacing:2.640000pt;}
.ws35{word-spacing:2.698667pt;}
.ws4e{word-spacing:2.757333pt;}
.wsa{word-spacing:2.816000pt;}
.ws51{word-spacing:2.874667pt;}
.ws8b{word-spacing:2.880000pt;}
.ws6f{word-spacing:2.933333pt;}
.wsb5{word-spacing:2.986667pt;}
.ws50{word-spacing:2.992000pt;}
.wsb9{word-spacing:3.040000pt;}
.ws32{word-spacing:3.050667pt;}
.ws8d{word-spacing:3.146667pt;}
.ws1a{word-spacing:3.168000pt;}
.wsa6{word-spacing:3.200000pt;}
.ws17{word-spacing:3.226667pt;}
.ws88{word-spacing:3.306667pt;}
.ws10{word-spacing:3.344000pt;}
.ws59{word-spacing:3.461333pt;}
.ws9f{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.520000pt;}
.wsa7{word-spacing:3.573333pt;}
.ws81{word-spacing:3.578667pt;}
.ws1e{word-spacing:3.637333pt;}
.ws54{word-spacing:3.696000pt;}
.ws34{word-spacing:3.754667pt;}
.ws84{word-spacing:3.786667pt;}
.ws71{word-spacing:3.813333pt;}
.ws3d{word-spacing:3.872000pt;}
.ws68{word-spacing:3.930667pt;}
.ws36{word-spacing:3.984000pt;}
.ws66{word-spacing:3.989333pt;}
.wsab{word-spacing:4.000000pt;}
.ws7d{word-spacing:4.053333pt;}
.ws3e{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.165333pt;}
.ws13{word-spacing:4.224000pt;}
.ws8f{word-spacing:4.282667pt;}
.ws57{word-spacing:4.341333pt;}
.ws6c{word-spacing:4.400000pt;}
.ws8e{word-spacing:4.426667pt;}
.ws4a{word-spacing:4.458667pt;}
.ws45{word-spacing:4.517333pt;}
.ws18{word-spacing:4.576000pt;}
.ws15{word-spacing:4.634667pt;}
.wsb0{word-spacing:4.640000pt;}
.ws1f{word-spacing:4.693333pt;}
.ws61{word-spacing:4.810667pt;}
.ws4f{word-spacing:4.869333pt;}
.ws40{word-spacing:4.986667pt;}
.ws77{word-spacing:5.013333pt;}
.ws52{word-spacing:5.045333pt;}
.ws75{word-spacing:5.066667pt;}
.ws2b{word-spacing:5.104000pt;}
.ws9c{word-spacing:5.120000pt;}
.ws38{word-spacing:5.136000pt;}
.ws53{word-spacing:5.162667pt;}
.ws6{word-spacing:5.221333pt;}
.ws25{word-spacing:5.280000pt;}
.ws73{word-spacing:5.338667pt;}
.ws94{word-spacing:5.386667pt;}
.ws42{word-spacing:5.397333pt;}
.ws5b{word-spacing:5.456000pt;}
.ws1d{word-spacing:5.514667pt;}
.ws44{word-spacing:5.632000pt;}
.ws5c{word-spacing:5.690667pt;}
.ws6d{word-spacing:5.808000pt;}
.ws92{word-spacing:5.866667pt;}
.ws96{word-spacing:5.973333pt;}
.ws8{word-spacing:5.984000pt;}
.ws2e{word-spacing:6.042667pt;}
.ws3b{word-spacing:6.101333pt;}
.wsb4{word-spacing:6.133333pt;}
.ws79{word-spacing:6.160000pt;}
.ws4d{word-spacing:6.277333pt;}
.ws9e{word-spacing:6.293333pt;}
.ws26{word-spacing:6.336000pt;}
.ws67{word-spacing:6.453333pt;}
.wsb3{word-spacing:6.506667pt;}
.ws58{word-spacing:6.570667pt;}
.ws74{word-spacing:6.613333pt;}
.ws5a{word-spacing:6.629333pt;}
.ws83{word-spacing:6.666667pt;}
.ws11{word-spacing:6.688000pt;}
.ws2f{word-spacing:6.746667pt;}
.ws49{word-spacing:6.805333pt;}
.ws82{word-spacing:6.864000pt;}
.ws5d{word-spacing:7.040000pt;}
.ws56{word-spacing:7.098667pt;}
.ws41{word-spacing:7.157333pt;}
.ws30{word-spacing:7.274667pt;}
.ws5{word-spacing:7.333333pt;}
.ws90{word-spacing:7.392000pt;}
.wsa3{word-spacing:25.760000pt;}
.wsa8{word-spacing:26.293333pt;}
.ws6e{word-spacing:44.000000pt;}
._c{margin-left:-58.666667pt;}
._e{margin-left:-19.946667pt;}
._d{margin-left:-17.248000pt;}
._b{margin-left:-14.666667pt;}
._1{margin-left:-8.106667pt;}
._5{margin-left:-5.114667pt;}
._4{margin-left:-4.166933pt;}
._2{margin-left:-3.050133pt;}
._f{margin-left:-2.133333pt;}
._0{margin-left:-1.216000pt;}
._9{width:1.067200pt;}
._3{width:2.240000pt;}
._10{width:33.433067pt;}
._a{width:44.000000pt;}
._7{width:58.666667pt;}
._6{width:193.070693pt;}
._8{width:278.581093pt;}
.fs1{font-size:25.600000pt;}
.fsb{font-size:28.800000pt;}
.fsa{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs9{font-size:45.786667pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:59.253333pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:52.914000pt;}
.y1{bottom:65.580667pt;}
.y72{bottom:98.267333pt;}
.y9f{bottom:99.457333pt;}
.ya6{bottom:100.565067pt;}
.y77{bottom:101.457333pt;}
.yf8{bottom:102.227333pt;}
.y13f{bottom:103.662133pt;}
.y1a1{bottom:105.034667pt;}
.y119{bottom:105.221200pt;}
.y167{bottom:108.142267pt;}
.y46{bottom:108.524267pt;}
.y71{bottom:110.934000pt;}
.ya5{bottom:114.564933pt;}
.y9e{bottom:114.790667pt;}
.y173{bottom:115.457333pt;}
.y22{bottom:115.993467pt;}
.y76{bottom:116.790667pt;}
.y13e{bottom:117.662133pt;}
.y1a0{bottom:119.034667pt;}
.y118{bottom:120.554533pt;}
.y166{bottom:123.475600pt;}
.y70{bottom:123.600667pt;}
.y45{bottom:123.857600pt;}
.ya4{bottom:128.564933pt;}
.y172{bottom:129.457333pt;}
.y9d{bottom:130.124000pt;}
.y21{bottom:131.326800pt;}
.y13d{bottom:131.662133pt;}
.y75{bottom:132.124000pt;}
.y19f{bottom:133.034667pt;}
.y117{bottom:135.887867pt;}
.y165{bottom:138.808933pt;}
.y44{bottom:139.190933pt;}
.y6f{bottom:140.227333pt;}
.ya3{bottom:142.564933pt;}
.y171{bottom:143.457333pt;}
.yd0{bottom:143.475600pt;}
.y9c{bottom:145.457333pt;}
.y13c{bottom:145.662133pt;}
.y20{bottom:146.660133pt;}
.yf7{bottom:146.790667pt;}
.y19e{bottom:147.034667pt;}
.y74{bottom:147.457333pt;}
.y116{bottom:151.221200pt;}
.y164{bottom:154.142267pt;}
.y43{bottom:154.524267pt;}
.ya2{bottom:156.564933pt;}
.y170{bottom:157.457333pt;}
.ycf{bottom:158.808933pt;}
.y13b{bottom:159.662133pt;}
.y9b{bottom:160.790667pt;}
.y19d{bottom:161.034667pt;}
.y1f{bottom:161.993467pt;}
.yf6{bottom:162.124000pt;}
.y73{bottom:162.790667pt;}
.y115{bottom:166.554533pt;}
.y163{bottom:169.475600pt;}
.y42{bottom:169.857600pt;}
.y16f{bottom:171.457333pt;}
.y13a{bottom:173.662133pt;}
.yce{bottom:174.142267pt;}
.y19c{bottom:175.034667pt;}
.y9a{bottom:176.124000pt;}
.y1e{bottom:177.326800pt;}
.yf5{bottom:177.457333pt;}
.y6e{bottom:178.124000pt;}
.y114{bottom:181.887867pt;}
.y162{bottom:184.808933pt;}
.y41{bottom:185.190933pt;}
.y16e{bottom:185.457333pt;}
.y139{bottom:187.662133pt;}
.y19b{bottom:189.034667pt;}
.ycd{bottom:189.475600pt;}
.y99{bottom:191.457333pt;}
.y1d{bottom:192.660133pt;}
.yf4{bottom:192.790667pt;}
.y6d{bottom:193.457333pt;}
.y113{bottom:197.221200pt;}
.y16d{bottom:199.457333pt;}
.y161{bottom:200.142267pt;}
.y40{bottom:200.524267pt;}
.y138{bottom:201.662133pt;}
.y19a{bottom:203.034667pt;}
.ycc{bottom:204.808933pt;}
.y98{bottom:206.790667pt;}
.ya1{bottom:207.457333pt;}
.y1c{bottom:207.993467pt;}
.yf3{bottom:208.124000pt;}
.y6c{bottom:208.790667pt;}
.y112{bottom:212.554533pt;}
.y16c{bottom:213.457333pt;}
.y160{bottom:215.475600pt;}
.y137{bottom:215.662133pt;}
.y3f{bottom:215.857600pt;}
.y199{bottom:217.034667pt;}
.ycb{bottom:220.142267pt;}
.y97{bottom:222.124000pt;}
.ya0{bottom:222.790667pt;}
.y1b{bottom:223.326800pt;}
.yf2{bottom:223.457333pt;}
.y6b{bottom:224.124000pt;}
.y16b{bottom:227.457333pt;}
.y111{bottom:227.887867pt;}
.y136{bottom:229.662133pt;}
.y15f{bottom:230.808933pt;}
.y198{bottom:231.034667pt;}
.yca{bottom:235.475600pt;}
.y96{bottom:237.457333pt;}
.y1a{bottom:238.660133pt;}
.yf1{bottom:238.790667pt;}
.y6a{bottom:239.457333pt;}
.y16a{bottom:241.457333pt;}
.y110{bottom:243.221200pt;}
.y135{bottom:243.662133pt;}
.y197{bottom:245.034667pt;}
.y15e{bottom:246.142267pt;}
.y3e{bottom:247.189600pt;}
.yc9{bottom:250.808933pt;}
.y95{bottom:252.790667pt;}
.y19{bottom:253.993467pt;}
.yf0{bottom:254.124000pt;}
.y69{bottom:254.790667pt;}
.y169{bottom:255.457333pt;}
.y134{bottom:257.662133pt;}
.y10f{bottom:258.554533pt;}
.y196{bottom:259.034667pt;}
.y15d{bottom:261.475600pt;}
.yc8{bottom:266.142267pt;}
.y94{bottom:268.124000pt;}
.y18{bottom:269.326800pt;}
.yef{bottom:269.457333pt;}
.y68{bottom:270.124000pt;}
.y133{bottom:271.662133pt;}
.y195{bottom:273.034667pt;}
.y10e{bottom:273.887867pt;}
.y15c{bottom:276.808933pt;}
.yc7{bottom:281.475600pt;}
.y93{bottom:283.457333pt;}
.y17{bottom:284.660133pt;}
.yee{bottom:284.790667pt;}
.y67{bottom:285.457333pt;}
.y132{bottom:285.662133pt;}
.y194{bottom:287.034667pt;}
.y10d{bottom:289.221200pt;}
.y3d{bottom:294.522933pt;}
.yc6{bottom:296.808933pt;}
.y92{bottom:298.790667pt;}
.y168{bottom:299.457333pt;}
.y131{bottom:299.662133pt;}
.y16{bottom:299.993467pt;}
.yed{bottom:300.124000pt;}
.y66{bottom:300.790667pt;}
.y193{bottom:301.034667pt;}
.y10c{bottom:304.554533pt;}
.y15b{bottom:308.142267pt;}
.y3c{bottom:309.856267pt;}
.yc5{bottom:312.142267pt;}
.y91{bottom:314.124000pt;}
.y192{bottom:315.034667pt;}
.y15{bottom:315.326800pt;}
.yec{bottom:315.457333pt;}
.y65{bottom:316.124000pt;}
.y10b{bottom:319.887867pt;}
.y130{bottom:321.221200pt;}
.yc4{bottom:327.475600pt;}
.y191{bottom:329.034667pt;}
.y90{bottom:329.457333pt;}
.y14{bottom:330.660133pt;}
.yeb{bottom:330.790667pt;}
.y64{bottom:331.457333pt;}
.y12f{bottom:336.554533pt;}
.y3b{bottom:340.307733pt;}
.y10a{bottom:342.780133pt;}
.yc3{bottom:342.808933pt;}
.y190{bottom:343.034667pt;}
.y8f{bottom:344.790667pt;}
.y13{bottom:345.993467pt;}
.yea{bottom:346.124000pt;}
.y63{bottom:346.790667pt;}
.y12e{bottom:351.887867pt;}
.y15a{bottom:355.475600pt;}
.y109{bottom:356.780133pt;}
.y18f{bottom:357.034667pt;}
.yc2{bottom:358.142267pt;}
.y8e{bottom:360.124000pt;}
.y12{bottom:361.326800pt;}
.ye9{bottom:361.457333pt;}
.y62{bottom:362.124000pt;}
.y12d{bottom:367.221200pt;}
.y108{bottom:370.780133pt;}
.y159{bottom:370.808933pt;}
.y18e{bottom:371.034667pt;}
.yc1{bottom:373.475600pt;}
.y8d{bottom:375.457333pt;}
.y11{bottom:376.660133pt;}
.ye8{bottom:376.790667pt;}
.y61{bottom:377.457333pt;}
.y3a{bottom:382.097733pt;}
.y12c{bottom:382.554533pt;}
.y107{bottom:384.780133pt;}
.y18d{bottom:385.034667pt;}
.y158{bottom:386.142267pt;}
.yc0{bottom:388.808933pt;}
.y8c{bottom:390.790667pt;}
.y10{bottom:391.993467pt;}
.ye7{bottom:392.124000pt;}
.y60{bottom:392.790667pt;}
.y39{bottom:397.431067pt;}
.y106{bottom:398.780133pt;}
.y18c{bottom:399.034667pt;}
.y157{bottom:401.475600pt;}
.ybf{bottom:404.142267pt;}
.y12b{bottom:405.446800pt;}
.y8b{bottom:406.124000pt;}
.yf{bottom:407.326800pt;}
.ye6{bottom:407.457333pt;}
.y5f{bottom:408.124000pt;}
.y38{bottom:412.764400pt;}
.y105{bottom:412.780133pt;}
.y18b{bottom:413.034667pt;}
.y156{bottom:416.808933pt;}
.y12a{bottom:419.446800pt;}
.ybe{bottom:419.475600pt;}
.y8a{bottom:421.457333pt;}
.ye5{bottom:422.790667pt;}
.y5e{bottom:423.457333pt;}
.y104{bottom:426.780133pt;}
.y18a{bottom:427.034667pt;}
.y37{bottom:428.097733pt;}
.y155{bottom:432.142267pt;}
.ybd{bottom:434.808933pt;}
.y89{bottom:436.790667pt;}
.ye{bottom:437.778267pt;}
.ye4{bottom:438.124000pt;}
.y5d{bottom:438.790667pt;}
.y129{bottom:441.006000pt;}
.y189{bottom:441.034667pt;}
.y36{bottom:443.431067pt;}
.y154{bottom:447.475600pt;}
.y103{bottom:448.339333pt;}
.ybc{bottom:450.142267pt;}
.y88{bottom:452.124000pt;}
.ye3{bottom:453.457333pt;}
.y5c{bottom:454.124000pt;}
.y188{bottom:455.034667pt;}
.y128{bottom:456.339333pt;}
.y35{bottom:458.764533pt;}
.y153{bottom:462.808933pt;}
.y102{bottom:463.672667pt;}
.ybb{bottom:465.475600pt;}
.y87{bottom:467.457333pt;}
.ye2{bottom:468.790667pt;}
.y187{bottom:469.034667pt;}
.y5b{bottom:469.457333pt;}
.y127{bottom:471.672667pt;}
.y34{bottom:474.097867pt;}
.y152{bottom:478.142267pt;}
.y101{bottom:479.006000pt;}
.yd{bottom:479.568267pt;}
.yba{bottom:480.808933pt;}
.y86{bottom:482.790667pt;}
.y186{bottom:483.034667pt;}
.ye1{bottom:484.124000pt;}
.y5a{bottom:484.790667pt;}
.y33{bottom:489.431200pt;}
.y151{bottom:493.475600pt;}
.y100{bottom:494.339333pt;}
.y126{bottom:494.564933pt;}
.yc{bottom:494.901600pt;}
.yb9{bottom:496.142267pt;}
.y185{bottom:497.034667pt;}
.y85{bottom:498.124000pt;}
.ye0{bottom:499.457333pt;}
.y59{bottom:500.124000pt;}
.y32{bottom:504.764533pt;}
.y125{bottom:508.564933pt;}
.y150{bottom:508.808933pt;}
.y184{bottom:511.034667pt;}
.yb8{bottom:511.475600pt;}
.y84{bottom:513.457333pt;}
.ydf{bottom:514.790667pt;}
.y58{bottom:515.457333pt;}
.yff{bottom:517.231600pt;}
.y31{bottom:520.097867pt;}
.y124{bottom:522.564933pt;}
.y14f{bottom:524.142267pt;}
.y183{bottom:525.034667pt;}
.yb7{bottom:526.808933pt;}
.y83{bottom:528.790667pt;}
.yde{bottom:530.124000pt;}
.y57{bottom:530.790667pt;}
.yfe{bottom:531.231600pt;}
.y30{bottom:535.431200pt;}
.y123{bottom:536.564933pt;}
.y182{bottom:539.034667pt;}
.y14e{bottom:539.475600pt;}
.yb{bottom:539.968533pt;}
.yb6{bottom:542.142267pt;}
.y82{bottom:544.124000pt;}
.yfd{bottom:545.231600pt;}
.ydd{bottom:545.457333pt;}
.y56{bottom:546.124000pt;}
.y122{bottom:550.564933pt;}
.y2f{bottom:550.764533pt;}
.y181{bottom:553.034667pt;}
.ya{bottom:553.968533pt;}
.y14d{bottom:554.808933pt;}
.yb5{bottom:557.475600pt;}
.yfc{bottom:559.231600pt;}
.y81{bottom:559.457333pt;}
.ydc{bottom:560.790667pt;}
.y55{bottom:561.457333pt;}
.y121{bottom:564.564933pt;}
.y2e{bottom:566.097867pt;}
.y180{bottom:567.034667pt;}
.y14c{bottom:570.142267pt;}
.yb4{bottom:572.808933pt;}
.yfb{bottom:573.231600pt;}
.y80{bottom:574.790667pt;}
.y9{bottom:575.528133pt;}
.ydb{bottom:576.124000pt;}
.y54{bottom:576.790667pt;}
.y120{bottom:578.564933pt;}
.y17f{bottom:581.034667pt;}
.y2d{bottom:581.431200pt;}
.y14b{bottom:585.475600pt;}
.yfa{bottom:587.231600pt;}
.yb3{bottom:588.142267pt;}
.y7f{bottom:590.124000pt;}
.yda{bottom:591.457333pt;}
.y53{bottom:592.124000pt;}
.y11f{bottom:592.564933pt;}
.y17e{bottom:595.034667pt;}
.y2c{bottom:596.764533pt;}
.y14a{bottom:600.808933pt;}
.yf9{bottom:601.231600pt;}
.yb2{bottom:603.475600pt;}
.y7e{bottom:605.457333pt;}
.y11e{bottom:606.564933pt;}
.yd9{bottom:606.790667pt;}
.y52{bottom:607.457333pt;}
.y17d{bottom:609.034667pt;}
.y2b{bottom:612.097867pt;}
.y149{bottom:616.142267pt;}
.yb1{bottom:618.808933pt;}
.y11d{bottom:620.564933pt;}
.y7d{bottom:620.790667pt;}
.yd8{bottom:622.124000pt;}
.y51{bottom:622.790667pt;}
.y17c{bottom:623.034667pt;}
.y2a{bottom:627.431200pt;}
.y8{bottom:628.656667pt;}
.y148{bottom:631.475600pt;}
.yb0{bottom:634.142267pt;}
.y11c{bottom:634.564933pt;}
.y7c{bottom:636.124000pt;}
.y17b{bottom:637.034667pt;}
.yd7{bottom:637.457333pt;}
.y50{bottom:638.124000pt;}
.y29{bottom:642.764533pt;}
.y147{bottom:646.808933pt;}
.y11b{bottom:648.564933pt;}
.yaf{bottom:649.475600pt;}
.y17a{bottom:651.034667pt;}
.y7{bottom:651.323333pt;}
.y7b{bottom:651.457333pt;}
.yd6{bottom:652.790667pt;}
.y4f{bottom:653.457333pt;}
.y28{bottom:658.097867pt;}
.y146{bottom:662.142267pt;}
.y11a{bottom:662.564933pt;}
.yae{bottom:664.808933pt;}
.y179{bottom:665.034667pt;}
.y7a{bottom:666.790667pt;}
.yd5{bottom:668.124000pt;}
.y4e{bottom:668.790667pt;}
.y6{bottom:673.990000pt;}
.y145{bottom:677.475600pt;}
.y178{bottom:679.034667pt;}
.yad{bottom:680.142267pt;}
.yd4{bottom:683.457333pt;}
.y4d{bottom:684.124000pt;}
.y27{bottom:688.549200pt;}
.y144{bottom:692.808933pt;}
.y177{bottom:693.034667pt;}
.yac{bottom:695.475600pt;}
.y79{bottom:698.124000pt;}
.yd3{bottom:698.790667pt;}
.y4c{bottom:699.457333pt;}
.y176{bottom:707.034667pt;}
.y143{bottom:708.142267pt;}
.yab{bottom:710.808933pt;}
.y5{bottom:711.775333pt;}
.y78{bottom:713.457333pt;}
.yd2{bottom:714.124000pt;}
.y4b{bottom:714.790667pt;}
.y175{bottom:721.034667pt;}
.y142{bottom:723.475600pt;}
.yaa{bottom:726.142267pt;}
.yd1{bottom:729.457333pt;}
.y4a{bottom:730.124000pt;}
.y26{bottom:730.339333pt;}
.y174{bottom:735.034667pt;}
.y141{bottom:738.808933pt;}
.y4{bottom:739.775333pt;}
.y49{bottom:745.457333pt;}
.y25{bottom:745.672667pt;}
.ya9{bottom:749.034667pt;}
.y140{bottom:754.142267pt;}
.y48{bottom:760.790667pt;}
.ya8{bottom:763.034667pt;}
.y3{bottom:767.775333pt;}
.y24{bottom:776.124000pt;}
.ya7{bottom:777.034667pt;}
.y23{bottom:813.820533pt;}
.y47{bottom:813.920667pt;}
.ha{height:26.880000pt;}
.h6{height:38.133333pt;}
.h2{height:40.346667pt;}
.hb{height:42.720000pt;}
.h11{height:46.720000pt;}
.hc{height:47.466667pt;}
.hd{height:49.226667pt;}
.h5{height:49.573333pt;}
.h8{height:52.213333pt;}
.h9{height:52.735467pt;}
.h7{height:54.149333pt;}
.h4{height:57.203810pt;}
.he{height:62.720000pt;}
.h10{height:63.466667pt;}
.hf{height:68.800000pt;}
.h3{height:72.458159pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:83.149333pt;}
.xe{left:90.708667pt;}
.x4{left:97.916800pt;}
.x7{left:100.272933pt;}
.x13{left:105.826667pt;}
.x14{left:108.816000pt;}
.xf{left:113.386000pt;}
.x15{left:116.374667pt;}
.x11{left:122.613200pt;}
.x5{left:124.681600pt;}
.x1{left:130.171867pt;}
.x17{left:139.842667pt;}
.x18{left:147.401333pt;}
.x16{left:160.630667pt;}
.x19{left:168.189333pt;}
.x12{left:209.032000pt;}
.x2{left:216.590667pt;}
.x9{left:227.219867pt;}
.xa{left:237.107200pt;}
.xb{left:254.793600pt;}
.x3{left:277.654133pt;}
.x6{left:289.009867pt;}
.x8{left:290.839867pt;}
.xd{left:425.346933pt;}
.xc{left:429.409467pt;}
}




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