
    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_1ef0fa1e31e75f39144c27b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_02caa84e3171f90fd19fbafb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b6b48f69007e8b90952bb6b2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.183105;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_b4be249cf09feec36339587f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_0bcbea993e842bcd8b9489ab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.074707;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_16a3ebef17ca03708771145d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_b9648380052afee59d90e4ad.woff')format("woff");}.ff7{font-family:ff7;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.604000px;}
.v1{vertical-align:36.018000px;}
.v2{vertical-align:72.000000px;}
.ls36{letter-spacing:-9.384000px;}
.ls9{letter-spacing:-7.371000px;}
.ls2a{letter-spacing:-4.830000px;}
.ls38{letter-spacing:-4.485000px;}
.ls15{letter-spacing:-3.657000px;}
.ls5d{letter-spacing:-3.540000px;}
.ls13{letter-spacing:-3.519000px;}
.ls21{letter-spacing:-3.105000px;}
.ls28{letter-spacing:-2.898000px;}
.ls1c{letter-spacing:-2.760000px;}
.ls1d{letter-spacing:-2.691000px;}
.ls24{letter-spacing:-2.622000px;}
.ls11{letter-spacing:-2.553000px;}
.ls14{letter-spacing:-2.277000px;}
.ls31{letter-spacing:-2.208000px;}
.ls23{letter-spacing:-2.139000px;}
.ls67{letter-spacing:-2.079000px;}
.ls25{letter-spacing:-2.070000px;}
.ls17{letter-spacing:-2.001000px;}
.ls26{letter-spacing:-1.932000px;}
.ls30{letter-spacing:-1.794000px;}
.ls18{letter-spacing:-1.725000px;}
.ls54{letter-spacing:-1.620000px;}
.ls20{letter-spacing:-1.587000px;}
.ls1b{letter-spacing:-1.518000px;}
.ls12{letter-spacing:-1.449000px;}
.ls60{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.380000px;}
.ls43{letter-spacing:-1.350000px;}
.ls55{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-1.311000px;}
.ls39{letter-spacing:-1.242000px;}
.ls4b{letter-spacing:-1.200000px;}
.ls47{letter-spacing:-1.188000px;}
.ls1e{letter-spacing:-1.173000px;}
.ls45{letter-spacing:-1.134000px;}
.ls22{letter-spacing:-1.104000px;}
.ls44{letter-spacing:-1.080000px;}
.ls32{letter-spacing:-1.035000px;}
.ls4f{letter-spacing:-1.020000px;}
.ls46{letter-spacing:-0.972000px;}
.ls35{letter-spacing:-0.966000px;}
.ls48{letter-spacing:-0.960000px;}
.ls53{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.855000px;}
.ls51{letter-spacing:-0.840000px;}
.ls34{letter-spacing:-0.828000px;}
.ls4d{letter-spacing:-0.780000px;}
.ls1a{letter-spacing:-0.759000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls4c{letter-spacing:-0.660000px;}
.ls5f{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.483000px;}
.ls62{letter-spacing:-0.480000px;}
.ls57{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.414000px;}
.ls61{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.345000px;}
.ls41{letter-spacing:-0.324000px;}
.ls4e{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.207000px;}
.ls6{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.138000px;}
.ls5e{letter-spacing:-0.120000px;}
.ls64{letter-spacing:-0.081000px;}
.ls4{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.006900px;}
.ls50{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.144900px;}
.ls56{letter-spacing:0.180000px;}
.ls5b{letter-spacing:0.331200px;}
.ls3d{letter-spacing:0.420000px;}
.ls3e{letter-spacing:0.960000px;}
.ls42{letter-spacing:1.026000px;}
.ls58{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.260000px;}
.ls59{letter-spacing:1.440000px;}
.ls5a{letter-spacing:2.056200px;}
.ls29{letter-spacing:2.070000px;}
.lsa{letter-spacing:2.400000px;}
.ls2c{letter-spacing:3.381000px;}
.ls3a{letter-spacing:3.919200px;}
.ls0{letter-spacing:4.200000px;}
.lsb{letter-spacing:4.950000px;}
.ls2b{letter-spacing:5.313000px;}
.ls10{letter-spacing:5.382000px;}
.ls5c{letter-spacing:5.475000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls65{letter-spacing:5.975400px;}
.ls2{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.300000px;}
.ls2e{letter-spacing:7.350000px;}
.ls1f{letter-spacing:7.725000px;}
.ls1{letter-spacing:7.950000px;}
.ls68{letter-spacing:8.100000px;}
.lsf{letter-spacing:8.250000px;}
.ls3b{letter-spacing:8.325000px;}
.ls5{letter-spacing:8.400000px;}
.ls27{letter-spacing:8.694000px;}
.ls66{letter-spacing:8.700000px;}
.ls3f{letter-spacing:152.820000px;}
.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;}
}
.wsaa{word-spacing:-29.775000px;}
.ws5c{word-spacing:-29.400000px;}
.ws12{word-spacing:-29.325000px;}
.wsae{word-spacing:-29.175000px;}
.ws0{word-spacing:-29.025000px;}
.ws2c{word-spacing:-28.800000px;}
.ws42{word-spacing:-28.425000px;}
.ws8c{word-spacing:-26.550000px;}
.wsc{word-spacing:-26.025000px;}
.wsaf{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.wsa0{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.wsd{word-spacing:-19.389000px;}
.ws1{word-spacing:-18.102000px;}
.wsab{word-spacing:-17.703000px;}
.ws46{word-spacing:-17.049900px;}
.wsb{word-spacing:-17.043000px;}
.ws78{word-spacing:-16.860000px;}
.wsf{word-spacing:-16.698000px;}
.ws53{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.284000px;}
.ws50{word-spacing:-16.215000px;}
.ws52{word-spacing:-16.077000px;}
.ws45{word-spacing:-16.008000px;}
.ws4{word-spacing:-16.002000px;}
.ws2f{word-spacing:-15.939000px;}
.ws5d{word-spacing:-15.870000px;}
.wsa5{word-spacing:-15.801000px;}
.ws51{word-spacing:-15.732000px;}
.ws21{word-spacing:-15.663000px;}
.ws14{word-spacing:-15.594000px;}
.wsa6{word-spacing:-15.561000px;}
.ws23{word-spacing:-15.525000px;}
.ws2d{word-spacing:-15.456000px;}
.wsa{word-spacing:-15.390000px;}
.ws20{word-spacing:-15.318000px;}
.ws43{word-spacing:-15.249000px;}
.ws33{word-spacing:-15.111000px;}
.ws16{word-spacing:-15.042000px;}
.ws32{word-spacing:-14.973000px;}
.ws8e{word-spacing:-14.940000px;}
.ws30{word-spacing:-14.904000px;}
.ws44{word-spacing:-14.835000px;}
.ws7a{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.766000px;}
.ws8f{word-spacing:-14.700000px;}
.ws68{word-spacing:-14.640000px;}
.ws69{word-spacing:-14.580000px;}
.wsb0{word-spacing:-14.520000px;}
.ws13{word-spacing:-14.490000px;}
.ws95{word-spacing:-14.460000px;}
.ws31{word-spacing:-14.421000px;}
.ws96{word-spacing:-14.400000px;}
.ws9b{word-spacing:-14.340000px;}
.ws24{word-spacing:-14.283000px;}
.ws90{word-spacing:-14.280000px;}
.ws3a{word-spacing:-14.145000px;}
.ws6d{word-spacing:-14.040000px;}
.ws75{word-spacing:-13.980000px;}
.ws2e{word-spacing:-13.938000px;}
.ws79{word-spacing:-13.920000px;}
.ws67{word-spacing:-13.860000px;}
.ws6b{word-spacing:-13.620000px;}
.ws62{word-spacing:-13.500000px;}
.wsac{word-spacing:-13.482000px;}
.ws93{word-spacing:-13.440000px;}
.ws65{word-spacing:-13.392000px;}
.ws99{word-spacing:-13.320000px;}
.ws7b{word-spacing:-13.200000px;}
.wsad{word-spacing:-10.320849px;}
.ws56{word-spacing:-9.384000px;}
.ws7{word-spacing:-8.400000px;}
.wsa9{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws17{word-spacing:-5.382000px;}
.ws59{word-spacing:-4.485000px;}
.ws9{word-spacing:-4.200000px;}
.ws1a{word-spacing:-3.657000px;}
.wse{word-spacing:-2.400000px;}
.ws3e{word-spacing:-2.070000px;}
.ws35{word-spacing:-1.725000px;}
.ws88{word-spacing:-1.260000px;}
.ws5a{word-spacing:-1.242000px;}
.ws4b{word-spacing:-0.897000px;}
.ws38{word-spacing:-0.483000px;}
.wsa3{word-spacing:-0.207000px;}
.ws4a{word-spacing:-0.138000px;}
.ws18{word-spacing:-0.069000px;}
.ws6{word-spacing:0.000000px;}
.ws49{word-spacing:0.138000px;}
.ws8{word-spacing:0.180000px;}
.wsa4{word-spacing:0.207000px;}
.ws3c{word-spacing:0.276000px;}
.ws89{word-spacing:0.300000px;}
.ws5f{word-spacing:0.345000px;}
.ws10{word-spacing:0.414000px;}
.wsa2{word-spacing:0.420000px;}
.ws85{word-spacing:0.486000px;}
.ws8a{word-spacing:0.660000px;}
.ws37{word-spacing:0.690000px;}
.ws3d{word-spacing:0.759000px;}
.ws54{word-spacing:0.828000px;}
.ws11{word-spacing:0.855000px;}
.ws3b{word-spacing:0.966000px;}
.ws87{word-spacing:0.972000px;}
.ws2b{word-spacing:1.173000px;}
.ws5b{word-spacing:1.242000px;}
.ws1c{word-spacing:1.311000px;}
.ws8b{word-spacing:1.320000px;}
.ws86{word-spacing:1.350000px;}
.ws40{word-spacing:1.449000px;}
.wsa8{word-spacing:1.587000px;}
.ws1f{word-spacing:1.725000px;}
.ws5e{word-spacing:1.794000px;}
.ws34{word-spacing:2.001000px;}
.ws57{word-spacing:2.208000px;}
.ws1e{word-spacing:2.277000px;}
.wsa7{word-spacing:2.346000px;}
.ws29{word-spacing:2.691000px;}
.ws26{word-spacing:2.829000px;}
.ws4f{word-spacing:2.967000px;}
.ws4c{word-spacing:3.036000px;}
.ws1d{word-spacing:3.243000px;}
.ws4e{word-spacing:3.381000px;}
.ws19{word-spacing:3.519000px;}
.wsa1{word-spacing:3.540000px;}
.ws1b{word-spacing:3.657000px;}
.ws4d{word-spacing:4.278000px;}
.ws58{word-spacing:4.485000px;}
.ws3f{word-spacing:4.830000px;}
.ws2a{word-spacing:5.658000px;}
.ws39{word-spacing:5.727000px;}
.ws27{word-spacing:6.417000px;}
.ws47{word-spacing:6.486000px;}
.ws48{word-spacing:7.107000px;}
.ws41{word-spacing:7.866000px;}
.ws36{word-spacing:9.039000px;}
.ws28{word-spacing:9.177000px;}
.ws55{word-spacing:9.384000px;}
.ws25{word-spacing:10.764000px;}
.ws60{word-spacing:114.658200px;}
.ws97{word-spacing:116.982000px;}
.ws9d{word-spacing:118.002000px;}
.ws9f{word-spacing:126.612000px;}
.ws73{word-spacing:127.110000px;}
.ws6c{word-spacing:135.852000px;}
.ws64{word-spacing:136.215000px;}
.ws66{word-spacing:148.848000px;}
.ws7d{word-spacing:148.974000px;}
.ws71{word-spacing:151.410000px;}
.ws6a{word-spacing:152.886000px;}
.ws8d{word-spacing:153.402000px;}
.ws61{word-spacing:156.060000px;}
.ws83{word-spacing:157.824000px;}
.ws70{word-spacing:161.658000px;}
.ws92{word-spacing:164.256000px;}
.ws82{word-spacing:166.980000px;}
.ws72{word-spacing:169.962000px;}
.ws84{word-spacing:171.282000px;}
.ws74{word-spacing:172.926000px;}
.ws91{word-spacing:175.494000px;}
.ws6e{word-spacing:180.450000px;}
.ws76{word-spacing:182.760000px;}
.ws80{word-spacing:186.042000px;}
.ws77{word-spacing:186.324000px;}
.ws9c{word-spacing:188.376000px;}
.ws98{word-spacing:190.206000px;}
.ws7f{word-spacing:193.812000px;}
.ws81{word-spacing:194.604000px;}
.ws7e{word-spacing:199.200000px;}
.ws63{word-spacing:202.159800px;}
.ws9a{word-spacing:206.136000px;}
.ws7c{word-spacing:212.898000px;}
.ws94{word-spacing:217.644000px;}
.ws9e{word-spacing:219.720000px;}
.ws6f{word-spacing:242.454000px;}
._d{margin-left:-17.607000px;}
._a{margin-left:-9.355200px;}
._9{margin-left:-7.095600px;}
._4{margin-left:-5.808000px;}
._6{margin-left:-4.182000px;}
._5{margin-left:-2.496000px;}
._7{margin-left:-1.362000px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._8{width:3.648000px;}
._c{width:4.914000px;}
._2{width:6.318000px;}
._b{width:7.374000px;}
._11{width:8.574000px;}
._10{width:9.756000px;}
._16{width:11.101800px;}
._17{width:12.830700px;}
._f{width:14.616000px;}
._15{width:15.811500px;}
._14{width:16.951800px;}
._1e{width:18.098700px;}
._46{width:19.540200px;}
._4a{width:20.721300px;}
._e{width:22.650000px;}
._1a{width:24.024600px;}
._4b{width:25.777200px;}
._2e{width:38.544000px;}
._48{width:45.605700px;}
._49{width:46.878000px;}
._23{width:49.524000px;}
._47{width:52.809000px;}
._2a{width:63.444000px;}
._21{width:64.884000px;}
._4d{width:67.918500px;}
._39{width:71.424000px;}
._4c{width:73.308600px;}
._28{width:76.044000px;}
._37{width:79.344000px;}
._2c{width:80.664000px;}
._3b{width:84.744000px;}
._30{width:86.484000px;}
._3d{width:87.744000px;}
._25{width:92.544000px;}
._32{width:94.764000px;}
._34{width:99.264000px;}
._31{width:100.524000px;}
._42{width:103.104000px;}
._36{width:107.364000px;}
._44{width:111.438000px;}
._43{width:118.224000px;}
._3f{width:121.104000px;}
._35{width:125.664000px;}
._41{width:139.278000px;}
._26{width:155.508000px;}
._2d{width:166.884000px;}
._22{width:167.904000px;}
._3a{width:178.404000px;}
._29{width:182.208000px;}
._38{width:183.864000px;}
._45{width:185.466000px;}
._2b{width:188.844000px;}
._33{width:193.800000px;}
._2f{width:195.000000px;}
._20{width:196.440000px;}
._3e{width:198.000000px;}
._24{width:199.680000px;}
._3c{width:203.280000px;}
._27{width:205.980000px;}
._40{width:221.424000px;}
._1f{width:486.405000px;}
._0{width:490.260000px;}
._1d{width:491.482200px;}
._18{width:494.146200px;}
._12{width:578.400000px;}
._19{width:994.000200px;}
._1b{width:996.625200px;}
._1c{width:1000.675200px;}
._13{width:1002.655200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:36.729000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd8{bottom:106.130250px;}
.y6b{bottom:106.165350px;}
.yb4{bottom:106.268850px;}
.y13a{bottom:106.308150px;}
.y15f{bottom:106.321350px;}
.y8e{bottom:106.333650px;}
.y181{bottom:106.465350px;}
.y43{bottom:106.603650px;}
.y112{bottom:108.052350px;}
.y111{bottom:117.052350px;}
.yd7{bottom:126.502500px;}
.y6a{bottom:126.589350px;}
.y15e{bottom:126.670350px;}
.y139{bottom:126.680400px;}
.y42{bottom:126.941400px;}
.y1a2{bottom:127.051350px;}
.y8d{bottom:127.171650px;}
.yb3{bottom:127.227600px;}
.y180{bottom:127.286850px;}
.y110{bottom:143.257350px;}
.yd6{bottom:146.874750px;}
.y69{bottom:147.013350px;}
.y138{bottom:147.052650px;}
.y41{bottom:147.279150px;}
.y8c{bottom:148.009650px;}
.yb2{bottom:148.186350px;}
.y10f{bottom:152.257350px;}
.y15d{bottom:153.398100px;}
.y1a1{bottom:154.062600px;}
.y17f{bottom:154.487100px;}
.yd5{bottom:167.247000px;}
.y137{bottom:167.424900px;}
.y68{bottom:167.437350px;}
.y40{bottom:167.616900px;}
.y8b{bottom:168.847650px;}
.yb1{bottom:169.145100px;}
.y15c{bottom:173.747100px;}
.y1a0{bottom:174.695100px;}
.y17e{bottom:175.308600px;}
.y10e{bottom:178.462350px;}
.y10d{bottom:187.462350px;}
.yd4{bottom:187.619250px;}
.y67{bottom:187.861350px;}
.y3f{bottom:187.954650px;}
.y8a{bottom:189.685650px;}
.yb0{bottom:190.103850px;}
.y15b{bottom:200.474850px;}
.y19f{bottom:201.706350px;}
.y17d{bottom:202.508850px;}
.y108{bottom:205.072350px;}
.y1b{bottom:206.624100px;}
.yd3{bottom:207.991500px;}
.y66{bottom:208.285350px;}
.y3e{bottom:208.292400px;}
.y136{bottom:209.060100px;}
.y89{bottom:210.523650px;}
.yaf{bottom:211.062600px;}
.y10c{bottom:213.667350px;}
.y19e{bottom:222.338850px;}
.y10b{bottom:222.667350px;}
.y17c{bottom:223.330350px;}
.y1a{bottom:227.633850px;}
.yd2{bottom:228.363750px;}
.y3d{bottom:228.630150px;}
.y65{bottom:228.709350px;}
.y88{bottom:231.361650px;}
.yae{bottom:232.021350px;}
.y19{bottom:247.133850px;}
.yd1{bottom:248.736000px;}
.y10a{bottom:248.872350px;}
.y3c{bottom:248.967900px;}
.y64{bottom:249.133350px;}
.y19d{bottom:249.350100px;}
.y17b{bottom:250.530600px;}
.y15a{bottom:251.341350px;}
.y87{bottom:252.199650px;}
.yad{bottom:252.980100px;}
.y109{bottom:257.872350px;}
.y18{bottom:266.633850px;}
.yd0{bottom:269.108250px;}
.y3b{bottom:269.305650px;}
.y63{bottom:269.557350px;}
.y19c{bottom:269.982600px;}
.y17a{bottom:271.352100px;}
.y135{bottom:271.494750px;}
.y159{bottom:271.696350px;}
.y86{bottom:273.037650px;}
.yac{bottom:273.938850px;}
.yfd{bottom:275.482350px;}
.y1be{bottom:277.434750px;}
.y107{bottom:284.077350px;}
.y17{bottom:286.133850px;}
.ycf{bottom:289.480500px;}
.y3a{bottom:289.643400px;}
.y62{bottom:289.981350px;}
.y19b{bottom:290.615100px;}
.y134{bottom:291.867000px;}
.y158{bottom:292.051350px;}
.y106{bottom:293.077350px;}
.y85{bottom:293.875650px;}
.yab{bottom:294.897600px;}
.y1bd{bottom:297.684750px;}
.y179{bottom:298.552350px;}
.y16{bottom:305.633850px;}
.yce{bottom:309.852750px;}
.y39{bottom:309.981150px;}
.y61{bottom:310.405350px;}
.y133{bottom:312.239250px;}
.y157{bottom:312.406350px;}
.y84{bottom:314.713650px;}
.yaa{bottom:315.856350px;}
.y19a{bottom:317.626350px;}
.y1bc{bottom:317.934750px;}
.y105{bottom:319.282350px;}
.y178{bottom:319.373850px;}
.y15{bottom:325.133850px;}
.y104{bottom:328.282350px;}
.ycd{bottom:330.225000px;}
.y38{bottom:330.318900px;}
.y60{bottom:330.829350px;}
.y132{bottom:332.611500px;}
.y156{bottom:332.761350px;}
.y83{bottom:335.551650px;}
.ya9{bottom:336.815100px;}
.y1bb{bottom:338.184750px;}
.y199{bottom:338.258850px;}
.y177{bottom:340.195350px;}
.y14{bottom:344.633850px;}
.ycc{bottom:350.597250px;}
.y37{bottom:350.656650px;}
.y5f{bottom:351.253350px;}
.y131{bottom:352.983750px;}
.y155{bottom:353.116350px;}
.y103{bottom:354.487350px;}
.y82{bottom:356.389650px;}
.ya8{bottom:357.773850px;}
.y198{bottom:358.891350px;}
.y176{bottom:361.016850px;}
.yfe{bottom:363.487350px;}
.ycb{bottom:370.969500px;}
.y36{bottom:370.994400px;}
.y1ba{bottom:371.184750px;}
.y5e{bottom:371.677350px;}
.y130{bottom:373.356000px;}
.y154{bottom:373.471350px;}
.y13{bottom:376.883850px;}
.y81{bottom:377.227650px;}
.ya7{bottom:378.732600px;}
.y197{bottom:385.902600px;}
.y175{bottom:388.217100px;}
.y102{bottom:389.692350px;}
.y35{bottom:391.332150px;}
.yca{bottom:391.341750px;}
.y5d{bottom:392.101350px;}
.y12f{bottom:393.728250px;}
.y153{bottom:393.826350px;}
.y80{bottom:398.065650px;}
.y101{bottom:398.692350px;}
.ya6{bottom:399.691350px;}
.y196{bottom:406.535100px;}
.y174{bottom:409.038600px;}
.y34{bottom:411.669900px;}
.yc9{bottom:411.714000px;}
.y5c{bottom:412.525350px;}
.y1b9{bottom:412.689750px;}
.y12e{bottom:414.100500px;}
.y152{bottom:414.181350px;}
.y7f{bottom:418.903650px;}
.ya5{bottom:420.650100px;}
.y100{bottom:424.897350px;}
.y12{bottom:426.143850px;}
.y195{bottom:427.167600px;}
.y33{bottom:432.007650px;}
.yc8{bottom:432.086250px;}
.y1b8{bottom:432.189750px;}
.y5b{bottom:432.949350px;}
.yff{bottom:433.897350px;}
.y12d{bottom:434.472750px;}
.y151{bottom:434.536350px;}
.y173{bottom:436.238850px;}
.y7e{bottom:439.741650px;}
.ya4{bottom:441.608850px;}
.y11{bottom:447.149700px;}
.y1b7{bottom:451.689750px;}
.y32{bottom:452.345400px;}
.yc7{bottom:452.458500px;}
.y5a{bottom:453.373350px;}
.y194{bottom:454.178850px;}
.y12c{bottom:454.845000px;}
.y150{bottom:454.891350px;}
.y172{bottom:457.060350px;}
.yfc{bottom:460.102350px;}
.y7d{bottom:460.579650px;}
.ya3{bottom:462.567600px;}
.y10{bottom:466.649700px;}
.yfb{bottom:469.102350px;}
.y1b6{bottom:471.189750px;}
.y31{bottom:472.683150px;}
.yc6{bottom:472.830750px;}
.y59{bottom:473.797350px;}
.y12b{bottom:475.217250px;}
.y14f{bottom:475.246350px;}
.yf8{bottom:477.712350px;}
.y193{bottom:481.190100px;}
.y7c{bottom:481.417650px;}
.ya2{bottom:483.526350px;}
.y171{bottom:484.260600px;}
.yf{bottom:486.149700px;}
.y1b5{bottom:490.689750px;}
.y30{bottom:493.020900px;}
.yc5{bottom:493.203000px;}
.y58{bottom:494.221350px;}
.yfa{bottom:495.307350px;}
.y12a{bottom:495.589500px;}
.y14e{bottom:495.601350px;}
.yf7{bottom:495.712350px;}
.y192{bottom:501.822600px;}
.y7b{bottom:502.255650px;}
.yf9{bottom:504.307350px;}
.ya1{bottom:504.485100px;}
.y170{bottom:505.082100px;}
.ye{bottom:505.649700px;}
.y1b4{bottom:510.189750px;}
.y2f{bottom:513.358650px;}
.yc4{bottom:513.575250px;}
.y57{bottom:514.645350px;}
.y14d{bottom:515.956350px;}
.y129{bottom:515.961750px;}
.y7a{bottom:523.093650px;}
.yd{bottom:525.149700px;}
.ya0{bottom:525.443850px;}
.y191{bottom:528.833850px;}
.y1b3{bottom:529.689750px;}
.yf6{bottom:530.512350px;}
.y16f{bottom:532.282350px;}
.y2e{bottom:533.696400px;}
.yc3{bottom:533.947500px;}
.y56{bottom:535.069350px;}
.y14c{bottom:536.311350px;}
.y128{bottom:536.334000px;}
.yf5{bottom:539.512350px;}
.y79{bottom:543.931650px;}
.yc{bottom:544.649700px;}
.y9f{bottom:546.402600px;}
.y1b2{bottom:549.189750px;}
.y190{bottom:549.560100px;}
.y16e{bottom:553.103850px;}
.y2d{bottom:554.034150px;}
.yc2{bottom:554.319750px;}
.y55{bottom:555.493350px;}
.y14b{bottom:556.666350px;}
.y127{bottom:556.706250px;}
.y78{bottom:564.769650px;}
.yf4{bottom:565.717350px;}
.y9e{bottom:567.361350px;}
.y1b1{bottom:568.689750px;}
.y2c{bottom:574.371900px;}
.yf3{bottom:574.717350px;}
.y54{bottom:575.917350px;}
.y18f{bottom:576.571350px;}
.yb{bottom:576.899700px;}
.y14a{bottom:577.021350px;}
.y16d{bottom:580.304100px;}
.y77{bottom:585.607650px;}
.y1b0{bottom:588.189750px;}
.y9d{bottom:588.320100px;}
.y2b{bottom:594.709650px;}
.yc1{bottom:595.944150px;}
.y53{bottom:596.341350px;}
.y18e{bottom:597.203850px;}
.y149{bottom:597.376350px;}
.yf2{bottom:600.922350px;}
.y126{bottom:600.923400px;}
.y16c{bottom:601.125600px;}
.y76{bottom:606.445650px;}
.y1af{bottom:607.689750px;}
.y9c{bottom:609.278850px;}
.yf1{bottom:609.922350px;}
.y125{bottom:609.923400px;}
.y2a{bottom:615.047400px;}
.y52{bottom:616.765350px;}
.y148{bottom:617.731350px;}
.y18d{bottom:624.215100px;}
.y1ae{bottom:627.189750px;}
.y75{bottom:627.283650px;}
.ye4{bottom:627.532350px;}
.y16b{bottom:628.325850px;}
.y9b{bottom:630.237600px;}
.ya{bottom:634.661400px;}
.y29{bottom:635.385150px;}
.yf0{bottom:636.127350px;}
.y124{bottom:636.128400px;}
.y51{bottom:637.189350px;}
.y147{bottom:638.086350px;}
.y18c{bottom:644.847600px;}
.yef{bottom:645.127350px;}
.y123{bottom:645.128400px;}
.y1ad{bottom:646.689750px;}
.y74{bottom:648.121650px;}
.y16a{bottom:649.147350px;}
.y9a{bottom:651.196350px;}
.y121{bottom:653.738400px;}
.y28{bottom:655.722900px;}
.y50{bottom:657.613350px;}
.yc0{bottom:658.234350px;}
.y146{bottom:658.441350px;}
.y9{bottom:661.667400px;}
.ye5{bottom:662.737350px;}
.y18b{bottom:665.480100px;}
.y1ac{bottom:666.189750px;}
.y73{bottom:668.959650px;}
.y169{bottom:669.968850px;}
.yee{bottom:671.332350px;}
.y122{bottom:671.333400px;}
.y120{bottom:671.738400px;}
.y99{bottom:672.155100px;}
.y27{bottom:676.060650px;}
.y4f{bottom:678.037350px;}
.ybf{bottom:678.606600px;}
.y145{bottom:678.796350px;}
.yed{bottom:680.332350px;}
.y11d{bottom:680.333400px;}
.y1ab{bottom:685.689750px;}
.y18a{bottom:692.491350px;}
.y98{bottom:693.113850px;}
.y26{bottom:696.398400px;}
.y168{bottom:697.169100px;}
.y4e{bottom:698.461350px;}
.ybe{bottom:698.978850px;}
.y144{bottom:699.151350px;}
.y1aa{bottom:705.189750px;}
.yec{bottom:706.537350px;}
.y11f{bottom:706.538400px;}
.y8{bottom:709.918350px;}
.y72{bottom:711.064500px;}
.y189{bottom:713.123850px;}
.y97{bottom:714.072600px;}
.yeb{bottom:715.537350px;}
.y11e{bottom:715.538400px;}
.y25{bottom:716.736150px;}
.y167{bottom:717.990600px;}
.y4d{bottom:718.885350px;}
.ybd{bottom:719.351100px;}
.y143{bottom:719.506350px;}
.y1a9{bottom:724.689750px;}
.y96{bottom:735.031350px;}
.y71{bottom:735.648000px;}
.y24{bottom:737.073900px;}
.y4c{bottom:739.309350px;}
.ybc{bottom:739.723350px;}
.y142{bottom:739.861350px;}
.y188{bottom:740.135100px;}
.y7{bottom:741.427350px;}
.ye9{bottom:741.742350px;}
.y11c{bottom:741.743400px;}
.y1a8{bottom:744.189750px;}
.y166{bottom:745.190850px;}
.ye8{bottom:750.742350px;}
.y11b{bottom:750.743400px;}
.y95{bottom:755.990100px;}
.y23{bottom:757.411650px;}
.y4b{bottom:759.733350px;}
.yea{bottom:759.742350px;}
.ybb{bottom:760.095600px;}
.y141{bottom:760.216350px;}
.y187{bottom:760.767600px;}
.y1a7{bottom:763.689750px;}
.y165{bottom:766.012350px;}
.ye7{bottom:776.947350px;}
.y11a{bottom:776.948400px;}
.y94{bottom:776.948850px;}
.y22{bottom:777.749400px;}
.y4a{bottom:780.157350px;}
.yba{bottom:780.467850px;}
.y140{bottom:780.571350px;}
.y1a6{bottom:783.189750px;}
.ye6{bottom:785.947350px;}
.y119{bottom:785.948400px;}
.y164{bottom:786.833850px;}
.y186{bottom:787.778850px;}
.y114{bottom:794.558400px;}
.y93{bottom:797.907600px;}
.y21{bottom:798.087150px;}
.y70{bottom:798.511350px;}
.y49{bottom:800.581350px;}
.yb9{bottom:800.840100px;}
.y13f{bottom:800.926350px;}
.y6{bottom:802.688850px;}
.y113{bottom:803.558400px;}
.y185{bottom:808.411350px;}
.ye3{bottom:812.152350px;}
.y118{bottom:812.153400px;}
.y163{bottom:814.034100px;}
.y1a5{bottom:815.439750px;}
.y20{bottom:818.424900px;}
.y92{bottom:818.866350px;}
.y6f{bottom:819.349350px;}
.y48{bottom:821.005350px;}
.ye2{bottom:821.152350px;}
.y117{bottom:821.153400px;}
.yb8{bottom:821.212350px;}
.y13e{bottom:821.281350px;}
.ydf{bottom:829.762350px;}
.y5{bottom:832.193850px;}
.y162{bottom:834.855600px;}
.y184{bottom:835.422600px;}
.yde{bottom:838.762350px;}
.y1f{bottom:838.762650px;}
.y91{bottom:839.825100px;}
.y6e{bottom:840.187350px;}
.y47{bottom:841.429350px;}
.yb7{bottom:841.584600px;}
.y13d{bottom:841.636350px;}
.ye1{bottom:847.357350px;}
.y116{bottom:847.358400px;}
.y183{bottom:856.055100px;}
.ye0{bottom:856.357350px;}
.y115{bottom:856.358400px;}
.y1e{bottom:859.100400px;}
.y90{bottom:860.783850px;}
.y6d{bottom:861.025350px;}
.y4{bottom:861.698850px;}
.y46{bottom:861.853350px;}
.yb6{bottom:861.956850px;}
.y13c{bottom:861.991350px;}
.y161{bottom:862.055850px;}
.y1a4{bottom:873.201450px;}
.y8f{bottom:881.742600px;}
.y6c{bottom:881.863350px;}
.y45{bottom:882.277350px;}
.yb5{bottom:882.329100px;}
.y13b{bottom:882.346350px;}
.yda{bottom:882.572700px;}
.ydb{bottom:882.586200px;}
.ydd{bottom:882.599700px;}
.y3{bottom:882.698850px;}
.y160{bottom:882.877350px;}
.y182{bottom:883.066350px;}
.y1a3{bottom:900.207450px;}
.yd9{bottom:900.568200px;}
.ydc{bottom:900.581700px;}
.y1d{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1c{bottom:948.189000px;}
.h9{height:44.460938px;}
.ha{height:45.061523px;}
.hc{height:46.643555px;}
.hf{height:51.884766px;}
.h4{height:55.576172px;}
.h3{height:58.354980px;}
.h8{height:63.912598px;}
.h2{height:69.470215px;}
.h7{height:75.027832px;}
.h6{height:77.806641px;}
.hd{height:91.576172px;}
.h5{height:100.037109px;}
.hb{height:118.679555px;}
.he{height:127.576172px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:81.404400px;}
.xb{left:82.869450px;}
.x1{left:84.351750px;}
.x5{left:85.485600px;}
.x10{left:93.738900px;}
.xf{left:95.804400px;}
.xa{left:103.724700px;}
.x6{left:105.025950px;}
.x4{left:106.365600px;}
.x18{left:107.496000px;}
.x24{left:109.746000px;}
.xe{left:121.096650px;}
.xd{left:122.683650px;}
.xc{left:123.684150px;}
.x2a{left:161.943300px;}
.x19{left:164.556000px;}
.x2b{left:169.623300px;}
.x21{left:172.566000px;}
.x26{left:174.486000px;}
.x25{left:178.446000px;}
.x2c{left:190.683300px;}
.x22{left:193.386000px;}
.x15{left:195.516000px;}
.x27{left:197.853300px;}
.x8{left:212.664000px;}
.x9{left:231.432900px;}
.x2{left:232.601400px;}
.x3{left:233.748450px;}
.x1b{left:277.071000px;}
.x17{left:279.936000px;}
.x20{left:283.236000px;}
.x1f{left:284.346000px;}
.x11{left:285.452400px;}
.x23{left:286.686000px;}
.x1a{left:288.171000px;}
.x1e{left:289.251000px;}
.x29{left:290.598300px;}
.x16{left:342.306000px;}
.x28{left:344.613300px;}
.x13{left:365.993400px;}
.x12{left:370.394400px;}
.x1c{left:478.626000px;}
.x1d{left:489.381000px;}
.x14{left:580.170900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.981333pt;}
.v1{vertical-align:32.016000pt;}
.v2{vertical-align:64.000000pt;}
.ls36{letter-spacing:-8.341333pt;}
.ls9{letter-spacing:-6.552000pt;}
.ls2a{letter-spacing:-4.293333pt;}
.ls38{letter-spacing:-3.986667pt;}
.ls15{letter-spacing:-3.250667pt;}
.ls5d{letter-spacing:-3.146667pt;}
.ls13{letter-spacing:-3.128000pt;}
.ls21{letter-spacing:-2.760000pt;}
.ls28{letter-spacing:-2.576000pt;}
.ls1c{letter-spacing:-2.453333pt;}
.ls1d{letter-spacing:-2.392000pt;}
.ls24{letter-spacing:-2.330667pt;}
.ls11{letter-spacing:-2.269333pt;}
.ls14{letter-spacing:-2.024000pt;}
.ls31{letter-spacing:-1.962667pt;}
.ls23{letter-spacing:-1.901333pt;}
.ls67{letter-spacing:-1.848000pt;}
.ls25{letter-spacing:-1.840000pt;}
.ls17{letter-spacing:-1.778667pt;}
.ls26{letter-spacing:-1.717333pt;}
.ls30{letter-spacing:-1.594667pt;}
.ls18{letter-spacing:-1.533333pt;}
.ls54{letter-spacing:-1.440000pt;}
.ls20{letter-spacing:-1.410667pt;}
.ls1b{letter-spacing:-1.349333pt;}
.ls12{letter-spacing:-1.288000pt;}
.ls60{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.226667pt;}
.ls43{letter-spacing:-1.200000pt;}
.ls55{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-1.165333pt;}
.ls39{letter-spacing:-1.104000pt;}
.ls4b{letter-spacing:-1.066667pt;}
.ls47{letter-spacing:-1.056000pt;}
.ls1e{letter-spacing:-1.042667pt;}
.ls45{letter-spacing:-1.008000pt;}
.ls22{letter-spacing:-0.981333pt;}
.ls44{letter-spacing:-0.960000pt;}
.ls32{letter-spacing:-0.920000pt;}
.ls4f{letter-spacing:-0.906667pt;}
.ls46{letter-spacing:-0.864000pt;}
.ls35{letter-spacing:-0.858667pt;}
.ls48{letter-spacing:-0.853333pt;}
.ls53{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.760000pt;}
.ls51{letter-spacing:-0.746667pt;}
.ls34{letter-spacing:-0.736000pt;}
.ls4d{letter-spacing:-0.693333pt;}
.ls1a{letter-spacing:-0.674667pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls4c{letter-spacing:-0.586667pt;}
.ls5f{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.429333pt;}
.ls62{letter-spacing:-0.426667pt;}
.ls57{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.368000pt;}
.ls61{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.306667pt;}
.ls41{letter-spacing:-0.288000pt;}
.ls4e{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.184000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.122667pt;}
.ls5e{letter-spacing:-0.106667pt;}
.ls64{letter-spacing:-0.072000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.006133pt;}
.ls50{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.128800pt;}
.ls56{letter-spacing:0.160000pt;}
.ls5b{letter-spacing:0.294400pt;}
.ls3d{letter-spacing:0.373333pt;}
.ls3e{letter-spacing:0.853333pt;}
.ls42{letter-spacing:0.912000pt;}
.ls58{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:1.120000pt;}
.ls59{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.827733pt;}
.ls29{letter-spacing:1.840000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls2c{letter-spacing:3.005333pt;}
.ls3a{letter-spacing:3.483733pt;}
.ls0{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.400000pt;}
.ls2b{letter-spacing:4.722667pt;}
.ls10{letter-spacing:4.784000pt;}
.ls5c{letter-spacing:4.866667pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls65{letter-spacing:5.311467pt;}
.ls2{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.600000pt;}
.ls2e{letter-spacing:6.533333pt;}
.ls1f{letter-spacing:6.866667pt;}
.ls1{letter-spacing:7.066667pt;}
.ls68{letter-spacing:7.200000pt;}
.lsf{letter-spacing:7.333333pt;}
.ls3b{letter-spacing:7.400000pt;}
.ls5{letter-spacing:7.466667pt;}
.ls27{letter-spacing:7.728000pt;}
.ls66{letter-spacing:7.733333pt;}
.ls3f{letter-spacing:135.840000pt;}
.wsaa{word-spacing:-26.466667pt;}
.ws5c{word-spacing:-26.133333pt;}
.ws12{word-spacing:-26.066667pt;}
.wsae{word-spacing:-25.933333pt;}
.ws0{word-spacing:-25.800000pt;}
.ws2c{word-spacing:-25.600000pt;}
.ws42{word-spacing:-25.266667pt;}
.ws8c{word-spacing:-23.600000pt;}
.wsc{word-spacing:-23.133333pt;}
.wsaf{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.wsa0{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.wsd{word-spacing:-17.234667pt;}
.ws1{word-spacing:-16.090667pt;}
.wsab{word-spacing:-15.736000pt;}
.ws46{word-spacing:-15.155467pt;}
.wsb{word-spacing:-15.149333pt;}
.ws78{word-spacing:-14.986667pt;}
.wsf{word-spacing:-14.842667pt;}
.ws53{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.474667pt;}
.ws50{word-spacing:-14.413333pt;}
.ws52{word-spacing:-14.290667pt;}
.ws45{word-spacing:-14.229333pt;}
.ws4{word-spacing:-14.224000pt;}
.ws2f{word-spacing:-14.168000pt;}
.ws5d{word-spacing:-14.106667pt;}
.wsa5{word-spacing:-14.045333pt;}
.ws51{word-spacing:-13.984000pt;}
.ws21{word-spacing:-13.922667pt;}
.ws14{word-spacing:-13.861333pt;}
.wsa6{word-spacing:-13.832000pt;}
.ws23{word-spacing:-13.800000pt;}
.ws2d{word-spacing:-13.738667pt;}
.wsa{word-spacing:-13.680000pt;}
.ws20{word-spacing:-13.616000pt;}
.ws43{word-spacing:-13.554667pt;}
.ws33{word-spacing:-13.432000pt;}
.ws16{word-spacing:-13.370667pt;}
.ws32{word-spacing:-13.309333pt;}
.ws8e{word-spacing:-13.280000pt;}
.ws30{word-spacing:-13.248000pt;}
.ws44{word-spacing:-13.186667pt;}
.ws7a{word-spacing:-13.173333pt;}
.ws15{word-spacing:-13.125333pt;}
.ws8f{word-spacing:-13.066667pt;}
.ws68{word-spacing:-13.013333pt;}
.ws69{word-spacing:-12.960000pt;}
.wsb0{word-spacing:-12.906667pt;}
.ws13{word-spacing:-12.880000pt;}
.ws95{word-spacing:-12.853333pt;}
.ws31{word-spacing:-12.818667pt;}
.ws96{word-spacing:-12.800000pt;}
.ws9b{word-spacing:-12.746667pt;}
.ws24{word-spacing:-12.696000pt;}
.ws90{word-spacing:-12.693333pt;}
.ws3a{word-spacing:-12.573333pt;}
.ws6d{word-spacing:-12.480000pt;}
.ws75{word-spacing:-12.426667pt;}
.ws2e{word-spacing:-12.389333pt;}
.ws79{word-spacing:-12.373333pt;}
.ws67{word-spacing:-12.320000pt;}
.ws6b{word-spacing:-12.106667pt;}
.ws62{word-spacing:-12.000000pt;}
.wsac{word-spacing:-11.984000pt;}
.ws93{word-spacing:-11.946667pt;}
.ws65{word-spacing:-11.904000pt;}
.ws99{word-spacing:-11.840000pt;}
.ws7b{word-spacing:-11.733333pt;}
.wsad{word-spacing:-9.174088pt;}
.ws56{word-spacing:-8.341333pt;}
.ws7{word-spacing:-7.466667pt;}
.wsa9{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws17{word-spacing:-4.784000pt;}
.ws59{word-spacing:-3.986667pt;}
.ws9{word-spacing:-3.733333pt;}
.ws1a{word-spacing:-3.250667pt;}
.wse{word-spacing:-2.133333pt;}
.ws3e{word-spacing:-1.840000pt;}
.ws35{word-spacing:-1.533333pt;}
.ws88{word-spacing:-1.120000pt;}
.ws5a{word-spacing:-1.104000pt;}
.ws4b{word-spacing:-0.797333pt;}
.ws38{word-spacing:-0.429333pt;}
.wsa3{word-spacing:-0.184000pt;}
.ws4a{word-spacing:-0.122667pt;}
.ws18{word-spacing:-0.061333pt;}
.ws6{word-spacing:0.000000pt;}
.ws49{word-spacing:0.122667pt;}
.ws8{word-spacing:0.160000pt;}
.wsa4{word-spacing:0.184000pt;}
.ws3c{word-spacing:0.245333pt;}
.ws89{word-spacing:0.266667pt;}
.ws5f{word-spacing:0.306667pt;}
.ws10{word-spacing:0.368000pt;}
.wsa2{word-spacing:0.373333pt;}
.ws85{word-spacing:0.432000pt;}
.ws8a{word-spacing:0.586667pt;}
.ws37{word-spacing:0.613333pt;}
.ws3d{word-spacing:0.674667pt;}
.ws54{word-spacing:0.736000pt;}
.ws11{word-spacing:0.760000pt;}
.ws3b{word-spacing:0.858667pt;}
.ws87{word-spacing:0.864000pt;}
.ws2b{word-spacing:1.042667pt;}
.ws5b{word-spacing:1.104000pt;}
.ws1c{word-spacing:1.165333pt;}
.ws8b{word-spacing:1.173333pt;}
.ws86{word-spacing:1.200000pt;}
.ws40{word-spacing:1.288000pt;}
.wsa8{word-spacing:1.410667pt;}
.ws1f{word-spacing:1.533333pt;}
.ws5e{word-spacing:1.594667pt;}
.ws34{word-spacing:1.778667pt;}
.ws57{word-spacing:1.962667pt;}
.ws1e{word-spacing:2.024000pt;}
.wsa7{word-spacing:2.085333pt;}
.ws29{word-spacing:2.392000pt;}
.ws26{word-spacing:2.514667pt;}
.ws4f{word-spacing:2.637333pt;}
.ws4c{word-spacing:2.698667pt;}
.ws1d{word-spacing:2.882667pt;}
.ws4e{word-spacing:3.005333pt;}
.ws19{word-spacing:3.128000pt;}
.wsa1{word-spacing:3.146667pt;}
.ws1b{word-spacing:3.250667pt;}
.ws4d{word-spacing:3.802667pt;}
.ws58{word-spacing:3.986667pt;}
.ws3f{word-spacing:4.293333pt;}
.ws2a{word-spacing:5.029333pt;}
.ws39{word-spacing:5.090667pt;}
.ws27{word-spacing:5.704000pt;}
.ws47{word-spacing:5.765333pt;}
.ws48{word-spacing:6.317333pt;}
.ws41{word-spacing:6.992000pt;}
.ws36{word-spacing:8.034667pt;}
.ws28{word-spacing:8.157333pt;}
.ws55{word-spacing:8.341333pt;}
.ws25{word-spacing:9.568000pt;}
.ws60{word-spacing:101.918400pt;}
.ws97{word-spacing:103.984000pt;}
.ws9d{word-spacing:104.890667pt;}
.ws9f{word-spacing:112.544000pt;}
.ws73{word-spacing:112.986667pt;}
.ws6c{word-spacing:120.757333pt;}
.ws64{word-spacing:121.080000pt;}
.ws66{word-spacing:132.309333pt;}
.ws7d{word-spacing:132.421333pt;}
.ws71{word-spacing:134.586667pt;}
.ws6a{word-spacing:135.898667pt;}
.ws8d{word-spacing:136.357333pt;}
.ws61{word-spacing:138.720000pt;}
.ws83{word-spacing:140.288000pt;}
.ws70{word-spacing:143.696000pt;}
.ws92{word-spacing:146.005333pt;}
.ws82{word-spacing:148.426667pt;}
.ws72{word-spacing:151.077333pt;}
.ws84{word-spacing:152.250667pt;}
.ws74{word-spacing:153.712000pt;}
.ws91{word-spacing:155.994667pt;}
.ws6e{word-spacing:160.400000pt;}
.ws76{word-spacing:162.453333pt;}
.ws80{word-spacing:165.370667pt;}
.ws77{word-spacing:165.621333pt;}
.ws9c{word-spacing:167.445333pt;}
.ws98{word-spacing:169.072000pt;}
.ws7f{word-spacing:172.277333pt;}
.ws81{word-spacing:172.981333pt;}
.ws7e{word-spacing:177.066667pt;}
.ws63{word-spacing:179.697600pt;}
.ws9a{word-spacing:183.232000pt;}
.ws7c{word-spacing:189.242667pt;}
.ws94{word-spacing:193.461333pt;}
.ws9e{word-spacing:195.306667pt;}
.ws6f{word-spacing:215.514667pt;}
._d{margin-left:-15.650667pt;}
._a{margin-left:-8.315733pt;}
._9{margin-left:-6.307200pt;}
._4{margin-left:-5.162667pt;}
._6{margin-left:-3.717333pt;}
._5{margin-left:-2.218667pt;}
._7{margin-left:-1.210667pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._8{width:3.242667pt;}
._c{width:4.368000pt;}
._2{width:5.616000pt;}
._b{width:6.554667pt;}
._11{width:7.621333pt;}
._10{width:8.672000pt;}
._16{width:9.868267pt;}
._17{width:11.405067pt;}
._f{width:12.992000pt;}
._15{width:14.054667pt;}
._14{width:15.068267pt;}
._1e{width:16.087733pt;}
._46{width:17.369067pt;}
._4a{width:18.418933pt;}
._e{width:20.133333pt;}
._1a{width:21.355200pt;}
._4b{width:22.913067pt;}
._2e{width:34.261333pt;}
._48{width:40.538400pt;}
._49{width:41.669333pt;}
._23{width:44.021333pt;}
._47{width:46.941333pt;}
._2a{width:56.394667pt;}
._21{width:57.674667pt;}
._4d{width:60.372000pt;}
._39{width:63.488000pt;}
._4c{width:65.163200pt;}
._28{width:67.594667pt;}
._37{width:70.528000pt;}
._2c{width:71.701333pt;}
._3b{width:75.328000pt;}
._30{width:76.874667pt;}
._3d{width:77.994667pt;}
._25{width:82.261333pt;}
._32{width:84.234667pt;}
._34{width:88.234667pt;}
._31{width:89.354667pt;}
._42{width:91.648000pt;}
._36{width:95.434667pt;}
._44{width:99.056000pt;}
._43{width:105.088000pt;}
._3f{width:107.648000pt;}
._35{width:111.701333pt;}
._41{width:123.802667pt;}
._26{width:138.229333pt;}
._2d{width:148.341333pt;}
._22{width:149.248000pt;}
._3a{width:158.581333pt;}
._29{width:161.962667pt;}
._38{width:163.434667pt;}
._45{width:164.858667pt;}
._2b{width:167.861333pt;}
._33{width:172.266667pt;}
._2f{width:173.333333pt;}
._20{width:174.613333pt;}
._3e{width:176.000000pt;}
._24{width:177.493333pt;}
._3c{width:180.693333pt;}
._27{width:183.093333pt;}
._40{width:196.821333pt;}
._1f{width:432.360000pt;}
._0{width:435.786667pt;}
._1d{width:436.873067pt;}
._18{width:439.241067pt;}
._12{width:514.133333pt;}
._19{width:883.555733pt;}
._1b{width:885.889067pt;}
._1c{width:889.489067pt;}
._13{width:891.249067pt;}
.fsb{font-size:32.648000pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd8{bottom:94.338000pt;}
.y6b{bottom:94.369200pt;}
.yb4{bottom:94.461200pt;}
.y13a{bottom:94.496133pt;}
.y15f{bottom:94.507867pt;}
.y8e{bottom:94.518800pt;}
.y181{bottom:94.635867pt;}
.y43{bottom:94.758800pt;}
.y112{bottom:96.046533pt;}
.y111{bottom:104.046533pt;}
.yd7{bottom:112.446667pt;}
.y6a{bottom:112.523867pt;}
.y15e{bottom:112.595867pt;}
.y139{bottom:112.604800pt;}
.y42{bottom:112.836800pt;}
.y1a2{bottom:112.934533pt;}
.y8d{bottom:113.041467pt;}
.yb3{bottom:113.091200pt;}
.y180{bottom:113.143867pt;}
.y110{bottom:127.339867pt;}
.yd6{bottom:130.555333pt;}
.y69{bottom:130.678533pt;}
.y138{bottom:130.713467pt;}
.y41{bottom:130.914800pt;}
.y8c{bottom:131.564133pt;}
.yb2{bottom:131.721200pt;}
.y10f{bottom:135.339867pt;}
.y15d{bottom:136.353867pt;}
.y1a1{bottom:136.944533pt;}
.y17f{bottom:137.321867pt;}
.yd5{bottom:148.664000pt;}
.y137{bottom:148.822133pt;}
.y68{bottom:148.833200pt;}
.y40{bottom:148.992800pt;}
.y8b{bottom:150.086800pt;}
.yb1{bottom:150.351200pt;}
.y15c{bottom:154.441867pt;}
.y1a0{bottom:155.284533pt;}
.y17e{bottom:155.829867pt;}
.y10e{bottom:158.633200pt;}
.y10d{bottom:166.633200pt;}
.yd4{bottom:166.772667pt;}
.y67{bottom:166.987867pt;}
.y3f{bottom:167.070800pt;}
.y8a{bottom:168.609467pt;}
.yb0{bottom:168.981200pt;}
.y15b{bottom:178.199867pt;}
.y19f{bottom:179.294533pt;}
.y17d{bottom:180.007867pt;}
.y108{bottom:182.286533pt;}
.y1b{bottom:183.665867pt;}
.yd3{bottom:184.881333pt;}
.y66{bottom:185.142533pt;}
.y3e{bottom:185.148800pt;}
.y136{bottom:185.831200pt;}
.y89{bottom:187.132133pt;}
.yaf{bottom:187.611200pt;}
.y10c{bottom:189.926533pt;}
.y19e{bottom:197.634533pt;}
.y10b{bottom:197.926533pt;}
.y17c{bottom:198.515867pt;}
.y1a{bottom:202.341200pt;}
.yd2{bottom:202.990000pt;}
.y3d{bottom:203.226800pt;}
.y65{bottom:203.297200pt;}
.y88{bottom:205.654800pt;}
.yae{bottom:206.241200pt;}
.y19{bottom:219.674533pt;}
.yd1{bottom:221.098667pt;}
.y10a{bottom:221.219867pt;}
.y3c{bottom:221.304800pt;}
.y64{bottom:221.451867pt;}
.y19d{bottom:221.644533pt;}
.y17b{bottom:222.693867pt;}
.y15a{bottom:223.414533pt;}
.y87{bottom:224.177467pt;}
.yad{bottom:224.871200pt;}
.y109{bottom:229.219867pt;}
.y18{bottom:237.007867pt;}
.yd0{bottom:239.207333pt;}
.y3b{bottom:239.382800pt;}
.y63{bottom:239.606533pt;}
.y19c{bottom:239.984533pt;}
.y17a{bottom:241.201867pt;}
.y135{bottom:241.328667pt;}
.y159{bottom:241.507867pt;}
.y86{bottom:242.700133pt;}
.yac{bottom:243.501200pt;}
.yfd{bottom:244.873200pt;}
.y1be{bottom:246.608667pt;}
.y107{bottom:252.513200pt;}
.y17{bottom:254.341200pt;}
.ycf{bottom:257.316000pt;}
.y3a{bottom:257.460800pt;}
.y62{bottom:257.761200pt;}
.y19b{bottom:258.324533pt;}
.y134{bottom:259.437333pt;}
.y158{bottom:259.601200pt;}
.y106{bottom:260.513200pt;}
.y85{bottom:261.222800pt;}
.yab{bottom:262.131200pt;}
.y1bd{bottom:264.608667pt;}
.y179{bottom:265.379867pt;}
.y16{bottom:271.674533pt;}
.yce{bottom:275.424667pt;}
.y39{bottom:275.538800pt;}
.y61{bottom:275.915867pt;}
.y133{bottom:277.546000pt;}
.y157{bottom:277.694533pt;}
.y84{bottom:279.745467pt;}
.yaa{bottom:280.761200pt;}
.y19a{bottom:282.334533pt;}
.y1bc{bottom:282.608667pt;}
.y105{bottom:283.806533pt;}
.y178{bottom:283.887867pt;}
.y15{bottom:289.007867pt;}
.y104{bottom:291.806533pt;}
.ycd{bottom:293.533333pt;}
.y38{bottom:293.616800pt;}
.y60{bottom:294.070533pt;}
.y132{bottom:295.654667pt;}
.y156{bottom:295.787867pt;}
.y83{bottom:298.268133pt;}
.ya9{bottom:299.391200pt;}
.y1bb{bottom:300.608667pt;}
.y199{bottom:300.674533pt;}
.y177{bottom:302.395867pt;}
.y14{bottom:306.341200pt;}
.ycc{bottom:311.642000pt;}
.y37{bottom:311.694800pt;}
.y5f{bottom:312.225200pt;}
.y131{bottom:313.763333pt;}
.y155{bottom:313.881200pt;}
.y103{bottom:315.099867pt;}
.y82{bottom:316.790800pt;}
.ya8{bottom:318.021200pt;}
.y198{bottom:319.014533pt;}
.y176{bottom:320.903867pt;}
.yfe{bottom:323.099867pt;}
.ycb{bottom:329.750667pt;}
.y36{bottom:329.772800pt;}
.y1ba{bottom:329.942000pt;}
.y5e{bottom:330.379867pt;}
.y130{bottom:331.872000pt;}
.y154{bottom:331.974533pt;}
.y13{bottom:335.007867pt;}
.y81{bottom:335.313467pt;}
.ya7{bottom:336.651200pt;}
.y197{bottom:343.024533pt;}
.y175{bottom:345.081867pt;}
.y102{bottom:346.393200pt;}
.y35{bottom:347.850800pt;}
.yca{bottom:347.859333pt;}
.y5d{bottom:348.534533pt;}
.y12f{bottom:349.980667pt;}
.y153{bottom:350.067867pt;}
.y80{bottom:353.836133pt;}
.y101{bottom:354.393200pt;}
.ya6{bottom:355.281200pt;}
.y196{bottom:361.364533pt;}
.y174{bottom:363.589867pt;}
.y34{bottom:365.928800pt;}
.yc9{bottom:365.968000pt;}
.y5c{bottom:366.689200pt;}
.y1b9{bottom:366.835333pt;}
.y12e{bottom:368.089333pt;}
.y152{bottom:368.161200pt;}
.y7f{bottom:372.358800pt;}
.ya5{bottom:373.911200pt;}
.y100{bottom:377.686533pt;}
.y12{bottom:378.794533pt;}
.y195{bottom:379.704533pt;}
.y33{bottom:384.006800pt;}
.yc8{bottom:384.076667pt;}
.y1b8{bottom:384.168667pt;}
.y5b{bottom:384.843867pt;}
.yff{bottom:385.686533pt;}
.y12d{bottom:386.198000pt;}
.y151{bottom:386.254533pt;}
.y173{bottom:387.767867pt;}
.y7e{bottom:390.881467pt;}
.ya4{bottom:392.541200pt;}
.y11{bottom:397.466400pt;}
.y1b7{bottom:401.502000pt;}
.y32{bottom:402.084800pt;}
.yc7{bottom:402.185333pt;}
.y5a{bottom:402.998533pt;}
.y194{bottom:403.714533pt;}
.y12c{bottom:404.306667pt;}
.y150{bottom:404.347867pt;}
.y172{bottom:406.275867pt;}
.yfc{bottom:408.979867pt;}
.y7d{bottom:409.404133pt;}
.ya3{bottom:411.171200pt;}
.y10{bottom:414.799733pt;}
.yfb{bottom:416.979867pt;}
.y1b6{bottom:418.835333pt;}
.y31{bottom:420.162800pt;}
.yc6{bottom:420.294000pt;}
.y59{bottom:421.153200pt;}
.y12b{bottom:422.415333pt;}
.y14f{bottom:422.441200pt;}
.yf8{bottom:424.633200pt;}
.y193{bottom:427.724533pt;}
.y7c{bottom:427.926800pt;}
.ya2{bottom:429.801200pt;}
.y171{bottom:430.453867pt;}
.yf{bottom:432.133067pt;}
.y1b5{bottom:436.168667pt;}
.y30{bottom:438.240800pt;}
.yc5{bottom:438.402667pt;}
.y58{bottom:439.307867pt;}
.yfa{bottom:440.273200pt;}
.y12a{bottom:440.524000pt;}
.y14e{bottom:440.534533pt;}
.yf7{bottom:440.633200pt;}
.y192{bottom:446.064533pt;}
.y7b{bottom:446.449467pt;}
.yf9{bottom:448.273200pt;}
.ya1{bottom:448.431200pt;}
.y170{bottom:448.961867pt;}
.ye{bottom:449.466400pt;}
.y1b4{bottom:453.502000pt;}
.y2f{bottom:456.318800pt;}
.yc4{bottom:456.511333pt;}
.y57{bottom:457.462533pt;}
.y14d{bottom:458.627867pt;}
.y129{bottom:458.632667pt;}
.y7a{bottom:464.972133pt;}
.yd{bottom:466.799733pt;}
.ya0{bottom:467.061200pt;}
.y191{bottom:470.074533pt;}
.y1b3{bottom:470.835333pt;}
.yf6{bottom:471.566533pt;}
.y16f{bottom:473.139867pt;}
.y2e{bottom:474.396800pt;}
.yc3{bottom:474.620000pt;}
.y56{bottom:475.617200pt;}
.y14c{bottom:476.721200pt;}
.y128{bottom:476.741333pt;}
.yf5{bottom:479.566533pt;}
.y79{bottom:483.494800pt;}
.yc{bottom:484.133067pt;}
.y9f{bottom:485.691200pt;}
.y1b2{bottom:488.168667pt;}
.y190{bottom:488.497867pt;}
.y16e{bottom:491.647867pt;}
.y2d{bottom:492.474800pt;}
.yc2{bottom:492.728667pt;}
.y55{bottom:493.771867pt;}
.y14b{bottom:494.814533pt;}
.y127{bottom:494.850000pt;}
.y78{bottom:502.017467pt;}
.yf4{bottom:502.859867pt;}
.y9e{bottom:504.321200pt;}
.y1b1{bottom:505.502000pt;}
.y2c{bottom:510.552800pt;}
.yf3{bottom:510.859867pt;}
.y54{bottom:511.926533pt;}
.y18f{bottom:512.507867pt;}
.yb{bottom:512.799733pt;}
.y14a{bottom:512.907867pt;}
.y16d{bottom:515.825867pt;}
.y77{bottom:520.540133pt;}
.y1b0{bottom:522.835333pt;}
.y9d{bottom:522.951200pt;}
.y2b{bottom:528.630800pt;}
.yc1{bottom:529.728133pt;}
.y53{bottom:530.081200pt;}
.y18e{bottom:530.847867pt;}
.y149{bottom:531.001200pt;}
.yf2{bottom:534.153200pt;}
.y126{bottom:534.154133pt;}
.y16c{bottom:534.333867pt;}
.y76{bottom:539.062800pt;}
.y1af{bottom:540.168667pt;}
.y9c{bottom:541.581200pt;}
.yf1{bottom:542.153200pt;}
.y125{bottom:542.154133pt;}
.y2a{bottom:546.708800pt;}
.y52{bottom:548.235867pt;}
.y148{bottom:549.094533pt;}
.y18d{bottom:554.857867pt;}
.y1ae{bottom:557.502000pt;}
.y75{bottom:557.585467pt;}
.ye4{bottom:557.806533pt;}
.y16b{bottom:558.511867pt;}
.y9b{bottom:560.211200pt;}
.ya{bottom:564.143467pt;}
.y29{bottom:564.786800pt;}
.yf0{bottom:565.446533pt;}
.y124{bottom:565.447467pt;}
.y51{bottom:566.390533pt;}
.y147{bottom:567.187867pt;}
.y18c{bottom:573.197867pt;}
.yef{bottom:573.446533pt;}
.y123{bottom:573.447467pt;}
.y1ad{bottom:574.835333pt;}
.y74{bottom:576.108133pt;}
.y16a{bottom:577.019867pt;}
.y9a{bottom:578.841200pt;}
.y121{bottom:581.100800pt;}
.y28{bottom:582.864800pt;}
.y50{bottom:584.545200pt;}
.yc0{bottom:585.097200pt;}
.y146{bottom:585.281200pt;}
.y9{bottom:588.148800pt;}
.ye5{bottom:589.099867pt;}
.y18b{bottom:591.537867pt;}
.y1ac{bottom:592.168667pt;}
.y73{bottom:594.630800pt;}
.y169{bottom:595.527867pt;}
.yee{bottom:596.739867pt;}
.y122{bottom:596.740800pt;}
.y120{bottom:597.100800pt;}
.y99{bottom:597.471200pt;}
.y27{bottom:600.942800pt;}
.y4f{bottom:602.699867pt;}
.ybf{bottom:603.205867pt;}
.y145{bottom:603.374533pt;}
.yed{bottom:604.739867pt;}
.y11d{bottom:604.740800pt;}
.y1ab{bottom:609.502000pt;}
.y18a{bottom:615.547867pt;}
.y98{bottom:616.101200pt;}
.y26{bottom:619.020800pt;}
.y168{bottom:619.705867pt;}
.y4e{bottom:620.854533pt;}
.ybe{bottom:621.314533pt;}
.y144{bottom:621.467867pt;}
.y1aa{bottom:626.835333pt;}
.yec{bottom:628.033200pt;}
.y11f{bottom:628.034133pt;}
.y8{bottom:631.038533pt;}
.y72{bottom:632.057333pt;}
.y189{bottom:633.887867pt;}
.y97{bottom:634.731200pt;}
.yeb{bottom:636.033200pt;}
.y11e{bottom:636.034133pt;}
.y25{bottom:637.098800pt;}
.y167{bottom:638.213867pt;}
.y4d{bottom:639.009200pt;}
.ybd{bottom:639.423200pt;}
.y143{bottom:639.561200pt;}
.y1a9{bottom:644.168667pt;}
.y96{bottom:653.361200pt;}
.y71{bottom:653.909333pt;}
.y24{bottom:655.176800pt;}
.y4c{bottom:657.163867pt;}
.ybc{bottom:657.531867pt;}
.y142{bottom:657.654533pt;}
.y188{bottom:657.897867pt;}
.y7{bottom:659.046533pt;}
.ye9{bottom:659.326533pt;}
.y11c{bottom:659.327467pt;}
.y1a8{bottom:661.502000pt;}
.y166{bottom:662.391867pt;}
.ye8{bottom:667.326533pt;}
.y11b{bottom:667.327467pt;}
.y95{bottom:671.991200pt;}
.y23{bottom:673.254800pt;}
.y4b{bottom:675.318533pt;}
.yea{bottom:675.326533pt;}
.ybb{bottom:675.640533pt;}
.y141{bottom:675.747867pt;}
.y187{bottom:676.237867pt;}
.y1a7{bottom:678.835333pt;}
.y165{bottom:680.899867pt;}
.ye7{bottom:690.619867pt;}
.y11a{bottom:690.620800pt;}
.y94{bottom:690.621200pt;}
.y22{bottom:691.332800pt;}
.y4a{bottom:693.473200pt;}
.yba{bottom:693.749200pt;}
.y140{bottom:693.841200pt;}
.y1a6{bottom:696.168667pt;}
.ye6{bottom:698.619867pt;}
.y119{bottom:698.620800pt;}
.y164{bottom:699.407867pt;}
.y186{bottom:700.247867pt;}
.y114{bottom:706.274133pt;}
.y93{bottom:709.251200pt;}
.y21{bottom:709.410800pt;}
.y70{bottom:709.787867pt;}
.y49{bottom:711.627867pt;}
.yb9{bottom:711.857867pt;}
.y13f{bottom:711.934533pt;}
.y6{bottom:713.501200pt;}
.y113{bottom:714.274133pt;}
.y185{bottom:718.587867pt;}
.ye3{bottom:721.913200pt;}
.y118{bottom:721.914133pt;}
.y163{bottom:723.585867pt;}
.y1a5{bottom:724.835333pt;}
.y20{bottom:727.488800pt;}
.y92{bottom:727.881200pt;}
.y6f{bottom:728.310533pt;}
.y48{bottom:729.782533pt;}
.ye2{bottom:729.913200pt;}
.y117{bottom:729.914133pt;}
.yb8{bottom:729.966533pt;}
.y13e{bottom:730.027867pt;}
.ydf{bottom:737.566533pt;}
.y5{bottom:739.727867pt;}
.y162{bottom:742.093867pt;}
.y184{bottom:742.597867pt;}
.yde{bottom:745.566533pt;}
.y1f{bottom:745.566800pt;}
.y91{bottom:746.511200pt;}
.y6e{bottom:746.833200pt;}
.y47{bottom:747.937200pt;}
.yb7{bottom:748.075200pt;}
.y13d{bottom:748.121200pt;}
.ye1{bottom:753.206533pt;}
.y116{bottom:753.207467pt;}
.y183{bottom:760.937867pt;}
.ye0{bottom:761.206533pt;}
.y115{bottom:761.207467pt;}
.y1e{bottom:763.644800pt;}
.y90{bottom:765.141200pt;}
.y6d{bottom:765.355867pt;}
.y4{bottom:765.954533pt;}
.y46{bottom:766.091867pt;}
.yb6{bottom:766.183867pt;}
.y13c{bottom:766.214533pt;}
.y161{bottom:766.271867pt;}
.y1a4{bottom:776.179067pt;}
.y8f{bottom:783.771200pt;}
.y6c{bottom:783.878533pt;}
.y45{bottom:784.246533pt;}
.yb5{bottom:784.292533pt;}
.y13b{bottom:784.307867pt;}
.yda{bottom:784.509067pt;}
.ydb{bottom:784.521067pt;}
.ydd{bottom:784.533067pt;}
.y3{bottom:784.621200pt;}
.y160{bottom:784.779867pt;}
.y182{bottom:784.947867pt;}
.y1a3{bottom:800.184400pt;}
.yd9{bottom:800.505067pt;}
.ydc{bottom:800.517067pt;}
.y1d{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1c{bottom:842.834667pt;}
.h9{height:39.520833pt;}
.ha{height:40.054688pt;}
.hc{height:41.460938pt;}
.hf{height:46.119792pt;}
.h4{height:49.401042pt;}
.h3{height:51.871094pt;}
.h8{height:56.811198pt;}
.h2{height:61.751302pt;}
.h7{height:66.691406pt;}
.h6{height:69.161458pt;}
.hd{height:81.401042pt;}
.h5{height:88.921875pt;}
.hb{height:105.492938pt;}
.he{height:113.401042pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:72.359467pt;}
.xb{left:73.661733pt;}
.x1{left:74.979333pt;}
.x5{left:75.987200pt;}
.x10{left:83.323467pt;}
.xf{left:85.159467pt;}
.xa{left:92.199733pt;}
.x6{left:93.356400pt;}
.x4{left:94.547200pt;}
.x18{left:95.552000pt;}
.x24{left:97.552000pt;}
.xe{left:107.641467pt;}
.xd{left:109.052133pt;}
.xc{left:109.941467pt;}
.x2a{left:143.949600pt;}
.x19{left:146.272000pt;}
.x2b{left:150.776267pt;}
.x21{left:153.392000pt;}
.x26{left:155.098667pt;}
.x25{left:158.618667pt;}
.x2c{left:169.496267pt;}
.x22{left:171.898667pt;}
.x15{left:173.792000pt;}
.x27{left:175.869600pt;}
.x8{left:189.034667pt;}
.x9{left:205.718133pt;}
.x2{left:206.756800pt;}
.x3{left:207.776400pt;}
.x1b{left:246.285333pt;}
.x17{left:248.832000pt;}
.x20{left:251.765333pt;}
.x1f{left:252.752000pt;}
.x11{left:253.735467pt;}
.x23{left:254.832000pt;}
.x1a{left:256.152000pt;}
.x1e{left:257.112000pt;}
.x29{left:258.309600pt;}
.x16{left:304.272000pt;}
.x28{left:306.322933pt;}
.x13{left:325.327467pt;}
.x12{left:329.239467pt;}
.x1c{left:425.445333pt;}
.x1d{left:435.005333pt;}
.x14{left:515.707467pt;}
}




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