
    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_f0746f540f504d02b80e1c6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_d6ba953dc4bdd795532b5d66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a698703180f4bb14e952cd6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a701e7978cf9b616edb2d2b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_83ac65313af80ed0721fdcc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_a82abe9953221cad52eff9a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_d3cfca47c0664645348b74a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_19065adbf5ee03c4ad2c61d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_33e29725e76bdf61dea5789e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_2cb1ecd13d28a5992070f195.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_83be756f552cd269bb0ae219.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.201172;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_db0a7ba4ebe60e4bb0c7c206.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.201172;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_fad8c3a6df11c3ae811dc152.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172363;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_024a094f4bed64fb60fd1a10.woff2')format("woff");}.fff{font-family:fff;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cfb3a8c07144dd63c1e0224f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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:ff11;src:url('chunks/assets/font_bdbd52551a9f697042d34c66.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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;}
.m9{transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.223278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223278,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.225286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225286,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.225642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225642,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.225959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225959,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.226301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226301,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.229316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229316,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.229536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229536,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.232586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232586,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);}
.v9{vertical-align:-47.908236px;}
.v7{vertical-align:-18.978959px;}
.vf{vertical-align:-17.782491px;}
.v1{vertical-align:-5.760000px;}
.v8{vertical-align:-1.349893px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.vb{vertical-align:17.697773px;}
.vd{vertical-align:19.057701px;}
.v6{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.v5{vertical-align:29.520000px;}
.v3{vertical-align:33.120000px;}
.va{vertical-align:41.760000px;}
.ve{vertical-align:54.149447px;}
.vc{vertical-align:95.444460px;}
.ls2b{letter-spacing:-2.160000px;}
.ls29{letter-spacing:-1.656000px;}
.ls16{letter-spacing:-1.176000px;}
.ls34{letter-spacing:-0.936000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.075482px;}
.ls36{letter-spacing:-0.074482px;}
.ls26{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.075844px;}
.ls17{letter-spacing:0.111600px;}
.ls2{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.305280px;}
.ls28{letter-spacing:0.313800px;}
.ls5{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.377411px;}
.ls23{letter-spacing:0.427680px;}
.ls38{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.446543px;}
.ls43{letter-spacing:0.455338px;}
.ls33{letter-spacing:0.530601px;}
.ls22{letter-spacing:0.623520px;}
.ls25{letter-spacing:0.720000px;}
.ls37{letter-spacing:1.360365px;}
.ls10{letter-spacing:1.440000px;}
.ls41{letter-spacing:1.508097px;}
.ls32{letter-spacing:1.509984px;}
.ls35{letter-spacing:2.035357px;}
.ls1d{letter-spacing:2.136000px;}
.ls3a{letter-spacing:2.880000px;}
.lse{letter-spacing:3.600000px;}
.ls3b{letter-spacing:4.320000px;}
.lsb{letter-spacing:4.464000px;}
.ls18{letter-spacing:6.480000px;}
.ls1a{letter-spacing:8.640000px;}
.ls19{letter-spacing:9.360000px;}
.ls31{letter-spacing:10.080000px;}
.ls49{letter-spacing:10.224000px;}
.ls30{letter-spacing:11.520000px;}
.lsf{letter-spacing:12.240000px;}
.ls3d{letter-spacing:12.960000px;}
.ls1e{letter-spacing:14.400000px;}
.ls1c{letter-spacing:15.840000px;}
.ls4b{letter-spacing:18.720000px;}
.ls3e{letter-spacing:20.160000px;}
.ls39{letter-spacing:21.600000px;}
.ls1f{letter-spacing:25.920000px;}
.ls3c{letter-spacing:28.080000px;}
.ls11{letter-spacing:30.420000px;}
.ls3f{letter-spacing:30.960000px;}
.lsd{letter-spacing:31.680000px;}
.ls4d{letter-spacing:31.860000px;}
.ls20{letter-spacing:32.400000px;}
.lsc{letter-spacing:33.840000px;}
.ls2f{letter-spacing:35.389731px;}
.ls44{letter-spacing:42.480000px;}
.ls45{letter-spacing:49.062738px;}
.ls4c{letter-spacing:49.680000px;}
.ls3{letter-spacing:54.900000px;}
.ls4a{letter-spacing:61.920000px;}
.ls4{letter-spacing:102.960000px;}
.ls40{letter-spacing:131.248513px;}
.ls2e{letter-spacing:131.412755px;}
.ls46{letter-spacing:173.420712px;}
.lsa{letter-spacing:189.120000px;}
.ls47{letter-spacing:192.034559px;}
.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;}
}
.ws15{word-spacing:-41.760000px;}
.ws20{word-spacing:-41.437811px;}
.ws1{word-spacing:-23.940000px;}
.ws5{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.640000px;}
.ws3{word-spacing:-17.568000px;}
.ws4{word-spacing:-17.352000px;}
.ws1c{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.344000px;}
.wsd{word-spacing:-16.102200px;}
.wse{word-spacing:-15.384000px;}
.ws12{word-spacing:-15.284040px;}
.ws11{word-spacing:-14.970240px;}
.ws23{word-spacing:-14.940000px;}
.ws24{word-spacing:-14.580000px;}
.ws9{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.700000px;}
.ws30{word-spacing:-11.255559px;}
.ws29{word-spacing:-11.050971px;}
.ws17{word-spacing:-10.440000px;}
.ws14{word-spacing:-9.113760px;}
.ws32{word-spacing:-0.120562px;}
.ws27{word-spacing:-0.076749px;}
.ws34{word-spacing:-0.076702px;}
.ws1b{word-spacing:-0.076598px;}
.ws2b{word-spacing:-0.076337px;}
.ws1a{word-spacing:-0.075573px;}
.ws1e{word-spacing:-0.075479px;}
.ws26{word-spacing:-0.075267px;}
.ws31{word-spacing:-0.044719px;}
.ws2c{word-spacing:-0.044506px;}
.ws19{word-spacing:-0.044120px;}
.ws22{word-spacing:-0.044065px;}
.ws1d{word-spacing:-0.000997px;}
.ws6{word-spacing:0.000000px;}
.ws1f{word-spacing:17.247938px;}
.ws28{word-spacing:38.454386px;}
.ws21{word-spacing:97.193088px;}
.ws2e{word-spacing:97.629626px;}
.ws25{word-spacing:98.796669px;}
.ws18{word-spacing:98.920301px;}
.ws35{word-spacing:174.538353px;}
.ws2a{word-spacing:175.265987px;}
.ws2d{word-spacing:218.659919px;}
.ws2f{word-spacing:224.356908px;}
.ws33{word-spacing:651.353800px;}
._4d{margin-left:-570.292256px;}
._4c{margin-left:-529.338527px;}
._4a{margin-left:-323.137762px;}
._33{margin-left:-301.406967px;}
._3a{margin-left:-299.245169px;}
._54{margin-left:-296.153923px;}
._51{margin-left:-283.095527px;}
._53{margin-left:-266.749191px;}
._50{margin-left:-265.209216px;}
._52{margin-left:-264.198090px;}
._34{margin-left:-263.075194px;}
._3b{margin-left:-260.807416px;}
._39{margin-left:-199.671028px;}
._37{margin-left:-131.584221px;}
._4f{margin-left:-103.630593px;}
._4b{margin-left:-102.521798px;}
._48{margin-left:-93.137095px;}
._49{margin-left:-91.632277px;}
._47{margin-left:-89.098176px;}
._35{margin-left:-57.257241px;}
._36{margin-left:-55.857044px;}
._38{margin-left:-54.756227px;}
._31{margin-left:-25.834080px;}
._1a{margin-left:-2.211840px;}
._1{margin-left:-1.209600px;}
._0{width:1.347840px;}
._19{width:2.647200px;}
._4{width:4.017600px;}
._3{width:5.184000px;}
._25{width:6.696000px;}
._f{width:8.712000px;}
._10{width:9.864000px;}
._18{width:11.232000px;}
._1f{width:12.816000px;}
._1d{width:13.896000px;}
._28{width:15.696000px;}
._44{width:16.709280px;}
._b{width:19.584000px;}
._c{width:20.664000px;}
._d{width:21.960000px;}
._1b{width:23.940000px;}
._21{width:25.056000px;}
._23{width:26.352000px;}
._17{width:28.368000px;}
._16{width:29.376000px;}
._24{width:30.579840px;}
._15{width:31.680000px;}
._22{width:33.624000px;}
._13{width:39.283200px;}
._11{width:41.256000px;}
._12{width:42.480000px;}
._e{width:44.640000px;}
._46{width:47.016000px;}
._45{width:48.096000px;}
._58{width:49.176000px;}
._59{width:51.641760px;}
._1c{width:52.971840px;}
._2{width:54.668160px;}
._57{width:60.984000px;}
._14{width:62.280000px;}
._2e{width:63.812160px;}
._7{width:67.752000px;}
._a{width:69.552000px;}
._42{width:81.360000px;}
._43{width:82.584000px;}
._30{width:89.832000px;}
._3e{width:91.861440px;}
._9{width:101.936160px;}
._8{width:103.104000px;}
._40{width:109.920000px;}
._5{width:111.312000px;}
._6{width:112.536000px;}
._41{width:113.742240px;}
._3f{width:116.561760px;}
._2f{width:139.980000px;}
._3d{width:163.915200px;}
._3c{width:165.384000px;}
._4e{width:192.493256px;}
._27{width:195.120000px;}
._1e{width:196.269600px;}
._55{width:220.465284px;}
._2a{width:387.492720px;}
._2d{width:401.376000px;}
._56{width:487.365600px;}
._32{width:530.164320px;}
._26{width:586.260000px;}
._20{width:724.404000px;}
._2c{width:935.940000px;}
._2b{width:1007.777760px;}
._29{width:1009.331040px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:41.760000px;}
.fsc{font-size:43.688414px;}
.fs10{font-size:44.064744px;}
.fs9{font-size:44.119886px;}
.fs16{font-size:44.505814px;}
.fs1a{font-size:44.718860px;}
.fs5{font-size:48.240000px;}
.fs11{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.955582px;}
.fs13{font-size:75.266506px;}
.fse{font-size:75.478709px;}
.fs8{font-size:75.573162px;}
.fs17{font-size:76.336853px;}
.fsa{font-size:76.598463px;}
.fs18{font-size:76.702272px;}
.fs14{font-size:76.748988px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fsb{font-size:112.365321px;}
.fsf{font-size:113.138042px;}
.fs12{font-size:113.285774px;}
.fs7{font-size:113.427538px;}
.fs15{font-size:114.658116px;}
.fs19{font-size:115.056542px;}
.fs3{font-size:131.760000px;}
.y124{bottom:-3.780000px;}
.ydb{bottom:-2.520000px;}
.ydd{bottom:-2.340000px;}
.y165{bottom:-1.260000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:0.180000px;}
.yde{bottom:0.360000px;}
.y122{bottom:1.800000px;}
.y64{bottom:2.880000px;}
.y146{bottom:3.781477px;}
.y13f{bottom:3.781505px;}
.y147{bottom:3.781516px;}
.y11b{bottom:3.991894px;}
.yba{bottom:4.030031px;}
.ya3{bottom:4.030064px;}
.y133{bottom:4.030066px;}
.ya8{bottom:4.030070px;}
.ye9{bottom:4.320000px;}
.y167{bottom:4.860000px;}
.y14a{bottom:5.205312px;}
.yc5{bottom:5.223886px;}
.y14e{bottom:5.433313px;}
.y10b{bottom:5.559665px;}
.y9b{bottom:5.566603px;}
.yc3{bottom:5.596926px;}
.y127{bottom:5.940000px;}
.yb4{bottom:6.787707px;}
.y5c{bottom:6.840000px;}
.y114{bottom:7.009374px;}
.y12c{bottom:7.009403px;}
.y5e{bottom:7.020000px;}
.y168{bottom:7.200000px;}
.y99{bottom:7.380000px;}
.y77{bottom:7.560000px;}
.y79{bottom:7.590000px;}
.y5a{bottom:7.740000px;}
.y74{bottom:8.460000px;}
.y10f{bottom:9.925283px;}
.y10d{bottom:9.925289px;}
.y9d{bottom:9.937698px;}
.yc7{bottom:9.962543px;}
.yc2{bottom:9.962550px;}
.yc0{bottom:10.074564px;}
.yb5{bottom:11.137877px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.y143{bottom:17.318818px;}
.y13d{bottom:17.318827px;}
.y145{bottom:17.318863px;}
.y8e{bottom:17.325000px;}
.yc{bottom:17.640000px;}
.y142{bottom:17.658826px;}
.y13b{bottom:17.658861px;}
.y5d{bottom:18.720000px;}
.y14c{bottom:18.996928px;}
.y7{bottom:20.700000px;}
.ybc{bottom:21.240000px;}
.yb8{bottom:21.780000px;}
.y130{bottom:21.960000px;}
.y13e{bottom:22.083266px;}
.yb7{bottom:22.500000px;}
.y149{bottom:23.442551px;}
.y14f{bottom:23.785728px;}
.ybf{bottom:24.888221px;}
.y4{bottom:27.900000px;}
.y93{bottom:29.205000px;}
.y59{bottom:29.520000px;}
.yae{bottom:30.420000px;}
.y11d{bottom:30.594000px;}
.ya5{bottom:30.600000px;}
.yac{bottom:31.140000px;}
.y11c{bottom:31.175944px;}
.y134{bottom:31.176013px;}
.ybb{bottom:31.251241px;}
.ya4{bottom:31.251243px;}
.ya9{bottom:31.251279px;}
.yb2{bottom:31.251281px;}
.y119{bottom:31.314000px;}
.y98{bottom:31.320000px;}
.y73{bottom:31.680000px;}
.y12e{bottom:32.400000px;}
.y116{bottom:32.580000px;}
.y12d{bottom:33.704535px;}
.y115{bottom:33.742915px;}
.y10e{bottom:35.110966px;}
.yc6{bottom:35.110985px;}
.y9e{bottom:35.154894px;}
.y10c{bottom:35.447985px;}
.yc4{bottom:35.484937px;}
.y9c{bottom:35.492330px;}
.y14b{bottom:35.753024px;}
.y131{bottom:36.360000px;}
.yc1{bottom:36.865289px;}
.y110{bottom:39.850700px;}
.yc8{bottom:39.850720px;}
.y9f{bottom:39.900559px;}
.y8d{bottom:40.545000px;}
.y13c{bottom:41.519964px;}
.y144{bottom:41.519975px;}
.y14d{bottom:43.315441px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y92{bottom:49.905000px;}
.y109{bottom:54.585000px;}
.y111{bottom:54.765000px;}
.yb0{bottom:54.900000px;}
.yab{bottom:54.945000px;}
.y118{bottom:55.074000px;}
.y97{bottom:55.080000px;}
.ya0{bottom:55.260000px;}
.y8c{bottom:63.765000px;}
.y2{bottom:69.300000px;}
.y91{bottom:70.605000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y96{bottom:78.840000px;}
.ya{bottom:91.116000px;}
.y90{bottom:91.305000px;}
.y95{bottom:102.600000px;}
.y117{bottom:128.916000px;}
.y8a{bottom:129.996000px;}
.y38{bottom:135.216000px;}
.y162{bottom:135.756000px;}
.y11a{bottom:141.540000px;}
.y89{bottom:153.750000px;}
.y125{bottom:154.650000px;}
.y121{bottom:155.190000px;}
.yd9{bottom:155.730000px;}
.y161{bottom:158.970000px;}
.y126{bottom:159.150000px;}
.y37{bottom:163.290000px;}
.y123{bottom:164.910000px;}
.y88{bottom:181.650000px;}
.y160{bottom:183.270000px;}
.y63{bottom:184.170000px;}
.yd8{bottom:184.710000px;}
.y36{bottom:187.410000px;}
.y112{bottom:201.090000px;}
.y87{bottom:206.490000px;}
.y62{bottom:206.850000px;}
.y15f{bottom:207.030000px;}
.yd7{bottom:209.730000px;}
.y35{bottom:211.350000px;}
.y113{bottom:212.640000px;}
.y120{bottom:227.190000px;}
.y61{bottom:229.350000px;}
.y86{bottom:230.250000px;}
.y15e{bottom:230.790000px;}
.yd6{bottom:233.490000px;}
.y11f{bottom:234.030000px;}
.y11e{bottom:234.930000px;}
.y34{bottom:235.110000px;}
.y60{bottom:252.030000px;}
.y15d{bottom:254.550000px;}
.yd5{bottom:257.250000px;}
.y85{bottom:258.150000px;}
.y33{bottom:258.870000px;}
.y108{bottom:273.270000px;}
.y5f{bottom:274.530000px;}
.y15c{bottom:278.490000px;}
.yd4{bottom:281.010000px;}
.y32{bottom:282.675000px;}
.y84{bottom:287.175000px;}
.y58{bottom:297.075000px;}
.y15b{bottom:302.295000px;}
.y10a{bottom:304.139980px;}
.yd3{bottom:304.995000px;}
.y31{bottom:306.435000px;}
.y83{bottom:312.195000px;}
.y5b{bottom:319.755000px;}
.y15a{bottom:326.055000px;}
.yd2{bottom:328.755000px;}
.y30{bottom:330.375000px;}
.y82{bottom:335.955000px;}
.y57{bottom:349.815000px;}
.yd1{bottom:352.515000px;}
.y2f{bottom:354.135000px;}
.y81{bottom:363.675000px;}
.y56{bottom:373.575000px;}
.y159{bottom:373.755000px;}
.yd0{bottom:376.275000px;}
.y2e{bottom:377.535000px;}
.y80{bottom:393.915000px;}
.y55{bottom:397.335000px;}
.y158{bottom:397.515000px;}
.y107{bottom:399.675000px;}
.ycf{bottom:400.215000px;}
.y2d{bottom:401.655000px;}
.y54{bottom:421.095000px;}
.y157{bottom:421.275000px;}
.y7f{bottom:422.895000px;}
.y106{bottom:423.435000px;}
.yce{bottom:423.975000px;}
.y2c{bottom:425.595000px;}
.y53{bottom:445.035000px;}
.y105{bottom:447.195000px;}
.y7e{bottom:447.735000px;}
.y2b{bottom:449.355000px;}
.y156{bottom:468.435000px;}
.y52{bottom:468.795000px;}
.y104{bottom:471.135000px;}
.ycd{bottom:471.495000px;}
.y7d{bottom:471.675000px;}
.y2a{bottom:473.115000px;}
.y155{bottom:492.375000px;}
.y51{bottom:492.555000px;}
.y103{bottom:494.895000px;}
.y7c{bottom:495.435000px;}
.y29{bottom:496.875000px;}
.y7b{bottom:512.535000px;}
.y50{bottom:516.315000px;}
.y154{bottom:516.495000px;}
.y102{bottom:518.655000px;}
.ycc{bottom:519.195000px;}
.y28{bottom:520.815000px;}
.y7a{bottom:536.475000px;}
.y4f{bottom:540.255000px;}
.y101{bottom:542.415000px;}
.ycb{bottom:542.955000px;}
.y27{bottom:544.575000px;}
.y78{bottom:560.415000px;}
.y4e{bottom:564.015000px;}
.y100{bottom:566.385000px;}
.yca{bottom:566.745000px;}
.y26{bottom:568.365000px;}
.y76{bottom:584.385000px;}
.ybe{bottom:586.364959px;}
.yc9{bottom:586.365000px;}
.y153{bottom:587.625000px;}
.y4d{bottom:587.805000px;}
.yff{bottom:590.145000px;}
.y25{bottom:592.125000px;}
.y72{bottom:608.145000px;}
.y4c{bottom:611.565000px;}
.yfe{bottom:613.905000px;}
.y24{bottom:616.065000px;}
.y152{bottom:617.865000px;}
.y75{bottom:632.085000px;}
.y4b{bottom:635.505000px;}
.yfd{bottom:637.665000px;}
.y23{bottom:639.825000px;}
.y151{bottom:647.385000px;}
.ybd{bottom:653.325000px;}
.y4a{bottom:659.265000px;}
.yfc{bottom:661.425000px;}
.y71{bottom:663.045000px;}
.y22{bottom:663.585000px;}
.y148{bottom:666.990000px;}
.yb6{bottom:670.425000px;}
.yb9{bottom:673.664959px;}
.yb3{bottom:682.439959px;}
.y49{bottom:683.025000px;}
.yfb{bottom:685.365000px;}
.y21{bottom:687.345000px;}
.y150{bottom:689.505000px;}
.y48{bottom:706.785000px;}
.yfa{bottom:709.125000px;}
.y20{bottom:710.925000px;}
.y70{bottom:711.105000px;}
.yaf{bottom:723.885000px;}
.y141{bottom:727.439919px;}
.y47{bottom:730.725000px;}
.yf9{bottom:732.885000px;}
.y1f{bottom:734.685000px;}
.y6f{bottom:734.865000px;}
.yb1{bottom:736.289919px;}
.y140{bottom:748.545000px;}
.y46{bottom:754.485000px;}
.ye8{bottom:755.025000px;}
.yf8{bottom:756.645000px;}
.ye7{bottom:757.725000px;}
.y6e{bottom:758.625000px;}
.y1e{bottom:758.805000px;}
.ye6{bottom:759.165000px;}
.ye5{bottom:759.885000px;}
.y45{bottom:778.245000px;}
.yf7{bottom:780.585000px;}
.y1d{bottom:782.565000px;}
.y13a{bottom:784.514919px;}
.yaa{bottom:796.065000px;}
.y44{bottom:802.005000px;}
.yf6{bottom:804.345000px;}
.y139{bottom:805.605000px;}
.y1c{bottom:806.325000px;}
.yad{bottom:808.439919px;}
.y8f{bottom:819.285000px;}
.ye4{bottom:824.325000px;}
.y43{bottom:825.945000px;}
.yf5{bottom:828.105000px;}
.y6d{bottom:830.085000px;}
.y1b{bottom:830.265000px;}
.ye3{bottom:830.625000px;}
.ye2{bottom:831.525000px;}
.y138{bottom:845.925000px;}
.y8b{bottom:847.185000px;}
.y42{bottom:849.750000px;}
.yf4{bottom:851.910000px;}
.y1a{bottom:854.070000px;}
.ya6{bottom:868.110000px;}
.y137{bottom:869.910000px;}
.y41{bottom:873.510000px;}
.yf3{bottom:875.850000px;}
.y19{bottom:877.830000px;}
.ya7{bottom:880.664919px;}
.y6c{bottom:884.130000px;}
.y136{bottom:893.670000px;}
.y40{bottom:897.270000px;}
.ye1{bottom:897.450000px;}
.ydf{bottom:901.410000px;}
.y18{bottom:901.590000px;}
.yf2{bottom:903.750000px;}
.y6b{bottom:908.070000px;}
.y135{bottom:917.430000px;}
.y3f{bottom:921.030000px;}
.y17{bottom:925.530000px;}
.y6a{bottom:931.830000px;}
.yf1{bottom:932.730000px;}
.y12f{bottom:934.530000px;}
.y132{bottom:937.739919px;}
.ya1{bottom:940.290000px;}
.y3e{bottom:944.970000px;}
.y16{bottom:948.930000px;}
.ya2{bottom:952.814919px;}
.y69{bottom:955.590000px;}
.yf0{bottom:961.710000px;}
.y3d{bottom:968.730000px;}
.y15{bottom:973.050000px;}
.ydc{bottom:975.390000px;}
.yda{bottom:976.470000px;}
.y68{bottom:979.350000px;}
.yef{bottom:986.550000px;}
.y12a{bottom:987.990000px;}
.y3c{bottom:992.490000px;}
.y14{bottom:996.450000px;}
.y12b{bottom:999.239919px;}
.y67{bottom:1003.110000px;}
.yee{bottom:1010.310000px;}
.y94{bottom:1012.470000px;}
.y3b{bottom:1016.250000px;}
.y16a{bottom:1016.970000px;}
.y16b{bottom:1020.210000px;}
.y13{bottom:1020.750000px;}
.y169{bottom:1023.990000px;}
.y16c{bottom:1026.690000px;}
.y66{bottom:1027.050000px;}
.yed{bottom:1034.070000px;}
.y3a{bottom:1040.190000px;}
.y9a{bottom:1043.715000px;}
.y12{bottom:1044.150000px;}
.y65{bottom:1050.810000px;}
.y128{bottom:1060.170000px;}
.yec{bottom:1061.970000px;}
.y39{bottom:1063.950000px;}
.y11{bottom:1067.910000px;}
.y129{bottom:1072.514919px;}
.yeb{bottom:1086.990000px;}
.y166{bottom:1089.690000px;}
.y10{bottom:1091.670000px;}
.y164{bottom:1094.370000px;}
.y163{bottom:1094.550000px;}
.yea{bottom:1114.890000px;}
.yf{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h41{height:12.420000px;}
.h34{height:13.680000px;}
.h37{height:13.680150px;}
.h35{height:13.860000px;}
.h40{height:15.300000px;}
.h38{height:17.820000px;}
.h55{height:18.360000px;}
.h42{height:19.440000px;}
.h56{height:20.700000px;}
.h12{height:21.780000px;}
.h14{height:21.816000px;}
.h13{height:21.960000px;}
.h1a{height:23.040000px;}
.h1b{height:23.076000px;}
.h19{height:23.220000px;}
.h29{height:31.500130px;}
.h8{height:33.120000px;}
.h32{height:43.225620px;}
.h22{height:43.279712px;}
.h47{height:43.658291px;}
.h49{height:43.680023px;}
.h50{height:43.867280px;}
.h53{height:43.889116px;}
.hf{height:44.460000px;}
.h10{height:46.445625px;}
.h17{height:47.160000px;}
.h3e{height:49.500808px;}
.h2d{height:49.500849px;}
.h25{height:49.500889px;}
.hd{height:50.484375px;}
.h3c{height:51.675374px;}
.h43{height:51.675455px;}
.hc{height:52.628906px;}
.h2c{height:52.740000px;}
.h45{height:53.999500px;}
.h4d{height:57.448353px;}
.h36{height:58.651172px;}
.h3a{height:59.551380px;}
.h2e{height:59.551400px;}
.h1f{height:59.625881px;}
.hb{height:62.261719px;}
.h15{height:63.576000px;}
.h11{height:65.010937px;}
.h9{height:65.884219px;}
.h18{height:67.824844px;}
.h30{height:69.913629px;}
.h21{height:70.001117px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h4e{height:71.046978px;}
.h28{height:71.280000px;}
.h27{height:71.316000px;}
.h24{height:71.460000px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h2b{height:73.528205px;}
.h3d{height:73.869959px;}
.he{height:74.004654px;}
.h33{height:74.041370px;}
.h2f{height:74.078225px;}
.h4f{height:74.116946px;}
.h23{height:74.134025px;}
.h16{height:74.704922px;}
.h48{height:74.883173px;}
.h26{height:75.177202px;}
.h54{height:75.279086px;}
.h3f{height:75.324935px;}
.h1c{height:79.236000px;}
.h4{height:82.635820px;}
.h4b{height:93.940874px;}
.h51{height:94.396830px;}
.h4c{height:97.829470px;}
.h52{height:98.143578px;}
.h2a{height:104.080574px;}
.h31{height:104.796321px;}
.h3b{height:104.933161px;}
.h20{height:105.064473px;}
.h46{height:106.204319px;}
.h1d{height:107.496000px;}
.h2{height:109.800000px;}
.h44{height:112.424063px;}
.h39{height:118.116000px;}
.h1e{height:119.016000px;}
.h5{height:129.250898px;}
.h4a{height:139.102751px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w25{width:22.499600px;}
.w43{width:25.874084px;}
.w27{width:25.949764px;}
.w24{width:28.050006px;}
.w32{width:28.080000px;}
.w40{width:29.340000px;}
.w2d{width:29.520000px;}
.w29{width:30.060000px;}
.w3d{width:30.096000px;}
.w2e{width:30.240000px;}
.w48{width:33.120000px;}
.w3c{width:34.874090px;}
.w42{width:34.874172px;}
.w3b{width:34.874485px;}
.w3e{width:38.880000px;}
.w3f{width:40.176000px;}
.w4d{width:40.860000px;}
.w30{width:41.760000px;}
.w4b{width:41.796000px;}
.w4a{width:42.300000px;}
.w26{width:42.824799px;}
.w44{width:42.824830px;}
.w2b{width:42.840000px;}
.w2f{width:48.060000px;}
.w49{width:48.096000px;}
.w4c{width:50.040000px;}
.w6{width:50.400000px;}
.w31{width:51.660000px;}
.w2a{width:51.840000px;}
.w2c{width:51.876000px;}
.w41{width:53.460000px;}
.w47{width:57.096000px;}
.w4{width:61.590000px;}
.w11{width:63.000000px;}
.wf{width:73.620000px;}
.w10{width:73.656000px;}
.w35{width:79.020000px;}
.we{width:79.776000px;}
.w34{width:82.656000px;}
.w38{width:82.980000px;}
.w37{width:83.376000px;}
.w1d{width:84.276000px;}
.w12{width:84.420000px;}
.w36{width:85.320000px;}
.w39{width:86.796000px;}
.w33{width:89.460000px;}
.w1c{width:92.160000px;}
.wa{width:92.340000px;}
.w17{width:94.860000px;}
.w1e{width:97.740000px;}
.w20{width:98.280000px;}
.w1f{width:98.316000px;}
.w21{width:98.676000px;}
.w19{width:105.480000px;}
.w18{width:105.516000px;}
.w15{width:105.660000px;}
.w3a{width:106.874391px;}
.w22{width:106.950073px;}
.wb{width:107.640000px;}
.w45{width:114.675094px;}
.w16{width:116.136000px;}
.w23{width:122.220000px;}
.w1a{width:125.676000px;}
.w2{width:125.856000px;}
.w13{width:145.656000px;}
.wd{width:158.790000px;}
.w28{width:195.900039px;}
.w46{width:221.556165px;}
.wc{width:377.535000px;}
.w1b{width:439.275000px;}
.w14{width:530.895000px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x46{left:3.896591px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x3e{left:10.800000px;}
.x76{left:13.680000px;}
.x4e{left:15.627352px;}
.x1d{left:17.640000px;}
.x7{left:19.800000px;}
.x26{left:21.060000px;}
.x55{left:22.533896px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x78{left:31.320000px;}
.x23{left:32.580000px;}
.x47{left:34.111869px;}
.x21{left:35.685000px;}
.x54{left:36.894000px;}
.x28{left:37.980000px;}
.x50{left:39.954000px;}
.x6a{left:41.754000px;}
.x38{left:43.560000px;}
.x2b{left:45.540000px;}
.x2a{left:48.240000px;}
.x37{left:49.860000px;}
.x29{left:50.940000px;}
.x77{left:52.380000px;}
.x51{left:54.000000px;}
.x35{left:55.440000px;}
.x6e{left:57.630000px;}
.x52{left:59.040000px;}
.x3c{left:60.840000px;}
.x6c{left:62.280000px;}
.x7d{left:63.446692px;}
.x6b{left:65.880000px;}
.x3a{left:67.674000px;}
.x39{left:69.834000px;}
.x5{left:71.994000px;}
.x4c{left:73.080000px;}
.x4f{left:75.060000px;}
.x2c{left:76.860000px;}
.x6d{left:78.480000px;}
.x48{left:79.777613px;}
.x4b{left:81.000000px;}
.x58{left:85.016257px;}
.x80{left:92.038656px;}
.x7c{left:93.549246px;}
.x82{left:106.904443px;}
.x4a{left:114.480000px;}
.x1f{left:121.905000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x3f{left:135.576000px;}
.x31{left:149.256000px;}
.x1b{left:159.689987px;}
.x1c{left:161.130000px;}
.x57{left:168.800405px;}
.x1a{left:180.749987px;}
.x13{left:185.609987px;}
.x81{left:192.025722px;}
.x33{left:198.750000px;}
.x2d{left:206.129987px;}
.x3b{left:209.730000px;}
.x7f{left:212.265040px;}
.x63{left:215.490000px;}
.x40{left:228.630000px;}
.x14{left:231.689987px;}
.x1e{left:269.490000px;}
.x72{left:275.070000px;}
.x6f{left:284.790000px;}
.x5d{left:287.490000px;}
.x32{left:295.635000px;}
.x61{left:297.615000px;}
.x5a{left:299.235000px;}
.x41{left:313.635000px;}
.x19{left:333.074987px;}
.x22{left:349.995000px;}
.x70{left:361.515000px;}
.x73{left:364.035000px;}
.x64{left:378.615000px;}
.x60{left:385.095000px;}
.x16{left:389.234987px;}
.x3d{left:397.515000px;}
.x5e{left:398.955000px;}
.x34{left:402.015000px;}
.x18{left:409.754987px;}
.x42{left:412.275000px;}
.x7e{left:413.714987px;}
.x17{left:420.194987px;}
.x24{left:424.515000px;}
.x15{left:435.134987px;}
.x30{left:436.934987px;}
.x84{left:441.975000px;}
.x71{left:444.315000px;}
.x2e{left:450.794987px;}
.x74{left:453.675000px;}
.x65{left:464.655000px;}
.x7b{left:489.494987px;}
.x5b{left:495.105000px;}
.x25{left:498.885000px;}
.x43{left:511.305000px;}
.x36{left:519.045000px;}
.x66{left:548.745000px;}
.x27{left:562.605000px;}
.x5f{left:586.185000px;}
.x5c{left:595.005000px;}
.x75{left:606.705000px;}
.x59{left:608.324987px;}
.x44{left:610.305000px;}
.x12{left:614.444987px;}
.xb{left:619.305000px;}
.x83{left:621.104987px;}
.x67{left:632.445000px;}
.x20{left:647.745000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.x49{left:709.890000px;}
.x45{left:717.389919px;}
.x69{left:720.150000px;}
.xf{left:721.590000px;}
.x68{left:727.665000px;}
.x10{left:738.870000px;}
.x4d{left:756.839919px;}
.x56{left:757.889919px;}
.x53{left:759.539919px;}
.x2f{left:763.529987px;}
.x7a{left:768.165000px;}
.x79{left:769.739919px;}
.x8{left:831.390000px;}
.x62{left:840.029987px;}
@media print{
.v9{vertical-align:-42.585099pt;}
.v7{vertical-align:-16.870186pt;}
.vf{vertical-align:-15.806659pt;}
.v1{vertical-align:-5.120000pt;}
.v8{vertical-align:-1.199905pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.vb{vertical-align:15.731354pt;}
.vd{vertical-align:16.940179pt;}
.v6{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.v5{vertical-align:26.240000pt;}
.v3{vertical-align:29.440000pt;}
.va{vertical-align:37.120000pt;}
.ve{vertical-align:48.132842pt;}
.vc{vertical-align:84.839520pt;}
.ls2b{letter-spacing:-1.920000pt;}
.ls29{letter-spacing:-1.472000pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.067095pt;}
.ls36{letter-spacing:-0.066206pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.067416pt;}
.ls17{letter-spacing:0.099200pt;}
.ls2{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.271360pt;}
.ls28{letter-spacing:0.278933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.335477pt;}
.ls23{letter-spacing:0.380160pt;}
.ls38{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.396927pt;}
.ls43{letter-spacing:0.404745pt;}
.ls33{letter-spacing:0.471645pt;}
.ls22{letter-spacing:0.554240pt;}
.ls25{letter-spacing:0.640000pt;}
.ls37{letter-spacing:1.209213pt;}
.ls10{letter-spacing:1.280000pt;}
.ls41{letter-spacing:1.340531pt;}
.ls32{letter-spacing:1.342208pt;}
.ls35{letter-spacing:1.809206pt;}
.ls1d{letter-spacing:1.898667pt;}
.ls3a{letter-spacing:2.560000pt;}
.lse{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.840000pt;}
.lsb{letter-spacing:3.968000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:7.680000pt;}
.ls19{letter-spacing:8.320000pt;}
.ls31{letter-spacing:8.960000pt;}
.ls49{letter-spacing:9.088000pt;}
.ls30{letter-spacing:10.240000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls3d{letter-spacing:11.520000pt;}
.ls1e{letter-spacing:12.800000pt;}
.ls1c{letter-spacing:14.080000pt;}
.ls4b{letter-spacing:16.640000pt;}
.ls3e{letter-spacing:17.920000pt;}
.ls39{letter-spacing:19.200000pt;}
.ls1f{letter-spacing:23.040000pt;}
.ls3c{letter-spacing:24.960000pt;}
.ls11{letter-spacing:27.040000pt;}
.ls3f{letter-spacing:27.520000pt;}
.lsd{letter-spacing:28.160000pt;}
.ls4d{letter-spacing:28.320000pt;}
.ls20{letter-spacing:28.800000pt;}
.lsc{letter-spacing:30.080000pt;}
.ls2f{letter-spacing:31.457539pt;}
.ls44{letter-spacing:37.760000pt;}
.ls45{letter-spacing:43.611323pt;}
.ls4c{letter-spacing:44.160000pt;}
.ls3{letter-spacing:48.800000pt;}
.ls4a{letter-spacing:55.040000pt;}
.ls4{letter-spacing:91.520000pt;}
.ls40{letter-spacing:116.665345pt;}
.ls2e{letter-spacing:116.811338pt;}
.ls46{letter-spacing:154.151744pt;}
.lsa{letter-spacing:168.106667pt;}
.ls47{letter-spacing:170.697386pt;}
.ws15{word-spacing:-37.120000pt;}
.ws20{word-spacing:-36.833610pt;}
.ws1{word-spacing:-21.280000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws3{word-spacing:-15.616000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws1c{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.313067pt;}
.wse{word-spacing:-13.674667pt;}
.ws12{word-spacing:-13.585813pt;}
.ws11{word-spacing:-13.306880pt;}
.ws23{word-spacing:-13.280000pt;}
.ws24{word-spacing:-12.960000pt;}
.ws9{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.400000pt;}
.ws30{word-spacing:-10.004941pt;}
.ws29{word-spacing:-9.823086pt;}
.ws17{word-spacing:-9.280000pt;}
.ws14{word-spacing:-8.101120pt;}
.ws32{word-spacing:-0.107167pt;}
.ws27{word-spacing:-0.068221pt;}
.ws34{word-spacing:-0.068180pt;}
.ws1b{word-spacing:-0.068088pt;}
.ws2b{word-spacing:-0.067855pt;}
.ws1a{word-spacing:-0.067176pt;}
.ws1e{word-spacing:-0.067092pt;}
.ws26{word-spacing:-0.066904pt;}
.ws31{word-spacing:-0.039750pt;}
.ws2c{word-spacing:-0.039561pt;}
.ws19{word-spacing:-0.039218pt;}
.ws22{word-spacing:-0.039169pt;}
.ws1d{word-spacing:-0.000886pt;}
.ws6{word-spacing:0.000000pt;}
.ws1f{word-spacing:15.331500pt;}
.ws28{word-spacing:34.181676pt;}
.ws21{word-spacing:86.393856pt;}
.ws2e{word-spacing:86.781889pt;}
.ws25{word-spacing:87.819261pt;}
.ws18{word-spacing:87.929157pt;}
.ws35{word-spacing:155.145202pt;}
.ws2a{word-spacing:155.791988pt;}
.ws2d{word-spacing:194.364373pt;}
.ws2f{word-spacing:199.428363pt;}
.ws33{word-spacing:578.981156pt;}
._4d{margin-left:-506.926450pt;}
._4c{margin-left:-470.523135pt;}
._4a{margin-left:-287.233566pt;}
._33{margin-left:-267.917304pt;}
._3a{margin-left:-265.995706pt;}
._54{margin-left:-263.247931pt;}
._51{margin-left:-251.640468pt;}
._53{margin-left:-237.110392pt;}
._50{margin-left:-235.741526pt;}
._52{margin-left:-234.842747pt;}
._34{margin-left:-233.844616pt;}
._3b{margin-left:-231.828814pt;}
._39{margin-left:-177.485358pt;}
._37{margin-left:-116.963752pt;}
._4f{margin-left:-92.116082pt;}
._4b{margin-left:-91.130487pt;}
._48{margin-left:-82.788529pt;}
._49{margin-left:-81.450913pt;}
._47{margin-left:-79.198379pt;}
._35{margin-left:-50.895326pt;}
._36{margin-left:-49.650706pt;}
._38{margin-left:-48.672202pt;}
._31{margin-left:-22.963627pt;}
._1a{margin-left:-1.966080pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.198080pt;}
._19{width:2.353067pt;}
._4{width:3.571200pt;}
._3{width:4.608000pt;}
._25{width:5.952000pt;}
._f{width:7.744000pt;}
._10{width:8.768000pt;}
._18{width:9.984000pt;}
._1f{width:11.392000pt;}
._1d{width:12.352000pt;}
._28{width:13.952000pt;}
._44{width:14.852693pt;}
._b{width:17.408000pt;}
._c{width:18.368000pt;}
._d{width:19.520000pt;}
._1b{width:21.280000pt;}
._21{width:22.272000pt;}
._23{width:23.424000pt;}
._17{width:25.216000pt;}
._16{width:26.112000pt;}
._24{width:27.182080pt;}
._15{width:28.160000pt;}
._22{width:29.888000pt;}
._13{width:34.918400pt;}
._11{width:36.672000pt;}
._12{width:37.760000pt;}
._e{width:39.680000pt;}
._46{width:41.792000pt;}
._45{width:42.752000pt;}
._58{width:43.712000pt;}
._59{width:45.903787pt;}
._1c{width:47.086080pt;}
._2{width:48.593920pt;}
._57{width:54.208000pt;}
._14{width:55.360000pt;}
._2e{width:56.721920pt;}
._7{width:60.224000pt;}
._a{width:61.824000pt;}
._42{width:72.320000pt;}
._43{width:73.408000pt;}
._30{width:79.850667pt;}
._3e{width:81.654613pt;}
._9{width:90.609920pt;}
._8{width:91.648000pt;}
._40{width:97.706667pt;}
._5{width:98.944000pt;}
._6{width:100.032000pt;}
._41{width:101.104213pt;}
._3f{width:103.610453pt;}
._2f{width:124.426667pt;}
._3d{width:145.702400pt;}
._3c{width:147.008000pt;}
._4e{width:171.105116pt;}
._27{width:173.440000pt;}
._1e{width:174.461867pt;}
._55{width:195.969141pt;}
._2a{width:344.437973pt;}
._2d{width:356.778667pt;}
._56{width:433.213867pt;}
._32{width:471.257173pt;}
._26{width:521.120000pt;}
._20{width:643.914667pt;}
._2c{width:831.946667pt;}
._2b{width:895.802453pt;}
._29{width:897.183147pt;}
.fs6{font-size:37.120000pt;}
.fsc{font-size:38.834146pt;}
.fs10{font-size:39.168661pt;}
.fs9{font-size:39.217676pt;}
.fs16{font-size:39.560724pt;}
.fs1a{font-size:39.750098pt;}
.fs5{font-size:42.880000pt;}
.fs11{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.627184pt;}
.fs13{font-size:66.903561pt;}
.fse{font-size:67.092186pt;}
.fs8{font-size:67.176144pt;}
.fs17{font-size:67.854981pt;}
.fsa{font-size:68.087523pt;}
.fs18{font-size:68.179798pt;}
.fs14{font-size:68.221323pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fsb{font-size:99.880286pt;}
.fsf{font-size:100.567149pt;}
.fs12{font-size:100.698466pt;}
.fs7{font-size:100.824478pt;}
.fs15{font-size:101.918325pt;}
.fs19{font-size:102.272482pt;}
.fs3{font-size:117.120000pt;}
.y124{bottom:-3.360000pt;}
.ydb{bottom:-2.240000pt;}
.ydd{bottom:-2.080000pt;}
.y165{bottom:-1.120000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:0.160000pt;}
.yde{bottom:0.320000pt;}
.y122{bottom:1.600000pt;}
.y64{bottom:2.560000pt;}
.y146{bottom:3.361313pt;}
.y13f{bottom:3.361338pt;}
.y147{bottom:3.361348pt;}
.y11b{bottom:3.548351pt;}
.yba{bottom:3.582250pt;}
.ya3{bottom:3.582279pt;}
.y133{bottom:3.582281pt;}
.ya8{bottom:3.582284pt;}
.ye9{bottom:3.840000pt;}
.y167{bottom:4.320000pt;}
.y14a{bottom:4.626944pt;}
.yc5{bottom:4.643454pt;}
.y14e{bottom:4.829611pt;}
.y10b{bottom:4.941924pt;}
.y9b{bottom:4.948091pt;}
.yc3{bottom:4.975045pt;}
.y127{bottom:5.280000pt;}
.yb4{bottom:6.033517pt;}
.y5c{bottom:6.080000pt;}
.y114{bottom:6.230555pt;}
.y12c{bottom:6.230581pt;}
.y5e{bottom:6.240000pt;}
.y168{bottom:6.400000pt;}
.y99{bottom:6.560000pt;}
.y77{bottom:6.720000pt;}
.y79{bottom:6.746667pt;}
.y5a{bottom:6.880000pt;}
.y74{bottom:7.520000pt;}
.y10f{bottom:8.822474pt;}
.y10d{bottom:8.822480pt;}
.y9d{bottom:8.833510pt;}
.yc7{bottom:8.855594pt;}
.yc2{bottom:8.855600pt;}
.yc0{bottom:8.955168pt;}
.yb5{bottom:9.900335pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.y143{bottom:15.394505pt;}
.y13d{bottom:15.394513pt;}
.y145{bottom:15.394545pt;}
.y8e{bottom:15.400000pt;}
.yc{bottom:15.680000pt;}
.y142{bottom:15.696734pt;}
.y13b{bottom:15.696766pt;}
.y5d{bottom:16.640000pt;}
.y14c{bottom:16.886158pt;}
.y7{bottom:18.400000pt;}
.ybc{bottom:18.880000pt;}
.yb8{bottom:19.360000pt;}
.y130{bottom:19.520000pt;}
.y13e{bottom:19.629570pt;}
.yb7{bottom:20.000000pt;}
.y149{bottom:20.837823pt;}
.y14f{bottom:21.142869pt;}
.ybf{bottom:22.122863pt;}
.y4{bottom:24.800000pt;}
.y93{bottom:25.960000pt;}
.y59{bottom:26.240000pt;}
.yae{bottom:27.040000pt;}
.y11d{bottom:27.194667pt;}
.ya5{bottom:27.200000pt;}
.yac{bottom:27.680000pt;}
.y11c{bottom:27.711951pt;}
.y134{bottom:27.712012pt;}
.ybb{bottom:27.778881pt;}
.ya4{bottom:27.778883pt;}
.ya9{bottom:27.778915pt;}
.yb2{bottom:27.778916pt;}
.y119{bottom:27.834667pt;}
.y98{bottom:27.840000pt;}
.y73{bottom:28.160000pt;}
.y12e{bottom:28.800000pt;}
.y116{bottom:28.960000pt;}
.y12d{bottom:29.959587pt;}
.y115{bottom:29.993702pt;}
.y10e{bottom:31.209748pt;}
.yc6{bottom:31.209765pt;}
.y9e{bottom:31.248795pt;}
.y10c{bottom:31.509320pt;}
.yc4{bottom:31.542167pt;}
.y9c{bottom:31.548737pt;}
.y14b{bottom:31.780466pt;}
.y131{bottom:32.320000pt;}
.yc1{bottom:32.769146pt;}
.y110{bottom:35.422845pt;}
.yc8{bottom:35.422862pt;}
.y9f{bottom:35.467163pt;}
.y8d{bottom:36.040000pt;}
.y13c{bottom:36.906635pt;}
.y144{bottom:36.906644pt;}
.y14d{bottom:38.502614pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y92{bottom:44.360000pt;}
.y109{bottom:48.520000pt;}
.y111{bottom:48.680000pt;}
.yb0{bottom:48.800000pt;}
.yab{bottom:48.840000pt;}
.y118{bottom:48.954667pt;}
.y97{bottom:48.960000pt;}
.ya0{bottom:49.120000pt;}
.y8c{bottom:56.680000pt;}
.y2{bottom:61.600000pt;}
.y91{bottom:62.760000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y96{bottom:70.080000pt;}
.ya{bottom:80.992000pt;}
.y90{bottom:81.160000pt;}
.y95{bottom:91.200000pt;}
.y117{bottom:114.592000pt;}
.y8a{bottom:115.552000pt;}
.y38{bottom:120.192000pt;}
.y162{bottom:120.672000pt;}
.y11a{bottom:125.813333pt;}
.y89{bottom:136.666667pt;}
.y125{bottom:137.466667pt;}
.y121{bottom:137.946667pt;}
.yd9{bottom:138.426667pt;}
.y161{bottom:141.306667pt;}
.y126{bottom:141.466667pt;}
.y37{bottom:145.146667pt;}
.y123{bottom:146.586667pt;}
.y88{bottom:161.466667pt;}
.y160{bottom:162.906667pt;}
.y63{bottom:163.706667pt;}
.yd8{bottom:164.186667pt;}
.y36{bottom:166.586667pt;}
.y112{bottom:178.746667pt;}
.y87{bottom:183.546667pt;}
.y62{bottom:183.866667pt;}
.y15f{bottom:184.026667pt;}
.yd7{bottom:186.426667pt;}
.y35{bottom:187.866667pt;}
.y113{bottom:189.013333pt;}
.y120{bottom:201.946667pt;}
.y61{bottom:203.866667pt;}
.y86{bottom:204.666667pt;}
.y15e{bottom:205.146667pt;}
.yd6{bottom:207.546667pt;}
.y11f{bottom:208.026667pt;}
.y11e{bottom:208.826667pt;}
.y34{bottom:208.986667pt;}
.y60{bottom:224.026667pt;}
.y15d{bottom:226.266667pt;}
.yd5{bottom:228.666667pt;}
.y85{bottom:229.466667pt;}
.y33{bottom:230.106667pt;}
.y108{bottom:242.906667pt;}
.y5f{bottom:244.026667pt;}
.y15c{bottom:247.546667pt;}
.yd4{bottom:249.786667pt;}
.y32{bottom:251.266667pt;}
.y84{bottom:255.266667pt;}
.y58{bottom:264.066667pt;}
.y15b{bottom:268.706667pt;}
.y10a{bottom:270.346649pt;}
.yd3{bottom:271.106667pt;}
.y31{bottom:272.386667pt;}
.y83{bottom:277.506667pt;}
.y5b{bottom:284.226667pt;}
.y15a{bottom:289.826667pt;}
.yd2{bottom:292.226667pt;}
.y30{bottom:293.666667pt;}
.y82{bottom:298.626667pt;}
.y57{bottom:310.946667pt;}
.yd1{bottom:313.346667pt;}
.y2f{bottom:314.786667pt;}
.y81{bottom:323.266667pt;}
.y56{bottom:332.066667pt;}
.y159{bottom:332.226667pt;}
.yd0{bottom:334.466667pt;}
.y2e{bottom:335.586667pt;}
.y80{bottom:350.146667pt;}
.y55{bottom:353.186667pt;}
.y158{bottom:353.346667pt;}
.y107{bottom:355.266667pt;}
.ycf{bottom:355.746667pt;}
.y2d{bottom:357.026667pt;}
.y54{bottom:374.306667pt;}
.y157{bottom:374.466667pt;}
.y7f{bottom:375.906667pt;}
.y106{bottom:376.386667pt;}
.yce{bottom:376.866667pt;}
.y2c{bottom:378.306667pt;}
.y53{bottom:395.586667pt;}
.y105{bottom:397.506667pt;}
.y7e{bottom:397.986667pt;}
.y2b{bottom:399.426667pt;}
.y156{bottom:416.386667pt;}
.y52{bottom:416.706667pt;}
.y104{bottom:418.786667pt;}
.ycd{bottom:419.106667pt;}
.y7d{bottom:419.266667pt;}
.y2a{bottom:420.546667pt;}
.y155{bottom:437.666667pt;}
.y51{bottom:437.826667pt;}
.y103{bottom:439.906667pt;}
.y7c{bottom:440.386667pt;}
.y29{bottom:441.666667pt;}
.y7b{bottom:455.586667pt;}
.y50{bottom:458.946667pt;}
.y154{bottom:459.106667pt;}
.y102{bottom:461.026667pt;}
.ycc{bottom:461.506667pt;}
.y28{bottom:462.946667pt;}
.y7a{bottom:476.866667pt;}
.y4f{bottom:480.226667pt;}
.y101{bottom:482.146667pt;}
.ycb{bottom:482.626667pt;}
.y27{bottom:484.066667pt;}
.y78{bottom:498.146667pt;}
.y4e{bottom:501.346667pt;}
.y100{bottom:503.453333pt;}
.yca{bottom:503.773333pt;}
.y26{bottom:505.213333pt;}
.y76{bottom:519.453333pt;}
.ybe{bottom:521.213297pt;}
.yc9{bottom:521.213333pt;}
.y153{bottom:522.333333pt;}
.y4d{bottom:522.493333pt;}
.yff{bottom:524.573333pt;}
.y25{bottom:526.333333pt;}
.y72{bottom:540.573333pt;}
.y4c{bottom:543.613333pt;}
.yfe{bottom:545.693333pt;}
.y24{bottom:547.613333pt;}
.y152{bottom:549.213333pt;}
.y75{bottom:561.853333pt;}
.y4b{bottom:564.893333pt;}
.yfd{bottom:566.813333pt;}
.y23{bottom:568.733333pt;}
.y151{bottom:575.453333pt;}
.ybd{bottom:580.733333pt;}
.y4a{bottom:586.013333pt;}
.yfc{bottom:587.933333pt;}
.y71{bottom:589.373333pt;}
.y22{bottom:589.853333pt;}
.y148{bottom:592.880000pt;}
.yb6{bottom:595.933333pt;}
.yb9{bottom:598.813297pt;}
.yb3{bottom:606.613297pt;}
.y49{bottom:607.133333pt;}
.yfb{bottom:609.213333pt;}
.y21{bottom:610.973333pt;}
.y150{bottom:612.893333pt;}
.y48{bottom:628.253333pt;}
.yfa{bottom:630.333333pt;}
.y20{bottom:631.933333pt;}
.y70{bottom:632.093333pt;}
.yaf{bottom:643.453333pt;}
.y141{bottom:646.613261pt;}
.y47{bottom:649.533333pt;}
.yf9{bottom:651.453333pt;}
.y1f{bottom:653.053333pt;}
.y6f{bottom:653.213333pt;}
.yb1{bottom:654.479928pt;}
.y140{bottom:665.373333pt;}
.y46{bottom:670.653333pt;}
.ye8{bottom:671.133333pt;}
.yf8{bottom:672.573333pt;}
.ye7{bottom:673.533333pt;}
.y6e{bottom:674.333333pt;}
.y1e{bottom:674.493333pt;}
.ye6{bottom:674.813333pt;}
.ye5{bottom:675.453333pt;}
.y45{bottom:691.773333pt;}
.yf7{bottom:693.853333pt;}
.y1d{bottom:695.613333pt;}
.y13a{bottom:697.346594pt;}
.yaa{bottom:707.613333pt;}
.y44{bottom:712.893333pt;}
.yf6{bottom:714.973333pt;}
.y139{bottom:716.093333pt;}
.y1c{bottom:716.733333pt;}
.yad{bottom:718.613261pt;}
.y8f{bottom:728.253333pt;}
.ye4{bottom:732.733333pt;}
.y43{bottom:734.173333pt;}
.yf5{bottom:736.093333pt;}
.y6d{bottom:737.853333pt;}
.y1b{bottom:738.013333pt;}
.ye3{bottom:738.333333pt;}
.ye2{bottom:739.133333pt;}
.y138{bottom:751.933333pt;}
.y8b{bottom:753.053333pt;}
.y42{bottom:755.333333pt;}
.yf4{bottom:757.253333pt;}
.y1a{bottom:759.173333pt;}
.ya6{bottom:771.653333pt;}
.y137{bottom:773.253333pt;}
.y41{bottom:776.453333pt;}
.yf3{bottom:778.533333pt;}
.y19{bottom:780.293333pt;}
.ya7{bottom:782.813261pt;}
.y6c{bottom:785.893333pt;}
.y136{bottom:794.373333pt;}
.y40{bottom:797.573333pt;}
.ye1{bottom:797.733333pt;}
.ydf{bottom:801.253333pt;}
.y18{bottom:801.413333pt;}
.yf2{bottom:803.333333pt;}
.y6b{bottom:807.173333pt;}
.y135{bottom:815.493333pt;}
.y3f{bottom:818.693333pt;}
.y17{bottom:822.693333pt;}
.y6a{bottom:828.293333pt;}
.yf1{bottom:829.093333pt;}
.y12f{bottom:830.693333pt;}
.y132{bottom:833.546594pt;}
.ya1{bottom:835.813333pt;}
.y3e{bottom:839.973333pt;}
.y16{bottom:843.493333pt;}
.ya2{bottom:846.946594pt;}
.y69{bottom:849.413333pt;}
.yf0{bottom:854.853333pt;}
.y3d{bottom:861.093333pt;}
.y15{bottom:864.933333pt;}
.ydc{bottom:867.013333pt;}
.yda{bottom:867.973333pt;}
.y68{bottom:870.533333pt;}
.yef{bottom:876.933333pt;}
.y12a{bottom:878.213333pt;}
.y3c{bottom:882.213333pt;}
.y14{bottom:885.733333pt;}
.y12b{bottom:888.213261pt;}
.y67{bottom:891.653333pt;}
.yee{bottom:898.053333pt;}
.y94{bottom:899.973333pt;}
.y3b{bottom:903.333333pt;}
.y16a{bottom:903.973333pt;}
.y16b{bottom:906.853333pt;}
.y13{bottom:907.333333pt;}
.y169{bottom:910.213333pt;}
.y16c{bottom:912.613333pt;}
.y66{bottom:912.933333pt;}
.yed{bottom:919.173333pt;}
.y3a{bottom:924.613333pt;}
.y9a{bottom:927.746667pt;}
.y12{bottom:928.133333pt;}
.y65{bottom:934.053333pt;}
.y128{bottom:942.373333pt;}
.yec{bottom:943.973333pt;}
.y39{bottom:945.733333pt;}
.y11{bottom:949.253333pt;}
.y129{bottom:953.346594pt;}
.yeb{bottom:966.213333pt;}
.y166{bottom:968.613333pt;}
.y10{bottom:970.373333pt;}
.y164{bottom:972.773333pt;}
.y163{bottom:972.933333pt;}
.yea{bottom:991.013333pt;}
.yf{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h41{height:11.040000pt;}
.h34{height:12.160000pt;}
.h37{height:12.160133pt;}
.h35{height:12.320000pt;}
.h40{height:13.600000pt;}
.h38{height:15.840000pt;}
.h55{height:16.320000pt;}
.h42{height:17.280000pt;}
.h56{height:18.400000pt;}
.h12{height:19.360000pt;}
.h14{height:19.392000pt;}
.h13{height:19.520000pt;}
.h1a{height:20.480000pt;}
.h1b{height:20.512000pt;}
.h19{height:20.640000pt;}
.h29{height:28.000116pt;}
.h8{height:29.440000pt;}
.h32{height:38.422773pt;}
.h22{height:38.470855pt;}
.h47{height:38.807370pt;}
.h49{height:38.826687pt;}
.h50{height:38.993138pt;}
.h53{height:39.012547pt;}
.hf{height:39.520000pt;}
.h10{height:41.285000pt;}
.h17{height:41.920000pt;}
.h3e{height:44.000718pt;}
.h2d{height:44.000754pt;}
.h25{height:44.000791pt;}
.hd{height:44.875000pt;}
.h3c{height:45.933665pt;}
.h43{height:45.933738pt;}
.hc{height:46.781250pt;}
.h2c{height:46.880000pt;}
.h45{height:47.999556pt;}
.h4d{height:51.065203pt;}
.h36{height:52.134375pt;}
.h3a{height:52.934560pt;}
.h2e{height:52.934578pt;}
.h1f{height:53.000783pt;}
.hb{height:55.343750pt;}
.h15{height:56.512000pt;}
.h11{height:57.787500pt;}
.h9{height:58.563750pt;}
.h18{height:60.288750pt;}
.h30{height:62.145448pt;}
.h21{height:62.223215pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4e{height:63.152869pt;}
.h28{height:63.360000pt;}
.h27{height:63.392000pt;}
.h24{height:63.520000pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h2b{height:65.358405pt;}
.h3d{height:65.662186pt;}
.he{height:65.781915pt;}
.h33{height:65.814552pt;}
.h2f{height:65.847311pt;}
.h4f{height:65.881730pt;}
.h23{height:65.896911pt;}
.h16{height:66.404375pt;}
.h48{height:66.562821pt;}
.h26{height:66.824180pt;}
.h54{height:66.914743pt;}
.h3f{height:66.955497pt;}
.h1c{height:70.432000pt;}
.h4{height:73.454062pt;}
.h4b{height:83.502999pt;}
.h51{height:83.908293pt;}
.h4c{height:86.959529pt;}
.h52{height:87.238736pt;}
.h2a{height:92.516065pt;}
.h31{height:93.152286pt;}
.h3b{height:93.273921pt;}
.h20{height:93.390642pt;}
.h46{height:94.403839pt;}
.h1d{height:95.552000pt;}
.h2{height:97.600000pt;}
.h44{height:99.932500pt;}
.h39{height:104.992000pt;}
.h1e{height:105.792000pt;}
.h5{height:114.889687pt;}
.h4a{height:123.646890pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w25{width:19.999644pt;}
.w43{width:22.999186pt;}
.w27{width:23.066457pt;}
.w24{width:24.933339pt;}
.w32{width:24.960000pt;}
.w40{width:26.080000pt;}
.w2d{width:26.240000pt;}
.w29{width:26.720000pt;}
.w3d{width:26.752000pt;}
.w2e{width:26.880000pt;}
.w48{width:29.440000pt;}
.w3c{width:30.999191pt;}
.w42{width:30.999264pt;}
.w3b{width:30.999542pt;}
.w3e{width:34.560000pt;}
.w3f{width:35.712000pt;}
.w4d{width:36.320000pt;}
.w30{width:37.120000pt;}
.w4b{width:37.152000pt;}
.w4a{width:37.600000pt;}
.w26{width:38.066488pt;}
.w44{width:38.066515pt;}
.w2b{width:38.080000pt;}
.w2f{width:42.720000pt;}
.w49{width:42.752000pt;}
.w4c{width:44.480000pt;}
.w6{width:44.800000pt;}
.w31{width:45.920000pt;}
.w2a{width:46.080000pt;}
.w2c{width:46.112000pt;}
.w41{width:47.520000pt;}
.w47{width:50.752000pt;}
.w4{width:54.746667pt;}
.w11{width:56.000000pt;}
.wf{width:65.440000pt;}
.w10{width:65.472000pt;}
.w35{width:70.240000pt;}
.we{width:70.912000pt;}
.w34{width:73.472000pt;}
.w38{width:73.760000pt;}
.w37{width:74.112000pt;}
.w1d{width:74.912000pt;}
.w12{width:75.040000pt;}
.w36{width:75.840000pt;}
.w39{width:77.152000pt;}
.w33{width:79.520000pt;}
.w1c{width:81.920000pt;}
.wa{width:82.080000pt;}
.w17{width:84.320000pt;}
.w1e{width:86.880000pt;}
.w20{width:87.360000pt;}
.w1f{width:87.392000pt;}
.w21{width:87.712000pt;}
.w19{width:93.760000pt;}
.w18{width:93.792000pt;}
.w15{width:93.920000pt;}
.w3a{width:94.999459pt;}
.w22{width:95.066731pt;}
.wb{width:95.680000pt;}
.w45{width:101.933417pt;}
.w16{width:103.232000pt;}
.w23{width:108.640000pt;}
.w1a{width:111.712000pt;}
.w2{width:111.872000pt;}
.w13{width:129.472000pt;}
.wd{width:141.146667pt;}
.w28{width:174.133368pt;}
.w46{width:196.938814pt;}
.wc{width:335.586667pt;}
.w1b{width:390.466667pt;}
.w14{width:471.906667pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x46{left:3.463636pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x3e{left:9.600000pt;}
.x76{left:12.160000pt;}
.x4e{left:13.890980pt;}
.x1d{left:15.680000pt;}
.x7{left:17.600000pt;}
.x26{left:18.720000pt;}
.x55{left:20.030129pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x78{left:27.840000pt;}
.x23{left:28.960000pt;}
.x47{left:30.321662pt;}
.x21{left:31.720000pt;}
.x54{left:32.794667pt;}
.x28{left:33.760000pt;}
.x50{left:35.514667pt;}
.x6a{left:37.114667pt;}
.x38{left:38.720000pt;}
.x2b{left:40.480000pt;}
.x2a{left:42.880000pt;}
.x37{left:44.320000pt;}
.x29{left:45.280000pt;}
.x77{left:46.560000pt;}
.x51{left:48.000000pt;}
.x35{left:49.280000pt;}
.x6e{left:51.226667pt;}
.x52{left:52.480000pt;}
.x3c{left:54.080000pt;}
.x6c{left:55.360000pt;}
.x7d{left:56.397059pt;}
.x6b{left:58.560000pt;}
.x3a{left:60.154667pt;}
.x39{left:62.074667pt;}
.x5{left:63.994667pt;}
.x4c{left:64.960000pt;}
.x4f{left:66.720000pt;}
.x2c{left:68.320000pt;}
.x6d{left:69.760000pt;}
.x48{left:70.913434pt;}
.x4b{left:72.000000pt;}
.x58{left:75.570006pt;}
.x80{left:81.812139pt;}
.x7c{left:83.154886pt;}
.x82{left:95.026172pt;}
.x4a{left:101.760000pt;}
.x1f{left:108.360000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x3f{left:120.512000pt;}
.x31{left:132.672000pt;}
.x1b{left:141.946655pt;}
.x1c{left:143.226667pt;}
.x57{left:150.044804pt;}
.x1a{left:160.666655pt;}
.x13{left:164.986655pt;}
.x81{left:170.689530pt;}
.x33{left:176.666667pt;}
.x2d{left:183.226655pt;}
.x3b{left:186.426667pt;}
.x7f{left:188.680035pt;}
.x63{left:191.546667pt;}
.x40{left:203.226667pt;}
.x14{left:205.946655pt;}
.x1e{left:239.546667pt;}
.x72{left:244.506667pt;}
.x6f{left:253.146667pt;}
.x5d{left:255.546667pt;}
.x32{left:262.786667pt;}
.x61{left:264.546667pt;}
.x5a{left:265.986667pt;}
.x41{left:278.786667pt;}
.x19{left:296.066655pt;}
.x22{left:311.106667pt;}
.x70{left:321.346667pt;}
.x73{left:323.586667pt;}
.x64{left:336.546667pt;}
.x60{left:342.306667pt;}
.x16{left:345.986655pt;}
.x3d{left:353.346667pt;}
.x5e{left:354.626667pt;}
.x34{left:357.346667pt;}
.x18{left:364.226655pt;}
.x42{left:366.466667pt;}
.x7e{left:367.746655pt;}
.x17{left:373.506655pt;}
.x24{left:377.346667pt;}
.x15{left:386.786655pt;}
.x30{left:388.386655pt;}
.x84{left:392.866667pt;}
.x71{left:394.946667pt;}
.x2e{left:400.706655pt;}
.x74{left:403.266667pt;}
.x65{left:413.026667pt;}
.x7b{left:435.106655pt;}
.x5b{left:440.093333pt;}
.x25{left:443.453333pt;}
.x43{left:454.493333pt;}
.x36{left:461.373333pt;}
.x66{left:487.773333pt;}
.x27{left:500.093333pt;}
.x5f{left:521.053333pt;}
.x5c{left:528.893333pt;}
.x75{left:539.293333pt;}
.x59{left:540.733322pt;}
.x44{left:542.493333pt;}
.x12{left:546.173322pt;}
.xb{left:550.493333pt;}
.x83{left:552.093322pt;}
.x67{left:562.173333pt;}
.x20{left:575.773333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.x49{left:631.013333pt;}
.x45{left:637.679928pt;}
.x69{left:640.133333pt;}
.xf{left:641.413333pt;}
.x68{left:646.813333pt;}
.x10{left:656.773333pt;}
.x4d{left:672.746594pt;}
.x56{left:673.679928pt;}
.x53{left:675.146594pt;}
.x2f{left:678.693322pt;}
.x7a{left:682.813333pt;}
.x79{left:684.213261pt;}
.x8{left:739.013333pt;}
.x62{left:746.693322pt;}
}




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