
    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_2199f8185a7fa8d80a7821ae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7686ea09035898b7098e61d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_4dc3315ef541cd8aa5aa1789.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_c7c86e88786f5ee0f3ced974.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_6f2c06fe94c26eefb762137b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;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_a7d389be37e3964a498308ac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6329f46cfaa74e4fd6e3eaa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_4354a2a7dfef0997aa888882.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.603000;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_12ebea7c797b7b8b84b89670.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_bd2021e1150183d0bed7ab9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_8e877cb55a82a44aad39a116.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.703450;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_1174f6b147d72f30d7dc0145.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_59bc784b4bd9e51d3fb16ae7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d17aa6487b1c59dde15c3275.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.052000;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_033ffd94f5443dc2dc213445.woff2')format("woff");}.fff{font-family:fff;line-height:0.696000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.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);}
.v2{vertical-align:-26.028000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.854000px;}
.v1{vertical-align:26.034000px;}
.v6{vertical-align:30.276000px;}
.v5{vertical-align:32.184000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000557px;}
.ls11{letter-spacing:0.001002px;}
.ls4{letter-spacing:0.002352px;}
.ls8{letter-spacing:0.002796px;}
.ls9{letter-spacing:2.984352px;}
.ls0{letter-spacing:2.984915px;}
.lsd{letter-spacing:2.988532px;}
.ls1{letter-spacing:2.990915px;}
.ls3{letter-spacing:11.449559px;}
.ls15{letter-spacing:12.282557px;}
.ls14{letter-spacing:12.289002px;}
.lsc{letter-spacing:12.960557px;}
.lsb{letter-spacing:12.961002px;}
.ls5{letter-spacing:13.226352px;}
.ls13{letter-spacing:13.315002px;}
.ls7{letter-spacing:15.355336px;}
.ls6{letter-spacing:15.361052px;}
.ls16{letter-spacing:16.434532px;}
.lsf{letter-spacing:16.739549px;}
.lse{letter-spacing:16.780994px;}
.ls12{letter-spacing:18.348532px;}
.lsa{letter-spacing:31.516479px;}
.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;}
}
.ws9d{word-spacing:-36.071827px;}
.ws1{word-spacing:-17.932800px;}
.ws77{word-spacing:-13.752136px;}
.ws57{word-spacing:-13.449600px;}
.wsd8{word-spacing:-11.955150px;}
.ws76{word-spacing:-9.822955px;}
.ws66{word-spacing:-9.732586px;}
.wsa3{word-spacing:-3.227904px;}
.wsa4{word-spacing:-2.905114px;}
.ws122{word-spacing:-2.869236px;}
.ws42{word-spacing:-2.636122px;}
.ws47{word-spacing:-2.582323px;}
.ws40{word-spacing:-2.528525px;}
.wsa5{word-spacing:-2.474726px;}
.ws11e{word-spacing:-2.391030px;}
.ws3a{word-spacing:-2.259533px;}
.ws128{word-spacing:-2.199748px;}
.ws38{word-spacing:-2.044339px;}
.wsdb{word-spacing:-1.960645px;}
.ws60{word-spacing:-1.936742px;}
.wsdc{word-spacing:-1.912824px;}
.ws95{word-spacing:-1.882944px;}
.wsdd{word-spacing:-1.865003px;}
.ws20{word-spacing:-1.829146px;}
.ws12{word-spacing:-1.775347px;}
.ws3f{word-spacing:-1.721549px;}
.wse0{word-spacing:-1.721542px;}
.ws7d{word-spacing:-1.560154px;}
.wsd6{word-spacing:-1.530259px;}
.ws24{word-spacing:-1.452557px;}
.wscc{word-spacing:-1.434618px;}
.ws56{word-spacing:-1.398758px;}
.wsf9{word-spacing:-1.386797px;}
.wsb1{word-spacing:-1.291162px;}
.ws75{word-spacing:-1.237363px;}
.ws18{word-spacing:-1.183565px;}
.ws21{word-spacing:-1.129766px;}
.wsfa{word-spacing:-1.099874px;}
.ws25{word-spacing:-1.075968px;}
.ws1e{word-spacing:-0.968371px;}
.ws50{word-spacing:-0.806976px;}
.ws16{word-spacing:-0.753178px;}
.wsb2{word-spacing:-0.699379px;}
.ws26{word-spacing:-0.645581px;}
.ws12a{word-spacing:-0.621668px;}
.wsa{word-spacing:-0.591782px;}
.wsa9{word-spacing:-0.537984px;}
.ws110{word-spacing:-0.478206px;}
.ws12b{word-spacing:-0.430385px;}
.ws34{word-spacing:-0.376589px;}
.wsc5{word-spacing:-0.268992px;}
.ws108{word-spacing:-0.239103px;}
.ws5d{word-spacing:-0.232896px;}
.ws59{word-spacing:-0.222518px;}
.ws1b{word-spacing:-0.215194px;}
.ws9c{word-spacing:-0.161395px;}
.ws9f{word-spacing:-0.132490px;}
.wsa1{word-spacing:-0.107597px;}
.ws10{word-spacing:-0.053798px;}
.ws92{word-spacing:-0.035866px;}
.ws62{word-spacing:-0.004070px;}
.wse3{word-spacing:-0.003697px;}
.ws121{word-spacing:-0.003478px;}
.wsce{word-spacing:-0.003194px;}
.ws70{word-spacing:-0.000912px;}
.wsfc{word-spacing:-0.000788px;}
.ws0{word-spacing:0.000000px;}
.ws10f{word-spacing:0.000413px;}
.ws103{word-spacing:0.095641px;}
.wsb8{word-spacing:0.161395px;}
.ws65{word-spacing:0.215194px;}
.ws1f{word-spacing:0.376589px;}
.ws104{word-spacing:0.430385px;}
.ws17{word-spacing:0.430387px;}
.wsd1{word-spacing:0.478206px;}
.ws94{word-spacing:0.537984px;}
.wsf3{word-spacing:0.573847px;}
.ws3d{word-spacing:0.591782px;}
.wsd2{word-spacing:0.621668px;}
.ws5{word-spacing:0.645581px;}
.ws112{word-spacing:0.669488px;}
.ws9{word-spacing:0.699379px;}
.ws9a{word-spacing:0.725510px;}
.ws33{word-spacing:0.753178px;}
.ws89{word-spacing:0.806976px;}
.ws126{word-spacing:0.812950px;}
.ws35{word-spacing:0.860774px;}
.ws8d{word-spacing:0.914573px;}
.ws23{word-spacing:0.968371px;}
.ws125{word-spacing:1.004233px;}
.ws3c{word-spacing:1.075968px;}
.wsc4{word-spacing:1.129766px;}
.wsde{word-spacing:1.147694px;}
.wsbf{word-spacing:1.183565px;}
.ws124{word-spacing:1.195515px;}
.ws55{word-spacing:1.237363px;}
.wsd7{word-spacing:1.291156px;}
.ws4f{word-spacing:1.291162px;}
.ws6f{word-spacing:1.344960px;}
.ws4c{word-spacing:1.398758px;}
.wsd4{word-spacing:1.504541px;}
.wsd3{word-spacing:1.504993px;}
.wsd5{word-spacing:1.530259px;}
.wsa2{word-spacing:1.560154px;}
.wsb9{word-spacing:1.613952px;}
.ws115{word-spacing:1.625900px;}
.ws51{word-spacing:1.667750px;}
.wse7{word-spacing:1.721542px;}
.ws67{word-spacing:1.721549px;}
.ws54{word-spacing:1.775347px;}
.wsf6{word-spacing:1.817183px;}
.ws49{word-spacing:1.829146px;}
.ws13{word-spacing:1.936742px;}
.ws1c{word-spacing:1.990541px;}
.ws12c{word-spacing:2.008465px;}
.ws79{word-spacing:2.044339px;}
.ws53{word-spacing:2.098138px;}
.ws10d{word-spacing:2.151927px;}
.ws22{word-spacing:2.151936px;}
.wsf7{word-spacing:2.199748px;}
.ws96{word-spacing:2.205734px;}
.ws6c{word-spacing:2.259533px;}
.wsf4{word-spacing:2.295389px;}
.wsb{word-spacing:2.313331px;}
.ws73{word-spacing:2.367130px;}
.ws106{word-spacing:2.391030px;}
.ws11{word-spacing:2.420928px;}
.ws120{word-spacing:2.438851px;}
.ws5f{word-spacing:2.474726px;}
.ws101{word-spacing:2.582312px;}
.ws5e{word-spacing:2.582323px;}
.ws6b{word-spacing:2.636122px;}
.ws109{word-spacing:2.677954px;}
.ws1a{word-spacing:2.689920px;}
.ws8a{word-spacing:2.743718px;}
.ws31{word-spacing:2.797517px;}
.wsef{word-spacing:2.821415px;}
.wsb6{word-spacing:2.851315px;}
.ws39{word-spacing:2.905114px;}
.wscf{word-spacing:2.917057px;}
.ws105{word-spacing:2.964877px;}
.ws68{word-spacing:3.012710px;}
.ws64{word-spacing:3.120307px;}
.ws3{word-spacing:3.174106px;}
.wsc6{word-spacing:3.227904px;}
.ws41{word-spacing:3.335501px;}
.ws48{word-spacing:3.389299px;}
.wsfe{word-spacing:3.490904px;}
.ws15{word-spacing:3.550694px;}
.ws7{word-spacing:3.604493px;}
.ws72{word-spacing:3.658291px;}
.ws90{word-spacing:3.712090px;}
.ws61{word-spacing:3.765888px;}
.ws2a{word-spacing:3.873485px;}
.wsc{word-spacing:3.927283px;}
.wsfd{word-spacing:3.969110px;}
.ws2b{word-spacing:3.981082px;}
.wsf5{word-spacing:4.016930px;}
.wsa7{word-spacing:4.034880px;}
.wsee{word-spacing:4.064751px;}
.ws2e{word-spacing:4.088678px;}
.wsf8{word-spacing:4.112572px;}
.ws7b{word-spacing:4.142477px;}
.ws84{word-spacing:4.196275px;}
.ws91{word-spacing:4.303872px;}
.ws4d{word-spacing:4.357670px;}
.ws10b{word-spacing:4.399495px;}
.ws71{word-spacing:4.411469px;}
.ws8e{word-spacing:4.444954px;}
.ws83{word-spacing:4.465267px;}
.ws63{word-spacing:4.519066px;}
.wsf{word-spacing:4.680461px;}
.wsf1{word-spacing:4.686419px;}
.wse1{word-spacing:4.734239px;}
.ws36{word-spacing:4.788058px;}
.ws28{word-spacing:4.841856px;}
.ws6{word-spacing:4.895654px;}
.wsb4{word-spacing:4.949453px;}
.wsf2{word-spacing:4.973342px;}
.ws14{word-spacing:5.003251px;}
.wsaa{word-spacing:5.057050px;}
.wscd{word-spacing:5.068984px;}
.ws107{word-spacing:5.116804px;}
.wsfb{word-spacing:5.212445px;}
.wse2{word-spacing:5.260266px;}
.ws58{word-spacing:5.272243px;}
.wsb3{word-spacing:5.326042px;}
.ws52{word-spacing:5.379840px;}
.ws10e{word-spacing:5.403728px;}
.ws7a{word-spacing:5.433638px;}
.ws6d{word-spacing:5.487437px;}
.ws69{word-spacing:5.648832px;}
.wsdf{word-spacing:5.690651px;}
.ws32{word-spacing:5.702630px;}
.ws8{word-spacing:5.756429px;}
.ws11f{word-spacing:5.786293px;}
.ws4e{word-spacing:5.810227px;}
.ws93{word-spacing:5.864026px;}
.ws123{word-spacing:5.881934px;}
.ws4{word-spacing:5.917824px;}
.wsa8{word-spacing:6.025421px;}
.ws2c{word-spacing:6.079219px;}
.wsa6{word-spacing:6.133018px;}
.wse6{word-spacing:6.216678px;}
.ws81{word-spacing:6.240614px;}
.ws74{word-spacing:6.348211px;}
.ws3e{word-spacing:6.402010px;}
.ws11d{word-spacing:6.407960px;}
.ws127{word-spacing:6.455781px;}
.ws97{word-spacing:6.509606px;}
.ws10a{word-spacing:6.599243px;}
.wsf0{word-spacing:6.647063px;}
.ws80{word-spacing:6.671002px;}
.ws82{word-spacing:6.724800px;}
.ws30{word-spacing:6.778598px;}
.wsff{word-spacing:6.859888px;}
.ws100{word-spacing:6.886166px;}
.ws1d{word-spacing:6.886195px;}
.ws114{word-spacing:7.029628px;}
.wsd{word-spacing:7.047590px;}
.ws85{word-spacing:7.101389px;}
.ws2d{word-spacing:7.208986px;}
.ws27{word-spacing:7.262784px;}
.wse8{word-spacing:7.268731px;}
.wsca{word-spacing:7.316582px;}
.wsb5{word-spacing:7.370381px;}
.wsb0{word-spacing:7.531776px;}
.ws8c{word-spacing:7.746970px;}
.ws44{word-spacing:7.800768px;}
.wsb7{word-spacing:7.854566px;}
.ws3b{word-spacing:7.962163px;}
.ws113{word-spacing:7.986040px;}
.ws4a{word-spacing:8.069760px;}
.wse5{word-spacing:8.464246px;}
.ws8b{word-spacing:8.553946px;}
.ws43{word-spacing:8.715341px;}
.ws11b{word-spacing:8.751170px;}
.ws6e{word-spacing:8.930534px;}
.wse9{word-spacing:8.990273px;}
.wsec{word-spacing:9.085914px;}
.ws116{word-spacing:9.133735px;}
.wsc2{word-spacing:9.145728px;}
.ws6a{word-spacing:9.199526px;}
.ws29{word-spacing:9.360922px;}
.ws7c{word-spacing:9.576115px;}
.ws7f{word-spacing:9.629914px;}
.wsda{word-spacing:9.707582px;}
.ws102{word-spacing:9.851044px;}
.wse{word-spacing:9.898906px;}
.wseb{word-spacing:9.994505px;}
.ws2f{word-spacing:10.114099px;}
.ws7e{word-spacing:10.275494px;}
.ws4b{word-spacing:10.705882px;}
.ws129{word-spacing:10.807456px;}
.wsd0{word-spacing:10.855276px;}
.wsea{word-spacing:11.237841px;}
.wsc3{word-spacing:11.351462px;}
.ws5a{word-spacing:11.397208px;}
.ws5c{word-spacing:11.403208px;}
.ws37{word-spacing:11.889446px;}
.wsc8{word-spacing:11.943245px;}
.ws11c{word-spacing:11.956500px;}
.ws111{word-spacing:12.002971px;}
.wsbe{word-spacing:12.373632px;}
.ws98{word-spacing:12.588826px;}
.ws117{word-spacing:12.768100px;}
.ws45{word-spacing:12.965414px;}
.wscb{word-spacing:13.073011px;}
.ws5b{word-spacing:13.173208px;}
.wsa0{word-spacing:13.257208px;}
.ws10c{word-spacing:13.389768px;}
.wsed{word-spacing:13.437589px;}
.wsd9{word-spacing:13.581050px;}
.ws46{word-spacing:13.933786px;}
.ws99{word-spacing:14.124463px;}
.wsc9{word-spacing:14.955955px;}
.ws9e{word-spacing:15.278746px;}
.ws119{word-spacing:15.493874px;}
.ws9b{word-spacing:16.677504px;}
.ws8f{word-spacing:17.860076px;}
.wse4{word-spacing:21.280167px;}
.ws11a{word-spacing:21.375808px;}
.wsc7{word-spacing:24.908659px;}
.ws19{word-spacing:25.105920px;}
.ws2{word-spacing:32.225242px;}
.ws118{word-spacing:34.647836px;}
.wsab{word-spacing:58.278845px;}
.wsba{word-spacing:74.662445px;}
.wsbc{word-spacing:82.168800px;}
.wsac{word-spacing:92.684198px;}
.wsc0{word-spacing:95.609731px;}
.wsad{word-spacing:95.616000px;}
.wsbb{word-spacing:95.622000px;}
.ws88{word-spacing:100.110557px;}
.ws87{word-spacing:108.339600px;}
.wsae{word-spacing:109.063200px;}
.wsaf{word-spacing:109.068422px;}
.wsc1{word-spacing:110.057472px;}
.ws78{word-spacing:118.234555px;}
.wsbd{word-spacing:176.311200px;}
.ws86{word-spacing:207.291293px;}
._1c{margin-left:-306.780022px;}
._1a{margin-left:-191.877650px;}
._1b{margin-left:-117.302306px;}
._37{margin-left:-17.633943px;}
._1{margin-left:-8.607720px;}
._15{margin-left:-7.047590px;}
._4{margin-left:-5.740349px;}
._7{margin-left:-4.303872px;}
._2{margin-left:-3.227904px;}
._0{margin-left:-2.151930px;}
._8{margin-left:-1.075968px;}
._38{width:2.630133px;}
._3{width:4.546032px;}
._39{width:11.022609px;}
._14{width:12.481229px;}
._e{width:14.417971px;}
._f{width:16.677498px;}
._6{width:17.861069px;}
._9{width:19.528819px;}
._5{width:20.712384px;}
._10{width:22.057344px;}
._11{width:23.133312px;}
._b{width:24.370669px;}
._d{width:26.415008px;}
._a{width:27.598579px;}
._27{width:28.943539px;}
._19{width:30.342298px;}
._13{width:31.848647px;}
._12{width:33.731597px;}
._29{width:35.022758px;}
._16{width:36.206317px;}
._18{width:37.497485px;}
._30{width:39.488020px;}
._35{width:41.484528px;}
._17{width:43.038720px;}
._1e{width:44.921664px;}
._c{width:46.374221px;}
._1d{width:47.450189px;}
._28{width:54.551578px;}
._20{width:71.730288px;}
._21{width:74.715600px;}
._2a{width:76.566077px;}
._24{width:121.789194px;}
._25{width:128.887463px;}
._2d{width:135.996422px;}
._2e{width:138.976800px;}
._1f{width:143.841667px;}
._26{width:152.397600px;}
._22{width:165.986240px;}
._2b{width:167.384400px;}
._23{width:173.940160px;}
._2f{width:180.831600px;}
._36{width:185.272378px;}
._32{width:186.672000px;}
._34{width:189.760800px;}
._31{width:224.162400px;}
._2c{width:227.146800px;}
._33{width:230.034000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:21.805529px;}
.fs10{font-size:28.284585px;}
.fs11{font-size:31.820158px;}
.fs4{font-size:34.888846px;}
.fsb{font-size:35.030469px;}
.fsf{font-size:35.355731px;}
.fs7{font-size:35.865600px;}
.fs5{font-size:41.430505px;}
.fs12{font-size:45.962451px;}
.fs2{font-size:47.820600px;}
.fse{font-size:49.498024px;}
.fs9{font-size:50.953409px;}
.fs3{font-size:53.798400px;}
.fsc{font-size:56.569170px;}
.fs8{font-size:57.322585px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fsa{font-size:95.537642px;}
.fsd{font-size:106.067193px;}
.y0{bottom:0.000000px;}
.y99{bottom:10.349919px;}
.yd9{bottom:14.142264px;}
.y9a{bottom:21.495978px;}
.y62{bottom:26.711774px;}
.yd7{bottom:27.400663px;}
.y6d{bottom:39.795091px;}
.y63{bottom:53.968685px;}
.y90{bottom:55.730299px;}
.yd8{bottom:61.872501px;}
.yce{bottom:66.291968px;}
.y95{bottom:67.672504px;}
.yc2{bottom:71.595327px;}
.y8c{bottom:71.653239px;}
.y94{bottom:78.022416px;}
.yc3{bottom:81.318153px;}
.y93{bottom:83.595445px;}
.yc1{bottom:85.737620px;}
.y65{bottom:87.767255px;}
.y64{bottom:98.670020px;}
.y92{bottom:119.422060px;}
.yc0{bottom:123.745031px;}
.y66{bottom:124.836655px;}
.y91{bottom:135.345001px;}
.ybf{bottom:141.422896px;}
.y37{bottom:152.632500px;}
.y17a{bottom:152.634000px;}
.y96{bottom:156.840970px;}
.y67{bottom:160.270639px;}
.y1fe{bottom:164.613000px;}
.yc8{bottom:165.288015px;}
.y1bc{bottom:166.120500px;}
.y9b{bottom:167.190881px;}
.y36{bottom:168.249000px;}
.y97{bottom:168.783175px;}
.y9c{bottom:176.744645px;}
.y1fd{bottom:178.101000px;}
.y1bb{bottom:179.607000px;}
.yd1{bottom:182.965880px;}
.y35{bottom:183.865500px;}
.y68{bottom:187.527550px;}
.y1fc{bottom:191.587500px;}
.y1ba{bottom:193.093500px;}
.yc7{bottom:195.340386px;}
.yd0{bottom:196.224280px;}
.y34{bottom:199.482000px;}
.y8e{bottom:206.998232px;}
.yd2{bottom:209.482679px;}
.y1fb{bottom:211.051500px;}
.y1b9{bottom:211.437000px;}
.y98{bottom:211.775114px;}
.y8f{bottom:214.959702px;}
.y33{bottom:215.098500px;}
.yd3{bottom:219.205505px;}
.yd5{bottom:220.973291px;}
.y8d{bottom:222.921172px;}
.y69{bottom:222.961535px;}
.y1fa{bottom:224.539500px;}
.y1b8{bottom:224.923500px;}
.y32{bottom:230.715000px;}
.yd6{bottom:231.580011px;}
.y6c{bottom:236.044852px;}
.ycf{bottom:236.883370px;}
.y1f9{bottom:238.026000px;}
.y1b7{bottom:238.410000px;}
.y149{bottom:238.749000px;}
.y179{bottom:241.941000px;}
.y31{bottom:246.331500px;}
.y5f{bottom:248.029500px;}
.y6a{bottom:250.218446px;}
.y1f8{bottom:251.512500px;}
.y1b6{bottom:251.896500px;}
.yd4{bottom:258.980702px;}
.y30{bottom:261.948000px;}
.y5e{bottom:263.646000px;}
.y8a{bottom:263.832000px;}
.y1f7{bottom:264.999000px;}
.y1b5{bottom:265.384500px;}
.y148{bottom:270.208500px;}
.y6b{bottom:277.475357px;}
.y2f{bottom:277.564500px;}
.y5d{bottom:279.262500px;}
.y89{bottom:279.448500px;}
.y178{bottom:280.849500px;}
.yca{bottom:282.845821px;}
.y1b4{bottom:283.726500px;}
.y1f6{bottom:284.464500px;}
.y117{bottom:285.723000px;}
.y147{bottom:285.825000px;}
.y2e{bottom:293.181000px;}
.y5c{bottom:294.879000px;}
.y88{bottom:295.065000px;}
.y177{bottom:296.466000px;}
.y1b3{bottom:297.214500px;}
.y1f5{bottom:297.951000px;}
.yc9{bottom:300.523686px;}
.y146{bottom:301.441500px;}
.y2d{bottom:308.796000px;}
.ybd{bottom:308.797500px;}
.y5b{bottom:310.495500px;}
.y87{bottom:310.681500px;}
.y1b2{bottom:310.701000px;}
.y1f4{bottom:311.437500px;}
.y176{bottom:312.082500px;}
.y145{bottom:317.058000px;}
.y116{bottom:321.565500px;}
.y2c{bottom:324.412500px;}
.ybc{bottom:324.414000px;}
.y5a{bottom:326.112000px;}
.y86{bottom:326.298000px;}
.y175{bottom:327.699000px;}
.ydb{bottom:327.924378px;}
.y1b1{bottom:329.043000px;}
.y1f3{bottom:330.901500px;}
.y144{bottom:332.901000px;}
.ycb{bottom:336.763311px;}
.y115{bottom:337.182000px;}
.yda{bottom:338.531097px;}
.y2b{bottom:340.029000px;}
.ye7{bottom:340.030500px;}
.y85{bottom:341.914500px;}
.y1b0{bottom:342.531000px;}
.y174{bottom:343.315500px;}
.y1f2{bottom:344.389500px;}
.ybb{bottom:347.443500px;}
.y143{bottom:348.517500px;}
.y59{bottom:351.235500px;}
.y114{bottom:352.798500px;}
.y2a{bottom:355.645500px;}
.ye6{bottom:355.647000px;}
.y1af{bottom:356.017500px;}
.y84{bottom:357.531000px;}
.y1f1{bottom:357.876000px;}
.y173{bottom:358.932000px;}
.yba{bottom:363.060000px;}
.y142{bottom:364.134000px;}
.y113{bottom:368.415000px;}
.y29{bottom:371.262000px;}
.y1f0{bottom:371.362500px;}
.y83{bottom:373.147500px;}
.y1ae{bottom:374.359500px;}
.y172{bottom:374.548500px;}
.ycc{bottom:376.538508px;}
.yb9{bottom:378.676500px;}
.y141{bottom:379.750500px;}
.y112{bottom:384.031500px;}
.y58{bottom:384.166500px;}
.y28{bottom:386.878500px;}
.y1ad{bottom:387.847500px;}
.y82{bottom:388.764000px;}
.y171{bottom:390.165000px;}
.y1ef{bottom:390.826500px;}
.yb8{bottom:394.293000px;}
.y140{bottom:395.367000px;}
.y111{bottom:399.648000px;}
.y57{bottom:399.783000px;}
.y1ac{bottom:401.334000px;}
.y27{bottom:402.495000px;}
.ye5{bottom:404.034000px;}
.y1ee{bottom:404.314500px;}
.y81{bottom:404.379000px;}
.y170{bottom:405.781500px;}
.ycd{bottom:407.474773px;}
.yb7{bottom:409.909500px;}
.y13f{bottom:410.983500px;}
.y1ab{bottom:414.820500px;}
.y110{bottom:415.264500px;}
.y56{bottom:415.399500px;}
.y1ed{bottom:417.801000px;}
.y26{bottom:418.111500px;}
.ye4{bottom:419.650500px;}
.y16f{bottom:421.398000px;}
.yb6{bottom:425.526000px;}
.y13e{bottom:426.600000px;}
.y80{bottom:429.688500px;}
.y10f{bottom:430.881000px;}
.y55{bottom:431.016000px;}
.y1ec{bottom:431.287500px;}
.y1aa{bottom:433.164000px;}
.y25{bottom:433.728000px;}
.ye3{bottom:435.267000px;}
.y16e{bottom:437.014500px;}
.yb5{bottom:441.141000px;}
.y13d{bottom:442.216500px;}
.y7f{bottom:445.305000px;}
.y1a9{bottom:446.650500px;}
.y10e{bottom:446.847000px;}
.y24{bottom:449.344500px;}
.y1eb{bottom:450.751500px;}
.yc5{bottom:450.785544px;}
.y16d{bottom:452.631000px;}
.y54{bottom:456.139500px;}
.yb4{bottom:456.757500px;}
.yc6{bottom:459.624477px;}
.y1a8{bottom:460.137000px;}
.ye2{bottom:460.230000px;}
.y10d{bottom:462.463500px;}
.y1ea{bottom:464.239500px;}
.y23{bottom:464.961000px;}
.y13c{bottom:465.867000px;}
.y16c{bottom:468.247500px;}
.yc4{bottom:468.463409px;}
.y1a7{bottom:473.625000px;}
.yb3{bottom:477.316500px;}
.y1e9{bottom:477.726000px;}
.y10c{bottom:478.080000px;}
.y7e{bottom:478.422000px;}
.y16b{bottom:483.864000px;}
.y1a6{bottom:487.111500px;}
.y22{bottom:488.385000px;}
.y1e8{bottom:491.212500px;}
.yb2{bottom:492.933000px;}
.ye1{bottom:493.002000px;}
.y53{bottom:493.329000px;}
.y10b{bottom:493.696500px;}
.y7d{bottom:494.038500px;}
.y13b{bottom:497.326500px;}
.y16a{bottom:499.480500px;}
.y1a5{bottom:505.453500px;}
.yb1{bottom:508.549500px;}
.ye0{bottom:508.618500px;}
.y52{bottom:508.945500px;}
.y10a{bottom:509.313000px;}
.y7c{bottom:509.655000px;}
.y1e7{bottom:510.676500px;}
.y13a{bottom:512.943000px;}
.y169{bottom:515.095500px;}
.y1a4{bottom:518.941500px;}
.y21{bottom:523.876500px;}
.y1e6{bottom:524.164500px;}
.yb0{bottom:524.166000px;}
.ydf{bottom:524.235000px;}
.y51{bottom:524.562000px;}
.y109{bottom:524.929500px;}
.y7b{bottom:525.271500px;}
.y139{bottom:528.559500px;}
.y168{bottom:530.712000px;}
.y1a3{bottom:532.428000px;}
.y1e5{bottom:537.651000px;}
.y20{bottom:539.493000px;}
.yaf{bottom:539.782500px;}
.y50{bottom:540.178500px;}
.y108{bottom:540.546000px;}
.y7a{bottom:540.888000px;}
.y138{bottom:544.174500px;}
.y1a2{bottom:545.914500px;}
.y167{bottom:546.328500px;}
.yde{bottom:549.198000px;}
.y1f{bottom:555.109500px;}
.y4f{bottom:555.795000px;}
.y107{bottom:556.162500px;}
.y79{bottom:556.504500px;}
.y1e4{bottom:557.115000px;}
.y1a1{bottom:559.401000px;}
.y137{bottom:559.791000px;}
.y166{bottom:561.945000px;}
.yae{bottom:562.812000px;}
.y1e3{bottom:570.603000px;}
.y1e{bottom:570.726000px;}
.y4e{bottom:571.411500px;}
.y106{bottom:571.779000px;}
.y78{bottom:572.121000px;}
.y136{bottom:575.407500px;}
.y165{bottom:577.561500px;}
.y1a0{bottom:577.744500px;}
.yad{bottom:578.428500px;}
.y1e2{bottom:584.089500px;}
.y1d{bottom:586.342500px;}
.y4d{bottom:587.028000px;}
.y105{bottom:587.395500px;}
.y77{bottom:589.621500px;}
.y135{bottom:591.024000px;}
.y19f{bottom:591.231000px;}
.yac{bottom:594.045000px;}
.y1e1{bottom:597.576000px;}
.ydd{bottom:601.791000px;}
.y1c{bottom:601.959000px;}
.y104{bottom:603.012000px;}
.y4c{bottom:604.342500px;}
.y164{bottom:604.404000px;}
.y19e{bottom:604.717500px;}
.y76{bottom:605.238000px;}
.yab{bottom:609.661500px;}
.y1e0{bottom:617.040000px;}
.ydc{bottom:617.407500px;}
.y1b{bottom:617.575500px;}
.y103{bottom:618.978000px;}
.y4b{bottom:619.959000px;}
.y75{bottom:620.854500px;}
.y19d{bottom:623.061000px;}
.yaa{bottom:625.278000px;}
.y134{bottom:627.922500px;}
.y1df{bottom:630.528000px;}
.y1a{bottom:633.192000px;}
.y102{bottom:634.594500px;}
.y4a{bottom:635.575500px;}
.y74{bottom:636.471000px;}
.y19c{bottom:636.547500px;}
.ya9{bottom:640.894500px;}
.y133{bottom:643.539000px;}
.y1de{bottom:644.014500px;}
.ybe{bottom:646.262874px;}
.y19{bottom:648.808500px;}
.y19b{bottom:650.035500px;}
.y101{bottom:650.211000px;}
.y49{bottom:651.192000px;}
.y73{bottom:652.087500px;}
.ya8{bottom:656.511000px;}
.y1dd{bottom:657.501000px;}
.y163{bottom:657.747000px;}
.y132{bottom:659.155500px;}
.y19a{bottom:663.522000px;}
.y18{bottom:664.425000px;}
.y100{bottom:665.827500px;}
.y48{bottom:666.808500px;}
.y72{bottom:667.704000px;}
.ya7{bottom:672.127500px;}
.y162{bottom:673.363500px;}
.y131{bottom:674.770500px;}
.y1dc{bottom:676.965000px;}
.y17{bottom:680.041500px;}
.y199{bottom:681.864000px;}
.y47{bottom:682.425000px;}
.y71{bottom:683.320500px;}
.ya6{bottom:687.744000px;}
.y161{bottom:689.578500px;}
.yff{bottom:689.604000px;}
.y130{bottom:690.387000px;}
.y1db{bottom:690.453000px;}
.y198{bottom:695.352000px;}
.y16{bottom:695.658000px;}
.y46{bottom:698.041500px;}
.ya5{bottom:703.360500px;}
.y1da{bottom:703.939500px;}
.y12f{bottom:706.003500px;}
.y70{bottom:708.630000px;}
.y197{bottom:708.838500px;}
.y15{bottom:711.274500px;}
.y45{bottom:713.658000px;}
.ya4{bottom:718.977000px;}
.y160{bottom:720.736500px;}
.yfe{bottom:721.186500px;}
.y12e{bottom:721.620000px;}
.y196{bottom:722.325000px;}
.y1d9{bottom:723.403500px;}
.y14{bottom:726.891000px;}
.y44{bottom:729.274500px;}
.ya3{bottom:734.593500px;}
.y195{bottom:735.811500px;}
.y15f{bottom:736.353000px;}
.yfd{bottom:736.803000px;}
.y1d8{bottom:736.890000px;}
.y12d{bottom:737.835000px;}
.y13{bottom:742.506000px;}
.y43{bottom:744.891000px;}
.y12c{bottom:745.404000px;}
.y194{bottom:749.299500px;}
.y1d7{bottom:750.378000px;}
.y15e{bottom:751.969500px;}
.yfc{bottom:752.419500px;}
.ya2{bottom:758.017500px;}
.y12{bottom:758.122500px;}
.y42{bottom:760.507500px;}
.y193{bottom:762.786000px;}
.y6f{bottom:763.338000px;}
.y1d6{bottom:763.864500px;}
.yfb{bottom:768.036000px;}
.y11{bottom:773.739000px;}
.y41{bottom:776.124000px;}
.y1d5{bottom:777.351000px;}
.y6e{bottom:778.953000px;}
.y192{bottom:781.128000px;}
.yfa{bottom:783.652500px;}
.y12b{bottom:784.608000px;}
.y10{bottom:789.355500px;}
.y1d4{bottom:790.837500px;}
.y15d{bottom:792.075000px;}
.y40{bottom:793.438500px;}
.y191{bottom:794.616000px;}
.yf9{bottom:799.620000px;}
.y12a{bottom:800.224500px;}
.yf{bottom:804.972000px;}
.y61{bottom:805.376363px;}
.ya1{bottom:805.464000px;}
.y15c{bottom:807.691500px;}
.y190{bottom:808.102500px;}
.y3f{bottom:809.055000px;}
.y1d3{bottom:810.303000px;}
.yf8{bottom:815.236500px;}
.ye{bottom:820.588500px;}
.ya0{bottom:821.080500px;}
.y18f{bottom:821.589000px;}
.y1d2{bottom:823.789500px;}
.y3e{bottom:824.671500px;}
.yf7{bottom:830.853000px;}
.y129{bottom:831.930000px;}
.yd{bottom:836.205000px;}
.y9f{bottom:836.697000px;}
.y1d1{bottom:837.276000px;}
.y18e{bottom:839.932500px;}
.y3d{bottom:840.288000px;}
.yf6{bottom:846.469500px;}
.y128{bottom:847.545000px;}
.y1d0{bottom:850.762500px;}
.yc{bottom:851.821500px;}
.y9e{bottom:852.313500px;}
.y18d{bottom:853.419000px;}
.y3c{bottom:855.904500px;}
.y127{bottom:863.161500px;}
.y15b{bottom:864.640500px;}
.y18c{bottom:866.905500px;}
.yb{bottom:867.438000px;}
.y9d{bottom:867.930000px;}
.y1cf{bottom:870.228000px;}
.yf5{bottom:870.244500px;}
.y3b{bottom:871.521000px;}
.y126{bottom:878.778000px;}
.y15a{bottom:880.257000px;}
.y18b{bottom:880.393500px;}
.ya{bottom:883.054500px;}
.y1ce{bottom:883.714500px;}
.y3a{bottom:887.137500px;}
.y125{bottom:894.394500px;}
.y8b{bottom:895.487338px;}
.y159{bottom:895.873500px;}
.y1cd{bottom:897.201000px;}
.y9{bottom:898.671000px;}
.y18a{bottom:898.735500px;}
.yf4{bottom:901.828500px;}
.y39{bottom:902.752500px;}
.y124{bottom:910.011000px;}
.y156{bottom:912.087000px;}
.y189{bottom:912.222000px;}
.y1cc{bottom:916.666500px;}
.yf3{bottom:917.443500px;}
.y38{bottom:918.369000px;}
.y8{bottom:918.370500px;}
.y158{bottom:919.896000px;}
.y123{bottom:925.627500px;}
.y188{bottom:925.710000px;}
.y155{bottom:927.703500px;}
.y1cb{bottom:930.153000px;}
.yf2{bottom:933.060000px;}
.y157{bottom:935.512500px;}
.y187{bottom:939.196500px;}
.y122{bottom:941.244000px;}
.y154{bottom:943.320000px;}
.y1ca{bottom:943.639500px;}
.yf1{bottom:949.027500px;}
.y186{bottom:952.683000px;}
.y121{bottom:956.860500px;}
.y1c9{bottom:957.126000px;}
.y7{bottom:963.819000px;}
.yf0{bottom:964.644000px;}
.y1c8{bottom:970.614000px;}
.y185{bottom:971.026500px;}
.y120{bottom:972.477000px;}
.y153{bottom:974.478000px;}
.y6{bottom:979.435500px;}
.y184{bottom:984.513000px;}
.y11f{bottom:988.093500px;}
.y1c7{bottom:990.078000px;}
.y152{bottom:990.094500px;}
.y183{bottom:997.999500px;}
.y1c6{bottom:1003.564500px;}
.y11e{bottom:1003.710000px;}
.y151{bottom:1005.711000px;}
.y5{bottom:1006.042500px;}
.y182{bottom:1011.486000px;}
.yef{bottom:1015.461000px;}
.y1c5{bottom:1017.051000px;}
.y11d{bottom:1019.326500px;}
.y181{bottom:1029.829500px;}
.y1c4{bottom:1030.539000px;}
.yee{bottom:1031.076000px;}
.y11c{bottom:1034.943000px;}
.y4{bottom:1035.849000px;}
.y180{bottom:1043.316000px;}
.yed{bottom:1046.692500px;}
.y1c3{bottom:1050.003000px;}
.y11b{bottom:1050.559500px;}
.y3{bottom:1055.724000px;}
.y17f{bottom:1056.804000px;}
.y150{bottom:1062.309000px;}
.yec{bottom:1062.907500px;}
.y1c2{bottom:1063.489500px;}
.y11a{bottom:1066.174500px;}
.y17e{bottom:1070.290500px;}
.y1c1{bottom:1076.976000px;}
.y14f{bottom:1078.524000px;}
.yeb{bottom:1079.121000px;}
.y14c{bottom:1086.331500px;}
.y17d{bottom:1088.632500px;}
.y119{bottom:1089.826500px;}
.y1c0{bottom:1090.464000px;}
.y14e{bottom:1094.140500px;}
.y2{bottom:1096.521000px;}
.y14b{bottom:1101.948000px;}
.y17c{bottom:1102.120500px;}
.yea{bottom:1109.682000px;}
.y14d{bottom:1109.757000px;}
.y1bf{bottom:1109.928000px;}
.y17b{bottom:1115.607000px;}
.y118{bottom:1121.286000px;}
.y1{bottom:1122.075000px;}
.y1be{bottom:1123.414500px;}
.ye9{bottom:1125.298500px;}
.y1bd{bottom:1136.901000px;}
.y60{bottom:1136.902500px;}
.y14a{bottom:1140.913500px;}
.ye8{bottom:1140.915000px;}
.he{height:15.875021px;}
.h1c{height:20.605762px;}
.h1d{height:23.181482px;}
.hc{height:25.400034px;}
.h16{height:25.503139px;}
.h1b{height:25.757203px;}
.hd{height:30.162541px;}
.h6{height:31.800699px;}
.h24{height:32.804932px;}
.h23{height:32.900573px;}
.h1e{height:33.484363px;}
.h7{height:33.570202px;}
.h1a{height:36.060084px;}
.hf{height:36.905702px;}
.h9{height:37.013299px;}
.h14{height:37.095475px;}
.ha{height:37.228493px;}
.h22{height:37.283299px;}
.h10{height:37.981670px;}
.h18{height:41.211524px;}
.h13{height:41.732409px;}
.h25{height:45.429570px;}
.h1f{height:47.063280px;}
.h11{height:47.725000px;}
.h4{height:49.207603px;}
.h8{height:49.637990px;}
.h5{height:57.828699px;}
.h3{height:57.834699px;}
.h2{height:59.565422px;}
.h21{height:67.289299px;}
.h20{height:69.197299px;}
.h15{height:69.554016px;}
.h19{height:77.271608px;}
.h12{height:256.359347px;}
.hb{height:306.912821px;}
.h17{height:505.586927px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:115.569299px;}
.w4{width:281.912712px;}
.w3{width:289.001373px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:2.237355px;}
.x13{left:4.097054px;}
.x11{left:9.667686px;}
.x15{left:13.781776px;}
.x30{left:16.932081px;}
.x16{left:31.481732px;}
.x1f{left:36.983517px;}
.x14{left:38.031909px;}
.x17{left:39.880268px;}
.x24{left:41.872357px;}
.x26{left:46.972674px;}
.x12{left:49.300938px;}
.x20{left:52.794499px;}
.x25{left:55.979087px;}
.x2e{left:62.355909px;}
.x2b{left:64.758994px;}
.x39{left:70.794327px;}
.x3a{left:76.691553px;}
.x19{left:84.814537px;}
.xa{left:86.400000px;}
.x1a{left:88.359879px;}
.x41{left:95.367000px;}
.x42{left:97.236000px;}
.x21{left:98.709790px;}
.x7{left:100.819500px;}
.x1{left:105.148500px;}
.x37{left:106.757735px;}
.xc{left:108.816000px;}
.x53{left:113.790000px;}
.x28{left:115.527000px;}
.x31{left:117.046805px;}
.x29{left:126.576280px;}
.x2a{left:133.633615px;}
.x2f{left:134.724671px;}
.x1b{left:139.151570px;}
.x38{left:140.345680px;}
.x3{left:144.861000px;}
.x2c{left:151.615319px;}
.x2d{left:155.551411px;}
.x1c{left:157.798830px;}
.x1d{left:164.155563px;}
.x3b{left:167.910000px;}
.x23{left:175.960934px;}
.x22{left:187.082113px;}
.x1e{left:192.667578px;}
.xb{left:195.714000px;}
.x10{left:198.651000px;}
.x52{left:202.717500px;}
.x34{left:214.233633px;}
.x9{left:223.116000px;}
.x36{left:229.895118px;}
.x35{left:248.802152px;}
.x33{left:259.464114px;}
.x5{left:306.699000px;}
.x6{left:339.541500px;}
.x2{left:404.199000px;}
.x8{left:407.469000px;}
.xd{left:469.077000px;}
.x44{left:478.044000px;}
.x43{left:484.782000px;}
.xf{left:488.638500px;}
.xe{left:491.493000px;}
.x18{left:494.592000px;}
.x54{left:496.467000px;}
.x3f{left:497.928000px;}
.x3e{left:503.973000px;}
.x27{left:506.437500px;}
.x3d{left:508.963500px;}
.x4d{left:515.959500px;}
.x4b{left:532.323000px;}
.x4c{left:535.933500px;}
.x4e{left:552.927000px;}
.x45{left:555.006000px;}
.x46{left:557.635500px;}
.x4f{left:560.211000px;}
.x4a{left:561.454500px;}
.x47{left:563.607000px;}
.x3c{left:596.929500px;}
.x40{left:599.157000px;}
.x48{left:623.751000px;}
.x49{left:627.846000px;}
.x50{left:667.296000px;}
.x51{left:714.732000px;}
.x4{left:722.889000px;}
.x55{left:778.362000px;}
.x56{left:789.318000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.314667pt;}
.v1{vertical-align:23.141333pt;}
.v6{vertical-align:26.912000pt;}
.v5{vertical-align:28.608000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000495pt;}
.ls11{letter-spacing:0.000891pt;}
.ls4{letter-spacing:0.002091pt;}
.ls8{letter-spacing:0.002485pt;}
.ls9{letter-spacing:2.652757pt;}
.ls0{letter-spacing:2.653258pt;}
.lsd{letter-spacing:2.656473pt;}
.ls1{letter-spacing:2.658591pt;}
.ls3{letter-spacing:10.177386pt;}
.ls15{letter-spacing:10.917828pt;}
.ls14{letter-spacing:10.923558pt;}
.lsc{letter-spacing:11.520495pt;}
.lsb{letter-spacing:11.520891pt;}
.ls5{letter-spacing:11.756757pt;}
.ls13{letter-spacing:11.835558pt;}
.ls7{letter-spacing:13.649188pt;}
.ls6{letter-spacing:13.654269pt;}
.ls16{letter-spacing:14.608473pt;}
.lsf{letter-spacing:14.879599pt;}
.lse{letter-spacing:14.916439pt;}
.ls12{letter-spacing:16.309806pt;}
.lsa{letter-spacing:28.014648pt;}
.ws9d{word-spacing:-32.063846pt;}
.ws1{word-spacing:-15.940267pt;}
.ws77{word-spacing:-12.224121pt;}
.ws57{word-spacing:-11.955200pt;}
.wsd8{word-spacing:-10.626800pt;}
.ws76{word-spacing:-8.731515pt;}
.ws66{word-spacing:-8.651188pt;}
.wsa3{word-spacing:-2.869248pt;}
.wsa4{word-spacing:-2.582323pt;}
.ws122{word-spacing:-2.550432pt;}
.ws42{word-spacing:-2.343219pt;}
.ws47{word-spacing:-2.295398pt;}
.ws40{word-spacing:-2.247578pt;}
.wsa5{word-spacing:-2.199757pt;}
.ws11e{word-spacing:-2.125360pt;}
.ws3a{word-spacing:-2.008474pt;}
.ws128{word-spacing:-1.955331pt;}
.ws38{word-spacing:-1.817190pt;}
.wsdb{word-spacing:-1.742795pt;}
.ws60{word-spacing:-1.721549pt;}
.wsdc{word-spacing:-1.700288pt;}
.ws95{word-spacing:-1.673728pt;}
.wsdd{word-spacing:-1.657781pt;}
.ws20{word-spacing:-1.625907pt;}
.ws12{word-spacing:-1.578086pt;}
.ws3f{word-spacing:-1.530266pt;}
.wse0{word-spacing:-1.530259pt;}
.ws7d{word-spacing:-1.386803pt;}
.wsd6{word-spacing:-1.360230pt;}
.ws24{word-spacing:-1.291162pt;}
.wscc{word-spacing:-1.275216pt;}
.ws56{word-spacing:-1.243341pt;}
.wsf9{word-spacing:-1.232709pt;}
.wsb1{word-spacing:-1.147699pt;}
.ws75{word-spacing:-1.099878pt;}
.ws18{word-spacing:-1.052058pt;}
.ws21{word-spacing:-1.004237pt;}
.wsfa{word-spacing:-0.977666pt;}
.ws25{word-spacing:-0.956416pt;}
.ws1e{word-spacing:-0.860774pt;}
.ws50{word-spacing:-0.717312pt;}
.ws16{word-spacing:-0.669491pt;}
.wsb2{word-spacing:-0.621670pt;}
.ws26{word-spacing:-0.573850pt;}
.ws12a{word-spacing:-0.552594pt;}
.wsa{word-spacing:-0.526029pt;}
.wsa9{word-spacing:-0.478208pt;}
.ws110{word-spacing:-0.425072pt;}
.ws12b{word-spacing:-0.382565pt;}
.ws34{word-spacing:-0.334746pt;}
.wsc5{word-spacing:-0.239104pt;}
.ws108{word-spacing:-0.212536pt;}
.ws5d{word-spacing:-0.207019pt;}
.ws59{word-spacing:-0.197794pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws9c{word-spacing:-0.143462pt;}
.ws9f{word-spacing:-0.117769pt;}
.wsa1{word-spacing:-0.095642pt;}
.ws10{word-spacing:-0.047821pt;}
.ws92{word-spacing:-0.031881pt;}
.ws62{word-spacing:-0.003618pt;}
.wse3{word-spacing:-0.003286pt;}
.ws121{word-spacing:-0.003092pt;}
.wsce{word-spacing:-0.002839pt;}
.ws70{word-spacing:-0.000811pt;}
.wsfc{word-spacing:-0.000701pt;}
.ws0{word-spacing:0.000000pt;}
.ws10f{word-spacing:0.000367pt;}
.ws103{word-spacing:0.085014pt;}
.wsb8{word-spacing:0.143462pt;}
.ws65{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.334746pt;}
.ws104{word-spacing:0.382565pt;}
.ws17{word-spacing:0.382566pt;}
.wsd1{word-spacing:0.425072pt;}
.ws94{word-spacing:0.478208pt;}
.wsf3{word-spacing:0.510086pt;}
.ws3d{word-spacing:0.526029pt;}
.wsd2{word-spacing:0.552594pt;}
.ws5{word-spacing:0.573850pt;}
.ws112{word-spacing:0.595101pt;}
.ws9{word-spacing:0.621670pt;}
.ws9a{word-spacing:0.644898pt;}
.ws33{word-spacing:0.669491pt;}
.ws89{word-spacing:0.717312pt;}
.ws126{word-spacing:0.722622pt;}
.ws35{word-spacing:0.765133pt;}
.ws8d{word-spacing:0.812954pt;}
.ws23{word-spacing:0.860774pt;}
.ws125{word-spacing:0.892651pt;}
.ws3c{word-spacing:0.956416pt;}
.wsc4{word-spacing:1.004237pt;}
.wsde{word-spacing:1.020173pt;}
.wsbf{word-spacing:1.052058pt;}
.ws124{word-spacing:1.062680pt;}
.ws55{word-spacing:1.099878pt;}
.wsd7{word-spacing:1.147694pt;}
.ws4f{word-spacing:1.147699pt;}
.ws6f{word-spacing:1.195520pt;}
.ws4c{word-spacing:1.243341pt;}
.wsd4{word-spacing:1.337370pt;}
.wsd3{word-spacing:1.337772pt;}
.wsd5{word-spacing:1.360230pt;}
.wsa2{word-spacing:1.386803pt;}
.wsb9{word-spacing:1.434624pt;}
.ws115{word-spacing:1.445245pt;}
.ws51{word-spacing:1.482445pt;}
.wse7{word-spacing:1.530259pt;}
.ws67{word-spacing:1.530266pt;}
.ws54{word-spacing:1.578086pt;}
.wsf6{word-spacing:1.615274pt;}
.ws49{word-spacing:1.625907pt;}
.ws13{word-spacing:1.721549pt;}
.ws1c{word-spacing:1.769370pt;}
.ws12c{word-spacing:1.785302pt;}
.ws79{word-spacing:1.817190pt;}
.ws53{word-spacing:1.865011pt;}
.ws10d{word-spacing:1.912824pt;}
.ws22{word-spacing:1.912832pt;}
.wsf7{word-spacing:1.955331pt;}
.ws96{word-spacing:1.960653pt;}
.ws6c{word-spacing:2.008474pt;}
.wsf4{word-spacing:2.040346pt;}
.wsb{word-spacing:2.056294pt;}
.ws73{word-spacing:2.104115pt;}
.ws106{word-spacing:2.125360pt;}
.ws11{word-spacing:2.151936pt;}
.ws120{word-spacing:2.167867pt;}
.ws5f{word-spacing:2.199757pt;}
.ws101{word-spacing:2.295389pt;}
.ws5e{word-spacing:2.295398pt;}
.ws6b{word-spacing:2.343219pt;}
.ws109{word-spacing:2.380403pt;}
.ws1a{word-spacing:2.391040pt;}
.ws8a{word-spacing:2.438861pt;}
.ws31{word-spacing:2.486682pt;}
.wsef{word-spacing:2.507925pt;}
.wsb6{word-spacing:2.534502pt;}
.ws39{word-spacing:2.582323pt;}
.wscf{word-spacing:2.592939pt;}
.ws105{word-spacing:2.635446pt;}
.ws68{word-spacing:2.677965pt;}
.ws64{word-spacing:2.773606pt;}
.ws3{word-spacing:2.821427pt;}
.wsc6{word-spacing:2.869248pt;}
.ws41{word-spacing:2.964890pt;}
.ws48{word-spacing:3.012710pt;}
.wsfe{word-spacing:3.103026pt;}
.ws15{word-spacing:3.156173pt;}
.ws7{word-spacing:3.203994pt;}
.ws72{word-spacing:3.251814pt;}
.ws90{word-spacing:3.299635pt;}
.ws61{word-spacing:3.347456pt;}
.ws2a{word-spacing:3.443098pt;}
.wsc{word-spacing:3.490918pt;}
.wsfd{word-spacing:3.528098pt;}
.ws2b{word-spacing:3.538739pt;}
.wsf5{word-spacing:3.570605pt;}
.wsa7{word-spacing:3.586560pt;}
.wsee{word-spacing:3.613112pt;}
.ws2e{word-spacing:3.634381pt;}
.wsf8{word-spacing:3.655619pt;}
.ws7b{word-spacing:3.682202pt;}
.ws84{word-spacing:3.730022pt;}
.ws91{word-spacing:3.825664pt;}
.ws4d{word-spacing:3.873485pt;}
.ws10b{word-spacing:3.910662pt;}
.ws71{word-spacing:3.921306pt;}
.ws8e{word-spacing:3.951070pt;}
.ws83{word-spacing:3.969126pt;}
.ws63{word-spacing:4.016947pt;}
.wsf{word-spacing:4.160410pt;}
.wsf1{word-spacing:4.165706pt;}
.wse1{word-spacing:4.208213pt;}
.ws36{word-spacing:4.256051pt;}
.ws28{word-spacing:4.303872pt;}
.ws6{word-spacing:4.351693pt;}
.wsb4{word-spacing:4.399514pt;}
.wsf2{word-spacing:4.420749pt;}
.ws14{word-spacing:4.447334pt;}
.wsaa{word-spacing:4.495155pt;}
.wscd{word-spacing:4.505763pt;}
.ws107{word-spacing:4.548270pt;}
.wsfb{word-spacing:4.633285pt;}
.wse2{word-spacing:4.675792pt;}
.ws58{word-spacing:4.686438pt;}
.wsb3{word-spacing:4.734259pt;}
.ws52{word-spacing:4.782080pt;}
.ws10e{word-spacing:4.803314pt;}
.ws7a{word-spacing:4.829901pt;}
.ws6d{word-spacing:4.877722pt;}
.ws69{word-spacing:5.021184pt;}
.wsdf{word-spacing:5.058357pt;}
.ws32{word-spacing:5.069005pt;}
.ws8{word-spacing:5.116826pt;}
.ws11f{word-spacing:5.143371pt;}
.ws4e{word-spacing:5.164646pt;}
.ws93{word-spacing:5.212467pt;}
.ws123{word-spacing:5.228386pt;}
.ws4{word-spacing:5.260288pt;}
.wsa8{word-spacing:5.355930pt;}
.ws2c{word-spacing:5.403750pt;}
.wsa6{word-spacing:5.451571pt;}
.wse6{word-spacing:5.525936pt;}
.ws81{word-spacing:5.547213pt;}
.ws74{word-spacing:5.642854pt;}
.ws3e{word-spacing:5.690675pt;}
.ws11d{word-spacing:5.695965pt;}
.ws127{word-spacing:5.738472pt;}
.ws97{word-spacing:5.786317pt;}
.ws10a{word-spacing:5.865994pt;}
.wsf0{word-spacing:5.908501pt;}
.ws80{word-spacing:5.929779pt;}
.ws82{word-spacing:5.977600pt;}
.ws30{word-spacing:6.025421pt;}
.wsff{word-spacing:6.097678pt;}
.ws100{word-spacing:6.121037pt;}
.ws1d{word-spacing:6.121062pt;}
.ws114{word-spacing:6.248558pt;}
.wsd{word-spacing:6.264525pt;}
.ws85{word-spacing:6.312346pt;}
.ws2d{word-spacing:6.407987pt;}
.ws27{word-spacing:6.455808pt;}
.wse8{word-spacing:6.461094pt;}
.wsca{word-spacing:6.503629pt;}
.wsb5{word-spacing:6.551450pt;}
.wsb0{word-spacing:6.694912pt;}
.ws8c{word-spacing:6.886195pt;}
.ws44{word-spacing:6.934016pt;}
.wsb7{word-spacing:6.981837pt;}
.ws3b{word-spacing:7.077478pt;}
.ws113{word-spacing:7.098702pt;}
.ws4a{word-spacing:7.173120pt;}
.wse5{word-spacing:7.523774pt;}
.ws8b{word-spacing:7.603507pt;}
.ws43{word-spacing:7.746970pt;}
.ws11b{word-spacing:7.778818pt;}
.ws6e{word-spacing:7.938253pt;}
.wse9{word-spacing:7.991354pt;}
.wsec{word-spacing:8.076368pt;}
.ws116{word-spacing:8.118875pt;}
.wsc2{word-spacing:8.129536pt;}
.ws6a{word-spacing:8.177357pt;}
.ws29{word-spacing:8.320819pt;}
.ws7c{word-spacing:8.512102pt;}
.ws7f{word-spacing:8.559923pt;}
.wsda{word-spacing:8.628962pt;}
.ws102{word-spacing:8.756483pt;}
.wse{word-spacing:8.799027pt;}
.wseb{word-spacing:8.884005pt;}
.ws2f{word-spacing:8.990310pt;}
.ws7e{word-spacing:9.133773pt;}
.ws4b{word-spacing:9.516339pt;}
.ws129{word-spacing:9.606627pt;}
.wsd0{word-spacing:9.649134pt;}
.wsea{word-spacing:9.989192pt;}
.wsc3{word-spacing:10.090189pt;}
.ws5a{word-spacing:10.130852pt;}
.ws5c{word-spacing:10.136185pt;}
.ws37{word-spacing:10.568397pt;}
.wsc8{word-spacing:10.616218pt;}
.ws11c{word-spacing:10.628000pt;}
.ws111{word-spacing:10.669307pt;}
.wsbe{word-spacing:10.998784pt;}
.ws98{word-spacing:11.190067pt;}
.ws117{word-spacing:11.349422pt;}
.ws45{word-spacing:11.524813pt;}
.wscb{word-spacing:11.620454pt;}
.ws5b{word-spacing:11.709519pt;}
.wsa0{word-spacing:11.784185pt;}
.ws10c{word-spacing:11.902016pt;}
.wsed{word-spacing:11.944523pt;}
.wsd9{word-spacing:12.072045pt;}
.ws46{word-spacing:12.385587pt;}
.ws99{word-spacing:12.555078pt;}
.wsc9{word-spacing:13.294182pt;}
.ws9e{word-spacing:13.581107pt;}
.ws119{word-spacing:13.772333pt;}
.ws9b{word-spacing:14.824448pt;}
.ws8f{word-spacing:15.875623pt;}
.wse4{word-spacing:18.915704pt;}
.ws11a{word-spacing:19.000718pt;}
.wsc7{word-spacing:22.141030pt;}
.ws19{word-spacing:22.316373pt;}
.ws2{word-spacing:28.644659pt;}
.ws118{word-spacing:30.798076pt;}
.wsab{word-spacing:51.803418pt;}
.wsba{word-spacing:66.366618pt;}
.wsbc{word-spacing:73.038933pt;}
.wsac{word-spacing:82.385954pt;}
.wsc0{word-spacing:84.986428pt;}
.wsad{word-spacing:84.992000pt;}
.wsbb{word-spacing:84.997333pt;}
.ws88{word-spacing:88.987162pt;}
.ws87{word-spacing:96.301867pt;}
.wsae{word-spacing:96.945067pt;}
.wsaf{word-spacing:96.949709pt;}
.wsc1{word-spacing:97.828864pt;}
.ws78{word-spacing:105.097382pt;}
.wsbd{word-spacing:156.721067pt;}
.ws86{word-spacing:184.258927pt;}
._1c{margin-left:-272.693353pt;}
._1a{margin-left:-170.557911pt;}
._1b{margin-left:-104.268716pt;}
._37{margin-left:-15.674616pt;}
._1{margin-left:-7.651307pt;}
._15{margin-left:-6.264525pt;}
._4{margin-left:-5.102532pt;}
._7{margin-left:-3.825664pt;}
._2{margin-left:-2.869248pt;}
._0{margin-left:-1.912827pt;}
._8{margin-left:-0.956416pt;}
._38{width:2.337896pt;}
._3{width:4.040917pt;}
._39{width:9.797875pt;}
._14{width:11.094426pt;}
._e{width:12.815974pt;}
._f{width:14.824443pt;}
._6{width:15.876506pt;}
._9{width:17.358950pt;}
._5{width:18.411008pt;}
._10{width:19.606528pt;}
._11{width:20.562944pt;}
._b{width:21.662817pt;}
._d{width:23.480007pt;}
._a{width:24.532070pt;}
._27{width:25.727590pt;}
._19{width:26.970931pt;}
._13{width:28.309908pt;}
._12{width:29.983642pt;}
._29{width:31.131341pt;}
._16{width:32.183393pt;}
._18{width:33.331098pt;}
._30{width:35.100462pt;}
._35{width:36.875136pt;}
._17{width:38.256640pt;}
._1e{width:39.930368pt;}
._c{width:41.221530pt;}
._1d{width:42.177946pt;}
._28{width:48.490291pt;}
._20{width:63.760256pt;}
._21{width:66.413867pt;}
._2a{width:68.058735pt;}
._24{width:108.257061pt;}
._25{width:114.566634pt;}
._2d{width:120.885709pt;}
._2e{width:123.534933pt;}
._1f{width:127.859260pt;}
._26{width:135.464533pt;}
._22{width:147.543325pt;}
._2b{width:148.786133pt;}
._23{width:154.613475pt;}
._2f{width:160.739200pt;}
._36{width:164.686558pt;}
._32{width:165.930667pt;}
._34{width:168.676267pt;}
._31{width:199.255467pt;}
._2c{width:201.908267pt;}
._33{width:204.474667pt;}
.fs6{font-size:19.382692pt;}
.fs10{font-size:25.141853pt;}
.fs11{font-size:28.284585pt;}
.fs4{font-size:31.012308pt;}
.fsb{font-size:31.138194pt;}
.fsf{font-size:31.427317pt;}
.fs7{font-size:31.880533pt;}
.fs5{font-size:36.827116pt;}
.fs12{font-size:40.855512pt;}
.fs2{font-size:42.507200pt;}
.fse{font-size:43.998243pt;}
.fs9{font-size:45.291919pt;}
.fs3{font-size:47.820800pt;}
.fsc{font-size:50.283707pt;}
.fs8{font-size:50.953409pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fsa{font-size:84.922348pt;}
.fsd{font-size:94.281950pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:9.199928pt;}
.yd9{bottom:12.570901pt;}
.y9a{bottom:19.107536pt;}
.y62{bottom:23.743799pt;}
.yd7{bottom:24.356145pt;}
.y6d{bottom:35.373415pt;}
.y63{bottom:47.972165pt;}
.y90{bottom:49.538044pt;}
.yd8{bottom:54.997779pt;}
.yce{bottom:58.926193pt;}
.y95{bottom:60.153337pt;}
.yc2{bottom:63.640291pt;}
.y8c{bottom:63.691768pt;}
.y94{bottom:69.353258pt;}
.yc3{bottom:72.282803pt;}
.y93{bottom:74.307062pt;}
.yc1{bottom:76.211217pt;}
.y65{bottom:78.015338pt;}
.y64{bottom:87.706684pt;}
.y92{bottom:106.152943pt;}
.yc0{bottom:109.995583pt;}
.y66{bottom:110.965915pt;}
.y91{bottom:120.306667pt;}
.ybf{bottom:125.709241pt;}
.y37{bottom:135.673333pt;}
.y17a{bottom:135.674667pt;}
.y96{bottom:139.414196pt;}
.y67{bottom:142.462790pt;}
.y1fe{bottom:146.322667pt;}
.yc8{bottom:146.922680pt;}
.y1bc{bottom:147.662667pt;}
.y9b{bottom:148.614117pt;}
.y36{bottom:149.554667pt;}
.y97{bottom:150.029489pt;}
.y9c{bottom:157.106351pt;}
.y1fd{bottom:158.312000pt;}
.y1bb{bottom:159.650667pt;}
.yd1{bottom:162.636338pt;}
.y35{bottom:163.436000pt;}
.y68{bottom:166.691156pt;}
.y1fc{bottom:170.300000pt;}
.y1ba{bottom:171.638667pt;}
.yc7{bottom:173.635899pt;}
.yd0{bottom:174.421582pt;}
.y34{bottom:177.317333pt;}
.y8e{bottom:183.998428pt;}
.yd2{bottom:186.206826pt;}
.y1fb{bottom:187.601333pt;}
.y1b9{bottom:187.944000pt;}
.y98{bottom:188.244546pt;}
.y8f{bottom:191.075291pt;}
.y33{bottom:191.198667pt;}
.yd3{bottom:194.849338pt;}
.yd5{bottom:196.420703pt;}
.y8d{bottom:198.152153pt;}
.y69{bottom:198.188031pt;}
.y1fa{bottom:199.590667pt;}
.y1b8{bottom:199.932000pt;}
.y32{bottom:205.080000pt;}
.yd6{bottom:205.848898pt;}
.y6c{bottom:209.817646pt;}
.ycf{bottom:210.562996pt;}
.y1f9{bottom:211.578667pt;}
.y1b7{bottom:211.920000pt;}
.y149{bottom:212.221333pt;}
.y179{bottom:215.058667pt;}
.y31{bottom:218.961333pt;}
.y5f{bottom:220.470667pt;}
.y6a{bottom:222.416397pt;}
.y1f8{bottom:223.566667pt;}
.y1b6{bottom:223.908000pt;}
.yd4{bottom:230.205069pt;}
.y30{bottom:232.842667pt;}
.y5e{bottom:234.352000pt;}
.y8a{bottom:234.517333pt;}
.y1f7{bottom:235.554667pt;}
.y1b5{bottom:235.897333pt;}
.y148{bottom:240.185333pt;}
.y6b{bottom:246.644762pt;}
.y2f{bottom:246.724000pt;}
.y5d{bottom:248.233333pt;}
.y89{bottom:248.398667pt;}
.y178{bottom:249.644000pt;}
.yca{bottom:251.418507pt;}
.y1b4{bottom:252.201333pt;}
.y1f6{bottom:252.857333pt;}
.y117{bottom:253.976000pt;}
.y147{bottom:254.066667pt;}
.y2e{bottom:260.605333pt;}
.y5c{bottom:262.114667pt;}
.y88{bottom:262.280000pt;}
.y177{bottom:263.525333pt;}
.y1b3{bottom:264.190667pt;}
.y1f5{bottom:264.845333pt;}
.yc9{bottom:267.132166pt;}
.y146{bottom:267.948000pt;}
.y2d{bottom:274.485333pt;}
.ybd{bottom:274.486667pt;}
.y5b{bottom:275.996000pt;}
.y87{bottom:276.161333pt;}
.y1b2{bottom:276.178667pt;}
.y1f4{bottom:276.833333pt;}
.y176{bottom:277.406667pt;}
.y145{bottom:281.829333pt;}
.y116{bottom:285.836000pt;}
.y2c{bottom:288.366667pt;}
.ybc{bottom:288.368000pt;}
.y5a{bottom:289.877333pt;}
.y86{bottom:290.042667pt;}
.y175{bottom:291.288000pt;}
.ydb{bottom:291.488336pt;}
.y1b1{bottom:292.482667pt;}
.y1f3{bottom:294.134667pt;}
.y144{bottom:295.912000pt;}
.ycb{bottom:299.345165pt;}
.y115{bottom:299.717333pt;}
.yda{bottom:300.916531pt;}
.y2b{bottom:302.248000pt;}
.ye7{bottom:302.249333pt;}
.y85{bottom:303.924000pt;}
.y1b0{bottom:304.472000pt;}
.y174{bottom:305.169333pt;}
.y1f2{bottom:306.124000pt;}
.ybb{bottom:308.838667pt;}
.y143{bottom:309.793333pt;}
.y59{bottom:312.209333pt;}
.y114{bottom:313.598667pt;}
.y2a{bottom:316.129333pt;}
.ye6{bottom:316.130667pt;}
.y1af{bottom:316.460000pt;}
.y84{bottom:317.805333pt;}
.y1f1{bottom:318.112000pt;}
.y173{bottom:319.050667pt;}
.yba{bottom:322.720000pt;}
.y142{bottom:323.674667pt;}
.y113{bottom:327.480000pt;}
.y29{bottom:330.010667pt;}
.y1f0{bottom:330.100000pt;}
.y83{bottom:331.686667pt;}
.y1ae{bottom:332.764000pt;}
.y172{bottom:332.932000pt;}
.ycc{bottom:334.700896pt;}
.yb9{bottom:336.601333pt;}
.y141{bottom:337.556000pt;}
.y112{bottom:341.361333pt;}
.y58{bottom:341.481333pt;}
.y28{bottom:343.892000pt;}
.y1ad{bottom:344.753333pt;}
.y82{bottom:345.568000pt;}
.y171{bottom:346.813333pt;}
.y1ef{bottom:347.401333pt;}
.yb8{bottom:350.482667pt;}
.y140{bottom:351.437333pt;}
.y111{bottom:355.242667pt;}
.y57{bottom:355.362667pt;}
.y1ac{bottom:356.741333pt;}
.y27{bottom:357.773333pt;}
.ye5{bottom:359.141333pt;}
.y1ee{bottom:359.390667pt;}
.y81{bottom:359.448000pt;}
.y170{bottom:360.694667pt;}
.ycd{bottom:362.199798pt;}
.yb7{bottom:364.364000pt;}
.y13f{bottom:365.318667pt;}
.y1ab{bottom:368.729333pt;}
.y110{bottom:369.124000pt;}
.y56{bottom:369.244000pt;}
.y1ed{bottom:371.378667pt;}
.y26{bottom:371.654667pt;}
.ye4{bottom:373.022667pt;}
.y16f{bottom:374.576000pt;}
.yb6{bottom:378.245333pt;}
.y13e{bottom:379.200000pt;}
.y80{bottom:381.945333pt;}
.y10f{bottom:383.005333pt;}
.y55{bottom:383.125333pt;}
.y1ec{bottom:383.366667pt;}
.y1aa{bottom:385.034667pt;}
.y25{bottom:385.536000pt;}
.ye3{bottom:386.904000pt;}
.y16e{bottom:388.457333pt;}
.yb5{bottom:392.125333pt;}
.y13d{bottom:393.081333pt;}
.y7f{bottom:395.826667pt;}
.y1a9{bottom:397.022667pt;}
.y10e{bottom:397.197333pt;}
.y24{bottom:399.417333pt;}
.y1eb{bottom:400.668000pt;}
.yc5{bottom:400.698261pt;}
.y16d{bottom:402.338667pt;}
.y54{bottom:405.457333pt;}
.yb4{bottom:406.006667pt;}
.yc6{bottom:408.555090pt;}
.y1a8{bottom:409.010667pt;}
.ye2{bottom:409.093333pt;}
.y10d{bottom:411.078667pt;}
.y1ea{bottom:412.657333pt;}
.y23{bottom:413.298667pt;}
.y13c{bottom:414.104000pt;}
.y16c{bottom:416.220000pt;}
.yc4{bottom:416.411919pt;}
.y1a7{bottom:421.000000pt;}
.yb3{bottom:424.281333pt;}
.y1e9{bottom:424.645333pt;}
.y10c{bottom:424.960000pt;}
.y7e{bottom:425.264000pt;}
.y16b{bottom:430.101333pt;}
.y1a6{bottom:432.988000pt;}
.y22{bottom:434.120000pt;}
.y1e8{bottom:436.633333pt;}
.yb2{bottom:438.162667pt;}
.ye1{bottom:438.224000pt;}
.y53{bottom:438.514667pt;}
.y10b{bottom:438.841333pt;}
.y7d{bottom:439.145333pt;}
.y13b{bottom:442.068000pt;}
.y16a{bottom:443.982667pt;}
.y1a5{bottom:449.292000pt;}
.yb1{bottom:452.044000pt;}
.ye0{bottom:452.105333pt;}
.y52{bottom:452.396000pt;}
.y10a{bottom:452.722667pt;}
.y7c{bottom:453.026667pt;}
.y1e7{bottom:453.934667pt;}
.y13a{bottom:455.949333pt;}
.y169{bottom:457.862667pt;}
.y1a4{bottom:461.281333pt;}
.y21{bottom:465.668000pt;}
.y1e6{bottom:465.924000pt;}
.yb0{bottom:465.925333pt;}
.ydf{bottom:465.986667pt;}
.y51{bottom:466.277333pt;}
.y109{bottom:466.604000pt;}
.y7b{bottom:466.908000pt;}
.y139{bottom:469.830667pt;}
.y168{bottom:471.744000pt;}
.y1a3{bottom:473.269333pt;}
.y1e5{bottom:477.912000pt;}
.y20{bottom:479.549333pt;}
.yaf{bottom:479.806667pt;}
.y50{bottom:480.158667pt;}
.y108{bottom:480.485333pt;}
.y7a{bottom:480.789333pt;}
.y138{bottom:483.710667pt;}
.y1a2{bottom:485.257333pt;}
.y167{bottom:485.625333pt;}
.yde{bottom:488.176000pt;}
.y1f{bottom:493.430667pt;}
.y4f{bottom:494.040000pt;}
.y107{bottom:494.366667pt;}
.y79{bottom:494.670667pt;}
.y1e4{bottom:495.213333pt;}
.y1a1{bottom:497.245333pt;}
.y137{bottom:497.592000pt;}
.y166{bottom:499.506667pt;}
.yae{bottom:500.277333pt;}
.y1e3{bottom:507.202667pt;}
.y1e{bottom:507.312000pt;}
.y4e{bottom:507.921333pt;}
.y106{bottom:508.248000pt;}
.y78{bottom:508.552000pt;}
.y136{bottom:511.473333pt;}
.y165{bottom:513.388000pt;}
.y1a0{bottom:513.550667pt;}
.yad{bottom:514.158667pt;}
.y1e2{bottom:519.190667pt;}
.y1d{bottom:521.193333pt;}
.y4d{bottom:521.802667pt;}
.y105{bottom:522.129333pt;}
.y77{bottom:524.108000pt;}
.y135{bottom:525.354667pt;}
.y19f{bottom:525.538667pt;}
.yac{bottom:528.040000pt;}
.y1e1{bottom:531.178667pt;}
.ydd{bottom:534.925333pt;}
.y1c{bottom:535.074667pt;}
.y104{bottom:536.010667pt;}
.y4c{bottom:537.193333pt;}
.y164{bottom:537.248000pt;}
.y19e{bottom:537.526667pt;}
.y76{bottom:537.989333pt;}
.yab{bottom:541.921333pt;}
.y1e0{bottom:548.480000pt;}
.ydc{bottom:548.806667pt;}
.y1b{bottom:548.956000pt;}
.y103{bottom:550.202667pt;}
.y4b{bottom:551.074667pt;}
.y75{bottom:551.870667pt;}
.y19d{bottom:553.832000pt;}
.yaa{bottom:555.802667pt;}
.y134{bottom:558.153333pt;}
.y1df{bottom:560.469333pt;}
.y1a{bottom:562.837333pt;}
.y102{bottom:564.084000pt;}
.y4a{bottom:564.956000pt;}
.y74{bottom:565.752000pt;}
.y19c{bottom:565.820000pt;}
.ya9{bottom:569.684000pt;}
.y133{bottom:572.034667pt;}
.y1de{bottom:572.457333pt;}
.ybe{bottom:574.455888pt;}
.y19{bottom:576.718667pt;}
.y19b{bottom:577.809333pt;}
.y101{bottom:577.965333pt;}
.y49{bottom:578.837333pt;}
.y73{bottom:579.633333pt;}
.ya8{bottom:583.565333pt;}
.y1dd{bottom:584.445333pt;}
.y163{bottom:584.664000pt;}
.y132{bottom:585.916000pt;}
.y19a{bottom:589.797333pt;}
.y18{bottom:590.600000pt;}
.y100{bottom:591.846667pt;}
.y48{bottom:592.718667pt;}
.y72{bottom:593.514667pt;}
.ya7{bottom:597.446667pt;}
.y162{bottom:598.545333pt;}
.y131{bottom:599.796000pt;}
.y1dc{bottom:601.746667pt;}
.y17{bottom:604.481333pt;}
.y199{bottom:606.101333pt;}
.y47{bottom:606.600000pt;}
.y71{bottom:607.396000pt;}
.ya6{bottom:611.328000pt;}
.y161{bottom:612.958667pt;}
.yff{bottom:612.981333pt;}
.y130{bottom:613.677333pt;}
.y1db{bottom:613.736000pt;}
.y198{bottom:618.090667pt;}
.y16{bottom:618.362667pt;}
.y46{bottom:620.481333pt;}
.ya5{bottom:625.209333pt;}
.y1da{bottom:625.724000pt;}
.y12f{bottom:627.558667pt;}
.y70{bottom:629.893333pt;}
.y197{bottom:630.078667pt;}
.y15{bottom:632.244000pt;}
.y45{bottom:634.362667pt;}
.ya4{bottom:639.090667pt;}
.y160{bottom:640.654667pt;}
.yfe{bottom:641.054667pt;}
.y12e{bottom:641.440000pt;}
.y196{bottom:642.066667pt;}
.y1d9{bottom:643.025333pt;}
.y14{bottom:646.125333pt;}
.y44{bottom:648.244000pt;}
.ya3{bottom:652.972000pt;}
.y195{bottom:654.054667pt;}
.y15f{bottom:654.536000pt;}
.yfd{bottom:654.936000pt;}
.y1d8{bottom:655.013333pt;}
.y12d{bottom:655.853333pt;}
.y13{bottom:660.005333pt;}
.y43{bottom:662.125333pt;}
.y12c{bottom:662.581333pt;}
.y194{bottom:666.044000pt;}
.y1d7{bottom:667.002667pt;}
.y15e{bottom:668.417333pt;}
.yfc{bottom:668.817333pt;}
.ya2{bottom:673.793333pt;}
.y12{bottom:673.886667pt;}
.y42{bottom:676.006667pt;}
.y193{bottom:678.032000pt;}
.y6f{bottom:678.522667pt;}
.y1d6{bottom:678.990667pt;}
.yfb{bottom:682.698667pt;}
.y11{bottom:687.768000pt;}
.y41{bottom:689.888000pt;}
.y1d5{bottom:690.978667pt;}
.y6e{bottom:692.402667pt;}
.y192{bottom:694.336000pt;}
.yfa{bottom:696.580000pt;}
.y12b{bottom:697.429333pt;}
.y10{bottom:701.649333pt;}
.y1d4{bottom:702.966667pt;}
.y15d{bottom:704.066667pt;}
.y40{bottom:705.278667pt;}
.y191{bottom:706.325333pt;}
.yf9{bottom:710.773333pt;}
.y12a{bottom:711.310667pt;}
.yf{bottom:715.530667pt;}
.y61{bottom:715.890100pt;}
.ya1{bottom:715.968000pt;}
.y15c{bottom:717.948000pt;}
.y190{bottom:718.313333pt;}
.y3f{bottom:719.160000pt;}
.y1d3{bottom:720.269333pt;}
.yf8{bottom:724.654667pt;}
.ye{bottom:729.412000pt;}
.ya0{bottom:729.849333pt;}
.y18f{bottom:730.301333pt;}
.y1d2{bottom:732.257333pt;}
.y3e{bottom:733.041333pt;}
.yf7{bottom:738.536000pt;}
.y129{bottom:739.493333pt;}
.yd{bottom:743.293333pt;}
.y9f{bottom:743.730667pt;}
.y1d1{bottom:744.245333pt;}
.y18e{bottom:746.606667pt;}
.y3d{bottom:746.922667pt;}
.yf6{bottom:752.417333pt;}
.y128{bottom:753.373333pt;}
.y1d0{bottom:756.233333pt;}
.yc{bottom:757.174667pt;}
.y9e{bottom:757.612000pt;}
.y18d{bottom:758.594667pt;}
.y3c{bottom:760.804000pt;}
.y127{bottom:767.254667pt;}
.y15b{bottom:768.569333pt;}
.y18c{bottom:770.582667pt;}
.yb{bottom:771.056000pt;}
.y9d{bottom:771.493333pt;}
.y1cf{bottom:773.536000pt;}
.yf5{bottom:773.550667pt;}
.y3b{bottom:774.685333pt;}
.y126{bottom:781.136000pt;}
.y15a{bottom:782.450667pt;}
.y18b{bottom:782.572000pt;}
.ya{bottom:784.937333pt;}
.y1ce{bottom:785.524000pt;}
.y3a{bottom:788.566667pt;}
.y125{bottom:795.017333pt;}
.y8b{bottom:795.988745pt;}
.y159{bottom:796.332000pt;}
.y1cd{bottom:797.512000pt;}
.y9{bottom:798.818667pt;}
.y18a{bottom:798.876000pt;}
.yf4{bottom:801.625333pt;}
.y39{bottom:802.446667pt;}
.y124{bottom:808.898667pt;}
.y156{bottom:810.744000pt;}
.y189{bottom:810.864000pt;}
.y1cc{bottom:814.814667pt;}
.yf3{bottom:815.505333pt;}
.y38{bottom:816.328000pt;}
.y8{bottom:816.329333pt;}
.y158{bottom:817.685333pt;}
.y123{bottom:822.780000pt;}
.y188{bottom:822.853333pt;}
.y155{bottom:824.625333pt;}
.y1cb{bottom:826.802667pt;}
.yf2{bottom:829.386667pt;}
.y157{bottom:831.566667pt;}
.y187{bottom:834.841333pt;}
.y122{bottom:836.661333pt;}
.y154{bottom:838.506667pt;}
.y1ca{bottom:838.790667pt;}
.yf1{bottom:843.580000pt;}
.y186{bottom:846.829333pt;}
.y121{bottom:850.542667pt;}
.y1c9{bottom:850.778667pt;}
.y7{bottom:856.728000pt;}
.yf0{bottom:857.461333pt;}
.y1c8{bottom:862.768000pt;}
.y185{bottom:863.134667pt;}
.y120{bottom:864.424000pt;}
.y153{bottom:866.202667pt;}
.y6{bottom:870.609333pt;}
.y184{bottom:875.122667pt;}
.y11f{bottom:878.305333pt;}
.y1c7{bottom:880.069333pt;}
.y152{bottom:880.084000pt;}
.y183{bottom:887.110667pt;}
.y1c6{bottom:892.057333pt;}
.y11e{bottom:892.186667pt;}
.y151{bottom:893.965333pt;}
.y5{bottom:894.260000pt;}
.y182{bottom:899.098667pt;}
.yef{bottom:902.632000pt;}
.y1c5{bottom:904.045333pt;}
.y11d{bottom:906.068000pt;}
.y181{bottom:915.404000pt;}
.y1c4{bottom:916.034667pt;}
.yee{bottom:916.512000pt;}
.y11c{bottom:919.949333pt;}
.y4{bottom:920.754667pt;}
.y180{bottom:927.392000pt;}
.yed{bottom:930.393333pt;}
.y1c3{bottom:933.336000pt;}
.y11b{bottom:933.830667pt;}
.y3{bottom:938.421333pt;}
.y17f{bottom:939.381333pt;}
.y150{bottom:944.274667pt;}
.yec{bottom:944.806667pt;}
.y1c2{bottom:945.324000pt;}
.y11a{bottom:947.710667pt;}
.y17e{bottom:951.369333pt;}
.y1c1{bottom:957.312000pt;}
.y14f{bottom:958.688000pt;}
.yeb{bottom:959.218667pt;}
.y14c{bottom:965.628000pt;}
.y17d{bottom:967.673333pt;}
.y119{bottom:968.734667pt;}
.y1c0{bottom:969.301333pt;}
.y14e{bottom:972.569333pt;}
.y2{bottom:974.685333pt;}
.y14b{bottom:979.509333pt;}
.y17c{bottom:979.662667pt;}
.yea{bottom:986.384000pt;}
.y14d{bottom:986.450667pt;}
.y1bf{bottom:986.602667pt;}
.y17b{bottom:991.650667pt;}
.y118{bottom:996.698667pt;}
.y1{bottom:997.400000pt;}
.y1be{bottom:998.590667pt;}
.ye9{bottom:1000.265333pt;}
.y1bd{bottom:1010.578667pt;}
.y60{bottom:1010.580000pt;}
.y14a{bottom:1014.145333pt;}
.ye8{bottom:1014.146667pt;}
.he{height:14.111130pt;}
.h1c{height:18.316233pt;}
.h1d{height:20.605762pt;}
.hc{height:22.577808pt;}
.h16{height:22.669457pt;}
.h1b{height:22.895291pt;}
.hd{height:26.811147pt;}
.h6{height:28.267288pt;}
.h24{height:29.159939pt;}
.h23{height:29.244954pt;}
.h1e{height:29.763879pt;}
.h7{height:29.840179pt;}
.h1a{height:32.053408pt;}
.hf{height:32.805069pt;}
.h9{height:32.900710pt;}
.h14{height:32.973756pt;}
.ha{height:33.091994pt;}
.h22{height:33.140710pt;}
.h10{height:33.761485pt;}
.h18{height:36.632466pt;}
.h13{height:37.095475pt;}
.h25{height:40.381840pt;}
.h1f{height:41.834027pt;}
.h11{height:42.422223pt;}
.h4{height:43.740092pt;}
.h8{height:44.122658pt;}
.h5{height:51.403288pt;}
.h3{height:51.408621pt;}
.h2{height:52.947042pt;}
.h21{height:59.812710pt;}
.h20{height:61.508710pt;}
.h15{height:61.825792pt;}
.h19{height:68.685874pt;}
.h12{height:227.874975pt;}
.hb{height:272.811397pt;}
.h17{height:449.410602pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:102.728266pt;}
.w4{width:250.589077pt;}
.w3{width:256.890109pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:1.988760pt;}
.x13{left:3.641826pt;}
.x11{left:8.593498pt;}
.x15{left:12.250467pt;}
.x30{left:15.050738pt;}
.x16{left:27.983762pt;}
.x1f{left:32.874237pt;}
.x14{left:33.806141pt;}
.x17{left:35.449127pt;}
.x24{left:37.219873pt;}
.x26{left:41.753488pt;}
.x12{left:43.823056pt;}
.x20{left:46.928443pt;}
.x25{left:49.759188pt;}
.x2e{left:55.427474pt;}
.x2b{left:57.563550pt;}
.x39{left:62.928291pt;}
.x3a{left:68.170269pt;}
.x19{left:75.390699pt;}
.xa{left:76.800000pt;}
.x1a{left:78.542115pt;}
.x41{left:84.770667pt;}
.x42{left:86.432000pt;}
.x21{left:87.742036pt;}
.x7{left:89.617333pt;}
.x1{left:93.465333pt;}
.x37{left:94.895765pt;}
.xc{left:96.725333pt;}
.x53{left:101.146667pt;}
.x28{left:102.690667pt;}
.x31{left:104.041605pt;}
.x29{left:112.512249pt;}
.x2a{left:118.785436pt;}
.x2f{left:119.755263pt;}
.x1b{left:123.690285pt;}
.x38{left:124.751715pt;}
.x3{left:128.765333pt;}
.x2c{left:134.769172pt;}
.x2d{left:138.267921pt;}
.x1c{left:140.265627pt;}
.x1d{left:145.916056pt;}
.x3b{left:149.253333pt;}
.x23{left:156.409719pt;}
.x22{left:166.295211pt;}
.x1e{left:171.260069pt;}
.xb{left:173.968000pt;}
.x10{left:176.578667pt;}
.x52{left:180.193333pt;}
.x34{left:190.429896pt;}
.x9{left:198.325333pt;}
.x36{left:204.351216pt;}
.x35{left:221.157468pt;}
.x33{left:230.634768pt;}
.x5{left:272.621333pt;}
.x6{left:301.814667pt;}
.x2{left:359.288000pt;}
.x8{left:362.194667pt;}
.xd{left:416.957333pt;}
.x44{left:424.928000pt;}
.x43{left:430.917333pt;}
.xf{left:434.345333pt;}
.xe{left:436.882667pt;}
.x18{left:439.637333pt;}
.x54{left:441.304000pt;}
.x3f{left:442.602667pt;}
.x3e{left:447.976000pt;}
.x27{left:450.166667pt;}
.x3d{left:452.412000pt;}
.x4d{left:458.630667pt;}
.x4b{left:473.176000pt;}
.x4c{left:476.385333pt;}
.x4e{left:491.490667pt;}
.x45{left:493.338667pt;}
.x46{left:495.676000pt;}
.x4f{left:497.965333pt;}
.x4a{left:499.070667pt;}
.x47{left:500.984000pt;}
.x3c{left:530.604000pt;}
.x40{left:532.584000pt;}
.x48{left:554.445333pt;}
.x49{left:558.085333pt;}
.x50{left:593.152000pt;}
.x51{left:635.317333pt;}
.x4{left:642.568000pt;}
.x55{left:691.877333pt;}
.x56{left:701.616000pt;}
}




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