
    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_7ca987c805362bf0c45c25e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_89a5eb5e614b71c17428c588.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_0825b0c857d613f924c4df5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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_f809e8dd119b23f4d031888d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.144000;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_95c888fe56493307c1166220.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_b75ce7a2b3a102db7d3c6c7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;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:ffd;src:url('chunks/assets/font_a215f1f5a6afc69c23a3cf5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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:ffe;src:url('chunks/assets/font_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.328000;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:-20.400011px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:41.572099px;}
.ls36{letter-spacing:-1.027493px;}
.ls78{letter-spacing:-1.020000px;}
.ls38{letter-spacing:-0.804125px;}
.ls41{letter-spacing:-0.759451px;}
.ls3b{letter-spacing:-0.714778px;}
.ls18{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.412848px;}
.ls1a{letter-spacing:-0.360000px;}
.ls75{letter-spacing:-0.357000px;}
.ls2b{letter-spacing:-0.309636px;}
.ls80{letter-spacing:-0.306000px;}
.ls1c{letter-spacing:-0.300000px;}
.ls2c{letter-spacing:-0.258030px;}
.ls7e{letter-spacing:-0.255000px;}
.ls17{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.223368px;}
.ls76{letter-spacing:-0.204000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.178694px;}
.ls31{letter-spacing:-0.154818px;}
.ls79{letter-spacing:-0.153000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls77{letter-spacing:-0.102000px;}
.ls3f{letter-spacing:-0.089347px;}
.ls59{letter-spacing:-0.060000px;}
.ls2e{letter-spacing:-0.051606px;}
.ls7f{letter-spacing:-0.051000px;}
.ls42{letter-spacing:-0.044674px;}
.ls0{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.020400px;}
.ls6{letter-spacing:0.030000px;}
.ls28{letter-spacing:0.044674px;}
.ls5f{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.089347px;}
.ls62{letter-spacing:0.102000px;}
.ls25{letter-spacing:0.103212px;}
.ls57{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.134021px;}
.ls3{letter-spacing:0.150000px;}
.ls6a{letter-spacing:0.153000px;}
.ls24{letter-spacing:0.154818px;}
.ls32{letter-spacing:0.178694px;}
.ls15{letter-spacing:0.178791px;}
.ls10{letter-spacing:0.180000px;}
.ls69{letter-spacing:0.204000px;}
.ls29{letter-spacing:0.223368px;}
.ls11{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.255000px;}
.ls2d{letter-spacing:0.258030px;}
.ls5e{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.268042px;}
.ls5c{letter-spacing:0.270000px;}
.ls63{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls6b{letter-spacing:0.306000px;}
.ls2f{letter-spacing:0.309636px;}
.ls60{letter-spacing:0.357000px;}
.ls3d{letter-spacing:0.357389px;}
.lsa{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.408000px;}
.ls45{letter-spacing:0.420000px;}
.ls40{letter-spacing:0.446736px;}
.lsc{letter-spacing:0.450000px;}
.ls61{letter-spacing:0.459000px;}
.ls8{letter-spacing:0.480000px;}
.ls71{letter-spacing:0.510000px;}
.ls7b{letter-spacing:0.535500px;}
.ls3e{letter-spacing:0.536083px;}
.ls51{letter-spacing:0.540000px;}
.ls65{letter-spacing:0.561000px;}
.ls49{letter-spacing:0.600000px;}
.ls70{letter-spacing:0.612000px;}
.ls3c{letter-spacing:0.625430px;}
.ls4d{letter-spacing:0.630000px;}
.ls64{letter-spacing:0.637500px;}
.ls53{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.663000px;}
.ls33{letter-spacing:0.670104px;}
.ls6f{letter-spacing:0.688500px;}
.ls7{letter-spacing:0.690000px;}
.ls7d{letter-spacing:0.714000px;}
.ls44{letter-spacing:0.714778px;}
.ls4{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.750000px;}
.lsd{letter-spacing:0.780000px;}
.ls22{letter-spacing:0.810000px;}
.ls7a{letter-spacing:0.816000px;}
.ls2{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.841500px;}
.ls6e{letter-spacing:0.867000px;}
.ls5a{letter-spacing:0.870000px;}
.ls9{letter-spacing:0.900000px;}
.ls66{letter-spacing:0.918000px;}
.ls39{letter-spacing:0.938146px;}
.ls14{letter-spacing:0.960000px;}
.ls5d{letter-spacing:0.969000px;}
.ls52{letter-spacing:0.990000px;}
.ls6d{letter-spacing:0.994500px;}
.lsb{letter-spacing:1.020000px;}
.ls43{letter-spacing:1.027493px;}
.ls56{letter-spacing:1.050000px;}
.lsf{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.122000px;}
.lse{letter-spacing:1.140000px;}
.ls13{letter-spacing:1.200000px;}
.ls5b{letter-spacing:1.230000px;}
.ls21{letter-spacing:1.260000px;}
.ls74{letter-spacing:1.275000px;}
.ls12{letter-spacing:1.320000px;}
.ls48{letter-spacing:1.380000px;}
.ls7c{letter-spacing:1.428000px;}
.ls4c{letter-spacing:1.440000px;}
.ls55{letter-spacing:1.470000px;}
.ls58{letter-spacing:1.500000px;}
.ls1e{letter-spacing:1.560000px;}
.ls54{letter-spacing:1.680000px;}
.ls37{letter-spacing:1.697597px;}
.ls20{letter-spacing:1.800000px;}
.ls46{letter-spacing:1.830000px;}
.ls47{letter-spacing:1.860000px;}
.ls23{letter-spacing:1.920000px;}
.ls50{letter-spacing:2.100000px;}
.ls4f{letter-spacing:2.160000px;}
.ls4e{letter-spacing:2.310000px;}
.ls4b{letter-spacing:2.580000px;}
.ls4a{letter-spacing:2.700000px;}
.ls1{letter-spacing:3.990000px;}
.ls26{letter-spacing:409.882680px;}
.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;}
}
.ws5d{word-spacing:-16.860000px;}
.ws60{word-spacing:-16.500000px;}
.ws5e{word-spacing:-16.140000px;}
.ws7a{word-spacing:-15.840000px;}
.ws78{word-spacing:-15.600000px;}
.ws5f{word-spacing:-15.540000px;}
.ws23{word-spacing:-15.480000px;}
.ws5c{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.300000px;}
.ws7b{word-spacing:-15.180000px;}
.ws6{word-spacing:-15.060000px;}
.ws24{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.880000px;}
.ws93{word-spacing:-14.832000px;}
.ws5{word-spacing:-14.544000px;}
.ws2b{word-spacing:-13.211136px;}
.ws27{word-spacing:-13.159530px;}
.ws28{word-spacing:-13.056318px;}
.ws94{word-spacing:-13.005000px;}
.ws2a{word-spacing:-13.004712px;}
.ws29{word-spacing:-12.901500px;}
.ws34{word-spacing:-12.865997px;}
.ws92{word-spacing:-12.852000px;}
.ws2d{word-spacing:-12.746682px;}
.ws26{word-spacing:-12.643470px;}
.ws25{word-spacing:-12.591864px;}
.ws2c{word-spacing:-12.488652px;}
.ws79{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws40{word-spacing:-12.195893px;}
.ws36{word-spacing:-12.106546px;}
.ws42{word-spacing:-11.883178px;}
.ws2f{word-spacing:-11.838504px;}
.ws38{word-spacing:-11.793830px;}
.ws3b{word-spacing:-11.704483px;}
.ws41{word-spacing:-11.615136px;}
.ws3a{word-spacing:-11.525789px;}
.ws31{word-spacing:-11.436442px;}
.ws45{word-spacing:-11.391768px;}
.ws2e{word-spacing:-11.347094px;}
.ws39{word-spacing:-11.302421px;}
.ws3f{word-spacing:-11.257747px;}
.ws43{word-spacing:-11.213074px;}
.ws30{word-spacing:-11.168400px;}
.ws3e{word-spacing:-11.123726px;}
.ws3c{word-spacing:-11.079053px;}
.ws32{word-spacing:-10.989706px;}
.ws44{word-spacing:-10.945032px;}
.ws91{word-spacing:-10.761000px;}
.ws37{word-spacing:-10.453622px;}
.ws3d{word-spacing:-10.408949px;}
.ws35{word-spacing:-10.364275px;}
.ws33{word-spacing:-10.140907px;}
.ws2{word-spacing:-9.996000px;}
.ws4{word-spacing:-8.694000px;}
.ws5b{word-spacing:-1.697597px;}
.ws8e{word-spacing:-1.560000px;}
.wsa{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.380000px;}
.wsb2{word-spacing:-1.326000px;}
.ws52{word-spacing:-1.320000px;}
.ws9d{word-spacing:-1.275000px;}
.ws80{word-spacing:-1.260000px;}
.ws90{word-spacing:-1.200000px;}
.ws6d{word-spacing:-1.140000px;}
.wsa0{word-spacing:-1.071000px;}
.wsc0{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.969000px;}
.ws47{word-spacing:-0.960000px;}
.wsbd{word-spacing:-0.867000px;}
.ws77{word-spacing:-0.840000px;}
.wsb7{word-spacing:-0.816000px;}
.ws76{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.765000px;}
.ws13{word-spacing:-0.720000px;}
.wsa2{word-spacing:-0.714000px;}
.wsac{word-spacing:-0.663000px;}
.ws20{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws8{word-spacing:-0.570000px;}
.ws7c{word-spacing:-0.540000px;}
.wsab{word-spacing:-0.510000px;}
.ws4b{word-spacing:-0.480000px;}
.ws59{word-spacing:-0.446736px;}
.ws8b{word-spacing:-0.420000px;}
.ws85{word-spacing:-0.360000px;}
.ws55{word-spacing:-0.309636px;}
.ws10{word-spacing:-0.300000px;}
.ws99{word-spacing:-0.264000px;}
.ws54{word-spacing:-0.258030px;}
.ws98{word-spacing:-0.255000px;}
.ws95{word-spacing:-0.240000px;}
.wsb9{word-spacing:-0.204000px;}
.ws51{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.178694px;}
.ws56{word-spacing:-0.154818px;}
.wsa7{word-spacing:-0.153000px;}
.ws5a{word-spacing:-0.134021px;}
.ws8d{word-spacing:-0.120000px;}
.wsa5{word-spacing:-0.102000px;}
.ws71{word-spacing:-0.060000px;}
.wsa3{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsc1{word-spacing:0.051000px;}
.ws53{word-spacing:0.051606px;}
.ws19{word-spacing:0.060000px;}
.ws70{word-spacing:0.120000px;}
.ws63{word-spacing:0.180000px;}
.ws58{word-spacing:0.223368px;}
.ws72{word-spacing:0.240000px;}
.ws1d{word-spacing:0.300000px;}
.ws9a{word-spacing:0.357000px;}
.wsf{word-spacing:0.360000px;}
.wsad{word-spacing:0.408000px;}
.ws74{word-spacing:0.420000px;}
.ws9b{word-spacing:0.459000px;}
.ws1c{word-spacing:0.480000px;}
.ws1a{word-spacing:0.540000px;}
.ws1b{word-spacing:0.720000px;}
.ws6a{word-spacing:0.840000px;}
.ws6b{word-spacing:0.900000px;}
.ws8f{word-spacing:1.020000px;}
.wsb0{word-spacing:1.071000px;}
.ws61{word-spacing:1.080000px;}
.ws9e{word-spacing:1.173000px;}
.ws83{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws9f{word-spacing:1.275000px;}
.ws67{word-spacing:1.320000px;}
.ws88{word-spacing:1.440000px;}
.wsb5{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsae{word-spacing:1.530000px;}
.ws4e{word-spacing:1.620000px;}
.ws49{word-spacing:1.680000px;}
.wsbc{word-spacing:1.785000px;}
.ws15{word-spacing:1.800000px;}
.ws9{word-spacing:1.860000px;}
.wsd{word-spacing:1.920000px;}
.ws75{word-spacing:1.980000px;}
.wsb4{word-spacing:2.040000px;}
.ws7d{word-spacing:2.100000px;}
.ws6f{word-spacing:2.160000px;}
.wsbe{word-spacing:2.193000px;}
.ws96{word-spacing:2.280000px;}
.wsa6{word-spacing:2.295000px;}
.ws8c{word-spacing:2.340000px;}
.wsb1{word-spacing:2.346000px;}
.wse{word-spacing:2.400000px;}
.wsaa{word-spacing:2.448000px;}
.ws82{word-spacing:2.520000px;}
.wsbf{word-spacing:2.550000px;}
.ws1f{word-spacing:2.580000px;}
.ws7f{word-spacing:2.640000px;}
.wsaf{word-spacing:2.652000px;}
.ws50{word-spacing:2.700000px;}
.wsa4{word-spacing:2.703000px;}
.ws86{word-spacing:2.760000px;}
.ws48{word-spacing:2.820000px;}
.ws14{word-spacing:2.880000px;}
.wsa8{word-spacing:2.958000px;}
.ws73{word-spacing:3.000000px;}
.wsa9{word-spacing:3.060000px;}
.ws17{word-spacing:3.300000px;}
.ws16{word-spacing:3.600000px;}
.wsb3{word-spacing:3.621000px;}
.ws89{word-spacing:3.660000px;}
.ws1e{word-spacing:3.720000px;}
.wsb8{word-spacing:3.774000px;}
.ws87{word-spacing:3.840000px;}
.ws81{word-spacing:3.960000px;}
.ws6c{word-spacing:4.020000px;}
.ws4c{word-spacing:4.080000px;}
.ws18{word-spacing:4.200000px;}
.ws97{word-spacing:4.284000px;}
.ws84{word-spacing:4.320000px;}
.ws8a{word-spacing:4.620000px;}
.ws69{word-spacing:5.100000px;}
.wsb6{word-spacing:5.151000px;}
.ws4f{word-spacing:5.520000px;}
.ws46{word-spacing:5.580000px;}
.ws7e{word-spacing:6.000000px;}
.ws6e{word-spacing:6.060000px;}
.ws65{word-spacing:6.360000px;}
.ws66{word-spacing:6.480000px;}
.ws68{word-spacing:6.540000px;}
.ws4a{word-spacing:6.780000px;}
.ws64{word-spacing:7.080000px;}
.ws4d{word-spacing:7.440000px;}
.wsba{word-spacing:13.515000px;}
.wsbb{word-spacing:17.595000px;}
.ws21{word-spacing:72.267000px;}
._11{margin-left:-2959.377061px;}
._e{margin-left:-72.675000px;}
._a{margin-left:-16.575000px;}
._14{margin-left:-14.406000px;}
._12{margin-left:-10.664100px;}
._7{margin-left:-8.388000px;}
._4{margin-left:-5.700000px;}
._5{margin-left:-4.563000px;}
._2{margin-left:-3.135000px;}
._0{margin-left:-1.632000px;}
._1{width:1.938000px;}
._13{width:3.081000px;}
._15{width:5.160000px;}
._16{width:8.721000px;}
._17{width:11.322000px;}
._18{width:14.433000px;}
._10{width:15.606000px;}
._b{width:18.360000px;}
._6{width:29.472000px;}
._8{width:34.380000px;}
._9{width:35.760000px;}
._3{width:39.486603px;}
._d{width:54.621000px;}
._c{width:72.267000px;}
._f{width:2481.864000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:44.673600px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:51.605999px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y55{bottom:112.938300px;}
.ydc{bottom:113.544159px;}
.y136{bottom:113.544296px;}
.y80{bottom:113.565147px;}
.y108{bottom:114.735306px;}
.y1a5{bottom:116.656087px;}
.y163{bottom:117.918294px;}
.y1a4{bottom:131.650087px;}
.ydb{bottom:132.294159px;}
.y135{bottom:132.294296px;}
.y162{bottom:132.912294px;}
.y54{bottom:133.032303px;}
.y107{bottom:133.485306px;}
.y4f{bottom:137.388153px;}
.y20{bottom:139.264499px;}
.y1a3{bottom:146.644087px;}
.y161{bottom:147.906294px;}
.yaf{bottom:150.033325px;}
.yda{bottom:151.044159px;}
.y134{bottom:151.044296px;}
.y106{bottom:152.235306px;}
.y4e{bottom:156.138153px;}
.y53{bottom:158.044059px;}
.y7e{bottom:158.878834px;}
.y1a2{bottom:161.638087px;}
.y160{bottom:162.900294px;}
.yae{bottom:168.783325px;}
.yd9{bottom:169.794159px;}
.y133{bottom:169.794296px;}
.y105{bottom:170.985306px;}
.y7d{bottom:172.738818px;}
.y52{bottom:173.038059px;}
.y4d{bottom:174.888153px;}
.y1a1{bottom:176.632087px;}
.y15f{bottom:177.894294px;}
.y7f{bottom:186.408940px;}
.y7c{bottom:186.598803px;}
.yad{bottom:187.533325px;}
.yd8{bottom:188.544159px;}
.y132{bottom:188.544296px;}
.y104{bottom:189.735306px;}
.y1a0{bottom:191.626087px;}
.y15e{bottom:192.888294px;}
.y4c{bottom:193.638153px;}
.y51{bottom:195.580059px;}
.y17{bottom:196.933500px;}
.y7b{bottom:200.648650px;}
.yac{bottom:206.283325px;}
.y19f{bottom:206.620087px;}
.yd7{bottom:207.294159px;}
.y131{bottom:207.294296px;}
.y15d{bottom:207.882294px;}
.y103{bottom:208.485306px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y50{bottom:210.574059px;}
.y4b{bottom:212.388153px;}
.y7a{bottom:214.508634px;}
.y19e{bottom:221.614087px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yab{bottom:225.033325px;}
.y130{bottom:226.044296px;}
.y79{bottom:228.558482px;}
.y4a{bottom:231.138153px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y19d{bottom:236.608087px;}
.y15c{bottom:241.632294px;}
.yaa{bottom:243.783325px;}
.yd6{bottom:244.794159px;}
.y12f{bottom:244.794296px;}
.y102{bottom:245.985306px;}
.y49{bottom:249.888153px;}
.y19c{bottom:251.602087px;}
.y78{bottom:255.128105px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ya9{bottom:262.533325px;}
.y12e{bottom:263.544296px;}
.y19b{bottom:266.596087px;}
.y47{bottom:268.638153px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.ya8{bottom:281.283325px;}
.y19a{bottom:281.590087px;}
.yd5{bottom:282.294159px;}
.y12d{bottom:282.294296px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y46{bottom:287.388153px;}
.y199{bottom:296.584087px;}
.ya7{bottom:300.033325px;}
.y15b{bottom:300.130073px;}
.yd4{bottom:301.044159px;}
.y12c{bottom:301.044296px;}
.y72{bottom:301.556415px;}
.y77{bottom:301.749775px;}
.y70{bottom:301.943134px;}
.y101{bottom:302.235306px;}
.y73{bottom:302.330179px;}
.y75{bottom:302.712176px;}
.y45{bottom:306.138153px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y198{bottom:311.578087px;}
.y15a{bottom:315.124073px;}
.y71{bottom:318.109039px;}
.y76{bottom:318.302399px;}
.y6f{bottom:318.495758px;}
.ya6{bottom:318.783325px;}
.y74{bottom:319.264800px;}
.yd3{bottom:319.794159px;}
.y100{bottom:320.985306px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y44{bottom:324.888153px;}
.y197{bottom:326.572087px;}
.y159{bottom:330.118073px;}
.ya5{bottom:337.533325px;}
.yd2{bottom:338.544159px;}
.y12b{bottom:338.544296px;}
.yff{bottom:339.735306px;}
.y196{bottom:341.566087px;}
.y43{bottom:343.638153px;}
.y158{bottom:345.112073px;}
.ye{bottom:348.133500px;}
.ya4{bottom:356.283325px;}
.y195{bottom:356.560087px;}
.yd1{bottom:357.294159px;}
.yfe{bottom:358.485306px;}
.y157{bottom:360.106073px;}
.y42{bottom:362.388153px;}
.y194{bottom:371.554087px;}
.ya3{bottom:375.033325px;}
.y156{bottom:375.100073px;}
.yd0{bottom:376.044159px;}
.y12a{bottom:376.044296px;}
.yfd{bottom:377.235306px;}
.y41{bottom:381.138153px;}
.y193{bottom:386.548087px;}
.yd{bottom:386.785499px;}
.y155{bottom:390.094073px;}
.ya2{bottom:393.783325px;}
.y129{bottom:394.794296px;}
.yfc{bottom:395.985306px;}
.y40{bottom:399.888153px;}
.y192{bottom:401.542087px;}
.y154{bottom:405.088073px;}
.yc{bottom:408.044999px;}
.y61{bottom:412.429779px;}
.ya1{bottom:412.533325px;}
.ycf{bottom:413.544159px;}
.y128{bottom:413.544296px;}
.y6d{bottom:413.554776px;}
.yfb{bottom:414.735306px;}
.y191{bottom:416.536087px;}
.y3f{bottom:418.638153px;}
.y153{bottom:420.082073px;}
.y60{bottom:431.179779px;}
.ya0{bottom:431.283325px;}
.y190{bottom:431.530087px;}
.y127{bottom:432.294296px;}
.y6c{bottom:432.304776px;}
.yfa{bottom:433.485306px;}
.y152{bottom:435.076073px;}
.y3e{bottom:437.388153px;}
.y18f{bottom:446.524087px;}
.y5f{bottom:449.929779px;}
.y9f{bottom:450.033325px;}
.y151{bottom:450.070073px;}
.y126{bottom:451.044296px;}
.y6b{bottom:451.054776px;}
.yf9{bottom:452.235306px;}
.y3d{bottom:456.138153px;}
.y18e{bottom:461.518087px;}
.y150{bottom:465.064073px;}
.y5e{bottom:468.679779px;}
.y9e{bottom:468.783325px;}
.yce{bottom:469.794159px;}
.y125{bottom:469.794296px;}
.y6a{bottom:469.804776px;}
.yf8{bottom:470.985306px;}
.y3c{bottom:474.888153px;}
.y18d{bottom:476.512087px;}
.y5d{bottom:487.429779px;}
.y9d{bottom:487.533325px;}
.ycd{bottom:488.544159px;}
.y124{bottom:488.544296px;}
.y69{bottom:488.554776px;}
.y18c{bottom:491.506087px;}
.y3b{bottom:493.638153px;}
.y14f{bottom:495.064823px;}
.yb{bottom:502.864502px;}
.y5c{bottom:506.179779px;}
.y9c{bottom:506.283325px;}
.y18b{bottom:506.500087px;}
.ycc{bottom:507.294159px;}
.y123{bottom:507.294296px;}
.y68{bottom:507.304776px;}
.yf7{bottom:508.485306px;}
.y14e{bottom:510.058823px;}
.y3a{bottom:512.388153px;}
.ya{bottom:520.864502px;}
.y18a{bottom:521.494087px;}
.y5b{bottom:524.929779px;}
.y9b{bottom:525.033325px;}
.ycb{bottom:526.044159px;}
.y122{bottom:526.044296px;}
.y67{bottom:526.054776px;}
.y39{bottom:531.138153px;}
.y189{bottom:536.488087px;}
.y9{bottom:538.864499px;}
.y14d{bottom:540.058823px;}
.y5a{bottom:543.679779px;}
.y9a{bottom:543.783325px;}
.yca{bottom:544.794159px;}
.y121{bottom:544.794296px;}
.y66{bottom:544.804776px;}
.y38{bottom:549.888153px;}
.y188{bottom:551.482087px;}
.y8{bottom:556.864499px;}
.y59{bottom:562.429779px;}
.y99{bottom:562.533325px;}
.yc9{bottom:563.544159px;}
.y120{bottom:563.544296px;}
.y65{bottom:563.554776px;}
.yf6{bottom:564.735260px;}
.y187{bottom:566.476087px;}
.y37{bottom:568.638153px;}
.y14c{bottom:573.814823px;}
.y58{bottom:581.179779px;}
.y98{bottom:581.283325px;}
.y186{bottom:581.470087px;}
.yc8{bottom:582.294159px;}
.y11f{bottom:582.294296px;}
.y64{bottom:582.304776px;}
.yf5{bottom:583.485260px;}
.y36{bottom:587.388153px;}
.y14b{bottom:588.808823px;}
.y185{bottom:596.464087px;}
.y97{bottom:600.033325px;}
.yc7{bottom:601.044159px;}
.y63{bottom:601.054776px;}
.yf4{bottom:602.235260px;}
.y35{bottom:606.138153px;}
.y184{bottom:611.458087px;}
.y57{bottom:618.679779px;}
.y96{bottom:618.783325px;}
.y14a{bottom:618.808777px;}
.yc6{bottom:619.794159px;}
.y11e{bottom:619.794296px;}
.y62{bottom:619.804776px;}
.yf3{bottom:620.985260px;}
.y34{bottom:624.888153px;}
.y183{bottom:626.452087px;}
.y95{bottom:637.533325px;}
.y149{bottom:637.558777px;}
.yc5{bottom:638.544159px;}
.yf2{bottom:639.735260px;}
.y182{bottom:641.446087px;}
.y33{bottom:643.638153px;}
.y7{bottom:645.510000px;}
.y94{bottom:656.283325px;}
.y148{bottom:656.308777px;}
.y181{bottom:656.440087px;}
.yc4{bottom:657.294159px;}
.y11d{bottom:657.294342px;}
.yf1{bottom:658.485260px;}
.y32{bottom:662.388153px;}
.y6{bottom:666.771000px;}
.y6e{bottom:670.930800px;}
.y180{bottom:671.434087px;}
.y93{bottom:675.033325px;}
.y147{bottom:675.058777px;}
.yc3{bottom:676.044159px;}
.y11c{bottom:676.044342px;}
.yf0{bottom:677.235260px;}
.y31{bottom:681.138153px;}
.y17f{bottom:686.428087px;}
.y92{bottom:693.783325px;}
.y146{bottom:693.808777px;}
.y11b{bottom:694.794342px;}
.yef{bottom:695.985260px;}
.y30{bottom:699.888153px;}
.y17e{bottom:701.422087px;}
.y91{bottom:712.533325px;}
.y145{bottom:712.558777px;}
.yc2{bottom:713.544159px;}
.y11a{bottom:713.544342px;}
.yee{bottom:714.735260px;}
.y17d{bottom:716.416087px;}
.y2f{bottom:718.638153px;}
.y5{bottom:726.298500px;}
.y90{bottom:731.283325px;}
.y144{bottom:731.308777px;}
.y17c{bottom:731.410087px;}
.y119{bottom:732.294342px;}
.yed{bottom:733.485260px;}
.y2e{bottom:737.388153px;}
.y1bc{bottom:746.260824px;}
.y17b{bottom:746.404087px;}
.y8f{bottom:750.033325px;}
.y143{bottom:750.058777px;}
.yc1{bottom:751.044159px;}
.y118{bottom:751.044342px;}
.yec{bottom:752.235260px;}
.y3{bottom:752.599495px;}
.y2d{bottom:756.138153px;}
.y1bb{bottom:761.254824px;}
.y17a{bottom:761.398087px;}
.y8e{bottom:768.783325px;}
.y142{bottom:768.808777px;}
.yc0{bottom:769.794159px;}
.y117{bottom:769.794342px;}
.yeb{bottom:770.985260px;}
.y2c{bottom:774.888153px;}
.y1d1{bottom:776.312574px;}
.y179{bottom:776.392087px;}
.y8d{bottom:787.533325px;}
.y141{bottom:787.558777px;}
.ybf{bottom:788.544159px;}
.y116{bottom:788.544342px;}
.yea{bottom:789.735260px;}
.y1d0{bottom:791.306574px;}
.y1ba{bottom:791.344823px;}
.y178{bottom:791.386087px;}
.y2b{bottom:793.638153px;}
.y1cf{bottom:806.300574px;}
.y140{bottom:806.308777px;}
.y1b9{bottom:806.338823px;}
.y177{bottom:806.380087px;}
.ybe{bottom:807.294159px;}
.ye9{bottom:808.485260px;}
.y2a{bottom:812.388153px;}
.y1ce{bottom:821.294574px;}
.y1b8{bottom:821.332823px;}
.y176{bottom:821.374087px;}
.y8c{bottom:825.033325px;}
.y13f{bottom:825.058777px;}
.ybd{bottom:826.044159px;}
.y115{bottom:826.044342px;}
.y48{bottom:831.138153px;}
.y1cd{bottom:836.288574px;}
.y1b7{bottom:836.326823px;}
.y175{bottom:836.368087px;}
.y13e{bottom:843.808777px;}
.ybc{bottom:844.794159px;}
.ye8{bottom:845.985260px;}
.y29{bottom:849.888153px;}
.y1cc{bottom:851.282574px;}
.y1b6{bottom:851.320823px;}
.y174{bottom:851.362087px;}
.y13d{bottom:862.558777px;}
.ybb{bottom:863.544159px;}
.y114{bottom:863.544342px;}
.y1cb{bottom:866.276574px;}
.y1b5{bottom:866.314823px;}
.y173{bottom:866.356087px;}
.y2{bottom:879.369000px;}
.y1ca{bottom:881.270574px;}
.y8b{bottom:881.283325px;}
.y13c{bottom:881.308777px;}
.y1b4{bottom:881.308823px;}
.y172{bottom:881.350087px;}
.yba{bottom:882.294159px;}
.y113{bottom:882.294342px;}
.y1c9{bottom:896.264574px;}
.y1b3{bottom:896.302823px;}
.y171{bottom:896.344087px;}
.y8a{bottom:900.033325px;}
.y13b{bottom:900.058777px;}
.yb9{bottom:901.044159px;}
.y112{bottom:901.044342px;}
.ye7{bottom:902.235260px;}
.y28{bottom:906.144153px;}
.y1c8{bottom:911.258574px;}
.y1b2{bottom:911.296823px;}
.y170{bottom:911.338087px;}
.y89{bottom:918.783325px;}
.y13a{bottom:918.808777px;}
.yb8{bottom:919.794159px;}
.y111{bottom:919.794342px;}
.ye6{bottom:920.985260px;}
.y27{bottom:921.138153px;}
.y1c7{bottom:926.252574px;}
.y1b1{bottom:926.290823px;}
.y16f{bottom:926.332087px;}
.y88{bottom:937.533325px;}
.y139{bottom:937.558777px;}
.yb7{bottom:938.544159px;}
.y110{bottom:938.544342px;}
.ye5{bottom:939.735260px;}
.y1c6{bottom:941.246574px;}
.y1b0{bottom:941.284823px;}
.y16e{bottom:941.326087px;}
.y1af{bottom:956.278823px;}
.y87{bottom:956.283325px;}
.y138{bottom:956.308777px;}
.y16d{bottom:956.320087px;}
.yb6{bottom:957.294159px;}
.y10f{bottom:957.294342px;}
.ye4{bottom:958.485260px;}
.y26{bottom:963.738190px;}
.y1{bottom:966.726000px;}
.y1c5{bottom:971.247324px;}
.y1ae{bottom:971.272823px;}
.y16c{bottom:971.314087px;}
.y86{bottom:975.033325px;}
.yb5{bottom:976.044159px;}
.y10e{bottom:976.044342px;}
.ye3{bottom:977.235260px;}
.y1c4{bottom:986.241324px;}
.y1ad{bottom:986.266823px;}
.y16b{bottom:986.308087px;}
.y85{bottom:993.783325px;}
.y137{bottom:993.808777px;}
.yb4{bottom:994.794159px;}
.y10d{bottom:994.794342px;}
.ye2{bottom:995.985260px;}
.y1c3{bottom:1001.235324px;}
.y1ac{bottom:1001.260823px;}
.y16a{bottom:1001.302087px;}
.y25{bottom:1008.424622px;}
.y84{bottom:1012.533325px;}
.yb3{bottom:1013.544159px;}
.y10c{bottom:1013.544342px;}
.ye1{bottom:1014.735260px;}
.y1c2{bottom:1016.229324px;}
.y1ab{bottom:1016.254823px;}
.y169{bottom:1016.296087px;}
.y1c1{bottom:1031.223324px;}
.y1aa{bottom:1031.248823px;}
.y168{bottom:1031.290087px;}
.yb2{bottom:1032.294159px;}
.y10b{bottom:1032.294342px;}
.ye0{bottom:1033.485260px;}
.y1c0{bottom:1046.217324px;}
.y1a9{bottom:1046.242823px;}
.y167{bottom:1046.284087px;}
.y83{bottom:1050.033325px;}
.yb1{bottom:1051.044159px;}
.y10a{bottom:1051.044342px;}
.ydf{bottom:1052.235260px;}
.y1bf{bottom:1061.211324px;}
.y1a8{bottom:1061.236823px;}
.y166{bottom:1061.278087px;}
.yde{bottom:1070.985260px;}
.y24{bottom:1076.132080px;}
.y1be{bottom:1076.205324px;}
.y1a7{bottom:1076.230823px;}
.y165{bottom:1076.272087px;}
.y82{bottom:1087.533325px;}
.yb0{bottom:1088.544159px;}
.y109{bottom:1088.544342px;}
.ydd{bottom:1089.735260px;}
.y1bd{bottom:1091.199324px;}
.y1a6{bottom:1091.224823px;}
.y164{bottom:1091.266087px;}
.y23{bottom:1109.586556px;}
.y22{bottom:1126.582306px;}
.y56{bottom:1127.482361px;}
.y81{bottom:1127.482544px;}
.h13{height:25.953899px;}
.h17{height:30.288701px;}
.h18{height:31.048152px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h15{height:34.988867px;}
.h12{height:37.077000px;}
.h10{height:43.620000px;}
.hb{height:44.676000px;}
.h14{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1a{height:52.173000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h11{height:59.004000px;}
.h19{height:61.380000px;}
.he{height:64.866000px;}
.hf{height:71.208000px;}
.h16{height:76.560967px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.x8{left:93.545391px;}
.xc{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:117.201153px;}
.x4{left:203.484001px;}
.x25{left:237.317356px;}
.x24{left:240.790729px;}
.x23{left:245.604309px;}
.xf{left:251.372868px;}
.x26{left:255.242639px;}
.xe{left:257.733307px;}
.x11{left:353.838692px;}
.x15{left:361.156792px;}
.x19{left:365.791678px;}
.x18{left:367.522780px;}
.x17{left:369.052850px;}
.x16{left:370.594090px;}
.x10{left:373.668297px;}
.x3{left:454.959000px;}
.x9{left:459.215378px;}
.xa{left:476.222723px;}
.x1a{left:478.233444px;}
.x12{left:479.961463px;}
.xb{left:483.212723px;}
.x28{left:484.726652px;}
.x1e{left:487.101154px;}
.x1d{left:488.631225px;}
.x1c{left:491.132946px;}
.x1b{left:494.014393px;}
.x22{left:591.437242px;}
.x1f{left:593.737930px;}
.x21{left:595.100477px;}
.x14{left:600.666783px;}
.x20{left:606.637433px;}
.x13{left:607.981934px;}
.x5{left:728.220612px;}
.x27{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:36.952977pt;}
.ls36{letter-spacing:-0.913327pt;}
.ls78{letter-spacing:-0.906667pt;}
.ls38{letter-spacing:-0.714778pt;}
.ls41{letter-spacing:-0.675068pt;}
.ls3b{letter-spacing:-0.635358pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.366976pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls75{letter-spacing:-0.317333pt;}
.ls2b{letter-spacing:-0.275232pt;}
.ls80{letter-spacing:-0.272000pt;}
.ls1c{letter-spacing:-0.266667pt;}
.ls2c{letter-spacing:-0.229360pt;}
.ls7e{letter-spacing:-0.226667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.198549pt;}
.ls76{letter-spacing:-0.181333pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.158839pt;}
.ls31{letter-spacing:-0.137616pt;}
.ls79{letter-spacing:-0.136000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls77{letter-spacing:-0.090667pt;}
.ls3f{letter-spacing:-0.079420pt;}
.ls59{letter-spacing:-0.053333pt;}
.ls2e{letter-spacing:-0.045872pt;}
.ls7f{letter-spacing:-0.045333pt;}
.ls42{letter-spacing:-0.039710pt;}
.ls0{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.018133pt;}
.ls6{letter-spacing:0.026667pt;}
.ls28{letter-spacing:0.039710pt;}
.ls5f{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.079420pt;}
.ls62{letter-spacing:0.090667pt;}
.ls25{letter-spacing:0.091744pt;}
.ls57{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.119130pt;}
.ls3{letter-spacing:0.133333pt;}
.ls6a{letter-spacing:0.136000pt;}
.ls24{letter-spacing:0.137616pt;}
.ls32{letter-spacing:0.158839pt;}
.ls15{letter-spacing:0.158926pt;}
.ls10{letter-spacing:0.160000pt;}
.ls69{letter-spacing:0.181333pt;}
.ls29{letter-spacing:0.198549pt;}
.ls11{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.226667pt;}
.ls2d{letter-spacing:0.229360pt;}
.ls5e{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.238259pt;}
.ls5c{letter-spacing:0.240000pt;}
.ls63{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls6b{letter-spacing:0.272000pt;}
.ls2f{letter-spacing:0.275232pt;}
.ls60{letter-spacing:0.317333pt;}
.ls3d{letter-spacing:0.317679pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.362667pt;}
.ls45{letter-spacing:0.373333pt;}
.ls40{letter-spacing:0.397099pt;}
.lsc{letter-spacing:0.400000pt;}
.ls61{letter-spacing:0.408000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls71{letter-spacing:0.453333pt;}
.ls7b{letter-spacing:0.476000pt;}
.ls3e{letter-spacing:0.476518pt;}
.ls51{letter-spacing:0.480000pt;}
.ls65{letter-spacing:0.498667pt;}
.ls49{letter-spacing:0.533333pt;}
.ls70{letter-spacing:0.544000pt;}
.ls3c{letter-spacing:0.555938pt;}
.ls4d{letter-spacing:0.560000pt;}
.ls64{letter-spacing:0.566667pt;}
.ls53{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.589333pt;}
.ls33{letter-spacing:0.595648pt;}
.ls6f{letter-spacing:0.612000pt;}
.ls7{letter-spacing:0.613333pt;}
.ls7d{letter-spacing:0.634667pt;}
.ls44{letter-spacing:0.635358pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.666667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls22{letter-spacing:0.720000pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls2{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.748000pt;}
.ls6e{letter-spacing:0.770667pt;}
.ls5a{letter-spacing:0.773333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls66{letter-spacing:0.816000pt;}
.ls39{letter-spacing:0.833907pt;}
.ls14{letter-spacing:0.853333pt;}
.ls5d{letter-spacing:0.861333pt;}
.ls52{letter-spacing:0.880000pt;}
.ls6d{letter-spacing:0.884000pt;}
.lsb{letter-spacing:0.906667pt;}
.ls43{letter-spacing:0.913327pt;}
.ls56{letter-spacing:0.933333pt;}
.lsf{letter-spacing:0.960000pt;}
.ls73{letter-spacing:0.997333pt;}
.lse{letter-spacing:1.013333pt;}
.ls13{letter-spacing:1.066667pt;}
.ls5b{letter-spacing:1.093333pt;}
.ls21{letter-spacing:1.120000pt;}
.ls74{letter-spacing:1.133333pt;}
.ls12{letter-spacing:1.173333pt;}
.ls48{letter-spacing:1.226667pt;}
.ls7c{letter-spacing:1.269333pt;}
.ls4c{letter-spacing:1.280000pt;}
.ls55{letter-spacing:1.306667pt;}
.ls58{letter-spacing:1.333333pt;}
.ls1e{letter-spacing:1.386667pt;}
.ls54{letter-spacing:1.493333pt;}
.ls37{letter-spacing:1.508975pt;}
.ls20{letter-spacing:1.600000pt;}
.ls46{letter-spacing:1.626667pt;}
.ls47{letter-spacing:1.653333pt;}
.ls23{letter-spacing:1.706667pt;}
.ls50{letter-spacing:1.866667pt;}
.ls4f{letter-spacing:1.920000pt;}
.ls4e{letter-spacing:2.053333pt;}
.ls4b{letter-spacing:2.293333pt;}
.ls4a{letter-spacing:2.400000pt;}
.ls1{letter-spacing:3.546667pt;}
.ls26{letter-spacing:364.340160pt;}
.ws5d{word-spacing:-14.986667pt;}
.ws60{word-spacing:-14.666667pt;}
.ws5e{word-spacing:-14.346667pt;}
.ws7a{word-spacing:-14.080000pt;}
.ws78{word-spacing:-13.866667pt;}
.ws5f{word-spacing:-13.813333pt;}
.ws23{word-spacing:-13.760000pt;}
.ws5c{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.600000pt;}
.ws7b{word-spacing:-13.493333pt;}
.ws6{word-spacing:-13.386667pt;}
.ws24{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.226667pt;}
.ws93{word-spacing:-13.184000pt;}
.ws5{word-spacing:-12.928000pt;}
.ws2b{word-spacing:-11.743232pt;}
.ws27{word-spacing:-11.697360pt;}
.ws28{word-spacing:-11.605616pt;}
.ws94{word-spacing:-11.560000pt;}
.ws2a{word-spacing:-11.559744pt;}
.ws29{word-spacing:-11.468000pt;}
.ws34{word-spacing:-11.436442pt;}
.ws92{word-spacing:-11.424000pt;}
.ws2d{word-spacing:-11.330384pt;}
.ws26{word-spacing:-11.238640pt;}
.ws25{word-spacing:-11.192768pt;}
.ws2c{word-spacing:-11.101024pt;}
.ws79{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws40{word-spacing:-10.840794pt;}
.ws36{word-spacing:-10.761374pt;}
.ws42{word-spacing:-10.562825pt;}
.ws2f{word-spacing:-10.523115pt;}
.ws38{word-spacing:-10.483405pt;}
.ws3b{word-spacing:-10.403985pt;}
.ws41{word-spacing:-10.324565pt;}
.ws3a{word-spacing:-10.245146pt;}
.ws31{word-spacing:-10.165726pt;}
.ws45{word-spacing:-10.126016pt;}
.ws2e{word-spacing:-10.086306pt;}
.ws39{word-spacing:-10.046596pt;}
.ws3f{word-spacing:-10.006886pt;}
.ws43{word-spacing:-9.967177pt;}
.ws30{word-spacing:-9.927467pt;}
.ws3e{word-spacing:-9.887757pt;}
.ws3c{word-spacing:-9.848047pt;}
.ws32{word-spacing:-9.768627pt;}
.ws44{word-spacing:-9.728917pt;}
.ws91{word-spacing:-9.565333pt;}
.ws37{word-spacing:-9.292109pt;}
.ws3d{word-spacing:-9.252399pt;}
.ws35{word-spacing:-9.212689pt;}
.ws33{word-spacing:-9.014140pt;}
.ws2{word-spacing:-8.885333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws5b{word-spacing:-1.508975pt;}
.ws8e{word-spacing:-1.386667pt;}
.wsa{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.226667pt;}
.wsb2{word-spacing:-1.178667pt;}
.ws52{word-spacing:-1.173333pt;}
.ws9d{word-spacing:-1.133333pt;}
.ws80{word-spacing:-1.120000pt;}
.ws90{word-spacing:-1.066667pt;}
.ws6d{word-spacing:-1.013333pt;}
.wsa0{word-spacing:-0.952000pt;}
.wsc0{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.861333pt;}
.ws47{word-spacing:-0.853333pt;}
.wsbd{word-spacing:-0.770667pt;}
.ws77{word-spacing:-0.746667pt;}
.wsb7{word-spacing:-0.725333pt;}
.ws76{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.680000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsa2{word-spacing:-0.634667pt;}
.wsac{word-spacing:-0.589333pt;}
.ws20{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws8{word-spacing:-0.506667pt;}
.ws7c{word-spacing:-0.480000pt;}
.wsab{word-spacing:-0.453333pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws59{word-spacing:-0.397099pt;}
.ws8b{word-spacing:-0.373333pt;}
.ws85{word-spacing:-0.320000pt;}
.ws55{word-spacing:-0.275232pt;}
.ws10{word-spacing:-0.266667pt;}
.ws99{word-spacing:-0.234667pt;}
.ws54{word-spacing:-0.229360pt;}
.ws98{word-spacing:-0.226667pt;}
.ws95{word-spacing:-0.213333pt;}
.wsb9{word-spacing:-0.181333pt;}
.ws51{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.158839pt;}
.ws56{word-spacing:-0.137616pt;}
.wsa7{word-spacing:-0.136000pt;}
.ws5a{word-spacing:-0.119130pt;}
.ws8d{word-spacing:-0.106667pt;}
.wsa5{word-spacing:-0.090667pt;}
.ws71{word-spacing:-0.053333pt;}
.wsa3{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.045333pt;}
.ws53{word-spacing:0.045872pt;}
.ws19{word-spacing:0.053333pt;}
.ws70{word-spacing:0.106667pt;}
.ws63{word-spacing:0.160000pt;}
.ws58{word-spacing:0.198549pt;}
.ws72{word-spacing:0.213333pt;}
.ws1d{word-spacing:0.266667pt;}
.ws9a{word-spacing:0.317333pt;}
.wsf{word-spacing:0.320000pt;}
.wsad{word-spacing:0.362667pt;}
.ws74{word-spacing:0.373333pt;}
.ws9b{word-spacing:0.408000pt;}
.ws1c{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws6a{word-spacing:0.746667pt;}
.ws6b{word-spacing:0.800000pt;}
.ws8f{word-spacing:0.906667pt;}
.wsb0{word-spacing:0.952000pt;}
.ws61{word-spacing:0.960000pt;}
.ws9e{word-spacing:1.042667pt;}
.ws83{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws9f{word-spacing:1.133333pt;}
.ws67{word-spacing:1.173333pt;}
.ws88{word-spacing:1.280000pt;}
.wsb5{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsae{word-spacing:1.360000pt;}
.ws4e{word-spacing:1.440000pt;}
.ws49{word-spacing:1.493333pt;}
.wsbc{word-spacing:1.586667pt;}
.ws15{word-spacing:1.600000pt;}
.ws9{word-spacing:1.653333pt;}
.wsd{word-spacing:1.706667pt;}
.ws75{word-spacing:1.760000pt;}
.wsb4{word-spacing:1.813333pt;}
.ws7d{word-spacing:1.866667pt;}
.ws6f{word-spacing:1.920000pt;}
.wsbe{word-spacing:1.949333pt;}
.ws96{word-spacing:2.026667pt;}
.wsa6{word-spacing:2.040000pt;}
.ws8c{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.085333pt;}
.wse{word-spacing:2.133333pt;}
.wsaa{word-spacing:2.176000pt;}
.ws82{word-spacing:2.240000pt;}
.wsbf{word-spacing:2.266667pt;}
.ws1f{word-spacing:2.293333pt;}
.ws7f{word-spacing:2.346667pt;}
.wsaf{word-spacing:2.357333pt;}
.ws50{word-spacing:2.400000pt;}
.wsa4{word-spacing:2.402667pt;}
.ws86{word-spacing:2.453333pt;}
.ws48{word-spacing:2.506667pt;}
.ws14{word-spacing:2.560000pt;}
.wsa8{word-spacing:2.629333pt;}
.ws73{word-spacing:2.666667pt;}
.wsa9{word-spacing:2.720000pt;}
.ws17{word-spacing:2.933333pt;}
.ws16{word-spacing:3.200000pt;}
.wsb3{word-spacing:3.218667pt;}
.ws89{word-spacing:3.253333pt;}
.ws1e{word-spacing:3.306667pt;}
.wsb8{word-spacing:3.354667pt;}
.ws87{word-spacing:3.413333pt;}
.ws81{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.626667pt;}
.ws18{word-spacing:3.733333pt;}
.ws97{word-spacing:3.808000pt;}
.ws84{word-spacing:3.840000pt;}
.ws8a{word-spacing:4.106667pt;}
.ws69{word-spacing:4.533333pt;}
.wsb6{word-spacing:4.578667pt;}
.ws4f{word-spacing:4.906667pt;}
.ws46{word-spacing:4.960000pt;}
.ws7e{word-spacing:5.333333pt;}
.ws6e{word-spacing:5.386667pt;}
.ws65{word-spacing:5.653333pt;}
.ws66{word-spacing:5.760000pt;}
.ws68{word-spacing:5.813333pt;}
.ws4a{word-spacing:6.026667pt;}
.ws64{word-spacing:6.293333pt;}
.ws4d{word-spacing:6.613333pt;}
.wsba{word-spacing:12.013333pt;}
.wsbb{word-spacing:15.640000pt;}
.ws21{word-spacing:64.237333pt;}
._11{margin-left:-2630.557387pt;}
._e{margin-left:-64.600000pt;}
._a{margin-left:-14.733333pt;}
._14{margin-left:-12.805333pt;}
._12{margin-left:-9.479200pt;}
._7{margin-left:-7.456000pt;}
._4{margin-left:-5.066667pt;}
._5{margin-left:-4.056000pt;}
._2{margin-left:-2.786667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.722667pt;}
._13{width:2.738667pt;}
._15{width:4.586667pt;}
._16{width:7.752000pt;}
._17{width:10.064000pt;}
._18{width:12.829333pt;}
._10{width:13.872000pt;}
._b{width:16.320000pt;}
._6{width:26.197333pt;}
._8{width:30.560000pt;}
._9{width:31.786667pt;}
._3{width:35.099202pt;}
._d{width:48.552000pt;}
._c{width:64.237333pt;}
._f{width:2206.101333pt;}
.fsa{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:39.709867pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:45.871999pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y55{bottom:100.389600pt;}
.ydc{bottom:100.928141pt;}
.y136{bottom:100.928263pt;}
.y80{bottom:100.946798pt;}
.y108{bottom:101.986938pt;}
.y1a5{bottom:103.694300pt;}
.y163{bottom:104.816261pt;}
.y1a4{bottom:117.022300pt;}
.ydb{bottom:117.594808pt;}
.y135{bottom:117.594930pt;}
.y162{bottom:118.144261pt;}
.y54{bottom:118.250936pt;}
.y107{bottom:118.653605pt;}
.y4f{bottom:122.122803pt;}
.y20{bottom:123.790666pt;}
.y1a3{bottom:130.350300pt;}
.y161{bottom:131.472261pt;}
.yaf{bottom:133.362956pt;}
.yda{bottom:134.261475pt;}
.y134{bottom:134.261597pt;}
.y106{bottom:135.320272pt;}
.y4e{bottom:138.789469pt;}
.y53{bottom:140.483608pt;}
.y7e{bottom:141.225630pt;}
.y1a2{bottom:143.678300pt;}
.y160{bottom:144.800261pt;}
.yae{bottom:150.029622pt;}
.yd9{bottom:150.928141pt;}
.y133{bottom:150.928263pt;}
.y105{bottom:151.986938pt;}
.y7d{bottom:153.545616pt;}
.y52{bottom:153.811608pt;}
.y4d{bottom:155.456136pt;}
.y1a1{bottom:157.006300pt;}
.y15f{bottom:158.128261pt;}
.y7f{bottom:165.696836pt;}
.y7c{bottom:165.865602pt;}
.yad{bottom:166.696289pt;}
.yd8{bottom:167.594808pt;}
.y132{bottom:167.594930pt;}
.y104{bottom:168.653605pt;}
.y1a0{bottom:170.334300pt;}
.y15e{bottom:171.456261pt;}
.y4c{bottom:172.122803pt;}
.y51{bottom:173.848941pt;}
.y17{bottom:175.052000pt;}
.y7b{bottom:178.354356pt;}
.yac{bottom:183.362956pt;}
.y19f{bottom:183.662300pt;}
.yd7{bottom:184.261475pt;}
.y131{bottom:184.261597pt;}
.y15d{bottom:184.784261pt;}
.y103{bottom:185.320272pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y50{bottom:187.176941pt;}
.y4b{bottom:188.789469pt;}
.y7a{bottom:190.674342pt;}
.y19e{bottom:196.990300pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yab{bottom:200.029622pt;}
.y130{bottom:200.928263pt;}
.y79{bottom:203.163095pt;}
.y4a{bottom:205.456136pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y19d{bottom:210.318300pt;}
.y15c{bottom:214.784261pt;}
.yaa{bottom:216.696289pt;}
.yd6{bottom:217.594808pt;}
.y12f{bottom:217.594930pt;}
.y102{bottom:218.653605pt;}
.y49{bottom:222.122803pt;}
.y19c{bottom:223.646300pt;}
.y78{bottom:226.780538pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ya9{bottom:233.362956pt;}
.y12e{bottom:234.261597pt;}
.y19b{bottom:236.974300pt;}
.y47{bottom:238.789469pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.ya8{bottom:250.029622pt;}
.y19a{bottom:250.302300pt;}
.yd5{bottom:250.928141pt;}
.y12d{bottom:250.928263pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y46{bottom:255.456136pt;}
.y199{bottom:263.630300pt;}
.ya7{bottom:266.696289pt;}
.y15b{bottom:266.782287pt;}
.yd4{bottom:267.594808pt;}
.y12c{bottom:267.594930pt;}
.y72{bottom:268.050147pt;}
.y77{bottom:268.222022pt;}
.y70{bottom:268.393897pt;}
.y101{bottom:268.653605pt;}
.y73{bottom:268.737937pt;}
.y75{bottom:269.077490pt;}
.y45{bottom:272.122803pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y198{bottom:276.958300pt;}
.y15a{bottom:280.110287pt;}
.y71{bottom:282.763590pt;}
.y76{bottom:282.935465pt;}
.y6f{bottom:283.107340pt;}
.ya6{bottom:283.362956pt;}
.y74{bottom:283.790933pt;}
.yd3{bottom:284.261475pt;}
.y100{bottom:285.320272pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y44{bottom:288.789469pt;}
.y197{bottom:290.286300pt;}
.y159{bottom:293.438287pt;}
.ya5{bottom:300.029622pt;}
.yd2{bottom:300.928141pt;}
.y12b{bottom:300.928263pt;}
.yff{bottom:301.986938pt;}
.y196{bottom:303.614300pt;}
.y43{bottom:305.456136pt;}
.y158{bottom:306.766287pt;}
.ye{bottom:309.452000pt;}
.ya4{bottom:316.696289pt;}
.y195{bottom:316.942300pt;}
.yd1{bottom:317.594808pt;}
.yfe{bottom:318.653605pt;}
.y157{bottom:320.094287pt;}
.y42{bottom:322.122803pt;}
.y194{bottom:330.270300pt;}
.ya3{bottom:333.362956pt;}
.y156{bottom:333.422287pt;}
.yd0{bottom:334.261475pt;}
.y12a{bottom:334.261597pt;}
.yfd{bottom:335.320272pt;}
.y41{bottom:338.789469pt;}
.y193{bottom:343.598300pt;}
.yd{bottom:343.809333pt;}
.y155{bottom:346.750287pt;}
.ya2{bottom:350.029622pt;}
.y129{bottom:350.928263pt;}
.yfc{bottom:351.986938pt;}
.y40{bottom:355.456136pt;}
.y192{bottom:356.926300pt;}
.y154{bottom:360.078287pt;}
.yc{bottom:362.706666pt;}
.y61{bottom:366.604248pt;}
.ya1{bottom:366.696289pt;}
.ycf{bottom:367.594808pt;}
.y128{bottom:367.594930pt;}
.y6d{bottom:367.604245pt;}
.yfb{bottom:368.653605pt;}
.y191{bottom:370.254300pt;}
.y3f{bottom:372.122803pt;}
.y153{bottom:373.406287pt;}
.y60{bottom:383.270915pt;}
.ya0{bottom:383.362956pt;}
.y190{bottom:383.582300pt;}
.y127{bottom:384.261597pt;}
.y6c{bottom:384.270912pt;}
.yfa{bottom:385.320272pt;}
.y152{bottom:386.734287pt;}
.y3e{bottom:388.789469pt;}
.y18f{bottom:396.910300pt;}
.y5f{bottom:399.937581pt;}
.y9f{bottom:400.029622pt;}
.y151{bottom:400.062287pt;}
.y126{bottom:400.928263pt;}
.y6b{bottom:400.937579pt;}
.yf9{bottom:401.986938pt;}
.y3d{bottom:405.456136pt;}
.y18e{bottom:410.238300pt;}
.y150{bottom:413.390287pt;}
.y5e{bottom:416.604248pt;}
.y9e{bottom:416.696289pt;}
.yce{bottom:417.594808pt;}
.y125{bottom:417.594930pt;}
.y6a{bottom:417.604245pt;}
.yf8{bottom:418.653605pt;}
.y3c{bottom:422.122803pt;}
.y18d{bottom:423.566300pt;}
.y5d{bottom:433.270915pt;}
.y9d{bottom:433.362956pt;}
.ycd{bottom:434.261475pt;}
.y124{bottom:434.261597pt;}
.y69{bottom:434.270912pt;}
.y18c{bottom:436.894300pt;}
.y3b{bottom:438.789469pt;}
.y14f{bottom:440.057620pt;}
.yb{bottom:446.990669pt;}
.y5c{bottom:449.937581pt;}
.y9c{bottom:450.029622pt;}
.y18b{bottom:450.222300pt;}
.ycc{bottom:450.928141pt;}
.y123{bottom:450.928263pt;}
.y68{bottom:450.937579pt;}
.yf7{bottom:451.986938pt;}
.y14e{bottom:453.385620pt;}
.y3a{bottom:455.456136pt;}
.ya{bottom:462.990669pt;}
.y18a{bottom:463.550300pt;}
.y5b{bottom:466.604248pt;}
.y9b{bottom:466.696289pt;}
.ycb{bottom:467.594808pt;}
.y122{bottom:467.594930pt;}
.y67{bottom:467.604245pt;}
.y39{bottom:472.122803pt;}
.y189{bottom:476.878300pt;}
.y9{bottom:478.990666pt;}
.y14d{bottom:480.052287pt;}
.y5a{bottom:483.270915pt;}
.y9a{bottom:483.362956pt;}
.yca{bottom:484.261475pt;}
.y121{bottom:484.261597pt;}
.y66{bottom:484.270912pt;}
.y38{bottom:488.789469pt;}
.y188{bottom:490.206300pt;}
.y8{bottom:494.990666pt;}
.y59{bottom:499.937581pt;}
.y99{bottom:500.029622pt;}
.yc9{bottom:500.928141pt;}
.y120{bottom:500.928263pt;}
.y65{bottom:500.937579pt;}
.yf6{bottom:501.986898pt;}
.y187{bottom:503.534300pt;}
.y37{bottom:505.456136pt;}
.y14c{bottom:510.057620pt;}
.y58{bottom:516.604248pt;}
.y98{bottom:516.696289pt;}
.y186{bottom:516.862300pt;}
.yc8{bottom:517.594808pt;}
.y11f{bottom:517.594930pt;}
.y64{bottom:517.604245pt;}
.yf5{bottom:518.653564pt;}
.y36{bottom:522.122803pt;}
.y14b{bottom:523.385620pt;}
.y185{bottom:530.190300pt;}
.y97{bottom:533.362956pt;}
.yc7{bottom:534.261475pt;}
.y63{bottom:534.270912pt;}
.yf4{bottom:535.320231pt;}
.y35{bottom:538.789469pt;}
.y184{bottom:543.518300pt;}
.y57{bottom:549.937581pt;}
.y96{bottom:550.029622pt;}
.y14a{bottom:550.052246pt;}
.yc6{bottom:550.928141pt;}
.y11e{bottom:550.928263pt;}
.y62{bottom:550.937579pt;}
.yf3{bottom:551.986898pt;}
.y34{bottom:555.456136pt;}
.y183{bottom:556.846300pt;}
.y95{bottom:566.696289pt;}
.y149{bottom:566.718913pt;}
.yc5{bottom:567.594808pt;}
.yf2{bottom:568.653564pt;}
.y182{bottom:570.174300pt;}
.y33{bottom:572.122803pt;}
.y7{bottom:573.786667pt;}
.y94{bottom:583.362956pt;}
.y148{bottom:583.385579pt;}
.y181{bottom:583.502300pt;}
.yc4{bottom:584.261475pt;}
.y11d{bottom:584.261637pt;}
.yf1{bottom:585.320231pt;}
.y32{bottom:588.789469pt;}
.y6{bottom:592.685334pt;}
.y6e{bottom:596.382933pt;}
.y180{bottom:596.830300pt;}
.y93{bottom:600.029622pt;}
.y147{bottom:600.052246pt;}
.yc3{bottom:600.928141pt;}
.y11c{bottom:600.928304pt;}
.yf0{bottom:601.986898pt;}
.y31{bottom:605.456136pt;}
.y17f{bottom:610.158300pt;}
.y92{bottom:616.696289pt;}
.y146{bottom:616.718913pt;}
.y11b{bottom:617.594971pt;}
.yef{bottom:618.653564pt;}
.y30{bottom:622.122803pt;}
.y17e{bottom:623.486300pt;}
.y91{bottom:633.362956pt;}
.y145{bottom:633.385579pt;}
.yc2{bottom:634.261475pt;}
.y11a{bottom:634.261637pt;}
.yee{bottom:635.320231pt;}
.y17d{bottom:636.814300pt;}
.y2f{bottom:638.789469pt;}
.y5{bottom:645.598667pt;}
.y90{bottom:650.029622pt;}
.y144{bottom:650.052246pt;}
.y17c{bottom:650.142300pt;}
.y119{bottom:650.928304pt;}
.yed{bottom:651.986898pt;}
.y2e{bottom:655.456136pt;}
.y1bc{bottom:663.342955pt;}
.y17b{bottom:663.470300pt;}
.y8f{bottom:666.696289pt;}
.y143{bottom:666.718913pt;}
.yc1{bottom:667.594808pt;}
.y118{bottom:667.594971pt;}
.yec{bottom:668.653564pt;}
.y3{bottom:668.977329pt;}
.y2d{bottom:672.122803pt;}
.y1bb{bottom:676.670955pt;}
.y17a{bottom:676.798300pt;}
.y8e{bottom:683.362956pt;}
.y142{bottom:683.385579pt;}
.yc0{bottom:684.261475pt;}
.y117{bottom:684.261637pt;}
.yeb{bottom:685.320231pt;}
.y2c{bottom:688.789469pt;}
.y1d1{bottom:690.055622pt;}
.y179{bottom:690.126300pt;}
.y8d{bottom:700.029622pt;}
.y141{bottom:700.052246pt;}
.ybf{bottom:700.928141pt;}
.y116{bottom:700.928304pt;}
.yea{bottom:701.986898pt;}
.y1d0{bottom:703.383622pt;}
.y1ba{bottom:703.417620pt;}
.y178{bottom:703.454300pt;}
.y2b{bottom:705.456136pt;}
.y1cf{bottom:716.711622pt;}
.y140{bottom:716.718913pt;}
.y1b9{bottom:716.745620pt;}
.y177{bottom:716.782300pt;}
.ybe{bottom:717.594808pt;}
.ye9{bottom:718.653564pt;}
.y2a{bottom:722.122803pt;}
.y1ce{bottom:730.039622pt;}
.y1b8{bottom:730.073620pt;}
.y176{bottom:730.110300pt;}
.y8c{bottom:733.362956pt;}
.y13f{bottom:733.385579pt;}
.ybd{bottom:734.261475pt;}
.y115{bottom:734.261637pt;}
.y48{bottom:738.789469pt;}
.y1cd{bottom:743.367622pt;}
.y1b7{bottom:743.401620pt;}
.y175{bottom:743.438300pt;}
.y13e{bottom:750.052246pt;}
.ybc{bottom:750.928141pt;}
.ye8{bottom:751.986898pt;}
.y29{bottom:755.456136pt;}
.y1cc{bottom:756.695622pt;}
.y1b6{bottom:756.729620pt;}
.y174{bottom:756.766300pt;}
.y13d{bottom:766.718913pt;}
.ybb{bottom:767.594808pt;}
.y114{bottom:767.594971pt;}
.y1cb{bottom:770.023622pt;}
.y1b5{bottom:770.057620pt;}
.y173{bottom:770.094300pt;}
.y2{bottom:781.661334pt;}
.y1ca{bottom:783.351622pt;}
.y8b{bottom:783.362956pt;}
.y13c{bottom:783.385579pt;}
.y1b4{bottom:783.385620pt;}
.y172{bottom:783.422300pt;}
.yba{bottom:784.261475pt;}
.y113{bottom:784.261637pt;}
.y1c9{bottom:796.679622pt;}
.y1b3{bottom:796.713620pt;}
.y171{bottom:796.750300pt;}
.y8a{bottom:800.029622pt;}
.y13b{bottom:800.052246pt;}
.yb9{bottom:800.928141pt;}
.y112{bottom:800.928304pt;}
.ye7{bottom:801.986898pt;}
.y28{bottom:805.461469pt;}
.y1c8{bottom:810.007622pt;}
.y1b2{bottom:810.041620pt;}
.y170{bottom:810.078300pt;}
.y89{bottom:816.696289pt;}
.y13a{bottom:816.718913pt;}
.yb8{bottom:817.594808pt;}
.y111{bottom:817.594971pt;}
.ye6{bottom:818.653564pt;}
.y27{bottom:818.789469pt;}
.y1c7{bottom:823.335622pt;}
.y1b1{bottom:823.369620pt;}
.y16f{bottom:823.406300pt;}
.y88{bottom:833.362956pt;}
.y139{bottom:833.385579pt;}
.yb7{bottom:834.261475pt;}
.y110{bottom:834.261637pt;}
.ye5{bottom:835.320231pt;}
.y1c6{bottom:836.663622pt;}
.y1b0{bottom:836.697620pt;}
.y16e{bottom:836.734300pt;}
.y1af{bottom:850.025620pt;}
.y87{bottom:850.029622pt;}
.y138{bottom:850.052246pt;}
.y16d{bottom:850.062300pt;}
.yb6{bottom:850.928141pt;}
.y10f{bottom:850.928304pt;}
.ye4{bottom:851.986898pt;}
.y26{bottom:856.656169pt;}
.y1{bottom:859.312000pt;}
.y1c5{bottom:863.330955pt;}
.y1ae{bottom:863.353620pt;}
.y16c{bottom:863.390300pt;}
.y86{bottom:866.696289pt;}
.yb5{bottom:867.594808pt;}
.y10e{bottom:867.594971pt;}
.ye3{bottom:868.653564pt;}
.y1c4{bottom:876.658955pt;}
.y1ad{bottom:876.681620pt;}
.y16b{bottom:876.718300pt;}
.y85{bottom:883.362956pt;}
.y137{bottom:883.385579pt;}
.yb4{bottom:884.261475pt;}
.y10d{bottom:884.261637pt;}
.ye2{bottom:885.320231pt;}
.y1c3{bottom:889.986955pt;}
.y1ac{bottom:890.009620pt;}
.y16a{bottom:890.046300pt;}
.y25{bottom:896.377441pt;}
.y84{bottom:900.029622pt;}
.yb3{bottom:900.928141pt;}
.y10c{bottom:900.928304pt;}
.ye1{bottom:901.986898pt;}
.y1c2{bottom:903.314955pt;}
.y1ab{bottom:903.337620pt;}
.y169{bottom:903.374300pt;}
.y1c1{bottom:916.642955pt;}
.y1aa{bottom:916.665620pt;}
.y168{bottom:916.702300pt;}
.yb2{bottom:917.594808pt;}
.y10b{bottom:917.594971pt;}
.ye0{bottom:918.653564pt;}
.y1c0{bottom:929.970955pt;}
.y1a9{bottom:929.993620pt;}
.y167{bottom:930.030300pt;}
.y83{bottom:933.362956pt;}
.yb1{bottom:934.261475pt;}
.y10a{bottom:934.261637pt;}
.ydf{bottom:935.320231pt;}
.y1bf{bottom:943.298955pt;}
.y1a8{bottom:943.321620pt;}
.y166{bottom:943.358300pt;}
.yde{bottom:951.986898pt;}
.y24{bottom:956.561849pt;}
.y1be{bottom:956.626955pt;}
.y1a7{bottom:956.649620pt;}
.y165{bottom:956.686300pt;}
.y82{bottom:966.696289pt;}
.yb0{bottom:967.594808pt;}
.y109{bottom:967.594971pt;}
.ydd{bottom:968.653564pt;}
.y1bd{bottom:969.954955pt;}
.y1a6{bottom:969.977620pt;}
.y164{bottom:970.014300pt;}
.y23{bottom:986.299161pt;}
.y22{bottom:1001.406494pt;}
.y56{bottom:1002.206543pt;}
.y81{bottom:1002.206706pt;}
.h13{height:23.070133pt;}
.h17{height:26.923290pt;}
.h18{height:27.598357pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h15{height:31.101215pt;}
.h12{height:32.957333pt;}
.h10{height:38.773333pt;}
.hb{height:39.712000pt;}
.h14{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1a{height:46.376000pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h11{height:52.448000pt;}
.h19{height:54.560000pt;}
.he{height:57.658667pt;}
.hf{height:63.296000pt;}
.h16{height:68.054193pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.x8{left:83.151458pt;}
.xc{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:104.178802pt;}
.x4{left:180.874667pt;}
.x25{left:210.948761pt;}
.x24{left:214.036203pt;}
.x23{left:218.314941pt;}
.xf{left:223.442549pt;}
.x26{left:226.882346pt;}
.xe{left:229.096273pt;}
.x11{left:314.523282pt;}
.x15{left:321.028259pt;}
.x19{left:325.148158pt;}
.x18{left:326.686915pt;}
.x17{left:328.046978pt;}
.x16{left:329.416969pt;}
.x10{left:332.149597pt;}
.x3{left:404.408000pt;}
.x9{left:408.191447pt;}
.xa{left:423.309087pt;}
.x1a{left:425.096395pt;}
.x12{left:426.632412pt;}
.xb{left:429.522420pt;}
.x28{left:430.868135pt;}
.x1e{left:432.978803pt;}
.x1d{left:434.338866pt;}
.x1c{left:436.562619pt;}
.x1b{left:439.123905pt;}
.x22{left:525.721993pt;}
.x1f{left:527.767049pt;}
.x21{left:528.978202pt;}
.x14{left:533.926030pt;}
.x20{left:539.233274pt;}
.x13{left:540.428385pt;}
.x5{left:647.307210pt;}
.x27{left:709.519613pt;}
}




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