
    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_c1e43fdc5ffb831ed14bc07b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.669000;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_072e7a08ad8b460abeb4cca2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b83f8d638907de677acba9a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_ff95bdaaf4ae885c0052add8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_57a50d3cf38247e022a03748.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_2a9c5b6c9458d29fcf0762e2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_b829680004fdfeb7e3656cfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_6bf7634ca3131501b42b89b6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_d8b57047ff90d5402aa44b3e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_1aaea829e1aeaebf59713c79.woff')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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;}
.m2{transform:matrix(0.236380,0.000000,-0.081392,0.236380,0,0);-ms-transform:matrix(0.236380,0.000000,-0.081392,0.236380,0,0);-webkit-transform:matrix(0.236380,0.000000,-0.081392,0.236380,0,0);}
.m1{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);}
.m0{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls35{letter-spacing:-1.188000px;}
.ls10{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.990000px;}
.ls29{letter-spacing:-0.731082px;}
.ls22{letter-spacing:-0.726000px;}
.ls19{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.577170px;}
.ls3{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.480000px;}
.ls2c{letter-spacing:-0.423258px;}
.ls34{letter-spacing:-0.384780px;}
.ls5{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.192390px;}
.ls28{letter-spacing:-0.153912px;}
.ls20{letter-spacing:-0.038478px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.010800px;}
.ls1f{letter-spacing:0.076956px;}
.ls1b{letter-spacing:0.330000px;}
.ls24{letter-spacing:0.346302px;}
.ls33{letter-spacing:0.384780px;}
.ls36{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.420000px;}
.ls25{letter-spacing:0.462000px;}
.ls21{letter-spacing:0.538692px;}
.ls23{letter-spacing:0.615648px;}
.ls1c{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.726000px;}
.ls32{letter-spacing:0.769560px;}
.ls2f{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.990000px;}
.ls26{letter-spacing:1.192818px;}
.ls2d{letter-spacing:1.320000px;}
.ls30{letter-spacing:1.385208px;}
.ls15{letter-spacing:1.566000px;}
.ls18{letter-spacing:1.590600px;}
.ls16{letter-spacing:1.620000px;}
.ls6{letter-spacing:1.872000px;}
.lsc{letter-spacing:1.914000px;}
.ls17{letter-spacing:2.088000px;}
.lsb{letter-spacing:2.106000px;}
.ls9{letter-spacing:2.574000px;}
.lsa{letter-spacing:2.722315px;}
.lsf{letter-spacing:3.276000px;}
.ls1{letter-spacing:4.212000px;}
.lsd{letter-spacing:95.987400px;}
.ls14{letter-spacing:484.110600px;}
.ls13{letter-spacing:1028.698800px;}
.lse{letter-spacing:1183.342200px;}
.ls12{letter-spacing:1220.361600px;}
.ls11{letter-spacing:1250.683800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-17.490000px;}
.ws1{word-spacing:-16.272000px;}
.wsb5{word-spacing:-16.236000px;}
.ws7e{word-spacing:-15.708000px;}
.ws47{word-spacing:-15.378000px;}
.wsb4{word-spacing:-15.312000px;}
.ws55{word-spacing:-14.916000px;}
.wsc{word-spacing:-14.310000px;}
.wsa0{word-spacing:-14.256000px;}
.wsa7{word-spacing:-14.190000px;}
.ws22{word-spacing:-12.204000px;}
.ws49{word-spacing:-11.610000px;}
.ws8{word-spacing:-10.848000px;}
.ws7f{word-spacing:-10.081236px;}
.ws48{word-spacing:-9.888846px;}
.ws80{word-spacing:-9.465588px;}
.ws45{word-spacing:-9.311676px;}
.ws44{word-spacing:-9.234720px;}
.ws46{word-spacing:-9.042330px;}
.ws42{word-spacing:-8.772984px;}
.ws14{word-spacing:-8.696028px;}
.ws43{word-spacing:-8.657550px;}
.ws54{word-spacing:-8.542116px;}
.ws5e{word-spacing:-8.503638px;}
.wsa1{word-spacing:-8.311248px;}
.ws73{word-spacing:-8.118858px;}
.ws15{word-spacing:-7.114932px;}
.ws24{word-spacing:-4.290000px;}
.ws3{word-spacing:-4.212000px;}
.ws53{word-spacing:-3.762000px;}
.wsd{word-spacing:-3.276000px;}
.ws98{word-spacing:-2.640000px;}
.ws2b{word-spacing:-2.574000px;}
.ws7a{word-spacing:-2.508000px;}
.wsaa{word-spacing:-2.376000px;}
.ws4b{word-spacing:-2.178000px;}
.ws65{word-spacing:-2.112000px;}
.ws18{word-spacing:-2.088000px;}
.ws2{word-spacing:-2.052000px;}
.ws13{word-spacing:-1.914000px;}
.ws9{word-spacing:-1.872000px;}
.ws9e{word-spacing:-1.848000px;}
.ws2c{word-spacing:-1.716000px;}
.ws81{word-spacing:-1.650000px;}
.ws12{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.596000px;}
.wsa3{word-spacing:-1.584000px;}
.ws7c{word-spacing:-1.518000px;}
.ws2e{word-spacing:-1.452000px;}
.ws36{word-spacing:-1.386000px;}
.ws17{word-spacing:-1.368000px;}
.wse{word-spacing:-1.326256px;}
.ws88{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.254000px;}
.ws1d{word-spacing:-1.122000px;}
.ws10{word-spacing:-1.026000px;}
.ws1e{word-spacing:-0.990000px;}
.ws1b{word-spacing:-0.924000px;}
.ws4a{word-spacing:-0.792000px;}
.ws8c{word-spacing:-0.769560px;}
.ws68{word-spacing:-0.726000px;}
.ws3c{word-spacing:-0.660000px;}
.ws87{word-spacing:-0.615648px;}
.wsac{word-spacing:-0.528000px;}
.wsb1{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.396000px;}
.ws96{word-spacing:-0.384780px;}
.ws1c{word-spacing:-0.330000px;}
.ws8b{word-spacing:-0.264000px;}
.ws31{word-spacing:-0.216000px;}
.ws71{word-spacing:-0.198000px;}
.ws33{word-spacing:-0.132000px;}
.ws29{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws9f{word-spacing:0.066000px;}
.ws4d{word-spacing:0.132000px;}
.ws72{word-spacing:0.198000px;}
.ws86{word-spacing:0.264000px;}
.ws6{word-spacing:0.288000px;}
.ws4c{word-spacing:0.330000px;}
.ws7{word-spacing:0.360000px;}
.ws35{word-spacing:0.396000px;}
.ws7d{word-spacing:0.423258px;}
.ws27{word-spacing:0.462000px;}
.ws23{word-spacing:0.480000px;}
.ws5{word-spacing:0.504000px;}
.ws6e{word-spacing:0.528000px;}
.ws4{word-spacing:0.648000px;}
.ws20{word-spacing:0.660000px;}
.ws2d{word-spacing:0.726000px;}
.ws56{word-spacing:0.731082px;}
.ws2f{word-spacing:0.792000px;}
.wsb6{word-spacing:0.858000px;}
.ws67{word-spacing:0.924000px;}
.ws25{word-spacing:0.990000px;}
.ws11{word-spacing:1.080000px;}
.ws32{word-spacing:1.188000px;}
.ws52{word-spacing:1.320000px;}
.ws3e{word-spacing:1.386000px;}
.ws58{word-spacing:1.452000px;}
.ws19{word-spacing:1.518000px;}
.ws5a{word-spacing:1.584000px;}
.ws1f{word-spacing:1.650000px;}
.ws37{word-spacing:1.716000px;}
.ws40{word-spacing:1.782000px;}
.ws6a{word-spacing:1.848000px;}
.ws4e{word-spacing:1.914000px;}
.ws82{word-spacing:1.980000px;}
.ws7b{word-spacing:2.046000px;}
.ws90{word-spacing:2.112000px;}
.ws8a{word-spacing:2.244000px;}
.wsa5{word-spacing:2.310000px;}
.ws9b{word-spacing:2.376000px;}
.ws3d{word-spacing:2.442000px;}
.ws3a{word-spacing:2.508000px;}
.wsb0{word-spacing:2.574000px;}
.ws74{word-spacing:2.640000px;}
.ws84{word-spacing:2.706000px;}
.ws79{word-spacing:2.772000px;}
.ws61{word-spacing:2.904000px;}
.ws34{word-spacing:3.102000px;}
.ws9d{word-spacing:3.168000px;}
.ws41{word-spacing:3.300000px;}
.ws60{word-spacing:3.432000px;}
.ws50{word-spacing:3.564000px;}
.ws95{word-spacing:3.696000px;}
.ws2a{word-spacing:3.762000px;}
.ws28{word-spacing:3.828000px;}
.ws91{word-spacing:3.894000px;}
.ws94{word-spacing:3.960000px;}
.ws4f{word-spacing:4.026000px;}
.ws8f{word-spacing:4.092000px;}
.ws9c{word-spacing:4.224000px;}
.ws78{word-spacing:4.290000px;}
.ws6b{word-spacing:4.554000px;}
.ws1a{word-spacing:4.620000px;}
.ws26{word-spacing:4.686000px;}
.ws64{word-spacing:4.752000px;}
.ws63{word-spacing:4.818000px;}
.ws92{word-spacing:4.884000px;}
.wsae{word-spacing:5.016000px;}
.wsad{word-spacing:5.082000px;}
.ws21{word-spacing:5.148000px;}
.ws57{word-spacing:5.214000px;}
.ws6d{word-spacing:5.412000px;}
.ws30{word-spacing:5.610000px;}
.ws62{word-spacing:5.874000px;}
.ws6c{word-spacing:5.940000px;}
.ws8e{word-spacing:6.006000px;}
.wsa6{word-spacing:6.072000px;}
.ws83{word-spacing:6.138000px;}
.ws51{word-spacing:6.270000px;}
.ws75{word-spacing:6.468000px;}
.ws69{word-spacing:6.600000px;}
.ws5d{word-spacing:6.666000px;}
.wsb3{word-spacing:6.864000px;}
.ws70{word-spacing:6.930000px;}
.wsb2{word-spacing:7.194000px;}
.wsa2{word-spacing:7.260000px;}
.ws3b{word-spacing:7.326000px;}
.ws89{word-spacing:7.590000px;}
.ws59{word-spacing:7.854000px;}
.wsa4{word-spacing:8.316000px;}
.ws77{word-spacing:8.448000px;}
.ws5b{word-spacing:8.514000px;}
.ws5c{word-spacing:8.580000px;}
.ws9a{word-spacing:8.844000px;}
.ws39{word-spacing:8.910000px;}
.ws6f{word-spacing:8.976000px;}
.ws8d{word-spacing:9.042000px;}
.ws99{word-spacing:9.174000px;}
.ws76{word-spacing:9.636000px;}
.ws66{word-spacing:9.966000px;}
.ws85{word-spacing:10.230000px;}
.wsab{word-spacing:10.890000px;}
.wsaf{word-spacing:11.616000px;}
.wsa9{word-spacing:11.814000px;}
.ws93{word-spacing:12.144000px;}
.ws5f{word-spacing:12.474000px;}
.wsa8{word-spacing:12.606000px;}
.ws97{word-spacing:13.200000px;}
.ws38{word-spacing:14.916000px;}
._5{margin-left:-13.186200px;}
._8{margin-left:-11.363400px;}
._1a{margin-left:-8.481000px;}
._f{margin-left:-7.001400px;}
._16{margin-left:-5.907600px;}
._3{margin-left:-4.862400px;}
._1{margin-left:-3.009000px;}
._0{margin-left:-1.815000px;}
._2{width:1.036800px;}
._4{width:2.058000px;}
._12{width:3.775200px;}
._13{width:5.478000px;}
._15{width:7.101600px;}
._14{width:8.408400px;}
._19{width:9.834000px;}
._17{width:11.173800px;}
._18{width:13.035000px;}
._d{width:172.164000px;}
._e{width:201.885000px;}
._11{width:352.925400px;}
._10{width:665.691000px;}
._b{width:995.361000px;}
._9{width:1045.980000px;}
._6{width:1047.708000px;}
._a{width:1139.346000px;}
._7{width:1150.144200px;}
._c{width:1249.107000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:transparent;}
.fsa{font-size:31.482000px;}
.fs9{font-size:38.478000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:69.802958px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:91.062600px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:17.202150px;}
.y74{bottom:46.089600px;}
.y53{bottom:65.542500px;}
.y28{bottom:77.295300px;}
.y21b{bottom:79.365300px;}
.yd4{bottom:79.896900px;}
.y164{bottom:81.030900px;}
.y90{bottom:81.031050px;}
.y52{bottom:85.036500px;}
.y12d{bottom:91.537050px;}
.y1fc{bottom:95.370300px;}
.y13f{bottom:95.901900px;}
.y3{bottom:96.305550px;}
.y27{bottom:96.543300px;}
.y8f{bottom:97.531050px;}
.y21a{bottom:98.868300px;}
.yd3{bottom:99.399900px;}
.y51{bottom:104.530500px;}
.yb0{bottom:109.538550px;}
.y12c{bottom:111.031050px;}
.yed{bottom:114.031050px;}
.y1fb{bottom:114.873300px;}
.y13e{bottom:115.404900px;}
.y2{bottom:117.310050px;}
.y219{bottom:118.371300px;}
.yd2{bottom:118.902900px;}
.y73{bottom:122.512950px;}
.y50{bottom:124.030500px;}
.y12b{bottom:126.031050px;}
.y26{bottom:126.543300px;}
.yaf{bottom:130.531050px;}
.y1fa{bottom:134.376300px;}
.y13d{bottom:134.907900px;}
.y218{bottom:137.874300px;}
.yd1{bottom:138.405900px;}
.y163{bottom:138.979350px;}
.y72{bottom:139.009950px;}
.y25{bottom:141.543300px;}
.yae{bottom:147.031050px;}
.y1f9{bottom:153.879300px;}
.y13c{bottom:154.410900px;}
.y1d8{bottom:154.413900px;}
.y109{bottom:154.425900px;}
.y71{bottom:155.506950px;}
.y1b9{bottom:156.230100px;}
.y24{bottom:156.543300px;}
.y217{bottom:157.377300px;}
.yd0{bottom:157.908900px;}
.y162{bottom:158.482350px;}
.y4f{bottom:160.036500px;}
.yad{bottom:163.531050px;}
.y8e{bottom:164.852100px;}
.y23{bottom:171.543300px;}
.y1f8{bottom:173.382300px;}
.y13b{bottom:173.913900px;}
.y1d7{bottom:173.916900px;}
.y108{bottom:173.928900px;}
.y70{bottom:175.003950px;}
.y1b8{bottom:175.733100px;}
.y216{bottom:176.880300px;}
.ycf{bottom:177.411900px;}
.y19b{bottom:177.453900px;}
.y161{bottom:177.985350px;}
.y4e{bottom:179.530500px;}
.yec{bottom:180.031050px;}
.y8d{bottom:184.355100px;}
.y22{bottom:186.543300px;}
.yeb{bottom:192.038550px;}
.y12a{bottom:192.308400px;}
.y1f7{bottom:192.885300px;}
.y13a{bottom:193.416900px;}
.y1d6{bottom:193.419900px;}
.y177{bottom:193.440150px;}
.y188{bottom:193.487100px;}
.y6f{bottom:194.506950px;}
.y1b7{bottom:195.236100px;}
.y4d{bottom:196.027500px;}
.y215{bottom:196.383300px;}
.yce{bottom:196.914900px;}
.y19a{bottom:196.956900px;}
.y160{bottom:197.488350px;}
.y8c{bottom:203.858100px;}
.y129{bottom:211.365900px;}
.y1f6{bottom:212.388300px;}
.y139{bottom:212.919900px;}
.y1d5{bottom:212.922900px;}
.y176{bottom:212.943150px;}
.y187{bottom:212.990100px;}
.yea{bottom:213.031050px;}
.y107{bottom:214.683900px;}
.y1b6{bottom:214.739100px;}
.y4c{bottom:215.530500px;}
.y214{bottom:215.886300px;}
.ycd{bottom:216.417900px;}
.y199{bottom:216.459900px;}
.y21{bottom:216.543300px;}
.y15f{bottom:216.991350px;}
.y8b{bottom:223.361100px;}
.y128{bottom:230.423400px;}
.y6e{bottom:230.506950px;}
.y20{bottom:231.543300px;}
.y1f5{bottom:231.891300px;}
.y138{bottom:232.422900px;}
.y1d4{bottom:232.425900px;}
.y175{bottom:232.446150px;}
.yac{bottom:232.482900px;}
.y186{bottom:232.493100px;}
.y106{bottom:234.186900px;}
.y1b5{bottom:234.242100px;}
.y213{bottom:235.389300px;}
.ycc{bottom:235.920900px;}
.y198{bottom:235.962900px;}
.y15e{bottom:236.494350px;}
.y8a{bottom:242.864100px;}
.y127{bottom:249.480900px;}
.y6d{bottom:250.000950px;}
.y1f4{bottom:251.394300px;}
.y4b{bottom:251.539500px;}
.y137{bottom:251.925900px;}
.y1d3{bottom:251.928900px;}
.y174{bottom:251.949150px;}
.yab{bottom:251.985900px;}
.y185{bottom:251.996100px;}
.y1b4{bottom:253.745100px;}
.y212{bottom:254.892300px;}
.ycb{bottom:255.423900px;}
.y197{bottom:255.465900px;}
.y15d{bottom:255.997350px;}
.y1f{bottom:261.543300px;}
.y89{bottom:262.367100px;}
.y126{bottom:268.538400px;}
.y6c{bottom:269.503950px;}
.y1f3{bottom:270.897300px;}
.y4a{bottom:271.033500px;}
.y136{bottom:271.428900px;}
.y1d2{bottom:271.431900px;}
.y173{bottom:271.452150px;}
.yaa{bottom:271.488900px;}
.y1b3{bottom:273.248100px;}
.y211{bottom:274.395300px;}
.yca{bottom:274.926900px;}
.y105{bottom:274.941900px;}
.y196{bottom:274.968900px;}
.y15c{bottom:275.500350px;}
.y1e{bottom:276.543300px;}
.y88{bottom:281.870100px;}
.y49{bottom:287.530500px;}
.y125{bottom:287.595900px;}
.y6b{bottom:289.006950px;}
.y1f2{bottom:290.400300px;}
.y135{bottom:290.931900px;}
.y1d1{bottom:290.934900px;}
.y172{bottom:290.955150px;}
.ye9{bottom:290.976150px;}
.ya9{bottom:290.991900px;}
.y1d{bottom:291.543300px;}
.y1b2{bottom:292.730100px;}
.y184{bottom:292.751100px;}
.y210{bottom:293.898300px;}
.yc9{bottom:294.429900px;}
.y104{bottom:294.444900px;}
.y195{bottom:294.471900px;}
.y15b{bottom:295.003350px;}
.y87{bottom:301.373100px;}
.y48{bottom:304.027500px;}
.y1c{bottom:306.543300px;}
.y124{bottom:306.653400px;}
.y1f1{bottom:309.903300px;}
.y134{bottom:310.434900px;}
.y1d0{bottom:310.437900px;}
.y171{bottom:310.458150px;}
.ye8{bottom:310.479150px;}
.y1b1{bottom:312.233100px;}
.y20f{bottom:313.401300px;}
.yc8{bottom:313.932900px;}
.y103{bottom:313.947900px;}
.y194{bottom:313.974900px;}
.y15a{bottom:314.506350px;}
.y86{bottom:320.852400px;}
.y47{bottom:323.530500px;}
.y6a{bottom:325.018350px;}
.y123{bottom:325.643400px;}
.y1f0{bottom:329.406300px;}
.y133{bottom:329.937900px;}
.y1cf{bottom:329.940900px;}
.y170{bottom:329.961150px;}
.ye7{bottom:329.982150px;}
.y1b0{bottom:331.736100px;}
.ya8{bottom:331.746900px;}
.y20e{bottom:332.904300px;}
.yc7{bottom:333.435900px;}
.y102{bottom:333.450900px;}
.y193{bottom:333.477900px;}
.y183{bottom:333.495900px;}
.y159{bottom:334.009350px;}
.y1b{bottom:336.543300px;}
.y85{bottom:340.355400px;}
.y69{bottom:341.515350px;}
.y122{bottom:344.700900px;}
.y1ef{bottom:348.909300px;}
.y132{bottom:349.440900px;}
.y1ce{bottom:349.443900px;}
.y16f{bottom:349.464150px;}
.ye6{bottom:349.485150px;}
.y1af{bottom:351.239100px;}
.ya7{bottom:351.249900px;}
.y1a{bottom:351.543300px;}
.y20d{bottom:352.407300px;}
.yc6{bottom:352.938900px;}
.y101{bottom:352.953900px;}
.y192{bottom:352.980900px;}
.y182{bottom:352.998900px;}
.y158{bottom:353.512350px;}
.y46{bottom:359.530500px;}
.y84{bottom:359.858400px;}
.y68{bottom:362.264850px;}
.y121{bottom:363.758400px;}
.y19{bottom:366.543300px;}
.y1ee{bottom:368.412300px;}
.y131{bottom:368.943900px;}
.y1cd{bottom:368.946900px;}
.y16e{bottom:368.967150px;}
.ye5{bottom:368.988150px;}
.yc{bottom:370.192500px;}
.y1ae{bottom:370.742100px;}
.y20c{bottom:371.910300px;}
.yc5{bottom:372.441900px;}
.y100{bottom:372.456900px;}
.y191{bottom:372.483900px;}
.y181{bottom:372.501900px;}
.y157{bottom:373.015350px;}
.y67{bottom:378.761850px;}
.y45{bottom:379.030500px;}
.y83{bottom:379.361400px;}
.y18{bottom:381.543300px;}
.y120{bottom:382.815900px;}
.y1ed{bottom:387.915300px;}
.y130{bottom:388.446900px;}
.y1cc{bottom:388.449900px;}
.y16d{bottom:388.470150px;}
.ye4{bottom:388.488150px;}
.y1ad{bottom:390.245100px;}
.yb{bottom:391.198500px;}
.y20b{bottom:391.413300px;}
.yc4{bottom:391.944900px;}
.yff{bottom:391.959900px;}
.y190{bottom:391.986900px;}
.ya6{bottom:392.004900px;}
.y156{bottom:392.518350px;}
.y66{bottom:395.258850px;}
.y82{bottom:398.864400px;}
.y11f{bottom:401.873400px;}
.y1ec{bottom:407.418300px;}
.y12f{bottom:407.949900px;}
.y1cb{bottom:407.952900px;}
.y16c{bottom:407.973150px;}
.ye3{bottom:407.988150px;}
.y1ac{bottom:409.748100px;}
.y20a{bottom:410.916300px;}
.yc3{bottom:411.447900px;}
.yfe{bottom:411.462900px;}
.y18f{bottom:411.489900px;}
.ya5{bottom:411.507900px;}
.y17{bottom:411.543300px;}
.y155{bottom:412.021350px;}
.ya{bottom:412.204500px;}
.y44{bottom:415.030500px;}
.y65{bottom:416.004900px;}
.y81{bottom:418.367400px;}
.y11e{bottom:420.930900px;}
.y1eb{bottom:426.921300px;}
.y1ca{bottom:427.455900px;}
.y16b{bottom:427.476150px;}
.ye2{bottom:427.491150px;}
.y16{bottom:428.043300px;}
.y1ab{bottom:429.251100px;}
.y209{bottom:430.419300px;}
.yc2{bottom:430.950900px;}
.yfd{bottom:430.965900px;}
.y18e{bottom:430.992900px;}
.y180{bottom:430.995900px;}
.ya4{bottom:430.998900px;}
.y154{bottom:431.524350px;}
.y9{bottom:433.210500px;}
.y43{bottom:434.527500px;}
.y64{bottom:435.507900px;}
.y80{bottom:437.870400px;}
.y11d{bottom:439.988400px;}
.y1ea{bottom:446.424300px;}
.y1c9{bottom:446.958900px;}
.y16a{bottom:446.979150px;}
.ye1{bottom:446.982150px;}
.y12e{bottom:448.704900px;}
.y208{bottom:449.922300px;}
.yc1{bottom:450.453900px;}
.yfc{bottom:450.468900px;}
.y18d{bottom:450.495900px;}
.y17f{bottom:450.498900px;}
.ya3{bottom:450.501900px;}
.y153{bottom:451.027350px;}
.y42{bottom:454.030500px;}
.y8{bottom:454.216500px;}
.y63{bottom:455.010900px;}
.y7f{bottom:457.373400px;}
.y11c{bottom:459.045900px;}
.y15{bottom:459.543300px;}
.y1e9{bottom:465.927300px;}
.y1c8{bottom:466.461900px;}
.y169{bottom:466.482150px;}
.ye0{bottom:466.485150px;}
.y1aa{bottom:468.207900px;}
.y207{bottom:469.425300px;}
.yc0{bottom:469.956900px;}
.yfb{bottom:469.971900px;}
.y18c{bottom:469.998900px;}
.y17e{bottom:470.001900px;}
.ya2{bottom:470.004900px;}
.y152{bottom:470.530350px;}
.y7e{bottom:476.876400px;}
.y11b{bottom:478.103400px;}
.y1e8{bottom:485.430300px;}
.y1c7{bottom:485.964900px;}
.y168{bottom:485.985150px;}
.ydf{bottom:485.988150px;}
.y1a9{bottom:487.710900px;}
.y206{bottom:488.928300px;}
.ybf{bottom:489.459900px;}
.yfa{bottom:489.474900px;}
.y18b{bottom:489.501900px;}
.y17d{bottom:489.504900px;}
.ya1{bottom:489.507900px;}
.y14{bottom:489.543300px;}
.y151{bottom:490.033350px;}
.y41{bottom:490.039500px;}
.y62{bottom:491.013900px;}
.y7d{bottom:496.379400px;}
.y11a{bottom:497.145900px;}
.y13{bottom:504.543300px;}
.y1e7{bottom:504.933300px;}
.y1c6{bottom:505.467900px;}
.yde{bottom:505.488150px;}
.y1a8{bottom:507.213900px;}
.y61{bottom:507.510900px;}
.y205{bottom:508.431300px;}
.ybe{bottom:508.962900px;}
.yf9{bottom:508.977900px;}
.ya0{bottom:508.998900px;}
.y18a{bottom:509.004900px;}
.y17c{bottom:509.007900px;}
.y40{bottom:509.533500px;}
.y150{bottom:509.536350px;}
.y119{bottom:516.203400px;}
.y12{bottom:519.543300px;}
.y60{bottom:524.010900px;}
.y1e6{bottom:524.436300px;}
.y1c5{bottom:524.970900px;}
.ydd{bottom:524.982150px;}
.y3f{bottom:526.030500px;}
.y1a7{bottom:526.716900px;}
.y204{bottom:527.934300px;}
.ybd{bottom:528.465900px;}
.yf8{bottom:528.480900px;}
.y9f{bottom:528.501900px;}
.y189{bottom:528.507900px;}
.y17b{bottom:528.510900px;}
.y14f{bottom:529.039350px;}
.y118{bottom:535.148400px;}
.y7c{bottom:537.134400px;}
.y3e{bottom:542.530500px;}
.y1e5{bottom:543.939300px;}
.y1c4{bottom:544.473900px;}
.ydc{bottom:544.485150px;}
.y1a6{bottom:546.219900px;}
.y203{bottom:547.437300px;}
.ybc{bottom:547.968900px;}
.yf7{bottom:547.983900px;}
.y17a{bottom:548.001900px;}
.y9e{bottom:548.004900px;}
.y14e{bottom:548.542350px;}
.y11{bottom:549.543300px;}
.y117{bottom:554.205900px;}
.y7b{bottom:556.637400px;}
.y5f{bottom:560.010900px;}
.y1e4{bottom:563.442300px;}
.y1c3{bottom:563.976900px;}
.ydb{bottom:563.988150px;}
.y10{bottom:564.543300px;}
.y1a5{bottom:565.722900px;}
.y202{bottom:566.940300px;}
.ybb{bottom:567.471900px;}
.yf6{bottom:567.486900px;}
.y179{bottom:567.504900px;}
.y9d{bottom:567.507900px;}
.y14d{bottom:568.003350px;}
.y116{bottom:573.263400px;}
.y3d{bottom:578.536500px;}
.y7{bottom:578.577900px;}
.y5e{bottom:579.510900px;}
.yf{bottom:579.543300px;}
.y1e3{bottom:582.945300px;}
.y167{bottom:583.476900px;}
.y1c2{bottom:583.479900px;}
.yda{bottom:583.488150px;}
.y1a4{bottom:585.225900px;}
.y201{bottom:586.443300px;}
.yba{bottom:586.974900px;}
.y9c{bottom:586.983900px;}
.yf5{bottom:586.989900px;}
.y178{bottom:587.007900px;}
.y14c{bottom:587.506350px;}
.y115{bottom:592.320900px;}
.y3c{bottom:598.030500px;}
.y1e2{bottom:602.448300px;}
.y166{bottom:602.979900px;}
.y1c1{bottom:602.982900px;}
.yd9{bottom:602.988150px;}
.y1a3{bottom:604.728900px;}
.y200{bottom:605.946300px;}
.yb9{bottom:606.477900px;}
.y9b{bottom:606.486900px;}
.yf4{bottom:606.492900px;}
.y14b{bottom:607.009350px;}
.y6{bottom:608.574900px;}
.ye{bottom:609.543300px;}
.y114{bottom:611.378400px;}
.y5d{bottom:615.510900px;}
.y3b{bottom:617.530500px;}
.yd8{bottom:622.482900px;}
.y1c0{bottom:622.485900px;}
.y1a2{bottom:624.231900px;}
.yd{bottom:624.543300px;}
.y1ff{bottom:625.449300px;}
.yb8{bottom:625.980900px;}
.y9a{bottom:625.989900px;}
.yf3{bottom:625.995900px;}
.y14a{bottom:626.512350px;}
.y113{bottom:630.435900px;}
.y7a{bottom:634.632900px;}
.y5c{bottom:635.016900px;}
.y5{bottom:638.571900px;}
.yd7{bottom:641.985900px;}
.y1bf{bottom:641.988900px;}
.y1e1{bottom:643.203300px;}
.y1a1{bottom:643.734900px;}
.y1fe{bottom:644.952300px;}
.yb7{bottom:645.483900px;}
.y99{bottom:645.492900px;}
.yf2{bottom:645.498900px;}
.y149{bottom:646.015350px;}
.y112{bottom:649.493400px;}
.y36{bottom:649.593900px;}
.y3a{bottom:653.530500px;}
.y79{bottom:654.135900px;}
.y5b{bottom:654.510900px;}
.yd6{bottom:661.488900px;}
.y1be{bottom:661.491900px;}
.y35{bottom:661.595400px;}
.y165{bottom:663.237900px;}
.y1fd{bottom:664.455300px;}
.yb6{bottom:664.986900px;}
.y98{bottom:664.995900px;}
.yf1{bottom:665.001900px;}
.y148{bottom:665.518350px;}
.y111{bottom:668.550900px;}
.y4{bottom:668.568900px;}
.y5a{bottom:671.010900px;}
.y39{bottom:673.030500px;}
.y34{bottom:673.596900px;}
.y78{bottom:673.635900px;}
.y1a0{bottom:682.740900px;}
.y1e0{bottom:683.958300px;}
.yb5{bottom:684.489900px;}
.y97{bottom:684.498900px;}
.yf0{bottom:684.504900px;}
.y147{bottom:685.021350px;}
.y110{bottom:687.608400px;}
.y33{bottom:697.599900px;}
.yd5{bottom:702.243900px;}
.y1bd{bottom:702.246900px;}
.y1df{bottom:703.461300px;}
.yb4{bottom:703.992900px;}
.y96{bottom:704.001900px;}
.yef{bottom:704.007900px;}
.y146{bottom:704.524350px;}
.y10f{bottom:706.665900px;}
.y59{bottom:707.010900px;}
.y38{bottom:709.030500px;}
.y32{bottom:709.601400px;}
.y19f{bottom:721.746900px;}
.y1de{bottom:722.964300px;}
.yb3{bottom:723.495900px;}
.y95{bottom:723.504900px;}
.yee{bottom:723.510900px;}
.y145{bottom:724.027350px;}
.y10e{bottom:725.723400px;}
.y58{bottom:726.507900px;}
.y37{bottom:728.530500px;}
.y31{bottom:733.604400px;}
.y19e{bottom:741.249900px;}
.y1dd{bottom:742.467300px;}
.yb2{bottom:742.998900px;}
.y1bc{bottom:743.001900px;}
.y94{bottom:743.007900px;}
.y144{bottom:743.530350px;}
.y10d{bottom:744.780900px;}
.y57{bottom:746.010900px;}
.y77{bottom:751.629900px;}
.y30{bottom:757.607400px;}
.y19d{bottom:760.752900px;}
.y1dc{bottom:761.970300px;}
.yb1{bottom:762.501900px;}
.y1bb{bottom:762.504900px;}
.y93{bottom:762.507900px;}
.y143{bottom:763.033350px;}
.y10c{bottom:763.838400px;}
.y2f{bottom:772.611900px;}
.y76{bottom:772.635900px;}
.y19c{bottom:780.255900px;}
.y1db{bottom:781.473300px;}
.y92{bottom:782.004900px;}
.y1ba{bottom:782.007900px;}
.y56{bottom:782.010900px;}
.y142{bottom:782.536350px;}
.y10b{bottom:782.895900px;}
.y2e{bottom:787.616400px;}
.y2b{bottom:787.626900px;}
.y75{bottom:793.632900px;}
.y1da{bottom:800.976300px;}
.y55{bottom:801.507900px;}
.y10a{bottom:801.953400px;}
.y141{bottom:802.039350px;}
.y2d{bottom:802.620900px;}
.y2a{bottom:802.631400px;}
.y2c{bottom:817.625400px;}
.y29{bottom:817.635900px;}
.y1d9{bottom:820.479300px;}
.y54{bottom:821.010900px;}
.y140{bottom:821.542350px;}
.y91{bottom:875.409450px;}
.he{height:26.552180px;}
.h7{height:34.637695px;}
.h6{height:39.585938px;}
.h9{height:44.534180px;}
.hc{height:54.382664px;}
.hb{height:54.406664px;}
.h3{height:54.430664px;}
.h10{height:54.442664px;}
.hf{height:54.454664px;}
.h13{height:54.463664px;}
.h14{height:54.466664px;}
.h12{height:54.478664px;}
.h18{height:54.487664px;}
.h16{height:54.490664px;}
.h1b{height:54.514664px;}
.hd{height:54.525464px;}
.h11{height:54.538664px;}
.h19{height:54.562664px;}
.h1a{height:54.574664px;}
.h17{height:54.700664px;}
.h15{height:54.880664px;}
.ha{height:57.566990px;}
.h5{height:59.378906px;}
.h2{height:60.647692px;}
.h8{height:69.275391px;}
.h4{height:89.068359px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x1{left:-45.088500px;}
.x0{left:0.000000px;}
.xd{left:72.283500px;}
.xe{left:85.039500px;}
.xf{left:87.162450px;}
.x1b{left:93.539100px;}
.x12{left:102.369450px;}
.x16{left:121.803900px;}
.x1a{left:123.301950px;}
.x5{left:130.681500px;}
.x10{left:143.127450px;}
.x6{left:145.342500px;}
.x2{left:153.073950px;}
.x15{left:163.939500px;}
.x4{left:166.996500px;}
.x3{left:197.425950px;}
.x19{left:204.102450px;}
.xa{left:207.316650px;}
.x9{left:209.404650px;}
.xb{left:226.018650px;}
.x8{left:231.562650px;}
.x7{left:241.543500px;}
.x13{left:268.247700px;}
.xc{left:269.506650px;}
.x11{left:291.285600px;}
.x18{left:397.548450px;}
.x17{left:406.014900px;}
.x1c{left:521.289600px;}
.x14{left:529.652400px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls35{letter-spacing:-1.056000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.880000pt;}
.ls29{letter-spacing:-0.649851pt;}
.ls22{letter-spacing:-0.645333pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.513040pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls2c{letter-spacing:-0.376229pt;}
.ls34{letter-spacing:-0.342027pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.171013pt;}
.ls28{letter-spacing:-0.136811pt;}
.ls20{letter-spacing:-0.034203pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.009600pt;}
.ls1f{letter-spacing:0.068405pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls24{letter-spacing:0.307824pt;}
.ls33{letter-spacing:0.342027pt;}
.ls36{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.373333pt;}
.ls25{letter-spacing:0.410667pt;}
.ls21{letter-spacing:0.478837pt;}
.ls23{letter-spacing:0.547243pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.645333pt;}
.ls32{letter-spacing:0.684053pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.880000pt;}
.ls26{letter-spacing:1.060283pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls30{letter-spacing:1.231296pt;}
.ls15{letter-spacing:1.392000pt;}
.ls18{letter-spacing:1.413867pt;}
.ls16{letter-spacing:1.440000pt;}
.ls6{letter-spacing:1.664000pt;}
.lsc{letter-spacing:1.701333pt;}
.ls17{letter-spacing:1.856000pt;}
.lsb{letter-spacing:1.872000pt;}
.ls9{letter-spacing:2.288000pt;}
.lsa{letter-spacing:2.419836pt;}
.lsf{letter-spacing:2.912000pt;}
.ls1{letter-spacing:3.744000pt;}
.lsd{letter-spacing:85.322133pt;}
.ls14{letter-spacing:430.320533pt;}
.ls13{letter-spacing:914.398933pt;}
.lse{letter-spacing:1051.859733pt;}
.ls12{letter-spacing:1084.765867pt;}
.ls11{letter-spacing:1111.718933pt;}
.wsb{word-spacing:-15.546667pt;}
.ws1{word-spacing:-14.464000pt;}
.wsb5{word-spacing:-14.432000pt;}
.ws7e{word-spacing:-13.962667pt;}
.ws47{word-spacing:-13.669333pt;}
.wsb4{word-spacing:-13.610667pt;}
.ws55{word-spacing:-13.258667pt;}
.wsc{word-spacing:-12.720000pt;}
.wsa0{word-spacing:-12.672000pt;}
.wsa7{word-spacing:-12.613333pt;}
.ws22{word-spacing:-10.848000pt;}
.ws49{word-spacing:-10.320000pt;}
.ws8{word-spacing:-9.642667pt;}
.ws7f{word-spacing:-8.961099pt;}
.ws48{word-spacing:-8.790085pt;}
.ws80{word-spacing:-8.413856pt;}
.ws45{word-spacing:-8.277045pt;}
.ws44{word-spacing:-8.208640pt;}
.ws46{word-spacing:-8.037627pt;}
.ws42{word-spacing:-7.798208pt;}
.ws14{word-spacing:-7.729803pt;}
.ws43{word-spacing:-7.695600pt;}
.ws54{word-spacing:-7.592992pt;}
.ws5e{word-spacing:-7.558789pt;}
.wsa1{word-spacing:-7.387776pt;}
.ws73{word-spacing:-7.216763pt;}
.ws15{word-spacing:-6.324384pt;}
.ws24{word-spacing:-3.813333pt;}
.ws3{word-spacing:-3.744000pt;}
.ws53{word-spacing:-3.344000pt;}
.wsd{word-spacing:-2.912000pt;}
.ws98{word-spacing:-2.346667pt;}
.ws2b{word-spacing:-2.288000pt;}
.ws7a{word-spacing:-2.229333pt;}
.wsaa{word-spacing:-2.112000pt;}
.ws4b{word-spacing:-1.936000pt;}
.ws65{word-spacing:-1.877333pt;}
.ws18{word-spacing:-1.856000pt;}
.ws2{word-spacing:-1.824000pt;}
.ws13{word-spacing:-1.701333pt;}
.ws9{word-spacing:-1.664000pt;}
.ws9e{word-spacing:-1.642667pt;}
.ws2c{word-spacing:-1.525333pt;}
.ws81{word-spacing:-1.466667pt;}
.ws12{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.418667pt;}
.wsa3{word-spacing:-1.408000pt;}
.ws7c{word-spacing:-1.349333pt;}
.ws2e{word-spacing:-1.290667pt;}
.ws36{word-spacing:-1.232000pt;}
.ws17{word-spacing:-1.216000pt;}
.wse{word-spacing:-1.178894pt;}
.ws88{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.114667pt;}
.ws1d{word-spacing:-0.997333pt;}
.ws10{word-spacing:-0.912000pt;}
.ws1e{word-spacing:-0.880000pt;}
.ws1b{word-spacing:-0.821333pt;}
.ws4a{word-spacing:-0.704000pt;}
.ws8c{word-spacing:-0.684053pt;}
.ws68{word-spacing:-0.645333pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws87{word-spacing:-0.547243pt;}
.wsac{word-spacing:-0.469333pt;}
.wsb1{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws96{word-spacing:-0.342027pt;}
.ws1c{word-spacing:-0.293333pt;}
.ws8b{word-spacing:-0.234667pt;}
.ws31{word-spacing:-0.192000pt;}
.ws71{word-spacing:-0.176000pt;}
.ws33{word-spacing:-0.117333pt;}
.ws29{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.058667pt;}
.ws4d{word-spacing:0.117333pt;}
.ws72{word-spacing:0.176000pt;}
.ws86{word-spacing:0.234667pt;}
.ws6{word-spacing:0.256000pt;}
.ws4c{word-spacing:0.293333pt;}
.ws7{word-spacing:0.320000pt;}
.ws35{word-spacing:0.352000pt;}
.ws7d{word-spacing:0.376229pt;}
.ws27{word-spacing:0.410667pt;}
.ws23{word-spacing:0.426667pt;}
.ws5{word-spacing:0.448000pt;}
.ws6e{word-spacing:0.469333pt;}
.ws4{word-spacing:0.576000pt;}
.ws20{word-spacing:0.586667pt;}
.ws2d{word-spacing:0.645333pt;}
.ws56{word-spacing:0.649851pt;}
.ws2f{word-spacing:0.704000pt;}
.wsb6{word-spacing:0.762667pt;}
.ws67{word-spacing:0.821333pt;}
.ws25{word-spacing:0.880000pt;}
.ws11{word-spacing:0.960000pt;}
.ws32{word-spacing:1.056000pt;}
.ws52{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.232000pt;}
.ws58{word-spacing:1.290667pt;}
.ws19{word-spacing:1.349333pt;}
.ws5a{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.466667pt;}
.ws37{word-spacing:1.525333pt;}
.ws40{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.642667pt;}
.ws4e{word-spacing:1.701333pt;}
.ws82{word-spacing:1.760000pt;}
.ws7b{word-spacing:1.818667pt;}
.ws90{word-spacing:1.877333pt;}
.ws8a{word-spacing:1.994667pt;}
.wsa5{word-spacing:2.053333pt;}
.ws9b{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.170667pt;}
.ws3a{word-spacing:2.229333pt;}
.wsb0{word-spacing:2.288000pt;}
.ws74{word-spacing:2.346667pt;}
.ws84{word-spacing:2.405333pt;}
.ws79{word-spacing:2.464000pt;}
.ws61{word-spacing:2.581333pt;}
.ws34{word-spacing:2.757333pt;}
.ws9d{word-spacing:2.816000pt;}
.ws41{word-spacing:2.933333pt;}
.ws60{word-spacing:3.050667pt;}
.ws50{word-spacing:3.168000pt;}
.ws95{word-spacing:3.285333pt;}
.ws2a{word-spacing:3.344000pt;}
.ws28{word-spacing:3.402667pt;}
.ws91{word-spacing:3.461333pt;}
.ws94{word-spacing:3.520000pt;}
.ws4f{word-spacing:3.578667pt;}
.ws8f{word-spacing:3.637333pt;}
.ws9c{word-spacing:3.754667pt;}
.ws78{word-spacing:3.813333pt;}
.ws6b{word-spacing:4.048000pt;}
.ws1a{word-spacing:4.106667pt;}
.ws26{word-spacing:4.165333pt;}
.ws64{word-spacing:4.224000pt;}
.ws63{word-spacing:4.282667pt;}
.ws92{word-spacing:4.341333pt;}
.wsae{word-spacing:4.458667pt;}
.wsad{word-spacing:4.517333pt;}
.ws21{word-spacing:4.576000pt;}
.ws57{word-spacing:4.634667pt;}
.ws6d{word-spacing:4.810667pt;}
.ws30{word-spacing:4.986667pt;}
.ws62{word-spacing:5.221333pt;}
.ws6c{word-spacing:5.280000pt;}
.ws8e{word-spacing:5.338667pt;}
.wsa6{word-spacing:5.397333pt;}
.ws83{word-spacing:5.456000pt;}
.ws51{word-spacing:5.573333pt;}
.ws75{word-spacing:5.749333pt;}
.ws69{word-spacing:5.866667pt;}
.ws5d{word-spacing:5.925333pt;}
.wsb3{word-spacing:6.101333pt;}
.ws70{word-spacing:6.160000pt;}
.wsb2{word-spacing:6.394667pt;}
.wsa2{word-spacing:6.453333pt;}
.ws3b{word-spacing:6.512000pt;}
.ws89{word-spacing:6.746667pt;}
.ws59{word-spacing:6.981333pt;}
.wsa4{word-spacing:7.392000pt;}
.ws77{word-spacing:7.509333pt;}
.ws5b{word-spacing:7.568000pt;}
.ws5c{word-spacing:7.626667pt;}
.ws9a{word-spacing:7.861333pt;}
.ws39{word-spacing:7.920000pt;}
.ws6f{word-spacing:7.978667pt;}
.ws8d{word-spacing:8.037333pt;}
.ws99{word-spacing:8.154667pt;}
.ws76{word-spacing:8.565333pt;}
.ws66{word-spacing:8.858667pt;}
.ws85{word-spacing:9.093333pt;}
.wsab{word-spacing:9.680000pt;}
.wsaf{word-spacing:10.325333pt;}
.wsa9{word-spacing:10.501333pt;}
.ws93{word-spacing:10.794667pt;}
.ws5f{word-spacing:11.088000pt;}
.wsa8{word-spacing:11.205333pt;}
.ws97{word-spacing:11.733333pt;}
.ws38{word-spacing:13.258667pt;}
._5{margin-left:-11.721067pt;}
._8{margin-left:-10.100800pt;}
._1a{margin-left:-7.538667pt;}
._f{margin-left:-6.223467pt;}
._16{margin-left:-5.251200pt;}
._3{margin-left:-4.322133pt;}
._1{margin-left:-2.674667pt;}
._0{margin-left:-1.613333pt;}
._2{width:0.921600pt;}
._4{width:1.829333pt;}
._12{width:3.355733pt;}
._13{width:4.869333pt;}
._15{width:6.312533pt;}
._14{width:7.474133pt;}
._19{width:8.741333pt;}
._17{width:9.932267pt;}
._18{width:11.586667pt;}
._d{width:153.034667pt;}
._e{width:179.453333pt;}
._11{width:313.711467pt;}
._10{width:591.725333pt;}
._b{width:884.765333pt;}
._9{width:929.760000pt;}
._6{width:931.296000pt;}
._a{width:1012.752000pt;}
._7{width:1022.350400pt;}
._c{width:1110.317333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:34.202667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:62.047073pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:80.944533pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.290800pt;}
.y74{bottom:40.968533pt;}
.y53{bottom:58.260000pt;}
.y28{bottom:68.706933pt;}
.y21b{bottom:70.546933pt;}
.yd4{bottom:71.019467pt;}
.y164{bottom:72.027467pt;}
.y90{bottom:72.027600pt;}
.y52{bottom:75.588000pt;}
.y12d{bottom:81.366267pt;}
.y1fc{bottom:84.773600pt;}
.y13f{bottom:85.246133pt;}
.y3{bottom:85.604933pt;}
.y27{bottom:85.816267pt;}
.y8f{bottom:86.694267pt;}
.y21a{bottom:87.882933pt;}
.yd3{bottom:88.355467pt;}
.y51{bottom:92.916000pt;}
.yb0{bottom:97.367600pt;}
.y12c{bottom:98.694267pt;}
.yed{bottom:101.360933pt;}
.y1fb{bottom:102.109600pt;}
.y13e{bottom:102.582133pt;}
.y2{bottom:104.275600pt;}
.y219{bottom:105.218933pt;}
.yd2{bottom:105.691467pt;}
.y73{bottom:108.900400pt;}
.y50{bottom:110.249333pt;}
.y12b{bottom:112.027600pt;}
.y26{bottom:112.482933pt;}
.yaf{bottom:116.027600pt;}
.y1fa{bottom:119.445600pt;}
.y13d{bottom:119.918133pt;}
.y218{bottom:122.554933pt;}
.yd1{bottom:123.027467pt;}
.y163{bottom:123.537200pt;}
.y72{bottom:123.564400pt;}
.y25{bottom:125.816267pt;}
.yae{bottom:130.694267pt;}
.y1f9{bottom:136.781600pt;}
.y13c{bottom:137.254133pt;}
.y1d8{bottom:137.256800pt;}
.y109{bottom:137.267467pt;}
.y71{bottom:138.228400pt;}
.y1b9{bottom:138.871200pt;}
.y24{bottom:139.149600pt;}
.y217{bottom:139.890933pt;}
.yd0{bottom:140.363467pt;}
.y162{bottom:140.873200pt;}
.y4f{bottom:142.254667pt;}
.yad{bottom:145.360933pt;}
.y8e{bottom:146.535200pt;}
.y23{bottom:152.482933pt;}
.y1f8{bottom:154.117600pt;}
.y13b{bottom:154.590133pt;}
.y1d7{bottom:154.592800pt;}
.y108{bottom:154.603467pt;}
.y70{bottom:155.559067pt;}
.y1b8{bottom:156.207200pt;}
.y216{bottom:157.226933pt;}
.ycf{bottom:157.699467pt;}
.y19b{bottom:157.736800pt;}
.y161{bottom:158.209200pt;}
.y4e{bottom:159.582667pt;}
.yec{bottom:160.027600pt;}
.y8d{bottom:163.871200pt;}
.y22{bottom:165.816267pt;}
.yeb{bottom:170.700933pt;}
.y12a{bottom:170.940800pt;}
.y1f7{bottom:171.453600pt;}
.y13a{bottom:171.926133pt;}
.y1d6{bottom:171.928800pt;}
.y177{bottom:171.946800pt;}
.y188{bottom:171.988533pt;}
.y6f{bottom:172.895067pt;}
.y1b7{bottom:173.543200pt;}
.y4d{bottom:174.246667pt;}
.y215{bottom:174.562933pt;}
.yce{bottom:175.035467pt;}
.y19a{bottom:175.072800pt;}
.y160{bottom:175.545200pt;}
.y8c{bottom:181.207200pt;}
.y129{bottom:187.880800pt;}
.y1f6{bottom:188.789600pt;}
.y139{bottom:189.262133pt;}
.y1d5{bottom:189.264800pt;}
.y176{bottom:189.282800pt;}
.y187{bottom:189.324533pt;}
.yea{bottom:189.360933pt;}
.y107{bottom:190.830133pt;}
.y1b6{bottom:190.879200pt;}
.y4c{bottom:191.582667pt;}
.y214{bottom:191.898933pt;}
.ycd{bottom:192.371467pt;}
.y199{bottom:192.408800pt;}
.y21{bottom:192.482933pt;}
.y15f{bottom:192.881200pt;}
.y8b{bottom:198.543200pt;}
.y128{bottom:204.820800pt;}
.y6e{bottom:204.895067pt;}
.y20{bottom:205.816267pt;}
.y1f5{bottom:206.125600pt;}
.y138{bottom:206.598133pt;}
.y1d4{bottom:206.600800pt;}
.y175{bottom:206.618800pt;}
.yac{bottom:206.651467pt;}
.y186{bottom:206.660533pt;}
.y106{bottom:208.166133pt;}
.y1b5{bottom:208.215200pt;}
.y213{bottom:209.234933pt;}
.ycc{bottom:209.707467pt;}
.y198{bottom:209.744800pt;}
.y15e{bottom:210.217200pt;}
.y8a{bottom:215.879200pt;}
.y127{bottom:221.760800pt;}
.y6d{bottom:222.223067pt;}
.y1f4{bottom:223.461600pt;}
.y4b{bottom:223.590667pt;}
.y137{bottom:223.934133pt;}
.y1d3{bottom:223.936800pt;}
.y174{bottom:223.954800pt;}
.yab{bottom:223.987467pt;}
.y185{bottom:223.996533pt;}
.y1b4{bottom:225.551200pt;}
.y212{bottom:226.570933pt;}
.ycb{bottom:227.043467pt;}
.y197{bottom:227.080800pt;}
.y15d{bottom:227.553200pt;}
.y1f{bottom:232.482933pt;}
.y89{bottom:233.215200pt;}
.y126{bottom:238.700800pt;}
.y6c{bottom:239.559067pt;}
.y1f3{bottom:240.797600pt;}
.y4a{bottom:240.918667pt;}
.y136{bottom:241.270133pt;}
.y1d2{bottom:241.272800pt;}
.y173{bottom:241.290800pt;}
.yaa{bottom:241.323467pt;}
.y1b3{bottom:242.887200pt;}
.y211{bottom:243.906933pt;}
.yca{bottom:244.379467pt;}
.y105{bottom:244.392800pt;}
.y196{bottom:244.416800pt;}
.y15c{bottom:244.889200pt;}
.y1e{bottom:245.816267pt;}
.y88{bottom:250.551200pt;}
.y49{bottom:255.582667pt;}
.y125{bottom:255.640800pt;}
.y6b{bottom:256.895067pt;}
.y1f2{bottom:258.133600pt;}
.y135{bottom:258.606133pt;}
.y1d1{bottom:258.608800pt;}
.y172{bottom:258.626800pt;}
.ye9{bottom:258.645467pt;}
.ya9{bottom:258.659467pt;}
.y1d{bottom:259.149600pt;}
.y1b2{bottom:260.204533pt;}
.y184{bottom:260.223200pt;}
.y210{bottom:261.242933pt;}
.yc9{bottom:261.715467pt;}
.y104{bottom:261.728800pt;}
.y195{bottom:261.752800pt;}
.y15b{bottom:262.225200pt;}
.y87{bottom:267.887200pt;}
.y48{bottom:270.246667pt;}
.y1c{bottom:272.482933pt;}
.y124{bottom:272.580800pt;}
.y1f1{bottom:275.469600pt;}
.y134{bottom:275.942133pt;}
.y1d0{bottom:275.944800pt;}
.y171{bottom:275.962800pt;}
.ye8{bottom:275.981467pt;}
.y1b1{bottom:277.540533pt;}
.y20f{bottom:278.578933pt;}
.yc8{bottom:279.051467pt;}
.y103{bottom:279.064800pt;}
.y194{bottom:279.088800pt;}
.y15a{bottom:279.561200pt;}
.y86{bottom:285.202133pt;}
.y47{bottom:287.582667pt;}
.y6a{bottom:288.905200pt;}
.y123{bottom:289.460800pt;}
.y1f0{bottom:292.805600pt;}
.y133{bottom:293.278133pt;}
.y1cf{bottom:293.280800pt;}
.y170{bottom:293.298800pt;}
.ye7{bottom:293.317467pt;}
.y1b0{bottom:294.876533pt;}
.ya8{bottom:294.886133pt;}
.y20e{bottom:295.914933pt;}
.yc7{bottom:296.387467pt;}
.y102{bottom:296.400800pt;}
.y193{bottom:296.424800pt;}
.y183{bottom:296.440800pt;}
.y159{bottom:296.897200pt;}
.y1b{bottom:299.149600pt;}
.y85{bottom:302.538133pt;}
.y69{bottom:303.569200pt;}
.y122{bottom:306.400800pt;}
.y1ef{bottom:310.141600pt;}
.y132{bottom:310.614133pt;}
.y1ce{bottom:310.616800pt;}
.y16f{bottom:310.634800pt;}
.ye6{bottom:310.653467pt;}
.y1af{bottom:312.212533pt;}
.ya7{bottom:312.222133pt;}
.y1a{bottom:312.482933pt;}
.y20d{bottom:313.250933pt;}
.yc6{bottom:313.723467pt;}
.y101{bottom:313.736800pt;}
.y192{bottom:313.760800pt;}
.y182{bottom:313.776800pt;}
.y158{bottom:314.233200pt;}
.y46{bottom:319.582667pt;}
.y84{bottom:319.874133pt;}
.y68{bottom:322.013200pt;}
.y121{bottom:323.340800pt;}
.y19{bottom:325.816267pt;}
.y1ee{bottom:327.477600pt;}
.y131{bottom:327.950133pt;}
.y1cd{bottom:327.952800pt;}
.y16e{bottom:327.970800pt;}
.ye5{bottom:327.989467pt;}
.yc{bottom:329.060000pt;}
.y1ae{bottom:329.548533pt;}
.y20c{bottom:330.586933pt;}
.yc5{bottom:331.059467pt;}
.y100{bottom:331.072800pt;}
.y191{bottom:331.096800pt;}
.y181{bottom:331.112800pt;}
.y157{bottom:331.569200pt;}
.y67{bottom:336.677200pt;}
.y45{bottom:336.916000pt;}
.y83{bottom:337.210133pt;}
.y18{bottom:339.149600pt;}
.y120{bottom:340.280800pt;}
.y1ed{bottom:344.813600pt;}
.y130{bottom:345.286133pt;}
.y1cc{bottom:345.288800pt;}
.y16d{bottom:345.306800pt;}
.ye4{bottom:345.322800pt;}
.y1ad{bottom:346.884533pt;}
.yb{bottom:347.732000pt;}
.y20b{bottom:347.922933pt;}
.yc4{bottom:348.395467pt;}
.yff{bottom:348.408800pt;}
.y190{bottom:348.432800pt;}
.ya6{bottom:348.448800pt;}
.y156{bottom:348.905200pt;}
.y66{bottom:351.341200pt;}
.y82{bottom:354.546133pt;}
.y11f{bottom:357.220800pt;}
.y1ec{bottom:362.149600pt;}
.y12f{bottom:362.622133pt;}
.y1cb{bottom:362.624800pt;}
.y16c{bottom:362.642800pt;}
.ye3{bottom:362.656133pt;}
.y1ac{bottom:364.220533pt;}
.y20a{bottom:365.258933pt;}
.yc3{bottom:365.731467pt;}
.yfe{bottom:365.744800pt;}
.y18f{bottom:365.768800pt;}
.ya5{bottom:365.784800pt;}
.y17{bottom:365.816267pt;}
.y155{bottom:366.241200pt;}
.ya{bottom:366.404000pt;}
.y44{bottom:368.916000pt;}
.y65{bottom:369.782133pt;}
.y81{bottom:371.882133pt;}
.y11e{bottom:374.160800pt;}
.y1eb{bottom:379.485600pt;}
.y1ca{bottom:379.960800pt;}
.y16b{bottom:379.978800pt;}
.ye2{bottom:379.992133pt;}
.y16{bottom:380.482933pt;}
.y1ab{bottom:381.556533pt;}
.y209{bottom:382.594933pt;}
.yc2{bottom:383.067467pt;}
.yfd{bottom:383.080800pt;}
.y18e{bottom:383.104800pt;}
.y180{bottom:383.107467pt;}
.ya4{bottom:383.110133pt;}
.y154{bottom:383.577200pt;}
.y9{bottom:385.076000pt;}
.y43{bottom:386.246667pt;}
.y64{bottom:387.118133pt;}
.y80{bottom:389.218133pt;}
.y11d{bottom:391.100800pt;}
.y1ea{bottom:396.821600pt;}
.y1c9{bottom:397.296800pt;}
.y16a{bottom:397.314800pt;}
.ye1{bottom:397.317467pt;}
.y12e{bottom:398.848800pt;}
.y208{bottom:399.930933pt;}
.yc1{bottom:400.403467pt;}
.yfc{bottom:400.416800pt;}
.y18d{bottom:400.440800pt;}
.y17f{bottom:400.443467pt;}
.ya3{bottom:400.446133pt;}
.y153{bottom:400.913200pt;}
.y42{bottom:403.582667pt;}
.y8{bottom:403.748000pt;}
.y63{bottom:404.454133pt;}
.y7f{bottom:406.554133pt;}
.y11c{bottom:408.040800pt;}
.y15{bottom:408.482933pt;}
.y1e9{bottom:414.157600pt;}
.y1c8{bottom:414.632800pt;}
.y169{bottom:414.650800pt;}
.ye0{bottom:414.653467pt;}
.y1aa{bottom:416.184800pt;}
.y207{bottom:417.266933pt;}
.yc0{bottom:417.739467pt;}
.yfb{bottom:417.752800pt;}
.y18c{bottom:417.776800pt;}
.y17e{bottom:417.779467pt;}
.ya2{bottom:417.782133pt;}
.y152{bottom:418.249200pt;}
.y7e{bottom:423.890133pt;}
.y11b{bottom:424.980800pt;}
.y1e8{bottom:431.493600pt;}
.y1c7{bottom:431.968800pt;}
.y168{bottom:431.986800pt;}
.ydf{bottom:431.989467pt;}
.y1a9{bottom:433.520800pt;}
.y206{bottom:434.602933pt;}
.ybf{bottom:435.075467pt;}
.yfa{bottom:435.088800pt;}
.y18b{bottom:435.112800pt;}
.y17d{bottom:435.115467pt;}
.ya1{bottom:435.118133pt;}
.y14{bottom:435.149600pt;}
.y151{bottom:435.585200pt;}
.y41{bottom:435.590667pt;}
.y62{bottom:436.456800pt;}
.y7d{bottom:441.226133pt;}
.y11a{bottom:441.907467pt;}
.y13{bottom:448.482933pt;}
.y1e7{bottom:448.829600pt;}
.y1c6{bottom:449.304800pt;}
.yde{bottom:449.322800pt;}
.y1a8{bottom:450.856800pt;}
.y61{bottom:451.120800pt;}
.y205{bottom:451.938933pt;}
.ybe{bottom:452.411467pt;}
.yf9{bottom:452.424800pt;}
.ya0{bottom:452.443467pt;}
.y18a{bottom:452.448800pt;}
.y17c{bottom:452.451467pt;}
.y40{bottom:452.918667pt;}
.y150{bottom:452.921200pt;}
.y119{bottom:458.847467pt;}
.y12{bottom:461.816267pt;}
.y60{bottom:465.787467pt;}
.y1e6{bottom:466.165600pt;}
.y1c5{bottom:466.640800pt;}
.ydd{bottom:466.650800pt;}
.y3f{bottom:467.582667pt;}
.y1a7{bottom:468.192800pt;}
.y204{bottom:469.274933pt;}
.ybd{bottom:469.747467pt;}
.yf8{bottom:469.760800pt;}
.y9f{bottom:469.779467pt;}
.y189{bottom:469.784800pt;}
.y17b{bottom:469.787467pt;}
.y14f{bottom:470.257200pt;}
.y118{bottom:475.687467pt;}
.y7c{bottom:477.452800pt;}
.y3e{bottom:482.249333pt;}
.y1e5{bottom:483.501600pt;}
.y1c4{bottom:483.976800pt;}
.ydc{bottom:483.986800pt;}
.y1a6{bottom:485.528800pt;}
.y203{bottom:486.610933pt;}
.ybc{bottom:487.083467pt;}
.yf7{bottom:487.096800pt;}
.y17a{bottom:487.112800pt;}
.y9e{bottom:487.115467pt;}
.y14e{bottom:487.593200pt;}
.y11{bottom:488.482933pt;}
.y117{bottom:492.627467pt;}
.y7b{bottom:494.788800pt;}
.y5f{bottom:497.787467pt;}
.y1e4{bottom:500.837600pt;}
.y1c3{bottom:501.312800pt;}
.ydb{bottom:501.322800pt;}
.y10{bottom:501.816267pt;}
.y1a5{bottom:502.864800pt;}
.y202{bottom:503.946933pt;}
.ybb{bottom:504.419467pt;}
.yf6{bottom:504.432800pt;}
.y179{bottom:504.448800pt;}
.y9d{bottom:504.451467pt;}
.y14d{bottom:504.891867pt;}
.y116{bottom:509.567467pt;}
.y3d{bottom:514.254667pt;}
.y7{bottom:514.291467pt;}
.y5e{bottom:515.120800pt;}
.yf{bottom:515.149600pt;}
.y1e3{bottom:518.173600pt;}
.y167{bottom:518.646133pt;}
.y1c2{bottom:518.648800pt;}
.yda{bottom:518.656133pt;}
.y1a4{bottom:520.200800pt;}
.y201{bottom:521.282933pt;}
.yba{bottom:521.755467pt;}
.y9c{bottom:521.763467pt;}
.yf5{bottom:521.768800pt;}
.y178{bottom:521.784800pt;}
.y14c{bottom:522.227867pt;}
.y115{bottom:526.507467pt;}
.y3c{bottom:531.582667pt;}
.y1e2{bottom:535.509600pt;}
.y166{bottom:535.982133pt;}
.y1c1{bottom:535.984800pt;}
.yd9{bottom:535.989467pt;}
.y1a3{bottom:537.536800pt;}
.y200{bottom:538.618933pt;}
.yb9{bottom:539.091467pt;}
.y9b{bottom:539.099467pt;}
.yf4{bottom:539.104800pt;}
.y14b{bottom:539.563867pt;}
.y6{bottom:540.955467pt;}
.ye{bottom:541.816267pt;}
.y114{bottom:543.447467pt;}
.y5d{bottom:547.120800pt;}
.y3b{bottom:548.916000pt;}
.yd8{bottom:553.318133pt;}
.y1c0{bottom:553.320800pt;}
.y1a2{bottom:554.872800pt;}
.yd{bottom:555.149600pt;}
.y1ff{bottom:555.954933pt;}
.yb8{bottom:556.427467pt;}
.y9a{bottom:556.435467pt;}
.yf3{bottom:556.440800pt;}
.y14a{bottom:556.899867pt;}
.y113{bottom:560.387467pt;}
.y7a{bottom:564.118133pt;}
.y5c{bottom:564.459467pt;}
.y5{bottom:567.619467pt;}
.yd7{bottom:570.654133pt;}
.y1bf{bottom:570.656800pt;}
.y1e1{bottom:571.736267pt;}
.y1a1{bottom:572.208800pt;}
.y1fe{bottom:573.290933pt;}
.yb7{bottom:573.763467pt;}
.y99{bottom:573.771467pt;}
.yf2{bottom:573.776800pt;}
.y149{bottom:574.235867pt;}
.y112{bottom:577.327467pt;}
.y36{bottom:577.416800pt;}
.y3a{bottom:580.916000pt;}
.y79{bottom:581.454133pt;}
.y5b{bottom:581.787467pt;}
.yd6{bottom:587.990133pt;}
.y1be{bottom:587.992800pt;}
.y35{bottom:588.084800pt;}
.y165{bottom:589.544800pt;}
.y1fd{bottom:590.626933pt;}
.yb6{bottom:591.099467pt;}
.y98{bottom:591.107467pt;}
.yf1{bottom:591.112800pt;}
.y148{bottom:591.571867pt;}
.y111{bottom:594.267467pt;}
.y4{bottom:594.283467pt;}
.y5a{bottom:596.454133pt;}
.y39{bottom:598.249333pt;}
.y34{bottom:598.752800pt;}
.y78{bottom:598.787467pt;}
.y1a0{bottom:606.880800pt;}
.y1e0{bottom:607.962933pt;}
.yb5{bottom:608.435467pt;}
.y97{bottom:608.443467pt;}
.yf0{bottom:608.448800pt;}
.y147{bottom:608.907867pt;}
.y110{bottom:611.207467pt;}
.y33{bottom:620.088800pt;}
.yd5{bottom:624.216800pt;}
.y1bd{bottom:624.219467pt;}
.y1df{bottom:625.298933pt;}
.yb4{bottom:625.771467pt;}
.y96{bottom:625.779467pt;}
.yef{bottom:625.784800pt;}
.y146{bottom:626.243867pt;}
.y10f{bottom:628.147467pt;}
.y59{bottom:628.454133pt;}
.y38{bottom:630.249333pt;}
.y32{bottom:630.756800pt;}
.y19f{bottom:641.552800pt;}
.y1de{bottom:642.634933pt;}
.yb3{bottom:643.107467pt;}
.y95{bottom:643.115467pt;}
.yee{bottom:643.120800pt;}
.y145{bottom:643.579867pt;}
.y10e{bottom:645.087467pt;}
.y58{bottom:645.784800pt;}
.y37{bottom:647.582667pt;}
.y31{bottom:652.092800pt;}
.y19e{bottom:658.888800pt;}
.y1dd{bottom:659.970933pt;}
.yb2{bottom:660.443467pt;}
.y1bc{bottom:660.446133pt;}
.y94{bottom:660.451467pt;}
.y144{bottom:660.915867pt;}
.y10d{bottom:662.027467pt;}
.y57{bottom:663.120800pt;}
.y77{bottom:668.115467pt;}
.y30{bottom:673.428800pt;}
.y19d{bottom:676.224800pt;}
.y1dc{bottom:677.306933pt;}
.yb1{bottom:677.779467pt;}
.y1bb{bottom:677.782133pt;}
.y93{bottom:677.784800pt;}
.y143{bottom:678.251867pt;}
.y10c{bottom:678.967467pt;}
.y2f{bottom:686.766133pt;}
.y76{bottom:686.787467pt;}
.y19c{bottom:693.560800pt;}
.y1db{bottom:694.642933pt;}
.y92{bottom:695.115467pt;}
.y1ba{bottom:695.118133pt;}
.y56{bottom:695.120800pt;}
.y142{bottom:695.587867pt;}
.y10b{bottom:695.907467pt;}
.y2e{bottom:700.103467pt;}
.y2b{bottom:700.112800pt;}
.y75{bottom:705.451467pt;}
.y1da{bottom:711.978933pt;}
.y55{bottom:712.451467pt;}
.y10a{bottom:712.847467pt;}
.y141{bottom:712.923867pt;}
.y2d{bottom:713.440800pt;}
.y2a{bottom:713.450133pt;}
.y2c{bottom:726.778133pt;}
.y29{bottom:726.787467pt;}
.y1d9{bottom:729.314933pt;}
.y54{bottom:729.787467pt;}
.y140{bottom:730.259867pt;}
.y91{bottom:778.141733pt;}
.he{height:23.601938pt;}
.h7{height:30.789062pt;}
.h6{height:35.187500pt;}
.h9{height:39.585938pt;}
.hc{height:48.340146pt;}
.hb{height:48.361479pt;}
.h3{height:48.382812pt;}
.h10{height:48.393479pt;}
.hf{height:48.404146pt;}
.h13{height:48.412146pt;}
.h14{height:48.414813pt;}
.h12{height:48.425479pt;}
.h18{height:48.433479pt;}
.h16{height:48.436146pt;}
.h1b{height:48.457479pt;}
.hd{height:48.467079pt;}
.h11{height:48.478813pt;}
.h19{height:48.500146pt;}
.h1a{height:48.510813pt;}
.h17{height:48.622812pt;}
.h15{height:48.782813pt;}
.ha{height:51.170658pt;}
.h5{height:52.781250pt;}
.h2{height:53.909059pt;}
.h8{height:61.578125pt;}
.h4{height:79.171875pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x1{left:-40.078667pt;}
.x0{left:0.000000pt;}
.xd{left:64.252000pt;}
.xe{left:75.590667pt;}
.xf{left:77.477733pt;}
.x1b{left:83.145867pt;}
.x12{left:90.995067pt;}
.x16{left:108.270133pt;}
.x1a{left:109.601733pt;}
.x5{left:116.161333pt;}
.x10{left:127.224400pt;}
.x6{left:129.193333pt;}
.x2{left:136.065733pt;}
.x15{left:145.724000pt;}
.x4{left:148.441333pt;}
.x3{left:175.489733pt;}
.x19{left:181.424400pt;}
.xa{left:184.281467pt;}
.x9{left:186.137467pt;}
.xb{left:200.905467pt;}
.x8{left:205.833467pt;}
.x7{left:214.705333pt;}
.x13{left:238.442400pt;}
.xc{left:239.561467pt;}
.x11{left:258.920533pt;}
.x18{left:353.376400pt;}
.x17{left:360.902133pt;}
.x1c{left:463.368533pt;}
.x14{left:470.802133pt;}
}




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