
    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_19d9b2766384e0a5071b0728.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_b8c1a6567b1937185f2d89a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_907a0925ff23959efa7d55c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_4f339a5e0ce881a4ddcfb8ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_fd31ca07e5b44c5034eb79fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_33019dfbddec1f538a6dc2e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_3dd3859d77fc3fc1539d2807.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_a521cbf45c0da67cb19fa4d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_67ebd43031aeb312e5df27ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8c2df6f3875328ae4b0e69a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.299000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-10.878000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.822000px;}
.v4{vertical-align:44.316000px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.002700px;}
.ls13{letter-spacing:0.003785px;}
.ls1a{letter-spacing:1.634700px;}
.ls1d{letter-spacing:2.991527px;}
.lsd{letter-spacing:3.799654px;}
.lsf{letter-spacing:3.805654px;}
.ls1c{letter-spacing:4.043660px;}
.ls1{letter-spacing:4.269444px;}
.ls2{letter-spacing:4.302262px;}
.ls0{letter-spacing:4.302508px;}
.ls3{letter-spacing:4.304831px;}
.ls15{letter-spacing:5.432150px;}
.ls19{letter-spacing:7.220712px;}
.ls12{letter-spacing:9.035412px;}
.ls1b{letter-spacing:9.063746px;}
.lse{letter-spacing:11.321412px;}
.ls17{letter-spacing:14.489412px;}
.ls5{letter-spacing:16.367400px;}
.ls10{letter-spacing:17.678706px;}
.ls14{letter-spacing:17.697779px;}
.ls11{letter-spacing:17.733785px;}
.lsa{letter-spacing:21.992746px;}
.ls9{letter-spacing:22.058200px;}
.lsc{letter-spacing:32.726700px;}
.ls6{letter-spacing:32.727300px;}
.ls16{letter-spacing:85.493412px;}
.lsb{letter-spacing:1940.888700px;}
.ls7{letter-spacing:2158.520700px;}
.ls8{letter-spacing:2234.906700px;}
.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;}
}
.ws28{word-spacing:-37.767304px;}
.ws3f{word-spacing:-37.180650px;}
.ws22{word-spacing:-36.261848px;}
.ws2c{word-spacing:-35.934575px;}
.ws23{word-spacing:-27.556387px;}
.ws24{word-spacing:-23.563656px;}
.ws2a{word-spacing:-22.909110px;}
.ws0{word-spacing:-21.519300px;}
.ws21{word-spacing:-21.272745px;}
.ws2e{word-spacing:-21.207290px;}
.ws25{word-spacing:-19.963653px;}
.ws35{word-spacing:-18.850925px;}
.ws27{word-spacing:-18.000015px;}
.ws2f{word-spacing:-17.738197px;}
.ws31{word-spacing:-17.541833px;}
.ws4{word-spacing:-17.215500px;}
.ws1d{word-spacing:-16.363650px;}
.ws20{word-spacing:-13.090920px;}
.wsb3{word-spacing:-11.955150px;}
.ws32{word-spacing:-3.927276px;}
.ws4d{word-spacing:-3.730912px;}
.ws5b{word-spacing:-3.338185px;}
.ws29{word-spacing:-3.272730px;}
.ws17{word-spacing:-2.880002px;}
.ws5e{word-spacing:-2.814548px;}
.wse2{word-spacing:-2.552729px;}
.ws49{word-spacing:-2.421820px;}
.wsd6{word-spacing:-2.356366px;}
.wse5{word-spacing:-2.290911px;}
.wsb9{word-spacing:-2.029093px;}
.ws41{word-spacing:-1.963638px;}
.wsc2{word-spacing:-1.570910px;}
.ws83{word-spacing:-1.505456px;}
.ws63{word-spacing:-1.452089px;}
.wsa5{word-spacing:-1.440001px;}
.wsa{word-spacing:-1.309092px;}
.ws68{word-spacing:-1.178183px;}
.ws4c{word-spacing:-1.047274px;}
.wsbb{word-spacing:-0.916364px;}
.wsc6{word-spacing:-0.850910px;}
.wsc{word-spacing:-0.720001px;}
.wsd9{word-spacing:-0.654546px;}
.ws43{word-spacing:-0.589091px;}
.ws7d{word-spacing:-0.523637px;}
.ws56{word-spacing:-0.458182px;}
.ws73{word-spacing:-0.420089px;}
.wsbc{word-spacing:-0.327273px;}
.ws5d{word-spacing:-0.261818px;}
.ws66{word-spacing:-0.196364px;}
.ws10{word-spacing:-0.130909px;}
.ws30{word-spacing:-0.065455px;}
.ws91{word-spacing:-0.062182px;}
.ws6a{word-spacing:-0.047821px;}
.ws8b{word-spacing:-0.011833px;}
.ws7b{word-spacing:-0.006266px;}
.wsb6{word-spacing:-0.004471px;}
.ws71{word-spacing:-0.002348px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.057372px;}
.ws89{word-spacing:0.196364px;}
.wsb{word-spacing:0.261818px;}
.ws9{word-spacing:0.392728px;}
.ws70{word-spacing:0.458182px;}
.wsc5{word-spacing:0.523637px;}
.wsd4{word-spacing:0.589091px;}
.wsba{word-spacing:0.654546px;}
.wsc0{word-spacing:0.720001px;}
.wsb5{word-spacing:0.837750px;}
.ws36{word-spacing:0.850910px;}
.wse0{word-spacing:0.904099px;}
.ws7f{word-spacing:0.916364px;}
.wsc3{word-spacing:0.981819px;}
.ws1e{word-spacing:1.112728px;}
.ws8a{word-spacing:1.178183px;}
.ws34{word-spacing:1.243637px;}
.wsaa{word-spacing:1.307769px;}
.ws37{word-spacing:1.309092px;}
.wsa7{word-spacing:1.325250px;}
.ws12{word-spacing:1.374547px;}
.ws99{word-spacing:1.440001px;}
.ws4a{word-spacing:1.505456px;}
.ws77{word-spacing:1.570910px;}
.wsd8{word-spacing:1.701820px;}
.ws19{word-spacing:1.767274px;}
.ws95{word-spacing:1.832729px;}
.ws1a{word-spacing:1.898183px;}
.ws15{word-spacing:1.963638px;}
.wsd1{word-spacing:2.029093px;}
.ws94{word-spacing:2.094547px;}
.wsac{word-spacing:2.160002px;}
.ws9f{word-spacing:2.225456px;}
.ws9d{word-spacing:2.290911px;}
.ws46{word-spacing:2.356366px;}
.ws7a{word-spacing:2.421820px;}
.wsdd{word-spacing:2.487275px;}
.ws98{word-spacing:2.552729px;}
.ws45{word-spacing:2.618184px;}
.ws18{word-spacing:2.683639px;}
.ws93{word-spacing:2.749093px;}
.ws52{word-spacing:2.814548px;}
.ws11{word-spacing:3.010912px;}
.wsc1{word-spacing:3.141821px;}
.ws1c{word-spacing:3.207275px;}
.ws7c{word-spacing:3.272730px;}
.ws6b{word-spacing:3.338185px;}
.ws13{word-spacing:3.403639px;}
.ws69{word-spacing:3.469094px;}
.wsd{word-spacing:3.600003px;}
.wse{word-spacing:3.665458px;}
.wsf{word-spacing:3.730912px;}
.wsd7{word-spacing:3.796367px;}
.ws6d{word-spacing:3.861821px;}
.ws5f{word-spacing:4.058185px;}
.ws92{word-spacing:4.189094px;}
.ws6{word-spacing:4.320004px;}
.ws61{word-spacing:4.385458px;}
.wsd3{word-spacing:4.581822px;}
.ws9a{word-spacing:4.647277px;}
.ws44{word-spacing:4.712731px;}
.ws78{word-spacing:4.778186px;}
.ws50{word-spacing:4.909095px;}
.ws47{word-spacing:5.040004px;}
.wsdb{word-spacing:5.105459px;}
.ws8d{word-spacing:5.170913px;}
.ws65{word-spacing:5.236368px;}
.ws62{word-spacing:5.301823px;}
.ws4b{word-spacing:5.367277px;}
.ws5a{word-spacing:5.432732px;}
.ws53{word-spacing:5.563641px;}
.ws4f{word-spacing:5.629096px;}
.ws54{word-spacing:5.760005px;}
.ws9b{word-spacing:5.890914px;}
.ws81{word-spacing:6.087278px;}
.ws1b{word-spacing:6.152732px;}
.ws4e{word-spacing:6.218187px;}
.wsc4{word-spacing:6.349096px;}
.ws55{word-spacing:6.414551px;}
.ws60{word-spacing:6.480005px;}
.ws8{word-spacing:6.545460px;}
.ws58{word-spacing:6.610915px;}
.ws5c{word-spacing:6.676369px;}
.ws14{word-spacing:6.938188px;}
.wsa3{word-spacing:7.003642px;}
.wsa1{word-spacing:7.007371px;}
.wse6{word-spacing:7.194421px;}
.ws97{word-spacing:7.330915px;}
.wsbf{word-spacing:7.461824px;}
.ws16{word-spacing:7.592734px;}
.ws57{word-spacing:7.658188px;}
.ws42{word-spacing:7.723643px;}
.ws90{word-spacing:7.789097px;}
.wsb8{word-spacing:7.920007px;}
.ws5{word-spacing:8.116370px;}
.ws87{word-spacing:8.181825px;}
.ws59{word-spacing:8.378189px;}
.wsd2{word-spacing:8.509098px;}
.ws1{word-spacing:8.579592px;}
.wsbd{word-spacing:8.705462px;}
.ws8e{word-spacing:9.032735px;}
.ws7{word-spacing:9.621826px;}
.wsb7{word-spacing:9.687281px;}
.wse3{word-spacing:9.949099px;}
.wsd5{word-spacing:11.454555px;}
.ws72{word-spacing:12.027107px;}
.ws6f{word-spacing:14.319107px;}
.ws6e{word-spacing:14.321239px;}
.ws84{word-spacing:14.741006px;}
.ws82{word-spacing:14.765764px;}
.ws33{word-spacing:14.792740px;}
.ws39{word-spacing:14.858194px;}
.ws74{word-spacing:15.905468px;}
.ws67{word-spacing:16.101832px;}
.ws88{word-spacing:16.291832px;}
.wsa0{word-spacing:16.294148px;}
.wsdf{word-spacing:16.298195px;}
.wsa4{word-spacing:16.331885px;}
.ws26{word-spacing:16.363650px;}
.ws85{word-spacing:16.690923px;}
.ws8f{word-spacing:16.821832px;}
.wse1{word-spacing:17.214560px;}
.ws7e{word-spacing:17.227487px;}
.ws80{word-spacing:17.233487px;}
.wsa9{word-spacing:17.607287px;}
.wsa8{word-spacing:17.629445px;}
.ws96{word-spacing:17.800223px;}
.wsb1{word-spacing:17.801885px;}
.ws8c{word-spacing:18.059668px;}
.wsb2{word-spacing:18.297844px;}
.wsb4{word-spacing:18.627581px;}
.wsde{word-spacing:18.785470px;}
.ws48{word-spacing:19.047289px;}
.wsa6{word-spacing:19.127885px;}
.wsab{word-spacing:19.129960px;}
.ws6c{word-spacing:19.301239px;}
.ws9c{word-spacing:19.597988px;}
.wsad{word-spacing:19.621988px;}
.ws9e{word-spacing:19.729988px;}
.wsaf{word-spacing:19.801988px;}
.wsae{word-spacing:19.943885px;}
.wsb0{word-spacing:20.135885px;}
.ws75{word-spacing:21.050645px;}
.ws79{word-spacing:21.084430px;}
.wsdc{word-spacing:21.403654px;}
.ws64{word-spacing:21.532441px;}
.wsa2{word-spacing:24.475988px;}
.wse4{word-spacing:26.247295px;}
.ws76{word-spacing:37.246778px;}
.ws2d{word-spacing:47.520040px;}
.ws1f{word-spacing:49.090950px;}
.ws51{word-spacing:53.798400px;}
.ws40{word-spacing:64.557900px;}
.ws3e{word-spacing:113.563731px;}
.ws3d{word-spacing:120.763737px;}
.ws3c{word-spacing:131.694655px;}
.ws3b{word-spacing:179.018331px;}
.wsc9{word-spacing:186.203247px;}
.wsca{word-spacing:191.638711px;}
.wsc8{word-spacing:192.567433px;}
.wscd{word-spacing:202.571247px;}
.wsce{word-spacing:208.006711px;}
.wscc{word-spacing:208.931083px;}
.wsc7{word-spacing:213.462929px;}
.wscf{word-spacing:225.294733px;}
.wscb{word-spacing:229.830929px;}
.wsd0{word-spacing:725.498786px;}
.wsbe{word-spacing:1565.121750px;}
.ws86{word-spacing:1775.031750px;}
.ws3a{word-spacing:1865.025736px;}
.ws38{word-spacing:1886.362292px;}
.ws2b{word-spacing:2142.222259px;}
.wsda{word-spacing:2167.557750px;}
._1d{margin-left:-37.309122px;}
._13{margin-left:-34.363665px;}
._12{margin-left:-32.727300px;}
._16{margin-left:-16.363650px;}
._1e{margin-left:-13.156375px;}
._25{margin-left:-10.538191px;}
._4{margin-left:-7.436130px;}
._4a{margin-left:-6.369713px;}
._10{margin-left:-5.323343px;}
._d{margin-left:-4.276070px;}
._0{margin-left:-2.667169px;}
._5{margin-left:-1.549390px;}
._2{width:1.101792px;}
._3{width:3.333534px;}
._1{width:4.682616px;}
._2c{width:7.658188px;}
._19{width:11.258191px;}
._3f{width:12.324843px;}
._3c{width:13.794451px;}
._3b{width:15.316376px;}
._20{width:16.363650px;}
._3a{width:17.934560px;}
._f{width:19.309107px;}
._a{width:21.229703px;}
._6{width:22.236672px;}
._38{width:23.350823px;}
._2f{width:24.414566px;}
._e{width:25.592749px;}
._c{width:27.032750px;}
._8{width:28.538206px;}
._2b{width:29.607000px;}
._9{width:31.090935px;}
._2e{width:32.470533px;}
._7{width:33.556689px;}
._2a{width:34.974277px;}
._15{width:36.000030px;}
._40{width:37.636395px;}
._34{width:39.076396px;}
._b{width:41.170943px;}
._35{width:43.330945px;}
._36{width:44.705492px;}
._1a{width:45.818220px;}
._26{width:47.345197px;}
._28{width:51.403382px;}
._21{width:54.589136px;}
._30{width:60.529036px;}
._29{width:62.181870px;}
._23{width:63.883690px;}
._17{width:65.454600px;}
._24{width:68.727330px;}
._32{width:71.738242px;}
._1f{width:78.545520px;}
._33{width:86.077200px;}
._1b{width:96.070883px;}
._14{width:97.510885px;}
._31{width:126.261923px;}
._22{width:129.338290px;}
._46{width:320.203903px;}
._47{width:336.567553px;}
._48{width:352.931203px;}
._45{width:538.778333px;}
._41{width:1198.578812px;}
._44{width:1274.964330px;}
._27{width:1443.317864px;}
._42{width:1511.189981px;}
._3d{width:1576.819424px;}
._43{width:1623.968257px;}
._1c{width:1674.983214px;}
._37{width:1762.255006px;}
._49{width:1776.652318px;}
._18{width:1801.855750px;}
._39{width:1896.698755px;}
._3e{width:2053.001639px;}
._2d{width:2074.779911px;}
._11{width:2109.056600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs7{font-size:62.181600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:68.862000px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs5{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y1a{bottom:84.292500px;}
.y42{bottom:129.124500px;}
.y7{bottom:145.632000px;}
.y41{bottom:149.853000px;}
.y71{bottom:150.018000px;}
.y10c{bottom:153.154500px;}
.y98{bottom:153.777000px;}
.y101{bottom:156.376500px;}
.yb9{bottom:167.767500px;}
.y70{bottom:170.343000px;}
.y40{bottom:170.581500px;}
.y9{bottom:171.709500px;}
.y8{bottom:172.203000px;}
.y10b{bottom:173.478000px;}
.y97{bottom:178.429500px;}
.y100{bottom:181.029000px;}
.y156{bottom:186.490500px;}
.y16b{bottom:189.475500px;}
.y13b{bottom:191.214000px;}
.y6f{bottom:191.236500px;}
.y3f{bottom:191.310000px;}
.y196{bottom:192.472500px;}
.y1a5{bottom:192.538500px;}
.y1b8{bottom:196.068000px;}
.y155{bottom:198.583500px;}
.y96{bottom:203.082000px;}
.y154{bottom:204.780000px;}
.yff{bottom:205.681500px;}
.yb8{bottom:206.412000px;}
.y3e{bottom:212.040000px;}
.y6e{bottom:212.131500px;}
.y195{bottom:212.797500px;}
.y1a4{bottom:212.862000px;}
.y13a{bottom:215.866500px;}
.y1b7{bottom:216.391500px;}
.y1b1{bottom:220.557000px;}
.y6{bottom:223.419000px;}
.ya9{bottom:224.670000px;}
.y95{bottom:227.734500px;}
.yfe{bottom:230.335500px;}
.y6d{bottom:232.456500px;}
.y3d{bottom:232.768500px;}
.y1ab{bottom:237.306000px;}
.y180{bottom:237.309000px;}
.y187{bottom:237.477000px;}
.yc6{bottom:240.045000px;}
.y139{bottom:240.520500px;}
.y1b0{bottom:240.880500px;}
.yb7{bottom:245.056500px;}
.y179{bottom:245.337000px;}
.ya8{bottom:249.322500px;}
.y153{bottom:251.929500px;}
.y123{bottom:252.387000px;}
.y6c{bottom:253.350000px;}
.y3c{bottom:253.497000px;}
.yfd{bottom:254.988000px;}
.y1be{bottom:255.787500px;}
.y1aa{bottom:257.631000px;}
.y17f{bottom:257.634000px;}
.y186{bottom:257.800500px;}
.y94{bottom:260.061000px;}
.y16a{bottom:262.237500px;}
.y1e5{bottom:264.207000px;}
.y178{bottom:265.660500px;}
.y5{bottom:265.897500px;}
.yd4{bottom:273.289500px;}
.ya7{bottom:273.975000px;}
.y3b{bottom:274.225500px;}
.y6b{bottom:274.245000px;}
.y1bd{bottom:276.111000px;}
.y122{bottom:277.041000px;}
.yfc{bottom:279.640500px;}
.y152{bottom:280.759500px;}
.yb6{bottom:283.699500px;}
.y93{bottom:284.713500px;}
.y169{bottom:286.890000px;}
.y6a{bottom:294.570000px;}
.y3a{bottom:294.955500px;}
.ya6{bottom:298.627500px;}
.y138{bottom:302.610000px;}
.y151{bottom:305.412000px;}
.yfb{bottom:306.892500px;}
.y92{bottom:309.366000px;}
.y168{bottom:311.542500px;}
.y1f6{bottom:315.451500px;}
.y69{bottom:315.463500px;}
.y39{bottom:315.684000px;}
.yb5{bottom:322.344000px;}
.ya5{bottom:323.280000px;}
.y150{bottom:330.066000px;}
.yfa{bottom:331.545000px;}
.y91{bottom:334.020000px;}
.yea{bottom:334.407000px;}
.yc5{bottom:335.563500px;}
.y167{bottom:336.195000px;}
.y68{bottom:336.358500px;}
.y38{bottom:336.412500px;}
.y137{bottom:339.051000px;}
.y1f5{bottom:340.104000px;}
.y1e4{bottom:340.833000px;}
.y1e1{bottom:352.189500px;}
.y14f{bottom:354.718500px;}
.y67{bottom:356.683500px;}
.y37{bottom:357.141000px;}
.ye9{bottom:359.059500px;}
.y166{bottom:360.847500px;}
.yb4{bottom:360.988500px;}
.y1e3{bottom:361.156500px;}
.y1f4{bottom:364.756500px;}
.y121{bottom:371.871000px;}
.yf9{bottom:372.406500px;}
.y66{bottom:377.577000px;}
.y36{bottom:377.871000px;}
.y14e{bottom:379.371000px;}
.y1e2{bottom:381.480000px;}
.ye8{bottom:383.712000px;}
.y165{bottom:385.500000px;}
.yb3{bottom:385.641000px;}
.y1f3{bottom:389.409000px;}
.y90{bottom:390.844500px;}
.y207{bottom:391.365000px;}
.y120{bottom:396.523500px;}
.y65{bottom:398.472000px;}
.y136{bottom:400.144500px;}
.ya4{bottom:401.841000px;}
.y16f{bottom:407.637000px;}
.ye7{bottom:408.364500px;}
.y1e0{bottom:410.019000px;}
.y164{bottom:410.152500px;}
.y1f2{bottom:414.063000px;}
.y35{bottom:415.233000px;}
.y206{bottom:416.017500px;}
.y64{bottom:418.797000px;}
.y11f{bottom:421.176000px;}
.y1dd{bottom:421.377000px;}
.yb2{bottom:424.284000px;}
.y135{bottom:424.797000px;}
.y1df{bottom:430.344000px;}
.y16e{bottom:432.289500px;}
.y34{bottom:435.961500px;}
.yf8{bottom:437.127000px;}
.y1f1{bottom:438.715500px;}
.y63{bottom:439.690500px;}
.y205{bottom:440.670000px;}
.y11e{bottom:445.828500px;}
.y163{bottom:445.851000px;}
.y134{bottom:449.449500px;}
.y1de{bottom:450.667500px;}
.ye6{bottom:450.951000px;}
.y33{bottom:456.690000px;}
.y14d{bottom:458.836500px;}
.y62{bottom:460.585500px;}
.yb1{bottom:462.928500px;}
.y1f0{bottom:463.368000px;}
.yf7{bottom:464.380500px;}
.y204{bottom:465.322500px;}
.y11d{bottom:470.481000px;}
.ye5{bottom:475.603500px;}
.y32{bottom:477.420000px;}
.yd3{bottom:477.895500px;}
.y1dc{bottom:479.206500px;}
.y61{bottom:480.910500px;}
.y14c{bottom:483.489000px;}
.y133{bottom:486.888000px;}
.ya3{bottom:487.017000px;}
.y1ef{bottom:488.020500px;}
.yf6{bottom:489.033000px;}
.y203{bottom:489.975000px;}
.y1d9{bottom:490.564500px;}
.y8f{bottom:494.730000px;}
.y31{bottom:498.148500px;}
.y1db{bottom:499.530000px;}
.ye4{bottom:500.256000px;}
.yb0{bottom:501.573000px;}
.y60{bottom:501.804000px;}
.yd2{bottom:502.548000px;}
.y16d{bottom:502.645500px;}
.y19e{bottom:505.780500px;}
.y10a{bottom:507.666000px;}
.y14b{bottom:508.141500px;}
.y18f{bottom:509.328000px;}
.y132{bottom:511.540500px;}
.y1ee{bottom:512.673000px;}
.y202{bottom:514.627500px;}
.yf5{bottom:516.285000px;}
.y162{bottom:518.613000px;}
.y30{bottom:518.877000px;}
.y8e{bottom:519.382500px;}
.y11c{bottom:519.787500px;}
.y1da{bottom:519.855000px;}
.y5f{bottom:522.699000px;}
.ye3{bottom:524.908500px;}
.yd1{bottom:527.200500px;}
.y19d{bottom:530.433000px;}
.y109{bottom:532.318500px;}
.y14a{bottom:532.794000px;}
.y18e{bottom:533.980500px;}
.y214{bottom:535.951500px;}
.y131{bottom:536.193000px;}
.y1ed{bottom:537.325500px;}
.y201{bottom:539.280000px;}
.y2f{bottom:539.605500px;}
.yf4{bottom:540.939000px;}
.y5e{bottom:543.022500px;}
.y161{bottom:543.265500px;}
.y8d{bottom:544.035000px;}
.y1a3{bottom:544.143000px;}
.y11b{bottom:544.440000px;}
.y194{bottom:544.531500px;}
.y1d8{bottom:548.394000px;}
.ye2{bottom:549.561000px;}
.y1b6{bottom:551.958000px;}
.y19c{bottom:555.085500px;}
.yd0{bottom:556.095000px;}
.y18d{bottom:558.633000px;}
.y1d5{bottom:559.752000px;}
.y108{bottom:559.846500px;}
.y2e{bottom:560.335500px;}
.y130{bottom:560.845500px;}
.yaf{bottom:564.916500px;}
.yf3{bottom:565.591500px;}
.y160{bottom:567.918000px;}
.y8c{bottom:568.689000px;}
.y1d7{bottom:568.717500px;}
.y1a2{bottom:568.795500px;}
.y11a{bottom:569.092500px;}
.y193{bottom:569.184000px;}
.y213{bottom:569.725500px;}
.ye1{bottom:574.213500px;}
.y1b5{bottom:576.610500px;}
.y5d{bottom:578.862000px;}
.ycf{bottom:580.749000px;}
.y200{bottom:580.869000px;}
.y2d{bottom:581.064000px;}
.y107{bottom:584.499000px;}
.y12f{bottom:585.498000px;}
.y149{bottom:587.607000px;}
.yc4{bottom:587.613000px;}
.y1d6{bottom:589.041000px;}
.y19b{bottom:591.621000px;}
.y15f{bottom:592.570500px;}
.yf2{bottom:592.843500px;}
.y8b{bottom:593.341500px;}
.y1a1{bottom:593.448000px;}
.y192{bottom:593.836500px;}
.y1af{bottom:596.941500px;}
.y18c{bottom:598.690500px;}
.ye0{bottom:598.866000px;}
.y5c{bottom:599.185500px;}
.y1ec{bottom:600.399000px;}
.y1b4{bottom:601.264500px;}
.y177{bottom:601.650000px;}
.y2c{bottom:601.792500px;}
.y212{bottom:603.498000px;}
.yce{bottom:605.401500px;}
.y17e{bottom:609.550500px;}
.y185{bottom:609.664500px;}
.y1a9{bottom:610.003500px;}
.y4{bottom:611.754000px;}
.y148{bottom:612.261000px;}
.yc3{bottom:612.265500px;}
.y19{bottom:616.650000px;}
.y15e{bottom:617.223000px;}
.y1d4{bottom:617.581500px;}
.y8a{bottom:617.994000px;}
.y5b{bottom:620.080500px;}
.y1eb{bottom:620.722500px;}
.y1ae{bottom:621.594000px;}
.y1bc{bottom:621.855000px;}
.y2b{bottom:622.521000px;}
.y12e{bottom:622.936500px;}
.ydf{bottom:623.518500px;}
.y211{bottom:623.823000px;}
.y106{bottom:625.903500px;}
.y176{bottom:626.302500px;}
.y1d1{bottom:628.938000px;}
.y1a0{bottom:629.485500px;}
.y191{bottom:629.808000px;}
.ycd{bottom:630.054000px;}
.yf1{bottom:633.703500px;}
.y17d{bottom:634.203000px;}
.y184{bottom:634.317000px;}
.y1a8{bottom:634.656000px;}
.y147{bottom:636.913500px;}
.yc2{bottom:636.918000px;}
.y18{bottom:636.973500px;}
.y1d3{bottom:637.905000px;}
.y1e{bottom:638.316000px;}
.y1ff{bottom:639.271500px;}
.y1b3{bottom:640.804500px;}
.y5a{bottom:640.975500px;}
.y15d{bottom:641.877000px;}
.y89{bottom:642.646500px;}
.y19a{bottom:643.434000px;}
.y119{bottom:644.788500px;}
.y1ad{bottom:646.246500px;}
.y1bb{bottom:646.507500px;}
.y12d{bottom:647.589000px;}
.yde{bottom:648.172500px;}
.y175{bottom:650.955000px;}
.ycc{bottom:654.706500px;}
.y17{bottom:657.297000px;}
.y210{bottom:657.595500px;}
.y1d2{bottom:658.228500px;}
.y17c{bottom:658.857000px;}
.y183{bottom:658.969500px;}
.y1a7{bottom:659.308500px;}
.y2a{bottom:659.884500px;}
.y18b{bottom:661.017000px;}
.y146{bottom:661.566000px;}
.yc1{bottom:661.572000px;}
.y59{bottom:661.870500px;}
.y1fe{bottom:663.924000px;}
.y15c{bottom:666.529500px;}
.y199{bottom:668.086500px;}
.y118{bottom:669.441000px;}
.y1ba{bottom:671.160000px;}
.y12c{bottom:672.241500px;}
.ya2{bottom:673.378500px;}
.y88{bottom:674.973000px;}
.y16{bottom:677.620500px;}
.y20f{bottom:677.919000px;}
.y29{bottom:680.613000px;}
.yf0{bottom:681.180000px;}
.y58{bottom:682.765500px;}
.ycb{bottom:683.601000px;}
.y1ac{bottom:685.624500px;}
.y18a{bottom:685.669500px;}
.y145{bottom:686.218500px;}
.y1d0{bottom:686.769000px;}
.y1fd{bottom:688.576500px;}
.y3{bottom:689.542500px;}
.y174{bottom:690.460500px;}
.ydd{bottom:690.757500px;}
.y15b{bottom:691.182000px;}
.y198{bottom:692.739000px;}
.yae{bottom:693.636000px;}
.y117{bottom:694.093500px;}
.y12b{bottom:696.894000px;}
.y15{bottom:697.944000px;}
.ya1{bottom:698.031000px;}
.y1cd{bottom:698.125500px;}
.y20e{bottom:698.244000px;}
.yc0{bottom:698.533500px;}
.y87{bottom:699.625500px;}
.y28{bottom:701.341500px;}
.y57{bottom:703.089000px;}
.y1cf{bottom:707.092500px;}
.yca{bottom:708.253500px;}
.y144{bottom:710.871000px;}
.y1fc{bottom:713.229000px;}
.y17b{bottom:714.865500px;}
.y182{bottom:715.146000px;}
.y1a6{bottom:715.315500px;}
.ydc{bottom:715.410000px;}
.y15a{bottom:715.834500px;}
.y14{bottom:718.269000px;}
.yad{bottom:718.288500px;}
.y116{bottom:718.746000px;}
.y1b9{bottom:721.041000px;}
.y12a{bottom:721.546500px;}
.y27{bottom:722.070000px;}
.y19f{bottom:722.110500px;}
.y190{bottom:722.176500px;}
.y1d{bottom:722.419500px;}
.ya0{bottom:722.683500px;}
.y56{bottom:723.984000px;}
.y86{bottom:724.278000px;}
.y1ce{bottom:727.416000px;}
.y189{bottom:731.619000px;}
.y20d{bottom:732.016500px;}
.yc9{bottom:732.907500px;}
.y105{bottom:733.546500px;}
.y197{bottom:735.166500px;}
.y143{bottom:735.523500px;}
.y173{bottom:736.581000px;}
.y1fb{bottom:737.881500px;}
.y13{bottom:738.592500px;}
.ydb{bottom:740.062500px;}
.y26{bottom:742.800000px;}
.yac{bottom:742.942500px;}
.y2{bottom:743.340000px;}
.y9f{bottom:747.336000px;}
.y1b2{bottom:747.421500px;}
.y115{bottom:748.918500px;}
.y159{bottom:751.533000px;}
.ybf{bottom:751.617000px;}
.y20c{bottom:752.340000px;}
.yef{bottom:754.993500px;}
.y1cc{bottom:755.955000px;}
.y129{bottom:757.987500px;}
.y12{bottom:758.916000px;}
.y55{bottom:759.822000px;}
.y142{bottom:760.176000px;}
.y1fa{bottom:762.534000px;}
.y25{bottom:763.528500px;}
.yda{bottom:764.715000px;}
.y1c9{bottom:767.313000px;}
.y20b{bottom:772.665000px;}
.y114{bottom:773.571000px;}
.y7b{bottom:775.653000px;}
.y1cb{bottom:776.278500px;}
.yab{bottom:778.909500px;}
.y11{bottom:779.239500px;}
.yee{bottom:779.646000px;}
.y54{bottom:780.717000px;}
.y85{bottom:781.102500px;}
.yc8{bottom:782.919000px;}
.y24{bottom:784.257000px;}
.y158{bottom:787.230000px;}
.yd9{bottom:789.367500px;}
.ybe{bottom:792.265500px;}
.y20a{bottom:792.988500px;}
.y7a{bottom:795.976500px;}
.y1ca{bottom:796.603500px;}
.y113{bottom:798.223500px;}
.y10{bottom:799.563000px;}
.y1c{bottom:800.082000px;}
.y53{bottom:801.612000px;}
.y82{bottom:803.721000px;}
.y1f9{bottom:804.123000px;}
.yed{bottom:804.298500px;}
.y17a{bottom:805.681500px;}
.y181{bottom:806.128500px;}
.y172{bottom:806.347500px;}
.y188{bottom:806.367000px;}
.yd8{bottom:814.020000px;}
.y141{bottom:814.989000px;}
.y79{bottom:816.301500px;}
.yf{bottom:819.888000px;}
.y128{bottom:820.395000px;}
.y23{bottom:821.619000px;}
.y52{bottom:822.507000px;}
.y81{bottom:824.044500px;}
.y1c8{bottom:825.142500px;}
.y209{bottom:826.761000px;}
.y16c{bottom:831.213000px;}
.ybd{bottom:832.914000px;}
.y1c5{bottom:836.500500px;}
.y78{bottom:836.625000px;}
.yd7{bottom:838.674000px;}
.ye{bottom:840.211500px;}
.y22{bottom:842.349000px;}
.y51{bottom:843.402000px;}
.y80{bottom:844.368000px;}
.y1c7{bottom:845.466000px;}
.y208{bottom:847.086000px;}
.yaa{bottom:849.535500px;}
.y112{bottom:850.768500px;}
.y9e{bottom:853.353000px;}
.y157{bottom:855.657000px;}
.y77{bottom:856.948500px;}
.y140{bottom:858.982500px;}
.yd{bottom:860.535000px;}
.yc7{bottom:861.759000px;}
.y21{bottom:863.077500px;}
.y50{bottom:864.297000px;}
.y7f{bottom:864.691500px;}
.y4d{bottom:864.868500px;}
.y1c6{bottom:865.789500px;}
.y76{bottom:877.272000px;}
.yc{bottom:880.858500px;}
.y84{bottom:881.181000px;}
.y20{bottom:883.806000px;}
.y7e{bottom:885.015000px;}
.y4f{bottom:885.192000px;}
.y7c{bottom:886.239000px;}
.yec{bottom:891.327000px;}
.y171{bottom:892.693500px;}
.y1c4{bottom:894.330000px;}
.y1f8{bottom:896.527500px;}
.ybc{bottom:897.261000px;}
.y75{bottom:897.595500px;}
.yd6{bottom:900.396000px;}
.yb{bottom:901.182000px;}
.y4c{bottom:901.555500px;}
.y7d{bottom:905.340000px;}
.y74{bottom:917.920500px;}
.y4b{bottom:921.880500px;}
.y1ea{bottom:928.264500px;}
.y13f{bottom:932.329500px;}
.y1c3{bottom:935.485500px;}
.y73{bottom:938.244000px;}
.y111{bottom:941.881500px;}
.y4a{bottom:942.204000px;}
.y1e9{bottom:952.918500px;}
.y13e{bottom:956.982000px;}
.y72{bottom:958.567500px;}
.y9d{bottom:959.209500px;}
.y127{bottom:962.470500px;}
.y110{bottom:966.534000px;}
.y1c2{bottom:971.968500px;}
.y83{bottom:973.123500px;}
.y1e8{bottom:977.571000px;}
.yeb{bottom:978.196500px;}
.y170{bottom:978.879000px;}
.y49{bottom:978.891000px;}
.y1f7{bottom:980.796000px;}
.y4e{bottom:980.806500px;}
.y1f{bottom:980.944500px;}
.ya{bottom:981.282000px;}
.y9c{bottom:985.287000px;}
.y104{bottom:986.754000px;}
.y126{bottom:987.123000px;}
.y1c1{bottom:996.621000px;}
.y10f{bottom:996.705000px;}
.y13d{bottom:996.715500px;}
.y48{bottom:999.214500px;}
.y1e7{bottom:1002.223500px;}
.y9b{bottom:1009.939500px;}
.y103{bottom:1011.408000px;}
.ybb{bottom:1019.536500px;}
.y47{bottom:1019.538000px;}
.y1c0{bottom:1021.273500px;}
.y10e{bottom:1021.357500px;}
.y13c{bottom:1021.368000px;}
.y125{bottom:1022.821500px;}
.y1e6{bottom:1026.876000px;}
.y9a{bottom:1034.592000px;}
.y46{bottom:1039.863000px;}
.y10d{bottom:1051.528500px;}
.y102{bottom:1052.812500px;}
.y1bf{bottom:1057.746000px;}
.y124{bottom:1058.520000px;}
.y99{bottom:1059.244500px;}
.yba{bottom:1060.185000px;}
.y45{bottom:1060.186500px;}
.yd5{bottom:1076.181000px;}
.y44{bottom:1080.510000px;}
.y43{bottom:1100.833500px;}
.y1{bottom:1151.227500px;}
.y1b{bottom:1160.730000px;}
.h9{height:39.734042px;}
.hb{height:42.560334px;}
.h6{height:46.669130px;}
.h8{height:51.144346px;}
.h5{height:58.254594px;}
.h2{height:61.373044px;}
.h4{height:63.840768px;}
.h7{height:88.394175px;}
.ha{height:102.570594px;}
.h3{height:106.039214px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:106.299000px;}
.x39{left:115.266000px;}
.x38{left:119.814000px;}
.x14{left:130.845000px;}
.x2c{left:134.737500px;}
.x28{left:142.224000px;}
.x37{left:143.860500px;}
.x1a{left:147.208500px;}
.xa{left:148.819500px;}
.x17{left:157.785000px;}
.x30{left:161.499000px;}
.x2a{left:165.591000px;}
.x15{left:168.481500px;}
.x2f{left:173.166000px;}
.xb{left:174.223500px;}
.x3a{left:176.080500px;}
.x1{left:179.134500px;}
.x2{left:186.541500px;}
.x24{left:189.727500px;}
.x2e{left:193.809000px;}
.x32{left:204.019500px;}
.x2d{left:208.110000px;}
.x29{left:209.862000px;}
.x13{left:211.000500px;}
.x5{left:216.114000px;}
.x20{left:223.437000px;}
.x34{left:232.206000px;}
.x31{left:236.329500px;}
.x2b{left:240.420000px;}
.x1d{left:276.102000px;}
.x4{left:280.726500px;}
.x22{left:283.014000px;}
.x18{left:286.533000px;}
.x33{left:293.103000px;}
.x3{left:294.382500px;}
.x21{left:298.054500px;}
.x10{left:301.716000px;}
.x19{left:303.649500px;}
.x6{left:312.519000px;}
.x23{left:314.130000px;}
.x1e{left:325.624500px;}
.x1f{left:332.881500px;}
.x36{left:334.452000px;}
.x35{left:339.910500px;}
.x1b{left:344.352000px;}
.x9{left:348.378000px;}
.x8{left:352.927500px;}
.x1c{left:362.917500px;}
.x25{left:392.572500px;}
.x7{left:402.270000px;}
.x26{left:442.504500px;}
.x16{left:456.802500px;}
.x12{left:459.076500px;}
.xe{left:460.893000px;}
.xf{left:463.626000px;}
.xc{left:465.442500px;}
.x27{left:486.238500px;}
.x11{left:697.515000px;}
@media print{
.v3{vertical-align:-9.669333pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.730667pt;}
.v4{vertical-align:39.392000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.002400pt;}
.ls13{letter-spacing:0.003364pt;}
.ls1a{letter-spacing:1.453067pt;}
.ls1d{letter-spacing:2.659135pt;}
.lsd{letter-spacing:3.377470pt;}
.lsf{letter-spacing:3.382803pt;}
.ls1c{letter-spacing:3.594364pt;}
.ls1{letter-spacing:3.795061pt;}
.ls2{letter-spacing:3.824233pt;}
.ls0{letter-spacing:3.824451pt;}
.ls3{letter-spacing:3.826516pt;}
.ls15{letter-spacing:4.828578pt;}
.ls19{letter-spacing:6.418411pt;}
.ls12{letter-spacing:8.031477pt;}
.ls1b{letter-spacing:8.056663pt;}
.lse{letter-spacing:10.063477pt;}
.ls17{letter-spacing:12.879477pt;}
.ls5{letter-spacing:14.548800pt;}
.ls10{letter-spacing:15.714405pt;}
.ls14{letter-spacing:15.731359pt;}
.ls11{letter-spacing:15.763364pt;}
.lsa{letter-spacing:19.549107pt;}
.ls9{letter-spacing:19.607289pt;}
.lsc{letter-spacing:29.090400pt;}
.ls6{letter-spacing:29.090933pt;}
.ls16{letter-spacing:75.994144pt;}
.lsb{letter-spacing:1725.234400pt;}
.ls7{letter-spacing:1918.685067pt;}
.ls8{letter-spacing:1986.583733pt;}
.ws28{word-spacing:-33.570937pt;}
.ws3f{word-spacing:-33.049467pt;}
.ws22{word-spacing:-32.232754pt;}
.ws2c{word-spacing:-31.941845pt;}
.ws23{word-spacing:-24.494566pt;}
.ws24{word-spacing:-20.945472pt;}
.ws2a{word-spacing:-20.363653pt;}
.ws0{word-spacing:-19.128267pt;}
.ws21{word-spacing:-18.909107pt;}
.ws2e{word-spacing:-18.850925pt;}
.ws25{word-spacing:-17.745469pt;}
.ws35{word-spacing:-16.756378pt;}
.ws27{word-spacing:-16.000013pt;}
.ws2f{word-spacing:-15.767286pt;}
.ws31{word-spacing:-15.592740pt;}
.ws4{word-spacing:-15.302667pt;}
.ws1d{word-spacing:-14.545467pt;}
.ws20{word-spacing:-11.636373pt;}
.wsb3{word-spacing:-10.626800pt;}
.ws32{word-spacing:-3.490912pt;}
.ws4d{word-spacing:-3.316366pt;}
.ws5b{word-spacing:-2.967275pt;}
.ws29{word-spacing:-2.909093pt;}
.ws17{word-spacing:-2.560002pt;}
.ws5e{word-spacing:-2.501820pt;}
.wse2{word-spacing:-2.269093pt;}
.ws49{word-spacing:-2.152729pt;}
.wsd6{word-spacing:-2.094547pt;}
.wse5{word-spacing:-2.036365pt;}
.wsb9{word-spacing:-1.803638pt;}
.ws41{word-spacing:-1.745456pt;}
.wsc2{word-spacing:-1.396365pt;}
.ws83{word-spacing:-1.338183pt;}
.ws63{word-spacing:-1.290746pt;}
.wsa5{word-spacing:-1.280001pt;}
.wsa{word-spacing:-1.163637pt;}
.ws68{word-spacing:-1.047274pt;}
.ws4c{word-spacing:-0.930910pt;}
.wsbb{word-spacing:-0.814546pt;}
.wsc6{word-spacing:-0.756364pt;}
.wsc{word-spacing:-0.640001pt;}
.wsd9{word-spacing:-0.581819pt;}
.ws43{word-spacing:-0.523637pt;}
.ws7d{word-spacing:-0.465455pt;}
.ws56{word-spacing:-0.407273pt;}
.ws73{word-spacing:-0.373413pt;}
.wsbc{word-spacing:-0.290909pt;}
.ws5d{word-spacing:-0.232727pt;}
.ws66{word-spacing:-0.174546pt;}
.ws10{word-spacing:-0.116364pt;}
.ws30{word-spacing:-0.058182pt;}
.ws91{word-spacing:-0.055273pt;}
.ws6a{word-spacing:-0.042507pt;}
.ws8b{word-spacing:-0.010518pt;}
.ws7b{word-spacing:-0.005570pt;}
.wsb6{word-spacing:-0.003974pt;}
.ws71{word-spacing:-0.002087pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.050997pt;}
.ws89{word-spacing:0.174546pt;}
.wsb{word-spacing:0.232727pt;}
.ws9{word-spacing:0.349091pt;}
.ws70{word-spacing:0.407273pt;}
.wsc5{word-spacing:0.465455pt;}
.wsd4{word-spacing:0.523637pt;}
.wsba{word-spacing:0.581819pt;}
.wsc0{word-spacing:0.640001pt;}
.wsb5{word-spacing:0.744667pt;}
.ws36{word-spacing:0.756364pt;}
.wse0{word-spacing:0.803644pt;}
.ws7f{word-spacing:0.814546pt;}
.wsc3{word-spacing:0.872728pt;}
.ws1e{word-spacing:0.989092pt;}
.ws8a{word-spacing:1.047274pt;}
.ws34{word-spacing:1.105455pt;}
.wsaa{word-spacing:1.162461pt;}
.ws37{word-spacing:1.163637pt;}
.wsa7{word-spacing:1.178000pt;}
.ws12{word-spacing:1.221819pt;}
.ws99{word-spacing:1.280001pt;}
.ws4a{word-spacing:1.338183pt;}
.ws77{word-spacing:1.396365pt;}
.wsd8{word-spacing:1.512729pt;}
.ws19{word-spacing:1.570910pt;}
.ws95{word-spacing:1.629092pt;}
.ws1a{word-spacing:1.687274pt;}
.ws15{word-spacing:1.745456pt;}
.wsd1{word-spacing:1.803638pt;}
.ws94{word-spacing:1.861820pt;}
.wsac{word-spacing:1.920002pt;}
.ws9f{word-spacing:1.978183pt;}
.ws9d{word-spacing:2.036365pt;}
.ws46{word-spacing:2.094547pt;}
.ws7a{word-spacing:2.152729pt;}
.wsdd{word-spacing:2.210911pt;}
.ws98{word-spacing:2.269093pt;}
.ws45{word-spacing:2.327275pt;}
.ws18{word-spacing:2.385457pt;}
.ws93{word-spacing:2.443638pt;}
.ws52{word-spacing:2.501820pt;}
.ws11{word-spacing:2.676366pt;}
.wsc1{word-spacing:2.792730pt;}
.ws1c{word-spacing:2.850911pt;}
.ws7c{word-spacing:2.909093pt;}
.ws6b{word-spacing:2.967275pt;}
.ws13{word-spacing:3.025457pt;}
.ws69{word-spacing:3.083639pt;}
.wsd{word-spacing:3.200003pt;}
.wse{word-spacing:3.258185pt;}
.wsf{word-spacing:3.316366pt;}
.wsd7{word-spacing:3.374548pt;}
.ws6d{word-spacing:3.432730pt;}
.ws5f{word-spacing:3.607276pt;}
.ws92{word-spacing:3.723639pt;}
.ws6{word-spacing:3.840003pt;}
.ws61{word-spacing:3.898185pt;}
.wsd3{word-spacing:4.072731pt;}
.ws9a{word-spacing:4.130913pt;}
.ws44{word-spacing:4.189094pt;}
.ws78{word-spacing:4.247276pt;}
.ws50{word-spacing:4.363640pt;}
.ws47{word-spacing:4.480004pt;}
.wsdb{word-spacing:4.538186pt;}
.ws8d{word-spacing:4.596367pt;}
.ws65{word-spacing:4.654549pt;}
.ws62{word-spacing:4.712731pt;}
.ws4b{word-spacing:4.770913pt;}
.ws5a{word-spacing:4.829095pt;}
.ws53{word-spacing:4.945459pt;}
.ws4f{word-spacing:5.003641pt;}
.ws54{word-spacing:5.120004pt;}
.ws9b{word-spacing:5.236368pt;}
.ws81{word-spacing:5.410914pt;}
.ws1b{word-spacing:5.469095pt;}
.ws4e{word-spacing:5.527277pt;}
.wsc4{word-spacing:5.643641pt;}
.ws55{word-spacing:5.701823pt;}
.ws60{word-spacing:5.760005pt;}
.ws8{word-spacing:5.818187pt;}
.ws58{word-spacing:5.876369pt;}
.ws5c{word-spacing:5.934550pt;}
.ws14{word-spacing:6.167278pt;}
.wsa3{word-spacing:6.225460pt;}
.wsa1{word-spacing:6.228774pt;}
.wse6{word-spacing:6.395041pt;}
.ws97{word-spacing:6.516369pt;}
.wsbf{word-spacing:6.632733pt;}
.ws16{word-spacing:6.749097pt;}
.ws57{word-spacing:6.807278pt;}
.ws42{word-spacing:6.865460pt;}
.ws90{word-spacing:6.923642pt;}
.wsb8{word-spacing:7.040006pt;}
.ws5{word-spacing:7.214551pt;}
.ws87{word-spacing:7.272733pt;}
.ws59{word-spacing:7.447279pt;}
.wsd2{word-spacing:7.563643pt;}
.ws1{word-spacing:7.626304pt;}
.wsbd{word-spacing:7.738188pt;}
.ws8e{word-spacing:8.029098pt;}
.ws7{word-spacing:8.552734pt;}
.wsb7{word-spacing:8.610916pt;}
.wse3{word-spacing:8.843644pt;}
.wsd5{word-spacing:10.181827pt;}
.ws72{word-spacing:10.690762pt;}
.ws6f{word-spacing:12.728095pt;}
.ws6e{word-spacing:12.729990pt;}
.ws84{word-spacing:13.103116pt;}
.ws82{word-spacing:13.125123pt;}
.ws33{word-spacing:13.149102pt;}
.ws39{word-spacing:13.207284pt;}
.ws74{word-spacing:14.138194pt;}
.ws67{word-spacing:14.312739pt;}
.ws88{word-spacing:14.481628pt;}
.wsa0{word-spacing:14.483687pt;}
.wsdf{word-spacing:14.487285pt;}
.wsa4{word-spacing:14.517231pt;}
.ws26{word-spacing:14.545467pt;}
.ws85{word-spacing:14.836376pt;}
.ws8f{word-spacing:14.952740pt;}
.wse1{word-spacing:15.301831pt;}
.ws7e{word-spacing:15.313322pt;}
.ws80{word-spacing:15.318655pt;}
.wsa9{word-spacing:15.650922pt;}
.wsa8{word-spacing:15.670618pt;}
.ws96{word-spacing:15.822420pt;}
.wsb1{word-spacing:15.823898pt;}
.ws8c{word-spacing:16.053038pt;}
.wsb2{word-spacing:16.264750pt;}
.wsb4{word-spacing:16.557850pt;}
.wsde{word-spacing:16.698196pt;}
.ws48{word-spacing:16.930923pt;}
.wsa6{word-spacing:17.002564pt;}
.wsab{word-spacing:17.004409pt;}
.ws6c{word-spacing:17.156657pt;}
.ws9c{word-spacing:17.420434pt;}
.wsad{word-spacing:17.441767pt;}
.ws9e{word-spacing:17.537767pt;}
.wsaf{word-spacing:17.601767pt;}
.wsae{word-spacing:17.727898pt;}
.wsb0{word-spacing:17.898564pt;}
.ws75{word-spacing:18.711685pt;}
.ws79{word-spacing:18.741716pt;}
.wsdc{word-spacing:19.025470pt;}
.ws64{word-spacing:19.139948pt;}
.wsa2{word-spacing:21.756434pt;}
.wse4{word-spacing:23.330929pt;}
.ws76{word-spacing:33.108247pt;}
.ws2d{word-spacing:42.240035pt;}
.ws1f{word-spacing:43.636400pt;}
.ws51{word-spacing:47.820800pt;}
.ws40{word-spacing:57.384800pt;}
.ws3e{word-spacing:100.945539pt;}
.ws3d{word-spacing:107.345544pt;}
.ws3c{word-spacing:117.061916pt;}
.ws3b{word-spacing:159.127405pt;}
.wsc9{word-spacing:165.513997pt;}
.wsca{word-spacing:170.345521pt;}
.wsc8{word-spacing:171.171052pt;}
.wscd{word-spacing:180.063331pt;}
.wsce{word-spacing:184.894854pt;}
.wscc{word-spacing:185.716518pt;}
.wsc7{word-spacing:189.744826pt;}
.wscf{word-spacing:200.261985pt;}
.wscb{word-spacing:204.294159pt;}
.wsd0{word-spacing:644.887810pt;}
.wsbe{word-spacing:1391.219333pt;}
.ws86{word-spacing:1577.806000pt;}
.ws3a{word-spacing:1657.800654pt;}
.ws38{word-spacing:1676.766482pt;}
.ws2b{word-spacing:1904.197564pt;}
.wsda{word-spacing:1926.718000pt;}
._1d{margin-left:-33.163664pt;}
._13{margin-left:-30.545480pt;}
._12{margin-left:-29.090933pt;}
._16{margin-left:-14.545467pt;}
._1e{margin-left:-11.694555pt;}
._25{margin-left:-9.367281pt;}
._4{margin-left:-6.609893pt;}
._4a{margin-left:-5.661967pt;}
._10{margin-left:-4.731861pt;}
._d{margin-left:-3.800951pt;}
._0{margin-left:-2.370817pt;}
._5{margin-left:-1.377235pt;}
._2{width:0.979371pt;}
._3{width:2.963141pt;}
._1{width:4.162325pt;}
._2c{width:6.807278pt;}
._19{width:10.007281pt;}
._3f{width:10.955416pt;}
._3c{width:12.261734pt;}
._3b{width:13.614557pt;}
._20{width:14.545467pt;}
._3a{width:15.941831pt;}
._f{width:17.163651pt;}
._a{width:18.870847pt;}
._6{width:19.765931pt;}
._38{width:20.756287pt;}
._2f{width:21.701836pt;}
._e{width:22.749110pt;}
._c{width:24.029111pt;}
._8{width:25.367294pt;}
._2b{width:26.317333pt;}
._9{width:27.636387pt;}
._2e{width:28.862696pt;}
._7{width:29.828168pt;}
._2a{width:31.088246pt;}
._15{width:32.000027pt;}
._40{width:33.454573pt;}
._34{width:34.734574pt;}
._b{width:36.596394pt;}
._35{width:38.516396pt;}
._36{width:39.738215pt;}
._1a{width:40.727307pt;}
._26{width:42.084619pt;}
._28{width:45.691895pt;}
._21{width:48.523677pt;}
._30{width:53.803587pt;}
._29{width:55.272773pt;}
._23{width:56.785502pt;}
._17{width:58.181867pt;}
._24{width:61.090960pt;}
._32{width:63.767326pt;}
._1f{width:69.818240pt;}
._33{width:76.513067pt;}
._1b{width:85.396341pt;}
._14{width:86.676342pt;}
._31{width:112.232821pt;}
._22{width:114.967369pt;}
._46{width:284.625692pt;}
._47{width:299.171158pt;}
._48{width:313.716625pt;}
._45{width:478.914074pt;}
._41{width:1065.403388pt;}
._44{width:1133.301627pt;}
._27{width:1282.949212pt;}
._42{width:1343.279983pt;}
._3d{width:1401.617266pt;}
._43{width:1443.527340pt;}
._1c{width:1488.873968pt;}
._37{width:1566.448894pt;}
._49{width:1579.246505pt;}
._18{width:1601.649555pt;}
._39{width:1685.954449pt;}
._3e{width:1824.890346pt;}
._2d{width:1844.248810pt;}
._11{width:1874.716978pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:55.272533pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:61.210667pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs5{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:74.926667pt;}
.y42{bottom:114.777333pt;}
.y7{bottom:129.450667pt;}
.y41{bottom:133.202667pt;}
.y71{bottom:133.349333pt;}
.y10c{bottom:136.137333pt;}
.y98{bottom:136.690667pt;}
.y101{bottom:139.001333pt;}
.yb9{bottom:149.126667pt;}
.y70{bottom:151.416000pt;}
.y40{bottom:151.628000pt;}
.y9{bottom:152.630667pt;}
.y8{bottom:153.069333pt;}
.y10b{bottom:154.202667pt;}
.y97{bottom:158.604000pt;}
.y100{bottom:160.914667pt;}
.y156{bottom:165.769333pt;}
.y16b{bottom:168.422667pt;}
.y13b{bottom:169.968000pt;}
.y6f{bottom:169.988000pt;}
.y3f{bottom:170.053333pt;}
.y196{bottom:171.086667pt;}
.y1a5{bottom:171.145333pt;}
.y1b8{bottom:174.282667pt;}
.y155{bottom:176.518667pt;}
.y96{bottom:180.517333pt;}
.y154{bottom:182.026667pt;}
.yff{bottom:182.828000pt;}
.yb8{bottom:183.477333pt;}
.y3e{bottom:188.480000pt;}
.y6e{bottom:188.561333pt;}
.y195{bottom:189.153333pt;}
.y1a4{bottom:189.210667pt;}
.y13a{bottom:191.881333pt;}
.y1b7{bottom:192.348000pt;}
.y1b1{bottom:196.050667pt;}
.y6{bottom:198.594667pt;}
.ya9{bottom:199.706667pt;}
.y95{bottom:202.430667pt;}
.yfe{bottom:204.742667pt;}
.y6d{bottom:206.628000pt;}
.y3d{bottom:206.905333pt;}
.y1ab{bottom:210.938667pt;}
.y180{bottom:210.941333pt;}
.y187{bottom:211.090667pt;}
.yc6{bottom:213.373333pt;}
.y139{bottom:213.796000pt;}
.y1b0{bottom:214.116000pt;}
.yb7{bottom:217.828000pt;}
.y179{bottom:218.077333pt;}
.ya8{bottom:221.620000pt;}
.y153{bottom:223.937333pt;}
.y123{bottom:224.344000pt;}
.y6c{bottom:225.200000pt;}
.y3c{bottom:225.330667pt;}
.yfd{bottom:226.656000pt;}
.y1be{bottom:227.366667pt;}
.y1aa{bottom:229.005333pt;}
.y17f{bottom:229.008000pt;}
.y186{bottom:229.156000pt;}
.y94{bottom:231.165333pt;}
.y16a{bottom:233.100000pt;}
.y1e5{bottom:234.850667pt;}
.y178{bottom:236.142667pt;}
.y5{bottom:236.353333pt;}
.yd4{bottom:242.924000pt;}
.ya7{bottom:243.533333pt;}
.y3b{bottom:243.756000pt;}
.y6b{bottom:243.773333pt;}
.y1bd{bottom:245.432000pt;}
.y122{bottom:246.258667pt;}
.yfc{bottom:248.569333pt;}
.y152{bottom:249.564000pt;}
.yb6{bottom:252.177333pt;}
.y93{bottom:253.078667pt;}
.y169{bottom:255.013333pt;}
.y6a{bottom:261.840000pt;}
.y3a{bottom:262.182667pt;}
.ya6{bottom:265.446667pt;}
.y138{bottom:268.986667pt;}
.y151{bottom:271.477333pt;}
.yfb{bottom:272.793333pt;}
.y92{bottom:274.992000pt;}
.y168{bottom:276.926667pt;}
.y1f6{bottom:280.401333pt;}
.y69{bottom:280.412000pt;}
.y39{bottom:280.608000pt;}
.yb5{bottom:286.528000pt;}
.ya5{bottom:287.360000pt;}
.y150{bottom:293.392000pt;}
.yfa{bottom:294.706667pt;}
.y91{bottom:296.906667pt;}
.yea{bottom:297.250667pt;}
.yc5{bottom:298.278667pt;}
.y167{bottom:298.840000pt;}
.y68{bottom:298.985333pt;}
.y38{bottom:299.033333pt;}
.y137{bottom:301.378667pt;}
.y1f5{bottom:302.314667pt;}
.y1e4{bottom:302.962667pt;}
.y1e1{bottom:313.057333pt;}
.y14f{bottom:315.305333pt;}
.y67{bottom:317.052000pt;}
.y37{bottom:317.458667pt;}
.ye9{bottom:319.164000pt;}
.y166{bottom:320.753333pt;}
.yb4{bottom:320.878667pt;}
.y1e3{bottom:321.028000pt;}
.y1f4{bottom:324.228000pt;}
.y121{bottom:330.552000pt;}
.yf9{bottom:331.028000pt;}
.y66{bottom:335.624000pt;}
.y36{bottom:335.885333pt;}
.y14e{bottom:337.218667pt;}
.y1e2{bottom:339.093333pt;}
.ye8{bottom:341.077333pt;}
.y165{bottom:342.666667pt;}
.yb3{bottom:342.792000pt;}
.y1f3{bottom:346.141333pt;}
.y90{bottom:347.417333pt;}
.y207{bottom:347.880000pt;}
.y120{bottom:352.465333pt;}
.y65{bottom:354.197333pt;}
.y136{bottom:355.684000pt;}
.ya4{bottom:357.192000pt;}
.y16f{bottom:362.344000pt;}
.ye7{bottom:362.990667pt;}
.y1e0{bottom:364.461333pt;}
.y164{bottom:364.580000pt;}
.y1f2{bottom:368.056000pt;}
.y35{bottom:369.096000pt;}
.y206{bottom:369.793333pt;}
.y64{bottom:372.264000pt;}
.y11f{bottom:374.378667pt;}
.y1dd{bottom:374.557333pt;}
.yb2{bottom:377.141333pt;}
.y135{bottom:377.597333pt;}
.y1df{bottom:382.528000pt;}
.y16e{bottom:384.257333pt;}
.y34{bottom:387.521333pt;}
.yf8{bottom:388.557333pt;}
.y1f1{bottom:389.969333pt;}
.y63{bottom:390.836000pt;}
.y205{bottom:391.706667pt;}
.y11e{bottom:396.292000pt;}
.y163{bottom:396.312000pt;}
.y134{bottom:399.510667pt;}
.y1de{bottom:400.593333pt;}
.ye6{bottom:400.845333pt;}
.y33{bottom:405.946667pt;}
.y14d{bottom:407.854667pt;}
.y62{bottom:409.409333pt;}
.yb1{bottom:411.492000pt;}
.y1f0{bottom:411.882667pt;}
.yf7{bottom:412.782667pt;}
.y204{bottom:413.620000pt;}
.y11d{bottom:418.205333pt;}
.ye5{bottom:422.758667pt;}
.y32{bottom:424.373333pt;}
.yd3{bottom:424.796000pt;}
.y1dc{bottom:425.961333pt;}
.y61{bottom:427.476000pt;}
.y14c{bottom:429.768000pt;}
.y133{bottom:432.789333pt;}
.ya3{bottom:432.904000pt;}
.y1ef{bottom:433.796000pt;}
.yf6{bottom:434.696000pt;}
.y203{bottom:435.533333pt;}
.y1d9{bottom:436.057333pt;}
.y8f{bottom:439.760000pt;}
.y31{bottom:442.798667pt;}
.y1db{bottom:444.026667pt;}
.ye4{bottom:444.672000pt;}
.yb0{bottom:445.842667pt;}
.y60{bottom:446.048000pt;}
.yd2{bottom:446.709333pt;}
.y16d{bottom:446.796000pt;}
.y19e{bottom:449.582667pt;}
.y10a{bottom:451.258667pt;}
.y14b{bottom:451.681333pt;}
.y18f{bottom:452.736000pt;}
.y132{bottom:454.702667pt;}
.y1ee{bottom:455.709333pt;}
.y202{bottom:457.446667pt;}
.yf5{bottom:458.920000pt;}
.y162{bottom:460.989333pt;}
.y30{bottom:461.224000pt;}
.y8e{bottom:461.673333pt;}
.y11c{bottom:462.033333pt;}
.y1da{bottom:462.093333pt;}
.y5f{bottom:464.621333pt;}
.ye3{bottom:466.585333pt;}
.yd1{bottom:468.622667pt;}
.y19d{bottom:471.496000pt;}
.y109{bottom:473.172000pt;}
.y14a{bottom:473.594667pt;}
.y18e{bottom:474.649333pt;}
.y214{bottom:476.401333pt;}
.y131{bottom:476.616000pt;}
.y1ed{bottom:477.622667pt;}
.y201{bottom:479.360000pt;}
.y2f{bottom:479.649333pt;}
.yf4{bottom:480.834667pt;}
.y5e{bottom:482.686667pt;}
.y161{bottom:482.902667pt;}
.y8d{bottom:483.586667pt;}
.y1a3{bottom:483.682667pt;}
.y11b{bottom:483.946667pt;}
.y194{bottom:484.028000pt;}
.y1d8{bottom:487.461333pt;}
.ye2{bottom:488.498667pt;}
.y1b6{bottom:490.629333pt;}
.y19c{bottom:493.409333pt;}
.yd0{bottom:494.306667pt;}
.y18d{bottom:496.562667pt;}
.y1d5{bottom:497.557333pt;}
.y108{bottom:497.641333pt;}
.y2e{bottom:498.076000pt;}
.y130{bottom:498.529333pt;}
.yaf{bottom:502.148000pt;}
.yf3{bottom:502.748000pt;}
.y160{bottom:504.816000pt;}
.y8c{bottom:505.501333pt;}
.y1d7{bottom:505.526667pt;}
.y1a2{bottom:505.596000pt;}
.y11a{bottom:505.860000pt;}
.y193{bottom:505.941333pt;}
.y213{bottom:506.422667pt;}
.ye1{bottom:510.412000pt;}
.y1b5{bottom:512.542667pt;}
.y5d{bottom:514.544000pt;}
.ycf{bottom:516.221333pt;}
.y200{bottom:516.328000pt;}
.y2d{bottom:516.501333pt;}
.y107{bottom:519.554667pt;}
.y12f{bottom:520.442667pt;}
.y149{bottom:522.317333pt;}
.yc4{bottom:522.322667pt;}
.y1d6{bottom:523.592000pt;}
.y19b{bottom:525.885333pt;}
.y15f{bottom:526.729333pt;}
.yf2{bottom:526.972000pt;}
.y8b{bottom:527.414667pt;}
.y1a1{bottom:527.509333pt;}
.y192{bottom:527.854667pt;}
.y1af{bottom:530.614667pt;}
.y18c{bottom:532.169333pt;}
.ye0{bottom:532.325333pt;}
.y5c{bottom:532.609333pt;}
.y1ec{bottom:533.688000pt;}
.y1b4{bottom:534.457333pt;}
.y177{bottom:534.800000pt;}
.y2c{bottom:534.926667pt;}
.y212{bottom:536.442667pt;}
.yce{bottom:538.134667pt;}
.y17e{bottom:541.822667pt;}
.y185{bottom:541.924000pt;}
.y1a9{bottom:542.225333pt;}
.y4{bottom:543.781333pt;}
.y148{bottom:544.232000pt;}
.yc3{bottom:544.236000pt;}
.y19{bottom:548.133333pt;}
.y15e{bottom:548.642667pt;}
.y1d4{bottom:548.961333pt;}
.y8a{bottom:549.328000pt;}
.y5b{bottom:551.182667pt;}
.y1eb{bottom:551.753333pt;}
.y1ae{bottom:552.528000pt;}
.y1bc{bottom:552.760000pt;}
.y2b{bottom:553.352000pt;}
.y12e{bottom:553.721333pt;}
.ydf{bottom:554.238667pt;}
.y211{bottom:554.509333pt;}
.y106{bottom:556.358667pt;}
.y176{bottom:556.713333pt;}
.y1d1{bottom:559.056000pt;}
.y1a0{bottom:559.542667pt;}
.y191{bottom:559.829333pt;}
.ycd{bottom:560.048000pt;}
.yf1{bottom:563.292000pt;}
.y17d{bottom:563.736000pt;}
.y184{bottom:563.837333pt;}
.y1a8{bottom:564.138667pt;}
.y147{bottom:566.145333pt;}
.yc2{bottom:566.149333pt;}
.y18{bottom:566.198667pt;}
.y1d3{bottom:567.026667pt;}
.y1e{bottom:567.392000pt;}
.y1ff{bottom:568.241333pt;}
.y1b3{bottom:569.604000pt;}
.y5a{bottom:569.756000pt;}
.y15d{bottom:570.557333pt;}
.y89{bottom:571.241333pt;}
.y19a{bottom:571.941333pt;}
.y119{bottom:573.145333pt;}
.y1ad{bottom:574.441333pt;}
.y1bb{bottom:574.673333pt;}
.y12d{bottom:575.634667pt;}
.yde{bottom:576.153333pt;}
.y175{bottom:578.626667pt;}
.ycc{bottom:581.961333pt;}
.y17{bottom:584.264000pt;}
.y210{bottom:584.529333pt;}
.y1d2{bottom:585.092000pt;}
.y17c{bottom:585.650667pt;}
.y183{bottom:585.750667pt;}
.y1a7{bottom:586.052000pt;}
.y2a{bottom:586.564000pt;}
.y18b{bottom:587.570667pt;}
.y146{bottom:588.058667pt;}
.yc1{bottom:588.064000pt;}
.y59{bottom:588.329333pt;}
.y1fe{bottom:590.154667pt;}
.y15c{bottom:592.470667pt;}
.y199{bottom:593.854667pt;}
.y118{bottom:595.058667pt;}
.y1ba{bottom:596.586667pt;}
.y12c{bottom:597.548000pt;}
.ya2{bottom:598.558667pt;}
.y88{bottom:599.976000pt;}
.y16{bottom:602.329333pt;}
.y20f{bottom:602.594667pt;}
.y29{bottom:604.989333pt;}
.yf0{bottom:605.493333pt;}
.y58{bottom:606.902667pt;}
.ycb{bottom:607.645333pt;}
.y1ac{bottom:609.444000pt;}
.y18a{bottom:609.484000pt;}
.y145{bottom:609.972000pt;}
.y1d0{bottom:610.461333pt;}
.y1fd{bottom:612.068000pt;}
.y3{bottom:612.926667pt;}
.y174{bottom:613.742667pt;}
.ydd{bottom:614.006667pt;}
.y15b{bottom:614.384000pt;}
.y198{bottom:615.768000pt;}
.yae{bottom:616.565333pt;}
.y117{bottom:616.972000pt;}
.y12b{bottom:619.461333pt;}
.y15{bottom:620.394667pt;}
.ya1{bottom:620.472000pt;}
.y1cd{bottom:620.556000pt;}
.y20e{bottom:620.661333pt;}
.yc0{bottom:620.918667pt;}
.y87{bottom:621.889333pt;}
.y28{bottom:623.414667pt;}
.y57{bottom:624.968000pt;}
.y1cf{bottom:628.526667pt;}
.yca{bottom:629.558667pt;}
.y144{bottom:631.885333pt;}
.y1fc{bottom:633.981333pt;}
.y17b{bottom:635.436000pt;}
.y182{bottom:635.685333pt;}
.y1a6{bottom:635.836000pt;}
.ydc{bottom:635.920000pt;}
.y15a{bottom:636.297333pt;}
.y14{bottom:638.461333pt;}
.yad{bottom:638.478667pt;}
.y116{bottom:638.885333pt;}
.y1b9{bottom:640.925333pt;}
.y12a{bottom:641.374667pt;}
.y27{bottom:641.840000pt;}
.y19f{bottom:641.876000pt;}
.y190{bottom:641.934667pt;}
.y1d{bottom:642.150667pt;}
.ya0{bottom:642.385333pt;}
.y56{bottom:643.541333pt;}
.y86{bottom:643.802667pt;}
.y1ce{bottom:646.592000pt;}
.y189{bottom:650.328000pt;}
.y20d{bottom:650.681333pt;}
.yc9{bottom:651.473333pt;}
.y105{bottom:652.041333pt;}
.y197{bottom:653.481333pt;}
.y143{bottom:653.798667pt;}
.y173{bottom:654.738667pt;}
.y1fb{bottom:655.894667pt;}
.y13{bottom:656.526667pt;}
.ydb{bottom:657.833333pt;}
.y26{bottom:660.266667pt;}
.yac{bottom:660.393333pt;}
.y2{bottom:660.746667pt;}
.y9f{bottom:664.298667pt;}
.y1b2{bottom:664.374667pt;}
.y115{bottom:665.705333pt;}
.y159{bottom:668.029333pt;}
.ybf{bottom:668.104000pt;}
.y20c{bottom:668.746667pt;}
.yef{bottom:671.105333pt;}
.y1cc{bottom:671.960000pt;}
.y129{bottom:673.766667pt;}
.y12{bottom:674.592000pt;}
.y55{bottom:675.397333pt;}
.y142{bottom:675.712000pt;}
.y1fa{bottom:677.808000pt;}
.y25{bottom:678.692000pt;}
.yda{bottom:679.746667pt;}
.y1c9{bottom:682.056000pt;}
.y20b{bottom:686.813333pt;}
.y114{bottom:687.618667pt;}
.y7b{bottom:689.469333pt;}
.y1cb{bottom:690.025333pt;}
.yab{bottom:692.364000pt;}
.y11{bottom:692.657333pt;}
.yee{bottom:693.018667pt;}
.y54{bottom:693.970667pt;}
.y85{bottom:694.313333pt;}
.yc8{bottom:695.928000pt;}
.y24{bottom:697.117333pt;}
.y158{bottom:699.760000pt;}
.yd9{bottom:701.660000pt;}
.ybe{bottom:704.236000pt;}
.y20a{bottom:704.878667pt;}
.y7a{bottom:707.534667pt;}
.y1ca{bottom:708.092000pt;}
.y113{bottom:709.532000pt;}
.y10{bottom:710.722667pt;}
.y1c{bottom:711.184000pt;}
.y53{bottom:712.544000pt;}
.y82{bottom:714.418667pt;}
.y1f9{bottom:714.776000pt;}
.yed{bottom:714.932000pt;}
.y17a{bottom:716.161333pt;}
.y181{bottom:716.558667pt;}
.y172{bottom:716.753333pt;}
.y188{bottom:716.770667pt;}
.yd8{bottom:723.573333pt;}
.y141{bottom:724.434667pt;}
.y79{bottom:725.601333pt;}
.yf{bottom:728.789333pt;}
.y128{bottom:729.240000pt;}
.y23{bottom:730.328000pt;}
.y52{bottom:731.117333pt;}
.y81{bottom:732.484000pt;}
.y1c8{bottom:733.460000pt;}
.y209{bottom:734.898667pt;}
.y16c{bottom:738.856000pt;}
.ybd{bottom:740.368000pt;}
.y1c5{bottom:743.556000pt;}
.y78{bottom:743.666667pt;}
.yd7{bottom:745.488000pt;}
.ye{bottom:746.854667pt;}
.y22{bottom:748.754667pt;}
.y51{bottom:749.690667pt;}
.y80{bottom:750.549333pt;}
.y1c7{bottom:751.525333pt;}
.y208{bottom:752.965333pt;}
.yaa{bottom:755.142667pt;}
.y112{bottom:756.238667pt;}
.y9e{bottom:758.536000pt;}
.y157{bottom:760.584000pt;}
.y77{bottom:761.732000pt;}
.y140{bottom:763.540000pt;}
.yd{bottom:764.920000pt;}
.yc7{bottom:766.008000pt;}
.y21{bottom:767.180000pt;}
.y50{bottom:768.264000pt;}
.y7f{bottom:768.614667pt;}
.y4d{bottom:768.772000pt;}
.y1c6{bottom:769.590667pt;}
.y76{bottom:779.797333pt;}
.yc{bottom:782.985333pt;}
.y84{bottom:783.272000pt;}
.y20{bottom:785.605333pt;}
.y7e{bottom:786.680000pt;}
.y4f{bottom:786.837333pt;}
.y7c{bottom:787.768000pt;}
.yec{bottom:792.290667pt;}
.y171{bottom:793.505333pt;}
.y1c4{bottom:794.960000pt;}
.y1f8{bottom:796.913333pt;}
.ybc{bottom:797.565333pt;}
.y75{bottom:797.862667pt;}
.yd6{bottom:800.352000pt;}
.yb{bottom:801.050667pt;}
.y4c{bottom:801.382667pt;}
.y7d{bottom:804.746667pt;}
.y74{bottom:815.929333pt;}
.y4b{bottom:819.449333pt;}
.y1ea{bottom:825.124000pt;}
.y13f{bottom:828.737333pt;}
.y1c3{bottom:831.542667pt;}
.y73{bottom:833.994667pt;}
.y111{bottom:837.228000pt;}
.y4a{bottom:837.514667pt;}
.y1e9{bottom:847.038667pt;}
.y13e{bottom:850.650667pt;}
.y72{bottom:852.060000pt;}
.y9d{bottom:852.630667pt;}
.y127{bottom:855.529333pt;}
.y110{bottom:859.141333pt;}
.y1c2{bottom:863.972000pt;}
.y83{bottom:864.998667pt;}
.y1e8{bottom:868.952000pt;}
.yeb{bottom:869.508000pt;}
.y170{bottom:870.114667pt;}
.y49{bottom:870.125333pt;}
.y1f7{bottom:871.818667pt;}
.y4e{bottom:871.828000pt;}
.y1f{bottom:871.950667pt;}
.ya{bottom:872.250667pt;}
.y9c{bottom:875.810667pt;}
.y104{bottom:877.114667pt;}
.y126{bottom:877.442667pt;}
.y1c1{bottom:885.885333pt;}
.y10f{bottom:885.960000pt;}
.y13d{bottom:885.969333pt;}
.y48{bottom:888.190667pt;}
.y1e7{bottom:890.865333pt;}
.y9b{bottom:897.724000pt;}
.y103{bottom:899.029333pt;}
.ybb{bottom:906.254667pt;}
.y47{bottom:906.256000pt;}
.y1c0{bottom:907.798667pt;}
.y10e{bottom:907.873333pt;}
.y13c{bottom:907.882667pt;}
.y125{bottom:909.174667pt;}
.y1e6{bottom:912.778667pt;}
.y9a{bottom:919.637333pt;}
.y46{bottom:924.322667pt;}
.y10d{bottom:934.692000pt;}
.y102{bottom:935.833333pt;}
.y1bf{bottom:940.218667pt;}
.y124{bottom:940.906667pt;}
.y99{bottom:941.550667pt;}
.yba{bottom:942.386667pt;}
.y45{bottom:942.388000pt;}
.yd5{bottom:956.605333pt;}
.y44{bottom:960.453333pt;}
.y43{bottom:978.518667pt;}
.y1{bottom:1023.313333pt;}
.y1b{bottom:1031.760000pt;}
.h9{height:35.319149pt;}
.hb{height:37.831408pt;}
.h6{height:41.483671pt;}
.h8{height:45.461641pt;}
.h5{height:51.781861pt;}
.h2{height:54.553817pt;}
.h4{height:56.747349pt;}
.h7{height:78.572600pt;}
.ha{height:91.173861pt;}
.h3{height:94.257079pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.488000pt;}
.x39{left:102.458667pt;}
.x38{left:106.501333pt;}
.x14{left:116.306667pt;}
.x2c{left:119.766667pt;}
.x28{left:126.421333pt;}
.x37{left:127.876000pt;}
.x1a{left:130.852000pt;}
.xa{left:132.284000pt;}
.x17{left:140.253333pt;}
.x30{left:143.554667pt;}
.x2a{left:147.192000pt;}
.x15{left:149.761333pt;}
.x2f{left:153.925333pt;}
.xb{left:154.865333pt;}
.x3a{left:156.516000pt;}
.x1{left:159.230667pt;}
.x2{left:165.814667pt;}
.x24{left:168.646667pt;}
.x2e{left:172.274667pt;}
.x32{left:181.350667pt;}
.x2d{left:184.986667pt;}
.x29{left:186.544000pt;}
.x13{left:187.556000pt;}
.x5{left:192.101333pt;}
.x20{left:198.610667pt;}
.x34{left:206.405333pt;}
.x31{left:210.070667pt;}
.x2b{left:213.706667pt;}
.x1d{left:245.424000pt;}
.x4{left:249.534667pt;}
.x22{left:251.568000pt;}
.x18{left:254.696000pt;}
.x33{left:260.536000pt;}
.x3{left:261.673333pt;}
.x21{left:264.937333pt;}
.x10{left:268.192000pt;}
.x19{left:269.910667pt;}
.x6{left:277.794667pt;}
.x23{left:279.226667pt;}
.x1e{left:289.444000pt;}
.x1f{left:295.894667pt;}
.x36{left:297.290667pt;}
.x35{left:302.142667pt;}
.x1b{left:306.090667pt;}
.x9{left:309.669333pt;}
.x8{left:313.713333pt;}
.x1c{left:322.593333pt;}
.x25{left:348.953333pt;}
.x7{left:357.573333pt;}
.x26{left:393.337333pt;}
.x16{left:406.046667pt;}
.x12{left:408.068000pt;}
.xe{left:409.682667pt;}
.xf{left:412.112000pt;}
.xc{left:413.726667pt;}
.x27{left:432.212000pt;}
.x11{left:620.013333pt;}
}




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