
    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_989e4d8e857d4ccbd48ef9fd.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_97a55b80ab78bd4cf0d24fe8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_2ff1320dfd682945168b9592.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_46445d5f08fe6643930b6b2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.860000;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_e7fdce07558cfee47d5e48d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860000;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_3a58d304330616fad4c53aa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.728027;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_16575adc45a92f2686b60cc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d686b0f31e173f9b1481a014.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b8d7b3207dd976a9935fbe50.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0032160b3473fdf8645c2646.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.872559;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:ffb;src:url('chunks/assets/font_ab525b107d8f2df161f15cf0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_721dc94b1e08baaae9e72112.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.794000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.941600px;}
.ls1c{letter-spacing:-2.940000px;}
.ls18{letter-spacing:-2.820000px;}
.ls1e{letter-spacing:-2.640000px;}
.ls2{letter-spacing:-2.304000px;}
.lsc{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.404000px;}
.ls16{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004296px;}
.lsd{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.324000px;}
.ls2b{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.528000px;}
.ls23{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.588000px;}
.ls28{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.672000px;}
.ls14{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.918000px;}
.ls4{letter-spacing:0.960000px;}
.ls24{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.320000px;}
.ls1b{letter-spacing:1.500000px;}
.ls3{letter-spacing:1.680000px;}
.ls26{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.700000px;}
.ls1a{letter-spacing:3.000000px;}
.ls20{letter-spacing:30.888000px;}
.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;}
}
.ws4{word-spacing:-27.360000px;}
.wsea{word-spacing:-16.800000px;}
.ws1a{word-spacing:-16.740000px;}
.ws51{word-spacing:-16.680000px;}
.ws1b{word-spacing:-16.440000px;}
.wseb{word-spacing:-16.320000px;}
.ws140{word-spacing:-15.504000px;}
.ws2{word-spacing:-15.282000px;}
.ws3{word-spacing:-15.120000px;}
.ws13e{word-spacing:-14.640000px;}
.ws1{word-spacing:-14.304000px;}
.ws141{word-spacing:-13.872000px;}
.ws0{word-spacing:-13.776000px;}
.wsec{word-spacing:-13.740000px;}
.ws143{word-spacing:-13.728000px;}
.ws13f{word-spacing:-13.632000px;}
.ws142{word-spacing:-13.536000px;}
.wsf3{word-spacing:-8.280000px;}
.ws44{word-spacing:-5.760000px;}
.wsde{word-spacing:-5.460000px;}
.ws82{word-spacing:-5.220000px;}
.wsaf{word-spacing:-4.860000px;}
.wsb0{word-spacing:-3.960000px;}
.ws11f{word-spacing:-3.360000px;}
.ws81{word-spacing:-3.300000px;}
.wsa6{word-spacing:-3.120000px;}
.wsf{word-spacing:-3.072000px;}
.wscb{word-spacing:-3.060000px;}
.ws7f{word-spacing:-2.700000px;}
.ws35{word-spacing:-2.520000px;}
.wsa8{word-spacing:-2.400000px;}
.wsf2{word-spacing:-2.340000px;}
.ws11b{word-spacing:-2.160000px;}
.ws13b{word-spacing:-2.040000px;}
.wsa2{word-spacing:-1.980000px;}
.ws2c{word-spacing:-1.920000px;}
.ws8a{word-spacing:-1.860000px;}
.ws86{word-spacing:-1.800000px;}
.ws7{word-spacing:-1.680000px;}
.ws95{word-spacing:-1.620000px;}
.ws18{word-spacing:-1.536000px;}
.ws7b{word-spacing:-1.380000px;}
.ws21{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.200000px;}
.ws67{word-spacing:-1.020000px;}
.ws11{word-spacing:-0.918000px;}
.ws8f{word-spacing:-0.780000px;}
.ws3a{word-spacing:-0.720000px;}
.ws148{word-spacing:-0.672000px;}
.ws146{word-spacing:-0.624000px;}
.ws26{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.588000px;}
.ws145{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.480000px;}
.ws52{word-spacing:-0.432000px;}
.ws144{word-spacing:-0.324000px;}
.ws22{word-spacing:-0.300000px;}
.ws147{word-spacing:-0.288000px;}
.wse6{word-spacing:-0.180000px;}
.ws76{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsed{word-spacing:0.060000px;}
.wsb1{word-spacing:0.120000px;}
.ws19{word-spacing:0.144000px;}
.ws16{word-spacing:0.192000px;}
.ws2a{word-spacing:0.240000px;}
.ws8{word-spacing:0.360000px;}
.ws12{word-spacing:0.420000px;}
.ws15{word-spacing:0.528000px;}
.wsab{word-spacing:0.540000px;}
.ws2d{word-spacing:0.600000px;}
.ws5b{word-spacing:0.660000px;}
.wse{word-spacing:0.672000px;}
.ws8e{word-spacing:0.780000px;}
.ws63{word-spacing:0.840000px;}
.ws124{word-spacing:0.900000px;}
.ws122{word-spacing:0.960000px;}
.ws2b{word-spacing:1.080000px;}
.ws5f{word-spacing:1.200000px;}
.wse4{word-spacing:1.260000px;}
.wsb7{word-spacing:1.320000px;}
.wsbc{word-spacing:1.326000px;}
.wsf0{word-spacing:1.440000px;}
.wsef{word-spacing:1.500000px;}
.ws149{word-spacing:1.620000px;}
.ws103{word-spacing:1.680000px;}
.ws74{word-spacing:1.740000px;}
.wsc7{word-spacing:1.800000px;}
.ws107{word-spacing:1.860000px;}
.ws49{word-spacing:2.100000px;}
.ws91{word-spacing:2.160000px;}
.ws45{word-spacing:2.280000px;}
.ws6{word-spacing:2.304000px;}
.ws6c{word-spacing:2.520000px;}
.wsce{word-spacing:2.640000px;}
.ws96{word-spacing:2.820000px;}
.ws66{word-spacing:2.940000px;}
.ws120{word-spacing:3.000000px;}
.ws6a{word-spacing:3.060000px;}
.ws106{word-spacing:3.240000px;}
.ws30{word-spacing:3.540000px;}
.ws87{word-spacing:3.600000px;}
.wsf4{word-spacing:3.660000px;}
.ws73{word-spacing:3.840000px;}
.wsc2{word-spacing:4.200000px;}
.wscc{word-spacing:4.260000px;}
.ws75{word-spacing:4.320000px;}
.ws14{word-spacing:4.416000px;}
.ws84{word-spacing:4.800000px;}
.ws13{word-spacing:4.848000px;}
.ws11d{word-spacing:5.100000px;}
.ws53{word-spacing:5.160000px;}
.wsfd{word-spacing:5.220000px;}
.ws90{word-spacing:5.280000px;}
.wsa3{word-spacing:5.400000px;}
.wsdd{word-spacing:5.580000px;}
.wsba{word-spacing:5.700000px;}
.wsb{word-spacing:5.808000px;}
.wsa4{word-spacing:5.820000px;}
.ws12e{word-spacing:5.940000px;}
.ws25{word-spacing:6.000000px;}
.ws69{word-spacing:6.180000px;}
.ws7c{word-spacing:6.300000px;}
.ws68{word-spacing:6.600000px;}
.wsbe{word-spacing:6.780000px;}
.wsd{word-spacing:6.816000px;}
.wsc5{word-spacing:6.840000px;}
.ws119{word-spacing:6.900000px;}
.ws60{word-spacing:6.960000px;}
.ws109{word-spacing:7.020000px;}
.ws56{word-spacing:7.140000px;}
.wsdc{word-spacing:7.260000px;}
.ws70{word-spacing:7.320000px;}
.ws2f{word-spacing:7.380000px;}
.wsae{word-spacing:7.440000px;}
.ws14b{word-spacing:7.800000px;}
.ws17{word-spacing:7.872000px;}
.wsfc{word-spacing:7.920000px;}
.ws78{word-spacing:7.980000px;}
.ws23{word-spacing:8.040000px;}
.ws10f{word-spacing:8.100000px;}
.ws80{word-spacing:8.220000px;}
.wsb8{word-spacing:8.400000px;}
.ws43{word-spacing:8.460000px;}
.ws97{word-spacing:8.820000px;}
.ws77{word-spacing:9.060000px;}
.ws125{word-spacing:9.300000px;}
.wsd7{word-spacing:9.360000px;}
.ws65{word-spacing:9.480000px;}
.ws31{word-spacing:9.540000px;}
.wse8{word-spacing:9.600000px;}
.ws113{word-spacing:9.720000px;}
.ws58{word-spacing:10.020000px;}
.wscd{word-spacing:10.140000px;}
.ws93{word-spacing:10.200000px;}
.wsb6{word-spacing:10.260000px;}
.ws11a{word-spacing:10.320000px;}
.wsf7{word-spacing:10.440000px;}
.ws6e{word-spacing:10.680000px;}
.wsc1{word-spacing:10.740000px;}
.ws29{word-spacing:10.860000px;}
.ws5e{word-spacing:10.920000px;}
.wsfe{word-spacing:10.980000px;}
.ws46{word-spacing:11.040000px;}
.wsb5{word-spacing:11.340000px;}
.wsad{word-spacing:11.400000px;}
.ws115{word-spacing:11.460000px;}
.ws3d{word-spacing:11.580000px;}
.wsff{word-spacing:11.880000px;}
.ws136{word-spacing:11.940000px;}
.wsb9{word-spacing:12.000000px;}
.wsbb{word-spacing:12.060000px;}
.ws39{word-spacing:12.120000px;}
.ws139{word-spacing:12.180000px;}
.ws32{word-spacing:12.240000px;}
.wsa{word-spacing:12.336000px;}
.ws14e{word-spacing:12.600000px;}
.ws85{word-spacing:12.660000px;}
.ws7e{word-spacing:12.720000px;}
.ws1d{word-spacing:12.900000px;}
.ws5d{word-spacing:13.260000px;}
.ws11e{word-spacing:13.440000px;}
.wsd0{word-spacing:13.560000px;}
.ws4e{word-spacing:13.680000px;}
.ws57{word-spacing:13.800000px;}
.ws114{word-spacing:13.860000px;}
.ws33{word-spacing:14.340000px;}
.ws2e{word-spacing:14.520000px;}
.ws59{word-spacing:14.580000px;}
.ws4f{word-spacing:14.640000px;}
.ws71{word-spacing:14.760000px;}
.wse1{word-spacing:14.880000px;}
.ws8b{word-spacing:14.940000px;}
.ws104{word-spacing:15.060000px;}
.wsb4{word-spacing:15.120000px;}
.ws112{word-spacing:15.180000px;}
.ws47{word-spacing:15.420000px;}
.wsa7{word-spacing:15.660000px;}
.wsc4{word-spacing:15.720000px;}
.ws9a{word-spacing:15.840000px;}
.ws3c{word-spacing:15.900000px;}
.ws9d{word-spacing:16.020000px;}
.ws99{word-spacing:16.140000px;}
.wsf5{word-spacing:16.200000px;}
.ws10b{word-spacing:16.440000px;}
.ws98{word-spacing:16.560000px;}
.ws42{word-spacing:16.920000px;}
.wsd4{word-spacing:17.040000px;}
.ws5a{word-spacing:17.160000px;}
.wsf1{word-spacing:17.340000px;}
.wsc{word-spacing:17.664000px;}
.ws48{word-spacing:18.180000px;}
.wse9{word-spacing:18.240000px;}
.wsc9{word-spacing:18.300000px;}
.ws6d{word-spacing:18.420000px;}
.wse7{word-spacing:18.540000px;}
.ws130{word-spacing:18.600000px;}
.ws34{word-spacing:18.780000px;}
.ws108{word-spacing:19.200000px;}
.ws27{word-spacing:19.440000px;}
.wsf8{word-spacing:19.560000px;}
.wsc3{word-spacing:19.680000px;}
.ws102{word-spacing:19.860000px;}
.wsda{word-spacing:20.040000px;}
.wsc6{word-spacing:20.220000px;}
.wsa1{word-spacing:20.400000px;}
.ws105{word-spacing:20.520000px;}
.ws14a{word-spacing:20.580000px;}
.ws127{word-spacing:20.640000px;}
.wse0{word-spacing:20.700000px;}
.wsaa{word-spacing:21.420000px;}
.wsee{word-spacing:21.720000px;}
.ws8c{word-spacing:21.960000px;}
.ws20{word-spacing:22.200000px;}
.ws12c{word-spacing:22.320000px;}
.ws1f{word-spacing:22.380000px;}
.wsf9{word-spacing:22.440000px;}
.wsac{word-spacing:22.560000px;}
.wsd8{word-spacing:22.680000px;}
.ws10d{word-spacing:22.860000px;}
.wsbf{word-spacing:23.100000px;}
.ws10a{word-spacing:23.160000px;}
.ws37{word-spacing:23.280000px;}
.ws92{word-spacing:23.580000px;}
.ws38{word-spacing:23.700000px;}
.wsc8{word-spacing:23.760000px;}
.ws4d{word-spacing:23.880000px;}
.wsfb{word-spacing:23.940000px;}
.ws132{word-spacing:24.120000px;}
.ws4a{word-spacing:24.240000px;}
.ws72{word-spacing:24.300000px;}
.ws41{word-spacing:24.540000px;}
.wsdb{word-spacing:24.840000px;}
.wsc0{word-spacing:24.960000px;}
.ws12a{word-spacing:25.020000px;}
.ws13c{word-spacing:25.320000px;}
.ws14d{word-spacing:25.440000px;}
.wsd6{word-spacing:25.680000px;}
.ws110{word-spacing:26.100000px;}
.ws61{word-spacing:26.640000px;}
.wsdf{word-spacing:26.700000px;}
.ws8d{word-spacing:26.820000px;}
.wse3{word-spacing:27.000000px;}
.ws6b{word-spacing:27.180000px;}
.ws79{word-spacing:27.300000px;}
.ws6f{word-spacing:27.660000px;}
.ws13d{word-spacing:28.440000px;}
.ws100{word-spacing:28.500000px;}
.ws14c{word-spacing:28.980000px;}
.ws117{word-spacing:29.220000px;}
.ws1e{word-spacing:29.340000px;}
.ws123{word-spacing:29.520000px;}
.ws89{word-spacing:29.580000px;}
.ws131{word-spacing:30.120000px;}
.ws11c{word-spacing:30.180000px;}
.ws4b{word-spacing:30.780000px;}
.ws24{word-spacing:31.440000px;}
.ws137{word-spacing:31.500000px;}
.ws55{word-spacing:31.860000px;}
.ws134{word-spacing:32.280000px;}
.ws64{word-spacing:32.520000px;}
.ws10e{word-spacing:32.760000px;}
.wsa0{word-spacing:33.120000px;}
.ws5c{word-spacing:33.180000px;}
.ws9f{word-spacing:35.160000px;}
.ws12d{word-spacing:35.280000px;}
.ws10c{word-spacing:35.640000px;}
.wsa9{word-spacing:36.360000px;}
.ws128{word-spacing:36.600000px;}
.ws3e{word-spacing:36.840000px;}
.wsa5{word-spacing:37.800000px;}
.ws36{word-spacing:37.920000px;}
.ws121{word-spacing:38.700000px;}
.ws4c{word-spacing:39.300000px;}
.wsd1{word-spacing:40.260000px;}
.ws9c{word-spacing:40.800000px;}
.ws101{word-spacing:40.860000px;}
.ws9e{word-spacing:42.000000px;}
.wsf6{word-spacing:42.120000px;}
.wsfa{word-spacing:42.180000px;}
.ws62{word-spacing:43.080000px;}
.ws126{word-spacing:43.440000px;}
.ws3b{word-spacing:43.740000px;}
.ws13a{word-spacing:45.000000px;}
.ws111{word-spacing:45.240000px;}
.wsb2{word-spacing:45.780000px;}
.ws12b{word-spacing:47.520000px;}
.ws3f{word-spacing:47.700000px;}
.ws118{word-spacing:47.760000px;}
.ws88{word-spacing:47.940000px;}
.wsd3{word-spacing:48.960000px;}
.wsca{word-spacing:51.480000px;}
.ws94{word-spacing:52.440000px;}
.ws83{word-spacing:53.400000px;}
.wsd2{word-spacing:54.540000px;}
.wsbd{word-spacing:54.900000px;}
.ws7a{word-spacing:55.200000px;}
.ws138{word-spacing:55.800000px;}
.ws7d{word-spacing:56.100000px;}
.ws28{word-spacing:57.120000px;}
.ws40{word-spacing:57.960000px;}
.ws135{word-spacing:58.440000px;}
.ws116{word-spacing:65.880000px;}
.wsd5{word-spacing:68.100000px;}
.wse5{word-spacing:68.280000px;}
.ws9b{word-spacing:69.060000px;}
.wsb3{word-spacing:71.760000px;}
.wscf{word-spacing:74.760000px;}
.ws12f{word-spacing:78.060000px;}
.ws129{word-spacing:82.920000px;}
.wsd9{word-spacing:88.740000px;}
.wse2{word-spacing:91.920000px;}
.ws133{word-spacing:110.040000px;}
.ws50{word-spacing:609.316800px;}
._8{margin-left:-14.094000px;}
._7{margin-left:-6.583200px;}
._6{margin-left:-4.755600px;}
._3{margin-left:-3.720000px;}
._5{margin-left:-2.701200px;}
._2{margin-left:-1.492800px;}
._0{width:1.646400px;}
._1{width:3.297600px;}
._4{width:5.140800px;}
._d{width:9.153600px;}
._c{width:11.578800px;}
._9{width:13.638000px;}
._f{width:18.876000px;}
._e{width:20.028000px;}
._a{width:21.820800px;}
._10{width:31.075200px;}
._b{width:32.932800px;}
._11{width:1069.104000px;}
.fc4{color:rgb(25,26,30);}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs6{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.259800px;}
.y20{bottom:75.813150px;}
.y21{bottom:76.005150px;}
.y5e{bottom:76.188150px;}
.yff{bottom:128.525550px;}
.y1e{bottom:132.065400px;}
.yc0{bottom:135.693450px;}
.y7e{bottom:140.705550px;}
.y9e{bottom:142.893450px;}
.y174{bottom:143.210550px;}
.y124{bottom:143.240550px;}
.y5c{bottom:145.731000px;}
.y1d{bottom:146.465400px;}
.yfe{bottom:147.275550px;}
.yde{bottom:150.569250px;}
.ybf{bottom:154.443450px;}
.y7d{bottom:159.455550px;}
.y9d{bottom:161.643450px;}
.y173{bottom:161.960550px;}
.y123{bottom:161.990550px;}
.y5b{bottom:164.481000px;}
.yfd{bottom:166.025550px;}
.y1ac{bottom:166.426800px;}
.ydd{bottom:169.319250px;}
.y9c{bottom:180.393450px;}
.y6f{bottom:180.710550px;}
.y122{bottom:180.740550px;}
.y158{bottom:183.209250px;}
.y7a{bottom:183.215550px;}
.y5a{bottom:183.231000px;}
.ydc{bottom:188.069250px;}
.ybe{bottom:194.448450px;}
.y9b{bottom:199.143450px;}
.y7c{bottom:199.460550px;}
.y193{bottom:199.490550px;}
.y157{bottom:201.959250px;}
.y79{bottom:201.965550px;}
.y59{bottom:201.981000px;}
.y1c{bottom:203.385150px;}
.yfc{bottom:206.030550px;}
.ydb{bottom:206.819250px;}
.y9a{bottom:217.893450px;}
.y172{bottom:218.210550px;}
.y192{bottom:218.240550px;}
.y156{bottom:220.709250px;}
.y6e{bottom:220.715550px;}
.y58{bottom:220.731000px;}
.y121{bottom:220.745550px;}
.yfb{bottom:224.780550px;}
.yda{bottom:225.569250px;}
.y1b{bottom:228.089100px;}
.y1ab{bottom:231.850800px;}
.ybd{bottom:234.453450px;}
.y99{bottom:236.643450px;}
.y36{bottom:236.946000px;}
.y171{bottom:236.960550px;}
.y191{bottom:236.990550px;}
.y155{bottom:239.459250px;}
.y6d{bottom:239.465550px;}
.y57{bottom:239.481000px;}
.y120{bottom:239.495550px;}
.y1a{bottom:242.489100px;}
.yfa{bottom:243.530550px;}
.yd9{bottom:244.319250px;}
.y1aa{bottom:246.250800px;}
.ybc{bottom:253.203450px;}
.y98{bottom:255.393450px;}
.y170{bottom:255.710550px;}
.y190{bottom:255.740550px;}
.y19{bottom:256.889100px;}
.y154{bottom:258.209250px;}
.y6c{bottom:258.215550px;}
.y56{bottom:258.231000px;}
.y11f{bottom:258.245550px;}
.yf9{bottom:262.280550px;}
.yd8{bottom:263.069250px;}
.y1a9{bottom:264.646800px;}
.y18{bottom:271.289100px;}
.ybb{bottom:271.953450px;}
.y97{bottom:274.143450px;}
.y16f{bottom:274.460550px;}
.y18f{bottom:274.490550px;}
.y153{bottom:276.959250px;}
.y35{bottom:276.965400px;}
.y6b{bottom:276.965550px;}
.y55{bottom:276.981000px;}
.y11e{bottom:276.995550px;}
.yf8{bottom:281.030550px;}
.yd7{bottom:281.819250px;}
.y17{bottom:285.689100px;}
.yba{bottom:290.703450px;}
.y1a8{bottom:292.058700px;}
.y96{bottom:292.893450px;}
.y16e{bottom:293.210550px;}
.y18e{bottom:293.240550px;}
.y152{bottom:295.709250px;}
.y34{bottom:295.715400px;}
.y6a{bottom:295.715550px;}
.y54{bottom:295.731000px;}
.y11d{bottom:295.745550px;}
.yf7{bottom:299.780550px;}
.y16{bottom:300.089100px;}
.yd6{bottom:300.569250px;}
.yb9{bottom:309.453450px;}
.y95{bottom:311.643450px;}
.y16d{bottom:311.960550px;}
.y18d{bottom:311.990550px;}
.y151{bottom:314.459250px;}
.y33{bottom:314.465400px;}
.y69{bottom:314.465550px;}
.y53{bottom:314.481000px;}
.y15{bottom:314.489100px;}
.y11c{bottom:314.495550px;}
.yd5{bottom:319.319250px;}
.yb8{bottom:328.203450px;}
.y14{bottom:328.889100px;}
.y94{bottom:330.393450px;}
.y16c{bottom:330.710550px;}
.y18c{bottom:330.740550px;}
.y150{bottom:333.209250px;}
.y32{bottom:333.215400px;}
.y68{bottom:333.215550px;}
.y52{bottom:333.231000px;}
.y11b{bottom:333.245550px;}
.yd4{bottom:338.069250px;}
.yf6{bottom:339.785550px;}
.y13{bottom:347.541150px;}
.y93{bottom:349.143450px;}
.y16b{bottom:349.460550px;}
.y18b{bottom:349.490550px;}
.y1a7{bottom:350.745900px;}
.y14f{bottom:351.959250px;}
.y31{bottom:351.965400px;}
.y67{bottom:351.965550px;}
.y90{bottom:351.980550px;}
.y51{bottom:351.981000px;}
.yf5{bottom:358.535550px;}
.y1a6{bottom:365.145900px;}
.y92{bottom:367.893450px;}
.yb7{bottom:368.208450px;}
.y18a{bottom:368.240550px;}
.y14e{bottom:370.709250px;}
.y30{bottom:370.715400px;}
.y66{bottom:370.715550px;}
.y8f{bottom:370.730550px;}
.y50{bottom:370.731000px;}
.y11a{bottom:373.250550px;}
.yf4{bottom:377.285550px;}
.yd3{bottom:378.074250px;}
.y189{bottom:386.990550px;}
.y1a5{bottom:388.053900px;}
.y14d{bottom:389.459250px;}
.y2f{bottom:389.465400px;}
.y65{bottom:389.465550px;}
.y8e{bottom:389.480550px;}
.y4f{bottom:389.481000px;}
.y119{bottom:392.000550px;}
.yf3{bottom:396.035550px;}
.y12{bottom:397.756800px;}
.y1a4{bottom:402.453900px;}
.y188{bottom:405.740550px;}
.y91{bottom:407.898450px;}
.y14c{bottom:408.209250px;}
.yb6{bottom:408.213450px;}
.y2e{bottom:408.215400px;}
.y64{bottom:408.215550px;}
.y8d{bottom:408.230550px;}
.y4e{bottom:408.231000px;}
.y118{bottom:410.750550px;}
.y134{bottom:413.234250px;}
.yf2{bottom:414.785550px;}
.yd2{bottom:418.079250px;}
.y187{bottom:424.490550px;}
.y1a3{bottom:425.361900px;}
.y14b{bottom:426.959250px;}
.yb5{bottom:426.963450px;}
.y2d{bottom:426.965400px;}
.y63{bottom:426.965550px;}
.y8c{bottom:426.980550px;}
.y4d{bottom:426.981000px;}
.y117{bottom:429.500550px;}
.y133{bottom:431.984250px;}
.yf1{bottom:433.535550px;}
.yd1{bottom:436.829250px;}
.y1a2{bottom:439.761900px;}
.y14a{bottom:445.709250px;}
.yb4{bottom:445.713450px;}
.y2c{bottom:445.715400px;}
.y16a{bottom:445.715550px;}
.y8b{bottom:445.730550px;}
.y4c{bottom:445.731000px;}
.y78{bottom:448.220550px;}
.y116{bottom:448.250550px;}
.y132{bottom:450.734250px;}
.yf0{bottom:452.285550px;}
.yd0{bottom:455.579250px;}
.y11{bottom:456.972600px;}
.y1a1{bottom:462.669900px;}
.yb3{bottom:464.463450px;}
.y2b{bottom:464.465400px;}
.y169{bottom:464.465550px;}
.y8a{bottom:464.480550px;}
.y4b{bottom:464.481000px;}
.y186{bottom:464.495550px;}
.y62{bottom:466.970550px;}
.ycb{bottom:466.979250px;}
.y115{bottom:467.000550px;}
.y131{bottom:469.484250px;}
.yef{bottom:471.035550px;}
.ycf{bottom:474.329250px;}
.y1a0{bottom:477.069900px;}
.y10{bottom:481.676550px;}
.yb2{bottom:483.213450px;}
.y2a{bottom:483.215400px;}
.y168{bottom:483.215550px;}
.y89{bottom:483.230550px;}
.y4a{bottom:483.231000px;}
.y185{bottom:483.245550px;}
.y149{bottom:485.714250px;}
.y114{bottom:485.750550px;}
.y130{bottom:488.234250px;}
.yce{bottom:493.079250px;}
.yf{bottom:496.076550px;}
.y19f{bottom:499.977900px;}
.yb1{bottom:501.963450px;}
.y29{bottom:501.965400px;}
.y167{bottom:501.965550px;}
.y88{bottom:501.980550px;}
.y49{bottom:501.981000px;}
.y184{bottom:501.995550px;}
.y148{bottom:504.464250px;}
.y113{bottom:504.500550px;}
.y12f{bottom:506.984250px;}
.ye{bottom:510.476550px;}
.yee{bottom:511.040550px;}
.ycd{bottom:511.829250px;}
.y19e{bottom:514.377900px;}
.yb0{bottom:520.713450px;}
.y28{bottom:520.715400px;}
.y166{bottom:520.715550px;}
.y87{bottom:520.730550px;}
.y48{bottom:520.731000px;}
.y183{bottom:520.745550px;}
.y147{bottom:523.214250px;}
.y112{bottom:523.250550px;}
.yd{bottom:524.876550px;}
.y12e{bottom:525.734250px;}
.yed{bottom:529.790550px;}
.ycc{bottom:530.579250px;}
.y19d{bottom:537.285900px;}
.yc{bottom:539.276550px;}
.yaf{bottom:539.463450px;}
.y165{bottom:539.465550px;}
.y86{bottom:539.480550px;}
.y47{bottom:539.481000px;}
.y182{bottom:539.495550px;}
.y146{bottom:541.964250px;}
.y111{bottom:542.000550px;}
.y12d{bottom:544.484250px;}
.yec{bottom:548.540550px;}
.y19c{bottom:551.685900px;}
.yb{bottom:553.676550px;}
.yae{bottom:558.213450px;}
.y164{bottom:558.215550px;}
.y85{bottom:558.230550px;}
.y181{bottom:558.245550px;}
.y145{bottom:560.714250px;}
.y110{bottom:560.750550px;}
.y12c{bottom:563.234250px;}
.yeb{bottom:567.290550px;}
.ya{bottom:568.076550px;}
.y19b{bottom:574.593900px;}
.yad{bottom:576.963450px;}
.y163{bottom:576.965550px;}
.y84{bottom:576.980550px;}
.y180{bottom:576.995550px;}
.y144{bottom:579.464250px;}
.y46{bottom:579.486000px;}
.y10f{bottom:579.500550px;}
.y12b{bottom:581.984250px;}
.y9{bottom:582.476550px;}
.yea{bottom:586.040550px;}
.y19a{bottom:588.993900px;}
.yac{bottom:595.713450px;}
.y162{bottom:595.715550px;}
.y17f{bottom:595.745550px;}
.y143{bottom:598.214250px;}
.y12a{bottom:600.734250px;}
.y8{bottom:601.128450px;}
.ye9{bottom:604.790550px;}
.y199{bottom:611.901900px;}
.yab{bottom:614.463450px;}
.y161{bottom:614.465550px;}
.y17e{bottom:614.495550px;}
.y142{bottom:616.964250px;}
.y83{bottom:616.985550px;}
.y129{bottom:619.484250px;}
.y45{bottom:619.491000px;}
.y10e{bottom:619.505550px;}
.ye8{bottom:623.540550px;}
.y198{bottom:626.301900px;}
.y160{bottom:633.215550px;}
.y17d{bottom:633.245550px;}
.y141{bottom:635.714250px;}
.y128{bottom:638.234250px;}
.y44{bottom:638.241000px;}
.y10d{bottom:638.255550px;}
.ye7{bottom:642.290550px;}
.y197{bottom:649.209900px;}
.y7{bottom:651.344250px;}
.y15f{bottom:651.965550px;}
.yaa{bottom:654.468450px;}
.y127{bottom:656.984250px;}
.y43{bottom:656.991000px;}
.y10c{bottom:657.005550px;}
.ye6{bottom:661.040550px;}
.y196{bottom:663.609900px;}
.y6{bottom:668.196150px;}
.y17c{bottom:673.250550px;}
.y140{bottom:675.719250px;}
.y126{bottom:675.734250px;}
.y42{bottom:675.741000px;}
.y10b{bottom:675.755550px;}
.y195{bottom:678.009900px;}
.ye5{bottom:679.790550px;}
.y15e{bottom:691.970550px;}
.y17b{bottom:692.000550px;}
.y13f{bottom:694.469250px;}
.ya9{bottom:694.473450px;}
.y77{bottom:694.475550px;}
.y125{bottom:694.484250px;}
.y41{bottom:694.491000px;}
.y10a{bottom:694.505550px;}
.ye4{bottom:698.540550px;}
.y194{bottom:709.417800px;}
.y15d{bottom:710.720550px;}
.y17a{bottom:710.750550px;}
.y13e{bottom:713.219250px;}
.ya8{bottom:713.223450px;}
.y76{bottom:713.225550px;}
.yca{bottom:713.234250px;}
.y40{bottom:713.241000px;}
.y109{bottom:713.255550px;}
.y5{bottom:723.811950px;}
.y15c{bottom:729.470550px;}
.y179{bottom:729.500550px;}
.y13d{bottom:731.969250px;}
.ya7{bottom:731.973450px;}
.y75{bottom:731.975550px;}
.yc9{bottom:731.984250px;}
.y3f{bottom:731.991000px;}
.y108{bottom:732.005550px;}
.ye3{bottom:742.802250px;}
.y15b{bottom:748.220550px;}
.y178{bottom:748.250550px;}
.y13c{bottom:750.719250px;}
.ya6{bottom:750.723450px;}
.y74{bottom:750.725550px;}
.yc8{bottom:750.734250px;}
.y3e{bottom:750.741000px;}
.y107{bottom:750.755550px;}
.y27{bottom:766.970400px;}
.y15a{bottom:766.970550px;}
.y177{bottom:767.000550px;}
.y13b{bottom:769.469250px;}
.ya5{bottom:769.473450px;}
.y73{bottom:769.475550px;}
.yc7{bottom:769.484250px;}
.y3d{bottom:769.491000px;}
.y106{bottom:769.505550px;}
.y159{bottom:785.720550px;}
.y176{bottom:785.750550px;}
.y13a{bottom:788.219250px;}
.ya4{bottom:788.223450px;}
.y72{bottom:788.225550px;}
.yc6{bottom:788.234250px;}
.y3c{bottom:788.241000px;}
.y1b2{bottom:788.243100px;}
.y105{bottom:788.255550px;}
.y7b{bottom:804.470550px;}
.ye2{bottom:804.474900px;}
.y175{bottom:804.500550px;}
.y139{bottom:806.969250px;}
.ya3{bottom:806.973450px;}
.y26{bottom:806.975400px;}
.y71{bottom:806.975550px;}
.yc5{bottom:806.984250px;}
.y3b{bottom:806.991000px;}
.y1b1{bottom:806.993100px;}
.y104{bottom:807.005550px;}
.y138{bottom:825.719250px;}
.ya2{bottom:825.723450px;}
.y25{bottom:825.725400px;}
.y70{bottom:825.725550px;}
.yc4{bottom:825.734250px;}
.y82{bottom:825.740550px;}
.y3a{bottom:825.741000px;}
.y1b0{bottom:825.743100px;}
.y103{bottom:825.755550px;}
.y137{bottom:844.469250px;}
.ya1{bottom:844.473450px;}
.y24{bottom:844.475400px;}
.y61{bottom:844.475550px;}
.ye1{bottom:844.479900px;}
.yc3{bottom:844.484250px;}
.y81{bottom:844.490550px;}
.y39{bottom:844.491000px;}
.y1af{bottom:844.493100px;}
.y102{bottom:844.505550px;}
.y136{bottom:863.219250px;}
.ya0{bottom:863.223450px;}
.y23{bottom:863.225400px;}
.y60{bottom:863.225550px;}
.ye0{bottom:863.229900px;}
.yc2{bottom:863.234250px;}
.y80{bottom:863.240550px;}
.y38{bottom:863.241000px;}
.y1ae{bottom:863.243100px;}
.y101{bottom:863.255550px;}
.y135{bottom:881.969250px;}
.y9f{bottom:881.973450px;}
.y22{bottom:881.975400px;}
.y5f{bottom:881.975550px;}
.ydf{bottom:881.979900px;}
.yc1{bottom:881.984250px;}
.y7f{bottom:881.990550px;}
.y37{bottom:881.991000px;}
.y1ad{bottom:881.993100px;}
.y100{bottom:882.005550px;}
.y4{bottom:919.156650px;}
.y3{bottom:933.556650px;}
.y5d{bottom:945.789300px;}
.y1f{bottom:946.002000px;}
.y2{bottom:947.956650px;}
.hd{height:20.386781px;}
.h6{height:30.597656px;}
.h9{height:34.359375px;}
.ha{height:34.945312px;}
.h3{height:34.968750px;}
.h8{height:35.952000px;}
.h7{height:39.339844px;}
.h2{height:43.710938px;}
.hb{height:45.425077px;}
.h5{height:52.453125px;}
.hc{height:60.840000px;}
.h4{height:62.916000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:74.409450px;}
.x7{left:101.675400px;}
.xf{left:123.307050px;}
.x12{left:127.547250px;}
.x10{left:139.292250px;}
.x6{left:144.195150px;}
.xe{left:153.283500px;}
.xc{left:217.665750px;}
.xd{left:284.857350px;}
.x8{left:305.406450px;}
.x1{left:343.822500px;}
.xa{left:371.672250px;}
.x9{left:391.657800px;}
.x13{left:407.845950px;}
.x11{left:408.917250px;}
.xb{left:487.127250px;}
.x4{left:545.793450px;}
.x3{left:557.577450px;}
.x5{left:594.333450px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.725867pt;}
.ls1c{letter-spacing:-2.613333pt;}
.ls18{letter-spacing:-2.506667pt;}
.ls1e{letter-spacing:-2.346667pt;}
.ls2{letter-spacing:-2.048000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.248000pt;}
.ls16{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003819pt;}
.lsd{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.288000pt;}
.ls2b{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.469333pt;}
.ls23{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.522667pt;}
.ls28{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.597333pt;}
.ls14{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.816000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls24{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls3{letter-spacing:1.493333pt;}
.ls26{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.666667pt;}
.ls20{letter-spacing:27.456000pt;}
.ws4{word-spacing:-24.320000pt;}
.wsea{word-spacing:-14.933333pt;}
.ws1a{word-spacing:-14.880000pt;}
.ws51{word-spacing:-14.826667pt;}
.ws1b{word-spacing:-14.613333pt;}
.wseb{word-spacing:-14.506667pt;}
.ws140{word-spacing:-13.781333pt;}
.ws2{word-spacing:-13.584000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws13e{word-spacing:-13.013333pt;}
.ws1{word-spacing:-12.714667pt;}
.ws141{word-spacing:-12.330667pt;}
.ws0{word-spacing:-12.245333pt;}
.wsec{word-spacing:-12.213333pt;}
.ws143{word-spacing:-12.202667pt;}
.ws13f{word-spacing:-12.117333pt;}
.ws142{word-spacing:-12.032000pt;}
.wsf3{word-spacing:-7.360000pt;}
.ws44{word-spacing:-5.120000pt;}
.wsde{word-spacing:-4.853333pt;}
.ws82{word-spacing:-4.640000pt;}
.wsaf{word-spacing:-4.320000pt;}
.wsb0{word-spacing:-3.520000pt;}
.ws11f{word-spacing:-2.986667pt;}
.ws81{word-spacing:-2.933333pt;}
.wsa6{word-spacing:-2.773333pt;}
.wsf{word-spacing:-2.730667pt;}
.wscb{word-spacing:-2.720000pt;}
.ws7f{word-spacing:-2.400000pt;}
.ws35{word-spacing:-2.240000pt;}
.wsa8{word-spacing:-2.133333pt;}
.wsf2{word-spacing:-2.080000pt;}
.ws11b{word-spacing:-1.920000pt;}
.ws13b{word-spacing:-1.813333pt;}
.wsa2{word-spacing:-1.760000pt;}
.ws2c{word-spacing:-1.706667pt;}
.ws8a{word-spacing:-1.653333pt;}
.ws86{word-spacing:-1.600000pt;}
.ws7{word-spacing:-1.493333pt;}
.ws95{word-spacing:-1.440000pt;}
.ws18{word-spacing:-1.365333pt;}
.ws7b{word-spacing:-1.226667pt;}
.ws21{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.066667pt;}
.ws67{word-spacing:-0.906667pt;}
.ws11{word-spacing:-0.816000pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws148{word-spacing:-0.597333pt;}
.ws146{word-spacing:-0.554667pt;}
.ws26{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.522667pt;}
.ws145{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws52{word-spacing:-0.384000pt;}
.ws144{word-spacing:-0.288000pt;}
.ws22{word-spacing:-0.266667pt;}
.ws147{word-spacing:-0.256000pt;}
.wse6{word-spacing:-0.160000pt;}
.ws76{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsed{word-spacing:0.053333pt;}
.wsb1{word-spacing:0.106667pt;}
.ws19{word-spacing:0.128000pt;}
.ws16{word-spacing:0.170667pt;}
.ws2a{word-spacing:0.213333pt;}
.ws8{word-spacing:0.320000pt;}
.ws12{word-spacing:0.373333pt;}
.ws15{word-spacing:0.469333pt;}
.wsab{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.586667pt;}
.wse{word-spacing:0.597333pt;}
.ws8e{word-spacing:0.693333pt;}
.ws63{word-spacing:0.746667pt;}
.ws124{word-spacing:0.800000pt;}
.ws122{word-spacing:0.853333pt;}
.ws2b{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.066667pt;}
.wse4{word-spacing:1.120000pt;}
.wsb7{word-spacing:1.173333pt;}
.wsbc{word-spacing:1.178667pt;}
.wsf0{word-spacing:1.280000pt;}
.wsef{word-spacing:1.333333pt;}
.ws149{word-spacing:1.440000pt;}
.ws103{word-spacing:1.493333pt;}
.ws74{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.600000pt;}
.ws107{word-spacing:1.653333pt;}
.ws49{word-spacing:1.866667pt;}
.ws91{word-spacing:1.920000pt;}
.ws45{word-spacing:2.026667pt;}
.ws6{word-spacing:2.048000pt;}
.ws6c{word-spacing:2.240000pt;}
.wsce{word-spacing:2.346667pt;}
.ws96{word-spacing:2.506667pt;}
.ws66{word-spacing:2.613333pt;}
.ws120{word-spacing:2.666667pt;}
.ws6a{word-spacing:2.720000pt;}
.ws106{word-spacing:2.880000pt;}
.ws30{word-spacing:3.146667pt;}
.ws87{word-spacing:3.200000pt;}
.wsf4{word-spacing:3.253333pt;}
.ws73{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.733333pt;}
.wscc{word-spacing:3.786667pt;}
.ws75{word-spacing:3.840000pt;}
.ws14{word-spacing:3.925333pt;}
.ws84{word-spacing:4.266667pt;}
.ws13{word-spacing:4.309333pt;}
.ws11d{word-spacing:4.533333pt;}
.ws53{word-spacing:4.586667pt;}
.wsfd{word-spacing:4.640000pt;}
.ws90{word-spacing:4.693333pt;}
.wsa3{word-spacing:4.800000pt;}
.wsdd{word-spacing:4.960000pt;}
.wsba{word-spacing:5.066667pt;}
.wsb{word-spacing:5.162667pt;}
.wsa4{word-spacing:5.173333pt;}
.ws12e{word-spacing:5.280000pt;}
.ws25{word-spacing:5.333333pt;}
.ws69{word-spacing:5.493333pt;}
.ws7c{word-spacing:5.600000pt;}
.ws68{word-spacing:5.866667pt;}
.wsbe{word-spacing:6.026667pt;}
.wsd{word-spacing:6.058667pt;}
.wsc5{word-spacing:6.080000pt;}
.ws119{word-spacing:6.133333pt;}
.ws60{word-spacing:6.186667pt;}
.ws109{word-spacing:6.240000pt;}
.ws56{word-spacing:6.346667pt;}
.wsdc{word-spacing:6.453333pt;}
.ws70{word-spacing:6.506667pt;}
.ws2f{word-spacing:6.560000pt;}
.wsae{word-spacing:6.613333pt;}
.ws14b{word-spacing:6.933333pt;}
.ws17{word-spacing:6.997333pt;}
.wsfc{word-spacing:7.040000pt;}
.ws78{word-spacing:7.093333pt;}
.ws23{word-spacing:7.146667pt;}
.ws10f{word-spacing:7.200000pt;}
.ws80{word-spacing:7.306667pt;}
.wsb8{word-spacing:7.466667pt;}
.ws43{word-spacing:7.520000pt;}
.ws97{word-spacing:7.840000pt;}
.ws77{word-spacing:8.053333pt;}
.ws125{word-spacing:8.266667pt;}
.wsd7{word-spacing:8.320000pt;}
.ws65{word-spacing:8.426667pt;}
.ws31{word-spacing:8.480000pt;}
.wse8{word-spacing:8.533333pt;}
.ws113{word-spacing:8.640000pt;}
.ws58{word-spacing:8.906667pt;}
.wscd{word-spacing:9.013333pt;}
.ws93{word-spacing:9.066667pt;}
.wsb6{word-spacing:9.120000pt;}
.ws11a{word-spacing:9.173333pt;}
.wsf7{word-spacing:9.280000pt;}
.ws6e{word-spacing:9.493333pt;}
.wsc1{word-spacing:9.546667pt;}
.ws29{word-spacing:9.653333pt;}
.ws5e{word-spacing:9.706667pt;}
.wsfe{word-spacing:9.760000pt;}
.ws46{word-spacing:9.813333pt;}
.wsb5{word-spacing:10.080000pt;}
.wsad{word-spacing:10.133333pt;}
.ws115{word-spacing:10.186667pt;}
.ws3d{word-spacing:10.293333pt;}
.wsff{word-spacing:10.560000pt;}
.ws136{word-spacing:10.613333pt;}
.wsb9{word-spacing:10.666667pt;}
.wsbb{word-spacing:10.720000pt;}
.ws39{word-spacing:10.773333pt;}
.ws139{word-spacing:10.826667pt;}
.ws32{word-spacing:10.880000pt;}
.wsa{word-spacing:10.965333pt;}
.ws14e{word-spacing:11.200000pt;}
.ws85{word-spacing:11.253333pt;}
.ws7e{word-spacing:11.306667pt;}
.ws1d{word-spacing:11.466667pt;}
.ws5d{word-spacing:11.786667pt;}
.ws11e{word-spacing:11.946667pt;}
.wsd0{word-spacing:12.053333pt;}
.ws4e{word-spacing:12.160000pt;}
.ws57{word-spacing:12.266667pt;}
.ws114{word-spacing:12.320000pt;}
.ws33{word-spacing:12.746667pt;}
.ws2e{word-spacing:12.906667pt;}
.ws59{word-spacing:12.960000pt;}
.ws4f{word-spacing:13.013333pt;}
.ws71{word-spacing:13.120000pt;}
.wse1{word-spacing:13.226667pt;}
.ws8b{word-spacing:13.280000pt;}
.ws104{word-spacing:13.386667pt;}
.wsb4{word-spacing:13.440000pt;}
.ws112{word-spacing:13.493333pt;}
.ws47{word-spacing:13.706667pt;}
.wsa7{word-spacing:13.920000pt;}
.wsc4{word-spacing:13.973333pt;}
.ws9a{word-spacing:14.080000pt;}
.ws3c{word-spacing:14.133333pt;}
.ws9d{word-spacing:14.240000pt;}
.ws99{word-spacing:14.346667pt;}
.wsf5{word-spacing:14.400000pt;}
.ws10b{word-spacing:14.613333pt;}
.ws98{word-spacing:14.720000pt;}
.ws42{word-spacing:15.040000pt;}
.wsd4{word-spacing:15.146667pt;}
.ws5a{word-spacing:15.253333pt;}
.wsf1{word-spacing:15.413333pt;}
.wsc{word-spacing:15.701333pt;}
.ws48{word-spacing:16.160000pt;}
.wse9{word-spacing:16.213333pt;}
.wsc9{word-spacing:16.266667pt;}
.ws6d{word-spacing:16.373333pt;}
.wse7{word-spacing:16.480000pt;}
.ws130{word-spacing:16.533333pt;}
.ws34{word-spacing:16.693333pt;}
.ws108{word-spacing:17.066667pt;}
.ws27{word-spacing:17.280000pt;}
.wsf8{word-spacing:17.386667pt;}
.wsc3{word-spacing:17.493333pt;}
.ws102{word-spacing:17.653333pt;}
.wsda{word-spacing:17.813333pt;}
.wsc6{word-spacing:17.973333pt;}
.wsa1{word-spacing:18.133333pt;}
.ws105{word-spacing:18.240000pt;}
.ws14a{word-spacing:18.293333pt;}
.ws127{word-spacing:18.346667pt;}
.wse0{word-spacing:18.400000pt;}
.wsaa{word-spacing:19.040000pt;}
.wsee{word-spacing:19.306667pt;}
.ws8c{word-spacing:19.520000pt;}
.ws20{word-spacing:19.733333pt;}
.ws12c{word-spacing:19.840000pt;}
.ws1f{word-spacing:19.893333pt;}
.wsf9{word-spacing:19.946667pt;}
.wsac{word-spacing:20.053333pt;}
.wsd8{word-spacing:20.160000pt;}
.ws10d{word-spacing:20.320000pt;}
.wsbf{word-spacing:20.533333pt;}
.ws10a{word-spacing:20.586667pt;}
.ws37{word-spacing:20.693333pt;}
.ws92{word-spacing:20.960000pt;}
.ws38{word-spacing:21.066667pt;}
.wsc8{word-spacing:21.120000pt;}
.ws4d{word-spacing:21.226667pt;}
.wsfb{word-spacing:21.280000pt;}
.ws132{word-spacing:21.440000pt;}
.ws4a{word-spacing:21.546667pt;}
.ws72{word-spacing:21.600000pt;}
.ws41{word-spacing:21.813333pt;}
.wsdb{word-spacing:22.080000pt;}
.wsc0{word-spacing:22.186667pt;}
.ws12a{word-spacing:22.240000pt;}
.ws13c{word-spacing:22.506667pt;}
.ws14d{word-spacing:22.613333pt;}
.wsd6{word-spacing:22.826667pt;}
.ws110{word-spacing:23.200000pt;}
.ws61{word-spacing:23.680000pt;}
.wsdf{word-spacing:23.733333pt;}
.ws8d{word-spacing:23.840000pt;}
.wse3{word-spacing:24.000000pt;}
.ws6b{word-spacing:24.160000pt;}
.ws79{word-spacing:24.266667pt;}
.ws6f{word-spacing:24.586667pt;}
.ws13d{word-spacing:25.280000pt;}
.ws100{word-spacing:25.333333pt;}
.ws14c{word-spacing:25.760000pt;}
.ws117{word-spacing:25.973333pt;}
.ws1e{word-spacing:26.080000pt;}
.ws123{word-spacing:26.240000pt;}
.ws89{word-spacing:26.293333pt;}
.ws131{word-spacing:26.773333pt;}
.ws11c{word-spacing:26.826667pt;}
.ws4b{word-spacing:27.360000pt;}
.ws24{word-spacing:27.946667pt;}
.ws137{word-spacing:28.000000pt;}
.ws55{word-spacing:28.320000pt;}
.ws134{word-spacing:28.693333pt;}
.ws64{word-spacing:28.906667pt;}
.ws10e{word-spacing:29.120000pt;}
.wsa0{word-spacing:29.440000pt;}
.ws5c{word-spacing:29.493333pt;}
.ws9f{word-spacing:31.253333pt;}
.ws12d{word-spacing:31.360000pt;}
.ws10c{word-spacing:31.680000pt;}
.wsa9{word-spacing:32.320000pt;}
.ws128{word-spacing:32.533333pt;}
.ws3e{word-spacing:32.746667pt;}
.wsa5{word-spacing:33.600000pt;}
.ws36{word-spacing:33.706667pt;}
.ws121{word-spacing:34.400000pt;}
.ws4c{word-spacing:34.933333pt;}
.wsd1{word-spacing:35.786667pt;}
.ws9c{word-spacing:36.266667pt;}
.ws101{word-spacing:36.320000pt;}
.ws9e{word-spacing:37.333333pt;}
.wsf6{word-spacing:37.440000pt;}
.wsfa{word-spacing:37.493333pt;}
.ws62{word-spacing:38.293333pt;}
.ws126{word-spacing:38.613333pt;}
.ws3b{word-spacing:38.880000pt;}
.ws13a{word-spacing:40.000000pt;}
.ws111{word-spacing:40.213333pt;}
.wsb2{word-spacing:40.693333pt;}
.ws12b{word-spacing:42.240000pt;}
.ws3f{word-spacing:42.400000pt;}
.ws118{word-spacing:42.453333pt;}
.ws88{word-spacing:42.613333pt;}
.wsd3{word-spacing:43.520000pt;}
.wsca{word-spacing:45.760000pt;}
.ws94{word-spacing:46.613333pt;}
.ws83{word-spacing:47.466667pt;}
.wsd2{word-spacing:48.480000pt;}
.wsbd{word-spacing:48.800000pt;}
.ws7a{word-spacing:49.066667pt;}
.ws138{word-spacing:49.600000pt;}
.ws7d{word-spacing:49.866667pt;}
.ws28{word-spacing:50.773333pt;}
.ws40{word-spacing:51.520000pt;}
.ws135{word-spacing:51.946667pt;}
.ws116{word-spacing:58.560000pt;}
.wsd5{word-spacing:60.533333pt;}
.wse5{word-spacing:60.693333pt;}
.ws9b{word-spacing:61.386667pt;}
.wsb3{word-spacing:63.786667pt;}
.wscf{word-spacing:66.453333pt;}
.ws12f{word-spacing:69.386667pt;}
.ws129{word-spacing:73.706667pt;}
.wsd9{word-spacing:78.880000pt;}
.wse2{word-spacing:81.706667pt;}
.ws133{word-spacing:97.813333pt;}
.ws50{word-spacing:541.614933pt;}
._8{margin-left:-12.528000pt;}
._7{margin-left:-5.851733pt;}
._6{margin-left:-4.227200pt;}
._3{margin-left:-3.306667pt;}
._5{margin-left:-2.401067pt;}
._2{margin-left:-1.326933pt;}
._0{width:1.463467pt;}
._1{width:2.931200pt;}
._4{width:4.569600pt;}
._d{width:8.136533pt;}
._c{width:10.292267pt;}
._9{width:12.122667pt;}
._f{width:16.778667pt;}
._e{width:17.802667pt;}
._a{width:19.396267pt;}
._10{width:27.622400pt;}
._b{width:29.273600pt;}
._11{width:950.314667pt;}
.fs8{font-size:24.874667pt;}
.fs6{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.897600pt;}
.y20{bottom:67.389467pt;}
.y21{bottom:67.560133pt;}
.y5e{bottom:67.722800pt;}
.yff{bottom:114.244933pt;}
.y1e{bottom:117.391467pt;}
.yc0{bottom:120.616400pt;}
.y7e{bottom:125.071600pt;}
.y9e{bottom:127.016400pt;}
.y174{bottom:127.298267pt;}
.y124{bottom:127.324933pt;}
.y5c{bottom:129.538667pt;}
.y1d{bottom:130.191467pt;}
.yfe{bottom:130.911600pt;}
.yde{bottom:133.839333pt;}
.ybf{bottom:137.283067pt;}
.y7d{bottom:141.738267pt;}
.y9d{bottom:143.683067pt;}
.y173{bottom:143.964933pt;}
.y123{bottom:143.991600pt;}
.y5b{bottom:146.205333pt;}
.yfd{bottom:147.578267pt;}
.y1ac{bottom:147.934933pt;}
.ydd{bottom:150.506000pt;}
.y9c{bottom:160.349733pt;}
.y6f{bottom:160.631600pt;}
.y122{bottom:160.658267pt;}
.y158{bottom:162.852667pt;}
.y7a{bottom:162.858267pt;}
.y5a{bottom:162.872000pt;}
.ydc{bottom:167.172667pt;}
.ybe{bottom:172.843067pt;}
.y9b{bottom:177.016400pt;}
.y7c{bottom:177.298267pt;}
.y193{bottom:177.324933pt;}
.y157{bottom:179.519333pt;}
.y79{bottom:179.524933pt;}
.y59{bottom:179.538667pt;}
.y1c{bottom:180.786800pt;}
.yfc{bottom:183.138267pt;}
.ydb{bottom:183.839333pt;}
.y9a{bottom:193.683067pt;}
.y172{bottom:193.964933pt;}
.y192{bottom:193.991600pt;}
.y156{bottom:196.186000pt;}
.y6e{bottom:196.191600pt;}
.y58{bottom:196.205333pt;}
.y121{bottom:196.218267pt;}
.yfb{bottom:199.804933pt;}
.yda{bottom:200.506000pt;}
.y1b{bottom:202.745867pt;}
.y1ab{bottom:206.089600pt;}
.ybd{bottom:208.403067pt;}
.y99{bottom:210.349733pt;}
.y36{bottom:210.618667pt;}
.y171{bottom:210.631600pt;}
.y191{bottom:210.658267pt;}
.y155{bottom:212.852667pt;}
.y6d{bottom:212.858267pt;}
.y57{bottom:212.872000pt;}
.y120{bottom:212.884933pt;}
.y1a{bottom:215.545867pt;}
.yfa{bottom:216.471600pt;}
.yd9{bottom:217.172667pt;}
.y1aa{bottom:218.889600pt;}
.ybc{bottom:225.069733pt;}
.y98{bottom:227.016400pt;}
.y170{bottom:227.298267pt;}
.y190{bottom:227.324933pt;}
.y19{bottom:228.345867pt;}
.y154{bottom:229.519333pt;}
.y6c{bottom:229.524933pt;}
.y56{bottom:229.538667pt;}
.y11f{bottom:229.551600pt;}
.yf9{bottom:233.138267pt;}
.yd8{bottom:233.839333pt;}
.y1a9{bottom:235.241600pt;}
.y18{bottom:241.145867pt;}
.ybb{bottom:241.736400pt;}
.y97{bottom:243.683067pt;}
.y16f{bottom:243.964933pt;}
.y18f{bottom:243.991600pt;}
.y153{bottom:246.186000pt;}
.y35{bottom:246.191467pt;}
.y6b{bottom:246.191600pt;}
.y55{bottom:246.205333pt;}
.y11e{bottom:246.218267pt;}
.yf8{bottom:249.804933pt;}
.yd7{bottom:250.506000pt;}
.y17{bottom:253.945867pt;}
.yba{bottom:258.403067pt;}
.y1a8{bottom:259.607733pt;}
.y96{bottom:260.349733pt;}
.y16e{bottom:260.631600pt;}
.y18e{bottom:260.658267pt;}
.y152{bottom:262.852667pt;}
.y34{bottom:262.858133pt;}
.y6a{bottom:262.858267pt;}
.y54{bottom:262.872000pt;}
.y11d{bottom:262.884933pt;}
.yf7{bottom:266.471600pt;}
.y16{bottom:266.745867pt;}
.yd6{bottom:267.172667pt;}
.yb9{bottom:275.069733pt;}
.y95{bottom:277.016400pt;}
.y16d{bottom:277.298267pt;}
.y18d{bottom:277.324933pt;}
.y151{bottom:279.519333pt;}
.y33{bottom:279.524800pt;}
.y69{bottom:279.524933pt;}
.y53{bottom:279.538667pt;}
.y15{bottom:279.545867pt;}
.y11c{bottom:279.551600pt;}
.yd5{bottom:283.839333pt;}
.yb8{bottom:291.736400pt;}
.y14{bottom:292.345867pt;}
.y94{bottom:293.683067pt;}
.y16c{bottom:293.964933pt;}
.y18c{bottom:293.991600pt;}
.y150{bottom:296.186000pt;}
.y32{bottom:296.191467pt;}
.y68{bottom:296.191600pt;}
.y52{bottom:296.205333pt;}
.y11b{bottom:296.218267pt;}
.yd4{bottom:300.506000pt;}
.yf6{bottom:302.031600pt;}
.y13{bottom:308.925467pt;}
.y93{bottom:310.349733pt;}
.y16b{bottom:310.631600pt;}
.y18b{bottom:310.658267pt;}
.y1a7{bottom:311.774133pt;}
.y14f{bottom:312.852667pt;}
.y31{bottom:312.858133pt;}
.y67{bottom:312.858267pt;}
.y90{bottom:312.871600pt;}
.y51{bottom:312.872000pt;}
.yf5{bottom:318.698267pt;}
.y1a6{bottom:324.574133pt;}
.y92{bottom:327.016400pt;}
.yb7{bottom:327.296400pt;}
.y18a{bottom:327.324933pt;}
.y14e{bottom:329.519333pt;}
.y30{bottom:329.524800pt;}
.y66{bottom:329.524933pt;}
.y8f{bottom:329.538267pt;}
.y50{bottom:329.538667pt;}
.y11a{bottom:331.778267pt;}
.yf4{bottom:335.364933pt;}
.yd3{bottom:336.066000pt;}
.y189{bottom:343.991600pt;}
.y1a5{bottom:344.936800pt;}
.y14d{bottom:346.186000pt;}
.y2f{bottom:346.191467pt;}
.y65{bottom:346.191600pt;}
.y8e{bottom:346.204933pt;}
.y4f{bottom:346.205333pt;}
.y119{bottom:348.444933pt;}
.yf3{bottom:352.031600pt;}
.y12{bottom:353.561600pt;}
.y1a4{bottom:357.736800pt;}
.y188{bottom:360.658267pt;}
.y91{bottom:362.576400pt;}
.y14c{bottom:362.852667pt;}
.yb6{bottom:362.856400pt;}
.y2e{bottom:362.858133pt;}
.y64{bottom:362.858267pt;}
.y8d{bottom:362.871600pt;}
.y4e{bottom:362.872000pt;}
.y118{bottom:365.111600pt;}
.y134{bottom:367.319333pt;}
.yf2{bottom:368.698267pt;}
.yd2{bottom:371.626000pt;}
.y187{bottom:377.324933pt;}
.y1a3{bottom:378.099467pt;}
.y14b{bottom:379.519333pt;}
.yb5{bottom:379.523067pt;}
.y2d{bottom:379.524800pt;}
.y63{bottom:379.524933pt;}
.y8c{bottom:379.538267pt;}
.y4d{bottom:379.538667pt;}
.y117{bottom:381.778267pt;}
.y133{bottom:383.986000pt;}
.yf1{bottom:385.364933pt;}
.yd1{bottom:388.292667pt;}
.y1a2{bottom:390.899467pt;}
.y14a{bottom:396.186000pt;}
.yb4{bottom:396.189733pt;}
.y2c{bottom:396.191467pt;}
.y16a{bottom:396.191600pt;}
.y8b{bottom:396.204933pt;}
.y4c{bottom:396.205333pt;}
.y78{bottom:398.418267pt;}
.y116{bottom:398.444933pt;}
.y132{bottom:400.652667pt;}
.yf0{bottom:402.031600pt;}
.yd0{bottom:404.959333pt;}
.y11{bottom:406.197867pt;}
.y1a1{bottom:411.262133pt;}
.yb3{bottom:412.856400pt;}
.y2b{bottom:412.858133pt;}
.y169{bottom:412.858267pt;}
.y8a{bottom:412.871600pt;}
.y4b{bottom:412.872000pt;}
.y186{bottom:412.884933pt;}
.y62{bottom:415.084933pt;}
.ycb{bottom:415.092667pt;}
.y115{bottom:415.111600pt;}
.y131{bottom:417.319333pt;}
.yef{bottom:418.698267pt;}
.ycf{bottom:421.626000pt;}
.y1a0{bottom:424.062133pt;}
.y10{bottom:428.156933pt;}
.yb2{bottom:429.523067pt;}
.y2a{bottom:429.524800pt;}
.y168{bottom:429.524933pt;}
.y89{bottom:429.538267pt;}
.y4a{bottom:429.538667pt;}
.y185{bottom:429.551600pt;}
.y149{bottom:431.746000pt;}
.y114{bottom:431.778267pt;}
.y130{bottom:433.986000pt;}
.yce{bottom:438.292667pt;}
.yf{bottom:440.956933pt;}
.y19f{bottom:444.424800pt;}
.yb1{bottom:446.189733pt;}
.y29{bottom:446.191467pt;}
.y167{bottom:446.191600pt;}
.y88{bottom:446.204933pt;}
.y49{bottom:446.205333pt;}
.y184{bottom:446.218267pt;}
.y148{bottom:448.412667pt;}
.y113{bottom:448.444933pt;}
.y12f{bottom:450.652667pt;}
.ye{bottom:453.756933pt;}
.yee{bottom:454.258267pt;}
.ycd{bottom:454.959333pt;}
.y19e{bottom:457.224800pt;}
.yb0{bottom:462.856400pt;}
.y28{bottom:462.858133pt;}
.y166{bottom:462.858267pt;}
.y87{bottom:462.871600pt;}
.y48{bottom:462.872000pt;}
.y183{bottom:462.884933pt;}
.y147{bottom:465.079333pt;}
.y112{bottom:465.111600pt;}
.yd{bottom:466.556933pt;}
.y12e{bottom:467.319333pt;}
.yed{bottom:470.924933pt;}
.ycc{bottom:471.626000pt;}
.y19d{bottom:477.587467pt;}
.yc{bottom:479.356933pt;}
.yaf{bottom:479.523067pt;}
.y165{bottom:479.524933pt;}
.y86{bottom:479.538267pt;}
.y47{bottom:479.538667pt;}
.y182{bottom:479.551600pt;}
.y146{bottom:481.746000pt;}
.y111{bottom:481.778267pt;}
.y12d{bottom:483.986000pt;}
.yec{bottom:487.591600pt;}
.y19c{bottom:490.387467pt;}
.yb{bottom:492.156933pt;}
.yae{bottom:496.189733pt;}
.y164{bottom:496.191600pt;}
.y85{bottom:496.204933pt;}
.y181{bottom:496.218267pt;}
.y145{bottom:498.412667pt;}
.y110{bottom:498.444933pt;}
.y12c{bottom:500.652667pt;}
.yeb{bottom:504.258267pt;}
.ya{bottom:504.956933pt;}
.y19b{bottom:510.750133pt;}
.yad{bottom:512.856400pt;}
.y163{bottom:512.858267pt;}
.y84{bottom:512.871600pt;}
.y180{bottom:512.884933pt;}
.y144{bottom:515.079333pt;}
.y46{bottom:515.098667pt;}
.y10f{bottom:515.111600pt;}
.y12b{bottom:517.319333pt;}
.y9{bottom:517.756933pt;}
.yea{bottom:520.924933pt;}
.y19a{bottom:523.550133pt;}
.yac{bottom:529.523067pt;}
.y162{bottom:529.524933pt;}
.y17f{bottom:529.551600pt;}
.y143{bottom:531.746000pt;}
.y12a{bottom:533.986000pt;}
.y8{bottom:534.336400pt;}
.ye9{bottom:537.591600pt;}
.y199{bottom:543.912800pt;}
.yab{bottom:546.189733pt;}
.y161{bottom:546.191600pt;}
.y17e{bottom:546.218267pt;}
.y142{bottom:548.412667pt;}
.y83{bottom:548.431600pt;}
.y129{bottom:550.652667pt;}
.y45{bottom:550.658667pt;}
.y10e{bottom:550.671600pt;}
.ye8{bottom:554.258267pt;}
.y198{bottom:556.712800pt;}
.y160{bottom:562.858267pt;}
.y17d{bottom:562.884933pt;}
.y141{bottom:565.079333pt;}
.y128{bottom:567.319333pt;}
.y44{bottom:567.325333pt;}
.y10d{bottom:567.338267pt;}
.ye7{bottom:570.924933pt;}
.y197{bottom:577.075467pt;}
.y7{bottom:578.972667pt;}
.y15f{bottom:579.524933pt;}
.yaa{bottom:581.749733pt;}
.y127{bottom:583.986000pt;}
.y43{bottom:583.992000pt;}
.y10c{bottom:584.004933pt;}
.ye6{bottom:587.591600pt;}
.y196{bottom:589.875467pt;}
.y6{bottom:593.952133pt;}
.y17c{bottom:598.444933pt;}
.y140{bottom:600.639333pt;}
.y126{bottom:600.652667pt;}
.y42{bottom:600.658667pt;}
.y10b{bottom:600.671600pt;}
.y195{bottom:602.675467pt;}
.ye5{bottom:604.258267pt;}
.y15e{bottom:615.084933pt;}
.y17b{bottom:615.111600pt;}
.y13f{bottom:617.306000pt;}
.ya9{bottom:617.309733pt;}
.y77{bottom:617.311600pt;}
.y125{bottom:617.319333pt;}
.y41{bottom:617.325333pt;}
.y10a{bottom:617.338267pt;}
.ye4{bottom:620.924933pt;}
.y194{bottom:630.593600pt;}
.y15d{bottom:631.751600pt;}
.y17a{bottom:631.778267pt;}
.y13e{bottom:633.972667pt;}
.ya8{bottom:633.976400pt;}
.y76{bottom:633.978267pt;}
.yca{bottom:633.986000pt;}
.y40{bottom:633.992000pt;}
.y109{bottom:634.004933pt;}
.y5{bottom:643.388400pt;}
.y15c{bottom:648.418267pt;}
.y179{bottom:648.444933pt;}
.y13d{bottom:650.639333pt;}
.ya7{bottom:650.643067pt;}
.y75{bottom:650.644933pt;}
.yc9{bottom:650.652667pt;}
.y3f{bottom:650.658667pt;}
.y108{bottom:650.671600pt;}
.ye3{bottom:660.268667pt;}
.y15b{bottom:665.084933pt;}
.y178{bottom:665.111600pt;}
.y13c{bottom:667.306000pt;}
.ya6{bottom:667.309733pt;}
.y74{bottom:667.311600pt;}
.yc8{bottom:667.319333pt;}
.y3e{bottom:667.325333pt;}
.y107{bottom:667.338267pt;}
.y27{bottom:681.751467pt;}
.y15a{bottom:681.751600pt;}
.y177{bottom:681.778267pt;}
.y13b{bottom:683.972667pt;}
.ya5{bottom:683.976400pt;}
.y73{bottom:683.978267pt;}
.yc7{bottom:683.986000pt;}
.y3d{bottom:683.992000pt;}
.y106{bottom:684.004933pt;}
.y159{bottom:698.418267pt;}
.y176{bottom:698.444933pt;}
.y13a{bottom:700.639333pt;}
.ya4{bottom:700.643067pt;}
.y72{bottom:700.644933pt;}
.yc6{bottom:700.652667pt;}
.y3c{bottom:700.658667pt;}
.y1b2{bottom:700.660533pt;}
.y105{bottom:700.671600pt;}
.y7b{bottom:715.084933pt;}
.ye2{bottom:715.088800pt;}
.y175{bottom:715.111600pt;}
.y139{bottom:717.306000pt;}
.ya3{bottom:717.309733pt;}
.y26{bottom:717.311467pt;}
.y71{bottom:717.311600pt;}
.yc5{bottom:717.319333pt;}
.y3b{bottom:717.325333pt;}
.y1b1{bottom:717.327200pt;}
.y104{bottom:717.338267pt;}
.y138{bottom:733.972667pt;}
.ya2{bottom:733.976400pt;}
.y25{bottom:733.978133pt;}
.y70{bottom:733.978267pt;}
.yc4{bottom:733.986000pt;}
.y82{bottom:733.991600pt;}
.y3a{bottom:733.992000pt;}
.y1b0{bottom:733.993867pt;}
.y103{bottom:734.004933pt;}
.y137{bottom:750.639333pt;}
.ya1{bottom:750.643067pt;}
.y24{bottom:750.644800pt;}
.y61{bottom:750.644933pt;}
.ye1{bottom:750.648800pt;}
.yc3{bottom:750.652667pt;}
.y81{bottom:750.658267pt;}
.y39{bottom:750.658667pt;}
.y1af{bottom:750.660533pt;}
.y102{bottom:750.671600pt;}
.y136{bottom:767.306000pt;}
.ya0{bottom:767.309733pt;}
.y23{bottom:767.311467pt;}
.y60{bottom:767.311600pt;}
.ye0{bottom:767.315467pt;}
.yc2{bottom:767.319333pt;}
.y80{bottom:767.324933pt;}
.y38{bottom:767.325333pt;}
.y1ae{bottom:767.327200pt;}
.y101{bottom:767.338267pt;}
.y135{bottom:783.972667pt;}
.y9f{bottom:783.976400pt;}
.y22{bottom:783.978133pt;}
.y5f{bottom:783.978267pt;}
.ydf{bottom:783.982133pt;}
.yc1{bottom:783.986000pt;}
.y7f{bottom:783.991600pt;}
.y37{bottom:783.992000pt;}
.y1ad{bottom:783.993867pt;}
.y100{bottom:784.004933pt;}
.y4{bottom:817.028133pt;}
.y3{bottom:829.828133pt;}
.y5d{bottom:840.701600pt;}
.y1f{bottom:840.890667pt;}
.y2{bottom:842.628133pt;}
.hd{height:18.121583pt;}
.h6{height:27.197917pt;}
.h9{height:30.541667pt;}
.ha{height:31.062500pt;}
.h3{height:31.083333pt;}
.h8{height:31.957333pt;}
.h7{height:34.968750pt;}
.h2{height:38.854167pt;}
.hb{height:40.377846pt;}
.h5{height:46.625000pt;}
.hc{height:54.080000pt;}
.h4{height:55.925333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:66.141733pt;}
.x7{left:90.378133pt;}
.xf{left:109.606267pt;}
.x12{left:113.375333pt;}
.x10{left:123.815333pt;}
.x6{left:128.173467pt;}
.xe{left:136.252000pt;}
.xc{left:193.480667pt;}
.xd{left:253.206533pt;}
.x8{left:271.472400pt;}
.x1{left:305.620000pt;}
.xa{left:330.375333pt;}
.x9{left:348.140267pt;}
.x13{left:362.529733pt;}
.x11{left:363.482000pt;}
.xb{left:433.002000pt;}
.x4{left:485.149733pt;}
.x3{left:495.624400pt;}
.x5{left:528.296400pt;}
}




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