
    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_9079ffc5ed73ee917ece9fab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_8f482e67b83f3e9d7d5cac99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_fbfcddd8fb7bf7b387bfeaf8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_ba0222d82d4321499d6a6d4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_39e054dd3bb39b442afda261.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.169000;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_430c9569565c72b3890beb70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.190048;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_edeb7544dac3696b6fb2f6ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_9ec8fec23679a1eb89f72b9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_72dc6e54c12f87efab22b31f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.698000;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_ea13847b46de0a93e832b39b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;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_c1e3f99d01dd1726f151ad8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_d14bece126974e51e99ad580.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_99e9c700f64eaf1a51b765df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911133;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_487b422bcae6d721bf8dca23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_defdf0cc2ba64acbee1a8cb4.woff2')format("woff");}.fff{font-family:fff;line-height:0.710449;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:ff10;src:url('chunks/assets/font_fec9d70f869aa963dd0a715d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862305;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:ff11;src:url('chunks/assets/font_fa70814cc4effcedf2569a8b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.862305;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:ff12;src:url('chunks/assets/font_194b25753e9796b2d2793d6c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.026000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980162px;}
.v1{vertical-align:31.871657px;}
.ls60{letter-spacing:-7.599000px;}
.ls62{letter-spacing:-5.202000px;}
.ls2e{letter-spacing:-4.266000px;}
.ls15{letter-spacing:-4.073400px;}
.lsc{letter-spacing:-3.264000px;}
.ls4e{letter-spacing:-3.000000px;}
.ls64{letter-spacing:-2.805000px;}
.ls56{letter-spacing:-2.754000px;}
.ls53{letter-spacing:-2.592000px;}
.ls63{letter-spacing:-2.550000px;}
.ls5d{letter-spacing:-2.538000px;}
.ls4d{letter-spacing:-2.376000px;}
.ls3a{letter-spacing:-2.268000px;}
.ls3f{letter-spacing:-2.214000px;}
.ls47{letter-spacing:-2.052000px;}
.ls57{letter-spacing:-2.040000px;}
.ls21{letter-spacing:-1.980000px;}
.ls1e{letter-spacing:-1.728000px;}
.ls10{letter-spacing:-1.428000px;}
.ls3c{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-1.020000px;}
.ls26{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.840000px;}
.ls22{letter-spacing:-0.780000px;}
.ls27{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.660000px;}
.ls23{letter-spacing:-0.600000px;}
.ls61{letter-spacing:-0.561000px;}
.ls24{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.510000px;}
.ls28{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.357000px;}
.ls12{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls40{letter-spacing:-0.237600px;}
.ls42{letter-spacing:-0.190080px;}
.ls1f{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.120000px;}
.ls41{letter-spacing:-0.095040px;}
.ls30{letter-spacing:-0.060000px;}
.lse{letter-spacing:-0.051000px;}
.lsb{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000002px;}
.ls45{letter-spacing:0.000006px;}
.ls3d{letter-spacing:0.020529px;}
.ls4f{letter-spacing:0.030000px;}
.ls17{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.102000px;}
.ls1b{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.150000px;}
.ls4b{letter-spacing:0.167400px;}
.ls1c{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.204000px;}
.ls49{letter-spacing:0.210000px;}
.ls16{letter-spacing:0.222000px;}
.ls4c{letter-spacing:0.223200px;}
.ls50{letter-spacing:0.239991px;}
.ls36{letter-spacing:0.240000px;}
.ls52{letter-spacing:0.246001px;}
.ls1{letter-spacing:0.255000px;}
.ls5{letter-spacing:0.270000px;}
.ls55{letter-spacing:0.299988px;}
.ls19{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.419993px;}
.ls1a{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.485975px;}
.ls1d{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.600000px;}
.ls2a{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.690000px;}
.ls29{letter-spacing:0.720000px;}
.ls59{letter-spacing:0.780000px;}
.ls9{letter-spacing:0.810000px;}
.ls3e{letter-spacing:0.821146px;}
.ls58{letter-spacing:0.840000px;}
.ls46{letter-spacing:0.858049px;}
.ls7{letter-spacing:0.892800px;}
.ls65{letter-spacing:0.918000px;}
.ls8{letter-spacing:0.948600px;}
.lsf{letter-spacing:0.969000px;}
.lsa{letter-spacing:1.080000px;}
.ls32{letter-spacing:1.080010px;}
.ls34{letter-spacing:1.139932px;}
.ls37{letter-spacing:1.140005px;}
.ls11{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.242000px;}
.ls48{letter-spacing:1.445994px;}
.ls31{letter-spacing:1.680019px;}
.ls38{letter-spacing:1.799945px;}
.ls5e{letter-spacing:2.295000px;}
.ls33{letter-spacing:2.519991px;}
.ls2b{letter-spacing:2.520020px;}
.ls5f{letter-spacing:3.315000px;}
.ls5b{letter-spacing:13.979998px;}
.ls51{letter-spacing:20.100018px;}
.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;}
}
.ws73{word-spacing:-17.107200px;}
.ws4b{word-spacing:-15.420000px;}
.wsb9{word-spacing:-14.586000px;}
.wsc1{word-spacing:-13.716000px;}
.wsaf{word-spacing:-13.380000px;}
.wsb0{word-spacing:-13.260000px;}
.ws94{word-spacing:-13.020000px;}
.wsa3{word-spacing:-12.780000px;}
.ws4a{word-spacing:-12.540000px;}
.ws63{word-spacing:-12.360000px;}
.ws93{word-spacing:-12.300000px;}
.ws0{word-spacing:-12.240000px;}
.ws3{word-spacing:-11.997000px;}
.ws72{word-spacing:-11.662200px;}
.ws65{word-spacing:-11.580000px;}
.ws8a{word-spacing:-11.460000px;}
.ws28{word-spacing:-11.280000px;}
.ws26{word-spacing:-11.070000px;}
.wsb8{word-spacing:-10.965000px;}
.ws64{word-spacing:-10.920000px;}
.ws8b{word-spacing:-10.860000px;}
.ws95{word-spacing:-10.800000px;}
.ws88{word-spacing:-10.746000px;}
.ws96{word-spacing:-10.680000px;}
.wsc2{word-spacing:-10.659000px;}
.wsa4{word-spacing:-10.620000px;}
.wsae{word-spacing:-10.584000px;}
.ws62{word-spacing:-10.530000px;}
.ws1{word-spacing:-10.380000px;}
.wsa2{word-spacing:-10.206000px;}
.ws89{word-spacing:-10.080000px;}
.ws27{word-spacing:-9.300000px;}
.wsac{word-spacing:-9.240000px;}
.ws2{word-spacing:-8.901000px;}
.wsbb{word-spacing:-8.160000px;}
.ws29{word-spacing:-7.310820px;}
.wsba{word-spacing:-5.763000px;}
.ws6b{word-spacing:-2.880000px;}
.ws43{word-spacing:-2.760000px;}
.ws45{word-spacing:-2.700000px;}
.wsa6{word-spacing:-2.520000px;}
.ws1c{word-spacing:-2.400000px;}
.ws44{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.295000px;}
.ws1a{word-spacing:-2.220000px;}
.ws31{word-spacing:-2.040000px;}
.ws55{word-spacing:-1.980000px;}
.ws5d{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.860000px;}
.wsb6{word-spacing:-1.800000px;}
.ws30{word-spacing:-1.740000px;}
.ws91{word-spacing:-1.680000px;}
.ws9{word-spacing:-1.632000px;}
.ws5f{word-spacing:-1.620000px;}
.ws15{word-spacing:-1.581000px;}
.ws68{word-spacing:-1.560000px;}
.ws57{word-spacing:-1.500000px;}
.ws69{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.428000px;}
.ws4f{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.377000px;}
.ws5c{word-spacing:-1.320000px;}
.ws42{word-spacing:-1.260000px;}
.ws4c{word-spacing:-1.242000px;}
.ws18{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.173000px;}
.ws99{word-spacing:-1.080000px;}
.ws46{word-spacing:-1.020000px;}
.ws54{word-spacing:-0.960000px;}
.ws6f{word-spacing:-0.900000px;}
.ws34{word-spacing:-0.840000px;}
.ws4{word-spacing:-0.810000px;}
.ws5a{word-spacing:-0.780000px;}
.ws6d{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.714000px;}
.ws6a{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.561000px;}
.ws7e{word-spacing:-0.480000px;}
.ws7a{word-spacing:-0.420000px;}
.ws80{word-spacing:-0.360000px;}
.ws5b{word-spacing:-0.300000px;}
.ws4e{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.223200px;}
.ws25{word-spacing:-0.222000px;}
.ws11{word-spacing:-0.204000px;}
.ws5e{word-spacing:-0.180000px;}
.ws82{word-spacing:-0.167400px;}
.ws3e{word-spacing:-0.120000px;}
.ws85{word-spacing:-0.068429px;}
.ws33{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws84{word-spacing:0.105178px;}
.ws83{word-spacing:0.111600px;}
.ws8e{word-spacing:0.120000px;}
.ws35{word-spacing:0.180000px;}
.ws86{word-spacing:0.190080px;}
.ws32{word-spacing:0.240000px;}
.ws9f{word-spacing:0.300000px;}
.ws3b{word-spacing:0.360000px;}
.ws3a{word-spacing:0.420000px;}
.ws49{word-spacing:0.446400px;}
.wsa9{word-spacing:0.480000px;}
.ws81{word-spacing:0.540000px;}
.ws47{word-spacing:0.600000px;}
.ws8d{word-spacing:0.660000px;}
.ws7d{word-spacing:0.720000px;}
.ws2c{word-spacing:0.780000px;}
.wsab{word-spacing:0.840000px;}
.ws3c{word-spacing:0.900000px;}
.ws16{word-spacing:0.969000px;}
.wsc{word-spacing:1.020000px;}
.ws1b{word-spacing:1.080000px;}
.ws41{word-spacing:1.140000px;}
.ws87{word-spacing:1.173000px;}
.ws71{word-spacing:1.200000px;}
.ws7c{word-spacing:1.260000px;}
.ws17{word-spacing:1.275000px;}
.ws9c{word-spacing:1.320000px;}
.ws56{word-spacing:1.380000px;}
.wsd{word-spacing:1.428000px;}
.ws9a{word-spacing:1.440000px;}
.ws6e{word-spacing:1.500000px;}
.wse{word-spacing:1.581000px;}
.ws61{word-spacing:1.620000px;}
.ws10{word-spacing:1.632000px;}
.ws3d{word-spacing:1.680000px;}
.ws78{word-spacing:1.740000px;}
.wsa1{word-spacing:1.785600px;}
.wsa8{word-spacing:1.800000px;}
.wsf{word-spacing:1.836000px;}
.wsa0{word-spacing:1.841400px;}
.ws2b{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.wsb{word-spacing:1.938000px;}
.ws67{word-spacing:1.980000px;}
.ws1d{word-spacing:2.040000px;}
.ws92{word-spacing:2.100000px;}
.ws7b{word-spacing:2.160000px;}
.ws2e{word-spacing:2.280000px;}
.ws9d{word-spacing:2.340000px;}
.wsaa{word-spacing:2.460000px;}
.ws2d{word-spacing:2.520000px;}
.wsc0{word-spacing:2.550000px;}
.ws9b{word-spacing:2.580000px;}
.ws14{word-spacing:2.601000px;}
.ws39{word-spacing:2.640000px;}
.ws1e{word-spacing:2.700000px;}
.ws19{word-spacing:2.760000px;}
.ws60{word-spacing:2.820000px;}
.ws9e{word-spacing:3.000000px;}
.ws7f{word-spacing:3.060000px;}
.ws50{word-spacing:3.120000px;}
.ws98{word-spacing:3.240000px;}
.ws7{word-spacing:3.264000px;}
.ws79{word-spacing:3.300000px;}
.ws6c{word-spacing:3.360000px;}
.wsb7{word-spacing:3.420000px;}
.ws36{word-spacing:3.480000px;}
.ws38{word-spacing:3.540000px;}
.ws8f{word-spacing:3.600000px;}
.ws48{word-spacing:3.780000px;}
.ws37{word-spacing:3.900000px;}
.ws1f{word-spacing:3.960000px;}
.ws24{word-spacing:4.073400px;}
.ws53{word-spacing:4.440000px;}
.ws70{word-spacing:4.500000px;}
.ws3f{word-spacing:4.560000px;}
.ws59{word-spacing:4.620000px;}
.wsb5{word-spacing:4.680000px;}
.ws58{word-spacing:4.800000px;}
.ws90{word-spacing:4.920000px;}
.wsb2{word-spacing:5.280000px;}
.ws52{word-spacing:5.460000px;}
.ws51{word-spacing:6.060000px;}
.wsb4{word-spacing:6.300000px;}
.wsb3{word-spacing:7.020000px;}
.ws20{word-spacing:7.254000px;}
.ws22{word-spacing:7.421400px;}
.wsbe{word-spacing:7.599000px;}
.ws21{word-spacing:8.035200px;}
.ws76{word-spacing:17.994240px;}
.ws75{word-spacing:18.337440px;}
.wsa7{word-spacing:22.080000px;}
.ws74{word-spacing:155.152800px;}
.ws5{word-spacing:610.956006px;}
.wsc3{word-spacing:865.403949px;}
.ws2a{word-spacing:867.995968px;}
.ws8c{word-spacing:868.373966px;}
.wsb1{word-spacing:868.482010px;}
.ws66{word-spacing:868.535980px;}
.wsa5{word-spacing:868.860008px;}
.ws77{word-spacing:966.384000px;}
.ws97{word-spacing:966.708023px;}
.wsbc{word-spacing:967.032051px;}
.wsad{word-spacing:967.464019px;}
.ws4d{word-spacing:970.541977px;}
._12{margin-left:-869.399655px;}
._d{margin-left:-868.282130px;}
._1a{margin-left:-865.690093px;}
._5{margin-left:-611.026206px;}
._17{margin-left:-20.510357px;}
._b{margin-left:-8.323800px;}
._a{margin-left:-7.248602px;}
._2{margin-left:-6.075000px;}
._e{margin-left:-4.771800px;}
._7{margin-left:-3.759000px;}
._3{margin-left:-2.716200px;}
._1{margin-left:-1.414800px;}
._0{width:1.404000px;}
._4{width:2.710800px;}
._8{width:3.863100px;}
._6{width:5.023500px;}
._9{width:6.249301px;}
._19{width:7.599000px;}
._14{width:11.879989px;}
._13{width:13.979998px;}
._15{width:16.379989px;}
._11{width:19.079989px;}
._18{width:21.420067px;}
._10{width:22.559989px;}
._16{width:24.539937px;}
._c{width:49.270796px;}
._f{width:51.335413px;}
.fc4{color:transparent;}
.fc3{color:rgb(112,109,110);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.200000px;}
.fs9{font-size:34.980000px;}
.fs6{font-size:41.400001px;}
.fse{font-size:47.520000px;}
.fs4{font-size:51.000000px;}
.fsd{font-size:52.588800px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:55.800000px;}
.fs7{font-size:55.800001px;}
.fs2{font-size:55.968000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:63.360000px;}
.fsc{font-size:68.428800px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y9a{bottom:-566.726400px;}
.yb7{bottom:-503.765010px;}
.yb6{bottom:-474.152447px;}
.yb5{bottom:-444.539884px;}
.yb4{bottom:-414.927320px;}
.yb3{bottom:-385.314757px;}
.yb2{bottom:-355.650872px;}
.yb1{bottom:-326.192274px;}
.yb0{bottom:-296.579711px;}
.yaf{bottom:-266.967148px;}
.yae{bottom:-237.354584px;}
.yad{bottom:-207.742021px;}
.yac{bottom:-178.129458px;}
.yab{bottom:-148.516895px;}
.yaa{bottom:-119.024082px;}
.ya9{bottom:-89.873413px;}
.ya8{bottom:-60.260850px;}
.ya7{bottom:-33.332850px;}
.ya6{bottom:-7.768252px;}
.y0{bottom:0.000000px;}
.ya5{bottom:21.844312px;}
.y2{bottom:40.399372px;}
.ya4{bottom:51.302910px;}
.ya3{bottom:80.915473px;}
.yd3{bottom:90.567152px;}
.y53{bottom:90.571345px;}
.y98{bottom:90.575700px;}
.y25{bottom:90.575704px;}
.y71{bottom:91.318002px;}
.y110{bottom:91.318004px;}
.y7f{bottom:91.318008px;}
.y100{bottom:91.318014px;}
.y17f{bottom:107.769988px;}
.y15b{bottom:107.795498px;}
.y52{bottom:107.966995px;}
.y97{bottom:107.971350px;}
.y24{bottom:107.971354px;}
.y70{bottom:109.768002px;}
.y10f{bottom:109.768004px;}
.y7e{bottom:109.768009px;}
.yff{bottom:109.768014px;}
.ya2{bottom:110.579358px;}
.y17e{bottom:125.020739px;}
.y15a{bottom:125.046249px;}
.y96{bottom:125.367000px;}
.y23{bottom:125.367004px;}
.yfe{bottom:128.218001px;}
.y6f{bottom:128.218002px;}
.y10e{bottom:128.218005px;}
.y7d{bottom:128.218009px;}
.yd2{bottom:128.218218px;}
.ya1{bottom:140.191921px;}
.y17d{bottom:142.271489px;}
.y159{bottom:142.296999px;}
.y129{bottom:146.668000px;}
.yfd{bottom:146.668001px;}
.y6e{bottom:146.668002px;}
.y10d{bottom:146.668005px;}
.y7c{bottom:146.668009px;}
.y51{bottom:146.668047px;}
.yd1{bottom:146.668218px;}
.y17c{bottom:159.522240px;}
.y158{bottom:159.547750px;}
.y128{bottom:165.117993px;}
.yfc{bottom:165.118001px;}
.y6d{bottom:165.118002px;}
.y10c{bottom:165.118005px;}
.y7b{bottom:165.118009px;}
.y50{bottom:165.118047px;}
.y95{bottom:165.118050px;}
.y22{bottom:165.118051px;}
.yd0{bottom:165.118218px;}
.ya0{bottom:169.804484px;}
.y17b{bottom:176.772990px;}
.y157{bottom:176.798500px;}
.y127{bottom:183.567986px;}
.yfb{bottom:183.568001px;}
.y6c{bottom:183.568002px;}
.y10b{bottom:183.568005px;}
.y7a{bottom:183.568009px;}
.y4f{bottom:183.568047px;}
.y94{bottom:183.568050px;}
.y21{bottom:183.568051px;}
.yed{bottom:183.568180px;}
.ycf{bottom:183.568218px;}
.y17a{bottom:194.023741px;}
.y156{bottom:194.049251px;}
.y9f{bottom:199.417048px;}
.yfa{bottom:202.018001px;}
.y6b{bottom:202.018002px;}
.y10a{bottom:202.018005px;}
.y79{bottom:202.018009px;}
.y126{bottom:202.018037px;}
.y4e{bottom:202.018047px;}
.y93{bottom:202.018050px;}
.y20{bottom:202.018051px;}
.yec{bottom:202.018180px;}
.y179{bottom:211.274491px;}
.y155{bottom:211.300001px;}
.yf9{bottom:220.468002px;}
.y6a{bottom:220.468003px;}
.y78{bottom:220.468010px;}
.y125{bottom:220.468024px;}
.y4d{bottom:220.468047px;}
.y1f{bottom:220.468052px;}
.yeb{bottom:220.468181px;}
.yce{bottom:220.468219px;}
.y178{bottom:228.525242px;}
.y154{bottom:228.550752px;}
.y9e{bottom:229.029611px;}
.yf8{bottom:238.918002px;}
.y69{bottom:238.918003px;}
.y109{bottom:238.918006px;}
.y77{bottom:238.918010px;}
.y4c{bottom:238.918047px;}
.y1e{bottom:238.918052px;}
.yea{bottom:238.918181px;}
.ycd{bottom:238.918219px;}
.y177{bottom:245.775992px;}
.y153{bottom:245.801502px;}
.yc2{bottom:246.559500px;}
.yf7{bottom:257.368002px;}
.y68{bottom:257.368003px;}
.y76{bottom:257.368010px;}
.y124{bottom:257.368024px;}
.y4b{bottom:257.368048px;}
.y1d{bottom:257.368052px;}
.ye9{bottom:257.368181px;}
.ycc{bottom:257.368219px;}
.y9d{bottom:258.488209px;}
.y176{bottom:263.026743px;}
.y152{bottom:263.052253px;}
.y99{bottom:264.625500px;}
.yc1{bottom:270.483450px;}
.yf6{bottom:275.818002px;}
.y67{bottom:275.818003px;}
.y75{bottom:275.818010px;}
.y123{bottom:275.818024px;}
.y4a{bottom:275.818048px;}
.y1c{bottom:275.818052px;}
.ye8{bottom:275.818181px;}
.ycb{bottom:275.818226px;}
.y175{bottom:280.277493px;}
.y151{bottom:280.303003px;}
.y9c{bottom:288.100772px;}
.yf5{bottom:294.268002px;}
.y66{bottom:294.268003px;}
.y108{bottom:294.268006px;}
.y74{bottom:294.268010px;}
.y122{bottom:294.268024px;}
.y49{bottom:294.268048px;}
.y1b{bottom:294.268052px;}
.ye7{bottom:294.268181px;}
.yca{bottom:294.268220px;}
.y174{bottom:297.528244px;}
.y150{bottom:297.553754px;}
.yc0{bottom:297.869490px;}
.yb8{bottom:312.683850px;}
.y65{bottom:312.718003px;}
.y107{bottom:312.718007px;}
.y48{bottom:312.718010px;}
.y121{bottom:312.718025px;}
.yf4{bottom:312.718032px;}
.ye6{bottom:312.718181px;}
.y173{bottom:314.778994px;}
.y14f{bottom:314.804504px;}
.y9b{bottom:317.747550px;}
.y64{bottom:331.168004px;}
.y106{bottom:331.168007px;}
.y47{bottom:331.168011px;}
.y120{bottom:331.168025px;}
.yf3{bottom:331.168032px;}
.y1a{bottom:331.168053px;}
.ye5{bottom:331.168182px;}
.yc9{bottom:331.168221px;}
.y172{bottom:332.029745px;}
.y14e{bottom:332.055255px;}
.yb9{bottom:342.371970px;}
.y171{bottom:349.280495px;}
.y14d{bottom:349.306005px;}
.y63{bottom:349.618004px;}
.y105{bottom:349.618007px;}
.y46{bottom:349.618011px;}
.y11f{bottom:349.618025px;}
.yf2{bottom:349.618032px;}
.ye4{bottom:349.618182px;}
.yc8{bottom:349.618221px;}
.y170{bottom:366.531246px;}
.y14c{bottom:366.556756px;}
.y62{bottom:368.068004px;}
.y104{bottom:368.068007px;}
.y45{bottom:368.068011px;}
.y11e{bottom:368.068025px;}
.yf1{bottom:368.068032px;}
.ye3{bottom:368.068182px;}
.yc7{bottom:368.068221px;}
.yba{bottom:372.048210px;}
.y16f{bottom:383.781996px;}
.y14b{bottom:383.807506px;}
.y61{bottom:386.518004px;}
.y103{bottom:386.518007px;}
.y44{bottom:386.518011px;}
.yf0{bottom:386.518018px;}
.y11d{bottom:386.518025px;}
.yc6{bottom:386.518221px;}
.y19{bottom:393.253056px;}
.y16e{bottom:401.032747px;}
.y14a{bottom:401.058257px;}
.ybb{bottom:401.771970px;}
.y60{bottom:404.968004px;}
.y102{bottom:404.968007px;}
.y43{bottom:404.968011px;}
.yef{bottom:404.968018px;}
.ye2{bottom:404.968182px;}
.yc5{bottom:404.968221px;}
.y18{bottom:410.503807px;}
.y16d{bottom:418.283498px;}
.y149{bottom:418.309007px;}
.y5f{bottom:423.418004px;}
.y101{bottom:423.418007px;}
.y42{bottom:423.418011px;}
.y11c{bottom:423.418019px;}
.ye1{bottom:423.418182px;}
.yc4{bottom:423.418222px;}
.y17{bottom:427.754557px;}
.ybc{bottom:431.448210px;}
.y16c{bottom:435.534248px;}
.y148{bottom:435.559758px;}
.yee{bottom:441.868005px;}
.y73{bottom:441.868007px;}
.y11b{bottom:441.868019px;}
.y41{bottom:441.868057px;}
.ye0{bottom:441.868183px;}
.y16b{bottom:452.784999px;}
.y147{bottom:452.810508px;}
.y5e{bottom:460.318006px;}
.y40{bottom:460.318008px;}
.y11a{bottom:460.318019px;}
.ydf{bottom:460.318183px;}
.yc3{bottom:460.318222px;}
.ybd{bottom:461.136330px;}
.y16{bottom:462.256058px;}
.y16a{bottom:470.035749px;}
.y146{bottom:470.061259px;}
.y3f{bottom:478.768008px;}
.y119{bottom:478.768019px;}
.yde{bottom:478.768183px;}
.y15{bottom:479.506809px;}
.y169{bottom:487.286500px;}
.y145{bottom:487.312009px;}
.ybe{bottom:490.848210px;}
.y14{bottom:496.757559px;}
.y5d{bottom:497.218007px;}
.y3e{bottom:497.218008px;}
.y118{bottom:497.218013px;}
.ydd{bottom:497.218183px;}
.y168{bottom:504.537250px;}
.y144{bottom:504.562760px;}
.y5c{bottom:515.668007px;}
.y3d{bottom:515.668008px;}
.y117{bottom:515.668013px;}
.ydc{bottom:515.668183px;}
.ybf{bottom:520.536330px;}
.y167{bottom:521.788001px;}
.y143{bottom:521.813510px;}
.y13{bottom:531.259060px;}
.y5b{bottom:534.118007px;}
.y3c{bottom:534.118008px;}
.y116{bottom:534.118013px;}
.ydb{bottom:534.118183px;}
.y166{bottom:539.038751px;}
.y142{bottom:539.064261px;}
.y12{bottom:548.509811px;}
.y5a{bottom:552.568007px;}
.y3b{bottom:552.568009px;}
.y115{bottom:552.568014px;}
.yda{bottom:552.568183px;}
.y165{bottom:556.289502px;}
.y141{bottom:556.315011px;}
.y11{bottom:565.760561px;}
.y59{bottom:571.018007px;}
.y3a{bottom:571.018009px;}
.y114{bottom:571.018014px;}
.y92{bottom:571.018050px;}
.y164{bottom:573.540252px;}
.y140{bottom:573.565762px;}
.y10{bottom:583.011312px;}
.y58{bottom:589.468007px;}
.y39{bottom:589.468009px;}
.y113{bottom:589.468021px;}
.yd9{bottom:589.468184px;}
.y163{bottom:590.791003px;}
.y13f{bottom:590.816512px;}
.yf{bottom:600.262062px;}
.y38{bottom:607.918009px;}
.y112{bottom:607.918022px;}
.y91{bottom:607.918050px;}
.yd8{bottom:607.918185px;}
.y162{bottom:608.041753px;}
.y13e{bottom:608.067263px;}
.ye{bottom:617.512813px;}
.y161{bottom:625.292504px;}
.y13d{bottom:625.318013px;}
.y57{bottom:626.368008px;}
.y37{bottom:626.368009px;}
.y111{bottom:626.368022px;}
.y90{bottom:626.368050px;}
.yd7{bottom:626.368185px;}
.yd{bottom:634.763563px;}
.y160{bottom:642.543254px;}
.y13c{bottom:642.568764px;}
.y36{bottom:644.818009px;}
.y8f{bottom:644.818050px;}
.yd6{bottom:644.818185px;}
.yc{bottom:652.014314px;}
.y15f{bottom:659.794005px;}
.y13b{bottom:659.819514px;}
.y35{bottom:663.268010px;}
.y8e{bottom:663.268050px;}
.yd5{bottom:663.268185px;}
.yb{bottom:669.265064px;}
.y15e{bottom:677.044755px;}
.y13a{bottom:677.070265px;}
.y27{bottom:680.840240px;}
.y56{bottom:681.718008px;}
.y34{bottom:681.718010px;}
.yd4{bottom:681.718015px;}
.y8d{bottom:681.718050px;}
.y189{bottom:681.724024px;}
.ya{bottom:686.515815px;}
.y15d{bottom:694.295506px;}
.y139{bottom:694.321015px;}
.y55{bottom:700.168009px;}
.y33{bottom:700.168010px;}
.y8c{bottom:700.168050px;}
.y188{bottom:700.173274px;}
.y9{bottom:703.766565px;}
.y15c{bottom:711.546256px;}
.y138{bottom:711.571766px;}
.y54{bottom:718.618009px;}
.y32{bottom:718.618010px;}
.y8b{bottom:718.618050px;}
.y8{bottom:721.017316px;}
.y31{bottom:737.068010px;}
.y8a{bottom:737.068050px;}
.y187{bottom:737.071775px;}
.y7{bottom:738.268066px;}
.y137{bottom:741.572515px;}
.y30{bottom:755.518010px;}
.y89{bottom:755.518050px;}
.y186{bottom:755.521025px;}
.y2f{bottom:773.968010px;}
.y88{bottom:773.968050px;}
.y185{bottom:773.970275px;}
.y136{bottom:784.323264px;}
.y130{bottom:784.323268px;}
.y2e{bottom:792.418011px;}
.y87{bottom:792.418050px;}
.y135{bottom:801.574014px;}
.y12f{bottom:801.574019px;}
.y6{bottom:802.703522px;}
.y2d{bottom:810.868011px;}
.y86{bottom:810.868050px;}
.y72{bottom:810.868066px;}
.y134{bottom:818.824765px;}
.y12e{bottom:818.824769px;}
.y2c{bottom:829.318011px;}
.y85{bottom:829.318050px;}
.y133{bottom:836.075515px;}
.y12d{bottom:836.075520px;}
.y184{bottom:836.458027px;}
.y5{bottom:845.327740px;}
.y2b{bottom:847.768011px;}
.y84{bottom:847.768050px;}
.y132{bottom:853.326266px;}
.y12c{bottom:853.326270px;}
.y183{bottom:853.708778px;}
.y2a{bottom:866.218011px;}
.y83{bottom:866.218050px;}
.y131{bottom:870.577016px;}
.y12b{bottom:870.577021px;}
.y4{bottom:870.815741px;}
.y182{bottom:870.959528px;}
.y29{bottom:884.668011px;}
.y82{bottom:884.668050px;}
.y181{bottom:888.210279px;}
.y3{bottom:896.303741px;}
.y28{bottom:903.118011px;}
.y81{bottom:903.118050px;}
.y12a{bottom:905.078522px;}
.y180{bottom:905.461029px;}
.y80{bottom:955.942350px;}
.y1{bottom:955.942383px;}
.y26{bottom:1002.180450px;}
.h1a{height:-552.462000px;}
.hb{height:15.295800px;}
.h20{height:32.530781px;}
.h1c{height:36.565650px;}
.h19{height:43.993125px;}
.h2d{height:45.543000px;}
.h21{height:45.696000px;}
.h6{height:45.900000px;}
.h1b{height:46.376550px;}
.h2e{height:47.073000px;}
.h1f{height:47.512575px;}
.h1d{height:47.579400px;}
.h1e{height:47.679637px;}
.h5{height:48.195000px;}
.h17{height:49.996800px;}
.ha{height:49.996801px;}
.h2{height:50.868000px;}
.h16{height:51.503400px;}
.h28{height:53.880000px;}
.h8{height:54.000000px;}
.hd{height:54.000074px;}
.h2b{height:54.000117px;}
.h29{height:54.000121px;}
.h26{height:54.000137px;}
.h2a{height:54.000140px;}
.he{height:54.000148px;}
.hc{height:54.000151px;}
.h10{height:54.000229px;}
.hf{height:54.000297px;}
.h2c{height:55.139800px;}
.h27{height:55.139883px;}
.h22{height:55.139971px;}
.h24{height:55.139988px;}
.h9{height:55.140000px;}
.h23{height:55.140082px;}
.h25{height:55.140101px;}
.h14{height:55.380000px;}
.h15{height:56.520000px;}
.h11{height:56.520137px;}
.h13{height:56.520183px;}
.h12{height:56.520223px;}
.h7{height:56.700000px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h18{height:286.347000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:7.920000px;}
.w2{width:284.370000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x9{left:-140.622450px;}
.x0{left:0.000000px;}
.x3{left:58.677149px;}
.x8{left:67.288500px;}
.x5{left:72.283499px;}
.x1{left:80.787449px;}
.xb{left:82.213560px;}
.x11{left:85.033499px;}
.x6{left:93.538513px;}
.x2{left:102.042450px;}
.xe{left:114.783313px;}
.x7{left:123.302250px;}
.xc{left:133.190640px;}
.xd{left:193.855200px;}
.xa{left:214.354500px;}
.x12{left:353.408246px;}
.xf{left:361.912196px;}
.x13{left:366.158246px;}
.x10{left:374.662196px;}
.x4{left:641.887482px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760144pt;}
.v1{vertical-align:28.330362pt;}
.ls60{letter-spacing:-6.754667pt;}
.ls62{letter-spacing:-4.624000pt;}
.ls2e{letter-spacing:-3.792000pt;}
.ls15{letter-spacing:-3.620800pt;}
.lsc{letter-spacing:-2.901333pt;}
.ls4e{letter-spacing:-2.666667pt;}
.ls64{letter-spacing:-2.493333pt;}
.ls56{letter-spacing:-2.448000pt;}
.ls53{letter-spacing:-2.304000pt;}
.ls63{letter-spacing:-2.266667pt;}
.ls5d{letter-spacing:-2.256000pt;}
.ls4d{letter-spacing:-2.112000pt;}
.ls3a{letter-spacing:-2.016000pt;}
.ls3f{letter-spacing:-1.968000pt;}
.ls47{letter-spacing:-1.824000pt;}
.ls57{letter-spacing:-1.813333pt;}
.ls21{letter-spacing:-1.760000pt;}
.ls1e{letter-spacing:-1.536000pt;}
.ls10{letter-spacing:-1.269333pt;}
.ls3c{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-0.906667pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls22{letter-spacing:-0.693333pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.586667pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls61{letter-spacing:-0.498667pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.453333pt;}
.ls28{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.317333pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls40{letter-spacing:-0.211200pt;}
.ls42{letter-spacing:-0.168960pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls41{letter-spacing:-0.084480pt;}
.ls30{letter-spacing:-0.053333pt;}
.lse{letter-spacing:-0.045333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000002pt;}
.ls45{letter-spacing:0.000005pt;}
.ls3d{letter-spacing:0.018248pt;}
.ls4f{letter-spacing:0.026667pt;}
.ls17{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.090667pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.133333pt;}
.ls4b{letter-spacing:0.148800pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.181333pt;}
.ls49{letter-spacing:0.186667pt;}
.ls16{letter-spacing:0.197333pt;}
.ls4c{letter-spacing:0.198400pt;}
.ls50{letter-spacing:0.213325pt;}
.ls36{letter-spacing:0.213333pt;}
.ls52{letter-spacing:0.218667pt;}
.ls1{letter-spacing:0.226667pt;}
.ls5{letter-spacing:0.240000pt;}
.ls55{letter-spacing:0.266656pt;}
.ls19{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.373327pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.431978pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.613333pt;}
.ls29{letter-spacing:0.640000pt;}
.ls59{letter-spacing:0.693333pt;}
.ls9{letter-spacing:0.720000pt;}
.ls3e{letter-spacing:0.729907pt;}
.ls58{letter-spacing:0.746667pt;}
.ls46{letter-spacing:0.762710pt;}
.ls7{letter-spacing:0.793600pt;}
.ls65{letter-spacing:0.816000pt;}
.ls8{letter-spacing:0.843200pt;}
.lsf{letter-spacing:0.861333pt;}
.lsa{letter-spacing:0.960000pt;}
.ls32{letter-spacing:0.960009pt;}
.ls34{letter-spacing:1.013273pt;}
.ls37{letter-spacing:1.013338pt;}
.ls11{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.104000pt;}
.ls48{letter-spacing:1.285328pt;}
.ls31{letter-spacing:1.493350pt;}
.ls38{letter-spacing:1.599951pt;}
.ls5e{letter-spacing:2.040000pt;}
.ls33{letter-spacing:2.239992pt;}
.ls2b{letter-spacing:2.240018pt;}
.ls5f{letter-spacing:2.946667pt;}
.ls5b{letter-spacing:12.426665pt;}
.ls51{letter-spacing:17.866683pt;}
.ws73{word-spacing:-15.206400pt;}
.ws4b{word-spacing:-13.706667pt;}
.wsb9{word-spacing:-12.965333pt;}
.wsc1{word-spacing:-12.192000pt;}
.wsaf{word-spacing:-11.893333pt;}
.wsb0{word-spacing:-11.786667pt;}
.ws94{word-spacing:-11.573333pt;}
.wsa3{word-spacing:-11.360000pt;}
.ws4a{word-spacing:-11.146667pt;}
.ws63{word-spacing:-10.986667pt;}
.ws93{word-spacing:-10.933333pt;}
.ws0{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.664000pt;}
.ws72{word-spacing:-10.366400pt;}
.ws65{word-spacing:-10.293333pt;}
.ws8a{word-spacing:-10.186667pt;}
.ws28{word-spacing:-10.026667pt;}
.ws26{word-spacing:-9.840000pt;}
.wsb8{word-spacing:-9.746667pt;}
.ws64{word-spacing:-9.706667pt;}
.ws8b{word-spacing:-9.653333pt;}
.ws95{word-spacing:-9.600000pt;}
.ws88{word-spacing:-9.552000pt;}
.ws96{word-spacing:-9.493333pt;}
.wsc2{word-spacing:-9.474667pt;}
.wsa4{word-spacing:-9.440000pt;}
.wsae{word-spacing:-9.408000pt;}
.ws62{word-spacing:-9.360000pt;}
.ws1{word-spacing:-9.226667pt;}
.wsa2{word-spacing:-9.072000pt;}
.ws89{word-spacing:-8.960000pt;}
.ws27{word-spacing:-8.266667pt;}
.wsac{word-spacing:-8.213333pt;}
.ws2{word-spacing:-7.912000pt;}
.wsbb{word-spacing:-7.253333pt;}
.ws29{word-spacing:-6.498507pt;}
.wsba{word-spacing:-5.122667pt;}
.ws6b{word-spacing:-2.560000pt;}
.ws43{word-spacing:-2.453333pt;}
.ws45{word-spacing:-2.400000pt;}
.wsa6{word-spacing:-2.240000pt;}
.ws1c{word-spacing:-2.133333pt;}
.ws44{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-2.040000pt;}
.ws1a{word-spacing:-1.973333pt;}
.ws31{word-spacing:-1.813333pt;}
.ws55{word-spacing:-1.760000pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.653333pt;}
.wsb6{word-spacing:-1.600000pt;}
.ws30{word-spacing:-1.546667pt;}
.ws91{word-spacing:-1.493333pt;}
.ws9{word-spacing:-1.450667pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws15{word-spacing:-1.405333pt;}
.ws68{word-spacing:-1.386667pt;}
.ws57{word-spacing:-1.333333pt;}
.ws69{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.269333pt;}
.ws4f{word-spacing:-1.226667pt;}
.ws12{word-spacing:-1.224000pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws42{word-spacing:-1.120000pt;}
.ws4c{word-spacing:-1.104000pt;}
.ws18{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.042667pt;}
.ws99{word-spacing:-0.960000pt;}
.ws46{word-spacing:-0.906667pt;}
.ws54{word-spacing:-0.853333pt;}
.ws6f{word-spacing:-0.800000pt;}
.ws34{word-spacing:-0.746667pt;}
.ws4{word-spacing:-0.720000pt;}
.ws5a{word-spacing:-0.693333pt;}
.ws6d{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.634667pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.498667pt;}
.ws7e{word-spacing:-0.426667pt;}
.ws7a{word-spacing:-0.373333pt;}
.ws80{word-spacing:-0.320000pt;}
.ws5b{word-spacing:-0.266667pt;}
.ws4e{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.198400pt;}
.ws25{word-spacing:-0.197333pt;}
.ws11{word-spacing:-0.181333pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws82{word-spacing:-0.148800pt;}
.ws3e{word-spacing:-0.106667pt;}
.ws85{word-spacing:-0.060826pt;}
.ws33{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws84{word-spacing:0.093491pt;}
.ws83{word-spacing:0.099200pt;}
.ws8e{word-spacing:0.106667pt;}
.ws35{word-spacing:0.160000pt;}
.ws86{word-spacing:0.168960pt;}
.ws32{word-spacing:0.213333pt;}
.ws9f{word-spacing:0.266667pt;}
.ws3b{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.373333pt;}
.ws49{word-spacing:0.396800pt;}
.wsa9{word-spacing:0.426667pt;}
.ws81{word-spacing:0.480000pt;}
.ws47{word-spacing:0.533333pt;}
.ws8d{word-spacing:0.586667pt;}
.ws7d{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.693333pt;}
.wsab{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.800000pt;}
.ws16{word-spacing:0.861333pt;}
.wsc{word-spacing:0.906667pt;}
.ws1b{word-spacing:0.960000pt;}
.ws41{word-spacing:1.013333pt;}
.ws87{word-spacing:1.042667pt;}
.ws71{word-spacing:1.066667pt;}
.ws7c{word-spacing:1.120000pt;}
.ws17{word-spacing:1.133333pt;}
.ws9c{word-spacing:1.173333pt;}
.ws56{word-spacing:1.226667pt;}
.wsd{word-spacing:1.269333pt;}
.ws9a{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.333333pt;}
.wse{word-spacing:1.405333pt;}
.ws61{word-spacing:1.440000pt;}
.ws10{word-spacing:1.450667pt;}
.ws3d{word-spacing:1.493333pt;}
.ws78{word-spacing:1.546667pt;}
.wsa1{word-spacing:1.587200pt;}
.wsa8{word-spacing:1.600000pt;}
.wsf{word-spacing:1.632000pt;}
.wsa0{word-spacing:1.636800pt;}
.ws2b{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.wsb{word-spacing:1.722667pt;}
.ws67{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.813333pt;}
.ws92{word-spacing:1.866667pt;}
.ws7b{word-spacing:1.920000pt;}
.ws2e{word-spacing:2.026667pt;}
.ws9d{word-spacing:2.080000pt;}
.wsaa{word-spacing:2.186667pt;}
.ws2d{word-spacing:2.240000pt;}
.wsc0{word-spacing:2.266667pt;}
.ws9b{word-spacing:2.293333pt;}
.ws14{word-spacing:2.312000pt;}
.ws39{word-spacing:2.346667pt;}
.ws1e{word-spacing:2.400000pt;}
.ws19{word-spacing:2.453333pt;}
.ws60{word-spacing:2.506667pt;}
.ws9e{word-spacing:2.666667pt;}
.ws7f{word-spacing:2.720000pt;}
.ws50{word-spacing:2.773333pt;}
.ws98{word-spacing:2.880000pt;}
.ws7{word-spacing:2.901333pt;}
.ws79{word-spacing:2.933333pt;}
.ws6c{word-spacing:2.986667pt;}
.wsb7{word-spacing:3.040000pt;}
.ws36{word-spacing:3.093333pt;}
.ws38{word-spacing:3.146667pt;}
.ws8f{word-spacing:3.200000pt;}
.ws48{word-spacing:3.360000pt;}
.ws37{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.520000pt;}
.ws24{word-spacing:3.620800pt;}
.ws53{word-spacing:3.946667pt;}
.ws70{word-spacing:4.000000pt;}
.ws3f{word-spacing:4.053333pt;}
.ws59{word-spacing:4.106667pt;}
.wsb5{word-spacing:4.160000pt;}
.ws58{word-spacing:4.266667pt;}
.ws90{word-spacing:4.373333pt;}
.wsb2{word-spacing:4.693333pt;}
.ws52{word-spacing:4.853333pt;}
.ws51{word-spacing:5.386667pt;}
.wsb4{word-spacing:5.600000pt;}
.wsb3{word-spacing:6.240000pt;}
.ws20{word-spacing:6.448000pt;}
.ws22{word-spacing:6.596800pt;}
.wsbe{word-spacing:6.754667pt;}
.ws21{word-spacing:7.142400pt;}
.ws76{word-spacing:15.994880pt;}
.ws75{word-spacing:16.299947pt;}
.wsa7{word-spacing:19.626667pt;}
.ws74{word-spacing:137.913600pt;}
.ws5{word-spacing:543.072006pt;}
.wsc3{word-spacing:769.247955pt;}
.ws2a{word-spacing:771.551971pt;}
.ws8c{word-spacing:771.887970pt;}
.wsb1{word-spacing:771.984009pt;}
.ws66{word-spacing:772.031982pt;}
.wsa5{word-spacing:772.320007pt;}
.ws77{word-spacing:859.008000pt;}
.ws97{word-spacing:859.296020pt;}
.wsbc{word-spacing:859.584045pt;}
.wsad{word-spacing:859.968017pt;}
.ws4d{word-spacing:862.703979pt;}
._12{margin-left:-772.799694pt;}
._d{margin-left:-771.806338pt;}
._1a{margin-left:-769.502305pt;}
._5{margin-left:-543.134406pt;}
._17{margin-left:-18.231429pt;}
._b{margin-left:-7.398933pt;}
._a{margin-left:-6.443202pt;}
._2{margin-left:-5.400000pt;}
._e{margin-left:-4.241600pt;}
._7{margin-left:-3.341334pt;}
._3{margin-left:-2.414400pt;}
._1{margin-left:-1.257600pt;}
._0{width:1.248000pt;}
._4{width:2.409600pt;}
._8{width:3.433866pt;}
._6{width:4.465333pt;}
._9{width:5.554934pt;}
._19{width:6.754667pt;}
._14{width:10.559990pt;}
._13{width:12.426665pt;}
._15{width:14.559990pt;}
._11{width:16.959990pt;}
._18{width:19.040059pt;}
._10{width:20.053324pt;}
._16{width:21.813278pt;}
._c{width:43.796263pt;}
._f{width:45.631478pt;}
.fs8{font-size:19.733334pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:36.800001pt;}
.fse{font-size:42.240000pt;}
.fs4{font-size:45.333333pt;}
.fsd{font-size:46.745600pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:49.600000pt;}
.fs7{font-size:49.600001pt;}
.fs2{font-size:49.749334pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:56.320000pt;}
.fsc{font-size:60.825600pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y9a{bottom:-503.756800pt;}
.yb7{bottom:-447.791120pt;}
.yb6{bottom:-421.468842pt;}
.yb5{bottom:-395.146563pt;}
.yb4{bottom:-368.824285pt;}
.yb3{bottom:-342.502006pt;}
.yb2{bottom:-316.134109pt;}
.yb1{bottom:-289.948688pt;}
.yb0{bottom:-263.626410pt;}
.yaf{bottom:-237.304131pt;}
.yae{bottom:-210.981853pt;}
.yad{bottom:-184.659574pt;}
.yac{bottom:-158.337296pt;}
.yab{bottom:-132.015018pt;}
.yaa{bottom:-105.799184pt;}
.ya9{bottom:-79.887478pt;}
.ya8{bottom:-53.565200pt;}
.ya7{bottom:-29.629200pt;}
.ya6{bottom:-6.905113pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:19.417166pt;}
.y2{bottom:35.910553pt;}
.ya4{bottom:45.602587pt;}
.ya3{bottom:71.924865pt;}
.yd3{bottom:80.504135pt;}
.y53{bottom:80.507862pt;}
.y98{bottom:80.511733pt;}
.y25{bottom:80.511737pt;}
.y71{bottom:81.171557pt;}
.y110{bottom:81.171559pt;}
.y7f{bottom:81.171563pt;}
.y100{bottom:81.171568pt;}
.y17f{bottom:95.795545pt;}
.y15b{bottom:95.818220pt;}
.y52{bottom:95.970662pt;}
.y97{bottom:95.974533pt;}
.y24{bottom:95.974537pt;}
.y70{bottom:97.571557pt;}
.y10f{bottom:97.571559pt;}
.y7e{bottom:97.571563pt;}
.yff{bottom:97.571568pt;}
.ya2{bottom:98.292763pt;}
.y17e{bottom:111.129546pt;}
.y15a{bottom:111.152221pt;}
.y96{bottom:111.437333pt;}
.y23{bottom:111.437337pt;}
.yfe{bottom:113.971556pt;}
.y6f{bottom:113.971557pt;}
.y10e{bottom:113.971560pt;}
.y7d{bottom:113.971563pt;}
.yd2{bottom:113.971749pt;}
.ya1{bottom:124.615041pt;}
.y17d{bottom:126.463546pt;}
.y159{bottom:126.486221pt;}
.y129{bottom:130.371555pt;}
.yfd{bottom:130.371556pt;}
.y6e{bottom:130.371557pt;}
.y10d{bottom:130.371560pt;}
.y7c{bottom:130.371563pt;}
.y51{bottom:130.371597pt;}
.yd1{bottom:130.371749pt;}
.y17c{bottom:141.797547pt;}
.y158{bottom:141.820222pt;}
.y128{bottom:146.771549pt;}
.yfc{bottom:146.771557pt;}
.y6d{bottom:146.771557pt;}
.y10c{bottom:146.771560pt;}
.y7b{bottom:146.771564pt;}
.y50{bottom:146.771597pt;}
.y95{bottom:146.771600pt;}
.y22{bottom:146.771601pt;}
.yd0{bottom:146.771749pt;}
.ya0{bottom:150.937319pt;}
.y17b{bottom:157.131547pt;}
.y157{bottom:157.154222pt;}
.y127{bottom:163.171543pt;}
.yfb{bottom:163.171557pt;}
.y6c{bottom:163.171558pt;}
.y10b{bottom:163.171560pt;}
.y7a{bottom:163.171564pt;}
.y4f{bottom:163.171597pt;}
.y94{bottom:163.171600pt;}
.y21{bottom:163.171601pt;}
.yed{bottom:163.171716pt;}
.ycf{bottom:163.171749pt;}
.y17a{bottom:172.465547pt;}
.y156{bottom:172.488223pt;}
.y9f{bottom:177.259598pt;}
.yfa{bottom:179.571557pt;}
.y6b{bottom:179.571558pt;}
.y10a{bottom:179.571560pt;}
.y79{bottom:179.571564pt;}
.y126{bottom:179.571588pt;}
.y4e{bottom:179.571598pt;}
.y93{bottom:179.571600pt;}
.y20{bottom:179.571601pt;}
.yec{bottom:179.571716pt;}
.y179{bottom:187.799548pt;}
.y155{bottom:187.822223pt;}
.yf9{bottom:195.971557pt;}
.y6a{bottom:195.971558pt;}
.y78{bottom:195.971564pt;}
.y125{bottom:195.971577pt;}
.y4d{bottom:195.971598pt;}
.y1f{bottom:195.971601pt;}
.yeb{bottom:195.971716pt;}
.yce{bottom:195.971750pt;}
.y178{bottom:203.133548pt;}
.y154{bottom:203.156224pt;}
.y9e{bottom:203.581876pt;}
.yf8{bottom:212.371557pt;}
.y69{bottom:212.371558pt;}
.y109{bottom:212.371561pt;}
.y77{bottom:212.371564pt;}
.y4c{bottom:212.371598pt;}
.y1e{bottom:212.371602pt;}
.yea{bottom:212.371716pt;}
.ycd{bottom:212.371750pt;}
.y177{bottom:218.467549pt;}
.y153{bottom:218.490224pt;}
.yc2{bottom:219.164000pt;}
.yf7{bottom:228.771557pt;}
.y68{bottom:228.771558pt;}
.y76{bottom:228.771564pt;}
.y124{bottom:228.771577pt;}
.y4b{bottom:228.771598pt;}
.y1d{bottom:228.771602pt;}
.ye9{bottom:228.771716pt;}
.ycc{bottom:228.771750pt;}
.y9d{bottom:229.767297pt;}
.y176{bottom:233.801549pt;}
.y152{bottom:233.824225pt;}
.y99{bottom:235.222667pt;}
.yc1{bottom:240.429733pt;}
.yf6{bottom:245.171557pt;}
.y67{bottom:245.171558pt;}
.y75{bottom:245.171564pt;}
.y123{bottom:245.171577pt;}
.y4a{bottom:245.171598pt;}
.y1c{bottom:245.171602pt;}
.ye8{bottom:245.171717pt;}
.ycb{bottom:245.171757pt;}
.y175{bottom:249.135550pt;}
.y151{bottom:249.158225pt;}
.y9c{bottom:256.089575pt;}
.yf5{bottom:261.571557pt;}
.y66{bottom:261.571558pt;}
.y108{bottom:261.571561pt;}
.y74{bottom:261.571565pt;}
.y122{bottom:261.571577pt;}
.y49{bottom:261.571598pt;}
.y1b{bottom:261.571602pt;}
.ye7{bottom:261.571717pt;}
.yca{bottom:261.571751pt;}
.y174{bottom:264.469550pt;}
.y150{bottom:264.492225pt;}
.yc0{bottom:264.772880pt;}
.yb8{bottom:277.941200pt;}
.y65{bottom:277.971559pt;}
.y107{bottom:277.971561pt;}
.y48{bottom:277.971565pt;}
.y121{bottom:277.971577pt;}
.yf4{bottom:277.971584pt;}
.ye6{bottom:277.971717pt;}
.y173{bottom:279.803551pt;}
.y14f{bottom:279.826226pt;}
.y9b{bottom:282.442267pt;}
.y64{bottom:294.371559pt;}
.y106{bottom:294.371561pt;}
.y47{bottom:294.371565pt;}
.y120{bottom:294.371577pt;}
.yf3{bottom:294.371584pt;}
.y1a{bottom:294.371602pt;}
.ye5{bottom:294.371717pt;}
.yc9{bottom:294.371752pt;}
.y172{bottom:295.137551pt;}
.y14e{bottom:295.160226pt;}
.yb9{bottom:304.330640pt;}
.y171{bottom:310.471552pt;}
.y14d{bottom:310.494227pt;}
.y63{bottom:310.771559pt;}
.y105{bottom:310.771562pt;}
.y46{bottom:310.771565pt;}
.y11f{bottom:310.771578pt;}
.yf2{bottom:310.771584pt;}
.ye4{bottom:310.771717pt;}
.yc8{bottom:310.771752pt;}
.y170{bottom:325.805552pt;}
.y14c{bottom:325.828227pt;}
.y62{bottom:327.171559pt;}
.y104{bottom:327.171562pt;}
.y45{bottom:327.171565pt;}
.y11e{bottom:327.171578pt;}
.yf1{bottom:327.171584pt;}
.ye3{bottom:327.171717pt;}
.yc7{bottom:327.171752pt;}
.yba{bottom:330.709520pt;}
.y16f{bottom:341.139552pt;}
.y14b{bottom:341.162228pt;}
.y61{bottom:343.571559pt;}
.y103{bottom:343.571562pt;}
.y44{bottom:343.571565pt;}
.yf0{bottom:343.571572pt;}
.y11d{bottom:343.571578pt;}
.yc6{bottom:343.571752pt;}
.y19{bottom:349.558272pt;}
.y16e{bottom:356.473553pt;}
.y14a{bottom:356.496228pt;}
.ybb{bottom:357.130640pt;}
.y60{bottom:359.971559pt;}
.y102{bottom:359.971562pt;}
.y43{bottom:359.971565pt;}
.yef{bottom:359.971572pt;}
.ye2{bottom:359.971718pt;}
.yc5{bottom:359.971752pt;}
.y18{bottom:364.892273pt;}
.y16d{bottom:371.807553pt;}
.y149{bottom:371.830229pt;}
.y5f{bottom:376.371559pt;}
.y101{bottom:376.371562pt;}
.y42{bottom:376.371566pt;}
.y11c{bottom:376.371572pt;}
.ye1{bottom:376.371718pt;}
.yc4{bottom:376.371753pt;}
.y17{bottom:380.226273pt;}
.ybc{bottom:383.509520pt;}
.y16c{bottom:387.141554pt;}
.y148{bottom:387.164229pt;}
.yee{bottom:392.771560pt;}
.y73{bottom:392.771562pt;}
.y11b{bottom:392.771573pt;}
.y41{bottom:392.771606pt;}
.ye0{bottom:392.771718pt;}
.y16b{bottom:402.475554pt;}
.y147{bottom:402.498230pt;}
.y5e{bottom:409.171561pt;}
.y40{bottom:409.171563pt;}
.y11a{bottom:409.171573pt;}
.ydf{bottom:409.171718pt;}
.yc3{bottom:409.171753pt;}
.ybd{bottom:409.898960pt;}
.y16{bottom:410.894274pt;}
.y16a{bottom:417.809555pt;}
.y146{bottom:417.832230pt;}
.y3f{bottom:425.571563pt;}
.y119{bottom:425.571573pt;}
.yde{bottom:425.571718pt;}
.y15{bottom:426.228274pt;}
.y169{bottom:433.143555pt;}
.y145{bottom:433.166230pt;}
.ybe{bottom:436.309520pt;}
.y14{bottom:441.562275pt;}
.y5d{bottom:441.971561pt;}
.y3e{bottom:441.971563pt;}
.y118{bottom:441.971567pt;}
.ydd{bottom:441.971718pt;}
.y168{bottom:448.477556pt;}
.y144{bottom:448.500231pt;}
.y5c{bottom:458.371561pt;}
.y3d{bottom:458.371563pt;}
.y117{bottom:458.371567pt;}
.ydc{bottom:458.371718pt;}
.ybf{bottom:462.698960pt;}
.y167{bottom:463.811556pt;}
.y143{bottom:463.834231pt;}
.y13{bottom:472.230276pt;}
.y5b{bottom:474.771562pt;}
.y3c{bottom:474.771563pt;}
.y116{bottom:474.771567pt;}
.ydb{bottom:474.771719pt;}
.y166{bottom:479.145557pt;}
.y142{bottom:479.168232pt;}
.y12{bottom:487.564276pt;}
.y5a{bottom:491.171562pt;}
.y3b{bottom:491.171563pt;}
.y115{bottom:491.171568pt;}
.yda{bottom:491.171719pt;}
.y165{bottom:494.479557pt;}
.y141{bottom:494.502232pt;}
.y11{bottom:502.898277pt;}
.y59{bottom:507.571562pt;}
.y3a{bottom:507.571563pt;}
.y114{bottom:507.571568pt;}
.y92{bottom:507.571600pt;}
.y164{bottom:509.813557pt;}
.y140{bottom:509.836233pt;}
.y10{bottom:518.232277pt;}
.y58{bottom:523.971562pt;}
.y39{bottom:523.971563pt;}
.y113{bottom:523.971575pt;}
.yd9{bottom:523.971719pt;}
.y163{bottom:525.147558pt;}
.y13f{bottom:525.170233pt;}
.yf{bottom:533.566278pt;}
.y38{bottom:540.371564pt;}
.y112{bottom:540.371575pt;}
.y91{bottom:540.371600pt;}
.yd8{bottom:540.371720pt;}
.y162{bottom:540.481558pt;}
.y13e{bottom:540.504234pt;}
.ye{bottom:548.900278pt;}
.y161{bottom:555.815559pt;}
.y13d{bottom:555.838234pt;}
.y57{bottom:556.771562pt;}
.y37{bottom:556.771564pt;}
.y111{bottom:556.771575pt;}
.y90{bottom:556.771600pt;}
.yd7{bottom:556.771720pt;}
.yd{bottom:564.234279pt;}
.y160{bottom:571.149559pt;}
.y13c{bottom:571.172235pt;}
.y36{bottom:573.171564pt;}
.y8f{bottom:573.171600pt;}
.yd6{bottom:573.171720pt;}
.yc{bottom:579.568279pt;}
.y15f{bottom:586.483560pt;}
.y13b{bottom:586.506235pt;}
.y35{bottom:589.571564pt;}
.y8e{bottom:589.571600pt;}
.yd5{bottom:589.571720pt;}
.yb{bottom:594.902279pt;}
.y15e{bottom:601.817560pt;}
.y13a{bottom:601.840235pt;}
.y27{bottom:605.191325pt;}
.y56{bottom:605.971563pt;}
.y34{bottom:605.971564pt;}
.yd4{bottom:605.971569pt;}
.y8d{bottom:605.971600pt;}
.y189{bottom:605.976910pt;}
.ya{bottom:610.236280pt;}
.y15d{bottom:617.151561pt;}
.y139{bottom:617.174236pt;}
.y55{bottom:622.371563pt;}
.y33{bottom:622.371564pt;}
.y8c{bottom:622.371600pt;}
.y188{bottom:622.376244pt;}
.y9{bottom:625.570280pt;}
.y15c{bottom:632.485561pt;}
.y138{bottom:632.508236pt;}
.y54{bottom:638.771563pt;}
.y32{bottom:638.771564pt;}
.y8b{bottom:638.771600pt;}
.y8{bottom:640.904281pt;}
.y31{bottom:655.171565pt;}
.y8a{bottom:655.171600pt;}
.y187{bottom:655.174911pt;}
.y7{bottom:656.238281pt;}
.y137{bottom:659.175569pt;}
.y30{bottom:671.571565pt;}
.y89{bottom:671.571600pt;}
.y186{bottom:671.574245pt;}
.y2f{bottom:687.971565pt;}
.y88{bottom:687.971600pt;}
.y185{bottom:687.973578pt;}
.y136{bottom:697.176235pt;}
.y130{bottom:697.176238pt;}
.y2e{bottom:704.371565pt;}
.y87{bottom:704.371600pt;}
.y135{bottom:712.510235pt;}
.y12f{bottom:712.510239pt;}
.y6{bottom:713.514242pt;}
.y2d{bottom:720.771565pt;}
.y86{bottom:720.771600pt;}
.y72{bottom:720.771614pt;}
.y134{bottom:727.844235pt;}
.y12e{bottom:727.844239pt;}
.y2c{bottom:737.171565pt;}
.y85{bottom:737.171600pt;}
.y133{bottom:743.178236pt;}
.y12d{bottom:743.178240pt;}
.y184{bottom:743.518246pt;}
.y5{bottom:751.402436pt;}
.y2b{bottom:753.571565pt;}
.y84{bottom:753.571600pt;}
.y132{bottom:758.512236pt;}
.y12c{bottom:758.512240pt;}
.y183{bottom:758.852247pt;}
.y2a{bottom:769.971565pt;}
.y83{bottom:769.971600pt;}
.y131{bottom:773.846237pt;}
.y12b{bottom:773.846241pt;}
.y4{bottom:774.058436pt;}
.y182{bottom:774.186247pt;}
.y29{bottom:786.371566pt;}
.y82{bottom:786.371600pt;}
.y181{bottom:789.520248pt;}
.y3{bottom:796.714437pt;}
.y28{bottom:802.771566pt;}
.y81{bottom:802.771600pt;}
.y12a{bottom:804.514242pt;}
.y180{bottom:804.854248pt;}
.y80{bottom:849.726533pt;}
.y1{bottom:849.726562pt;}
.y26{bottom:890.827067pt;}
.h1a{height:-491.077333pt;}
.hb{height:13.596267pt;}
.h20{height:28.916250pt;}
.h1c{height:32.502800pt;}
.h19{height:39.105000pt;}
.h2d{height:40.482667pt;}
.h21{height:40.618667pt;}
.h6{height:40.800000pt;}
.h1b{height:41.223600pt;}
.h2e{height:41.842667pt;}
.h1f{height:42.233400pt;}
.h1d{height:42.292800pt;}
.h1e{height:42.381900pt;}
.h5{height:42.840000pt;}
.h17{height:44.441600pt;}
.ha{height:44.441601pt;}
.h2{height:45.216000pt;}
.h16{height:45.780800pt;}
.h28{height:47.893333pt;}
.h8{height:48.000000pt;}
.hd{height:48.000066pt;}
.h2b{height:48.000104pt;}
.h29{height:48.000107pt;}
.h26{height:48.000122pt;}
.h2a{height:48.000124pt;}
.he{height:48.000132pt;}
.hc{height:48.000134pt;}
.h10{height:48.000203pt;}
.hf{height:48.000264pt;}
.h2c{height:49.013155pt;}
.h27{height:49.013229pt;}
.h22{height:49.013307pt;}
.h24{height:49.013323pt;}
.h9{height:49.013333pt;}
.h23{height:49.013406pt;}
.h25{height:49.013424pt;}
.h14{height:49.226667pt;}
.h15{height:50.240000pt;}
.h11{height:50.240122pt;}
.h13{height:50.240163pt;}
.h12{height:50.240198pt;}
.h7{height:50.400000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h18{height:254.530667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:7.040000pt;}
.w2{width:252.773333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x9{left:-124.997733pt;}
.x0{left:0.000000pt;}
.x3{left:52.157466pt;}
.x8{left:59.812000pt;}
.x5{left:64.251999pt;}
.x1{left:71.811066pt;}
.xb{left:73.078720pt;}
.x11{left:75.585332pt;}
.x6{left:83.145345pt;}
.x2{left:90.704400pt;}
.xe{left:102.029612pt;}
.x7{left:109.602000pt;}
.xc{left:118.391680pt;}
.xd{left:172.315733pt;}
.xa{left:190.537333pt;}
.x12{left:314.140663pt;}
.xf{left:321.699730pt;}
.x13{left:325.473996pt;}
.x10{left:333.033063pt;}
.x4{left:570.566650pt;}
}




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