
    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_53e8ca1635be9cbf612c6fed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_5e08f9151563ae3a7a9363ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_2df71d16572e5538fa38a8d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ee10b6471555ca8455aea78a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_cca5e6328e4221294c074dbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_373a1533d08cbe74806799bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.190918;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_46ceb47dda6e63612a2ac1e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.192383;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_1787228d7dc97d774e0d6d42.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_75226f828aca5a2f313a1b6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_98fbd206fa45c9c48756fc42.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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);}
.v5{vertical-align:-18.630066px;}
.v3{vertical-align:-17.594971px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.489960px;}
.v4{vertical-align:17.594971px;}
.v2{vertical-align:18.629883px;}
.v1{vertical-align:20.700073px;}
.v6{vertical-align:22.500000px;}
.ls1a{letter-spacing:-4.860000px;}
.ls22{letter-spacing:-2.250000px;}
.ls16{letter-spacing:-1.806000px;}
.ls28{letter-spacing:-1.395000px;}
.ls20{letter-spacing:-1.035000px;}
.lsc{letter-spacing:-1.026000px;}
.ls15{letter-spacing:-0.798000px;}
.ls27{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.702000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.630000px;}
.ls2a{letter-spacing:-0.585000px;}
.ls12{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.108000px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.ls6{letter-spacing:0.000008px;}
.ls5{letter-spacing:0.000012px;}
.ls14{letter-spacing:0.000040px;}
.ls13{letter-spacing:0.000044px;}
.ls1b{letter-spacing:0.000050px;}
.ls1e{letter-spacing:0.000054px;}
.ls23{letter-spacing:0.000088px;}
.ls4{letter-spacing:0.000104px;}
.ls10{letter-spacing:0.000233px;}
.lsf{letter-spacing:0.000313px;}
.lsb{letter-spacing:0.000741px;}
.ls7{letter-spacing:0.011246px;}
.ls1{letter-spacing:0.013251px;}
.ls2{letter-spacing:0.014254px;}
.ls0{letter-spacing:0.014346px;}
.ls3{letter-spacing:0.014437px;}
.ls19{letter-spacing:0.126000px;}
.ls24{letter-spacing:0.225000px;}
.ls26{letter-spacing:2.689175px;}
.ls8{letter-spacing:3.000000px;}
.ls25{letter-spacing:5.238003px;}
.ls1c{letter-spacing:42.519021px;}
.ls1d{letter-spacing:92.201394px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.wsa5{word-spacing:-13.596000px;}
.ws36{word-spacing:-12.366000px;}
.ws16{word-spacing:-12.258000px;}
.ws35{word-spacing:-12.042000px;}
.ws38{word-spacing:-11.718000px;}
.wsa4{word-spacing:-11.610000px;}
.ws17{word-spacing:-11.232000px;}
.wsc9{word-spacing:-10.440000px;}
.wsc1{word-spacing:-10.305000px;}
.wsc8{word-spacing:-10.215000px;}
.wsa6{word-spacing:-9.765000px;}
.wsc0{word-spacing:-9.720000px;}
.wsbf{word-spacing:-9.675000px;}
.ws70{word-spacing:-9.534000px;}
.wsa7{word-spacing:-9.270000px;}
.ws8c{word-spacing:-9.114000px;}
.ws72{word-spacing:-9.030000px;}
.ws6c{word-spacing:-8.736000px;}
.ws37{word-spacing:-8.656200px;}
.ws0{word-spacing:-8.580600px;}
.wsa8{word-spacing:-8.055000px;}
.ws1{word-spacing:-7.140000px;}
.ws44{word-spacing:-5.508000px;}
.ws53{word-spacing:-4.914000px;}
.ws96{word-spacing:-4.284000px;}
.ws1f{word-spacing:-3.834000px;}
.ws7a{word-spacing:-3.294000px;}
.ws9b{word-spacing:-3.240000px;}
.ws15{word-spacing:-2.958000px;}
.wsd0{word-spacing:-2.835000px;}
.wsbd{word-spacing:-2.520000px;}
.ws1c{word-spacing:-2.430000px;}
.ws7d{word-spacing:-2.376000px;}
.ws7e{word-spacing:-2.268000px;}
.ws2a{word-spacing:-2.214000px;}
.ws9e{word-spacing:-2.106000px;}
.ws51{word-spacing:-2.052000px;}
.wsdc{word-spacing:-2.025000px;}
.ws30{word-spacing:-1.998000px;}
.ws47{word-spacing:-1.890000px;}
.wsa3{word-spacing:-1.836000px;}
.ws8a{word-spacing:-1.728000px;}
.wsb6{word-spacing:-1.710000px;}
.ws33{word-spacing:-1.674000px;}
.wsb5{word-spacing:-1.665000px;}
.ws3d{word-spacing:-1.620000px;}
.ws14{word-spacing:-1.581000px;}
.ws84{word-spacing:-1.566000px;}
.wsd5{word-spacing:-1.530000px;}
.ws59{word-spacing:-1.512000px;}
.ws92{word-spacing:-1.404000px;}
.wsc2{word-spacing:-1.395000px;}
.ws54{word-spacing:-1.350000px;}
.wsbc{word-spacing:-1.305000px;}
.ws90{word-spacing:-1.296000px;}
.wsdf{word-spacing:-1.260000px;}
.ws61{word-spacing:-1.242000px;}
.ws7b{word-spacing:-1.188000px;}
.ws5b{word-spacing:-1.134000px;}
.wsc7{word-spacing:-1.080000px;}
.ws68{word-spacing:-1.026000px;}
.wsaf{word-spacing:-0.972000px;}
.ws69{word-spacing:-0.918000px;}
.wsa0{word-spacing:-0.864000px;}
.ws5c{word-spacing:-0.810000px;}
.ws91{word-spacing:-0.756000px;}
.wsab{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.594000px;}
.ws8f{word-spacing:-0.540000px;}
.wsd2{word-spacing:-0.495000px;}
.ws81{word-spacing:-0.486000px;}
.wsd1{word-spacing:-0.450000px;}
.wsae{word-spacing:-0.432000px;}
.wscd{word-spacing:-0.360000px;}
.ws8b{word-spacing:-0.336000px;}
.ws6b{word-spacing:-0.324000px;}
.wsba{word-spacing:-0.315000px;}
.wse1{word-spacing:-0.270000px;}
.ws22{word-spacing:-0.216000px;}
.wsda{word-spacing:-0.180000px;}
.ws52{word-spacing:-0.162000px;}
.ws39{word-spacing:-0.108000px;}
.ws4f{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws97{word-spacing:0.054000px;}
.ws12{word-spacing:0.108000px;}
.ws77{word-spacing:0.126000px;}
.ws29{word-spacing:0.162000px;}
.wse0{word-spacing:0.180000px;}
.ws2b{word-spacing:0.216000px;}
.ws63{word-spacing:0.270000px;}
.ws24{word-spacing:0.432000px;}
.ws5e{word-spacing:0.486000px;}
.wsdb{word-spacing:0.495000px;}
.ws34{word-spacing:0.540000px;}
.ws6{word-spacing:0.648000px;}
.ws31{word-spacing:0.702000px;}
.wsaa{word-spacing:0.756000px;}
.wsa9{word-spacing:0.810000px;}
.ws5d{word-spacing:0.864000px;}
.ws4c{word-spacing:0.918000px;}
.wsce{word-spacing:0.945000px;}
.wse{word-spacing:0.972000px;}
.ws1d{word-spacing:1.026000px;}
.wsdd{word-spacing:1.125000px;}
.ws65{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.ws7c{word-spacing:1.242000px;}
.ws2f{word-spacing:1.296000px;}
.ws1a{word-spacing:1.350000px;}
.wsd9{word-spacing:1.395000px;}
.ws55{word-spacing:1.404000px;}
.wsd8{word-spacing:1.440000px;}
.ws85{word-spacing:1.458000px;}
.ws64{word-spacing:1.512000px;}
.ws9a{word-spacing:1.674000px;}
.ws4a{word-spacing:1.728000px;}
.ws7f{word-spacing:1.782000px;}
.ws2e{word-spacing:1.836000px;}
.ws58{word-spacing:1.890000px;}
.wscf{word-spacing:1.935000px;}
.ws50{word-spacing:1.944000px;}
.ws42{word-spacing:1.998000px;}
.ws27{word-spacing:2.052000px;}
.ws98{word-spacing:2.106000px;}
.ws43{word-spacing:2.160000px;}
.ws23{word-spacing:2.214000px;}
.ws3f{word-spacing:2.268000px;}
.ws95{word-spacing:2.430000px;}
.wsc3{word-spacing:2.520000px;}
.ws32{word-spacing:2.538000px;}
.ws60{word-spacing:2.592000px;}
.ws5a{word-spacing:2.700000px;}
.wsf{word-spacing:2.754000px;}
.wsb4{word-spacing:2.808000px;}
.wsbb{word-spacing:2.835000px;}
.ws76{word-spacing:2.862000px;}
.wsb0{word-spacing:2.970000px;}
.wsb9{word-spacing:3.015000px;}
.ws67{word-spacing:3.024000px;}
.wsa{word-spacing:3.132000px;}
.ws11{word-spacing:3.186000px;}
.wsc4{word-spacing:3.240000px;}
.ws56{word-spacing:3.294000px;}
.ws88{word-spacing:3.456000px;}
.ws80{word-spacing:3.618000px;}
.ws1e{word-spacing:3.726000px;}
.ws4b{word-spacing:3.780000px;}
.ws82{word-spacing:3.888000px;}
.wsb1{word-spacing:3.942000px;}
.ws41{word-spacing:3.996000px;}
.ws21{word-spacing:4.158000px;}
.wsad{word-spacing:4.212000px;}
.wse3{word-spacing:4.266000px;}
.wsb2{word-spacing:4.320000px;}
.wsde{word-spacing:4.410000px;}
.ws9d{word-spacing:4.482000px;}
.ws28{word-spacing:4.536000px;}
.ws9{word-spacing:4.752000px;}
.ws1b{word-spacing:4.806000px;}
.ws78{word-spacing:4.860000px;}
.ws20{word-spacing:4.914000px;}
.wsd6{word-spacing:4.950000px;}
.wsd7{word-spacing:4.995000px;}
.ws57{word-spacing:5.022000px;}
.ws3b{word-spacing:5.076000px;}
.wscc{word-spacing:5.085000px;}
.ws3a{word-spacing:5.130000px;}
.wsca{word-spacing:5.220000px;}
.wscb{word-spacing:5.265000px;}
.ws8{word-spacing:5.292000px;}
.wse2{word-spacing:5.346000px;}
.wsb{word-spacing:5.508000px;}
.ws9c{word-spacing:5.562000px;}
.wsb7{word-spacing:5.625000px;}
.wsb8{word-spacing:5.670000px;}
.ws45{word-spacing:5.724000px;}
.wsd4{word-spacing:5.760000px;}
.ws40{word-spacing:5.940000px;}
.ws2c{word-spacing:5.994000px;}
.ws83{word-spacing:6.048000px;}
.ws79{word-spacing:6.102000px;}
.wsac{word-spacing:6.210000px;}
.ws4d{word-spacing:6.264000px;}
.wsc5{word-spacing:6.300000px;}
.ws8e{word-spacing:6.372000px;}
.ws13{word-spacing:6.477000px;}
.ws99{word-spacing:6.480000px;}
.ws75{word-spacing:6.588000px;}
.wsa2{word-spacing:6.642000px;}
.ws46{word-spacing:6.750000px;}
.ws3e{word-spacing:6.912000px;}
.ws6a{word-spacing:7.020000px;}
.ws87{word-spacing:7.074000px;}
.ws5{word-spacing:7.182000px;}
.ws8d{word-spacing:7.614000px;}
.wsb3{word-spacing:7.668000px;}
.ws3c{word-spacing:7.776000px;}
.ws62{word-spacing:7.830000px;}
.ws86{word-spacing:7.884000px;}
.ws93{word-spacing:7.938000px;}
.ws4{word-spacing:7.992000px;}
.wsc6{word-spacing:8.055000px;}
.wsd3{word-spacing:8.235000px;}
.ws18{word-spacing:8.370000px;}
.wsa1{word-spacing:8.478000px;}
.ws49{word-spacing:8.532000px;}
.ws25{word-spacing:8.802000px;}
.ws5f{word-spacing:8.856000px;}
.ws94{word-spacing:9.396000px;}
.ws4e{word-spacing:9.504000px;}
.wsc{word-spacing:9.558000px;}
.wsd{word-spacing:9.774000px;}
.ws2d{word-spacing:10.044000px;}
.ws48{word-spacing:10.098000px;}
.ws10{word-spacing:10.908000px;}
.ws19{word-spacing:11.772000px;}
.ws9f{word-spacing:14.688000px;}
.wsbe{word-spacing:14.985000px;}
.ws89{word-spacing:16.092000px;}
.ws66{word-spacing:17.010000px;}
.ws6e{word-spacing:64.063810px;}
.ws71{word-spacing:72.421840px;}
.ws6f{word-spacing:82.921840px;}
.ws74{word-spacing:93.463810px;}
.ws73{word-spacing:794.650218px;}
.ws6d{word-spacing:837.738018px;}
._51{margin-left:-18.270000px;}
._50{margin-left:-16.515000px;}
._53{margin-left:-15.435000px;}
._43{margin-left:-14.004043px;}
._d{margin-left:-12.534000px;}
._b{margin-left:-11.422200px;}
._9{margin-left:-9.596400px;}
._f{margin-left:-7.907405px;}
._10{margin-left:-6.801639px;}
._5{margin-left:-5.253600px;}
._2{margin-left:-4.212000px;}
._1{margin-left:-2.917200px;}
._0{margin-left:-1.830000px;}
._4{width:1.442400px;}
._11{width:2.753430px;}
._a{width:4.072200px;}
._c{width:5.898000px;}
._e{width:6.999000px;}
._14{width:8.235403px;}
._4e{width:9.989597px;}
._13{width:11.880000px;}
._12{width:12.894581px;}
._8{width:14.308764px;}
._4d{width:15.705000px;}
._3{width:17.884779px;}
._52{width:23.075980px;}
._7{width:26.209771px;}
._1b{width:42.777618px;}
._42{width:50.163643px;}
._20{width:51.799840px;}
._40{width:58.479643px;}
._1e{width:63.163218px;}
._3e{width:71.841059px;}
._45{width:81.079173px;}
._1f{width:82.837810px;}
._35{width:91.197084px;}
._1a{width:96.678018px;}
._46{width:101.947198px;}
._16{width:102.997810px;}
._32{width:112.365643px;}
._3b{width:116.649643px;}
._21{width:119.793618px;}
._44{width:121.993198px;}
._19{width:123.997840px;}
._39{width:130.809059px;}
._47{width:141.559173px;}
._1d{width:143.317810px;}
._3d{width:150.260427px;}
._30{width:151.563084px;}
._18{width:152.893810px;}
._37{width:156.689402px;}
._27{width:163.477810px;}
._23{width:193.213810px;}
._2e{width:206.848192px;}
._38{width:250.881643px;}
._41{width:257.631602px;}
._33{width:285.140402px;}
._34{width:327.314402px;}
._31{width:386.594402px;}
._4a{width:431.350800px;}
._24{width:436.704018px;}
._36{width:448.850402px;}
._4c{width:450.550775px;}
._3f{width:458.732402px;}
._49{width:469.198775px;}
._48{width:510.112800px;}
._4b{width:529.678775px;}
._28{width:539.085618px;}
._15{width:553.671618px;}
._26{width:559.740018px;}
._3c{width:567.722402px;}
._1c{width:585.804018px;}
._3a{width:611.864402px;}
._2b{width:623.184018px;}
._2f{width:642.584402px;}
._2a{width:649.419618px;}
._2d{width:667.013910px;}
._22{width:673.332018px;}
._2c{width:680.094018px;}
._17{width:754.074018px;}
._29{width:763.464018px;}
._25{width:791.772018px;}
._4f{width:2238.252077px;}
._6{width:2269.013429px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.400000px;}
.fs5{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:27.634050px;}
.y31{bottom:27.643049px;}
.y92{bottom:66.088348px;}
.y2e{bottom:68.031452px;}
.y5f{bottom:78.524998px;}
.y78{bottom:78.525152px;}
.y91{bottom:81.088348px;}
.y2d{bottom:83.031452px;}
.y18a{bottom:87.191998px;}
.y10f{bottom:87.591001px;}
.y152{bottom:89.726252px;}
.yf6{bottom:95.025152px;}
.y90{bottom:96.088348px;}
.y2c{bottom:98.031452px;}
.y189{bottom:99.792000px;}
.y1d2{bottom:101.415905px;}
.y10e{bottom:102.590996px;}
.y151{bottom:104.726246px;}
.yc8{bottom:110.426846px;}
.y8f{bottom:111.088348px;}
.y188{bottom:112.392002px;}
.yc7{bottom:116.051846px;}
.y1d1{bottom:116.415905px;}
.y2b{bottom:117.430195px;}
.y10d{bottom:117.590996px;}
.y187{bottom:124.992004px;}
.y8e{bottom:126.088348px;}
.yf5{bottom:126.926846px;}
.y150{bottom:132.482105px;}
.y10c{bottom:132.590996px;}
.y186{bottom:137.591995px;}
.yc6{bottom:139.259846px;}
.y8d{bottom:141.088348px;}
.yf4{bottom:144.509846px;}
.y14f{bottom:147.482105px;}
.y10b{bottom:147.590996px;}
.y1d0{bottom:149.415905px;}
.y185{bottom:150.191998px;}
.y8c{bottom:156.088348px;}
.y130{bottom:156.228905px;}
.yc5{bottom:157.012950px;}
.yf3{bottom:162.262950px;}
.y14e{bottom:162.482105px;}
.y10a{bottom:162.590996px;}
.y184{bottom:162.792000px;}
.y8b{bottom:171.088348px;}
.y12f{bottom:171.228905px;}
.yc4{bottom:174.766045px;}
.y183{bottom:175.392002px;}
.y2a{bottom:176.829150px;}
.y14d{bottom:177.482105px;}
.y109{bottom:177.590996px;}
.yf2{bottom:180.016045px;}
.y1cf{bottom:182.415905px;}
.y8a{bottom:186.088348px;}
.y182{bottom:187.992004px;}
.y29{bottom:191.829150px;}
.yc3{bottom:192.519150px;}
.y108{bottom:192.590996px;}
.y1ce{bottom:197.415894px;}
.yf1{bottom:197.769150px;}
.yc2{bottom:198.144150px;}
.y181{bottom:200.591995px;}
.y89{bottom:201.088348px;}
.y14c{bottom:205.238091px;}
.y28{bottom:206.829140px;}
.y107{bottom:207.590996px;}
.y180{bottom:213.192009px;}
.yf0{bottom:215.522255px;}
.y88{bottom:216.088348px;}
.y14b{bottom:220.238091px;}
.yc1{bottom:221.522095px;}
.y27{bottom:221.829140px;}
.y106{bottom:222.590996px;}
.y17f{bottom:225.792000px;}
.yc0{bottom:227.147095px;}
.y1cd{bottom:230.415894px;}
.y87{bottom:231.088348px;}
.yef{bottom:233.275360px;}
.y14a{bottom:235.238091px;}
.y26{bottom:236.829140px;}
.y105{bottom:237.590996px;}
.y17e{bottom:238.391991px;}
.y1cc{bottom:245.415894px;}
.y86{bottom:246.088348px;}
.y149{bottom:250.238091px;}
.ybf{bottom:250.525200px;}
.y17d{bottom:250.992004px;}
.yee{bottom:251.028305px;}
.y25{bottom:251.829140px;}
.y104{bottom:252.590996px;}
.ybe{bottom:256.150200px;}
.y1cb{bottom:260.415894px;}
.y85{bottom:261.088348px;}
.y17c{bottom:263.591995px;}
.y148{bottom:265.238091px;}
.y24{bottom:266.829140px;}
.y103{bottom:267.590996px;}
.yed{bottom:268.781410px;}
.y1ca{bottom:275.415894px;}
.y79{bottom:275.805290px;}
.y84{bottom:276.088348px;}
.y17b{bottom:276.192009px;}
.ybd{bottom:279.528305px;}
.y147{bottom:280.238091px;}
.y23{bottom:281.829140px;}
.y102{bottom:282.590996px;}
.ybc{bottom:285.153305px;}
.yec{bottom:286.534492px;}
.y17a{bottom:288.792000px;}
.y83{bottom:295.745842px;}
.y22{bottom:296.829140px;}
.y101{bottom:297.590996px;}
.y179{bottom:301.391991px;}
.yeb{bottom:304.287598px;}
.y82{bottom:306.088348px;}
.y1c9{bottom:308.415894px;}
.ybb{bottom:308.531410px;}
.y146{bottom:310.238091px;}
.y21{bottom:311.829140px;}
.y100{bottom:312.590996px;}
.y178{bottom:313.992004px;}
.y1c8{bottom:321.015907px;}
.y81{bottom:321.088348px;}
.yea{bottom:321.832352px;}
.y77{bottom:322.980148px;}
.yf7{bottom:323.614197px;}
.y60{bottom:324.045456px;}
.y145{bottom:325.238091px;}
.yba{bottom:326.284492px;}
.y20{bottom:326.829140px;}
.yff{bottom:327.590996px;}
.yb9{bottom:331.909492px;}
.y1c7{bottom:333.615898px;}
.y80{bottom:336.088348px;}
.y76{bottom:337.980148px;}
.y144{bottom:340.237953px;}
.y1f{bottom:341.829140px;}
.yfe{bottom:342.590996px;}
.y1c6{bottom:346.215889px;}
.y7f{bottom:351.088348px;}
.y75{bottom:352.980148px;}
.y143{bottom:355.237953px;}
.yb8{bottom:355.287598px;}
.y1e{bottom:356.829140px;}
.yfd{bottom:357.590996px;}
.y1c5{bottom:358.815903px;}
.yb7{bottom:360.912598px;}
.y177{bottom:364.968452px;}
.y7e{bottom:366.088348px;}
.y74{bottom:367.980148px;}
.y142{bottom:370.237953px;}
.y1c4{bottom:371.415894px;}
.y1d{bottom:371.829140px;}
.yfc{bottom:372.590996px;}
.ye9{bottom:379.980148px;}
.y7d{bottom:381.088348px;}
.y73{bottom:382.980148px;}
.y1c3{bottom:384.015884px;}
.yb6{bottom:384.290680px;}
.y5e{bottom:384.468292px;}
.y141{bottom:385.237930px;}
.y1c{bottom:386.829163px;}
.ye8{bottom:394.980148px;}
.y7c{bottom:396.088348px;}
.y176{bottom:396.468430px;}
.y1c2{bottom:396.615921px;}
.y72{bottom:397.980148px;}
.y5d{bottom:399.468292px;}
.y140{bottom:400.237930px;}
.y1b{bottom:401.829163px;}
.yb5{bottom:402.043671px;}
.yfb{bottom:402.591019px;}
.y1c1{bottom:409.215912px;}
.ye7{bottom:409.980148px;}
.y7b{bottom:411.088348px;}
.y175{bottom:411.468430px;}
.y71{bottom:412.980148px;}
.y13f{bottom:415.237930px;}
.y1a{bottom:416.829163px;}
.yfa{bottom:417.591019px;}
.yb4{bottom:419.796753px;}
.y1c0{bottom:421.815903px;}
.ye6{bottom:424.980148px;}
.y7a{bottom:426.088348px;}
.y174{bottom:426.468430px;}
.y5c{bottom:427.224152px;}
.y70{bottom:427.980148px;}
.y13e{bottom:430.237930px;}
.y19{bottom:431.829163px;}
.yf9{bottom:432.591019px;}
.y1bf{bottom:434.415894px;}
.yb3{bottom:437.549835px;}
.ye5{bottom:439.980148px;}
.y5b{bottom:442.224152px;}
.y13d{bottom:445.237930px;}
.y18{bottom:446.829163px;}
.y1be{bottom:447.015884px;}
.yf8{bottom:447.591019px;}
.ye4{bottom:454.980148px;}
.yb2{bottom:455.302963px;}
.y6f{bottom:457.980148px;}
.y173{bottom:459.468430px;}
.y1bd{bottom:459.615921px;}
.y13c{bottom:460.237930px;}
.y5a{bottom:469.980148px;}
.y1bc{bottom:472.215912px;}
.y6e{bottom:472.980148px;}
.yb1{bottom:473.056046px;}
.y172{bottom:474.468430px;}
.y13b{bottom:475.237930px;}
.yb0{bottom:478.681046px;}
.y17{bottom:479.829163px;}
.y93{bottom:483.949631px;}
.y1bb{bottom:484.815903px;}
.y59{bottom:484.980148px;}
.y6d{bottom:487.980148px;}
.y171{bottom:489.468430px;}
.y13a{bottom:490.237930px;}
.y1ba{bottom:497.415894px;}
.y58{bottom:499.980148px;}
.yaf{bottom:502.059128px;}
.y6c{bottom:502.980148px;}
.y170{bottom:504.468430px;}
.y139{bottom:505.237930px;}
.y11e{bottom:505.452300px;}
.yae{bottom:507.684128px;}
.y16{bottom:509.085022px;}
.y1b9{bottom:510.015884px;}
.y57{bottom:514.980148px;}
.y6b{bottom:517.980148px;}
.y16f{bottom:519.468430px;}
.y138{bottom:520.237930px;}
.y11d{bottom:521.952300px;}
.y1b8{bottom:522.615921px;}
.y15{bottom:525.585022px;}
.ye3{bottom:529.980148px;}
.yad{bottom:531.062119px;}
.y6a{bottom:532.980148px;}
.y16e{bottom:534.468430px;}
.y1b7{bottom:535.215912px;}
.y137{bottom:535.237930px;}
.y11c{bottom:538.452300px;}
.y14{bottom:542.085022px;}
.y56{bottom:544.980148px;}
.y1b6{bottom:547.815903px;}
.y69{bottom:547.980148px;}
.yac{bottom:548.815200px;}
.y136{bottom:550.237930px;}
.y13{bottom:558.585022px;}
.y55{bottom:559.980148px;}
.y1b5{bottom:560.415894px;}
.y16d{bottom:562.224289px;}
.y68{bottom:562.980148px;}
.y135{bottom:565.237930px;}
.yab{bottom:566.359955px;}
.y11b{bottom:570.354172px;}
.y1b4{bottom:573.015884px;}
.y54{bottom:574.980148px;}
.y12{bottom:575.085022px;}
.y16c{bottom:577.224289px;}
.y67{bottom:577.980148px;}
.y131{bottom:578.749786px;}
.y134{bottom:580.237930px;}
.yaa{bottom:584.376755px;}
.y1b3{bottom:585.615921px;}
.y11a{bottom:587.937149px;}
.y53{bottom:589.980148px;}
.y11{bottom:591.585022px;}
.y16b{bottom:592.224289px;}
.y66{bottom:592.980148px;}
.y1b2{bottom:598.215912px;}
.ya9{bottom:602.129837px;}
.y52{bottom:604.980148px;}
.y119{bottom:605.690231px;}
.y16a{bottom:607.224289px;}
.y65{bottom:607.980148px;}
.y10{bottom:608.085022px;}
.y1b1{bottom:610.815903px;}
.ya8{bottom:619.882782px;}
.y51{bottom:619.980148px;}
.y169{bottom:622.224289px;}
.y64{bottom:622.980148px;}
.y1b0{bottom:623.415894px;}
.y118{bottom:623.443359px;}
.yf{bottom:624.585022px;}
.y50{bottom:634.980148px;}
.y1af{bottom:636.015884px;}
.y168{bottom:637.224289px;}
.ya7{bottom:637.635910px;}
.y63{bottom:637.980148px;}
.y133{bottom:638.099258px;}
.ye{bottom:641.085022px;}
.y117{bottom:641.196442px;}
.y1ae{bottom:648.615921px;}
.ye2{bottom:649.980148px;}
.y167{bottom:652.224289px;}
.y62{bottom:652.980148px;}
.y132{bottom:653.099258px;}
.ya6{bottom:655.388992px;}
.yd{bottom:657.585022px;}
.y116{bottom:658.949387px;}
.y1ad{bottom:661.215912px;}
.ye1{bottom:664.980148px;}
.y166{bottom:667.224289px;}
.y4f{bottom:667.980148px;}
.ya5{bottom:673.142120px;}
.y1ac{bottom:673.815903px;}
.yc{bottom:674.085022px;}
.y115{bottom:676.702515px;}
.ya4{bottom:678.767120px;}
.ye0{bottom:679.980148px;}
.y165{bottom:682.224289px;}
.y4e{bottom:682.980148px;}
.y1ab{bottom:686.415894px;}
.yb{bottom:690.585022px;}
.y114{bottom:694.455597px;}
.ydf{bottom:694.980148px;}
.y164{bottom:697.224289px;}
.y4d{bottom:697.980148px;}
.y1aa{bottom:699.015884px;}
.ya3{bottom:702.145203px;}
.ya{bottom:707.085022px;}
.ya2{bottom:707.770203px;}
.yde{bottom:709.980148px;}
.y1a9{bottom:711.615921px;}
.y113{bottom:712.208679px;}
.y163{bottom:712.224289px;}
.y4c{bottom:712.980148px;}
.y9{bottom:723.585022px;}
.y1a8{bottom:724.215912px;}
.ydd{bottom:724.980148px;}
.y162{bottom:727.224289px;}
.y4b{bottom:727.980148px;}
.y112{bottom:729.961807px;}
.ya1{bottom:731.148285px;}
.ya0{bottom:736.773285px;}
.y1a7{bottom:736.815903px;}
.ydc{bottom:739.980148px;}
.y8{bottom:740.085022px;}
.y161{bottom:742.224289px;}
.y4a{bottom:742.980148px;}
.y111{bottom:747.714890px;}
.y1a6{bottom:749.415894px;}
.ydb{bottom:754.980148px;}
.y7{bottom:756.585022px;}
.y160{bottom:757.224289px;}
.y49{bottom:757.980148px;}
.y9f{bottom:760.151230px;}
.y1a5{bottom:762.015884px;}
.y110{bottom:765.259506px;}
.y9e{bottom:765.776230px;}
.y11f{bottom:767.041489px;}
.yda{bottom:769.980194px;}
.y15f{bottom:772.224335px;}
.y48{bottom:772.980194px;}
.y6{bottom:773.085022px;}
.y1a4{bottom:774.615875px;}
.yd9{bottom:784.980194px;}
.y1a3{bottom:787.215912px;}
.y15e{bottom:787.224335px;}
.y47{bottom:787.980194px;}
.y9d{bottom:789.154358px;}
.y9c{bottom:794.779358px;}
.y1a2{bottom:799.815857px;}
.yd8{bottom:799.980194px;}
.y94{bottom:800.030273px;}
.y15d{bottom:802.224335px;}
.y5{bottom:802.978821px;}
.y46{bottom:802.980194px;}
.y1a1{bottom:812.415894px;}
.yd7{bottom:814.980194px;}
.y15c{bottom:817.224335px;}
.y45{bottom:817.980194px;}
.y9b{bottom:818.157440px;}
.y1e2{bottom:820.187256px;}
.y4{bottom:820.978821px;}
.y1a0{bottom:825.015930px;}
.y12e{bottom:826.390961px;}
.yd6{bottom:829.980194px;}
.y15b{bottom:832.224335px;}
.y44{bottom:832.980194px;}
.y9a{bottom:835.910522px;}
.y19f{bottom:837.615875px;}
.y99{bottom:841.535522px;}
.y12d{bottom:842.890961px;}
.yd5{bottom:844.980194px;}
.y15a{bottom:847.224335px;}
.y43{bottom:847.980194px;}
.y19e{bottom:850.215912px;}
.y1e1{bottom:851.387421px;}
.y3{bottom:853.945679px;}
.y95{bottom:859.379517px;}
.y12c{bottom:859.390961px;}
.yd4{bottom:859.980194px;}
.y159{bottom:862.224335px;}
.y19d{bottom:862.815857px;}
.y42{bottom:862.980194px;}
.y98{bottom:864.913605px;}
.y1e0{bottom:866.387421px;}
.yd3{bottom:874.980194px;}
.y19c{bottom:875.415894px;}
.y158{bottom:877.224335px;}
.y41{bottom:877.980194px;}
.y1df{bottom:881.387421px;}
.y97{bottom:882.666779px;}
.y19b{bottom:888.015930px;}
.yd2{bottom:889.980194px;}
.y12b{bottom:891.292969px;}
.y157{bottom:892.224335px;}
.y40{bottom:892.980194px;}
.y1de{bottom:896.387421px;}
.y2{bottom:898.945679px;}
.y96{bottom:900.211395px;}
.y19a{bottom:900.615875px;}
.yc9{bottom:901.993378px;}
.yd1{bottom:904.980194px;}
.y156{bottom:907.224335px;}
.y3f{bottom:907.980194px;}
.y12a{bottom:908.875946px;}
.y1dd{bottom:911.387421px;}
.y199{bottom:913.215912px;}
.yd0{bottom:919.980194px;}
.y155{bottom:922.224335px;}
.y3e{bottom:922.980194px;}
.y198{bottom:925.815857px;}
.y1dc{bottom:926.387421px;}
.y129{bottom:926.628937px;}
.y154{bottom:937.224335px;}
.y3d{bottom:937.980194px;}
.y197{bottom:938.415894px;}
.y1db{bottom:941.387421px;}
.y1{bottom:943.945679px;}
.y128{bottom:944.382019px;}
.ycf{bottom:949.980194px;}
.y196{bottom:951.015930px;}
.y2f{bottom:952.050934px;}
.y3c{bottom:952.980194px;}
.y1da{bottom:956.387421px;}
.y127{bottom:962.135100px;}
.y195{bottom:963.615875px;}
.yce{bottom:964.980194px;}
.y3b{bottom:967.980194px;}
.y1d9{bottom:971.387421px;}
.y194{bottom:976.215912px;}
.y126{bottom:979.888184px;}
.ycd{bottom:979.980194px;}
.y3a{bottom:982.980194px;}
.y1d8{bottom:986.387421px;}
.y193{bottom:988.815857px;}
.ycc{bottom:994.980194px;}
.y125{bottom:997.641266px;}
.y39{bottom:997.980194px;}
.y192{bottom:1001.415894px;}
.ycb{bottom:1009.980194px;}
.y1d7{bottom:1010.387421px;}
.y38{bottom:1012.980194px;}
.y191{bottom:1014.015930px;}
.y124{bottom:1015.394440px;}
.yca{bottom:1024.980194px;}
.y1d6{bottom:1025.387421px;}
.y190{bottom:1026.615875px;}
.y37{bottom:1027.980194px;}
.y123{bottom:1033.147522px;}
.y18f{bottom:1039.215912px;}
.y153{bottom:1039.980194px;}
.y36{bottom:1042.980194px;}
.y1d5{bottom:1047.955811px;}
.y122{bottom:1050.900421px;}
.y18e{bottom:1051.815857px;}
.y35{bottom:1057.980194px;}
.y18d{bottom:1064.415894px;}
.y121{bottom:1068.653595px;}
.y1d4{bottom:1070.524384px;}
.y34{bottom:1072.980194px;}
.y18c{bottom:1077.015930px;}
.y1d3{bottom:1085.524384px;}
.y120{bottom:1086.198303px;}
.y33{bottom:1087.980194px;}
.y18b{bottom:1089.615875px;}
.y32{bottom:1140.708343px;}
.y61{bottom:1140.800079px;}
.hb{height:30.939697px;}
.h10{height:34.523438px;}
.h23{height:35.411133px;}
.h17{height:37.384200px;}
.h6{height:38.838867px;}
.h19{height:41.538000px;}
.h18{height:43.008000px;}
.h11{height:43.154297px;}
.hd{height:43.393819px;}
.h25{height:44.505000px;}
.h21{height:44.595468px;}
.h1c{height:44.595560px;}
.h1f{height:44.595651px;}
.h26{height:45.090000px;}
.hf{height:45.679688px;}
.h24{height:46.080000px;}
.h13{height:47.469727px;}
.hc{height:48.534668px;}
.h5{height:50.908081px;}
.h7{height:53.406000px;}
.h14{height:54.108000px;}
.h15{height:55.296000px;}
.h12{height:56.013350px;}
.h8{height:56.014083px;}
.h16{height:56.014174px;}
.ha{height:56.014179px;}
.h1d{height:56.014197px;}
.h1e{height:56.014217px;}
.h9{height:56.014266px;}
.h20{height:56.014270px;}
.h22{height:56.014815px;}
.h4{height:57.128906px;}
.h1a{height:64.038000px;}
.h1b{height:64.038183px;}
.he{height:102.832031px;}
.h3{height:112.201172px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:61.653448px;}
.xa{left:132.657898px;}
.x8{left:137.369099px;}
.x3{left:140.352448px;}
.x7{left:151.938446px;}
.xd{left:193.338593px;}
.xc{left:205.218590px;}
.x1{left:233.858253px;}
.xb{left:238.569305px;}
.xe{left:248.740196px;}
.x2{left:251.858391px;}
.xf{left:252.992249px;}
.x5{left:338.775604px;}
.x9{left:464.243866px;}
.x6{left:585.853363px;}
@media print{
.v5{vertical-align:-16.560059pt;}
.v3{vertical-align:-15.639974pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.879964pt;}
.v4{vertical-align:15.639974pt;}
.v2{vertical-align:16.559896pt;}
.v1{vertical-align:18.400065pt;}
.v6{vertical-align:20.000000pt;}
.ls1a{letter-spacing:-4.320000pt;}
.ls22{letter-spacing:-2.000000pt;}
.ls16{letter-spacing:-1.605333pt;}
.ls28{letter-spacing:-1.240000pt;}
.ls20{letter-spacing:-0.920000pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls15{letter-spacing:-0.709333pt;}
.ls27{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.624000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.560000pt;}
.ls2a{letter-spacing:-0.520000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.ls6{letter-spacing:0.000007pt;}
.ls5{letter-spacing:0.000011pt;}
.ls14{letter-spacing:0.000036pt;}
.ls13{letter-spacing:0.000039pt;}
.ls1b{letter-spacing:0.000045pt;}
.ls1e{letter-spacing:0.000048pt;}
.ls23{letter-spacing:0.000078pt;}
.ls4{letter-spacing:0.000092pt;}
.ls10{letter-spacing:0.000207pt;}
.lsf{letter-spacing:0.000279pt;}
.lsb{letter-spacing:0.000658pt;}
.ls7{letter-spacing:0.009997pt;}
.ls1{letter-spacing:0.011779pt;}
.ls2{letter-spacing:0.012671pt;}
.ls0{letter-spacing:0.012752pt;}
.ls3{letter-spacing:0.012833pt;}
.ls19{letter-spacing:0.112000pt;}
.ls24{letter-spacing:0.200000pt;}
.ls26{letter-spacing:2.390378pt;}
.ls8{letter-spacing:2.666667pt;}
.ls25{letter-spacing:4.656003pt;}
.ls1c{letter-spacing:37.794686pt;}
.ls1d{letter-spacing:81.956795pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa5{word-spacing:-12.085333pt;}
.ws36{word-spacing:-10.992000pt;}
.ws16{word-spacing:-10.896000pt;}
.ws35{word-spacing:-10.704000pt;}
.ws38{word-spacing:-10.416000pt;}
.wsa4{word-spacing:-10.320000pt;}
.ws17{word-spacing:-9.984000pt;}
.wsc9{word-spacing:-9.280000pt;}
.wsc1{word-spacing:-9.160000pt;}
.wsc8{word-spacing:-9.080000pt;}
.wsa6{word-spacing:-8.680000pt;}
.wsc0{word-spacing:-8.640000pt;}
.wsbf{word-spacing:-8.600000pt;}
.ws70{word-spacing:-8.474667pt;}
.wsa7{word-spacing:-8.240000pt;}
.ws8c{word-spacing:-8.101333pt;}
.ws72{word-spacing:-8.026667pt;}
.ws6c{word-spacing:-7.765333pt;}
.ws37{word-spacing:-7.694400pt;}
.ws0{word-spacing:-7.627200pt;}
.wsa8{word-spacing:-7.160000pt;}
.ws1{word-spacing:-6.346666pt;}
.ws44{word-spacing:-4.896000pt;}
.ws53{word-spacing:-4.368000pt;}
.ws96{word-spacing:-3.808000pt;}
.ws1f{word-spacing:-3.408000pt;}
.ws7a{word-spacing:-2.928000pt;}
.ws9b{word-spacing:-2.880000pt;}
.ws15{word-spacing:-2.629333pt;}
.wsd0{word-spacing:-2.520000pt;}
.wsbd{word-spacing:-2.240000pt;}
.ws1c{word-spacing:-2.160000pt;}
.ws7d{word-spacing:-2.112000pt;}
.ws7e{word-spacing:-2.016000pt;}
.ws2a{word-spacing:-1.968000pt;}
.ws9e{word-spacing:-1.872000pt;}
.ws51{word-spacing:-1.824000pt;}
.wsdc{word-spacing:-1.800000pt;}
.ws30{word-spacing:-1.776000pt;}
.ws47{word-spacing:-1.680000pt;}
.wsa3{word-spacing:-1.632000pt;}
.ws8a{word-spacing:-1.536000pt;}
.wsb6{word-spacing:-1.520000pt;}
.ws33{word-spacing:-1.488000pt;}
.wsb5{word-spacing:-1.480000pt;}
.ws3d{word-spacing:-1.440000pt;}
.ws14{word-spacing:-1.405333pt;}
.ws84{word-spacing:-1.392000pt;}
.wsd5{word-spacing:-1.360000pt;}
.ws59{word-spacing:-1.344000pt;}
.ws92{word-spacing:-1.248000pt;}
.wsc2{word-spacing:-1.240000pt;}
.ws54{word-spacing:-1.200000pt;}
.wsbc{word-spacing:-1.160000pt;}
.ws90{word-spacing:-1.152000pt;}
.wsdf{word-spacing:-1.120000pt;}
.ws61{word-spacing:-1.104000pt;}
.ws7b{word-spacing:-1.056000pt;}
.ws5b{word-spacing:-1.008000pt;}
.wsc7{word-spacing:-0.960000pt;}
.ws68{word-spacing:-0.912000pt;}
.wsaf{word-spacing:-0.864000pt;}
.ws69{word-spacing:-0.816000pt;}
.wsa0{word-spacing:-0.768000pt;}
.ws5c{word-spacing:-0.720000pt;}
.ws91{word-spacing:-0.672000pt;}
.wsab{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.528000pt;}
.ws8f{word-spacing:-0.480000pt;}
.wsd2{word-spacing:-0.440000pt;}
.ws81{word-spacing:-0.432000pt;}
.wsd1{word-spacing:-0.400000pt;}
.wsae{word-spacing:-0.384000pt;}
.wscd{word-spacing:-0.320000pt;}
.ws8b{word-spacing:-0.298667pt;}
.ws6b{word-spacing:-0.288000pt;}
.wsba{word-spacing:-0.280000pt;}
.wse1{word-spacing:-0.240000pt;}
.ws22{word-spacing:-0.192000pt;}
.wsda{word-spacing:-0.160000pt;}
.ws52{word-spacing:-0.144000pt;}
.ws39{word-spacing:-0.096000pt;}
.ws4f{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws97{word-spacing:0.048000pt;}
.ws12{word-spacing:0.096000pt;}
.ws77{word-spacing:0.112000pt;}
.ws29{word-spacing:0.144000pt;}
.wse0{word-spacing:0.160000pt;}
.ws2b{word-spacing:0.192000pt;}
.ws63{word-spacing:0.240000pt;}
.ws24{word-spacing:0.384000pt;}
.ws5e{word-spacing:0.432000pt;}
.wsdb{word-spacing:0.440000pt;}
.ws34{word-spacing:0.480000pt;}
.ws6{word-spacing:0.576000pt;}
.ws31{word-spacing:0.624000pt;}
.wsaa{word-spacing:0.672000pt;}
.wsa9{word-spacing:0.720000pt;}
.ws5d{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.816000pt;}
.wsce{word-spacing:0.840000pt;}
.wse{word-spacing:0.864000pt;}
.ws1d{word-spacing:0.912000pt;}
.wsdd{word-spacing:1.000000pt;}
.ws65{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.ws7c{word-spacing:1.104000pt;}
.ws2f{word-spacing:1.152000pt;}
.ws1a{word-spacing:1.200000pt;}
.wsd9{word-spacing:1.240000pt;}
.ws55{word-spacing:1.248000pt;}
.wsd8{word-spacing:1.280000pt;}
.ws85{word-spacing:1.296000pt;}
.ws64{word-spacing:1.344000pt;}
.ws9a{word-spacing:1.488000pt;}
.ws4a{word-spacing:1.536000pt;}
.ws7f{word-spacing:1.584000pt;}
.ws2e{word-spacing:1.632000pt;}
.ws58{word-spacing:1.680000pt;}
.wscf{word-spacing:1.720000pt;}
.ws50{word-spacing:1.728000pt;}
.ws42{word-spacing:1.776000pt;}
.ws27{word-spacing:1.824000pt;}
.ws98{word-spacing:1.872000pt;}
.ws43{word-spacing:1.920000pt;}
.ws23{word-spacing:1.968000pt;}
.ws3f{word-spacing:2.016000pt;}
.ws95{word-spacing:2.160000pt;}
.wsc3{word-spacing:2.240000pt;}
.ws32{word-spacing:2.256000pt;}
.ws60{word-spacing:2.304000pt;}
.ws5a{word-spacing:2.400000pt;}
.wsf{word-spacing:2.448000pt;}
.wsb4{word-spacing:2.496000pt;}
.wsbb{word-spacing:2.520000pt;}
.ws76{word-spacing:2.544000pt;}
.wsb0{word-spacing:2.640000pt;}
.wsb9{word-spacing:2.680000pt;}
.ws67{word-spacing:2.688000pt;}
.wsa{word-spacing:2.784000pt;}
.ws11{word-spacing:2.832000pt;}
.wsc4{word-spacing:2.880000pt;}
.ws56{word-spacing:2.928000pt;}
.ws88{word-spacing:3.072000pt;}
.ws80{word-spacing:3.216000pt;}
.ws1e{word-spacing:3.312000pt;}
.ws4b{word-spacing:3.360000pt;}
.ws82{word-spacing:3.456000pt;}
.wsb1{word-spacing:3.504000pt;}
.ws41{word-spacing:3.552000pt;}
.ws21{word-spacing:3.696000pt;}
.wsad{word-spacing:3.744000pt;}
.wse3{word-spacing:3.792000pt;}
.wsb2{word-spacing:3.840000pt;}
.wsde{word-spacing:3.920000pt;}
.ws9d{word-spacing:3.984000pt;}
.ws28{word-spacing:4.032000pt;}
.ws9{word-spacing:4.224000pt;}
.ws1b{word-spacing:4.272000pt;}
.ws78{word-spacing:4.320000pt;}
.ws20{word-spacing:4.368000pt;}
.wsd6{word-spacing:4.400000pt;}
.wsd7{word-spacing:4.440000pt;}
.ws57{word-spacing:4.464000pt;}
.ws3b{word-spacing:4.512000pt;}
.wscc{word-spacing:4.520000pt;}
.ws3a{word-spacing:4.560000pt;}
.wsca{word-spacing:4.640000pt;}
.wscb{word-spacing:4.680000pt;}
.ws8{word-spacing:4.704000pt;}
.wse2{word-spacing:4.752000pt;}
.wsb{word-spacing:4.896000pt;}
.ws9c{word-spacing:4.944000pt;}
.wsb7{word-spacing:5.000000pt;}
.wsb8{word-spacing:5.040000pt;}
.ws45{word-spacing:5.088000pt;}
.wsd4{word-spacing:5.120000pt;}
.ws40{word-spacing:5.280000pt;}
.ws2c{word-spacing:5.328000pt;}
.ws83{word-spacing:5.376000pt;}
.ws79{word-spacing:5.424000pt;}
.wsac{word-spacing:5.520000pt;}
.ws4d{word-spacing:5.568000pt;}
.wsc5{word-spacing:5.600000pt;}
.ws8e{word-spacing:5.664000pt;}
.ws13{word-spacing:5.757333pt;}
.ws99{word-spacing:5.760000pt;}
.ws75{word-spacing:5.856000pt;}
.wsa2{word-spacing:5.904000pt;}
.ws46{word-spacing:6.000000pt;}
.ws3e{word-spacing:6.144000pt;}
.ws6a{word-spacing:6.240000pt;}
.ws87{word-spacing:6.288000pt;}
.ws5{word-spacing:6.384000pt;}
.ws8d{word-spacing:6.768000pt;}
.wsb3{word-spacing:6.816000pt;}
.ws3c{word-spacing:6.912000pt;}
.ws62{word-spacing:6.960000pt;}
.ws86{word-spacing:7.008000pt;}
.ws93{word-spacing:7.056000pt;}
.ws4{word-spacing:7.104000pt;}
.wsc6{word-spacing:7.160000pt;}
.wsd3{word-spacing:7.320000pt;}
.ws18{word-spacing:7.440000pt;}
.wsa1{word-spacing:7.536000pt;}
.ws49{word-spacing:7.584000pt;}
.ws25{word-spacing:7.824000pt;}
.ws5f{word-spacing:7.872000pt;}
.ws94{word-spacing:8.352000pt;}
.ws4e{word-spacing:8.448000pt;}
.wsc{word-spacing:8.496000pt;}
.wsd{word-spacing:8.688000pt;}
.ws2d{word-spacing:8.928000pt;}
.ws48{word-spacing:8.976000pt;}
.ws10{word-spacing:9.696000pt;}
.ws19{word-spacing:10.464000pt;}
.ws9f{word-spacing:13.056000pt;}
.wsbe{word-spacing:13.320000pt;}
.ws89{word-spacing:14.304000pt;}
.ws66{word-spacing:15.120000pt;}
.ws6e{word-spacing:56.945609pt;}
.ws71{word-spacing:64.374969pt;}
.ws6f{word-spacing:73.708302pt;}
.ws74{word-spacing:83.078942pt;}
.ws73{word-spacing:706.355749pt;}
.ws6d{word-spacing:744.656016pt;}
._51{margin-left:-16.240000pt;}
._50{margin-left:-14.680000pt;}
._53{margin-left:-13.720000pt;}
._43{margin-left:-12.448038pt;}
._d{margin-left:-11.141333pt;}
._b{margin-left:-10.153066pt;}
._9{margin-left:-8.530133pt;}
._f{margin-left:-7.028804pt;}
._10{margin-left:-6.045901pt;}
._5{margin-left:-4.669867pt;}
._2{margin-left:-3.744000pt;}
._1{margin-left:-2.593067pt;}
._0{margin-left:-1.626667pt;}
._4{width:1.282133pt;}
._11{width:2.447493pt;}
._a{width:3.619733pt;}
._c{width:5.242666pt;}
._e{width:6.221333pt;}
._14{width:7.320359pt;}
._4e{width:8.879641pt;}
._13{width:10.560000pt;}
._12{width:11.461850pt;}
._8{width:12.718902pt;}
._4d{width:13.960000pt;}
._3{width:15.897581pt;}
._52{width:20.511982pt;}
._7{width:23.297574pt;}
._1b{width:38.024549pt;}
._42{width:44.589905pt;}
._20{width:46.044302pt;}
._40{width:51.981905pt;}
._1e{width:56.145083pt;}
._3e{width:63.858719pt;}
._45{width:72.070376pt;}
._1f{width:73.633609pt;}
._35{width:81.064074pt;}
._1a{width:85.936016pt;}
._46{width:90.619732pt;}
._16{width:91.553609pt;}
._32{width:99.880572pt;}
._3b{width:103.688572pt;}
._21{width:106.483216pt;}
._44{width:108.438399pt;}
._19{width:110.220302pt;}
._39{width:116.274719pt;}
._47{width:125.830376pt;}
._1d{width:127.393609pt;}
._3d{width:133.564824pt;}
._30{width:134.722741pt;}
._18{width:135.905609pt;}
._37{width:139.279468pt;}
._27{width:145.313609pt;}
._23{width:171.745609pt;}
._2e{width:183.865060pt;}
._38{width:223.005905pt;}
._41{width:229.005868pt;}
._33{width:253.458135pt;}
._34{width:290.946135pt;}
._31{width:343.639468pt;}
._4a{width:383.422934pt;}
._24{width:388.181349pt;}
._36{width:398.978135pt;}
._4c{width:400.489578pt;}
._3f{width:407.762135pt;}
._49{width:417.065578pt;}
._48{width:453.433600pt;}
._4b{width:470.825578pt;}
._28{width:479.187216pt;}
._15{width:492.152549pt;}
._26{width:497.546683pt;}
._3c{width:504.642135pt;}
._1c{width:520.714683pt;}
._3a{width:543.879468pt;}
._2b{width:553.941349pt;}
._2f{width:571.186135pt;}
._2a{width:577.261883pt;}
._2d{width:592.901253pt;}
._22{width:598.517349pt;}
._2c{width:604.528016pt;}
._17{width:670.288016pt;}
._29{width:678.634683pt;}
._25{width:703.797349pt;}
._4f{width:1989.557402pt;}
._6{width:2016.900826pt;}
.fsa{font-size:26.133333pt;}
.fs5{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:24.563600pt;}
.y31{bottom:24.571599pt;}
.y92{bottom:58.745199pt;}
.y2e{bottom:60.472402pt;}
.y5f{bottom:69.799998pt;}
.y78{bottom:69.800135pt;}
.y91{bottom:72.078532pt;}
.y2d{bottom:73.805735pt;}
.y18a{bottom:77.503998pt;}
.y10f{bottom:77.858668pt;}
.y152{bottom:79.756668pt;}
.yf6{bottom:84.466802pt;}
.y90{bottom:85.411865pt;}
.y2c{bottom:87.139069pt;}
.y189{bottom:88.704000pt;}
.y1d2{bottom:90.147471pt;}
.y10e{bottom:91.191996pt;}
.y151{bottom:93.089996pt;}
.yc8{bottom:98.157196pt;}
.y8f{bottom:98.745199pt;}
.y188{bottom:99.904002pt;}
.yc7{bottom:103.157196pt;}
.y1d1{bottom:103.480804pt;}
.y2b{bottom:104.382395pt;}
.y10d{bottom:104.525330pt;}
.y187{bottom:111.104004pt;}
.y8e{bottom:112.078532pt;}
.yf5{bottom:112.823863pt;}
.y150{bottom:117.761871pt;}
.y10c{bottom:117.858663pt;}
.y186{bottom:122.303996pt;}
.yc6{bottom:123.786530pt;}
.y8d{bottom:125.411865pt;}
.yf4{bottom:128.453196pt;}
.y14f{bottom:131.095205pt;}
.y10b{bottom:131.191996pt;}
.y1d0{bottom:132.814138pt;}
.y185{bottom:133.503998pt;}
.y8c{bottom:138.745199pt;}
.y130{bottom:138.870138pt;}
.yc5{bottom:139.567067pt;}
.yf3{bottom:144.233733pt;}
.y14e{bottom:144.428538pt;}
.y10a{bottom:144.525330pt;}
.y184{bottom:144.704000pt;}
.y8b{bottom:152.078532pt;}
.y12f{bottom:152.203471pt;}
.yc4{bottom:155.347595pt;}
.y183{bottom:155.904002pt;}
.y2a{bottom:157.181467pt;}
.y14d{bottom:157.761871pt;}
.y109{bottom:157.858663pt;}
.yf2{bottom:160.014262pt;}
.y1cf{bottom:162.147471pt;}
.y8a{bottom:165.411865pt;}
.y182{bottom:167.104004pt;}
.y29{bottom:170.514800pt;}
.yc3{bottom:171.128133pt;}
.y108{bottom:171.191996pt;}
.y1ce{bottom:175.480794pt;}
.yf1{bottom:175.794800pt;}
.yc2{bottom:176.128133pt;}
.y181{bottom:178.303996pt;}
.y89{bottom:178.745199pt;}
.y14c{bottom:182.433858pt;}
.y28{bottom:183.848124pt;}
.y107{bottom:184.525330pt;}
.y180{bottom:189.504008pt;}
.yf0{bottom:191.575338pt;}
.y88{bottom:192.078532pt;}
.y14b{bottom:195.767192pt;}
.yc1{bottom:196.908529pt;}
.y27{bottom:197.181458pt;}
.y106{bottom:197.858663pt;}
.y17f{bottom:200.704000pt;}
.yc0{bottom:201.908529pt;}
.y1cd{bottom:204.814128pt;}
.y87{bottom:205.411865pt;}
.yef{bottom:207.355876pt;}
.y14a{bottom:209.100525pt;}
.y26{bottom:210.514791pt;}
.y105{bottom:211.191996pt;}
.y17e{bottom:211.903992pt;}
.y1cc{bottom:218.147461pt;}
.y86{bottom:218.745199pt;}
.y149{bottom:222.433858pt;}
.ybf{bottom:222.689067pt;}
.y17d{bottom:223.104004pt;}
.yee{bottom:223.136271pt;}
.y25{bottom:223.848124pt;}
.y104{bottom:224.525330pt;}
.ybe{bottom:227.689067pt;}
.y1cb{bottom:231.480794pt;}
.y85{bottom:232.078532pt;}
.y17c{bottom:234.303996pt;}
.y148{bottom:235.767192pt;}
.y24{bottom:237.181458pt;}
.y103{bottom:237.858663pt;}
.yed{bottom:238.916809pt;}
.y1ca{bottom:244.814128pt;}
.y79{bottom:245.160258pt;}
.y84{bottom:245.411865pt;}
.y17b{bottom:245.504008pt;}
.ybd{bottom:248.469604pt;}
.y147{bottom:249.100525pt;}
.y23{bottom:250.514791pt;}
.y102{bottom:251.191996pt;}
.ybc{bottom:253.469604pt;}
.yec{bottom:254.697327pt;}
.y17a{bottom:256.704000pt;}
.y83{bottom:262.885193pt;}
.y22{bottom:263.848124pt;}
.y101{bottom:264.525330pt;}
.y179{bottom:267.903992pt;}
.yeb{bottom:270.477865pt;}
.y82{bottom:272.078532pt;}
.y1c9{bottom:274.147461pt;}
.ybb{bottom:274.250142pt;}
.y146{bottom:275.767192pt;}
.y21{bottom:277.181458pt;}
.y100{bottom:277.858663pt;}
.y178{bottom:279.104004pt;}
.y1c8{bottom:285.347473pt;}
.y81{bottom:285.411865pt;}
.yea{bottom:286.073201pt;}
.y77{bottom:287.093465pt;}
.yf7{bottom:287.657064pt;}
.y60{bottom:288.040405pt;}
.y145{bottom:289.100525pt;}
.yba{bottom:290.030660pt;}
.y20{bottom:290.514791pt;}
.yff{bottom:291.191996pt;}
.yb9{bottom:295.030660pt;}
.y1c7{bottom:296.547465pt;}
.y80{bottom:298.745199pt;}
.y76{bottom:300.426799pt;}
.y144{bottom:302.433736pt;}
.y1f{bottom:303.848124pt;}
.yfe{bottom:304.525330pt;}
.y1c6{bottom:307.747457pt;}
.y7f{bottom:312.078532pt;}
.y75{bottom:313.760132pt;}
.y143{bottom:315.767069pt;}
.yb8{bottom:315.811198pt;}
.y1e{bottom:317.181458pt;}
.yfd{bottom:317.858663pt;}
.y1c5{bottom:318.947469pt;}
.yb7{bottom:320.811198pt;}
.y177{bottom:324.416402pt;}
.y7e{bottom:325.411865pt;}
.y74{bottom:327.093465pt;}
.y142{bottom:329.100403pt;}
.y1c4{bottom:330.147461pt;}
.y1d{bottom:330.514791pt;}
.yfc{bottom:331.191996pt;}
.ye9{bottom:337.760132pt;}
.y7d{bottom:338.745199pt;}
.y73{bottom:340.426799pt;}
.y1c3{bottom:341.347453pt;}
.yb6{bottom:341.591715pt;}
.y5e{bottom:341.749593pt;}
.y141{bottom:342.433716pt;}
.y1c{bottom:343.848145pt;}
.ye8{bottom:351.093465pt;}
.y7c{bottom:352.078532pt;}
.y176{bottom:352.416382pt;}
.y1c2{bottom:352.547485pt;}
.y72{bottom:353.760132pt;}
.y5d{bottom:355.082926pt;}
.y140{bottom:355.767049pt;}
.y1b{bottom:357.181478pt;}
.yb5{bottom:357.372152pt;}
.yfb{bottom:357.858683pt;}
.y1c1{bottom:363.747477pt;}
.ye7{bottom:364.426799pt;}
.y7b{bottom:365.411865pt;}
.y175{bottom:365.749715pt;}
.y71{bottom:367.093465pt;}
.y13f{bottom:369.100382pt;}
.y1a{bottom:370.514811pt;}
.yfa{bottom:371.192017pt;}
.yb4{bottom:373.152669pt;}
.y1c0{bottom:374.947469pt;}
.ye6{bottom:377.760132pt;}
.y7a{bottom:378.745199pt;}
.y174{bottom:379.083049pt;}
.y5c{bottom:379.754801pt;}
.y70{bottom:380.426799pt;}
.y13e{bottom:382.433716pt;}
.y19{bottom:383.848145pt;}
.yf9{bottom:384.525350pt;}
.y1bf{bottom:386.147461pt;}
.yb3{bottom:388.933187pt;}
.ye5{bottom:391.093465pt;}
.y5b{bottom:393.088135pt;}
.y13d{bottom:395.767049pt;}
.y18{bottom:397.181478pt;}
.y1be{bottom:397.347453pt;}
.yf8{bottom:397.858683pt;}
.ye4{bottom:404.426799pt;}
.yb2{bottom:404.713745pt;}
.y6f{bottom:407.093465pt;}
.y173{bottom:408.416382pt;}
.y1bd{bottom:408.547485pt;}
.y13c{bottom:409.100382pt;}
.y5a{bottom:417.760132pt;}
.y1bc{bottom:419.747477pt;}
.y6e{bottom:420.426799pt;}
.yb1{bottom:420.494263pt;}
.y172{bottom:421.749715pt;}
.y13b{bottom:422.433716pt;}
.yb0{bottom:425.494263pt;}
.y17{bottom:426.514811pt;}
.y93{bottom:430.177450pt;}
.y1bb{bottom:430.947469pt;}
.y59{bottom:431.093465pt;}
.y6d{bottom:433.760132pt;}
.y171{bottom:435.083049pt;}
.y13a{bottom:435.767049pt;}
.y1ba{bottom:442.147461pt;}
.y58{bottom:444.426799pt;}
.yaf{bottom:446.274780pt;}
.y6c{bottom:447.093465pt;}
.y170{bottom:448.416382pt;}
.y139{bottom:449.100382pt;}
.y11e{bottom:449.290933pt;}
.yae{bottom:451.274780pt;}
.y16{bottom:452.520020pt;}
.y1b9{bottom:453.347453pt;}
.y57{bottom:457.760132pt;}
.y6b{bottom:460.426799pt;}
.y16f{bottom:461.749715pt;}
.y138{bottom:462.433716pt;}
.y11d{bottom:463.957600pt;}
.y1b8{bottom:464.547485pt;}
.y15{bottom:467.186686pt;}
.ye3{bottom:471.093465pt;}
.yad{bottom:472.055216pt;}
.y6a{bottom:473.760132pt;}
.y16e{bottom:475.083049pt;}
.y1b7{bottom:475.747477pt;}
.y137{bottom:475.767049pt;}
.y11c{bottom:478.624267pt;}
.y14{bottom:481.853353pt;}
.y56{bottom:484.426799pt;}
.y1b6{bottom:486.947469pt;}
.y69{bottom:487.093465pt;}
.yac{bottom:487.835733pt;}
.y136{bottom:489.100382pt;}
.y13{bottom:496.520020pt;}
.y55{bottom:497.760132pt;}
.y1b5{bottom:498.147461pt;}
.y16d{bottom:499.754924pt;}
.y68{bottom:500.426799pt;}
.y135{bottom:502.433716pt;}
.yab{bottom:503.431071pt;}
.y11b{bottom:506.981486pt;}
.y1b4{bottom:509.347453pt;}
.y54{bottom:511.093465pt;}
.y12{bottom:511.186686pt;}
.y16c{bottom:513.088257pt;}
.y67{bottom:513.760132pt;}
.y131{bottom:514.444255pt;}
.y134{bottom:515.767049pt;}
.yaa{bottom:519.446004pt;}
.y1b3{bottom:520.547485pt;}
.y11a{bottom:522.610799pt;}
.y53{bottom:524.426799pt;}
.y11{bottom:525.853353pt;}
.y16b{bottom:526.421590pt;}
.y66{bottom:527.093465pt;}
.y1b2{bottom:531.747477pt;}
.ya9{bottom:535.226522pt;}
.y52{bottom:537.760132pt;}
.y119{bottom:538.391317pt;}
.y16a{bottom:539.754924pt;}
.y65{bottom:540.426799pt;}
.y10{bottom:540.520020pt;}
.y1b1{bottom:542.947469pt;}
.ya8{bottom:551.006917pt;}
.y51{bottom:551.093465pt;}
.y169{bottom:553.088257pt;}
.y64{bottom:553.760132pt;}
.y1b0{bottom:554.147461pt;}
.y118{bottom:554.171875pt;}
.yf{bottom:555.186686pt;}
.y50{bottom:564.426799pt;}
.y1af{bottom:565.347453pt;}
.y168{bottom:566.421590pt;}
.ya7{bottom:566.787476pt;}
.y63{bottom:567.093465pt;}
.y133{bottom:567.199341pt;}
.ye{bottom:569.853353pt;}
.y117{bottom:569.952393pt;}
.y1ae{bottom:576.547485pt;}
.ye2{bottom:577.760132pt;}
.y167{bottom:579.754924pt;}
.y62{bottom:580.426799pt;}
.y132{bottom:580.532674pt;}
.ya6{bottom:582.567993pt;}
.yd{bottom:584.520020pt;}
.y116{bottom:585.732788pt;}
.y1ad{bottom:587.747477pt;}
.ye1{bottom:591.093465pt;}
.y166{bottom:593.088257pt;}
.y4f{bottom:593.760132pt;}
.ya5{bottom:598.348551pt;}
.y1ac{bottom:598.947469pt;}
.yc{bottom:599.186686pt;}
.y115{bottom:601.513346pt;}
.ya4{bottom:603.348551pt;}
.ye0{bottom:604.426799pt;}
.y165{bottom:606.421590pt;}
.y4e{bottom:607.093465pt;}
.y1ab{bottom:610.147461pt;}
.yb{bottom:613.853353pt;}
.y114{bottom:617.293864pt;}
.ydf{bottom:617.760132pt;}
.y164{bottom:619.754924pt;}
.y4d{bottom:620.426799pt;}
.y1aa{bottom:621.347453pt;}
.ya3{bottom:624.129069pt;}
.ya{bottom:628.520020pt;}
.ya2{bottom:629.129069pt;}
.yde{bottom:631.093465pt;}
.y1a9{bottom:632.547485pt;}
.y113{bottom:633.074382pt;}
.y163{bottom:633.088257pt;}
.y4c{bottom:633.760132pt;}
.y9{bottom:643.186686pt;}
.y1a8{bottom:643.747477pt;}
.ydd{bottom:644.426799pt;}
.y162{bottom:646.421590pt;}
.y4b{bottom:647.093465pt;}
.y112{bottom:648.854940pt;}
.ya1{bottom:649.909587pt;}
.ya0{bottom:654.909587pt;}
.y1a7{bottom:654.947469pt;}
.ydc{bottom:657.760132pt;}
.y8{bottom:657.853353pt;}
.y161{bottom:659.754924pt;}
.y4a{bottom:660.426799pt;}
.y111{bottom:664.635457pt;}
.y1a6{bottom:666.147461pt;}
.ydb{bottom:671.093465pt;}
.y7{bottom:672.520020pt;}
.y160{bottom:673.088257pt;}
.y49{bottom:673.760132pt;}
.y9f{bottom:675.689982pt;}
.y1a5{bottom:677.347453pt;}
.y110{bottom:680.230672pt;}
.y9e{bottom:680.689982pt;}
.y11f{bottom:681.814657pt;}
.yda{bottom:684.426839pt;}
.y15f{bottom:686.421631pt;}
.y48{bottom:687.093506pt;}
.y6{bottom:687.186686pt;}
.y1a4{bottom:688.547445pt;}
.yd9{bottom:697.760173pt;}
.y1a3{bottom:699.747477pt;}
.y15e{bottom:699.754964pt;}
.y47{bottom:700.426839pt;}
.y9d{bottom:701.470540pt;}
.y9c{bottom:706.470540pt;}
.y1a2{bottom:710.947428pt;}
.yd8{bottom:711.093506pt;}
.y94{bottom:711.138021pt;}
.y15d{bottom:713.088298pt;}
.y5{bottom:713.758952pt;}
.y46{bottom:713.760173pt;}
.y1a1{bottom:722.147461pt;}
.yd7{bottom:724.426839pt;}
.y15c{bottom:726.421631pt;}
.y45{bottom:727.093506pt;}
.y9b{bottom:727.251058pt;}
.y1e2{bottom:729.055339pt;}
.y4{bottom:729.758952pt;}
.y1a0{bottom:733.347493pt;}
.y12e{bottom:734.569743pt;}
.yd6{bottom:737.760173pt;}
.y15b{bottom:739.754964pt;}
.y44{bottom:740.426839pt;}
.y9a{bottom:743.031576pt;}
.y19f{bottom:744.547445pt;}
.y99{bottom:748.031576pt;}
.y12d{bottom:749.236410pt;}
.yd5{bottom:751.093506pt;}
.y15a{bottom:753.088298pt;}
.y43{bottom:753.760173pt;}
.y19e{bottom:755.747477pt;}
.y1e1{bottom:756.788818pt;}
.y3{bottom:759.062826pt;}
.y95{bottom:763.892904pt;}
.y12c{bottom:763.903076pt;}
.yd4{bottom:764.426839pt;}
.y159{bottom:766.421631pt;}
.y19d{bottom:766.947428pt;}
.y42{bottom:767.093506pt;}
.y98{bottom:768.812093pt;}
.y1e0{bottom:770.122152pt;}
.yd3{bottom:777.760173pt;}
.y19c{bottom:778.147461pt;}
.y158{bottom:779.754964pt;}
.y41{bottom:780.426839pt;}
.y1df{bottom:783.455485pt;}
.y97{bottom:784.592692pt;}
.y19b{bottom:789.347493pt;}
.yd2{bottom:791.093506pt;}
.y12b{bottom:792.260417pt;}
.y157{bottom:793.088298pt;}
.y40{bottom:793.760173pt;}
.y1de{bottom:796.788818pt;}
.y2{bottom:799.062826pt;}
.y96{bottom:800.187907pt;}
.y19a{bottom:800.547445pt;}
.yc9{bottom:801.771891pt;}
.yd1{bottom:804.426839pt;}
.y156{bottom:806.421631pt;}
.y3f{bottom:807.093506pt;}
.y12a{bottom:807.889730pt;}
.y1dd{bottom:810.122152pt;}
.y199{bottom:811.747477pt;}
.yd0{bottom:817.760173pt;}
.y155{bottom:819.754964pt;}
.y3e{bottom:820.426839pt;}
.y198{bottom:822.947428pt;}
.y1dc{bottom:823.455485pt;}
.y129{bottom:823.670166pt;}
.y154{bottom:833.088298pt;}
.y3d{bottom:833.760173pt;}
.y197{bottom:834.147461pt;}
.y1db{bottom:836.788818pt;}
.y1{bottom:839.062826pt;}
.y128{bottom:839.450684pt;}
.ycf{bottom:844.426839pt;}
.y196{bottom:845.347493pt;}
.y2f{bottom:846.267497pt;}
.y3c{bottom:847.093506pt;}
.y1da{bottom:850.122152pt;}
.y127{bottom:855.231200pt;}
.y195{bottom:856.547445pt;}
.yce{bottom:857.760173pt;}
.y3b{bottom:860.426839pt;}
.y1d9{bottom:863.455485pt;}
.y194{bottom:867.747477pt;}
.y126{bottom:871.011719pt;}
.ycd{bottom:871.093506pt;}
.y3a{bottom:873.760173pt;}
.y1d8{bottom:876.788818pt;}
.y193{bottom:878.947428pt;}
.ycc{bottom:884.426839pt;}
.y125{bottom:886.792236pt;}
.y39{bottom:887.093506pt;}
.y192{bottom:890.147461pt;}
.ycb{bottom:897.760173pt;}
.y1d7{bottom:898.122152pt;}
.y38{bottom:900.426839pt;}
.y191{bottom:901.347493pt;}
.y124{bottom:902.572835pt;}
.yca{bottom:911.093506pt;}
.y1d6{bottom:911.455485pt;}
.y190{bottom:912.547445pt;}
.y37{bottom:913.760173pt;}
.y123{bottom:918.353353pt;}
.y18f{bottom:923.747477pt;}
.y153{bottom:924.426839pt;}
.y36{bottom:927.093506pt;}
.y1d5{bottom:931.516276pt;}
.y122{bottom:934.133708pt;}
.y18e{bottom:934.947428pt;}
.y35{bottom:940.426839pt;}
.y18d{bottom:946.147461pt;}
.y121{bottom:949.914307pt;}
.y1d4{bottom:951.577230pt;}
.y34{bottom:953.760173pt;}
.y18c{bottom:957.347493pt;}
.y1d3{bottom:964.910563pt;}
.y120{bottom:965.509603pt;}
.y33{bottom:967.093506pt;}
.y18b{bottom:968.547445pt;}
.y32{bottom:1013.962972pt;}
.y61{bottom:1014.044515pt;}
.hb{height:27.501953pt;}
.h10{height:30.687500pt;}
.h23{height:31.476562pt;}
.h17{height:33.230400pt;}
.h6{height:34.523438pt;}
.h19{height:36.922667pt;}
.h18{height:38.229333pt;}
.h11{height:38.359375pt;}
.hd{height:38.572283pt;}
.h25{height:39.560000pt;}
.h21{height:39.640416pt;}
.h1c{height:39.640498pt;}
.h1f{height:39.640579pt;}
.h26{height:40.080000pt;}
.hf{height:40.604167pt;}
.h24{height:40.960000pt;}
.h13{height:42.195312pt;}
.hc{height:43.141927pt;}
.h5{height:45.251628pt;}
.h7{height:47.472000pt;}
.h14{height:48.096000pt;}
.h15{height:49.152000pt;}
.h12{height:49.789645pt;}
.h8{height:49.790296pt;}
.h16{height:49.790377pt;}
.ha{height:49.790381pt;}
.h1d{height:49.790398pt;}
.h1e{height:49.790415pt;}
.h9{height:49.790459pt;}
.h20{height:49.790462pt;}
.h22{height:49.790947pt;}
.h4{height:50.781250pt;}
.h1a{height:56.922667pt;}
.h1b{height:56.922829pt;}
.he{height:91.406250pt;}
.h3{height:99.734375pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:54.803065pt;}
.xa{left:117.918132pt;}
.x8{left:122.105865pt;}
.x3{left:124.757731pt;}
.x7{left:135.056396pt;}
.xd{left:171.856527pt;}
.xc{left:182.416524pt;}
.x1{left:207.874003pt;}
.xb{left:212.061605pt;}
.xe{left:221.102397pt;}
.x2{left:223.874125pt;}
.xf{left:224.881999pt;}
.x5{left:301.133870pt;}
.x9{left:412.661214pt;}
.x6{left:520.758545pt;}
}




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