
    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_ce5f0db18d98ab5407597b7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_410f6e428c86f3185a9d9cff.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3308d1c6833c30cd9c8c49b3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_be3b8bf4e80ab1369b8544dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_0ace85be3031f6a7b49d97f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_d158cf4902fe971fc06467df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_ebe405be2d359dd645be8789.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_a81d90f363a47ce443046017.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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_c29e313cb0383ec5521ed6c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_3bb703fffe73e21dab986d19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_c127d241c4d0cbd4ca939c31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.664000;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_a09c1f7e56d0c1550c225210.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_a28b4f967585349eac0693a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_432aa83d971a88a3232300ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.408477,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.408477,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.408477,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.153007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153007,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.334000px;}
.v2{vertical-align:21.696000px;}
.v3{vertical-align:40.434000px;}
.ls2{letter-spacing:-0.038145px;}
.ls9{letter-spacing:-0.024776px;}
.ls3{letter-spacing:-0.021797px;}
.ls7{letter-spacing:-0.020647px;}
.ls14{letter-spacing:-0.020543px;}
.ls15{letter-spacing:-0.013986px;}
.ls6{letter-spacing:-0.012388px;}
.ls4{letter-spacing:-0.010899px;}
.ls12{letter-spacing:-0.008692px;}
.ls5{letter-spacing:-0.008259px;}
.ls8{letter-spacing:-0.004129px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002338px;}
.lsc{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.005449px;}
.ls13{letter-spacing:0.074671px;}
.lse{letter-spacing:0.133856px;}
.lsd{letter-spacing:2.989409px;}
.ls11{letter-spacing:13.281199px;}
.lsf{letter-spacing:16.268525px;}
.lsb{letter-spacing:18.163409px;}
.lsa{letter-spacing:29.419409px;}
.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;}
}
.wsab{word-spacing:-22.416000px;}
.wsed{word-spacing:-19.092327px;}
.ws2{word-spacing:-16.605662px;}
.ws98{word-spacing:-15.278643px;}
.wsa4{word-spacing:-13.802184px;}
.wsa8{word-spacing:-12.555821px;}
.wsa5{word-spacing:-12.421965px;}
.wsaa{word-spacing:-12.310769px;}
.ws20{word-spacing:-12.305883px;}
.ws62{word-spacing:-12.287555px;}
.wse7{word-spacing:-4.759170px;}
.wsc4{word-spacing:-3.335478px;}
.wsfd{word-spacing:-3.275703px;}
.wsfb{word-spacing:-3.263869px;}
.ws8d{word-spacing:-3.156152px;}
.ws28{word-spacing:-2.797498px;}
.ws83{word-spacing:-2.677947px;}
.wscf{word-spacing:-2.498620px;}
.ws7c{word-spacing:-2.319293px;}
.wsce{word-spacing:-2.259518px;}
.wsd0{word-spacing:-2.199742px;}
.wsd2{word-spacing:-2.080191px;}
.wsef{word-spacing:-2.020415px;}
.ws96{word-spacing:-1.841088px;}
.ws6b{word-spacing:-1.781313px;}
.ws52{word-spacing:-1.661762px;}
.wsde{word-spacing:-1.482435px;}
.ws7e{word-spacing:-1.422659px;}
.ws26{word-spacing:-1.123781px;}
.ws97{word-spacing:-1.064006px;}
.wsdf{word-spacing:-1.004230px;}
.wscd{word-spacing:-0.944454px;}
.wsc0{word-spacing:-0.884679px;}
.wsb6{word-spacing:-0.824903px;}
.wse8{word-spacing:-0.705352px;}
.ws6e{word-spacing:-0.645576px;}
.wsf4{word-spacing:-0.527390px;}
.ws6f{word-spacing:-0.526025px;}
.wsdc{word-spacing:-0.466250px;}
.ws72{word-spacing:-0.406474px;}
.ws100{word-spacing:-0.397954px;}
.ws58{word-spacing:-0.346698px;}
.ws8b{word-spacing:-0.227147px;}
.ws99{word-spacing:-0.107596px;}
.ws80{word-spacing:-0.059776px;}
.ws47{word-spacing:0.000000px;}
.ws73{word-spacing:0.004129px;}
.wsa2{word-spacing:0.011955px;}
.wsfc{word-spacing:0.023910px;}
.ws65{word-spacing:0.071731px;}
.ws89{word-spacing:0.131506px;}
.ws4f{word-spacing:0.191282px;}
.wsf5{word-spacing:0.203237px;}
.ws49{word-spacing:0.251058px;}
.ws33{word-spacing:0.310833px;}
.ws2f{word-spacing:0.370609px;}
.ws5a{word-spacing:0.430384px;}
.wsa0{word-spacing:0.490160px;}
.ws51{word-spacing:0.609711px;}
.ws8e{word-spacing:0.669487px;}
.wsfe{word-spacing:0.729262px;}
.wsc8{word-spacing:0.908589px;}
.ws3a{word-spacing:0.968365px;}
.wsbd{word-spacing:0.989655px;}
.wsa9{word-spacing:1.028140px;}
.ws31{word-spacing:1.147692px;}
.wsb{word-spacing:1.159647px;}
.ws7f{word-spacing:1.207467px;}
.wsaf{word-spacing:1.267243px;}
.ws9e{word-spacing:1.327018px;}
.ws48{word-spacing:1.386794px;}
.ws59{word-spacing:1.446570px;}
.ws1a{word-spacing:1.458525px;}
.ws9a{word-spacing:1.506345px;}
.wsdb{word-spacing:1.566121px;}
.ws3f{word-spacing:1.625896px;}
.ws61{word-spacing:1.685672px;}
.ws92{word-spacing:1.805223px;}
.wse4{word-spacing:1.924774px;}
.ws10{word-spacing:2.116056px;}
.ws94{word-spacing:2.163877px;}
.wsf3{word-spacing:2.223652px;}
.ws1b{word-spacing:2.414934px;}
.ws25{word-spacing:2.462755px;}
.wsb3{word-spacing:2.522530px;}
.wscc{word-spacing:2.582306px;}
.ws88{word-spacing:2.642082px;}
.ws101{word-spacing:2.654037px;}
.wsbf{word-spacing:2.701857px;}
.ws7a{word-spacing:2.761633px;}
.wsc9{word-spacing:2.821408px;}
.wsd1{word-spacing:2.881184px;}
.ws69{word-spacing:2.940960px;}
.ws3b{word-spacing:3.000735px;}
.ws53{word-spacing:3.060511px;}
.wscb{word-spacing:3.120286px;}
.ws2d{word-spacing:3.180062px;}
.ws7b{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws44{word-spacing:3.359389px;}
.ws81{word-spacing:3.478940px;}
.wsda{word-spacing:3.598491px;}
.wsc3{word-spacing:3.658267px;}
.ws85{word-spacing:3.718042px;}
.ws18{word-spacing:3.729997px;}
.wsf8{word-spacing:3.755102px;}
.ws38{word-spacing:3.777818px;}
.ws76{word-spacing:3.801728px;}
.ws82{word-spacing:3.837594px;}
.ws64{word-spacing:3.861504px;}
.ws67{word-spacing:3.897369px;}
.ws77{word-spacing:3.957145px;}
.wsbe{word-spacing:3.969100px;}
.ws27{word-spacing:4.016920px;}
.ws3e{word-spacing:4.076696px;}
.wse3{word-spacing:4.136472px;}
.ws9c{word-spacing:4.196247px;}
.ws105{word-spacing:4.252308px;}
.ws2e{word-spacing:4.256023px;}
.ws43{word-spacing:4.315798px;}
.ws24{word-spacing:4.435350px;}
.ws63{word-spacing:4.483200px;}
.ws9f{word-spacing:4.495125px;}
.ws4e{word-spacing:4.554901px;}
.wsf6{word-spacing:4.674452px;}
.ws4d{word-spacing:4.853779px;}
.ws93{word-spacing:4.913554px;}
.ws22{word-spacing:5.033106px;}
.wsca{word-spacing:5.092881px;}
.ws79{word-spacing:5.152657px;}
.ws2c{word-spacing:5.272208px;}
.ws60{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.wsec{word-spacing:5.391759px;}
.ws4a{word-spacing:5.451535px;}
.wsc6{word-spacing:5.511310px;}
.ws66{word-spacing:5.571086px;}
.ws21{word-spacing:5.630862px;}
.ws17{word-spacing:5.702592px;}
.ws90{word-spacing:5.810188px;}
.wsae{word-spacing:5.869964px;}
.ws19{word-spacing:5.881919px;}
.wsb0{word-spacing:5.929740px;}
.ws8c{word-spacing:6.049291px;}
.ws10c{word-spacing:6.061246px;}
.wse0{word-spacing:6.109066px;}
.ws1c{word-spacing:6.121021px;}
.ws35{word-spacing:6.168842px;}
.ws5b{word-spacing:6.228618px;}
.ws56{word-spacing:6.348169px;}
.ws29{word-spacing:6.407944px;}
.ws78{word-spacing:6.467720px;}
.ws32{word-spacing:6.527496px;}
.wsf9{word-spacing:6.539451px;}
.wsea{word-spacing:6.647047px;}
.wsa1{word-spacing:6.766598px;}
.ws30{word-spacing:6.886149px;}
.wse5{word-spacing:6.945925px;}
.ws106{word-spacing:6.957880px;}
.ws8f{word-spacing:7.005700px;}
.ws45{word-spacing:7.065476px;}
.ws39{word-spacing:7.185027px;}
.ws95{word-spacing:7.244803px;}
.ws7d{word-spacing:7.304578px;}
.wsd3{word-spacing:7.364354px;}
.wsa3{word-spacing:7.424130px;}
.wsf7{word-spacing:7.483905px;}
.wsc1{word-spacing:7.675187px;}
.wse9{word-spacing:7.782783px;}
.ws9{word-spacing:7.794738px;}
.ws108{word-spacing:7.842559px;}
.ws15{word-spacing:7.854514px;}
.ws6a{word-spacing:7.902334px;}
.wsb2{word-spacing:7.962110px;}
.wsb8{word-spacing:8.141437px;}
.wsd8{word-spacing:8.260988px;}
.ws50{word-spacing:8.320764px;}
.ws3d{word-spacing:8.440315px;}
.ws8a{word-spacing:8.500090px;}
.ws37{word-spacing:8.559866px;}
.wsd6{word-spacing:8.739193px;}
.ws36{word-spacing:8.751148px;}
.wsb4{word-spacing:8.798968px;}
.ws1d{word-spacing:8.804406px;}
.ws42{word-spacing:8.858744px;}
.ws86{word-spacing:8.978295px;}
.ws55{word-spacing:9.038071px;}
.ws6c{word-spacing:9.097846px;}
.wse1{word-spacing:9.217398px;}
.wsa{word-spacing:9.229353px;}
.ws84{word-spacing:9.277173px;}
.wse{word-spacing:9.289128px;}
.wsc7{word-spacing:9.336949px;}
.ws23{word-spacing:9.396724px;}
.ws74{word-spacing:9.456500px;}
.ws16{word-spacing:9.468455px;}
.wsd9{word-spacing:9.516276px;}
.wsc{word-spacing:9.588006px;}
.ws41{word-spacing:9.635827px;}
.ws2b{word-spacing:9.695602px;}
.wsd{word-spacing:9.767333px;}
.ws75{word-spacing:9.815154px;}
.ws57{word-spacing:9.874929px;}
.wsf0{word-spacing:9.919226px;}
.ws46{word-spacing:10.173807px;}
.wsba{word-spacing:10.233583px;}
.wsb1{word-spacing:10.293358px;}
.ws109{word-spacing:10.305313px;}
.ws9d{word-spacing:10.353134px;}
.ws12{word-spacing:10.365089px;}
.ws104{word-spacing:10.532461px;}
.ws4b{word-spacing:10.592236px;}
.ws11{word-spacing:10.604191px;}
.wsd7{word-spacing:10.652012px;}
.ws5c{word-spacing:10.831339px;}
.wsfa{word-spacing:10.891114px;}
.ws91{word-spacing:10.950890px;}
.wsb5{word-spacing:11.130217px;}
.ws5e{word-spacing:11.249768px;}
.ws1e{word-spacing:11.309544px;}
.ws2a{word-spacing:11.429095px;}
.ws34{word-spacing:11.548646px;}
.ws54{word-spacing:11.608422px;}
.ws4{word-spacing:11.620377px;}
.ws5f{word-spacing:11.727973px;}
.wsbc{word-spacing:11.787748px;}
.ws7{word-spacing:11.799703px;}
.ws14{word-spacing:11.919255px;}
.wsad{word-spacing:11.967075px;}
.ws87{word-spacing:12.086626px;}
.ws4c{word-spacing:12.146402px;}
.ws68{word-spacing:12.325729px;}
.wsb9{word-spacing:12.385504px;}
.wsd5{word-spacing:12.564831px;}
.ws3c{word-spacing:12.624607px;}
.wsf{word-spacing:12.636562px;}
.wse2{word-spacing:12.744158px;}
.ws3{word-spacing:12.756113px;}
.ws10a{word-spacing:12.803934px;}
.wsb7{word-spacing:12.863709px;}
.ws5d{word-spacing:13.043036px;}
.ws9b{word-spacing:13.162587px;}
.ws102{word-spacing:13.222363px;}
.ws40{word-spacing:13.282138px;}
.ws8{word-spacing:13.413645px;}
.wsbb{word-spacing:13.891849px;}
.ws71{word-spacing:14.298324px;}
.wsdd{word-spacing:14.477650px;}
.wsee{word-spacing:14.537426px;}
.ws13{word-spacing:14.848259px;}
.ws5{word-spacing:15.087361px;}
.ws6{word-spacing:15.804669px;}
.wseb{word-spacing:15.972040px;}
.ws1f{word-spacing:18.661942px;}
.wsac{word-spacing:19.259698px;}
.ws6d{word-spacing:20.514986px;}
.wsc2{word-spacing:20.689926px;}
.wsf2{word-spacing:20.694313px;}
.ws10b{word-spacing:21.722453px;}
.ws70{word-spacing:25.894790px;}
.ws103{word-spacing:27.150078px;}
.ws107{word-spacing:32.051677px;}
.wsf1{word-spacing:37.610808px;}
.wsff{word-spacing:38.148788px;}
.wsc5{word-spacing:49.649613px;}
.wsd4{word-spacing:58.281600px;}
.wse6{word-spacing:102.358112px;}
.wsa7{word-spacing:204.821478px;}
.wsa6{word-spacing:539.419869px;}
._22{margin-left:-318.078633px;}
._23{margin-left:-190.399338px;}
._5{margin-left:-37.615736px;}
._1f{margin-left:-33.615396px;}
._8{margin-left:-31.501741px;}
._b{margin-left:-29.768249px;}
._24{margin-left:-28.589495px;}
._1a{margin-left:-27.535043px;}
._19{margin-left:-26.279713px;}
._12{margin-left:-24.704081px;}
._a{margin-left:-23.252708px;}
._4{margin-left:-10.845727px;}
._2{margin-left:-8.091257px;}
._9{margin-left:-6.635092px;}
._d{margin-left:-5.080926px;}
._e{margin-left:-3.808880px;}
._0{margin-left:-2.668393px;}
._c{margin-left:-1.298305px;}
._7{width:1.613941px;}
._3{width:2.754470px;}
._f{width:3.868656px;}
._1{width:5.336786px;}
._20{width:10.515713px;}
._27{width:15.661207px;}
._10{width:17.454475px;}
._1e{width:18.628478px;}
._6{width:20.959727px;}
._17{width:23.111648px;}
._1d{width:24.205900px;}
._11{width:25.583957px;}
._1b{width:28.013248px;}
._26{width:29.208760px;}
._16{width:30.284720px;}
._13{width:32.855071px;}
._1c{width:35.312071px;}
._14{width:36.322056px;}
._29{width:37.600080px;}
._25{width:39.310836px;}
._2c{width:41.097429px;}
._28{width:43.435352px;}
._2b{width:47.760704px;}
._2d{width:54.694674px;}
._2a{width:56.129288px;}
._18{width:68.741940px;}
._15{width:80.697600px;}
._21{width:191.379104px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(46,117,182);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:17.119318px;}
.fs9{font-size:24.890393px;}
.fsb{font-size:27.971381px;}
.fs7{font-size:37.642319px;}
.fs4{font-size:41.293606px;}
.fs6{font-size:41.824799px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:43.461810px;}
.fs3{font-size:54.493171px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y15a{bottom:3.221214px;}
.y173{bottom:3.880390px;}
.yfd{bottom:4.182210px;}
.yea{bottom:4.182472px;}
.yf0{bottom:4.182733px;}
.yf4{bottom:4.182736px;}
.ye7{bottom:5.750640px;}
.y125{bottom:6.959064px;}
.y90{bottom:8.014389px;}
.yed{bottom:13.070241px;}
.yfa{bottom:16.206839px;}
.yfc{bottom:17.775270px;}
.yf6{bottom:24.571799px;}
.yf9{bottom:26.663039px;}
.ye8{bottom:28.754279px;}
.yee{bottom:28.754541px;}
.yf2{bottom:41.301983px;}
.y8b{bottom:49.043715px;}
.yec{bottom:49.666940px;}
.y82{bottom:55.112426px;}
.y81{bottom:71.472638px;}
.y8a{bottom:71.941020px;}
.y80{bottom:89.636574px;}
.y7f{bottom:105.996786px;}
.y159{bottom:106.594348px;}
.y8f{bottom:113.410123px;}
.y124{bottom:117.103708px;}
.y8e{bottom:125.807496px;}
.y31{bottom:130.960500px;}
.y83{bottom:144.537082px;}
.y30{bottom:148.893000px;}
.y172{bottom:153.891289px;}
.y89{bottom:164.719281px;}
.y2f{bottom:166.825500px;}
.y196{bottom:173.739000px;}
.y4d{bottom:175.792500px;}
.y2e{bottom:184.758000px;}
.y122{bottom:184.759500px;}
.ye5{bottom:189.933000px;}
.y195{bottom:191.671500px;}
.y4c{bottom:193.725000px;}
.y9a{bottom:196.077000px;}
.y7d{bottom:201.850500px;}
.y2d{bottom:202.692000px;}
.y8d{bottom:203.586067px;}
.ye4{bottom:207.867000px;}
.y194{bottom:209.605500px;}
.y4b{bottom:211.657500px;}
.y8c{bottom:211.747748px;}
.y99{bottom:214.011000px;}
.y138{bottom:216.805500px;}
.y121{bottom:216.918000px;}
.y7c{bottom:219.783000px;}
.y2c{bottom:220.624500px;}
.ye3{bottom:225.799500px;}
.y193{bottom:227.538000px;}
.y4a{bottom:229.590000px;}
.y2b{bottom:238.557000px;}
.y192{bottom:245.470500px;}
.y170{bottom:247.522500px;}
.y49{bottom:247.524000px;}
.y120{bottom:253.639500px;}
.y2a{bottom:256.489500px;}
.ye2{bottom:260.059500px;}
.y98{bottom:260.559000px;}
.y7b{bottom:261.205500px;}
.y191{bottom:263.403000px;}
.y48{bottom:265.456500px;}
.y137{bottom:265.591500px;}
.y29{bottom:274.422000px;}
.y11f{bottom:274.560000px;}
.y97{bottom:278.491500px;}
.y7a{bottom:279.138000px;}
.y47{bottom:283.389000px;}
.y136{bottom:283.524000px;}
.y190{bottom:288.249000px;}
.y28{bottom:292.354500px;}
.ye1{bottom:294.321000px;}
.y96{bottom:296.424000px;}
.y79{bottom:297.070500px;}
.y46{bottom:301.321500px;}
.y135{bottom:301.458000px;}
.y18f{bottom:306.181500px;}
.y27{bottom:310.288500px;}
.ye0{bottom:312.253500px;}
.y78{bottom:315.003000px;}
.y11e{bottom:315.438000px;}
.y45{bottom:319.254000px;}
.y134{bottom:319.390500px;}
.y18e{bottom:324.115500px;}
.y11d{bottom:325.689000px;}
.y26{bottom:328.221000px;}
.y157{bottom:329.355000px;}
.y77{bottom:332.935500px;}
.y44{bottom:337.186500px;}
.y133{bottom:337.323000px;}
.y18d{bottom:342.048000px;}
.y95{bottom:342.972000px;}
.ydf{bottom:346.515000px;}
.y76{bottom:350.869500px;}
.yb8{bottom:355.120500px;}
.y132{bottom:355.255500px;}
.y1b8{bottom:360.154500px;}
.y25{bottom:363.555000px;}
.y43{bottom:364.086000px;}
.yde{bottom:364.447500px;}
.y18c{bottom:366.894000px;}
.y11c{bottom:371.097000px;}
.yb7{bottom:373.053000px;}
.y1b7{bottom:378.087000px;}
.y156{bottom:380.221500px;}
.y42{bottom:382.018500px;}
.y75{bottom:384.021000px;}
.y11b{bottom:389.029500px;}
.y94{bottom:389.520000px;}
.yb6{bottom:390.985500px;}
.y18b{bottom:395.082000px;}
.y1b6{bottom:396.019500px;}
.y155{bottom:398.154000px;}
.y41{bottom:399.952500px;}
.ydd{bottom:405.487500px;}
.y11a{bottom:406.962000px;}
.y93{bottom:407.452500px;}
.yb5{bottom:408.918000px;}
.y1b5{bottom:413.952000px;}
.y154{bottom:416.086500px;}
.y40{bottom:417.885000px;}
.y74{bottom:422.230500px;}
.y24{bottom:423.028500px;}
.ydc{bottom:423.421500px;}
.y119{bottom:424.894500px;}
.yb4{bottom:426.850500px;}
.y1b4{bottom:431.884500px;}
.y153{bottom:434.019000px;}
.y3f{bottom:435.817500px;}
.y18a{bottom:438.846000px;}
.y23{bottom:440.961000px;}
.y118{bottom:442.827000px;}
.y73{bottom:443.151000px;}
.yb3{bottom:444.783000px;}
.y1b3{bottom:449.818500px;}
.ydb{bottom:450.319500px;}
.y152{bottom:451.951500px;}
.y3e{bottom:453.750000px;}
.y189{bottom:456.778500px;}
.y22{bottom:458.893500px;}
.y117{bottom:460.759500px;}
.yb2{bottom:462.717000px;}
.y92{bottom:465.994500px;}
.yda{bottom:468.253500px;}
.y151{bottom:469.884000px;}
.y3d{bottom:471.682500px;}
.y1b2{bottom:473.728500px;}
.y188{bottom:474.711000px;}
.y116{bottom:478.693500px;}
.yb1{bottom:480.649500px;}
.y91{bottom:483.927000px;}
.y16f{bottom:484.090500px;}
.y21{bottom:485.793000px;}
.yd9{bottom:486.186000px;}
.y150{bottom:487.818000px;}
.y72{bottom:488.671500px;}
.y3c{bottom:489.615000px;}
.y1b1{bottom:491.661000px;}
.y187{bottom:492.643500px;}
.y115{bottom:496.626000px;}
.y10a{bottom:498.582000px;}
.y20{bottom:503.725500px;}
.yd8{bottom:504.118500px;}
.y14f{bottom:505.750500px;}
.y71{bottom:506.605500px;}
.y3b{bottom:507.549000px;}
.y1b0{bottom:509.593500px;}
.y88{bottom:511.423500px;}
.y114{bottom:514.558500px;}
.y109{bottom:516.514500px;}
.y186{bottom:519.543000px;}
.y1f{bottom:521.658000px;}
.yd7{bottom:522.051000px;}
.yb0{bottom:522.058500px;}
.y70{bottom:524.538000px;}
.y1af{bottom:527.526000px;}
.y16e{bottom:531.439500px;}
.y113{bottom:532.491000px;}
.y3a{bottom:534.447000px;}
.y1e{bottom:539.590500px;}
.yd6{bottom:539.983500px;}
.y6f{bottom:542.470500px;}
.y1ae{bottom:545.458500px;}
.y185{bottom:546.442500px;}
.y16d{bottom:549.372000px;}
.y14e{bottom:549.732000px;}
.y112{bottom:550.423500px;}
.y39{bottom:552.379500px;}
.y1d{bottom:557.524500px;}
.yd5{bottom:557.916000px;}
.y6e{bottom:560.403000px;}
.y1ad{bottom:563.392500px;}
.y184{bottom:564.375000px;}
.y16c{bottom:567.304500px;}
.y38{bottom:570.313500px;}
.y14d{bottom:570.652500px;}
.y1c{bottom:575.457000px;}
.yd4{bottom:575.850000px;}
.y6d{bottom:578.335500px;}
.y1ac{bottom:581.325000px;}
.y183{bottom:582.307500px;}
.y111{bottom:582.583500px;}
.yaf{bottom:583.948500px;}
.y16b{bottom:585.237000px;}
.y37{bottom:588.246000px;}
.y1b{bottom:593.389500px;}
.yd3{bottom:593.782500px;}
.y6c{bottom:596.268000px;}
.y182{bottom:600.240000px;}
.yae{bottom:601.881000px;}
.y16a{bottom:603.171000px;}
.y1ab{bottom:605.235000px;}
.y36{bottom:606.178500px;}
.y1a{bottom:611.322000px;}
.yd2{bottom:611.715000px;}
.y6b{bottom:614.202000px;}
.y181{bottom:618.174000px;}
.yad{bottom:619.813500px;}
.y169{bottom:621.103500px;}
.y1aa{bottom:623.167500px;}
.y35{bottom:624.111000px;}
.y14c{bottom:625.794000px;}
.y108{bottom:627.738000px;}
.y19{bottom:629.254500px;}
.y110{bottom:633.058500px;}
.yac{bottom:637.746000px;}
.y168{bottom:639.036000px;}
.y131{bottom:640.180500px;}
.y6a{bottom:641.100000px;}
.y34{bottom:642.043500px;}
.y14b{bottom:643.726500px;}
.y180{bottom:645.072000px;}
.y18{bottom:647.187000px;}
.yd1{bottom:649.677000px;}
.y10f{bottom:650.991000px;}
.yab{bottom:655.678500px;}
.y167{bottom:656.968500px;}
.y130{bottom:658.113000px;}
.y69{bottom:659.034000px;}
.y14a{bottom:661.659000px;}
.y17f{bottom:663.004500px;}
.y17{bottom:665.121000px;}
.y10e{bottom:668.923500px;}
.yd0{bottom:670.599000px;}
.yaa{bottom:673.612500px;}
.y166{bottom:674.901000px;}
.y12f{bottom:676.047000px;}
.y68{bottom:676.966500px;}
.y149{bottom:679.591500px;}
.y17e{bottom:680.938500px;}
.y16{bottom:683.053500px;}
.y107{bottom:684.837000px;}
.y10d{bottom:686.856000px;}
.ya9{bottom:691.545000px;}
.y165{bottom:692.835000px;}
.y12e{bottom:693.979500px;}
.y67{bottom:694.899000px;}
.y148{bottom:697.525500px;}
.y17d{bottom:698.871000px;}
.y33{bottom:699.948000px;}
.y1a9{bottom:700.876500px;}
.y15{bottom:700.986000px;}
.y106{bottom:702.769500px;}
.y10c{bottom:704.790000px;}
.ya8{bottom:709.477500px;}
.y164{bottom:710.767500px;}
.y12d{bottom:711.912000px;}
.y66{bottom:712.831500px;}
.y147{bottom:715.458000px;}
.ycf{bottom:715.708500px;}
.y17c{bottom:716.803500px;}
.y32{bottom:717.880500px;}
.y1a8{bottom:718.809000px;}
.y14{bottom:718.918500px;}
.y105{bottom:720.702000px;}
.y10b{bottom:722.722500px;}
.ya7{bottom:727.410000px;}
.y163{bottom:728.700000px;}
.y12c{bottom:729.844500px;}
.y65{bottom:730.764000px;}
.yce{bottom:733.641000px;}
.y1a7{bottom:736.741500px;}
.y13{bottom:736.851000px;}
.y104{bottom:738.634500px;}
.y146{bottom:742.357500px;}
.y162{bottom:746.632500px;}
.y12b{bottom:747.777000px;}
.y64{bottom:748.696500px;}
.ycd{bottom:751.575000px;}
.ya6{bottom:754.309500px;}
.y12{bottom:754.785000px;}
.y103{bottom:756.567000px;}
.y145{bottom:760.290000px;}
.y1a6{bottom:760.653000px;}
.y161{bottom:764.565000px;}
.y12a{bottom:765.711000px;}
.y63{bottom:766.630500px;}
.y17b{bottom:767.950500px;}
.ycc{bottom:769.507500px;}
.y87{bottom:772.084500px;}
.ya5{bottom:772.242000px;}
.y11{bottom:772.717500px;}
.y102{bottom:774.499500px;}
.y144{bottom:778.222500px;}
.y1a5{bottom:778.585500px;}
.y160{bottom:782.497500px;}
.y62{bottom:784.563000px;}
.y17a{bottom:785.884500px;}
.ycb{bottom:787.440000px;}
.y86{bottom:790.017000px;}
.ya4{bottom:790.174500px;}
.y10{bottom:790.650000px;}
.y143{bottom:796.155000px;}
.y129{bottom:797.757000px;}
.y15f{bottom:800.431500px;}
.y61{bottom:802.495500px;}
.y179{bottom:803.817000px;}
.y85{bottom:807.951000px;}
.ya3{bottom:808.107000px;}
.yf{bottom:808.582500px;}
.y142{bottom:814.087500px;}
.yca{bottom:814.339500px;}
.y60{bottom:820.428000px;}
.y178{bottom:821.749500px;}
.y101{bottom:822.220500px;}
.y84{bottom:825.883500px;}
.ya2{bottom:826.041000px;}
.ye{bottom:826.515000px;}
.y141{bottom:832.020000px;}
.yc9{bottom:832.272000px;}
.y15e{bottom:834.315000px;}
.y128{bottom:835.896000px;}
.y1a4{bottom:838.360500px;}
.y177{bottom:839.682000px;}
.y100{bottom:843.142500px;}
.ya1{bottom:843.973500px;}
.yd{bottom:844.447500px;}
.y5f{bottom:847.327500px;}
.y140{bottom:849.954000px;}
.yc8{bottom:850.204500px;}
.y7e{bottom:853.380000px;}
.y1a3{bottom:856.293000px;}
.y176{bottom:857.614500px;}
.ya0{bottom:861.906000px;}
.yc{bottom:862.381500px;}
.y5e{bottom:865.260000px;}
.y13f{bottom:867.886500px;}
.yc7{bottom:868.137000px;}
.y1a2{bottom:874.227000px;}
.y175{bottom:875.547000px;}
.yb{bottom:880.314000px;}
.y5d{bottom:883.192500px;}
.y127{bottom:884.521500px;}
.yc6{bottom:886.069500px;}
.y15d{bottom:888.793500px;}
.y174{bottom:893.481000px;}
.y13e{bottom:894.784500px;}
.yff{bottom:895.197000px;}
.y1a1{bottom:898.137000px;}
.ya{bottom:898.246500px;}
.y5c{bottom:901.125000px;}
.y126{bottom:902.454000px;}
.y9f{bottom:903.315000px;}
.yc5{bottom:904.003500px;}
.y15c{bottom:906.726000px;}
.y13d{bottom:912.718500px;}
.yfe{bottom:913.129500px;}
.y1a0{bottom:916.069500px;}
.y9{bottom:916.179000px;}
.y5b{bottom:919.059000px;}
.y171{bottom:920.977420px;}
.y9e{bottom:921.249000px;}
.yc4{bottom:921.936000px;}
.y15b{bottom:924.658500px;}
.y123{bottom:929.950500px;}
.y13c{bottom:930.651000px;}
.y19f{bottom:934.002000px;}
.y8{bottom:934.111500px;}
.y5a{bottom:936.991500px;}
.y13b{bottom:948.583500px;}
.yc3{bottom:948.834000px;}
.y19e{bottom:951.934500px;}
.y158{bottom:952.156500px;}
.y59{bottom:954.924000px;}
.yf3{bottom:964.969272px;}
.yc2{bottom:966.768000px;}
.y19d{bottom:969.868500px;}
.y7{bottom:970.662000px;}
.y58{bottom:981.823500px;}
.yf1{bottom:982.745074px;}
.yc1{bottom:984.700500px;}
.y19c{bottom:987.801000px;}
.y9d{bottom:993.207000px;}
.y57{bottom:999.756000px;}
.yc0{bottom:1002.633000px;}
.y13a{bottom:1010.301000px;}
.y9c{bottom:1011.139500px;}
.y19b{bottom:1011.711000px;}
.y56{bottom:1017.688500px;}
.y6{bottom:1018.809000px;}
.ybf{bottom:1020.565500px;}
.y139{bottom:1028.233500px;}
.y9b{bottom:1029.073500px;}
.y19a{bottom:1029.643500px;}
.y55{bottom:1035.621000px;}
.y5{bottom:1036.741500px;}
.ybe{bottom:1038.498000px;}
.y199{bottom:1047.576000px;}
.y54{bottom:1053.553500px;}
.y4{bottom:1054.674000px;}
.yef{bottom:1055.938212px;}
.ybd{bottom:1056.432000px;}
.yfb{bottom:1060.121215px;}
.ye9{bottom:1061.166574px;}
.y198{bottom:1065.508500px;}
.y53{bottom:1071.486000px;}
.y3{bottom:1072.606500px;}
.yeb{bottom:1073.714014px;}
.ybc{bottom:1074.364500px;}
.ye6{bottom:1078.942375px;}
.y197{bottom:1083.442500px;}
.yf7{bottom:1086.261454px;}
.y52{bottom:1089.420000px;}
.yf8{bottom:1091.489815px;}
.ybb{bottom:1092.297000px;}
.yf5{bottom:1104.037255px;}
.y51{bottom:1107.352500px;}
.yba{bottom:1110.229500px;}
.y2{bottom:1115.980500px;}
.y50{bottom:1125.285000px;}
.yb9{bottom:1128.162000px;}
.y1{bottom:1139.890500px;}
.y4f{bottom:1143.217500px;}
.y4e{bottom:1161.150000px;}
.h1d{height:12.463331px;}
.hf{height:15.684300px;}
.h1e{height:20.363930px;}
.h1b{height:25.959902px;}
.h11{height:27.423018px;}
.h15{height:29.277099px;}
.hb{height:30.062874px;}
.he{height:30.470020px;}
.h19{height:31.641386px;}
.h9{height:39.672519px;}
.h14{height:39.733037px;}
.h7{height:42.082022px;}
.hc{height:43.067940px;}
.h3{height:44.831700px;}
.h17{height:45.051619px;}
.h4{height:50.498765px;}
.h13{height:56.463480px;}
.h2{height:60.598349px;}
.hd{height:64.827917px;}
.h5{height:67.832765px;}
.h6{height:67.838765px;}
.h10{height:70.056279px;}
.h16{height:85.265700px;}
.h12{height:89.923581px;}
.h1a{height:223.938190px;}
.ha{height:229.019219px;}
.h18{height:246.145961px;}
.h1c{height:255.117513px;}
.h8{height:322.714848px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:41.825323px;}
.w5{width:52.558874px;}
.w7{width:57.655487px;}
.wd{width:60.678636px;}
.wb{width:62.410967px;}
.w9{width:70.529944px;}
.w6{width:99.333377px;}
.wa{width:104.562523px;}
.w4{width:115.018461px;}
.w8{width:188.211600px;}
.w2{width:274.691770px;}
.wf{width:290.842644px;}
.w3{width:323.149669px;}
.we{width:323.161323px;}
.w10{width:326.538329px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.225306px;}
.x21{left:3.136591px;}
.x2f{left:4.947054px;}
.x12{left:6.192203px;}
.x2a{left:7.891487px;}
.x10{left:13.770778px;}
.x11{left:14.935569px;}
.x28{left:23.690020px;}
.x1c{left:42.739714px;}
.x22{left:73.389706px;}
.x1d{left:93.893534px;}
.x8{left:108.000000px;}
.x2{left:111.535500px;}
.x2e{left:124.158000px;}
.x2d{left:125.182948px;}
.x15{left:132.145958px;}
.x13{left:135.852060px;}
.xd{left:137.887500px;}
.x1b{left:141.927677px;}
.xc{left:143.865000px;}
.x18{left:151.918500px;}
.x30{left:155.512657px;}
.x1{left:160.374000px;}
.x5{left:161.668500px;}
.x1e{left:173.157471px;}
.x3{left:178.419000px;}
.xf{left:199.082980px;}
.x7{left:229.252500px;}
.x16{left:237.409553px;}
.x14{left:248.439075px;}
.xb{left:256.776000px;}
.x4{left:266.889000px;}
.x9{left:278.443500px;}
.x2b{left:288.925500px;}
.x20{left:335.367639px;}
.x23{left:356.206584px;}
.x6{left:413.454000px;}
.xa{left:465.165000px;}
.x1a{left:475.957500px;}
.x31{left:480.939000px;}
.xe{left:489.400500px;}
.x17{left:495.054000px;}
.x19{left:501.031500px;}
.x25{left:513.122516px;}
.x26{left:534.198294px;}
.x24{left:535.366774px;}
.x2c{left:585.495000px;}
.x29{left:691.907067px;}
.x27{left:701.334116px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.408000pt;}
.v2{vertical-align:19.285333pt;}
.v3{vertical-align:35.941333pt;}
.ls2{letter-spacing:-0.033907pt;}
.ls9{letter-spacing:-0.022023pt;}
.ls3{letter-spacing:-0.019375pt;}
.ls7{letter-spacing:-0.018353pt;}
.ls14{letter-spacing:-0.018261pt;}
.ls15{letter-spacing:-0.012432pt;}
.ls6{letter-spacing:-0.011012pt;}
.ls4{letter-spacing:-0.009688pt;}
.ls12{letter-spacing:-0.007727pt;}
.ls5{letter-spacing:-0.007341pt;}
.ls8{letter-spacing:-0.003671pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002079pt;}
.lsc{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004844pt;}
.ls13{letter-spacing:0.066374pt;}
.lse{letter-spacing:0.118983pt;}
.lsd{letter-spacing:2.657253pt;}
.ls11{letter-spacing:11.805510pt;}
.lsf{letter-spacing:14.460911pt;}
.lsb{letter-spacing:16.145253pt;}
.lsa{letter-spacing:26.150586pt;}
.wsab{word-spacing:-19.925333pt;}
.wsed{word-spacing:-16.970957pt;}
.ws2{word-spacing:-14.760588pt;}
.ws98{word-spacing:-13.581016pt;}
.wsa4{word-spacing:-12.268608pt;}
.wsa8{word-spacing:-11.160730pt;}
.wsa5{word-spacing:-11.041747pt;}
.wsaa{word-spacing:-10.942906pt;}
.ws20{word-spacing:-10.938563pt;}
.ws62{word-spacing:-10.922271pt;}
.wse7{word-spacing:-4.230374pt;}
.wsc4{word-spacing:-2.964870pt;}
.wsfd{word-spacing:-2.911736pt;}
.wsfb{word-spacing:-2.901217pt;}
.ws8d{word-spacing:-2.805468pt;}
.ws28{word-spacing:-2.486665pt;}
.ws83{word-spacing:-2.380397pt;}
.wscf{word-spacing:-2.220996pt;}
.ws7c{word-spacing:-2.061594pt;}
.wsce{word-spacing:-2.008460pt;}
.wsd0{word-spacing:-1.955326pt;}
.wsd2{word-spacing:-1.849059pt;}
.wsef{word-spacing:-1.795925pt;}
.ws96{word-spacing:-1.636523pt;}
.ws6b{word-spacing:-1.583389pt;}
.ws52{word-spacing:-1.477121pt;}
.wsde{word-spacing:-1.317720pt;}
.ws7e{word-spacing:-1.264586pt;}
.ws26{word-spacing:-0.998917pt;}
.ws97{word-spacing:-0.945783pt;}
.wsdf{word-spacing:-0.892649pt;}
.wscd{word-spacing:-0.839515pt;}
.wsc0{word-spacing:-0.786381pt;}
.wsb6{word-spacing:-0.733247pt;}
.wse8{word-spacing:-0.626980pt;}
.ws6e{word-spacing:-0.573846pt;}
.wsf4{word-spacing:-0.468791pt;}
.ws6f{word-spacing:-0.467578pt;}
.wsdc{word-spacing:-0.414444pt;}
.ws72{word-spacing:-0.361310pt;}
.ws100{word-spacing:-0.353737pt;}
.ws58{word-spacing:-0.308176pt;}
.ws8b{word-spacing:-0.201909pt;}
.ws99{word-spacing:-0.095641pt;}
.ws80{word-spacing:-0.053134pt;}
.ws47{word-spacing:0.000000pt;}
.ws73{word-spacing:0.003671pt;}
.wsa2{word-spacing:0.010627pt;}
.wsfc{word-spacing:0.021254pt;}
.ws65{word-spacing:0.063761pt;}
.ws89{word-spacing:0.116895pt;}
.ws4f{word-spacing:0.170028pt;}
.wsf5{word-spacing:0.180655pt;}
.ws49{word-spacing:0.223162pt;}
.ws33{word-spacing:0.276296pt;}
.ws2f{word-spacing:0.329430pt;}
.ws5a{word-spacing:0.382564pt;}
.wsa0{word-spacing:0.435698pt;}
.ws51{word-spacing:0.541965pt;}
.ws8e{word-spacing:0.595099pt;}
.wsfe{word-spacing:0.648233pt;}
.wsc8{word-spacing:0.807635pt;}
.ws3a{word-spacing:0.860769pt;}
.wsbd{word-spacing:0.879693pt;}
.wsa9{word-spacing:0.913903pt;}
.ws31{word-spacing:1.020170pt;}
.wsb{word-spacing:1.030797pt;}
.ws7f{word-spacing:1.073304pt;}
.wsaf{word-spacing:1.126438pt;}
.ws9e{word-spacing:1.179572pt;}
.ws48{word-spacing:1.232706pt;}
.ws59{word-spacing:1.285840pt;}
.ws1a{word-spacing:1.296466pt;}
.ws9a{word-spacing:1.338973pt;}
.wsdb{word-spacing:1.392107pt;}
.ws3f{word-spacing:1.445241pt;}
.ws61{word-spacing:1.498375pt;}
.ws92{word-spacing:1.604643pt;}
.wse4{word-spacing:1.710911pt;}
.ws10{word-spacing:1.880939pt;}
.ws94{word-spacing:1.923446pt;}
.wsf3{word-spacing:1.976580pt;}
.ws1b{word-spacing:2.146608pt;}
.ws25{word-spacing:2.189115pt;}
.wsb3{word-spacing:2.242249pt;}
.wscc{word-spacing:2.295383pt;}
.ws88{word-spacing:2.348517pt;}
.ws101{word-spacing:2.359144pt;}
.wsbf{word-spacing:2.401651pt;}
.ws7a{word-spacing:2.454785pt;}
.wsc9{word-spacing:2.507919pt;}
.wsd1{word-spacing:2.561052pt;}
.ws69{word-spacing:2.614186pt;}
.ws3b{word-spacing:2.667320pt;}
.ws53{word-spacing:2.720454pt;}
.wscb{word-spacing:2.773588pt;}
.ws2d{word-spacing:2.826722pt;}
.ws7b{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws44{word-spacing:2.986123pt;}
.ws81{word-spacing:3.092391pt;}
.wsda{word-spacing:3.198659pt;}
.wsc3{word-spacing:3.251793pt;}
.ws85{word-spacing:3.304927pt;}
.ws18{word-spacing:3.315553pt;}
.wsf8{word-spacing:3.337869pt;}
.ws38{word-spacing:3.358060pt;}
.ws76{word-spacing:3.379314pt;}
.ws82{word-spacing:3.411194pt;}
.ws64{word-spacing:3.432448pt;}
.ws67{word-spacing:3.464328pt;}
.ws77{word-spacing:3.517462pt;}
.wsbe{word-spacing:3.528089pt;}
.ws27{word-spacing:3.570596pt;}
.ws3e{word-spacing:3.623730pt;}
.wse3{word-spacing:3.676864pt;}
.ws9c{word-spacing:3.729997pt;}
.ws105{word-spacing:3.779830pt;}
.ws2e{word-spacing:3.783131pt;}
.ws43{word-spacing:3.836265pt;}
.ws24{word-spacing:3.942533pt;}
.ws63{word-spacing:3.985067pt;}
.ws9f{word-spacing:3.995667pt;}
.ws4e{word-spacing:4.048801pt;}
.wsf6{word-spacing:4.155068pt;}
.ws4d{word-spacing:4.314470pt;}
.ws93{word-spacing:4.367604pt;}
.ws22{word-spacing:4.473872pt;}
.wsca{word-spacing:4.527005pt;}
.ws79{word-spacing:4.580139pt;}
.ws2c{word-spacing:4.686407pt;}
.ws60{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.wsec{word-spacing:4.792675pt;}
.ws4a{word-spacing:4.845809pt;}
.wsc6{word-spacing:4.898943pt;}
.ws66{word-spacing:4.952076pt;}
.ws21{word-spacing:5.005210pt;}
.ws17{word-spacing:5.068971pt;}
.ws90{word-spacing:5.164612pt;}
.wsae{word-spacing:5.217746pt;}
.ws19{word-spacing:5.228372pt;}
.wsb0{word-spacing:5.270880pt;}
.ws8c{word-spacing:5.377147pt;}
.ws10c{word-spacing:5.387774pt;}
.wse0{word-spacing:5.430281pt;}
.ws1c{word-spacing:5.440908pt;}
.ws35{word-spacing:5.483415pt;}
.ws5b{word-spacing:5.536549pt;}
.ws56{word-spacing:5.642817pt;}
.ws29{word-spacing:5.695951pt;}
.ws78{word-spacing:5.749084pt;}
.ws32{word-spacing:5.802218pt;}
.wsf9{word-spacing:5.812845pt;}
.wsea{word-spacing:5.908486pt;}
.wsa1{word-spacing:6.014754pt;}
.ws30{word-spacing:6.121021pt;}
.wse5{word-spacing:6.174155pt;}
.ws106{word-spacing:6.184782pt;}
.ws8f{word-spacing:6.227289pt;}
.ws45{word-spacing:6.280423pt;}
.ws39{word-spacing:6.386691pt;}
.ws95{word-spacing:6.439825pt;}
.ws7d{word-spacing:6.492959pt;}
.wsd3{word-spacing:6.546092pt;}
.wsa3{word-spacing:6.599226pt;}
.wsf7{word-spacing:6.652360pt;}
.wsc1{word-spacing:6.822388pt;}
.wse9{word-spacing:6.918029pt;}
.ws9{word-spacing:6.928656pt;}
.ws108{word-spacing:6.971163pt;}
.ws15{word-spacing:6.981790pt;}
.ws6a{word-spacing:7.024297pt;}
.wsb2{word-spacing:7.077431pt;}
.wsb8{word-spacing:7.236833pt;}
.wsd8{word-spacing:7.343100pt;}
.ws50{word-spacing:7.396234pt;}
.ws3d{word-spacing:7.502502pt;}
.ws8a{word-spacing:7.555636pt;}
.ws37{word-spacing:7.608770pt;}
.wsd6{word-spacing:7.768171pt;}
.ws36{word-spacing:7.778798pt;}
.wsb4{word-spacing:7.821305pt;}
.ws1d{word-spacing:7.826139pt;}
.ws42{word-spacing:7.874439pt;}
.ws86{word-spacing:7.980707pt;}
.ws55{word-spacing:8.033841pt;}
.ws6c{word-spacing:8.086975pt;}
.wse1{word-spacing:8.193242pt;}
.wsa{word-spacing:8.203869pt;}
.ws84{word-spacing:8.246376pt;}
.wse{word-spacing:8.257003pt;}
.wsc7{word-spacing:8.299510pt;}
.ws23{word-spacing:8.352644pt;}
.ws74{word-spacing:8.405778pt;}
.ws16{word-spacing:8.416404pt;}
.wsd9{word-spacing:8.458912pt;}
.wsc{word-spacing:8.522672pt;}
.ws41{word-spacing:8.565179pt;}
.ws2b{word-spacing:8.618313pt;}
.wsd{word-spacing:8.682074pt;}
.ws75{word-spacing:8.724581pt;}
.ws57{word-spacing:8.777715pt;}
.wsf0{word-spacing:8.817090pt;}
.ws46{word-spacing:9.043384pt;}
.wsba{word-spacing:9.096518pt;}
.wsb1{word-spacing:9.149652pt;}
.ws109{word-spacing:9.160279pt;}
.ws9d{word-spacing:9.202786pt;}
.ws12{word-spacing:9.213412pt;}
.ws104{word-spacing:9.362187pt;}
.ws4b{word-spacing:9.415321pt;}
.ws11{word-spacing:9.425948pt;}
.wsd7{word-spacing:9.468455pt;}
.ws5c{word-spacing:9.627857pt;}
.wsfa{word-spacing:9.680991pt;}
.ws91{word-spacing:9.734124pt;}
.wsb5{word-spacing:9.893526pt;}
.ws5e{word-spacing:9.999794pt;}
.ws1e{word-spacing:10.052928pt;}
.ws2a{word-spacing:10.159195pt;}
.ws34{word-spacing:10.265463pt;}
.ws54{word-spacing:10.318597pt;}
.ws4{word-spacing:10.329224pt;}
.ws5f{word-spacing:10.424865pt;}
.wsbc{word-spacing:10.477999pt;}
.ws7{word-spacing:10.488625pt;}
.ws14{word-spacing:10.594893pt;}
.wsad{word-spacing:10.637400pt;}
.ws87{word-spacing:10.743668pt;}
.ws4c{word-spacing:10.796802pt;}
.ws68{word-spacing:10.956203pt;}
.wsb9{word-spacing:11.009337pt;}
.wsd5{word-spacing:11.168739pt;}
.ws3c{word-spacing:11.221873pt;}
.wsf{word-spacing:11.232499pt;}
.wse2{word-spacing:11.328140pt;}
.ws3{word-spacing:11.338767pt;}
.ws10a{word-spacing:11.381274pt;}
.wsb7{word-spacing:11.434408pt;}
.ws5d{word-spacing:11.593810pt;}
.ws9b{word-spacing:11.700077pt;}
.ws102{word-spacing:11.753211pt;}
.ws40{word-spacing:11.806345pt;}
.ws8{word-spacing:11.923240pt;}
.wsbb{word-spacing:12.348311pt;}
.ws71{word-spacing:12.709621pt;}
.wsdd{word-spacing:12.869023pt;}
.wsee{word-spacing:12.922156pt;}
.ws13{word-spacing:13.198452pt;}
.ws5{word-spacing:13.410988pt;}
.ws6{word-spacing:14.048594pt;}
.wseb{word-spacing:14.197369pt;}
.ws1f{word-spacing:16.588393pt;}
.wsac{word-spacing:17.119732pt;}
.ws6d{word-spacing:18.235543pt;}
.wsc2{word-spacing:18.391046pt;}
.wsf2{word-spacing:18.394945pt;}
.ws10b{word-spacing:19.308847pt;}
.ws70{word-spacing:23.017591pt;}
.ws103{word-spacing:24.133402pt;}
.ws107{word-spacing:28.490379pt;}
.wsf1{word-spacing:33.431829pt;}
.wsff{word-spacing:33.910034pt;}
.wsc5{word-spacing:44.132990pt;}
.wsd4{word-spacing:51.805867pt;}
.wse6{word-spacing:90.984988pt;}
.wsa7{word-spacing:182.063536pt;}
.wsa6{word-spacing:479.484328pt;}
._22{margin-left:-282.736563pt;}
._23{margin-left:-169.243856pt;}
._5{margin-left:-33.436210pt;}
._1f{margin-left:-29.880352pt;}
._8{margin-left:-28.001548pt;}
._b{margin-left:-26.460666pt;}
._24{margin-left:-25.412884pt;}
._1a{margin-left:-24.475594pt;}
._19{margin-left:-23.359745pt;}
._12{margin-left:-21.959183pt;}
._a{margin-left:-20.669074pt;}
._4{margin-left:-9.640646pt;}
._2{margin-left:-7.192228pt;}
._9{margin-left:-5.897859pt;}
._d{margin-left:-4.516379pt;}
._e{margin-left:-3.385671pt;}
._0{margin-left:-2.371905pt;}
._c{margin-left:-1.154049pt;}
._7{width:1.434614pt;}
._3{width:2.448418pt;}
._f{width:3.438805pt;}
._1{width:4.743810pt;}
._20{width:9.347300pt;}
._27{width:13.921073pt;}
._10{width:15.515089pt;}
._1e{width:16.558647pt;}
._6{width:18.630868pt;}
._17{width:20.543687pt;}
._1d{width:21.516355pt;}
._11{width:22.741295pt;}
._1b{width:24.900665pt;}
._26{width:25.963342pt;}
._16{width:26.919751pt;}
._13{width:29.204508pt;}
._1c{width:31.388508pt;}
._14{width:32.286272pt;}
._29{width:33.422293pt;}
._25{width:34.942965pt;}
._2c{width:36.531048pt;}
._28{width:38.609202pt;}
._2b{width:42.453959pt;}
._2d{width:48.617488pt;}
._2a{width:49.892701pt;}
._18{width:61.103947pt;}
._15{width:71.731200pt;}
._21{width:170.114759pt;}
.fsa{font-size:15.217171pt;}
.fs9{font-size:22.124794pt;}
.fsb{font-size:24.863450pt;}
.fs7{font-size:33.459839pt;}
.fs4{font-size:36.705427pt;}
.fs6{font-size:37.177599pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:38.632720pt;}
.fs3{font-size:48.438374pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:2.863301pt;}
.y173{bottom:3.449236pt;}
.yfd{bottom:3.717520pt;}
.yea{bottom:3.717753pt;}
.yf0{bottom:3.717985pt;}
.yf4{bottom:3.717987pt;}
.ye7{bottom:5.111680pt;}
.y125{bottom:6.185834pt;}
.y90{bottom:7.123901pt;}
.yed{bottom:11.617992pt;}
.yfa{bottom:14.406079pt;}
.yfc{bottom:15.800240pt;}
.yf6{bottom:21.841599pt;}
.yf9{bottom:23.700479pt;}
.ye8{bottom:25.559359pt;}
.yee{bottom:25.559592pt;}
.yf2{bottom:36.712874pt;}
.y8b{bottom:43.594414pt;}
.yec{bottom:44.148391pt;}
.y82{bottom:48.988823pt;}
.y81{bottom:63.531234pt;}
.y8a{bottom:63.947573pt;}
.y80{bottom:79.676955pt;}
.y7f{bottom:94.219366pt;}
.y159{bottom:94.750532pt;}
.y8f{bottom:100.808998pt;}
.y124{bottom:104.092185pt;}
.y8e{bottom:111.828885pt;}
.y31{bottom:116.409333pt;}
.y83{bottom:128.477406pt;}
.y30{bottom:132.349333pt;}
.y172{bottom:136.792257pt;}
.y89{bottom:146.417139pt;}
.y2f{bottom:148.289333pt;}
.y196{bottom:154.434667pt;}
.y4d{bottom:156.260000pt;}
.y2e{bottom:164.229333pt;}
.y122{bottom:164.230667pt;}
.ye5{bottom:168.829333pt;}
.y195{bottom:170.374667pt;}
.y4c{bottom:172.200000pt;}
.y9a{bottom:174.290667pt;}
.y7d{bottom:179.422667pt;}
.y2d{bottom:180.170667pt;}
.y8d{bottom:180.965393pt;}
.ye4{bottom:184.770667pt;}
.y194{bottom:186.316000pt;}
.y4b{bottom:188.140000pt;}
.y8c{bottom:188.220220pt;}
.y99{bottom:190.232000pt;}
.y138{bottom:192.716000pt;}
.y121{bottom:192.816000pt;}
.y7c{bottom:195.362667pt;}
.y2c{bottom:196.110667pt;}
.ye3{bottom:200.710667pt;}
.y193{bottom:202.256000pt;}
.y4a{bottom:204.080000pt;}
.y2b{bottom:212.050667pt;}
.y192{bottom:218.196000pt;}
.y170{bottom:220.020000pt;}
.y49{bottom:220.021333pt;}
.y120{bottom:225.457333pt;}
.y2a{bottom:227.990667pt;}
.ye2{bottom:231.164000pt;}
.y98{bottom:231.608000pt;}
.y7b{bottom:232.182667pt;}
.y191{bottom:234.136000pt;}
.y48{bottom:235.961333pt;}
.y137{bottom:236.081333pt;}
.y29{bottom:243.930667pt;}
.y11f{bottom:244.053333pt;}
.y97{bottom:247.548000pt;}
.y7a{bottom:248.122667pt;}
.y47{bottom:251.901333pt;}
.y136{bottom:252.021333pt;}
.y190{bottom:256.221333pt;}
.y28{bottom:259.870667pt;}
.ye1{bottom:261.618667pt;}
.y96{bottom:263.488000pt;}
.y79{bottom:264.062667pt;}
.y46{bottom:267.841333pt;}
.y135{bottom:267.962667pt;}
.y18f{bottom:272.161333pt;}
.y27{bottom:275.812000pt;}
.ye0{bottom:277.558667pt;}
.y78{bottom:280.002667pt;}
.y11e{bottom:280.389333pt;}
.y45{bottom:283.781333pt;}
.y134{bottom:283.902667pt;}
.y18e{bottom:288.102667pt;}
.y11d{bottom:289.501333pt;}
.y26{bottom:291.752000pt;}
.y157{bottom:292.760000pt;}
.y77{bottom:295.942667pt;}
.y44{bottom:299.721333pt;}
.y133{bottom:299.842667pt;}
.y18d{bottom:304.042667pt;}
.y95{bottom:304.864000pt;}
.ydf{bottom:308.013333pt;}
.y76{bottom:311.884000pt;}
.yb8{bottom:315.662667pt;}
.y132{bottom:315.782667pt;}
.y1b8{bottom:320.137333pt;}
.y25{bottom:323.160000pt;}
.y43{bottom:323.632000pt;}
.yde{bottom:323.953333pt;}
.y18c{bottom:326.128000pt;}
.y11c{bottom:329.864000pt;}
.yb7{bottom:331.602667pt;}
.y1b7{bottom:336.077333pt;}
.y156{bottom:337.974667pt;}
.y42{bottom:339.572000pt;}
.y75{bottom:341.352000pt;}
.y11b{bottom:345.804000pt;}
.y94{bottom:346.240000pt;}
.yb6{bottom:347.542667pt;}
.y18b{bottom:351.184000pt;}
.y1b6{bottom:352.017333pt;}
.y155{bottom:353.914667pt;}
.y41{bottom:355.513333pt;}
.ydd{bottom:360.433333pt;}
.y11a{bottom:361.744000pt;}
.y93{bottom:362.180000pt;}
.yb5{bottom:363.482667pt;}
.y1b5{bottom:367.957333pt;}
.y154{bottom:369.854667pt;}
.y40{bottom:371.453333pt;}
.y74{bottom:375.316000pt;}
.y24{bottom:376.025333pt;}
.ydc{bottom:376.374667pt;}
.y119{bottom:377.684000pt;}
.yb4{bottom:379.422667pt;}
.y1b4{bottom:383.897333pt;}
.y153{bottom:385.794667pt;}
.y3f{bottom:387.393333pt;}
.y18a{bottom:390.085333pt;}
.y23{bottom:391.965333pt;}
.y118{bottom:393.624000pt;}
.y73{bottom:393.912000pt;}
.yb3{bottom:395.362667pt;}
.y1b3{bottom:399.838667pt;}
.ydb{bottom:400.284000pt;}
.y152{bottom:401.734667pt;}
.y3e{bottom:403.333333pt;}
.y189{bottom:406.025333pt;}
.y22{bottom:407.905333pt;}
.y117{bottom:409.564000pt;}
.yb2{bottom:411.304000pt;}
.y92{bottom:414.217333pt;}
.yda{bottom:416.225333pt;}
.y151{bottom:417.674667pt;}
.y3d{bottom:419.273333pt;}
.y1b2{bottom:421.092000pt;}
.y188{bottom:421.965333pt;}
.y116{bottom:425.505333pt;}
.yb1{bottom:427.244000pt;}
.y91{bottom:430.157333pt;}
.y16f{bottom:430.302667pt;}
.y21{bottom:431.816000pt;}
.yd9{bottom:432.165333pt;}
.y150{bottom:433.616000pt;}
.y72{bottom:434.374667pt;}
.y3c{bottom:435.213333pt;}
.y1b1{bottom:437.032000pt;}
.y187{bottom:437.905333pt;}
.y115{bottom:441.445333pt;}
.y10a{bottom:443.184000pt;}
.y20{bottom:447.756000pt;}
.yd8{bottom:448.105333pt;}
.y14f{bottom:449.556000pt;}
.y71{bottom:450.316000pt;}
.y3b{bottom:451.154667pt;}
.y1b0{bottom:452.972000pt;}
.y88{bottom:454.598667pt;}
.y114{bottom:457.385333pt;}
.y109{bottom:459.124000pt;}
.y186{bottom:461.816000pt;}
.y1f{bottom:463.696000pt;}
.yd7{bottom:464.045333pt;}
.yb0{bottom:464.052000pt;}
.y70{bottom:466.256000pt;}
.y1af{bottom:468.912000pt;}
.y16e{bottom:472.390667pt;}
.y113{bottom:473.325333pt;}
.y3a{bottom:475.064000pt;}
.y1e{bottom:479.636000pt;}
.yd6{bottom:479.985333pt;}
.y6f{bottom:482.196000pt;}
.y1ae{bottom:484.852000pt;}
.y185{bottom:485.726667pt;}
.y16d{bottom:488.330667pt;}
.y14e{bottom:488.650667pt;}
.y112{bottom:489.265333pt;}
.y39{bottom:491.004000pt;}
.y1d{bottom:495.577333pt;}
.yd5{bottom:495.925333pt;}
.y6e{bottom:498.136000pt;}
.y1ad{bottom:500.793333pt;}
.y184{bottom:501.666667pt;}
.y16c{bottom:504.270667pt;}
.y38{bottom:506.945333pt;}
.y14d{bottom:507.246667pt;}
.y1c{bottom:511.517333pt;}
.yd4{bottom:511.866667pt;}
.y6d{bottom:514.076000pt;}
.y1ac{bottom:516.733333pt;}
.y183{bottom:517.606667pt;}
.y111{bottom:517.852000pt;}
.yaf{bottom:519.065333pt;}
.y16b{bottom:520.210667pt;}
.y37{bottom:522.885333pt;}
.y1b{bottom:527.457333pt;}
.yd3{bottom:527.806667pt;}
.y6c{bottom:530.016000pt;}
.y182{bottom:533.546667pt;}
.yae{bottom:535.005333pt;}
.y16a{bottom:536.152000pt;}
.y1ab{bottom:537.986667pt;}
.y36{bottom:538.825333pt;}
.y1a{bottom:543.397333pt;}
.yd2{bottom:543.746667pt;}
.y6b{bottom:545.957333pt;}
.y181{bottom:549.488000pt;}
.yad{bottom:550.945333pt;}
.y169{bottom:552.092000pt;}
.y1aa{bottom:553.926667pt;}
.y35{bottom:554.765333pt;}
.y14c{bottom:556.261333pt;}
.y108{bottom:557.989333pt;}
.y19{bottom:559.337333pt;}
.y110{bottom:562.718667pt;}
.yac{bottom:566.885333pt;}
.y168{bottom:568.032000pt;}
.y131{bottom:569.049333pt;}
.y6a{bottom:569.866667pt;}
.y34{bottom:570.705333pt;}
.y14b{bottom:572.201333pt;}
.y180{bottom:573.397333pt;}
.y18{bottom:575.277333pt;}
.yd1{bottom:577.490667pt;}
.y10f{bottom:578.658667pt;}
.yab{bottom:582.825333pt;}
.y167{bottom:583.972000pt;}
.y130{bottom:584.989333pt;}
.y69{bottom:585.808000pt;}
.y14a{bottom:588.141333pt;}
.y17f{bottom:589.337333pt;}
.y17{bottom:591.218667pt;}
.y10e{bottom:594.598667pt;}
.yd0{bottom:596.088000pt;}
.yaa{bottom:598.766667pt;}
.y166{bottom:599.912000pt;}
.y12f{bottom:600.930667pt;}
.y68{bottom:601.748000pt;}
.y149{bottom:604.081333pt;}
.y17e{bottom:605.278667pt;}
.y16{bottom:607.158667pt;}
.y107{bottom:608.744000pt;}
.y10d{bottom:610.538667pt;}
.ya9{bottom:614.706667pt;}
.y165{bottom:615.853333pt;}
.y12e{bottom:616.870667pt;}
.y67{bottom:617.688000pt;}
.y148{bottom:620.022667pt;}
.y17d{bottom:621.218667pt;}
.y33{bottom:622.176000pt;}
.y1a9{bottom:623.001333pt;}
.y15{bottom:623.098667pt;}
.y106{bottom:624.684000pt;}
.y10c{bottom:626.480000pt;}
.ya8{bottom:630.646667pt;}
.y164{bottom:631.793333pt;}
.y12d{bottom:632.810667pt;}
.y66{bottom:633.628000pt;}
.y147{bottom:635.962667pt;}
.ycf{bottom:636.185333pt;}
.y17c{bottom:637.158667pt;}
.y32{bottom:638.116000pt;}
.y1a8{bottom:638.941333pt;}
.y14{bottom:639.038667pt;}
.y105{bottom:640.624000pt;}
.y10b{bottom:642.420000pt;}
.ya7{bottom:646.586667pt;}
.y163{bottom:647.733333pt;}
.y12c{bottom:648.750667pt;}
.y65{bottom:649.568000pt;}
.yce{bottom:652.125333pt;}
.y1a7{bottom:654.881333pt;}
.y13{bottom:654.978667pt;}
.y104{bottom:656.564000pt;}
.y146{bottom:659.873333pt;}
.y162{bottom:663.673333pt;}
.y12b{bottom:664.690667pt;}
.y64{bottom:665.508000pt;}
.ycd{bottom:668.066667pt;}
.ya6{bottom:670.497333pt;}
.y12{bottom:670.920000pt;}
.y103{bottom:672.504000pt;}
.y145{bottom:675.813333pt;}
.y1a6{bottom:676.136000pt;}
.y161{bottom:679.613333pt;}
.y12a{bottom:680.632000pt;}
.y63{bottom:681.449333pt;}
.y17b{bottom:682.622667pt;}
.ycc{bottom:684.006667pt;}
.y87{bottom:686.297333pt;}
.ya5{bottom:686.437333pt;}
.y11{bottom:686.860000pt;}
.y102{bottom:688.444000pt;}
.y144{bottom:691.753333pt;}
.y1a5{bottom:692.076000pt;}
.y160{bottom:695.553333pt;}
.y62{bottom:697.389333pt;}
.y17a{bottom:698.564000pt;}
.ycb{bottom:699.946667pt;}
.y86{bottom:702.237333pt;}
.ya4{bottom:702.377333pt;}
.y10{bottom:702.800000pt;}
.y143{bottom:707.693333pt;}
.y129{bottom:709.117333pt;}
.y15f{bottom:711.494667pt;}
.y61{bottom:713.329333pt;}
.y179{bottom:714.504000pt;}
.y85{bottom:718.178667pt;}
.ya3{bottom:718.317333pt;}
.yf{bottom:718.740000pt;}
.y142{bottom:723.633333pt;}
.yca{bottom:723.857333pt;}
.y60{bottom:729.269333pt;}
.y178{bottom:730.444000pt;}
.y101{bottom:730.862667pt;}
.y84{bottom:734.118667pt;}
.ya2{bottom:734.258667pt;}
.ye{bottom:734.680000pt;}
.y141{bottom:739.573333pt;}
.yc9{bottom:739.797333pt;}
.y15e{bottom:741.613333pt;}
.y128{bottom:743.018667pt;}
.y1a4{bottom:745.209333pt;}
.y177{bottom:746.384000pt;}
.y100{bottom:749.460000pt;}
.ya1{bottom:750.198667pt;}
.yd{bottom:750.620000pt;}
.y5f{bottom:753.180000pt;}
.y140{bottom:755.514667pt;}
.yc8{bottom:755.737333pt;}
.y7e{bottom:758.560000pt;}
.y1a3{bottom:761.149333pt;}
.y176{bottom:762.324000pt;}
.ya0{bottom:766.138667pt;}
.yc{bottom:766.561333pt;}
.y5e{bottom:769.120000pt;}
.y13f{bottom:771.454667pt;}
.yc7{bottom:771.677333pt;}
.y1a2{bottom:777.090667pt;}
.y175{bottom:778.264000pt;}
.yb{bottom:782.501333pt;}
.y5d{bottom:785.060000pt;}
.y127{bottom:786.241333pt;}
.yc6{bottom:787.617333pt;}
.y15d{bottom:790.038667pt;}
.y174{bottom:794.205333pt;}
.y13e{bottom:795.364000pt;}
.yff{bottom:795.730667pt;}
.y1a1{bottom:798.344000pt;}
.ya{bottom:798.441333pt;}
.y5c{bottom:801.000000pt;}
.y126{bottom:802.181333pt;}
.y9f{bottom:802.946667pt;}
.yc5{bottom:803.558667pt;}
.y15c{bottom:805.978667pt;}
.y13d{bottom:811.305333pt;}
.yfe{bottom:811.670667pt;}
.y1a0{bottom:814.284000pt;}
.y9{bottom:814.381333pt;}
.y5b{bottom:816.941333pt;}
.y171{bottom:818.646596pt;}
.y9e{bottom:818.888000pt;}
.yc4{bottom:819.498667pt;}
.y15b{bottom:821.918667pt;}
.y123{bottom:826.622667pt;}
.y13c{bottom:827.245333pt;}
.y19f{bottom:830.224000pt;}
.y8{bottom:830.321333pt;}
.y5a{bottom:832.881333pt;}
.y13b{bottom:843.185333pt;}
.yc3{bottom:843.408000pt;}
.y19e{bottom:846.164000pt;}
.y158{bottom:846.361333pt;}
.y59{bottom:848.821333pt;}
.yf3{bottom:857.750464pt;}
.yc2{bottom:859.349333pt;}
.y19d{bottom:862.105333pt;}
.y7{bottom:862.810667pt;}
.y58{bottom:872.732000pt;}
.yf1{bottom:873.551177pt;}
.yc1{bottom:875.289333pt;}
.y19c{bottom:878.045333pt;}
.y9d{bottom:882.850667pt;}
.y57{bottom:888.672000pt;}
.yc0{bottom:891.229333pt;}
.y13a{bottom:898.045333pt;}
.y9c{bottom:898.790667pt;}
.y19b{bottom:899.298667pt;}
.y56{bottom:904.612000pt;}
.y6{bottom:905.608000pt;}
.ybf{bottom:907.169333pt;}
.y139{bottom:913.985333pt;}
.y9b{bottom:914.732000pt;}
.y19a{bottom:915.238667pt;}
.y55{bottom:920.552000pt;}
.y5{bottom:921.548000pt;}
.ybe{bottom:923.109333pt;}
.y199{bottom:931.178667pt;}
.y54{bottom:936.492000pt;}
.y4{bottom:937.488000pt;}
.yef{bottom:938.611744pt;}
.ybd{bottom:939.050667pt;}
.yfb{bottom:942.329969pt;}
.ye9{bottom:943.259177pt;}
.y198{bottom:947.118667pt;}
.y53{bottom:952.432000pt;}
.y3{bottom:953.428000pt;}
.yeb{bottom:954.412457pt;}
.ybc{bottom:954.990667pt;}
.ye6{bottom:959.059889pt;}
.y197{bottom:963.060000pt;}
.yf7{bottom:965.565737pt;}
.y52{bottom:968.373333pt;}
.yf8{bottom:970.213169pt;}
.ybb{bottom:970.930667pt;}
.yf5{bottom:981.366449pt;}
.y51{bottom:984.313333pt;}
.yba{bottom:986.870667pt;}
.y2{bottom:991.982667pt;}
.y50{bottom:1000.253333pt;}
.yb9{bottom:1002.810667pt;}
.y1{bottom:1013.236000pt;}
.y4f{bottom:1016.193333pt;}
.y4e{bottom:1032.133333pt;}
.h1d{height:11.078517pt;}
.hf{height:13.941600pt;}
.h1e{height:18.101271pt;}
.h1b{height:23.075468pt;}
.h11{height:24.376016pt;}
.h15{height:26.024088pt;}
.hb{height:26.722555pt;}
.he{height:27.084462pt;}
.h19{height:28.125677pt;}
.h9{height:35.264461pt;}
.h14{height:35.318255pt;}
.h7{height:37.406242pt;}
.hc{height:38.282614pt;}
.h3{height:39.850400pt;}
.h17{height:40.045884pt;}
.h4{height:44.887791pt;}
.h13{height:50.189760pt;}
.h2{height:53.865199pt;}
.hd{height:57.624815pt;}
.h5{height:60.295791pt;}
.h6{height:60.301124pt;}
.h10{height:62.272248pt;}
.h16{height:75.791733pt;}
.h12{height:79.932072pt;}
.h1a{height:199.056169pt;}
.ha{height:203.572639pt;}
.h18{height:218.796410pt;}
.h1c{height:226.771122pt;}
.h8{height:286.857642pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.178065pt;}
.w5{width:46.718999pt;}
.w7{width:51.249322pt;}
.wd{width:53.936565pt;}
.wb{width:55.476415pt;}
.w9{width:62.693284pt;}
.w6{width:88.296335pt;}
.wa{width:92.944465pt;}
.w4{width:102.238632pt;}
.w8{width:167.299200pt;}
.w2{width:244.170462pt;}
.wf{width:258.526795pt;}
.w3{width:287.244151pt;}
.we{width:287.254509pt;}
.w10{width:290.256293pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.089161pt;}
.x21{left:2.788081pt;}
.x2f{left:4.397382pt;}
.x12{left:5.504180pt;}
.x2a{left:7.014655pt;}
.x10{left:12.240691pt;}
.x11{left:13.276061pt;}
.x28{left:21.057796pt;}
.x1c{left:37.990857pt;}
.x22{left:65.235294pt;}
.x1d{left:83.460919pt;}
.x8{left:96.000000pt;}
.x2{left:99.142667pt;}
.x2e{left:110.362667pt;}
.x2d{left:111.273731pt;}
.x15{left:117.463074pt;}
.x13{left:120.757386pt;}
.xd{left:122.566667pt;}
.x1b{left:126.157935pt;}
.xc{left:127.880000pt;}
.x18{left:135.038667pt;}
.x30{left:138.233473pt;}
.x1{left:142.554667pt;}
.x5{left:143.705333pt;}
.x1e{left:153.917752pt;}
.x3{left:158.594667pt;}
.xf{left:176.962649pt;}
.x7{left:203.780000pt;}
.x16{left:211.030714pt;}
.x14{left:220.834734pt;}
.xb{left:228.245333pt;}
.x4{left:237.234667pt;}
.x9{left:247.505333pt;}
.x2b{left:256.822667pt;}
.x20{left:298.104568pt;}
.x23{left:316.628075pt;}
.x6{left:367.514667pt;}
.xa{left:413.480000pt;}
.x1a{left:423.073333pt;}
.x31{left:427.501333pt;}
.xe{left:435.022667pt;}
.x17{left:440.048000pt;}
.x19{left:445.361333pt;}
.x25{left:456.108903pt;}
.x26{left:474.842928pt;}
.x24{left:475.881577pt;}
.x2c{left:520.440000pt;}
.x29{left:615.028504pt;}
.x27{left:623.408103pt;}
}




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