
    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_5df68785a962ff9ffe8adf9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_6b1243133b307acb44ee2dfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_ba569416e889326fc33265ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.147000;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_ff83b662fadf98cc0fdc6f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_f82fd3594955845808f21940.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.139000;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_6f4afdc785520b0a7ea0a467.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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_d9913ffb7cae369fe2a359cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113000;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_227c4648078fa8a39f7dd714.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e8d806d35caba52bc64a7e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_bd40b03c366dae96680ebaa8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b8e9473a9917372e61b92b27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.406000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b3b1e88325bedb554ed39b23.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.306000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_242362d6cef9df88744c0f1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa9085ba9428de1ca9503747.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1e7b26375f8943b49aeddf50.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7d8000290792b02068ae193f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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:-18.000000px;}
.v8{vertical-align:-16.799927px;}
.v6{vertical-align:-11.981927px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.vb{vertical-align:3.402000px;}
.v5{vertical-align:14.699890px;}
.va{vertical-align:18.000000px;}
.v9{vertical-align:19.200073px;}
.v4{vertical-align:23.491281px;}
.v2{vertical-align:26.400000px;}
.v7{vertical-align:54.000000px;}
.ls2{letter-spacing:-4.667933px;}
.ls7{letter-spacing:-1.176000px;}
.ls8{letter-spacing:-0.672000px;}
.ls3{letter-spacing:-0.294000px;}
.ls9{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000002px;}
.ls6{letter-spacing:0.000020px;}
.ls4{letter-spacing:0.000053px;}
.ls5{letter-spacing:0.000112px;}
.lsf{letter-spacing:0.150130px;}
.ls10{letter-spacing:0.225194px;}
.lsa{letter-spacing:0.823200px;}
.ls11{letter-spacing:1.125972px;}
.lse{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.lsc{letter-spacing:131.899760px;}
.lsb{letter-spacing:290.189956px;}
.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;}
}
.ws6{word-spacing:-25.284636px;}
.ws1{word-spacing:-21.216000px;}
.ws4{word-spacing:-19.980000px;}
.wsf{word-spacing:-13.818000px;}
.ws10{word-spacing:-13.524000px;}
.ws5{word-spacing:-13.140000px;}
.ws8f{word-spacing:-12.642000px;}
.wse{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws104{word-spacing:-12.310630px;}
.ws103{word-spacing:-11.559982px;}
.ws102{word-spacing:-10.659204px;}
.ws101{word-spacing:-10.584140px;}
.ws95{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsd7{word-spacing:-9.936000px;}
.ws8{word-spacing:-9.855000px;}
.ws11{word-spacing:-9.672600px;}
.wsfe{word-spacing:-9.315000px;}
.wsc{word-spacing:-9.198000px;}
.ws65{word-spacing:-8.640000px;}
.ws92{word-spacing:-7.358400px;}
.ws90{word-spacing:-6.972000px;}
.ws7{word-spacing:-6.898500px;}
.ws1f{word-spacing:-6.468000px;}
.wsd6{word-spacing:-6.232800px;}
.wsb{word-spacing:-5.640000px;}
.wsfd{word-spacing:-4.512000px;}
.ws106{word-spacing:-4.230000px;}
.wsfc{word-spacing:-3.936000px;}
.wsa{word-spacing:-2.310000px;}
.wsff{word-spacing:-1.890000px;}
.ws105{word-spacing:-1.876621px;}
.ws12{word-spacing:-1.822800px;}
.ws76{word-spacing:-1.705200px;}
.wse1{word-spacing:-0.823200px;}
.wsf4{word-spacing:-0.646800px;}
.wse9{word-spacing:-0.588000px;}
.ws2d{word-spacing:-0.352800px;}
.ws9f{word-spacing:-0.235200px;}
.ws107{word-spacing:-0.180000px;}
.ws5b{word-spacing:-0.176400px;}
.wse8{word-spacing:-0.058800px;}
.ws100{word-spacing:-0.045000px;}
.ws64{word-spacing:-0.041160px;}
.ws9{word-spacing:0.000000px;}
.wsf6{word-spacing:0.058800px;}
.wsbd{word-spacing:0.240000px;}
.ws47{word-spacing:0.294000px;}
.wsa2{word-spacing:0.352800px;}
.ws1e{word-spacing:0.411600px;}
.wsd1{word-spacing:0.470400px;}
.ws85{word-spacing:0.529200px;}
.ws5d{word-spacing:0.588000px;}
.wsab{word-spacing:0.705600px;}
.wsa5{word-spacing:0.823200px;}
.ws7a{word-spacing:0.882000px;}
.wsd2{word-spacing:0.999600px;}
.ws2f{word-spacing:1.176000px;}
.ws7f{word-spacing:1.293600px;}
.ws74{word-spacing:1.411200px;}
.ws67{word-spacing:1.470000px;}
.wsc5{word-spacing:1.528800px;}
.ws63{word-spacing:1.646400px;}
.wsbe{word-spacing:1.705200px;}
.ws43{word-spacing:1.764000px;}
.ws5f{word-spacing:1.881600px;}
.ws1b{word-spacing:1.940400px;}
.wse0{word-spacing:1.999200px;}
.ws2a{word-spacing:2.234400px;}
.ws6b{word-spacing:2.293200px;}
.ws61{word-spacing:2.410800px;}
.ws71{word-spacing:2.469600px;}
.ws52{word-spacing:2.587200px;}
.ws81{word-spacing:2.763600px;}
.ws56{word-spacing:2.822400px;}
.ws19{word-spacing:2.881200px;}
.wsc7{word-spacing:2.940000px;}
.wsf1{word-spacing:3.057600px;}
.ws1c{word-spacing:3.116400px;}
.wse3{word-spacing:3.175200px;}
.ws28{word-spacing:3.234000px;}
.wsa1{word-spacing:3.292800px;}
.ws54{word-spacing:3.351600px;}
.ws48{word-spacing:3.469200px;}
.ws23{word-spacing:3.528000px;}
.wsc0{word-spacing:3.586800px;}
.wsb4{word-spacing:3.763200px;}
.wsc6{word-spacing:3.822000px;}
.ws31{word-spacing:3.880800px;}
.ws8b{word-spacing:3.998400px;}
.wsc8{word-spacing:4.057200px;}
.wsd4{word-spacing:4.116000px;}
.wsf0{word-spacing:4.174800px;}
.wsde{word-spacing:4.233600px;}
.wse4{word-spacing:4.292400px;}
.wsf5{word-spacing:4.351200px;}
.wsa3{word-spacing:4.410000px;}
.wsb2{word-spacing:4.468800px;}
.ws15{word-spacing:4.586400px;}
.wsd{word-spacing:4.667933px;}
.wsd5{word-spacing:4.762800px;}
.ws44{word-spacing:4.821600px;}
.wsc4{word-spacing:4.880400px;}
.ws1d{word-spacing:4.998000px;}
.ws25{word-spacing:5.115600px;}
.ws83{word-spacing:5.174400px;}
.ws55{word-spacing:5.233200px;}
.ws87{word-spacing:5.292000px;}
.ws37{word-spacing:5.409600px;}
.wsce{word-spacing:5.468400px;}
.ws66{word-spacing:5.586000px;}
.ws62{word-spacing:5.644800px;}
.wsb5{word-spacing:5.703600px;}
.ws49{word-spacing:5.762400px;}
.ws80{word-spacing:5.880000px;}
.ws88{word-spacing:6.174000px;}
.ws22{word-spacing:6.232800px;}
.wscb{word-spacing:6.291600px;}
.wse7{word-spacing:6.350400px;}
.wsc9{word-spacing:6.409200px;}
.ws40{word-spacing:6.468000px;}
.wsbf{word-spacing:6.526800px;}
.ws73{word-spacing:6.585600px;}
.ws18{word-spacing:6.644400px;}
.ws50{word-spacing:6.703200px;}
.ws36{word-spacing:6.762000px;}
.ws33{word-spacing:6.820800px;}
.ws4b{word-spacing:6.879600px;}
.wsec{word-spacing:6.997200px;}
.ws60{word-spacing:7.056000px;}
.ws16{word-spacing:7.114800px;}
.ws97{word-spacing:7.173600px;}
.ws4a{word-spacing:7.232400px;}
.wsfa{word-spacing:7.344000px;}
.ws20{word-spacing:7.350000px;}
.wsd3{word-spacing:7.408800px;}
.ws68{word-spacing:7.467600px;}
.wsa4{word-spacing:7.702800px;}
.ws72{word-spacing:7.761600px;}
.ws51{word-spacing:7.820400px;}
.wsda{word-spacing:7.879200px;}
.ws78{word-spacing:7.938000px;}
.ws5c{word-spacing:7.996800px;}
.ws70{word-spacing:8.055600px;}
.ws96{word-spacing:8.114400px;}
.ws39{word-spacing:8.173200px;}
.ws6e{word-spacing:8.232000px;}
.ws53{word-spacing:8.290800px;}
.wse5{word-spacing:8.408400px;}
.wsa9{word-spacing:8.467200px;}
.ws79{word-spacing:8.761200px;}
.ws17{word-spacing:8.878800px;}
.ws75{word-spacing:8.937600px;}
.wsf7{word-spacing:9.055200px;}
.ws2b{word-spacing:9.114000px;}
.wsf3{word-spacing:9.172800px;}
.ws86{word-spacing:9.231600px;}
.wseb{word-spacing:9.290400px;}
.ws6f{word-spacing:9.349200px;}
.ws3f{word-spacing:9.408000px;}
.wsba{word-spacing:9.466800px;}
.ws2e{word-spacing:9.584400px;}
.wsaa{word-spacing:9.643200px;}
.wscc{word-spacing:9.760800px;}
.wsdd{word-spacing:9.819600px;}
.ws34{word-spacing:9.937200px;}
.ws9b{word-spacing:9.996000px;}
.ws8d{word-spacing:10.054800px;}
.ws9c{word-spacing:10.113600px;}
.wscf{word-spacing:10.172400px;}
.wsae{word-spacing:10.231200px;}
.ws6a{word-spacing:10.348800px;}
.ws14{word-spacing:10.407600px;}
.wsb8{word-spacing:10.466400px;}
.ws8e{word-spacing:10.525200px;}
.ws57{word-spacing:10.760400px;}
.ws3a{word-spacing:10.819200px;}
.wse2{word-spacing:10.878000px;}
.wsb6{word-spacing:10.995600px;}
.wsbc{word-spacing:11.054400px;}
.wsbb{word-spacing:11.113200px;}
.wscd{word-spacing:11.172000px;}
.wsf2{word-spacing:11.230800px;}
.ws38{word-spacing:11.289600px;}
.ws2c{word-spacing:11.348400px;}
.wsa6{word-spacing:11.701200px;}
.wsd0{word-spacing:11.877600px;}
.ws5e{word-spacing:11.936400px;}
.ws8a{word-spacing:11.995200px;}
.ws69{word-spacing:12.171600px;}
.ws98{word-spacing:12.230400px;}
.ws13{word-spacing:12.289200px;}
.wsea{word-spacing:12.524400px;}
.wsac{word-spacing:12.583200px;}
.ws89{word-spacing:12.642000px;}
.ws1a{word-spacing:12.759600px;}
.wsdf{word-spacing:12.818400px;}
.ws42{word-spacing:12.877200px;}
.ws7e{word-spacing:12.936000px;}
.wsb1{word-spacing:12.994800px;}
.ws45{word-spacing:13.230000px;}
.ws8c{word-spacing:13.288800px;}
.wsca{word-spacing:13.347600px;}
.ws32{word-spacing:13.465200px;}
.wsdc{word-spacing:13.641600px;}
.wsf8{word-spacing:13.759200px;}
.ws41{word-spacing:13.818000px;}
.wsb3{word-spacing:13.876800px;}
.wsed{word-spacing:13.935600px;}
.ws84{word-spacing:14.053200px;}
.ws58{word-spacing:14.170800px;}
.ws3d{word-spacing:14.406000px;}
.ws27{word-spacing:14.464800px;}
.ws9d{word-spacing:14.523600px;}
.ws30{word-spacing:14.582400px;}
.wsb0{word-spacing:14.641200px;}
.ws5a{word-spacing:14.700000px;}
.wsc2{word-spacing:14.758800px;}
.wsc3{word-spacing:14.876400px;}
.ws9a{word-spacing:14.935200px;}
.ws6d{word-spacing:15.111600px;}
.wsa7{word-spacing:15.170400px;}
.ws4d{word-spacing:15.758400px;}
.ws3e{word-spacing:15.876000px;}
.wsa0{word-spacing:15.993600px;}
.ws21{word-spacing:16.405200px;}
.ws35{word-spacing:16.640400px;}
.ws4c{word-spacing:16.699200px;}
.ws7d{word-spacing:16.816800px;}
.ws77{word-spacing:17.110800px;}
.ws6c{word-spacing:17.287200px;}
.ws3b{word-spacing:17.522400px;}
.ws29{word-spacing:17.640000px;}
.ws26{word-spacing:17.816400px;}
.wsb9{word-spacing:17.875200px;}
.ws99{word-spacing:18.169200px;}
.wse6{word-spacing:18.286800px;}
.ws59{word-spacing:18.522000px;}
.wsad{word-spacing:18.698400px;}
.wsee{word-spacing:18.992400px;}
.wsb7{word-spacing:19.051200px;}
.wsdb{word-spacing:19.110000px;}
.wsef{word-spacing:19.698000px;}
.ws46{word-spacing:20.521200px;}
.wsc1{word-spacing:21.579600px;}
.wsaf{word-spacing:21.873600px;}
.ws82{word-spacing:22.285200px;}
.ws7c{word-spacing:23.696400px;}
.ws4f{word-spacing:24.108000px;}
.ws9e{word-spacing:24.166800px;}
.ws4e{word-spacing:25.989600px;}
.ws3c{word-spacing:26.107200px;}
.ws7b{word-spacing:28.929600px;}
.ws24{word-spacing:33.516000px;}
.wsa8{word-spacing:35.750400px;}
.wsf9{word-spacing:41.806800px;}
.wsfb{word-spacing:97.362000px;}
.wsd9{word-spacing:131.904000px;}
.wsd8{word-spacing:220.656000px;}
.ws91{word-spacing:411.168000px;}
.ws94{word-spacing:441.888000px;}
.ws93{word-spacing:1445.520000px;}
._14{margin-left:-25.212000px;}
._c{margin-left:-23.389200px;}
._10{margin-left:-20.779320px;}
._17{margin-left:-18.627839px;}
._d{margin-left:-17.156400px;}
._15{margin-left:-14.157600px;}
._18{margin-left:-11.494808px;}
._1b{margin-left:-9.936000px;}
._20{margin-left:-8.835626px;}
._a{margin-left:-7.791643px;}
._7{margin-left:-6.540000px;}
._6{margin-left:-5.508000px;}
._b{margin-left:-4.013760px;}
._4{margin-left:-2.496000px;}
._1{margin-left:-1.440000px;}
._0{width:1.440000px;}
._5{width:2.544000px;}
._12{width:3.559158px;}
._8{width:5.610000px;}
._f{width:7.768680px;}
._11{width:9.411480px;}
._e{width:10.754520px;}
._22{width:12.095389px;}
._3{width:14.580000px;}
._9{width:15.900000px;}
._13{width:17.047561px;}
._16{width:18.604320px;}
._21{width:22.726800px;}
._2{width:38.241600px;}
._2d{width:44.513760px;}
._29{width:131.904000px;}
._27{width:163.680000px;}
._2b{width:164.771247px;}
._25{width:166.254513px;}
._23{width:237.453609px;}
._24{width:243.677760px;}
._28{width:308.783988px;}
._2c{width:311.375988px;}
._1e{width:368.016000px;}
._1d{width:370.608000px;}
._26{width:383.711988px;}
._2a{width:393.167988px;}
._1a{width:442.944000px;}
._1f{width:951.731914px;}
._1c{width:1431.552000px;}
._19{width:1952.304000px;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:14.074549px;}
.fs10{font-size:29.400000px;}
.fs9{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fs11{font-size:36.000000px;}
.fs13{font-size:37.532410px;}
.fs12{font-size:39.900000px;}
.fsd{font-size:41.160000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs7{font-size:97.248600px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:6.589043px;}
.y29{bottom:33.016350px;}
.y26{bottom:75.191250px;}
.y25{bottom:87.192750px;}
.y24{bottom:99.194250px;}
.y23f{bottom:99.342773px;}
.y103{bottom:99.407535px;}
.y97{bottom:100.975952px;}
.y65{bottom:105.873753px;}
.y169{bottom:107.745153px;}
.ydb{bottom:109.526997px;}
.y23{bottom:111.195750px;}
.y23e{bottom:112.842773px;}
.y192{bottom:114.627445px;}
.y256{bottom:115.974000px;}
.y12a{bottom:116.884645px;}
.y102{bottom:117.400335px;}
.y96{bottom:118.968752px;}
.y22{bottom:123.197250px;}
.y64{bottom:123.866553px;}
.yda{bottom:124.526997px;}
.y168{bottom:125.737953px;}
.y23d{bottom:126.342773px;}
.y191{bottom:132.641845px;}
.y254{bottom:133.764149px;}
.y1fc{bottom:134.737953px;}
.y129{bottom:134.877445px;}
.y101{bottom:135.393135px;}
.y95{bottom:136.961552px;}
.y23c{bottom:139.842773px;}
.y255{bottom:139.914000px;}
.y63{bottom:141.859353px;}
.y1be{bottom:143.737953px;}
.y167{bottom:143.745153px;}
.y1fb{bottom:148.237953px;}
.y190{bottom:150.634645px;}
.y251{bottom:151.773148px;}
.y128{bottom:152.906257px;}
.y23b{bottom:153.342773px;}
.y100{bottom:153.385935px;}
.y94{bottom:154.975952px;}
.y2e{bottom:158.893650px;}
.y62{bottom:159.852153px;}
.y166{bottom:161.737953px;}
.y23a{bottom:166.842773px;}
.y253{bottom:167.479649px;}
.y252{bottom:168.058205px;}
.y18f{bottom:168.627445px;}
.y24f{bottom:168.927749px;}
.y16d{bottom:169.760239px;}
.y127{bottom:170.899057px;}
.yff{bottom:171.378735px;}
.y2d{bottom:172.393650px;}
.y93{bottom:172.968752px;}
.y61{bottom:177.844953px;}
.y165{bottom:179.745153px;}
.y239{bottom:180.342773px;}
.y16c{bottom:184.760239px;}
.y24e{bottom:184.824749px;}
.y250{bottom:185.888248px;}
.y18e{bottom:186.670496px;}
.y24c{bottom:187.776139px;}
.y126{bottom:188.891857px;}
.yfe{bottom:189.371535px;}
.y2c{bottom:190.393650px;}
.y92{bottom:190.968740px;}
.y238{bottom:193.842773px;}
.y60{bottom:195.837753px;}
.y1fa{bottom:197.737930px;}
.y164{bottom:197.745153px;}
.y1bd{bottom:197.781153px;}
.y2b{bottom:199.393650px;}
.y16b{bottom:199.760239px;}
.y24b{bottom:202.539139px;}
.y24d{bottom:204.131400px;}
.y18d{bottom:204.663296px;}
.y249{bottom:205.759204px;}
.y125{bottom:206.884657px;}
.y237{bottom:207.342773px;}
.yfd{bottom:207.364335px;}
.y91{bottom:208.961540px;}
.y1f9{bottom:211.237930px;}
.y5f{bottom:213.859353px;}
.y16a{bottom:214.760239px;}
.y163{bottom:215.737953px;}
.y1bc{bottom:215.773953px;}
.y248{bottom:220.060204px;}
.y236{bottom:220.842773px;}
.y24a{bottom:221.440041px;}
.y18c{bottom:222.656096px;}
.y246{bottom:223.765945px;}
.y1f8{bottom:224.737930px;}
.y124{bottom:224.877457px;}
.yfc{bottom:225.357135px;}
.y90{bottom:226.961540px;}
.y5e{bottom:231.852153px;}
.y162{bottom:233.745153px;}
.y1bb{bottom:233.766753px;}
.y235{bottom:234.342773px;}
.y245{bottom:237.636445px;}
.y1f7{bottom:238.237930px;}
.y247{bottom:238.801346px;}
.y18b{bottom:240.648896px;}
.y242{bottom:241.768497px;}
.y244{bottom:241.773445px;}
.y123{bottom:242.891857px;}
.yfb{bottom:243.349935px;}
.y8f{bottom:244.968740px;}
.y234{bottom:247.842773px;}
.y5d{bottom:249.844953px;}
.y1f6{bottom:251.737930px;}
.y161{bottom:251.737953px;}
.y1ba{bottom:251.759553px;}
.y241{bottom:255.859497px;}
.y243{bottom:256.813042px;}
.y18a{bottom:258.641696px;}
.y122{bottom:260.884657px;}
.yfa{bottom:261.342735px;}
.y233{bottom:261.342773px;}
.y8e{bottom:262.961540px;}
.y1f5{bottom:265.237930px;}
.y5c{bottom:267.837753px;}
.y160{bottom:269.737953px;}
.y1b9{bottom:269.752353px;}
.y232{bottom:274.842773px;}
.y189{bottom:276.634496px;}
.y1f4{bottom:278.737930px;}
.y121{bottom:278.877457px;}
.yf9{bottom:279.335535px;}
.y8d{bottom:280.961540px;}
.y257{bottom:282.343941px;}
.y5b{bottom:285.888016px;}
.y1b8{bottom:287.745153px;}
.y15f{bottom:287.781130px;}
.y231{bottom:288.342773px;}
.y188{bottom:294.627296px;}
.y120{bottom:296.884496px;}
.yf8{bottom:297.328335px;}
.y8c{bottom:298.961403px;}
.y230{bottom:301.842773px;}
.y5a{bottom:303.880816px;}
.y21{bottom:304.152600px;}
.y1f3{bottom:305.737930px;}
.y1b7{bottom:305.737953px;}
.y15e{bottom:305.773930px;}
.y187{bottom:312.641696px;}
.y11f{bottom:314.877296px;}
.yf7{bottom:315.321135px;}
.y22f{bottom:315.342773px;}
.y8b{bottom:316.961403px;}
.y1f2{bottom:319.237930px;}
.y59{bottom:321.873616px;}
.y20{bottom:322.152600px;}
.y15d{bottom:323.766730px;}
.y1b6{bottom:323.788330px;}
.y22e{bottom:328.842773px;}
.y186{bottom:330.634496px;}
.y1f1{bottom:332.737930px;}
.y11e{bottom:332.891696px;}
.yf6{bottom:333.313935px;}
.y58{bottom:339.866416px;}
.y15c{bottom:341.759530px;}
.y1b5{bottom:341.781130px;}
.y22d{bottom:342.342773px;}
.y1f{bottom:344.652600px;}
.y1f0{bottom:346.237930px;}
.y185{bottom:348.627296px;}
.y11d{bottom:350.884496px;}
.yf5{bottom:351.306735px;}
.y22c{bottom:355.842773px;}
.y57{bottom:357.859216px;}
.y15b{bottom:359.752330px;}
.y1b4{bottom:359.773930px;}
.y8a{bottom:364.805538px;}
.y184{bottom:366.656119px;}
.y1e{bottom:367.152600px;}
.y11c{bottom:368.877296px;}
.yf4{bottom:369.299535px;}
.y22b{bottom:369.342773px;}
.y1ef{bottom:373.237930px;}
.y56{bottom:375.852016px;}
.y15a{bottom:377.745130px;}
.y1b3{bottom:377.766730px;}
.y89{bottom:382.798338px;}
.y22a{bottom:382.842773px;}
.y183{bottom:384.648919px;}
.y1d{bottom:385.152600px;}
.y1ee{bottom:386.737930px;}
.y11b{bottom:386.920519px;}
.yf3{bottom:387.292335px;}
.y55{bottom:393.844816px;}
.yb7{bottom:394.635295px;}
.y159{bottom:395.737930px;}
.y1b2{bottom:395.759530px;}
.y229{bottom:396.342773px;}
.y88{bottom:400.791138px;}
.y182{bottom:402.641719px;}
.y1c{bottom:403.152600px;}
.y11a{bottom:404.913319px;}
.yf2{bottom:405.285135px;}
.y228{bottom:409.842773px;}
.y54{bottom:411.837616px;}
.yb6{bottom:412.628095px;}
.yd9{bottom:412.707295px;}
.y1ed{bottom:413.737930px;}
.y1b1{bottom:413.752330px;}
.y158{bottom:413.781130px;}
.y87{bottom:418.819938px;}
.y181{bottom:420.634519px;}
.y119{bottom:422.906119px;}
.yf1{bottom:423.277935px;}
.y227{bottom:423.342773px;}
.y1b{bottom:425.652600px;}
.y1ec{bottom:427.237930px;}
.y53{bottom:429.837616px;}
.yb5{bottom:430.628095px;}
.yd8{bottom:430.700095px;}
.y1b0{bottom:431.745130px;}
.y157{bottom:431.773930px;}
.y86{bottom:436.812738px;}
.y226{bottom:436.842773px;}
.y180{bottom:438.627319px;}
.y1eb{bottom:440.737930px;}
.y118{bottom:440.898919px;}
.yf0{bottom:441.270735px;}
.y1a{bottom:443.652600px;}
.y52{bottom:447.859216px;}
.yb4{bottom:448.628095px;}
.yd7{bottom:448.692895px;}
.y1af{bottom:449.737930px;}
.y156{bottom:449.766730px;}
.y225{bottom:450.342773px;}
.y284{bottom:451.842773px;}
.y85{bottom:454.805538px;}
.y17f{bottom:456.670519px;}
.y117{bottom:458.891719px;}
.yef{bottom:459.263535px;}
.y19{bottom:461.652600px;}
.y224{bottom:463.842773px;}
.y2b0{bottom:465.342765px;}
.y283{bottom:465.342773px;}
.y51{bottom:465.852016px;}
.yb3{bottom:466.642495px;}
.yd6{bottom:466.685695px;}
.y1ea{bottom:467.737930px;}
.y155{bottom:467.759530px;}
.y84{bottom:472.798338px;}
.y17e{bottom:474.663319px;}
.y116{bottom:476.884519px;}
.yee{bottom:477.263535px;}
.y223{bottom:477.342773px;}
.y2af{bottom:478.842765px;}
.y282{bottom:478.842773px;}
.y18{bottom:479.652600px;}
.y1e9{bottom:481.237930px;}
.y50{bottom:483.844816px;}
.yb2{bottom:484.635295px;}
.yd5{bottom:484.678495px;}
.y154{bottom:485.752330px;}
.y83{bottom:490.791138px;}
.y222{bottom:490.842773px;}
.y2ae{bottom:492.342765px;}
.y281{bottom:492.342773px;}
.y17d{bottom:492.656119px;}
.y115{bottom:494.877319px;}
.yed{bottom:495.263535px;}
.y17{bottom:497.652600px;}
.y4f{bottom:501.837616px;}
.yb1{bottom:502.628095px;}
.yd4{bottom:502.671295px;}
.y153{bottom:503.745130px;}
.y221{bottom:504.342773px;}
.y2ad{bottom:505.842765px;}
.y280{bottom:505.842773px;}
.y1e8{bottom:508.237930px;}
.y82{bottom:508.791138px;}
.y17c{bottom:510.648919px;}
.y114{bottom:512.877319px;}
.y220{bottom:517.842773px;}
.y2ac{bottom:519.342765px;}
.y27f{bottom:519.342773px;}
.y4e{bottom:519.866416px;}
.y16{bottom:520.152600px;}
.yb0{bottom:520.620895px;}
.yd3{bottom:520.664095px;}
.y152{bottom:521.737930px;}
.y81{bottom:526.798338px;}
.y17b{bottom:528.641719px;}
.y113{bottom:530.891719px;}
.yec{bottom:531.299535px;}
.y21f{bottom:531.342773px;}
.y2ab{bottom:532.842765px;}
.y27e{bottom:532.842773px;}
.y1e7{bottom:535.237930px;}
.y4d{bottom:537.859216px;}
.y15{bottom:538.152600px;}
.yaf{bottom:538.635295px;}
.yd2{bottom:538.656895px;}
.y151{bottom:539.745130px;}
.y1ae{bottom:539.802730px;}
.y80{bottom:544.791138px;}
.y21e{bottom:544.842773px;}
.y2aa{bottom:546.342765px;}
.y27d{bottom:546.342773px;}
.y17a{bottom:546.634519px;}
.y1e6{bottom:548.737930px;}
.y112{bottom:548.884519px;}
.yeb{bottom:549.292335px;}
.y4c{bottom:555.852016px;}
.y14{bottom:556.152600px;}
.yae{bottom:556.628095px;}
.yd1{bottom:556.649695px;}
.y150{bottom:557.737930px;}
.y1ad{bottom:557.795530px;}
.y21d{bottom:558.342773px;}
.y2a9{bottom:559.842765px;}
.y27c{bottom:559.842773px;}
.y1e5{bottom:562.237930px;}
.y7f{bottom:562.805538px;}
.y179{bottom:564.627319px;}
.y111{bottom:566.877319px;}
.yea{bottom:567.285135px;}
.y21c{bottom:571.842773px;}
.y2a8{bottom:573.342765px;}
.y27b{bottom:573.342773px;}
.y4b{bottom:573.844816px;}
.y13{bottom:574.152600px;}
.yad{bottom:574.620895px;}
.yd0{bottom:574.642495px;}
.y14f{bottom:575.781130px;}
.y1ac{bottom:575.788330px;}
.y7e{bottom:580.798338px;}
.y178{bottom:582.648919px;}
.y110{bottom:584.877319px;}
.ye9{bottom:585.277935px;}
.y21b{bottom:585.342773px;}
.y2a7{bottom:586.842765px;}
.y27a{bottom:586.842773px;}
.y1e4{bottom:589.237930px;}
.y4a{bottom:591.837616px;}
.y12{bottom:592.152600px;}
.yac{bottom:592.628095px;}
.ycf{bottom:592.635295px;}
.y14e{bottom:593.773930px;}
.y1ab{bottom:593.781130px;}
.y7d{bottom:598.791138px;}
.y21a{bottom:598.842773px;}
.y2a6{bottom:600.342765px;}
.y279{bottom:600.342773px;}
.y177{bottom:600.641719px;}
.y1e3{bottom:602.737930px;}
.ye8{bottom:603.270735px;}
.y49{bottom:609.852016px;}
.y11{bottom:610.152600px;}
.yab{bottom:610.620895px;}
.yce{bottom:610.628095px;}
.y14d{bottom:611.766730px;}
.y1aa{bottom:611.773930px;}
.y219{bottom:612.342773px;}
.y2a5{bottom:613.842765px;}
.y278{bottom:613.842773px;}
.y7c{bottom:616.812738px;}
.y176{bottom:618.634519px;}
.y1e2{bottom:620.737930px;}
.y10f{bottom:620.891719px;}
.ye7{bottom:621.263535px;}
.ycd{bottom:624.945923px;}
.y218{bottom:625.842773px;}
.y2a4{bottom:627.342765px;}
.y277{bottom:627.342773px;}
.y48{bottom:627.844816px;}
.y10{bottom:628.152600px;}
.yaa{bottom:628.620895px;}
.ycc{bottom:628.664095px;}
.y14c{bottom:629.759530px;}
.y1a9{bottom:629.766730px;}
.y1e1{bottom:634.237930px;}
.y7b{bottom:634.805538px;}
.y175{bottom:636.627319px;}
.y10e{bottom:638.884519px;}
.ye6{bottom:639.277935px;}
.y217{bottom:639.342773px;}
.y2a3{bottom:640.842765px;}
.y276{bottom:640.842773px;}
.y1e0{bottom:643.237930px;}
.y47{bottom:645.837616px;}
.yf{bottom:646.152600px;}
.ycb{bottom:646.656895px;}
.y14b{bottom:647.752330px;}
.y1a8{bottom:647.759530px;}
.y7a{bottom:652.798338px;}
.y216{bottom:652.842773px;}
.y2a2{bottom:654.342765px;}
.y275{bottom:654.342773px;}
.y174{bottom:654.641719px;}
.y10d{bottom:656.877319px;}
.ye5{bottom:657.270735px;}
.y1df{bottom:661.237930px;}
.y46{bottom:663.837616px;}
.ye{bottom:664.152600px;}
.ya9{bottom:664.642495px;}
.yca{bottom:664.649695px;}
.y14a{bottom:665.745130px;}
.y1a7{bottom:665.752330px;}
.y215{bottom:666.342773px;}
.y2a1{bottom:667.842765px;}
.y274{bottom:667.842773px;}
.y1de{bottom:670.237976px;}
.y79{bottom:670.791138px;}
.y173{bottom:672.634519px;}
.y10c{bottom:674.906119px;}
.ye4{bottom:675.263535px;}
.y214{bottom:679.842773px;}
.y2a0{bottom:681.342765px;}
.y273{bottom:681.342773px;}
.y45{bottom:681.873708px;}
.yd{bottom:682.152600px;}
.ya8{bottom:682.635295px;}
.yc9{bottom:682.642495px;}
.y149{bottom:683.737930px;}
.y1a6{bottom:683.745130px;}
.y78{bottom:688.805538px;}
.y172{bottom:690.627319px;}
.y10b{bottom:692.898919px;}
.ye3{bottom:693.306780px;}
.y213{bottom:693.342773px;}
.y29f{bottom:694.842765px;}
.y272{bottom:694.842773px;}
.y1dd{bottom:697.237976px;}
.y44{bottom:699.866508px;}
.ya7{bottom:700.628095px;}
.yc8{bottom:700.635295px;}
.y1a5{bottom:701.737930px;}
.y148{bottom:701.752330px;}
.yc{bottom:704.652600px;}
.y77{bottom:706.798338px;}
.y212{bottom:706.842773px;}
.y29e{bottom:708.342765px;}
.y271{bottom:708.342773px;}
.y171{bottom:708.648919px;}
.y1dc{bottom:710.737976px;}
.y10a{bottom:710.891719px;}
.ye2{bottom:711.299580px;}
.y43{bottom:717.859308px;}
.ya6{bottom:718.620895px;}
.yc7{bottom:718.628095px;}
.y147{bottom:719.745130px;}
.y1a4{bottom:719.788376px;}
.y211{bottom:720.342773px;}
.y29d{bottom:721.842765px;}
.y270{bottom:721.842773px;}
.yb{bottom:722.652600px;}
.y1db{bottom:724.237976px;}
.y76{bottom:724.791138px;}
.y170{bottom:726.641719px;}
.y109{bottom:728.884519px;}
.ye1{bottom:729.292380px;}
.y210{bottom:733.842773px;}
.y29c{bottom:735.342765px;}
.y26f{bottom:735.342773px;}
.y42{bottom:735.852108px;}
.ya5{bottom:736.620895px;}
.y146{bottom:737.737930px;}
.y1da{bottom:737.737976px;}
.y1a3{bottom:737.781176px;}
.ya{bottom:740.652600px;}
.y75{bottom:742.791138px;}
.y16f{bottom:744.634519px;}
.y108{bottom:746.877319px;}
.ye0{bottom:747.285180px;}
.y20f{bottom:747.342773px;}
.y29b{bottom:748.842765px;}
.y26e{bottom:748.842773px;}
.y1d9{bottom:751.237976px;}
.y41{bottom:753.844908px;}
.yc6{bottom:754.635341px;}
.ya4{bottom:754.642541px;}
.y145{bottom:755.766776px;}
.y1a2{bottom:755.773976px;}
.y20e{bottom:760.842773px;}
.y29a{bottom:762.342765px;}
.y26d{bottom:762.342773px;}
.y16e{bottom:762.627319px;}
.y107{bottom:764.891719px;}
.ydf{bottom:765.277980px;}
.y40{bottom:771.837708px;}
.yc5{bottom:772.628141px;}
.ya3{bottom:772.635341px;}
.y144{bottom:773.759576px;}
.y1a1{bottom:773.766776px;}
.y20d{bottom:774.342773px;}
.y299{bottom:775.842765px;}
.y26c{bottom:775.842773px;}
.y1d8{bottom:778.237976px;}
.y106{bottom:782.884519px;}
.yde{bottom:783.270780px;}
.y20c{bottom:787.842773px;}
.y298{bottom:789.342765px;}
.y26b{bottom:789.342773px;}
.y3f{bottom:789.837708px;}
.yc4{bottom:790.620941px;}
.ya2{bottom:790.628141px;}
.y74{bottom:790.649741px;}
.y1d7{bottom:791.737976px;}
.y143{bottom:791.752376px;}
.y1a0{bottom:791.759576px;}
.y105{bottom:800.877319px;}
.ydd{bottom:801.263580px;}
.y20b{bottom:801.342773px;}
.y297{bottom:802.842765px;}
.y26a{bottom:802.842773px;}
.y9{bottom:804.548100px;}
.y1d6{bottom:805.237976px;}
.y3e{bottom:807.852108px;}
.ya1{bottom:808.620941px;}
.y73{bottom:808.642541px;}
.y142{bottom:809.745176px;}
.y19f{bottom:809.752376px;}
.y20a{bottom:814.842773px;}
.y296{bottom:816.342765px;}
.y269{bottom:816.342773px;}
.y1d5{bottom:818.737976px;}
.y104{bottom:819.016622px;}
.ydc{bottom:819.263580px;}
.y1c3{bottom:820.535065px;}
.y8{bottom:825.552600px;}
.y3d{bottom:825.844908px;}
.yc3{bottom:826.628141px;}
.y72{bottom:826.635341px;}
.y141{bottom:827.737976px;}
.y19e{bottom:827.745176px;}
.y209{bottom:828.342773px;}
.y295{bottom:829.842765px;}
.y268{bottom:829.842773px;}
.y1d4{bottom:832.237976px;}
.y1c2{bottom:833.339975px;}
.y208{bottom:841.842773px;}
.y294{bottom:843.342765px;}
.y267{bottom:843.342773px;}
.y3c{bottom:843.837708px;}
.yc2{bottom:844.620941px;}
.y71{bottom:844.628141px;}
.y19d{bottom:845.737976px;}
.y140{bottom:845.752376px;}
.y1c1{bottom:850.286957px;}
.y207{bottom:855.342773px;}
.y293{bottom:856.842765px;}
.y266{bottom:856.842773px;}
.y1d3{bottom:859.237976px;}
.y7{bottom:861.589500px;}
.y3b{bottom:861.902508px;}
.y70{bottom:862.620941px;}
.yc1{bottom:862.628141px;}
.y13f{bottom:863.745176px;}
.y19c{bottom:863.795576px;}
.y1ca{bottom:868.140018px;}
.y206{bottom:868.842773px;}
.y292{bottom:870.342765px;}
.y265{bottom:870.342773px;}
.y12e{bottom:871.840475px;}
.y1d2{bottom:872.737976px;}
.y3a{bottom:879.895308px;}
.ya0{bottom:880.620941px;}
.y6f{bottom:880.671341px;}
.y13e{bottom:881.737976px;}
.y19b{bottom:881.788376px;}
.y205{bottom:882.342773px;}
.y291{bottom:883.842765px;}
.y264{bottom:883.842773px;}
.y1d1{bottom:886.237976px;}
.y1c9{bottom:886.368018px;}
.y12d{bottom:888.839975px;}
.y204{bottom:895.842773px;}
.y290{bottom:897.342765px;}
.y263{bottom:897.342773px;}
.y39{bottom:897.888108px;}
.yc0{bottom:898.656941px;}
.y6e{bottom:898.664141px;}
.y1d0{bottom:899.737976px;}
.y13d{bottom:899.745176px;}
.y19a{bottom:899.781176px;}
.y6{bottom:900.577500px;}
.y12c{bottom:901.586975px;}
.y1c8{bottom:904.512018px;}
.y203{bottom:909.342773px;}
.y28f{bottom:910.842765px;}
.y262{bottom:910.842773px;}
.y1cf{bottom:913.237976px;}
.y38{bottom:915.880908px;}
.y9f{bottom:916.635341px;}
.ybf{bottom:916.649741px;}
.y6d{bottom:916.656941px;}
.y13c{bottom:917.737976px;}
.y199{bottom:917.773976px;}
.y1c7{bottom:922.656018px;}
.y202{bottom:922.842773px;}
.y134{bottom:924.072018px;}
.y28e{bottom:924.342765px;}
.y261{bottom:924.342773px;}
.y1ce{bottom:926.737976px;}
.y37{bottom:933.873708px;}
.y9e{bottom:934.628141px;}
.ybe{bottom:934.642541px;}
.y6c{bottom:934.649741px;}
.y13b{bottom:935.737976px;}
.y198{bottom:935.766776px;}
.y201{bottom:936.342773px;}
.y28d{bottom:937.842765px;}
.y260{bottom:937.842773px;}
.y5{bottom:939.565500px;}
.y1c6{bottom:940.795518px;}
.y133{bottom:942.305982px;}
.y200{bottom:949.842773px;}
.y28c{bottom:951.342765px;}
.y25f{bottom:951.342773px;}
.y36{bottom:951.866508px;}
.y9d{bottom:952.620941px;}
.ybd{bottom:952.635341px;}
.y6b{bottom:952.642541px;}
.y13a{bottom:953.752376px;}
.y197{bottom:953.759576px;}
.y132{bottom:960.444037px;}
.y1ff{bottom:963.342773px;}
.y28b{bottom:964.842765px;}
.y25e{bottom:964.842773px;}
.y1c5{bottom:967.687518px;}
.y35{bottom:969.859308px;}
.ybc{bottom:970.628141px;}
.y6a{bottom:970.635341px;}
.y139{bottom:971.745176px;}
.y196{bottom:971.752376px;}
.y1cd{bottom:971.766776px;}
.y1fe{bottom:976.842773px;}
.y28a{bottom:978.342765px;}
.y25d{bottom:978.342773px;}
.y4{bottom:978.553500px;}
.y131{bottom:978.600037px;}
.y1c4{bottom:985.987518px;}
.y34{bottom:987.852108px;}
.ybb{bottom:988.620941px;}
.y69{bottom:988.628141px;}
.y138{bottom:989.737976px;}
.y195{bottom:989.745176px;}
.y1cc{bottom:989.759576px;}
.y289{bottom:991.842765px;}
.y25c{bottom:991.842773px;}
.y130{bottom:992.095518px;}
.y288{bottom:1005.342765px;}
.y25b{bottom:1005.342773px;}
.y33{bottom:1005.844908px;}
.y68{bottom:1006.620941px;}
.y9c{bottom:1006.628141px;}
.yba{bottom:1006.655095px;}
.y137{bottom:1007.737976px;}
.y1cb{bottom:1007.752376px;}
.y1c0{bottom:1010.306079px;}
.y287{bottom:1018.842765px;}
.y25a{bottom:1018.842773px;}
.y12f{bottom:1018.987518px;}
.y32{bottom:1023.837708px;}
.y9b{bottom:1024.620941px;}
.yb9{bottom:1024.647895px;}
.y67{bottom:1024.667871px;}
.y136{bottom:1025.745176px;}
.y194{bottom:1025.748172px;}
.y1bf{bottom:1026.803079px;}
.y286{bottom:1032.342765px;}
.y259{bottom:1032.342773px;}
.y3{bottom:1033.362600px;}
.y27{bottom:1035.750150px;}
.y31{bottom:1041.837708px;}
.y9a{bottom:1042.620941px;}
.yb8{bottom:1042.640695px;}
.y66{bottom:1042.660671px;}
.y12b{bottom:1043.300079px;}
.y135{bottom:1043.737976px;}
.y193{bottom:1043.740972px;}
.y1fd{bottom:1045.841698px;}
.y285{bottom:1045.842765px;}
.y258{bottom:1045.842773px;}
.y28{bottom:1083.127500px;}
.y2{bottom:1112.297100px;}
.y98{bottom:1126.524628px;}
.y2f{bottom:1126.524719px;}
.y240{bottom:1126.920719px;}
.y1{bottom:1126.925100px;}
.y99{bottom:1127.300079px;}
.y30{bottom:1127.304719px;}
.h2d{height:10.640359px;}
.h20{height:25.901400px;}
.h28{height:27.540000px;}
.he{height:27.814500px;}
.h2c{height:28.374502px;}
.h26{height:29.988000px;}
.h2a{height:30.324000px;}
.h2b{height:30.523500px;}
.h27{height:32.130000px;}
.h29{height:35.532000px;}
.h19{height:37.002000px;}
.ha{height:37.086000px;}
.h25{height:39.645000px;}
.hd{height:39.735000px;}
.h23{height:40.005000px;}
.h3{height:42.288000px;}
.h17{height:42.384000px;}
.h1e{height:42.395854px;}
.h1b{height:42.402073px;}
.h1d{height:42.407780px;}
.h1a{height:42.672000px;}
.h16{height:43.056000px;}
.h2{height:43.392000px;}
.h24{height:45.814500px;}
.h18{height:48.438000px;}
.h22{height:48.886873px;}
.h11{height:49.072799px;}
.h21{height:49.339273px;}
.h9{height:52.980000px;}
.h8{height:53.340000px;}
.hb{height:53.850000px;}
.hf{height:55.434600px;}
.h10{height:55.860000px;}
.h13{height:62.592365px;}
.h1f{height:62.593187px;}
.h12{height:62.593281px;}
.h14{height:62.621165px;}
.h6{height:67.194600px;}
.h7{height:67.212600px;}
.h4{height:69.966000px;}
.h15{height:70.559890px;}
.hc{height:73.908936px;}
.h1c{height:96.384000px;}
.h5{height:126.864000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:221.082000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.175495px;}
.x7{left:75.419700px;}
.x1{left:84.933000px;}
.x2{left:92.734350px;}
.x3{left:94.683150px;}
.xa{left:97.049252px;}
.x1a{left:107.539352px;}
.xf{left:204.609444px;}
.xe{left:228.413727px;}
.x4{left:270.817500px;}
.xb{left:457.081652px;}
.xc{left:469.081794px;}
.x17{left:475.906036px;}
.x16{left:476.938660px;}
.x10{left:479.586594px;}
.x11{left:483.529633px;}
.x15{left:487.660338px;}
.x12{left:490.386133px;}
.x13{left:493.103989px;}
.xd{left:547.366516px;}
.x6{left:588.060000px;}
.x18{left:602.660385px;}
.x19{left:603.814636px;}
.x14{left:660.952332px;}
.x5{left:694.929900px;}
.x9{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v8{vertical-align:-14.933268pt;}
.v6{vertical-align:-10.650602pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.vb{vertical-align:3.024000pt;}
.v5{vertical-align:13.066569pt;}
.va{vertical-align:16.000000pt;}
.v9{vertical-align:17.066732pt;}
.v4{vertical-align:20.881138pt;}
.v2{vertical-align:23.466667pt;}
.v7{vertical-align:48.000000pt;}
.ls2{letter-spacing:-4.149274pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls8{letter-spacing:-0.597333pt;}
.ls3{letter-spacing:-0.261333pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.000018pt;}
.ls4{letter-spacing:0.000047pt;}
.ls5{letter-spacing:0.000099pt;}
.lsf{letter-spacing:0.133449pt;}
.ls10{letter-spacing:0.200173pt;}
.lsa{letter-spacing:0.731733pt;}
.ls11{letter-spacing:1.000864pt;}
.lse{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.lsc{letter-spacing:117.244232pt;}
.lsb{letter-spacing:257.946627pt;}
.ws6{word-spacing:-22.475232pt;}
.ws1{word-spacing:-18.858667pt;}
.ws4{word-spacing:-17.760000pt;}
.wsf{word-spacing:-12.282667pt;}
.ws10{word-spacing:-12.021333pt;}
.ws5{word-spacing:-11.680000pt;}
.ws8f{word-spacing:-11.237333pt;}
.wse{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws104{word-spacing:-10.942783pt;}
.ws103{word-spacing:-10.275540pt;}
.ws102{word-spacing:-9.474848pt;}
.ws101{word-spacing:-9.408124pt;}
.ws95{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsd7{word-spacing:-8.832000pt;}
.ws8{word-spacing:-8.760000pt;}
.ws11{word-spacing:-8.597867pt;}
.wsfe{word-spacing:-8.280000pt;}
.wsc{word-spacing:-8.176000pt;}
.ws65{word-spacing:-7.680000pt;}
.ws92{word-spacing:-6.540800pt;}
.ws90{word-spacing:-6.197333pt;}
.ws7{word-spacing:-6.132000pt;}
.ws1f{word-spacing:-5.749333pt;}
.wsd6{word-spacing:-5.540267pt;}
.wsb{word-spacing:-5.013333pt;}
.wsfd{word-spacing:-4.010667pt;}
.ws106{word-spacing:-3.760000pt;}
.wsfc{word-spacing:-3.498667pt;}
.wsa{word-spacing:-2.053333pt;}
.wsff{word-spacing:-1.680000pt;}
.ws105{word-spacing:-1.668107pt;}
.ws12{word-spacing:-1.620267pt;}
.ws76{word-spacing:-1.515733pt;}
.wse1{word-spacing:-0.731733pt;}
.wsf4{word-spacing:-0.574933pt;}
.wse9{word-spacing:-0.522667pt;}
.ws2d{word-spacing:-0.313600pt;}
.ws9f{word-spacing:-0.209067pt;}
.ws107{word-spacing:-0.160000pt;}
.ws5b{word-spacing:-0.156800pt;}
.wse8{word-spacing:-0.052267pt;}
.ws100{word-spacing:-0.040000pt;}
.ws64{word-spacing:-0.036587pt;}
.ws9{word-spacing:0.000000pt;}
.wsf6{word-spacing:0.052267pt;}
.wsbd{word-spacing:0.213333pt;}
.ws47{word-spacing:0.261333pt;}
.wsa2{word-spacing:0.313600pt;}
.ws1e{word-spacing:0.365867pt;}
.wsd1{word-spacing:0.418133pt;}
.ws85{word-spacing:0.470400pt;}
.ws5d{word-spacing:0.522667pt;}
.wsab{word-spacing:0.627200pt;}
.wsa5{word-spacing:0.731733pt;}
.ws7a{word-spacing:0.784000pt;}
.wsd2{word-spacing:0.888533pt;}
.ws2f{word-spacing:1.045333pt;}
.ws7f{word-spacing:1.149867pt;}
.ws74{word-spacing:1.254400pt;}
.ws67{word-spacing:1.306667pt;}
.wsc5{word-spacing:1.358933pt;}
.ws63{word-spacing:1.463467pt;}
.wsbe{word-spacing:1.515733pt;}
.ws43{word-spacing:1.568000pt;}
.ws5f{word-spacing:1.672533pt;}
.ws1b{word-spacing:1.724800pt;}
.wse0{word-spacing:1.777067pt;}
.ws2a{word-spacing:1.986133pt;}
.ws6b{word-spacing:2.038400pt;}
.ws61{word-spacing:2.142933pt;}
.ws71{word-spacing:2.195200pt;}
.ws52{word-spacing:2.299733pt;}
.ws81{word-spacing:2.456533pt;}
.ws56{word-spacing:2.508800pt;}
.ws19{word-spacing:2.561067pt;}
.wsc7{word-spacing:2.613333pt;}
.wsf1{word-spacing:2.717867pt;}
.ws1c{word-spacing:2.770133pt;}
.wse3{word-spacing:2.822400pt;}
.ws28{word-spacing:2.874667pt;}
.wsa1{word-spacing:2.926933pt;}
.ws54{word-spacing:2.979200pt;}
.ws48{word-spacing:3.083733pt;}
.ws23{word-spacing:3.136000pt;}
.wsc0{word-spacing:3.188267pt;}
.wsb4{word-spacing:3.345067pt;}
.wsc6{word-spacing:3.397333pt;}
.ws31{word-spacing:3.449600pt;}
.ws8b{word-spacing:3.554133pt;}
.wsc8{word-spacing:3.606400pt;}
.wsd4{word-spacing:3.658667pt;}
.wsf0{word-spacing:3.710933pt;}
.wsde{word-spacing:3.763200pt;}
.wse4{word-spacing:3.815467pt;}
.wsf5{word-spacing:3.867733pt;}
.wsa3{word-spacing:3.920000pt;}
.wsb2{word-spacing:3.972267pt;}
.ws15{word-spacing:4.076800pt;}
.wsd{word-spacing:4.149274pt;}
.wsd5{word-spacing:4.233600pt;}
.ws44{word-spacing:4.285867pt;}
.wsc4{word-spacing:4.338133pt;}
.ws1d{word-spacing:4.442667pt;}
.ws25{word-spacing:4.547200pt;}
.ws83{word-spacing:4.599467pt;}
.ws55{word-spacing:4.651733pt;}
.ws87{word-spacing:4.704000pt;}
.ws37{word-spacing:4.808533pt;}
.wsce{word-spacing:4.860800pt;}
.ws66{word-spacing:4.965333pt;}
.ws62{word-spacing:5.017600pt;}
.wsb5{word-spacing:5.069867pt;}
.ws49{word-spacing:5.122133pt;}
.ws80{word-spacing:5.226667pt;}
.ws88{word-spacing:5.488000pt;}
.ws22{word-spacing:5.540267pt;}
.wscb{word-spacing:5.592533pt;}
.wse7{word-spacing:5.644800pt;}
.wsc9{word-spacing:5.697067pt;}
.ws40{word-spacing:5.749333pt;}
.wsbf{word-spacing:5.801600pt;}
.ws73{word-spacing:5.853867pt;}
.ws18{word-spacing:5.906133pt;}
.ws50{word-spacing:5.958400pt;}
.ws36{word-spacing:6.010667pt;}
.ws33{word-spacing:6.062933pt;}
.ws4b{word-spacing:6.115200pt;}
.wsec{word-spacing:6.219733pt;}
.ws60{word-spacing:6.272000pt;}
.ws16{word-spacing:6.324267pt;}
.ws97{word-spacing:6.376533pt;}
.ws4a{word-spacing:6.428800pt;}
.wsfa{word-spacing:6.528000pt;}
.ws20{word-spacing:6.533333pt;}
.wsd3{word-spacing:6.585600pt;}
.ws68{word-spacing:6.637867pt;}
.wsa4{word-spacing:6.846933pt;}
.ws72{word-spacing:6.899200pt;}
.ws51{word-spacing:6.951467pt;}
.wsda{word-spacing:7.003733pt;}
.ws78{word-spacing:7.056000pt;}
.ws5c{word-spacing:7.108267pt;}
.ws70{word-spacing:7.160533pt;}
.ws96{word-spacing:7.212800pt;}
.ws39{word-spacing:7.265067pt;}
.ws6e{word-spacing:7.317333pt;}
.ws53{word-spacing:7.369600pt;}
.wse5{word-spacing:7.474133pt;}
.wsa9{word-spacing:7.526400pt;}
.ws79{word-spacing:7.787733pt;}
.ws17{word-spacing:7.892267pt;}
.ws75{word-spacing:7.944533pt;}
.wsf7{word-spacing:8.049067pt;}
.ws2b{word-spacing:8.101333pt;}
.wsf3{word-spacing:8.153600pt;}
.ws86{word-spacing:8.205867pt;}
.wseb{word-spacing:8.258133pt;}
.ws6f{word-spacing:8.310400pt;}
.ws3f{word-spacing:8.362667pt;}
.wsba{word-spacing:8.414933pt;}
.ws2e{word-spacing:8.519467pt;}
.wsaa{word-spacing:8.571733pt;}
.wscc{word-spacing:8.676267pt;}
.wsdd{word-spacing:8.728533pt;}
.ws34{word-spacing:8.833067pt;}
.ws9b{word-spacing:8.885333pt;}
.ws8d{word-spacing:8.937600pt;}
.ws9c{word-spacing:8.989867pt;}
.wscf{word-spacing:9.042133pt;}
.wsae{word-spacing:9.094400pt;}
.ws6a{word-spacing:9.198933pt;}
.ws14{word-spacing:9.251200pt;}
.wsb8{word-spacing:9.303467pt;}
.ws8e{word-spacing:9.355733pt;}
.ws57{word-spacing:9.564800pt;}
.ws3a{word-spacing:9.617067pt;}
.wse2{word-spacing:9.669333pt;}
.wsb6{word-spacing:9.773867pt;}
.wsbc{word-spacing:9.826133pt;}
.wsbb{word-spacing:9.878400pt;}
.wscd{word-spacing:9.930667pt;}
.wsf2{word-spacing:9.982933pt;}
.ws38{word-spacing:10.035200pt;}
.ws2c{word-spacing:10.087467pt;}
.wsa6{word-spacing:10.401067pt;}
.wsd0{word-spacing:10.557867pt;}
.ws5e{word-spacing:10.610133pt;}
.ws8a{word-spacing:10.662400pt;}
.ws69{word-spacing:10.819200pt;}
.ws98{word-spacing:10.871467pt;}
.ws13{word-spacing:10.923733pt;}
.wsea{word-spacing:11.132800pt;}
.wsac{word-spacing:11.185067pt;}
.ws89{word-spacing:11.237333pt;}
.ws1a{word-spacing:11.341867pt;}
.wsdf{word-spacing:11.394133pt;}
.ws42{word-spacing:11.446400pt;}
.ws7e{word-spacing:11.498667pt;}
.wsb1{word-spacing:11.550933pt;}
.ws45{word-spacing:11.760000pt;}
.ws8c{word-spacing:11.812267pt;}
.wsca{word-spacing:11.864533pt;}
.ws32{word-spacing:11.969067pt;}
.wsdc{word-spacing:12.125867pt;}
.wsf8{word-spacing:12.230400pt;}
.ws41{word-spacing:12.282667pt;}
.wsb3{word-spacing:12.334933pt;}
.wsed{word-spacing:12.387200pt;}
.ws84{word-spacing:12.491733pt;}
.ws58{word-spacing:12.596267pt;}
.ws3d{word-spacing:12.805333pt;}
.ws27{word-spacing:12.857600pt;}
.ws9d{word-spacing:12.909867pt;}
.ws30{word-spacing:12.962133pt;}
.wsb0{word-spacing:13.014400pt;}
.ws5a{word-spacing:13.066667pt;}
.wsc2{word-spacing:13.118933pt;}
.wsc3{word-spacing:13.223467pt;}
.ws9a{word-spacing:13.275733pt;}
.ws6d{word-spacing:13.432533pt;}
.wsa7{word-spacing:13.484800pt;}
.ws4d{word-spacing:14.007467pt;}
.ws3e{word-spacing:14.112000pt;}
.wsa0{word-spacing:14.216533pt;}
.ws21{word-spacing:14.582400pt;}
.ws35{word-spacing:14.791467pt;}
.ws4c{word-spacing:14.843733pt;}
.ws7d{word-spacing:14.948267pt;}
.ws77{word-spacing:15.209600pt;}
.ws6c{word-spacing:15.366400pt;}
.ws3b{word-spacing:15.575467pt;}
.ws29{word-spacing:15.680000pt;}
.ws26{word-spacing:15.836800pt;}
.wsb9{word-spacing:15.889067pt;}
.ws99{word-spacing:16.150400pt;}
.wse6{word-spacing:16.254933pt;}
.ws59{word-spacing:16.464000pt;}
.wsad{word-spacing:16.620800pt;}
.wsee{word-spacing:16.882133pt;}
.wsb7{word-spacing:16.934400pt;}
.wsdb{word-spacing:16.986667pt;}
.wsef{word-spacing:17.509333pt;}
.ws46{word-spacing:18.241067pt;}
.wsc1{word-spacing:19.181867pt;}
.wsaf{word-spacing:19.443200pt;}
.ws82{word-spacing:19.809067pt;}
.ws7c{word-spacing:21.063467pt;}
.ws4f{word-spacing:21.429333pt;}
.ws9e{word-spacing:21.481600pt;}
.ws4e{word-spacing:23.101867pt;}
.ws3c{word-spacing:23.206400pt;}
.ws7b{word-spacing:25.715200pt;}
.ws24{word-spacing:29.792000pt;}
.wsa8{word-spacing:31.778133pt;}
.wsf9{word-spacing:37.161600pt;}
.wsfb{word-spacing:86.544000pt;}
.wsd9{word-spacing:117.248000pt;}
.wsd8{word-spacing:196.138667pt;}
.ws91{word-spacing:365.482667pt;}
.ws94{word-spacing:392.789333pt;}
.ws93{word-spacing:1284.906667pt;}
._14{margin-left:-22.410667pt;}
._c{margin-left:-20.790400pt;}
._10{margin-left:-18.470507pt;}
._17{margin-left:-16.558079pt;}
._d{margin-left:-15.250133pt;}
._15{margin-left:-12.584533pt;}
._18{margin-left:-10.217607pt;}
._1b{margin-left:-8.832000pt;}
._20{margin-left:-7.853890pt;}
._a{margin-left:-6.925905pt;}
._7{margin-left:-5.813333pt;}
._6{margin-left:-4.896000pt;}
._b{margin-left:-3.567787pt;}
._4{margin-left:-2.218667pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.280000pt;}
._5{width:2.261333pt;}
._12{width:3.163696pt;}
._8{width:4.986667pt;}
._f{width:6.905493pt;}
._11{width:8.365760pt;}
._e{width:9.559573pt;}
._22{width:10.751457pt;}
._3{width:12.960000pt;}
._9{width:14.133333pt;}
._13{width:15.153387pt;}
._16{width:16.537173pt;}
._21{width:20.201600pt;}
._2{width:33.992533pt;}
._2d{width:39.567787pt;}
._29{width:117.248000pt;}
._27{width:145.493333pt;}
._2b{width:146.463331pt;}
._25{width:147.781789pt;}
._23{width:211.069875pt;}
._24{width:216.602453pt;}
._28{width:274.474656pt;}
._2c{width:276.778656pt;}
._1e{width:327.125333pt;}
._1d{width:329.429333pt;}
._26{width:341.077323pt;}
._2a{width:349.482656pt;}
._1a{width:393.728000pt;}
._1f{width:845.983923pt;}
._1c{width:1272.490667pt;}
._19{width:1735.381333pt;}
.fs14{font-size:12.510710pt;}
.fs10{font-size:26.133333pt;}
.fs9{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fs11{font-size:32.000000pt;}
.fs13{font-size:33.362142pt;}
.fs12{font-size:35.466667pt;}
.fsd{font-size:36.586667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs7{font-size:86.443200pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:5.856927pt;}
.y29{bottom:29.347867pt;}
.y26{bottom:66.836667pt;}
.y25{bottom:77.504667pt;}
.y24{bottom:88.172667pt;}
.y23f{bottom:88.304687pt;}
.y103{bottom:88.362253pt;}
.y97{bottom:89.756401pt;}
.y65{bottom:94.110003pt;}
.y169{bottom:95.773469pt;}
.ydb{bottom:97.357330pt;}
.y23{bottom:98.840667pt;}
.y23e{bottom:100.304687pt;}
.y192{bottom:101.891062pt;}
.y256{bottom:103.088000pt;}
.y12a{bottom:103.897462pt;}
.y102{bottom:104.355853pt;}
.y96{bottom:105.750001pt;}
.y22{bottom:109.508667pt;}
.y64{bottom:110.103603pt;}
.yda{bottom:110.690664pt;}
.y168{bottom:111.767069pt;}
.y23d{bottom:112.304687pt;}
.y191{bottom:117.903862pt;}
.y254{bottom:118.901465pt;}
.y1fc{bottom:119.767069pt;}
.y129{bottom:119.891062pt;}
.y101{bottom:120.349453pt;}
.y95{bottom:121.743601pt;}
.y23c{bottom:124.304687pt;}
.y255{bottom:124.368000pt;}
.y63{bottom:126.097203pt;}
.y1be{bottom:127.767069pt;}
.y167{bottom:127.773469pt;}
.y1fb{bottom:131.767069pt;}
.y190{bottom:133.897462pt;}
.y251{bottom:134.909465pt;}
.y128{bottom:135.916673pt;}
.y23b{bottom:136.304687pt;}
.y100{bottom:136.343053pt;}
.y94{bottom:137.756401pt;}
.y2e{bottom:141.238800pt;}
.y62{bottom:142.090803pt;}
.y166{bottom:143.767069pt;}
.y23a{bottom:148.304687pt;}
.y253{bottom:148.870799pt;}
.y252{bottom:149.385071pt;}
.y18f{bottom:149.891062pt;}
.y24f{bottom:150.157999pt;}
.y16d{bottom:150.897990pt;}
.y127{bottom:151.910273pt;}
.yff{bottom:152.336653pt;}
.y2d{bottom:153.238800pt;}
.y93{bottom:153.750001pt;}
.y61{bottom:158.084403pt;}
.y165{bottom:159.773469pt;}
.y239{bottom:160.304687pt;}
.y16c{bottom:164.231323pt;}
.y24e{bottom:164.288666pt;}
.y250{bottom:165.233999pt;}
.y18e{bottom:165.929330pt;}
.y24c{bottom:166.912123pt;}
.y126{bottom:167.903873pt;}
.yfe{bottom:168.330253pt;}
.y2c{bottom:169.238800pt;}
.y92{bottom:169.749991pt;}
.y238{bottom:172.304687pt;}
.y60{bottom:174.078003pt;}
.y1fa{bottom:175.767049pt;}
.y164{bottom:175.773469pt;}
.y1bd{bottom:175.805469pt;}
.y2b{bottom:177.238800pt;}
.y16b{bottom:177.564657pt;}
.y24b{bottom:180.034790pt;}
.y24d{bottom:181.450133pt;}
.y18d{bottom:181.922930pt;}
.y249{bottom:182.897070pt;}
.y125{bottom:183.897473pt;}
.y237{bottom:184.304687pt;}
.yfd{bottom:184.323853pt;}
.y91{bottom:185.743591pt;}
.y1f9{bottom:187.767049pt;}
.y5f{bottom:190.097203pt;}
.y16a{bottom:190.897990pt;}
.y163{bottom:191.767069pt;}
.y1bc{bottom:191.799069pt;}
.y248{bottom:195.609070pt;}
.y236{bottom:196.304687pt;}
.y24a{bottom:196.835592pt;}
.y18c{bottom:197.916530pt;}
.y246{bottom:198.903062pt;}
.y1f8{bottom:199.767049pt;}
.y124{bottom:199.891073pt;}
.yfc{bottom:200.317453pt;}
.y90{bottom:201.743591pt;}
.y5e{bottom:206.090803pt;}
.y162{bottom:207.773469pt;}
.y1bb{bottom:207.792669pt;}
.y235{bottom:208.304687pt;}
.y245{bottom:211.232396pt;}
.y1f7{bottom:211.767049pt;}
.y247{bottom:212.267863pt;}
.y18b{bottom:213.910130pt;}
.y242{bottom:214.905331pt;}
.y244{bottom:214.909729pt;}
.y123{bottom:215.903873pt;}
.yfb{bottom:216.311053pt;}
.y8f{bottom:217.749991pt;}
.y234{bottom:220.304687pt;}
.y5d{bottom:222.084403pt;}
.y1f6{bottom:223.767049pt;}
.y161{bottom:223.767069pt;}
.y1ba{bottom:223.786269pt;}
.y241{bottom:227.430664pt;}
.y243{bottom:228.278259pt;}
.y18a{bottom:229.903730pt;}
.y122{bottom:231.897473pt;}
.yfa{bottom:232.304653pt;}
.y233{bottom:232.304687pt;}
.y8e{bottom:233.743591pt;}
.y1f5{bottom:235.767049pt;}
.y5c{bottom:238.078003pt;}
.y160{bottom:239.767069pt;}
.y1b9{bottom:239.779869pt;}
.y232{bottom:244.304687pt;}
.y189{bottom:245.897330pt;}
.y1f4{bottom:247.767049pt;}
.y121{bottom:247.891073pt;}
.yf9{bottom:248.298253pt;}
.y8d{bottom:249.743591pt;}
.y257{bottom:250.972392pt;}
.y5b{bottom:254.122681pt;}
.y1b8{bottom:255.773469pt;}
.y15f{bottom:255.805449pt;}
.y231{bottom:256.304687pt;}
.y188{bottom:261.890930pt;}
.y120{bottom:263.897330pt;}
.yf8{bottom:264.291853pt;}
.y8c{bottom:265.743469pt;}
.y230{bottom:268.304687pt;}
.y5a{bottom:270.116281pt;}
.y21{bottom:270.357867pt;}
.y1f3{bottom:271.767049pt;}
.y1b7{bottom:271.767069pt;}
.y15e{bottom:271.799049pt;}
.y187{bottom:277.903730pt;}
.y11f{bottom:279.890930pt;}
.yf7{bottom:280.285453pt;}
.y22f{bottom:280.304687pt;}
.y8b{bottom:281.743469pt;}
.y1f2{bottom:283.767049pt;}
.y59{bottom:286.109881pt;}
.y20{bottom:286.357867pt;}
.y15d{bottom:287.792649pt;}
.y1b6{bottom:287.811849pt;}
.y22e{bottom:292.304687pt;}
.y186{bottom:293.897330pt;}
.y1f1{bottom:295.767049pt;}
.y11e{bottom:295.903730pt;}
.yf6{bottom:296.279053pt;}
.y58{bottom:302.103481pt;}
.y15c{bottom:303.786249pt;}
.y1b5{bottom:303.805449pt;}
.y22d{bottom:304.304687pt;}
.y1f{bottom:306.357867pt;}
.y1f0{bottom:307.767049pt;}
.y185{bottom:309.890930pt;}
.y11d{bottom:311.897330pt;}
.yf5{bottom:312.272653pt;}
.y22c{bottom:316.304687pt;}
.y57{bottom:318.097081pt;}
.y15b{bottom:319.779849pt;}
.y1b4{bottom:319.799049pt;}
.y8a{bottom:324.271589pt;}
.y184{bottom:325.916551pt;}
.y1e{bottom:326.357867pt;}
.y11c{bottom:327.890930pt;}
.yf4{bottom:328.266253pt;}
.y22b{bottom:328.304687pt;}
.y1ef{bottom:331.767049pt;}
.y56{bottom:334.090681pt;}
.y15a{bottom:335.773449pt;}
.y1b3{bottom:335.792649pt;}
.y89{bottom:340.265189pt;}
.y22a{bottom:340.304687pt;}
.y183{bottom:341.910151pt;}
.y1d{bottom:342.357867pt;}
.y1ee{bottom:343.767049pt;}
.y11b{bottom:343.929351pt;}
.yf3{bottom:344.259853pt;}
.y55{bottom:350.084281pt;}
.yb7{bottom:350.786929pt;}
.y159{bottom:351.767049pt;}
.y1b2{bottom:351.786249pt;}
.y229{bottom:352.304687pt;}
.y88{bottom:356.258789pt;}
.y182{bottom:357.903751pt;}
.y1c{bottom:358.357867pt;}
.y11a{bottom:359.922951pt;}
.yf2{bottom:360.253453pt;}
.y228{bottom:364.304687pt;}
.y54{bottom:366.077881pt;}
.yb6{bottom:366.780529pt;}
.yd9{bottom:366.850929pt;}
.y1ed{bottom:367.767049pt;}
.y1b1{bottom:367.779849pt;}
.y158{bottom:367.805449pt;}
.y87{bottom:372.284389pt;}
.y181{bottom:373.897351pt;}
.y119{bottom:375.916551pt;}
.yf1{bottom:376.247053pt;}
.y227{bottom:376.304687pt;}
.y1b{bottom:378.357867pt;}
.y1ec{bottom:379.767049pt;}
.y53{bottom:382.077881pt;}
.yb5{bottom:382.780529pt;}
.yd8{bottom:382.844529pt;}
.y1b0{bottom:383.773449pt;}
.y157{bottom:383.799049pt;}
.y86{bottom:388.277989pt;}
.y226{bottom:388.304687pt;}
.y180{bottom:389.890951pt;}
.y1eb{bottom:391.767049pt;}
.y118{bottom:391.910151pt;}
.yf0{bottom:392.240653pt;}
.y1a{bottom:394.357867pt;}
.y52{bottom:398.097081pt;}
.yb4{bottom:398.780529pt;}
.yd7{bottom:398.838129pt;}
.y1af{bottom:399.767049pt;}
.y156{bottom:399.792649pt;}
.y225{bottom:400.304687pt;}
.y284{bottom:401.638021pt;}
.y85{bottom:404.271589pt;}
.y17f{bottom:405.929351pt;}
.y117{bottom:407.903751pt;}
.yef{bottom:408.234253pt;}
.y19{bottom:410.357867pt;}
.y224{bottom:412.304687pt;}
.y2b0{bottom:413.638013pt;}
.y283{bottom:413.638021pt;}
.y51{bottom:414.090681pt;}
.yb3{bottom:414.793329pt;}
.yd6{bottom:414.831729pt;}
.y1ea{bottom:415.767049pt;}
.y155{bottom:415.786249pt;}
.y84{bottom:420.265189pt;}
.y17e{bottom:421.922951pt;}
.y116{bottom:423.897351pt;}
.yee{bottom:424.234253pt;}
.y223{bottom:424.304687pt;}
.y2af{bottom:425.638013pt;}
.y282{bottom:425.638021pt;}
.y18{bottom:426.357867pt;}
.y1e9{bottom:427.767049pt;}
.y50{bottom:430.084281pt;}
.yb2{bottom:430.786929pt;}
.yd5{bottom:430.825329pt;}
.y154{bottom:431.779849pt;}
.y83{bottom:436.258789pt;}
.y222{bottom:436.304687pt;}
.y2ae{bottom:437.638013pt;}
.y281{bottom:437.638021pt;}
.y17d{bottom:437.916551pt;}
.y115{bottom:439.890951pt;}
.yed{bottom:440.234253pt;}
.y17{bottom:442.357867pt;}
.y4f{bottom:446.077881pt;}
.yb1{bottom:446.780529pt;}
.yd4{bottom:446.818929pt;}
.y153{bottom:447.773449pt;}
.y221{bottom:448.304687pt;}
.y2ad{bottom:449.638013pt;}
.y280{bottom:449.638021pt;}
.y1e8{bottom:451.767049pt;}
.y82{bottom:452.258789pt;}
.y17c{bottom:453.910151pt;}
.y114{bottom:455.890951pt;}
.y220{bottom:460.304687pt;}
.y2ac{bottom:461.638013pt;}
.y27f{bottom:461.638021pt;}
.y4e{bottom:462.103481pt;}
.y16{bottom:462.357867pt;}
.yb0{bottom:462.774129pt;}
.yd3{bottom:462.812529pt;}
.y152{bottom:463.767049pt;}
.y81{bottom:468.265189pt;}
.y17b{bottom:469.903751pt;}
.y113{bottom:471.903751pt;}
.yec{bottom:472.266253pt;}
.y21f{bottom:472.304687pt;}
.y2ab{bottom:473.638013pt;}
.y27e{bottom:473.638021pt;}
.y1e7{bottom:475.767049pt;}
.y4d{bottom:478.097081pt;}
.y15{bottom:478.357867pt;}
.yaf{bottom:478.786929pt;}
.yd2{bottom:478.806129pt;}
.y151{bottom:479.773449pt;}
.y1ae{bottom:479.824649pt;}
.y80{bottom:484.258789pt;}
.y21e{bottom:484.304687pt;}
.y2aa{bottom:485.638013pt;}
.y27d{bottom:485.638021pt;}
.y17a{bottom:485.897351pt;}
.y1e6{bottom:487.767049pt;}
.y112{bottom:487.897351pt;}
.yeb{bottom:488.259853pt;}
.y4c{bottom:494.090681pt;}
.y14{bottom:494.357867pt;}
.yae{bottom:494.780529pt;}
.yd1{bottom:494.799729pt;}
.y150{bottom:495.767049pt;}
.y1ad{bottom:495.818249pt;}
.y21d{bottom:496.304688pt;}
.y2a9{bottom:497.638013pt;}
.y27c{bottom:497.638021pt;}
.y1e5{bottom:499.767049pt;}
.y7f{bottom:500.271589pt;}
.y179{bottom:501.890951pt;}
.y111{bottom:503.890951pt;}
.yea{bottom:504.253453pt;}
.y21c{bottom:508.304688pt;}
.y2a8{bottom:509.638013pt;}
.y27b{bottom:509.638021pt;}
.y4b{bottom:510.084281pt;}
.y13{bottom:510.357867pt;}
.yad{bottom:510.774129pt;}
.yd0{bottom:510.793329pt;}
.y14f{bottom:511.805449pt;}
.y1ac{bottom:511.811849pt;}
.y7e{bottom:516.265189pt;}
.y178{bottom:517.910151pt;}
.y110{bottom:519.890951pt;}
.ye9{bottom:520.247053pt;}
.y21b{bottom:520.304688pt;}
.y2a7{bottom:521.638013pt;}
.y27a{bottom:521.638021pt;}
.y1e4{bottom:523.767049pt;}
.y4a{bottom:526.077881pt;}
.y12{bottom:526.357867pt;}
.yac{bottom:526.780529pt;}
.ycf{bottom:526.786929pt;}
.y14e{bottom:527.799049pt;}
.y1ab{bottom:527.805449pt;}
.y7d{bottom:532.258789pt;}
.y21a{bottom:532.304688pt;}
.y2a6{bottom:533.638013pt;}
.y279{bottom:533.638021pt;}
.y177{bottom:533.903751pt;}
.y1e3{bottom:535.767049pt;}
.ye8{bottom:536.240653pt;}
.y49{bottom:542.090681pt;}
.y11{bottom:542.357867pt;}
.yab{bottom:542.774129pt;}
.yce{bottom:542.780529pt;}
.y14d{bottom:543.792649pt;}
.y1aa{bottom:543.799049pt;}
.y219{bottom:544.304688pt;}
.y2a5{bottom:545.638013pt;}
.y278{bottom:545.638021pt;}
.y7c{bottom:548.277989pt;}
.y176{bottom:549.897351pt;}
.y1e2{bottom:551.767049pt;}
.y10f{bottom:551.903751pt;}
.ye7{bottom:552.234253pt;}
.ycd{bottom:555.507487pt;}
.y218{bottom:556.304688pt;}
.y2a4{bottom:557.638013pt;}
.y277{bottom:557.638021pt;}
.y48{bottom:558.084281pt;}
.y10{bottom:558.357867pt;}
.yaa{bottom:558.774129pt;}
.ycc{bottom:558.812529pt;}
.y14c{bottom:559.786249pt;}
.y1a9{bottom:559.792649pt;}
.y1e1{bottom:563.767049pt;}
.y7b{bottom:564.271589pt;}
.y175{bottom:565.890951pt;}
.y10e{bottom:567.897351pt;}
.ye6{bottom:568.247053pt;}
.y217{bottom:568.304688pt;}
.y2a3{bottom:569.638013pt;}
.y276{bottom:569.638021pt;}
.y1e0{bottom:571.767049pt;}
.y47{bottom:574.077881pt;}
.yf{bottom:574.357867pt;}
.ycb{bottom:574.806129pt;}
.y14b{bottom:575.779849pt;}
.y1a8{bottom:575.786249pt;}
.y7a{bottom:580.265189pt;}
.y216{bottom:580.304688pt;}
.y2a2{bottom:581.638013pt;}
.y275{bottom:581.638021pt;}
.y174{bottom:581.903751pt;}
.y10d{bottom:583.890951pt;}
.ye5{bottom:584.240653pt;}
.y1df{bottom:587.767049pt;}
.y46{bottom:590.077881pt;}
.ye{bottom:590.357867pt;}
.ya9{bottom:590.793329pt;}
.yca{bottom:590.799729pt;}
.y14a{bottom:591.773449pt;}
.y1a7{bottom:591.779849pt;}
.y215{bottom:592.304688pt;}
.y2a1{bottom:593.638013pt;}
.y274{bottom:593.638021pt;}
.y1de{bottom:595.767090pt;}
.y79{bottom:596.258789pt;}
.y173{bottom:597.897351pt;}
.y10c{bottom:599.916551pt;}
.ye4{bottom:600.234253pt;}
.y214{bottom:604.304688pt;}
.y2a0{bottom:605.638013pt;}
.y273{bottom:605.638021pt;}
.y45{bottom:606.109962pt;}
.yd{bottom:606.357867pt;}
.ya8{bottom:606.786929pt;}
.yc9{bottom:606.793329pt;}
.y149{bottom:607.767049pt;}
.y1a6{bottom:607.773449pt;}
.y78{bottom:612.271589pt;}
.y172{bottom:613.890951pt;}
.y10b{bottom:615.910151pt;}
.ye3{bottom:616.272694pt;}
.y213{bottom:616.304688pt;}
.y29f{bottom:617.638013pt;}
.y272{bottom:617.638021pt;}
.y1dd{bottom:619.767090pt;}
.y44{bottom:622.103562pt;}
.ya7{bottom:622.780529pt;}
.yc8{bottom:622.786929pt;}
.y1a5{bottom:623.767049pt;}
.y148{bottom:623.779849pt;}
.yc{bottom:626.357867pt;}
.y77{bottom:628.265189pt;}
.y212{bottom:628.304688pt;}
.y29e{bottom:629.638013pt;}
.y271{bottom:629.638021pt;}
.y171{bottom:629.910151pt;}
.y1dc{bottom:631.767090pt;}
.y10a{bottom:631.903751pt;}
.ye2{bottom:632.266294pt;}
.y43{bottom:638.097162pt;}
.ya6{bottom:638.774129pt;}
.yc7{bottom:638.780529pt;}
.y147{bottom:639.773449pt;}
.y1a4{bottom:639.811890pt;}
.y211{bottom:640.304688pt;}
.y29d{bottom:641.638013pt;}
.y270{bottom:641.638021pt;}
.yb{bottom:642.357867pt;}
.y1db{bottom:643.767090pt;}
.y76{bottom:644.258789pt;}
.y170{bottom:645.903751pt;}
.y109{bottom:647.897351pt;}
.ye1{bottom:648.259894pt;}
.y210{bottom:652.304688pt;}
.y29c{bottom:653.638013pt;}
.y26f{bottom:653.638021pt;}
.y42{bottom:654.090762pt;}
.ya5{bottom:654.774129pt;}
.y146{bottom:655.767049pt;}
.y1da{bottom:655.767090pt;}
.y1a3{bottom:655.805490pt;}
.ya{bottom:658.357867pt;}
.y75{bottom:660.258789pt;}
.y16f{bottom:661.897351pt;}
.y108{bottom:663.890951pt;}
.ye0{bottom:664.253494pt;}
.y20f{bottom:664.304688pt;}
.y29b{bottom:665.638013pt;}
.y26e{bottom:665.638021pt;}
.y1d9{bottom:667.767090pt;}
.y41{bottom:670.084362pt;}
.yc6{bottom:670.786970pt;}
.ya4{bottom:670.793370pt;}
.y145{bottom:671.792690pt;}
.y1a2{bottom:671.799090pt;}
.y20e{bottom:676.304688pt;}
.y29a{bottom:677.638013pt;}
.y26d{bottom:677.638021pt;}
.y16e{bottom:677.890951pt;}
.y107{bottom:679.903751pt;}
.ydf{bottom:680.247094pt;}
.y40{bottom:686.077962pt;}
.yc5{bottom:686.780570pt;}
.ya3{bottom:686.786970pt;}
.y144{bottom:687.786290pt;}
.y1a1{bottom:687.792690pt;}
.y20d{bottom:688.304688pt;}
.y299{bottom:689.638013pt;}
.y26c{bottom:689.638021pt;}
.y1d8{bottom:691.767090pt;}
.y106{bottom:695.897351pt;}
.yde{bottom:696.240694pt;}
.y20c{bottom:700.304688pt;}
.y298{bottom:701.638013pt;}
.y26b{bottom:701.638021pt;}
.y3f{bottom:702.077962pt;}
.yc4{bottom:702.774170pt;}
.ya2{bottom:702.780570pt;}
.y74{bottom:702.799770pt;}
.y1d7{bottom:703.767090pt;}
.y143{bottom:703.779890pt;}
.y1a0{bottom:703.786290pt;}
.y105{bottom:711.890951pt;}
.ydd{bottom:712.234294pt;}
.y20b{bottom:712.304688pt;}
.y297{bottom:713.638013pt;}
.y26a{bottom:713.638021pt;}
.y9{bottom:715.153867pt;}
.y1d6{bottom:715.767090pt;}
.y3e{bottom:718.090762pt;}
.ya1{bottom:718.774170pt;}
.y73{bottom:718.793370pt;}
.y142{bottom:719.773490pt;}
.y19f{bottom:719.779890pt;}
.y20a{bottom:724.304688pt;}
.y296{bottom:725.638013pt;}
.y269{bottom:725.638021pt;}
.y1d5{bottom:727.767090pt;}
.y104{bottom:728.014775pt;}
.ydc{bottom:728.234294pt;}
.y1c3{bottom:729.364502pt;}
.y8{bottom:733.824533pt;}
.y3d{bottom:734.084362pt;}
.yc3{bottom:734.780570pt;}
.y72{bottom:734.786970pt;}
.y141{bottom:735.767090pt;}
.y19e{bottom:735.773490pt;}
.y209{bottom:736.304688pt;}
.y295{bottom:737.638013pt;}
.y268{bottom:737.638021pt;}
.y1d4{bottom:739.767090pt;}
.y1c2{bottom:740.746645pt;}
.y208{bottom:748.304688pt;}
.y294{bottom:749.638013pt;}
.y267{bottom:749.638021pt;}
.y3c{bottom:750.077962pt;}
.yc2{bottom:750.774170pt;}
.y71{bottom:750.780570pt;}
.y19d{bottom:751.767090pt;}
.y140{bottom:751.779890pt;}
.y1c1{bottom:755.810628pt;}
.y207{bottom:760.304688pt;}
.y293{bottom:761.638013pt;}
.y266{bottom:761.638021pt;}
.y1d3{bottom:763.767090pt;}
.y7{bottom:765.857333pt;}
.y3b{bottom:766.135562pt;}
.y70{bottom:766.774170pt;}
.yc1{bottom:766.780570pt;}
.y13f{bottom:767.773490pt;}
.y19c{bottom:767.818290pt;}
.y1ca{bottom:771.680016pt;}
.y206{bottom:772.304688pt;}
.y292{bottom:773.638013pt;}
.y265{bottom:773.638021pt;}
.y12e{bottom:774.969311pt;}
.y1d2{bottom:775.767090pt;}
.y3a{bottom:782.129162pt;}
.ya0{bottom:782.774170pt;}
.y6f{bottom:782.818970pt;}
.y13e{bottom:783.767090pt;}
.y19b{bottom:783.811890pt;}
.y205{bottom:784.304688pt;}
.y291{bottom:785.638013pt;}
.y264{bottom:785.638021pt;}
.y1d1{bottom:787.767090pt;}
.y1c9{bottom:787.882683pt;}
.y12d{bottom:790.079978pt;}
.y204{bottom:796.304688pt;}
.y290{bottom:797.638013pt;}
.y263{bottom:797.638021pt;}
.y39{bottom:798.122762pt;}
.yc0{bottom:798.806170pt;}
.y6e{bottom:798.812570pt;}
.y1d0{bottom:799.767090pt;}
.y13d{bottom:799.773490pt;}
.y19a{bottom:799.805490pt;}
.y6{bottom:800.513333pt;}
.y12c{bottom:801.410645pt;}
.y1c8{bottom:804.010683pt;}
.y203{bottom:808.304688pt;}
.y28f{bottom:809.638013pt;}
.y262{bottom:809.638021pt;}
.y1cf{bottom:811.767090pt;}
.y38{bottom:814.116362pt;}
.y9f{bottom:814.786970pt;}
.ybf{bottom:814.799770pt;}
.y6d{bottom:814.806170pt;}
.y13c{bottom:815.767090pt;}
.y199{bottom:815.799090pt;}
.y1c7{bottom:820.138683pt;}
.y202{bottom:820.304688pt;}
.y134{bottom:821.397350pt;}
.y28e{bottom:821.638013pt;}
.y261{bottom:821.638021pt;}
.y1ce{bottom:823.767090pt;}
.y37{bottom:830.109962pt;}
.y9e{bottom:830.780570pt;}
.ybe{bottom:830.793370pt;}
.y6c{bottom:830.799770pt;}
.y13b{bottom:831.767090pt;}
.y198{bottom:831.792690pt;}
.y201{bottom:832.304688pt;}
.y28d{bottom:833.638013pt;}
.y260{bottom:833.638021pt;}
.y5{bottom:835.169333pt;}
.y1c6{bottom:836.262683pt;}
.y133{bottom:837.605317pt;}
.y200{bottom:844.304688pt;}
.y28c{bottom:845.638013pt;}
.y25f{bottom:845.638021pt;}
.y36{bottom:846.103562pt;}
.y9d{bottom:846.774170pt;}
.ybd{bottom:846.786970pt;}
.y6b{bottom:846.793370pt;}
.y13a{bottom:847.779890pt;}
.y197{bottom:847.786290pt;}
.y132{bottom:853.728033pt;}
.y1ff{bottom:856.304688pt;}
.y28b{bottom:857.638013pt;}
.y25e{bottom:857.638021pt;}
.y1c5{bottom:860.166683pt;}
.y35{bottom:862.097162pt;}
.ybc{bottom:862.780570pt;}
.y6a{bottom:862.786970pt;}
.y139{bottom:863.773490pt;}
.y196{bottom:863.779890pt;}
.y1cd{bottom:863.792690pt;}
.y1fe{bottom:868.304688pt;}
.y28a{bottom:869.638013pt;}
.y25d{bottom:869.638021pt;}
.y4{bottom:869.825333pt;}
.y131{bottom:869.866699pt;}
.y1c4{bottom:876.433350pt;}
.y34{bottom:878.090762pt;}
.ybb{bottom:878.774170pt;}
.y69{bottom:878.780570pt;}
.y138{bottom:879.767090pt;}
.y195{bottom:879.773490pt;}
.y1cc{bottom:879.786290pt;}
.y289{bottom:881.638013pt;}
.y25c{bottom:881.638021pt;}
.y130{bottom:881.862683pt;}
.y288{bottom:893.638013pt;}
.y25b{bottom:893.638021pt;}
.y33{bottom:894.084362pt;}
.y68{bottom:894.774170pt;}
.y9c{bottom:894.780570pt;}
.yba{bottom:894.804529pt;}
.y137{bottom:895.767090pt;}
.y1cb{bottom:895.779890pt;}
.y1c0{bottom:898.049848pt;}
.y287{bottom:905.638013pt;}
.y25a{bottom:905.638021pt;}
.y12f{bottom:905.766683pt;}
.y32{bottom:910.077962pt;}
.y9b{bottom:910.774170pt;}
.yb9{bottom:910.798129pt;}
.y67{bottom:910.815885pt;}
.y136{bottom:911.773490pt;}
.y194{bottom:911.776153pt;}
.y1bf{bottom:912.713848pt;}
.y286{bottom:917.638013pt;}
.y259{bottom:917.638021pt;}
.y3{bottom:918.544533pt;}
.y27{bottom:920.666800pt;}
.y31{bottom:926.077962pt;}
.y9a{bottom:926.774170pt;}
.yb8{bottom:926.791729pt;}
.y66{bottom:926.809485pt;}
.y12b{bottom:927.377848pt;}
.y135{bottom:927.767090pt;}
.y193{bottom:927.769753pt;}
.y1fd{bottom:929.637065pt;}
.y285{bottom:929.638013pt;}
.y258{bottom:929.638021pt;}
.y28{bottom:962.780000pt;}
.y2{bottom:988.708533pt;}
.y98{bottom:1001.355225pt;}
.y2f{bottom:1001.355306pt;}
.y240{bottom:1001.707306pt;}
.y1{bottom:1001.711200pt;}
.y99{bottom:1002.044515pt;}
.y30{bottom:1002.048639pt;}
.h2d{height:9.458097pt;}
.h20{height:23.023467pt;}
.h28{height:24.480000pt;}
.he{height:24.724000pt;}
.h2c{height:25.221780pt;}
.h26{height:26.656000pt;}
.h2a{height:26.954667pt;}
.h2b{height:27.132000pt;}
.h27{height:28.560000pt;}
.h29{height:31.584000pt;}
.h19{height:32.890667pt;}
.ha{height:32.965333pt;}
.h25{height:35.240000pt;}
.hd{height:35.320000pt;}
.h23{height:35.560000pt;}
.h3{height:37.589333pt;}
.h17{height:37.674667pt;}
.h1e{height:37.685203pt;}
.h1b{height:37.690732pt;}
.h1d{height:37.695805pt;}
.h1a{height:37.930667pt;}
.h16{height:38.272000pt;}
.h2{height:38.570667pt;}
.h24{height:40.724000pt;}
.h18{height:43.056000pt;}
.h22{height:43.454998pt;}
.h11{height:43.620266pt;}
.h21{height:43.857132pt;}
.h9{height:47.093333pt;}
.h8{height:47.413333pt;}
.hb{height:47.866667pt;}
.hf{height:49.275200pt;}
.h10{height:49.653333pt;}
.h13{height:55.637658pt;}
.h1f{height:55.638389pt;}
.h12{height:55.638472pt;}
.h14{height:55.663258pt;}
.h6{height:59.728533pt;}
.h7{height:59.744533pt;}
.h4{height:62.192000pt;}
.h15{height:62.719902pt;}
.hc{height:65.696832pt;}
.h1c{height:85.674667pt;}
.h5{height:112.768000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:196.517333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.378218pt;}
.x7{left:67.039733pt;}
.x1{left:75.496000pt;}
.x2{left:82.430533pt;}
.x3{left:84.162800pt;}
.xa{left:86.266002pt;}
.x1a{left:95.590535pt;}
.xf{left:181.875061pt;}
.xe{left:203.034424pt;}
.x4{left:240.726667pt;}
.xb{left:406.294802pt;}
.xc{left:416.961594pt;}
.x17{left:423.027588pt;}
.x16{left:423.945475pt;}
.x10{left:426.299194pt;}
.x11{left:429.804118pt;}
.x15{left:433.475856pt;}
.x12{left:435.898785pt;}
.x13{left:438.314657pt;}
.xd{left:486.548014pt;}
.x6{left:522.720000pt;}
.x18{left:535.698120pt;}
.x19{left:536.724121pt;}
.x14{left:587.513184pt;}
.x5{left:617.715467pt;}
.x9{left:669.671183pt;}
}




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