
    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_205aa58000ad999a2def5360.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c09d8d364d1bfbdb908f1d6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_43e6a70ec69c18a36827fdb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_5eb09f48966ce7092a44b90a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0903c39fcfa75cac446dd03c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926778;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_70fb892f8dca91851debf288.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_0723e1a9892086eee962c8dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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;}
.m4{transform:matrix(0.000000,-0.248421,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248421,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248421,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.978000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v4{vertical-align:36.000000px;}
.lsa{letter-spacing:-4.440000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004920px;}
.ls2{letter-spacing:0.005520px;}
.ls0{letter-spacing:0.006144px;}
.ls1{letter-spacing:0.006744px;}
.ls6{letter-spacing:0.010200px;}
.ls5{letter-spacing:0.021000px;}
.ls9{letter-spacing:0.817253px;}
.ls7{letter-spacing:1.257312px;}
.ls8{letter-spacing:1.265304px;}
.lsb{letter-spacing:1.716000px;}
.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;}
}
.wse1{word-spacing:-20.064000px;}
.ws0{word-spacing:-18.348000px;}
.wsa7{word-spacing:-16.680000px;}
.ws95{word-spacing:-15.563239px;}
.ws94{word-spacing:-15.464938px;}
.ws93{word-spacing:-15.024878px;}
.ws96{word-spacing:-13.344000px;}
.ws78{word-spacing:-10.696884px;}
.wse5{word-spacing:-5.082000px;}
.ws45{word-spacing:-5.016000px;}
.wsac{word-spacing:-4.686000px;}
.wsd4{word-spacing:-4.620000px;}
.ws36{word-spacing:-4.488000px;}
.ws85{word-spacing:-4.026000px;}
.wsda{word-spacing:-3.960000px;}
.ws81{word-spacing:-3.894000px;}
.wsd9{word-spacing:-3.630000px;}
.ws32{word-spacing:-3.432000px;}
.ws2a{word-spacing:-3.366000px;}
.ws5{word-spacing:-3.036000px;}
.wsf{word-spacing:-2.970000px;}
.ws23{word-spacing:-2.904000px;}
.wsba{word-spacing:-2.838000px;}
.ws3{word-spacing:-2.772000px;}
.ws6e{word-spacing:-2.640000px;}
.ws86{word-spacing:-2.574000px;}
.ws5b{word-spacing:-2.376000px;}
.ws7b{word-spacing:-2.178000px;}
.ws3c{word-spacing:-2.112000px;}
.wsc8{word-spacing:-1.980000px;}
.ws7{word-spacing:-1.914000px;}
.ws4c{word-spacing:-1.848000px;}
.ws65{word-spacing:-1.782000px;}
.ws75{word-spacing:-1.716000px;}
.wse8{word-spacing:-1.650000px;}
.wsab{word-spacing:-1.584000px;}
.ws7a{word-spacing:-1.518000px;}
.ws47{word-spacing:-1.452000px;}
.ws6a{word-spacing:-1.386000px;}
.ws61{word-spacing:-1.320000px;}
.ws1c{word-spacing:-1.188000px;}
.ws2c{word-spacing:-1.122000px;}
.ws54{word-spacing:-1.056000px;}
.ws56{word-spacing:-0.990000px;}
.wsce{word-spacing:-0.924000px;}
.wsc0{word-spacing:-0.726000px;}
.ws7f{word-spacing:-0.660000px;}
.wsbc{word-spacing:-0.594000px;}
.wscb{word-spacing:-0.462000px;}
.wsa0{word-spacing:-0.396000px;}
.ws24{word-spacing:-0.330000px;}
.ws44{word-spacing:-0.264000px;}
.ws1{word-spacing:0.000000px;}
.ws2b{word-spacing:0.132000px;}
.wsaa{word-spacing:0.198000px;}
.ws69{word-spacing:0.264000px;}
.wsbe{word-spacing:0.330000px;}
.wsb9{word-spacing:0.594000px;}
.wsc{word-spacing:0.660000px;}
.ws28{word-spacing:0.726000px;}
.ws71{word-spacing:0.792000px;}
.wsc2{word-spacing:0.858000px;}
.ws5d{word-spacing:0.924000px;}
.wsae{word-spacing:0.990000px;}
.ws4{word-spacing:1.122000px;}
.ws26{word-spacing:1.254000px;}
.ws8b{word-spacing:1.386000px;}
.ws2{word-spacing:1.452000px;}
.wsc7{word-spacing:1.518000px;}
.ws1f{word-spacing:1.584000px;}
.ws33{word-spacing:1.782000px;}
.ws5c{word-spacing:1.848000px;}
.wse7{word-spacing:1.980000px;}
.ws6f{word-spacing:2.046000px;}
.wsd{word-spacing:2.112000px;}
.ws5a{word-spacing:2.178000px;}
.ws80{word-spacing:2.310000px;}
.ws77{word-spacing:2.442000px;}
.ws4d{word-spacing:2.508000px;}
.wsb0{word-spacing:2.574000px;}
.ws60{word-spacing:2.640000px;}
.ws31{word-spacing:2.706000px;}
.wsa{word-spacing:2.838000px;}
.ws84{word-spacing:2.904000px;}
.ws2f{word-spacing:2.970000px;}
.wsbd{word-spacing:3.036000px;}
.ws8f{word-spacing:3.234000px;}
.ws13{word-spacing:3.300000px;}
.ws3e{word-spacing:3.366000px;}
.ws87{word-spacing:3.432000px;}
.ws20{word-spacing:3.498000px;}
.wsad{word-spacing:3.564000px;}
.ws57{word-spacing:3.630000px;}
.wsb1{word-spacing:3.828000px;}
.ws16{word-spacing:3.894000px;}
.ws15{word-spacing:3.960000px;}
.wscf{word-spacing:4.026000px;}
.wsd1{word-spacing:4.092000px;}
.ws72{word-spacing:4.224000px;}
.ws1e{word-spacing:4.422000px;}
.ws14{word-spacing:4.554000px;}
.ws8d{word-spacing:4.620000px;}
.ws9{word-spacing:4.752000px;}
.wsbb{word-spacing:4.818000px;}
.wsb7{word-spacing:4.884000px;}
.ws6{word-spacing:4.950000px;}
.ws53{word-spacing:5.016000px;}
.wsa1{word-spacing:5.082000px;}
.ws3d{word-spacing:5.148000px;}
.ws76{word-spacing:5.214000px;}
.ws83{word-spacing:5.346000px;}
.ws37{word-spacing:5.412000px;}
.wse{word-spacing:5.478000px;}
.ws70{word-spacing:5.676000px;}
.ws29{word-spacing:5.742000px;}
.ws55{word-spacing:5.808000px;}
.ws41{word-spacing:5.874000px;}
.wsdd{word-spacing:5.940000px;}
.ws21{word-spacing:6.006000px;}
.ws89{word-spacing:6.072000px;}
.ws25{word-spacing:6.138000px;}
.wsdf{word-spacing:6.270000px;}
.ws1b{word-spacing:6.402000px;}
.ws42{word-spacing:6.534000px;}
.ws8e{word-spacing:6.600000px;}
.wsaf{word-spacing:6.732000px;}
.wscc{word-spacing:6.798000px;}
.ws64{word-spacing:6.930000px;}
.wsb{word-spacing:6.996000px;}
.ws8a{word-spacing:7.062000px;}
.wse6{word-spacing:7.194000px;}
.wse3{word-spacing:7.392000px;}
.ws11{word-spacing:7.524000px;}
.ws3b{word-spacing:7.590000px;}
.ws30{word-spacing:7.656000px;}
.ws82{word-spacing:7.722000px;}
.ws91{word-spacing:7.788000px;}
.wse0{word-spacing:7.854000px;}
.ws68{word-spacing:8.118000px;}
.ws92{word-spacing:8.184000px;}
.ws2d{word-spacing:8.250000px;}
.ws50{word-spacing:8.382000px;}
.ws79{word-spacing:8.448000px;}
.ws6d{word-spacing:8.514000px;}
.ws2e{word-spacing:8.580000px;}
.ws58{word-spacing:8.646000px;}
.ws67{word-spacing:8.712000px;}
.ws7e{word-spacing:8.844000px;}
.wscd{word-spacing:8.910000px;}
.ws39{word-spacing:8.976000px;}
.ws18{word-spacing:9.042000px;}
.ws12{word-spacing:9.108000px;}
.ws1d{word-spacing:9.372000px;}
.ws10{word-spacing:9.438000px;}
.wsd3{word-spacing:9.504000px;}
.ws66{word-spacing:9.570000px;}
.ws19{word-spacing:9.636000px;}
.ws4f{word-spacing:9.834000px;}
.ws4b{word-spacing:9.966000px;}
.ws35{word-spacing:10.032000px;}
.ws90{word-spacing:10.098000px;}
.ws46{word-spacing:10.164000px;}
.ws43{word-spacing:10.428000px;}
.ws63{word-spacing:10.494000px;}
.ws6c{word-spacing:10.560000px;}
.ws27{word-spacing:10.692000px;}
.ws73{word-spacing:10.758000px;}
.wse2{word-spacing:10.890000px;}
.ws52{word-spacing:11.220000px;}
.ws7d{word-spacing:11.286000px;}
.ws49{word-spacing:11.352000px;}
.ws1a{word-spacing:11.484000px;}
.ws4e{word-spacing:11.880000px;}
.ws62{word-spacing:12.078000px;}
.ws40{word-spacing:12.276000px;}
.wsc6{word-spacing:12.474000px;}
.wsb8{word-spacing:13.068000px;}
.wsca{word-spacing:13.266000px;}
.wsc3{word-spacing:13.332000px;}
.ws74{word-spacing:13.530000px;}
.ws8{word-spacing:13.596000px;}
.ws51{word-spacing:13.860000px;}
.ws88{word-spacing:14.190000px;}
.ws34{word-spacing:14.256000px;}
.ws6b{word-spacing:14.916000px;}
.ws7c{word-spacing:15.048000px;}
.ws17{word-spacing:15.510000px;}
.wse4{word-spacing:16.962000px;}
.wsdb{word-spacing:17.028000px;}
.wsc9{word-spacing:17.556000px;}
.ws38{word-spacing:17.886000px;}
.wsd0{word-spacing:18.018000px;}
.wsc4{word-spacing:18.546000px;}
.ws5f{word-spacing:18.744000px;}
.wsd8{word-spacing:19.008000px;}
.wsc1{word-spacing:19.800000px;}
.wsc5{word-spacing:20.130000px;}
.ws4a{word-spacing:20.460000px;}
.ws3f{word-spacing:20.526000px;}
.ws22{word-spacing:21.450000px;}
.ws8c{word-spacing:21.516000px;}
.ws59{word-spacing:21.582000px;}
.wsbf{word-spacing:21.648000px;}
.ws3a{word-spacing:23.034000px;}
.ws5e{word-spacing:24.222000px;}
.wsde{word-spacing:26.334000px;}
.ws48{word-spacing:26.796000px;}
.wsd7{word-spacing:28.446000px;}
.wsdc{word-spacing:32.142000px;}
.wsd5{word-spacing:38.148000px;}
.wse9{word-spacing:53.988000px;}
.wsd6{word-spacing:59.664000px;}
.wsd2{word-spacing:92.862000px;}
.wsa3{word-spacing:103.325400px;}
.wsa5{word-spacing:115.678800px;}
.wsa9{word-spacing:117.905400px;}
.wsa2{word-spacing:132.485400px;}
.wsa8{word-spacing:170.941200px;}
.wsa6{word-spacing:209.955600px;}
.wsa4{word-spacing:217.840200px;}
.wsb2{word-spacing:356.613000px;}
.wsb3{word-spacing:376.593600px;}
.wsb5{word-spacing:389.973600px;}
.ws9c{word-spacing:400.869600px;}
.ws9f{word-spacing:403.096200px;}
.wsb6{word-spacing:409.953000px;}
.ws9d{word-spacing:411.963000px;}
.ws9b{word-spacing:417.544800px;}
.wsb4{word-spacing:423.333600px;}
.ws9a{word-spacing:427.535400px;}
.ws9e{word-spacing:455.217600px;}
.ws99{word-spacing:471.933000px;}
.ws98{word-spacing:503.980800px;}
.ws97{word-spacing:583.817400px;}
._16{margin-left:-14.133600px;}
._18{margin-left:-8.487600px;}
._17{margin-left:-7.240200px;}
._2{margin-left:-6.232800px;}
._0{margin-left:-4.302000px;}
._1{margin-left:-2.449800px;}
._3{margin-left:-1.368000px;}
._4{width:1.043400px;}
._6{width:2.950200px;}
._7{width:4.837200px;}
._8{width:6.453600px;}
._5{width:7.576800px;}
._9{width:9.068400px;}
._a{width:10.243200px;}
._c{width:11.305800px;}
._d{width:12.421200px;}
._e{width:13.774200px;}
._34{width:15.701400px;}
._b{width:17.285400px;}
._35{width:21.436800px;}
._36{width:26.361600px;}
._1b{width:99.127800px;}
._1a{width:112.636200px;}
._1c{width:134.637600px;}
._19{width:158.335800px;}
._1f{width:162.561000px;}
._1e{width:191.575800px;}
._1d{width:209.434200px;}
._25{width:219.988800px;}
._20{width:272.974200px;}
._22{width:275.049000px;}
._23{width:276.705600px;}
._21{width:284.648400px;}
._24{width:300.390000px;}
._28{width:421.236600px;}
._2b{width:437.911800px;}
._27{width:457.049400px;}
._2e{width:461.240400px;}
._11{width:471.897600px;}
._2a{width:473.734200px;}
._32{width:477.038400px;}
._13{width:481.137600px;}
._31{width:482.904600px;}
._30{width:486.254400px;}
._2f{width:487.974600px;}
._10{width:491.127600px;}
._26{width:494.609400px;}
._33{width:495.808800px;}
._2c{width:499.588800px;}
._2d{width:500.722200px;}
._29{width:502.939200px;}
._14{width:531.521400px;}
._12{width:541.510800px;}
._15{width:543.586800px;}
._f{width:551.500800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fsa{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:62.865600px;}
.fs9{font-size:63.265200px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y134{bottom:10.155300px;}
.y12d{bottom:46.095750px;}
.y17d{bottom:46.996800px;}
.y14c{bottom:56.879100px;}
.y31{bottom:64.990650px;}
.y4e{bottom:67.534800px;}
.y1a8{bottom:71.019000px;}
.y14b{bottom:71.879100px;}
.y83{bottom:73.469850px;}
.y17c{bottom:77.371800px;}
.y5{bottom:86.102400px;}
.ye5{bottom:86.214000px;}
.y179{bottom:86.371800px;}
.y30{bottom:86.590650px;}
.y12e{bottom:86.659778px;}
.y14a{bottom:86.879100px;}
.y1e5{bottom:89.704050px;}
.y1a7{bottom:89.769000px;}
.y82{bottom:92.219850px;}
.y17b{bottom:95.371800px;}
.y10b{bottom:96.471750px;}
.yb4{bottom:98.715900px;}
.y1ba{bottom:100.009200px;}
.yc9{bottom:100.723800px;}
.y178{bottom:104.371800px;}
.ye4{bottom:104.964000px;}
.y149{bottom:105.681300px;}
.y2f{bottom:106.390650px;}
.y1e4{bottom:108.454050px;}
.y1a6{bottom:108.519000px;}
.y12b{bottom:110.963850px;}
.y81{bottom:110.969850px;}
.y17a{bottom:113.371800px;}
.y4d{bottom:113.538750px;}
.y10a{bottom:115.221750px;}
.y135{bottom:117.246300px;}
.yb3{bottom:117.465900px;}
.y1b9{bottom:118.759200px;}
.yc8{bottom:119.473800px;}
.ye3{bottom:123.714000px;}
.y12f{bottom:127.114800px;}
.y1e3{bottom:127.204050px;}
.y1a5{bottom:127.269000px;}
.y2e{bottom:127.990650px;}
.y12a{bottom:129.713850px;}
.y80{bottom:129.719850px;}
.y4c{bottom:132.288750px;}
.y109{bottom:133.971750px;}
.y148{bottom:135.456300px;}
.yb2{bottom:136.215900px;}
.y177{bottom:136.292250px;}
.y1b8{bottom:137.509200px;}
.yc7{bottom:138.223800px;}
.ye2{bottom:142.464000px;}
.y174{bottom:145.292250px;}
.y1e2{bottom:145.954050px;}
.y1a4{bottom:146.019000px;}
.y2d{bottom:147.790650px;}
.y129{bottom:148.463850px;}
.y7f{bottom:148.469850px;}
.y108{bottom:152.721750px;}
.y176{bottom:154.292250px;}
.yb1{bottom:154.965900px;}
.y4b{bottom:155.290650px;}
.y1b7{bottom:156.259200px;}
.y1c1{bottom:156.973800px;}
.ye1{bottom:161.214000px;}
.yc6{bottom:161.225700px;}
.y173{bottom:163.292250px;}
.y1a3{bottom:164.769000px;}
.y147{bottom:165.231450px;}
.y128{bottom:167.213850px;}
.y7e{bottom:167.219850px;}
.y130{bottom:167.563350px;}
.y2c{bottom:167.590650px;}
.y1e1{bottom:168.956100px;}
.y107{bottom:171.471750px;}
.y175{bottom:172.292250px;}
.yb0{bottom:173.715900px;}
.y4a{bottom:174.040650px;}
.y1b6{bottom:175.009200px;}
.y1c0{bottom:175.723800px;}
.ye0{bottom:179.964000px;}
.yc5{bottom:179.975700px;}
.y127{bottom:185.963850px;}
.y7d{bottom:185.969850px;}
.y2b{bottom:187.390650px;}
.y1e0{bottom:187.706100px;}
.y1a2{bottom:187.771050px;}
.y106{bottom:190.221750px;}
.yaf{bottom:192.465900px;}
.y49{bottom:192.790650px;}
.y1b5{bottom:193.759200px;}
.y146{bottom:195.006450px;}
.y172{bottom:197.075250px;}
.yc4{bottom:198.725700px;}
.ydf{bottom:202.965900px;}
.y126{bottom:204.713850px;}
.y7c{bottom:204.719850px;}
.y1df{bottom:206.456100px;}
.y1a1{bottom:206.521050px;}
.y2a{bottom:207.190650px;}
.y131{bottom:208.012050px;}
.y105{bottom:208.971750px;}
.yae{bottom:211.215900px;}
.y48{bottom:211.540650px;}
.y1b4{bottom:212.509200px;}
.y171{bottom:215.075250px;}
.yc3{bottom:217.475700px;}
.yde{bottom:221.715900px;}
.y125{bottom:223.463850px;}
.y7b{bottom:223.469850px;}
.y145{bottom:224.781300px;}
.y1de{bottom:225.206100px;}
.y1a0{bottom:225.271050px;}
.y29{bottom:226.990650px;}
.yad{bottom:229.965900px;}
.y47{bottom:230.290650px;}
.y1b3{bottom:231.259200px;}
.y104{bottom:231.973800px;}
.yc2{bottom:236.225700px;}
.ydd{bottom:240.465900px;}
.y170{bottom:241.568700px;}
.y124{bottom:242.213850px;}
.y7a{bottom:242.219850px;}
.y1dd{bottom:243.956100px;}
.y19f{bottom:244.021050px;}
.y28{bottom:246.790650px;}
.y132{bottom:248.460750px;}
.yac{bottom:248.715900px;}
.y46{bottom:249.040650px;}
.y1b2{bottom:250.009200px;}
.y16d{bottom:250.568700px;}
.y103{bottom:250.723800px;}
.y144{bottom:254.556300px;}
.yc1{bottom:254.975700px;}
.ydc{bottom:259.215900px;}
.y16f{bottom:259.568700px;}
.y123{bottom:260.963850px;}
.y79{bottom:260.969850px;}
.y19e{bottom:262.771050px;}
.y27{bottom:266.590650px;}
.y1dc{bottom:266.958000px;}
.yab{bottom:267.465900px;}
.y45{bottom:267.790650px;}
.y16c{bottom:268.568700px;}
.y1b1{bottom:268.759200px;}
.y102{bottom:269.473800px;}
.yc0{bottom:273.725700px;}
.y16e{bottom:277.568700px;}
.ydb{bottom:277.965900px;}
.y78{bottom:279.719850px;}
.y19d{bottom:281.521050px;}
.y122{bottom:283.965750px;}
.y143{bottom:284.331300px;}
.y1db{bottom:285.708000px;}
.yaa{bottom:286.215900px;}
.y26{bottom:286.390650px;}
.y44{bottom:286.540650px;}
.y101{bottom:288.223800px;}
.y133{bottom:288.909300px;}
.ybf{bottom:292.475700px;}
.yda{bottom:296.715900px;}
.y77{bottom:298.469850px;}
.y1b0{bottom:300.265050px;}
.y19c{bottom:300.271050px;}
.y16a{bottom:302.199450px;}
.y121{bottom:302.715900px;}
.ya9{bottom:304.965900px;}
.y43{bottom:305.290650px;}
.y25{bottom:306.190650px;}
.y100{bottom:306.973650px;}
.y1da{bottom:308.710050px;}
.y169{bottom:311.199450px;}
.ybe{bottom:311.225850px;}
.y142{bottom:314.106450px;}
.yd9{bottom:315.465900px;}
.y76{bottom:317.219850px;}
.y19b{bottom:319.021050px;}
.y16b{bottom:320.199450px;}
.y120{bottom:321.465900px;}
.ya8{bottom:323.715900px;}
.y42{bottom:324.040650px;}
.yff{bottom:325.723650px;}
.y24{bottom:325.990650px;}
.y1d9{bottom:327.460050px;}
.ybd{bottom:329.975850px;}
.yd8{bottom:334.215900px;}
.y75{bottom:335.969850px;}
.y19a{bottom:337.771050px;}
.y11f{bottom:340.215900px;}
.y41{bottom:342.790650px;}
.y168{bottom:343.119900px;}
.y141{bottom:343.881300px;}
.yfe{bottom:344.473650px;}
.y23{bottom:345.790650px;}
.y1bf{bottom:348.725850px;}
.y1d8{bottom:350.461950px;}
.y165{bottom:352.119900px;}
.yd7{bottom:352.965900px;}
.ybc{bottom:352.977750px;}
.y74{bottom:354.719850px;}
.ya7{bottom:355.221900px;}
.y199{bottom:356.521050px;}
.y11e{bottom:358.965900px;}
.y167{bottom:361.119900px;}
.y40{bottom:361.540650px;}
.yfd{bottom:363.223650px;}
.y22{bottom:365.590650px;}
.y1be{bottom:367.475850px;}
.y1d7{bottom:369.211950px;}
.y164{bottom:370.119900px;}
.yd6{bottom:371.715900px;}
.ybb{bottom:371.727750px;}
.y140{bottom:373.656300px;}
.y198{bottom:375.271050px;}
.y11d{bottom:377.715900px;}
.y73{bottom:377.721900px;}
.y166{bottom:379.119900px;}
.y3f{bottom:380.290650px;}
.yfc{bottom:381.973650px;}
.y21{bottom:385.390650px;}
.y1bd{bottom:386.225850px;}
.y1d6{bottom:387.961950px;}
.yd5{bottom:390.465900px;}
.ya6{bottom:390.477750px;}
.y197{bottom:394.021050px;}
.y11c{bottom:396.465900px;}
.y72{bottom:396.471900px;}
.y3e{bottom:399.040650px;}
.yfb{bottom:400.723650px;}
.y163{bottom:402.040350px;}
.y13f{bottom:403.431450px;}
.y20{bottom:405.190650px;}
.y1d5{bottom:406.711950px;}
.yd4{bottom:409.215900px;}
.ya5{bottom:409.227750px;}
.y160{bottom:411.040350px;}
.y196{bottom:412.771050px;}
.y11b{bottom:415.215900px;}
.y71{bottom:415.221900px;}
.y3d{bottom:417.790650px;}
.yfa{bottom:419.473650px;}
.y162{bottom:420.040350px;}
.y1f{bottom:424.990650px;}
.y1d4{bottom:425.461950px;}
.yd3{bottom:427.965900px;}
.ya4{bottom:427.977750px;}
.y15f{bottom:429.040350px;}
.y1af{bottom:431.521050px;}
.y13e{bottom:433.206450px;}
.y11a{bottom:433.965900px;}
.y70{bottom:433.971900px;}
.y195{bottom:435.772950px;}
.y3c{bottom:436.540650px;}
.y161{bottom:438.040350px;}
.yf9{bottom:442.475700px;}
.y1e{bottom:444.790650px;}
.ya3{bottom:446.727750px;}
.y1d3{bottom:448.464000px;}
.y1ae{bottom:450.271050px;}
.y119{bottom:452.715900px;}
.y6f{bottom:452.721900px;}
.y194{bottom:454.522950px;}
.y3b{bottom:455.290650px;}
.yd2{bottom:459.471900px;}
.yf8{bottom:461.225700px;}
.y13d{bottom:462.981450px;}
.y15e{bottom:463.886400px;}
.y1d{bottom:464.590650px;}
.ya2{bottom:465.477750px;}
.y1d2{bottom:467.214000px;}
.y1ad{bottom:469.021050px;}
.y118{bottom:471.465900px;}
.y6e{bottom:471.471900px;}
.y193{bottom:473.272950px;}
.y3a{bottom:474.040650px;}
.yf7{bottom:479.975700px;}
.y15d{bottom:481.886400px;}
.yd1{bottom:484.221900px;}
.ya1{bottom:484.227750px;}
.y1c{bottom:484.390650px;}
.y1d1{bottom:485.964000px;}
.y1ac{bottom:487.771050px;}
.y117{bottom:490.215900px;}
.y6d{bottom:490.221900px;}
.y192{bottom:492.022950px;}
.y13c{bottom:492.756450px;}
.y39{bottom:492.790650px;}
.yf6{bottom:498.725700px;}
.ya0{bottom:502.977750px;}
.y1b{bottom:504.190650px;}
.y1d0{bottom:504.714000px;}
.y1ab{bottom:506.521050px;}
.y15c{bottom:508.160250px;}
.y116{bottom:508.965900px;}
.y6c{bottom:508.971900px;}
.y191{bottom:510.772950px;}
.y38{bottom:511.540650px;}
.y159{bottom:517.160250px;}
.yf5{bottom:517.475700px;}
.y9f{bottom:521.727750px;}
.y13b{bottom:522.531300px;}
.y1cf{bottom:523.464000px;}
.y1a{bottom:523.990650px;}
.y1aa{bottom:525.271050px;}
.y15b{bottom:526.160250px;}
.y115{bottom:527.715900px;}
.y6b{bottom:527.721900px;}
.y190{bottom:529.522950px;}
.y37{bottom:530.290650px;}
.y158{bottom:535.160250px;}
.yf4{bottom:536.225700px;}
.yba{bottom:540.477750px;}
.y19{bottom:543.790650px;}
.y1a9{bottom:544.021050px;}
.y15a{bottom:544.160250px;}
.y9e{bottom:544.729650px;}
.y114{bottom:546.465900px;}
.y6a{bottom:546.471900px;}
.y18f{bottom:548.272950px;}
.y36{bottom:549.040650px;}
.y13a{bottom:552.306450px;}
.yf3{bottom:554.975700px;}
.yb9{bottom:559.227750px;}
.y9d{bottom:563.479650px;}
.y18{bottom:563.590650px;}
.y113{bottom:565.215900px;}
.y69{bottom:565.221900px;}
.y18e{bottom:567.022950px;}
.y157{bottom:567.508650px;}
.y35{bottom:567.790650px;}
.y156{bottom:576.508650px;}
.yb8{bottom:577.977750px;}
.y139{bottom:582.081450px;}
.y9c{bottom:582.229650px;}
.y17{bottom:583.390650px;}
.y112{bottom:583.965900px;}
.y18d{bottom:585.772950px;}
.y34{bottom:586.540650px;}
.y68{bottom:588.223800px;}
.yb7{bottom:596.727750px;}
.y9b{bottom:600.979650px;}
.y1ce{bottom:602.715900px;}
.y1ed{bottom:602.721900px;}
.y16{bottom:603.190650px;}
.y18c{bottom:604.522950px;}
.y33{bottom:605.290650px;}
.y67{bottom:606.973800px;}
.y138{bottom:608.804100px;}
.y111{bottom:615.471750px;}
.yb6{bottom:615.477750px;}
.y9a{bottom:619.729650px;}
.y1cd{bottom:621.465900px;}
.y1ec{bottom:621.471900px;}
.y15{bottom:622.990650px;}
.y32{bottom:624.040650px;}
.y66{bottom:625.723800px;}
.y155{bottom:630.725850px;}
.yb5{bottom:634.227750px;}
.y18b{bottom:634.534350px;}
.y14f{bottom:638.243550px;}
.y99{bottom:638.479650px;}
.y1cc{bottom:640.215900px;}
.y1eb{bottom:640.221900px;}
.y65{bottom:644.473800px;}
.yf2{bottom:652.977750px;}
.y14{bottom:655.546650px;}
.y14e{bottom:656.993550px;}
.y98{bottom:657.229650px;}
.y1ea{bottom:658.971900px;}
.y1cb{bottom:663.217950px;}
.y64{bottom:663.223800px;}
.y18a{bottom:666.199200px;}
.yf1{bottom:671.727750px;}
.y14d{bottom:675.743550px;}
.y97{bottom:675.979650px;}
.y1ca{bottom:681.967950px;}
.y63{bottom:681.973800px;}
.y13{bottom:685.176000px;}
.yf0{bottom:690.477600px;}
.y154{bottom:690.477750px;}
.y189{bottom:691.699200px;}
.y96{bottom:694.729650px;}
.y1c9{bottom:700.717950px;}
.y62{bottom:700.723800px;}
.y12{bottom:703.176000px;}
.y137{bottom:703.464600px;}
.yef{bottom:709.227600px;}
.y153{bottom:709.227750px;}
.y95{bottom:713.479650px;}
.y188{bottom:717.199200px;}
.y136{bottom:718.464600px;}
.y1c8{bottom:719.467950px;}
.y61{bottom:719.473800px;}
.y11{bottom:721.176000px;}
.yee{bottom:727.977600px;}
.y152{bottom:727.977750px;}
.y94{bottom:732.229650px;}
.y12c{bottom:733.464000px;}
.y60{bottom:738.223800px;}
.y1c7{bottom:742.469850px;}
.y187{bottom:742.699200px;}
.y10{bottom:744.171000px;}
.yed{bottom:746.727600px;}
.y151{bottom:746.727750px;}
.y93{bottom:750.979650px;}
.y5f{bottom:756.973800px;}
.y1c6{bottom:761.219850px;}
.yf{bottom:762.171000px;}
.yec{bottom:765.477600px;}
.y150{bottom:765.477750px;}
.y186{bottom:768.199200px;}
.y92{bottom:769.729650px;}
.ye{bottom:775.176000px;}
.y1e9{bottom:775.723800px;}
.y1c5{bottom:779.969850px;}
.y5e{bottom:779.975850px;}
.y110{bottom:784.227600px;}
.y91{bottom:788.479650px;}
.y1bc{bottom:792.731700px;}
.y185{bottom:793.699200px;}
.yd{bottom:798.171000px;}
.y1c4{bottom:798.719850px;}
.y5d{bottom:798.725850px;}
.y10f{bottom:802.977600px;}
.y90{bottom:807.229650px;}
.yc{bottom:811.176000px;}
.y1bb{bottom:811.481700px;}
.y1c3{bottom:817.469850px;}
.y5c{bottom:817.475850px;}
.y184{bottom:819.199200px;}
.y10e{bottom:821.727600px;}
.yd0{bottom:825.979650px;}
.y8f{bottom:830.231700px;}
.yb{bottom:834.171000px;}
.y5b{bottom:836.225850px;}
.y10d{bottom:840.477600px;}
.y183{bottom:844.699200px;}
.ycf{bottom:844.729650px;}
.ya{bottom:847.176000px;}
.y1c2{bottom:848.975850px;}
.y8e{bottom:848.981700px;}
.y5a{bottom:854.975850px;}
.yce{bottom:863.479650px;}
.y8d{bottom:867.731700px;}
.y182{bottom:870.199200px;}
.y59{bottom:873.725850px;}
.ycd{bottom:882.229650px;}
.y8c{bottom:886.481700px;}
.y9{bottom:887.428050px;}
.y58{bottom:892.475850px;}
.y181{bottom:895.699200px;}
.y1e8{bottom:896.727750px;}
.ycc{bottom:900.979650px;}
.y8b{bottom:905.231700px;}
.y57{bottom:911.225850px;}
.y1e7{bottom:915.477750px;}
.ycb{bottom:919.729650px;}
.y180{bottom:921.199200px;}
.y8{bottom:923.428050px;}
.y8a{bottom:923.981700px;}
.y56{bottom:929.975850px;}
.y1e6{bottom:934.227750px;}
.yca{bottom:938.479650px;}
.y89{bottom:942.731700px;}
.y17f{bottom:946.699200px;}
.y55{bottom:948.725850px;}
.yeb{bottom:957.229650px;}
.y7{bottom:959.428050px;}
.y88{bottom:961.481700px;}
.y54{bottom:967.475850px;}
.y17e{bottom:971.284350px;}
.yea{bottom:975.979650px;}
.y87{bottom:980.231700px;}
.y53{bottom:986.225850px;}
.y6{bottom:992.428050px;}
.ye9{bottom:994.729650px;}
.y86{bottom:998.981700px;}
.y52{bottom:1004.975850px;}
.y10c{bottom:1013.479650px;}
.ye8{bottom:1017.731550px;}
.y85{bottom:1017.731700px;}
.y4{bottom:1023.323700px;}
.y51{bottom:1023.725850px;}
.ye7{bottom:1036.481550px;}
.y84{bottom:1036.481700px;}
.y3{bottom:1039.823700px;}
.ye6{bottom:1055.231550px;}
.y50{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y4f{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h9{height:25.483477px;}
.h11{height:34.968750px;}
.he{height:42.759659px;}
.hf{height:43.031457px;}
.h10{height:43.335938px;}
.hc{height:43.681641px;}
.h4{height:43.710938px;}
.h14{height:48.049805px;}
.hb{height:48.082031px;}
.h7{height:52.453125px;}
.h3{height:54.169922px;}
.ha{height:59.586914px;}
.h2{height:61.195312px;}
.h8{height:65.003906px;}
.h6{height:75.837891px;}
.h12{height:79.710938px;}
.h13{height:115.710938px;}
.h5{height:167.926758px;}
.hd{height:314.610000px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w2{width:582.079500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x38{left:15.159750px;}
.x19{left:38.209950px;}
.x1b{left:42.746400px;}
.x5{left:43.812450px;}
.x1a{left:71.313900px;}
.x1{left:85.039350px;}
.xb{left:87.604200px;}
.xd{left:93.020400px;}
.x45{left:97.235250px;}
.x55{left:98.539350px;}
.xf{left:99.996900px;}
.x4a{left:101.545650px;}
.x7{left:103.523400px;}
.x1c{left:105.153600px;}
.x16{left:106.299150px;}
.x42{left:108.067800px;}
.x1d{left:121.950511px;}
.x3c{left:124.295850px;}
.x3b{left:128.467050px;}
.x52{left:134.226450px;}
.x1e{left:138.873952px;}
.x8{left:144.511950px;}
.x3a{left:154.556400px;}
.x1f{left:155.797393px;}
.x53{left:157.997250px;}
.xa{left:160.643700px;}
.x20{left:172.594303px;}
.x18{left:176.677500px;}
.x48{left:178.281750px;}
.x6{left:180.325200px;}
.x46{left:182.028000px;}
.x21{left:189.517744px;}
.x49{left:195.783000px;}
.x22{left:206.441185px;}
.x23{left:223.364626px;}
.x17{left:226.779000px;}
.x11{left:230.623950px;}
.x24{left:240.161537px;}
.xe{left:242.635950px;}
.x25{left:257.084978px;}
.x39{left:265.735050px;}
.x26{left:274.008419px;}
.x10{left:279.663600px;}
.x47{left:285.801750px;}
.x27{left:290.805329px;}
.x43{left:296.238750px;}
.x4b{left:301.369350px;}
.x28{left:307.728770px;}
.x41{left:316.969500px;}
.x29{left:324.652211px;}
.x2a{left:341.449122px;}
.x51{left:347.233200px;}
.x2b{left:358.372563px;}
.x50{left:372.000000px;}
.x2c{left:375.296004px;}
.x2d{left:392.092915px;}
.x4c{left:397.792350px;}
.x9{left:403.683900px;}
.x2e{left:409.016356px;}
.xc{left:413.920200px;}
.x2f{left:425.939797px;}
.x4f{left:439.106550px;}
.x30{left:442.736707px;}
.x31{left:459.660148px;}
.x14{left:476.716500px;}
.x54{left:490.216500px;}
.x32{left:493.507030px;}
.x4d{left:496.551300px;}
.x13{left:497.976450px;}
.x4e{left:502.381500px;}
.x3{left:508.762800px;}
.x33{left:510.303941px;}
.x34{left:527.227382px;}
.x35{left:544.150823px;}
.x4{left:548.994750px;}
.x36{left:560.947733px;}
.x37{left:577.871174px;}
.x3e{left:589.171050px;}
.x12{left:618.184200px;}
.x40{left:661.471350px;}
.x3f{left:704.325300px;}
.x44{left:762.346800px;}
.x2{left:775.393650px;}
.x15{left:827.035350px;}
.x3d{left:847.059750px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v4{vertical-align:32.000000pt;}
.lsa{letter-spacing:-3.946667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004373pt;}
.ls2{letter-spacing:0.004907pt;}
.ls0{letter-spacing:0.005461pt;}
.ls1{letter-spacing:0.005995pt;}
.ls6{letter-spacing:0.009067pt;}
.ls5{letter-spacing:0.018667pt;}
.ls9{letter-spacing:0.726447pt;}
.ls7{letter-spacing:1.117611pt;}
.ls8{letter-spacing:1.124715pt;}
.lsb{letter-spacing:1.525333pt;}
.wse1{word-spacing:-17.834667pt;}
.ws0{word-spacing:-16.309333pt;}
.wsa7{word-spacing:-14.826667pt;}
.ws95{word-spacing:-13.833990pt;}
.ws94{word-spacing:-13.746611pt;}
.ws93{word-spacing:-13.355447pt;}
.ws96{word-spacing:-11.861333pt;}
.ws78{word-spacing:-9.508341pt;}
.wse5{word-spacing:-4.517333pt;}
.ws45{word-spacing:-4.458667pt;}
.wsac{word-spacing:-4.165333pt;}
.wsd4{word-spacing:-4.106667pt;}
.ws36{word-spacing:-3.989333pt;}
.ws85{word-spacing:-3.578667pt;}
.wsda{word-spacing:-3.520000pt;}
.ws81{word-spacing:-3.461333pt;}
.wsd9{word-spacing:-3.226667pt;}
.ws32{word-spacing:-3.050667pt;}
.ws2a{word-spacing:-2.992000pt;}
.ws5{word-spacing:-2.698667pt;}
.wsf{word-spacing:-2.640000pt;}
.ws23{word-spacing:-2.581333pt;}
.wsba{word-spacing:-2.522667pt;}
.ws3{word-spacing:-2.464000pt;}
.ws6e{word-spacing:-2.346667pt;}
.ws86{word-spacing:-2.288000pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws7b{word-spacing:-1.936000pt;}
.ws3c{word-spacing:-1.877333pt;}
.wsc8{word-spacing:-1.760000pt;}
.ws7{word-spacing:-1.701333pt;}
.ws4c{word-spacing:-1.642667pt;}
.ws65{word-spacing:-1.584000pt;}
.ws75{word-spacing:-1.525333pt;}
.wse8{word-spacing:-1.466667pt;}
.wsab{word-spacing:-1.408000pt;}
.ws7a{word-spacing:-1.349333pt;}
.ws47{word-spacing:-1.290667pt;}
.ws6a{word-spacing:-1.232000pt;}
.ws61{word-spacing:-1.173333pt;}
.ws1c{word-spacing:-1.056000pt;}
.ws2c{word-spacing:-0.997333pt;}
.ws54{word-spacing:-0.938667pt;}
.ws56{word-spacing:-0.880000pt;}
.wsce{word-spacing:-0.821333pt;}
.wsc0{word-spacing:-0.645333pt;}
.ws7f{word-spacing:-0.586667pt;}
.wsbc{word-spacing:-0.528000pt;}
.wscb{word-spacing:-0.410667pt;}
.wsa0{word-spacing:-0.352000pt;}
.ws24{word-spacing:-0.293333pt;}
.ws44{word-spacing:-0.234667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.117333pt;}
.wsaa{word-spacing:0.176000pt;}
.ws69{word-spacing:0.234667pt;}
.wsbe{word-spacing:0.293333pt;}
.wsb9{word-spacing:0.528000pt;}
.wsc{word-spacing:0.586667pt;}
.ws28{word-spacing:0.645333pt;}
.ws71{word-spacing:0.704000pt;}
.wsc2{word-spacing:0.762667pt;}
.ws5d{word-spacing:0.821333pt;}
.wsae{word-spacing:0.880000pt;}
.ws4{word-spacing:0.997333pt;}
.ws26{word-spacing:1.114667pt;}
.ws8b{word-spacing:1.232000pt;}
.ws2{word-spacing:1.290667pt;}
.wsc7{word-spacing:1.349333pt;}
.ws1f{word-spacing:1.408000pt;}
.ws33{word-spacing:1.584000pt;}
.ws5c{word-spacing:1.642667pt;}
.wse7{word-spacing:1.760000pt;}
.ws6f{word-spacing:1.818667pt;}
.wsd{word-spacing:1.877333pt;}
.ws5a{word-spacing:1.936000pt;}
.ws80{word-spacing:2.053333pt;}
.ws77{word-spacing:2.170667pt;}
.ws4d{word-spacing:2.229333pt;}
.wsb0{word-spacing:2.288000pt;}
.ws60{word-spacing:2.346667pt;}
.ws31{word-spacing:2.405333pt;}
.wsa{word-spacing:2.522667pt;}
.ws84{word-spacing:2.581333pt;}
.ws2f{word-spacing:2.640000pt;}
.wsbd{word-spacing:2.698667pt;}
.ws8f{word-spacing:2.874667pt;}
.ws13{word-spacing:2.933333pt;}
.ws3e{word-spacing:2.992000pt;}
.ws87{word-spacing:3.050667pt;}
.ws20{word-spacing:3.109333pt;}
.wsad{word-spacing:3.168000pt;}
.ws57{word-spacing:3.226667pt;}
.wsb1{word-spacing:3.402667pt;}
.ws16{word-spacing:3.461333pt;}
.ws15{word-spacing:3.520000pt;}
.wscf{word-spacing:3.578667pt;}
.wsd1{word-spacing:3.637333pt;}
.ws72{word-spacing:3.754667pt;}
.ws1e{word-spacing:3.930667pt;}
.ws14{word-spacing:4.048000pt;}
.ws8d{word-spacing:4.106667pt;}
.ws9{word-spacing:4.224000pt;}
.wsbb{word-spacing:4.282667pt;}
.wsb7{word-spacing:4.341333pt;}
.ws6{word-spacing:4.400000pt;}
.ws53{word-spacing:4.458667pt;}
.wsa1{word-spacing:4.517333pt;}
.ws3d{word-spacing:4.576000pt;}
.ws76{word-spacing:4.634667pt;}
.ws83{word-spacing:4.752000pt;}
.ws37{word-spacing:4.810667pt;}
.wse{word-spacing:4.869333pt;}
.ws70{word-spacing:5.045333pt;}
.ws29{word-spacing:5.104000pt;}
.ws55{word-spacing:5.162667pt;}
.ws41{word-spacing:5.221333pt;}
.wsdd{word-spacing:5.280000pt;}
.ws21{word-spacing:5.338667pt;}
.ws89{word-spacing:5.397333pt;}
.ws25{word-spacing:5.456000pt;}
.wsdf{word-spacing:5.573333pt;}
.ws1b{word-spacing:5.690667pt;}
.ws42{word-spacing:5.808000pt;}
.ws8e{word-spacing:5.866667pt;}
.wsaf{word-spacing:5.984000pt;}
.wscc{word-spacing:6.042667pt;}
.ws64{word-spacing:6.160000pt;}
.wsb{word-spacing:6.218667pt;}
.ws8a{word-spacing:6.277333pt;}
.wse6{word-spacing:6.394667pt;}
.wse3{word-spacing:6.570667pt;}
.ws11{word-spacing:6.688000pt;}
.ws3b{word-spacing:6.746667pt;}
.ws30{word-spacing:6.805333pt;}
.ws82{word-spacing:6.864000pt;}
.ws91{word-spacing:6.922667pt;}
.wse0{word-spacing:6.981333pt;}
.ws68{word-spacing:7.216000pt;}
.ws92{word-spacing:7.274667pt;}
.ws2d{word-spacing:7.333333pt;}
.ws50{word-spacing:7.450667pt;}
.ws79{word-spacing:7.509333pt;}
.ws6d{word-spacing:7.568000pt;}
.ws2e{word-spacing:7.626667pt;}
.ws58{word-spacing:7.685333pt;}
.ws67{word-spacing:7.744000pt;}
.ws7e{word-spacing:7.861333pt;}
.wscd{word-spacing:7.920000pt;}
.ws39{word-spacing:7.978667pt;}
.ws18{word-spacing:8.037333pt;}
.ws12{word-spacing:8.096000pt;}
.ws1d{word-spacing:8.330667pt;}
.ws10{word-spacing:8.389333pt;}
.wsd3{word-spacing:8.448000pt;}
.ws66{word-spacing:8.506667pt;}
.ws19{word-spacing:8.565333pt;}
.ws4f{word-spacing:8.741333pt;}
.ws4b{word-spacing:8.858667pt;}
.ws35{word-spacing:8.917333pt;}
.ws90{word-spacing:8.976000pt;}
.ws46{word-spacing:9.034667pt;}
.ws43{word-spacing:9.269333pt;}
.ws63{word-spacing:9.328000pt;}
.ws6c{word-spacing:9.386667pt;}
.ws27{word-spacing:9.504000pt;}
.ws73{word-spacing:9.562667pt;}
.wse2{word-spacing:9.680000pt;}
.ws52{word-spacing:9.973333pt;}
.ws7d{word-spacing:10.032000pt;}
.ws49{word-spacing:10.090667pt;}
.ws1a{word-spacing:10.208000pt;}
.ws4e{word-spacing:10.560000pt;}
.ws62{word-spacing:10.736000pt;}
.ws40{word-spacing:10.912000pt;}
.wsc6{word-spacing:11.088000pt;}
.wsb8{word-spacing:11.616000pt;}
.wsca{word-spacing:11.792000pt;}
.wsc3{word-spacing:11.850667pt;}
.ws74{word-spacing:12.026667pt;}
.ws8{word-spacing:12.085333pt;}
.ws51{word-spacing:12.320000pt;}
.ws88{word-spacing:12.613333pt;}
.ws34{word-spacing:12.672000pt;}
.ws6b{word-spacing:13.258667pt;}
.ws7c{word-spacing:13.376000pt;}
.ws17{word-spacing:13.786667pt;}
.wse4{word-spacing:15.077333pt;}
.wsdb{word-spacing:15.136000pt;}
.wsc9{word-spacing:15.605333pt;}
.ws38{word-spacing:15.898667pt;}
.wsd0{word-spacing:16.016000pt;}
.wsc4{word-spacing:16.485333pt;}
.ws5f{word-spacing:16.661333pt;}
.wsd8{word-spacing:16.896000pt;}
.wsc1{word-spacing:17.600000pt;}
.wsc5{word-spacing:17.893333pt;}
.ws4a{word-spacing:18.186667pt;}
.ws3f{word-spacing:18.245333pt;}
.ws22{word-spacing:19.066667pt;}
.ws8c{word-spacing:19.125333pt;}
.ws59{word-spacing:19.184000pt;}
.wsbf{word-spacing:19.242667pt;}
.ws3a{word-spacing:20.474667pt;}
.ws5e{word-spacing:21.530667pt;}
.wsde{word-spacing:23.408000pt;}
.ws48{word-spacing:23.818667pt;}
.wsd7{word-spacing:25.285333pt;}
.wsdc{word-spacing:28.570667pt;}
.wsd5{word-spacing:33.909333pt;}
.wse9{word-spacing:47.989333pt;}
.wsd6{word-spacing:53.034667pt;}
.wsd2{word-spacing:82.544000pt;}
.wsa3{word-spacing:91.844800pt;}
.wsa5{word-spacing:102.825600pt;}
.wsa9{word-spacing:104.804800pt;}
.wsa2{word-spacing:117.764800pt;}
.wsa8{word-spacing:151.947733pt;}
.wsa6{word-spacing:186.627200pt;}
.wsa4{word-spacing:193.635733pt;}
.wsb2{word-spacing:316.989333pt;}
.wsb3{word-spacing:334.749867pt;}
.wsb5{word-spacing:346.643200pt;}
.ws9c{word-spacing:356.328533pt;}
.ws9f{word-spacing:358.307733pt;}
.wsb6{word-spacing:364.402667pt;}
.ws9d{word-spacing:366.189333pt;}
.ws9b{word-spacing:371.150933pt;}
.wsb4{word-spacing:376.296533pt;}
.ws9a{word-spacing:380.031467pt;}
.ws9e{word-spacing:404.637867pt;}
.ws99{word-spacing:419.496000pt;}
.ws98{word-spacing:447.982933pt;}
.ws97{word-spacing:518.948800pt;}
._16{margin-left:-12.563200pt;}
._18{margin-left:-7.544533pt;}
._17{margin-left:-6.435733pt;}
._2{margin-left:-5.540267pt;}
._0{margin-left:-3.824000pt;}
._1{margin-left:-2.177600pt;}
._3{margin-left:-1.216000pt;}
._4{width:0.927467pt;}
._6{width:2.622400pt;}
._7{width:4.299733pt;}
._8{width:5.736533pt;}
._5{width:6.734933pt;}
._9{width:8.060800pt;}
._a{width:9.105067pt;}
._c{width:10.049600pt;}
._d{width:11.041067pt;}
._e{width:12.243733pt;}
._34{width:13.956800pt;}
._b{width:15.364800pt;}
._35{width:19.054933pt;}
._36{width:23.432533pt;}
._1b{width:88.113600pt;}
._1a{width:100.121067pt;}
._1c{width:119.677867pt;}
._19{width:140.742933pt;}
._1f{width:144.498667pt;}
._1e{width:170.289600pt;}
._1d{width:186.163733pt;}
._25{width:195.545600pt;}
._20{width:242.643733pt;}
._22{width:244.488000pt;}
._23{width:245.960533pt;}
._21{width:253.020800pt;}
._24{width:267.013333pt;}
._28{width:374.432533pt;}
._2b{width:389.254933pt;}
._27{width:406.266133pt;}
._2e{width:409.991467pt;}
._11{width:419.464533pt;}
._2a{width:421.097067pt;}
._32{width:424.034133pt;}
._13{width:427.677867pt;}
._31{width:429.248533pt;}
._30{width:432.226133pt;}
._2f{width:433.755200pt;}
._10{width:436.557867pt;}
._26{width:439.652800pt;}
._33{width:440.718933pt;}
._2c{width:444.078933pt;}
._2d{width:445.086400pt;}
._29{width:447.057067pt;}
._14{width:472.463467pt;}
._12{width:481.342933pt;}
._15{width:483.188267pt;}
._f{width:490.222933pt;}
.fs5{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fsa{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:55.880533pt;}
.fs9{font-size:56.235733pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:9.026933pt;}
.y12d{bottom:40.974000pt;}
.y17d{bottom:41.774933pt;}
.y14c{bottom:50.559200pt;}
.y31{bottom:57.769467pt;}
.y4e{bottom:60.030933pt;}
.y1a8{bottom:63.128000pt;}
.y14b{bottom:63.892533pt;}
.y83{bottom:65.306533pt;}
.y17c{bottom:68.774933pt;}
.y5{bottom:76.535467pt;}
.ye5{bottom:76.634667pt;}
.y179{bottom:76.774933pt;}
.y30{bottom:76.969467pt;}
.y12e{bottom:77.030914pt;}
.y14a{bottom:77.225867pt;}
.y1e5{bottom:79.736933pt;}
.y1a7{bottom:79.794667pt;}
.y82{bottom:81.973200pt;}
.y17b{bottom:84.774933pt;}
.y10b{bottom:85.752667pt;}
.yb4{bottom:87.747467pt;}
.y1ba{bottom:88.897067pt;}
.yc9{bottom:89.532267pt;}
.y178{bottom:92.774933pt;}
.ye4{bottom:93.301333pt;}
.y149{bottom:93.938933pt;}
.y2f{bottom:94.569467pt;}
.y1e4{bottom:96.403600pt;}
.y1a6{bottom:96.461333pt;}
.y12b{bottom:98.634533pt;}
.y81{bottom:98.639867pt;}
.y17a{bottom:100.774933pt;}
.y4d{bottom:100.923333pt;}
.y10a{bottom:102.419333pt;}
.y135{bottom:104.218933pt;}
.yb3{bottom:104.414133pt;}
.y1b9{bottom:105.563733pt;}
.yc8{bottom:106.198933pt;}
.ye3{bottom:109.968000pt;}
.y12f{bottom:112.990933pt;}
.y1e3{bottom:113.070267pt;}
.y1a5{bottom:113.128000pt;}
.y2e{bottom:113.769467pt;}
.y12a{bottom:115.301200pt;}
.y80{bottom:115.306533pt;}
.y4c{bottom:117.590000pt;}
.y109{bottom:119.086000pt;}
.y148{bottom:120.405600pt;}
.yb2{bottom:121.080800pt;}
.y177{bottom:121.148667pt;}
.y1b8{bottom:122.230400pt;}
.yc7{bottom:122.865600pt;}
.ye2{bottom:126.634667pt;}
.y174{bottom:129.148667pt;}
.y1e2{bottom:129.736933pt;}
.y1a4{bottom:129.794667pt;}
.y2d{bottom:131.369467pt;}
.y129{bottom:131.967867pt;}
.y7f{bottom:131.973200pt;}
.y108{bottom:135.752667pt;}
.y176{bottom:137.148667pt;}
.yb1{bottom:137.747467pt;}
.y4b{bottom:138.036133pt;}
.y1b7{bottom:138.897067pt;}
.y1c1{bottom:139.532267pt;}
.ye1{bottom:143.301333pt;}
.yc6{bottom:143.311733pt;}
.y173{bottom:145.148667pt;}
.y1a3{bottom:146.461333pt;}
.y147{bottom:146.872400pt;}
.y128{bottom:148.634533pt;}
.y7e{bottom:148.639867pt;}
.y130{bottom:148.945200pt;}
.y2c{bottom:148.969467pt;}
.y1e1{bottom:150.183200pt;}
.y107{bottom:152.419333pt;}
.y175{bottom:153.148667pt;}
.yb0{bottom:154.414133pt;}
.y4a{bottom:154.702800pt;}
.y1b6{bottom:155.563733pt;}
.y1c0{bottom:156.198933pt;}
.ye0{bottom:159.968000pt;}
.yc5{bottom:159.978400pt;}
.y127{bottom:165.301200pt;}
.y7d{bottom:165.306533pt;}
.y2b{bottom:166.569467pt;}
.y1e0{bottom:166.849867pt;}
.y1a2{bottom:166.907600pt;}
.y106{bottom:169.086000pt;}
.yaf{bottom:171.080800pt;}
.y49{bottom:171.369467pt;}
.y1b5{bottom:172.230400pt;}
.y146{bottom:173.339067pt;}
.y172{bottom:175.178000pt;}
.yc4{bottom:176.645067pt;}
.ydf{bottom:180.414133pt;}
.y126{bottom:181.967867pt;}
.y7c{bottom:181.973200pt;}
.y1df{bottom:183.516533pt;}
.y1a1{bottom:183.574267pt;}
.y2a{bottom:184.169467pt;}
.y131{bottom:184.899600pt;}
.y105{bottom:185.752667pt;}
.yae{bottom:187.747467pt;}
.y48{bottom:188.036133pt;}
.y1b4{bottom:188.897067pt;}
.y171{bottom:191.178000pt;}
.yc3{bottom:193.311733pt;}
.yde{bottom:197.080800pt;}
.y125{bottom:198.634533pt;}
.y7b{bottom:198.639867pt;}
.y145{bottom:199.805600pt;}
.y1de{bottom:200.183200pt;}
.y1a0{bottom:200.240933pt;}
.y29{bottom:201.769467pt;}
.yad{bottom:204.414133pt;}
.y47{bottom:204.702800pt;}
.y1b3{bottom:205.563733pt;}
.y104{bottom:206.198933pt;}
.yc2{bottom:209.978400pt;}
.ydd{bottom:213.747467pt;}
.y170{bottom:214.727733pt;}
.y124{bottom:215.301200pt;}
.y7a{bottom:215.306533pt;}
.y1dd{bottom:216.849867pt;}
.y19f{bottom:216.907600pt;}
.y28{bottom:219.369467pt;}
.y132{bottom:220.854000pt;}
.yac{bottom:221.080800pt;}
.y46{bottom:221.369467pt;}
.y1b2{bottom:222.230400pt;}
.y16d{bottom:222.727733pt;}
.y103{bottom:222.865600pt;}
.y144{bottom:226.272267pt;}
.yc1{bottom:226.645067pt;}
.ydc{bottom:230.414133pt;}
.y16f{bottom:230.727733pt;}
.y123{bottom:231.967867pt;}
.y79{bottom:231.973200pt;}
.y19e{bottom:233.574267pt;}
.y27{bottom:236.969467pt;}
.y1dc{bottom:237.296000pt;}
.yab{bottom:237.747467pt;}
.y45{bottom:238.036133pt;}
.y16c{bottom:238.727733pt;}
.y1b1{bottom:238.897067pt;}
.y102{bottom:239.532267pt;}
.yc0{bottom:243.311733pt;}
.y16e{bottom:246.727733pt;}
.ydb{bottom:247.080800pt;}
.y78{bottom:248.639867pt;}
.y19d{bottom:250.240933pt;}
.y122{bottom:252.414000pt;}
.y143{bottom:252.738933pt;}
.y1db{bottom:253.962667pt;}
.yaa{bottom:254.414133pt;}
.y26{bottom:254.569467pt;}
.y44{bottom:254.702800pt;}
.y101{bottom:256.198933pt;}
.y133{bottom:256.808267pt;}
.ybf{bottom:259.978400pt;}
.yda{bottom:263.747467pt;}
.y77{bottom:265.306533pt;}
.y1b0{bottom:266.902267pt;}
.y19c{bottom:266.907600pt;}
.y16a{bottom:268.621733pt;}
.y121{bottom:269.080800pt;}
.ya9{bottom:271.080800pt;}
.y43{bottom:271.369467pt;}
.y25{bottom:272.169467pt;}
.y100{bottom:272.865467pt;}
.y1da{bottom:274.408933pt;}
.y169{bottom:276.621733pt;}
.ybe{bottom:276.645200pt;}
.y142{bottom:279.205733pt;}
.yd9{bottom:280.414133pt;}
.y76{bottom:281.973200pt;}
.y19b{bottom:283.574267pt;}
.y16b{bottom:284.621733pt;}
.y120{bottom:285.747467pt;}
.ya8{bottom:287.747467pt;}
.y42{bottom:288.036133pt;}
.yff{bottom:289.532133pt;}
.y24{bottom:289.769467pt;}
.y1d9{bottom:291.075600pt;}
.ybd{bottom:293.311867pt;}
.yd8{bottom:297.080800pt;}
.y75{bottom:298.639867pt;}
.y19a{bottom:300.240933pt;}
.y11f{bottom:302.414133pt;}
.y41{bottom:304.702800pt;}
.y168{bottom:304.995467pt;}
.y141{bottom:305.672267pt;}
.yfe{bottom:306.198800pt;}
.y23{bottom:307.369467pt;}
.y1bf{bottom:309.978533pt;}
.y1d8{bottom:311.521733pt;}
.y165{bottom:312.995467pt;}
.yd7{bottom:313.747467pt;}
.ybc{bottom:313.758000pt;}
.y74{bottom:315.306533pt;}
.ya7{bottom:315.752800pt;}
.y199{bottom:316.907600pt;}
.y11e{bottom:319.080800pt;}
.y167{bottom:320.995467pt;}
.y40{bottom:321.369467pt;}
.yfd{bottom:322.865467pt;}
.y22{bottom:324.969467pt;}
.y1be{bottom:326.645200pt;}
.y1d7{bottom:328.188400pt;}
.y164{bottom:328.995467pt;}
.yd6{bottom:330.414133pt;}
.ybb{bottom:330.424667pt;}
.y140{bottom:332.138933pt;}
.y198{bottom:333.574267pt;}
.y11d{bottom:335.747467pt;}
.y73{bottom:335.752800pt;}
.y166{bottom:336.995467pt;}
.y3f{bottom:338.036133pt;}
.yfc{bottom:339.532133pt;}
.y21{bottom:342.569467pt;}
.y1bd{bottom:343.311867pt;}
.y1d6{bottom:344.855067pt;}
.yd5{bottom:347.080800pt;}
.ya6{bottom:347.091333pt;}
.y197{bottom:350.240933pt;}
.y11c{bottom:352.414133pt;}
.y72{bottom:352.419467pt;}
.y3e{bottom:354.702800pt;}
.yfb{bottom:356.198800pt;}
.y163{bottom:357.369200pt;}
.y13f{bottom:358.605733pt;}
.y20{bottom:360.169467pt;}
.y1d5{bottom:361.521733pt;}
.yd4{bottom:363.747467pt;}
.ya5{bottom:363.758000pt;}
.y160{bottom:365.369200pt;}
.y196{bottom:366.907600pt;}
.y11b{bottom:369.080800pt;}
.y71{bottom:369.086133pt;}
.y3d{bottom:371.369467pt;}
.yfa{bottom:372.865467pt;}
.y162{bottom:373.369200pt;}
.y1f{bottom:377.769467pt;}
.y1d4{bottom:378.188400pt;}
.yd3{bottom:380.414133pt;}
.ya4{bottom:380.424667pt;}
.y15f{bottom:381.369200pt;}
.y1af{bottom:383.574267pt;}
.y13e{bottom:385.072400pt;}
.y11a{bottom:385.747467pt;}
.y70{bottom:385.752800pt;}
.y195{bottom:387.353733pt;}
.y3c{bottom:388.036133pt;}
.y161{bottom:389.369200pt;}
.yf9{bottom:393.311733pt;}
.y1e{bottom:395.369467pt;}
.ya3{bottom:397.091333pt;}
.y1d3{bottom:398.634667pt;}
.y1ae{bottom:400.240933pt;}
.y119{bottom:402.414133pt;}
.y6f{bottom:402.419467pt;}
.y194{bottom:404.020400pt;}
.y3b{bottom:404.702800pt;}
.yd2{bottom:408.419467pt;}
.yf8{bottom:409.978400pt;}
.y13d{bottom:411.539067pt;}
.y15e{bottom:412.343467pt;}
.y1d{bottom:412.969467pt;}
.ya2{bottom:413.758000pt;}
.y1d2{bottom:415.301333pt;}
.y1ad{bottom:416.907600pt;}
.y118{bottom:419.080800pt;}
.y6e{bottom:419.086133pt;}
.y193{bottom:420.687067pt;}
.y3a{bottom:421.369467pt;}
.yf7{bottom:426.645067pt;}
.y15d{bottom:428.343467pt;}
.yd1{bottom:430.419467pt;}
.ya1{bottom:430.424667pt;}
.y1c{bottom:430.569467pt;}
.y1d1{bottom:431.968000pt;}
.y1ac{bottom:433.574267pt;}
.y117{bottom:435.747467pt;}
.y6d{bottom:435.752800pt;}
.y192{bottom:437.353733pt;}
.y13c{bottom:438.005733pt;}
.y39{bottom:438.036133pt;}
.yf6{bottom:443.311733pt;}
.ya0{bottom:447.091333pt;}
.y1b{bottom:448.169467pt;}
.y1d0{bottom:448.634667pt;}
.y1ab{bottom:450.240933pt;}
.y15c{bottom:451.698000pt;}
.y116{bottom:452.414133pt;}
.y6c{bottom:452.419467pt;}
.y191{bottom:454.020400pt;}
.y38{bottom:454.702800pt;}
.y159{bottom:459.698000pt;}
.yf5{bottom:459.978400pt;}
.y9f{bottom:463.758000pt;}
.y13b{bottom:464.472267pt;}
.y1cf{bottom:465.301333pt;}
.y1a{bottom:465.769467pt;}
.y1aa{bottom:466.907600pt;}
.y15b{bottom:467.698000pt;}
.y115{bottom:469.080800pt;}
.y6b{bottom:469.086133pt;}
.y190{bottom:470.687067pt;}
.y37{bottom:471.369467pt;}
.y158{bottom:475.698000pt;}
.yf4{bottom:476.645067pt;}
.yba{bottom:480.424667pt;}
.y19{bottom:483.369467pt;}
.y1a9{bottom:483.574267pt;}
.y15a{bottom:483.698000pt;}
.y9e{bottom:484.204133pt;}
.y114{bottom:485.747467pt;}
.y6a{bottom:485.752800pt;}
.y18f{bottom:487.353733pt;}
.y36{bottom:488.036133pt;}
.y13a{bottom:490.939067pt;}
.yf3{bottom:493.311733pt;}
.yb9{bottom:497.091333pt;}
.y9d{bottom:500.870800pt;}
.y18{bottom:500.969467pt;}
.y113{bottom:502.414133pt;}
.y69{bottom:502.419467pt;}
.y18e{bottom:504.020400pt;}
.y157{bottom:504.452133pt;}
.y35{bottom:504.702800pt;}
.y156{bottom:512.452133pt;}
.yb8{bottom:513.758000pt;}
.y139{bottom:517.405733pt;}
.y9c{bottom:517.537467pt;}
.y17{bottom:518.569467pt;}
.y112{bottom:519.080800pt;}
.y18d{bottom:520.687067pt;}
.y34{bottom:521.369467pt;}
.y68{bottom:522.865600pt;}
.yb7{bottom:530.424667pt;}
.y9b{bottom:534.204133pt;}
.y1ce{bottom:535.747467pt;}
.y1ed{bottom:535.752800pt;}
.y16{bottom:536.169467pt;}
.y18c{bottom:537.353733pt;}
.y33{bottom:538.036133pt;}
.y67{bottom:539.532267pt;}
.y138{bottom:541.159200pt;}
.y111{bottom:547.086000pt;}
.yb6{bottom:547.091333pt;}
.y9a{bottom:550.870800pt;}
.y1cd{bottom:552.414133pt;}
.y1ec{bottom:552.419467pt;}
.y15{bottom:553.769467pt;}
.y32{bottom:554.702800pt;}
.y66{bottom:556.198933pt;}
.y155{bottom:560.645200pt;}
.yb5{bottom:563.758000pt;}
.y18b{bottom:564.030533pt;}
.y14f{bottom:567.327600pt;}
.y99{bottom:567.537467pt;}
.y1cc{bottom:569.080800pt;}
.y1eb{bottom:569.086133pt;}
.y65{bottom:572.865600pt;}
.yf2{bottom:580.424667pt;}
.y14{bottom:582.708133pt;}
.y14e{bottom:583.994267pt;}
.y98{bottom:584.204133pt;}
.y1ea{bottom:585.752800pt;}
.y1cb{bottom:589.527067pt;}
.y64{bottom:589.532267pt;}
.y18a{bottom:592.177067pt;}
.yf1{bottom:597.091333pt;}
.y14d{bottom:600.660933pt;}
.y97{bottom:600.870800pt;}
.y1ca{bottom:606.193733pt;}
.y63{bottom:606.198933pt;}
.y13{bottom:609.045333pt;}
.yf0{bottom:613.757867pt;}
.y154{bottom:613.758000pt;}
.y189{bottom:614.843733pt;}
.y96{bottom:617.537467pt;}
.y1c9{bottom:622.860400pt;}
.y62{bottom:622.865600pt;}
.y12{bottom:625.045333pt;}
.y137{bottom:625.301867pt;}
.yef{bottom:630.424533pt;}
.y153{bottom:630.424667pt;}
.y95{bottom:634.204133pt;}
.y188{bottom:637.510400pt;}
.y136{bottom:638.635200pt;}
.y1c8{bottom:639.527067pt;}
.y61{bottom:639.532267pt;}
.y11{bottom:641.045333pt;}
.yee{bottom:647.091200pt;}
.y152{bottom:647.091333pt;}
.y94{bottom:650.870800pt;}
.y12c{bottom:651.968000pt;}
.y60{bottom:656.198933pt;}
.y1c7{bottom:659.973200pt;}
.y187{bottom:660.177067pt;}
.y10{bottom:661.485333pt;}
.yed{bottom:663.757867pt;}
.y151{bottom:663.758000pt;}
.y93{bottom:667.537467pt;}
.y5f{bottom:672.865600pt;}
.y1c6{bottom:676.639867pt;}
.yf{bottom:677.485333pt;}
.yec{bottom:680.424533pt;}
.y150{bottom:680.424667pt;}
.y186{bottom:682.843733pt;}
.y92{bottom:684.204133pt;}
.ye{bottom:689.045333pt;}
.y1e9{bottom:689.532267pt;}
.y1c5{bottom:693.306533pt;}
.y5e{bottom:693.311867pt;}
.y110{bottom:697.091200pt;}
.y91{bottom:700.870800pt;}
.y1bc{bottom:704.650400pt;}
.y185{bottom:705.510400pt;}
.yd{bottom:709.485333pt;}
.y1c4{bottom:709.973200pt;}
.y5d{bottom:709.978533pt;}
.y10f{bottom:713.757867pt;}
.y90{bottom:717.537467pt;}
.yc{bottom:721.045333pt;}
.y1bb{bottom:721.317067pt;}
.y1c3{bottom:726.639867pt;}
.y5c{bottom:726.645200pt;}
.y184{bottom:728.177067pt;}
.y10e{bottom:730.424533pt;}
.yd0{bottom:734.204133pt;}
.y8f{bottom:737.983733pt;}
.yb{bottom:741.485333pt;}
.y5b{bottom:743.311867pt;}
.y10d{bottom:747.091200pt;}
.y183{bottom:750.843733pt;}
.ycf{bottom:750.870800pt;}
.ya{bottom:753.045333pt;}
.y1c2{bottom:754.645200pt;}
.y8e{bottom:754.650400pt;}
.y5a{bottom:759.978533pt;}
.yce{bottom:767.537467pt;}
.y8d{bottom:771.317067pt;}
.y182{bottom:773.510400pt;}
.y59{bottom:776.645200pt;}
.ycd{bottom:784.204133pt;}
.y8c{bottom:787.983733pt;}
.y9{bottom:788.824933pt;}
.y58{bottom:793.311867pt;}
.y181{bottom:796.177067pt;}
.y1e8{bottom:797.091333pt;}
.ycc{bottom:800.870800pt;}
.y8b{bottom:804.650400pt;}
.y57{bottom:809.978533pt;}
.y1e7{bottom:813.758000pt;}
.ycb{bottom:817.537467pt;}
.y180{bottom:818.843733pt;}
.y8{bottom:820.824933pt;}
.y8a{bottom:821.317067pt;}
.y56{bottom:826.645200pt;}
.y1e6{bottom:830.424667pt;}
.yca{bottom:834.204133pt;}
.y89{bottom:837.983733pt;}
.y17f{bottom:841.510400pt;}
.y55{bottom:843.311867pt;}
.yeb{bottom:850.870800pt;}
.y7{bottom:852.824933pt;}
.y88{bottom:854.650400pt;}
.y54{bottom:859.978533pt;}
.y17e{bottom:863.363867pt;}
.yea{bottom:867.537467pt;}
.y87{bottom:871.317067pt;}
.y53{bottom:876.645200pt;}
.y6{bottom:882.158267pt;}
.ye9{bottom:884.204133pt;}
.y86{bottom:887.983733pt;}
.y52{bottom:893.311867pt;}
.y10c{bottom:900.870800pt;}
.ye8{bottom:904.650267pt;}
.y85{bottom:904.650400pt;}
.y4{bottom:909.621067pt;}
.y51{bottom:909.978533pt;}
.ye7{bottom:921.316933pt;}
.y84{bottom:921.317067pt;}
.y3{bottom:924.287733pt;}
.ye6{bottom:937.983600pt;}
.y50{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y4f{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h9{height:22.651979pt;}
.h11{height:31.083333pt;}
.he{height:38.008585pt;}
.hf{height:38.250184pt;}
.h10{height:38.520833pt;}
.hc{height:38.828125pt;}
.h4{height:38.854167pt;}
.h14{height:42.710938pt;}
.hb{height:42.739583pt;}
.h7{height:46.625000pt;}
.h3{height:48.151042pt;}
.ha{height:52.966146pt;}
.h2{height:54.395833pt;}
.h8{height:57.781250pt;}
.h6{height:67.411458pt;}
.h12{height:70.854167pt;}
.h13{height:102.854167pt;}
.h5{height:149.268229pt;}
.hd{height:279.653333pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w2{width:517.404000pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x38{left:13.475333pt;}
.x19{left:33.964400pt;}
.x1b{left:37.996800pt;}
.x5{left:38.944400pt;}
.x1a{left:63.390133pt;}
.x1{left:75.590533pt;}
.xb{left:77.870400pt;}
.xd{left:82.684800pt;}
.x45{left:86.431333pt;}
.x55{left:87.590533pt;}
.xf{left:88.886133pt;}
.x4a{left:90.262800pt;}
.x7{left:92.020800pt;}
.x1c{left:93.469867pt;}
.x16{left:94.488133pt;}
.x42{left:96.060267pt;}
.x1d{left:108.400454pt;}
.x3c{left:110.485200pt;}
.x3b{left:114.192933pt;}
.x52{left:119.312400pt;}
.x1e{left:123.443513pt;}
.x8{left:128.455067pt;}
.x3a{left:137.383467pt;}
.x1f{left:138.486571pt;}
.x53{left:140.442000pt;}
.xa{left:142.794400pt;}
.x20{left:153.417158pt;}
.x18{left:157.046667pt;}
.x48{left:158.472667pt;}
.x6{left:160.289067pt;}
.x46{left:161.802667pt;}
.x21{left:168.460217pt;}
.x49{left:174.029333pt;}
.x22{left:183.503276pt;}
.x23{left:198.546334pt;}
.x17{left:201.581333pt;}
.x11{left:204.999067pt;}
.x24{left:213.476922pt;}
.xe{left:215.676400pt;}
.x25{left:228.519980pt;}
.x39{left:236.208933pt;}
.x26{left:243.563039pt;}
.x10{left:248.589867pt;}
.x47{left:254.046000pt;}
.x27{left:258.493626pt;}
.x43{left:263.323333pt;}
.x4b{left:267.883867pt;}
.x28{left:273.536685pt;}
.x41{left:281.750667pt;}
.x29{left:288.579743pt;}
.x2a{left:303.510331pt;}
.x51{left:308.651733pt;}
.x2b{left:318.553389pt;}
.x50{left:330.666667pt;}
.x2c{left:333.596448pt;}
.x2d{left:348.527035pt;}
.x4c{left:353.593200pt;}
.x9{left:358.830133pt;}
.x2e{left:363.570094pt;}
.xc{left:367.929067pt;}
.x2f{left:378.613153pt;}
.x4f{left:390.316933pt;}
.x30{left:393.543740pt;}
.x31{left:408.586798pt;}
.x14{left:423.748000pt;}
.x54{left:435.748000pt;}
.x32{left:438.672916pt;}
.x4d{left:441.378933pt;}
.x13{left:442.645733pt;}
.x4e{left:446.561333pt;}
.x3{left:452.233600pt;}
.x33{left:453.603503pt;}
.x34{left:468.646562pt;}
.x35{left:483.689620pt;}
.x4{left:487.995333pt;}
.x36{left:498.620207pt;}
.x37{left:513.663266pt;}
.x3e{left:523.707600pt;}
.x12{left:549.497067pt;}
.x40{left:587.974533pt;}
.x3f{left:626.066933pt;}
.x44{left:677.641600pt;}
.x2{left:689.238800pt;}
.x15{left:735.142533pt;}
.x3d{left:752.942000pt;}
}




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