
    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_456c6289da9992c7d622c9ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906738;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_a0c5a5f1ed000e317ea0e0d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_76a05f208ab6e41b77a2cb3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7de54b70aa51d27b2a92452d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_8ae63c72608a74bdc721f776.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_4682ac1659bb8c428560c33e.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_612e9331ee5145bf8364012a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b7053aae9aa69a82fcc32ac0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_a22c164f99d3fbe375a48f35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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_b00070a40a444d19fd1ef22a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.909180;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_91393a0eb2d9f671ec8d896b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7dbb25f967685e9f4e0edfad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.766602;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_7af699ac7c40d81054e8ede1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_27b955bfb6c59a7f048f5240.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m4{transform:matrix(0.237604,0.000000,-0.079194,0.237125,0,0);-ms-transform:matrix(0.237604,0.000000,-0.079194,0.237125,0,0);-webkit-transform:matrix(0.237604,0.000000,-0.079194,0.237125,0,0);}
.m9{transform:matrix(0.237667,0.000000,-0.079215,0.237118,0,0);-ms-transform:matrix(0.237667,0.000000,-0.079215,0.237118,0,0);-webkit-transform:matrix(0.237667,0.000000,-0.079215,0.237118,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);}
.m1{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-187.920000px;}
.v10{vertical-align:-161.280000px;}
.v13{vertical-align:-69.840000px;}
.v12{vertical-align:-43.200000px;}
.v9{vertical-align:-26.640000px;}
.va{vertical-align:-23.040000px;}
.v8{vertical-align:-17.280000px;}
.v3{vertical-align:-13.586201px;}
.v6{vertical-align:-12.541108px;}
.v7{vertical-align:-10.920000px;}
.v2{vertical-align:-3.583174px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.583174px;}
.v1{vertical-align:10.800000px;}
.v4{vertical-align:13.586201px;}
.v17{vertical-align:17.280000px;}
.vc{vertical-align:18.720000px;}
.v18{vertical-align:28.260000px;}
.v14{vertical-align:29.520000px;}
.v16{vertical-align:37.440000px;}
.v15{vertical-align:54.720000px;}
.vb{vertical-align:66.240000px;}
.vd{vertical-align:70.560000px;}
.ve{vertical-align:133.200000px;}
.vf{vertical-align:155.520000px;}
.ls13{letter-spacing:-1.030162px;}
.ls60{letter-spacing:-0.473400px;}
.ls5b{letter-spacing:-0.446389px;}
.ls5f{letter-spacing:-0.396000px;}
.ls32{letter-spacing:-0.360000px;}
.ls56{letter-spacing:-0.331589px;}
.ls48{letter-spacing:-0.327600px;}
.ls5e{letter-spacing:-0.324000px;}
.ls4b{letter-spacing:-0.303749px;}
.ls1d{letter-spacing:-0.288000px;}
.ls5c{letter-spacing:-0.229800px;}
.ls21{letter-spacing:-0.226200px;}
.ls47{letter-spacing:-0.194400px;}
.ls51{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.168600px;}
.ls18{letter-spacing:-0.134369px;}
.ls33{letter-spacing:-0.115200px;}
.ls17{letter-spacing:-0.089579px;}
.ls5a{letter-spacing:-0.081162px;}
.ls62{letter-spacing:-0.072000px;}
.ls50{letter-spacing:-0.050400px;}
.ls6{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.022395px;}
.ls2{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.022395px;}
.ls41{letter-spacing:0.024480px;}
.ls61{letter-spacing:0.036600px;}
.ls1e{letter-spacing:0.041880px;}
.ls3d{letter-spacing:0.071952px;}
.ls8{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.076200px;}
.ls4d{letter-spacing:0.107928px;}
.ls19{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.123120px;}
.ls30{letter-spacing:0.129600px;}
.ls58{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.146160px;}
.ls16{letter-spacing:0.156764px;}
.ls49{letter-spacing:0.172800px;}
.ls4f{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.180066px;}
.ls52{letter-spacing:0.196565px;}
.ls54{letter-spacing:0.202904px;}
.ls3c{letter-spacing:0.215856px;}
.ls34{letter-spacing:0.230400px;}
.lsa{letter-spacing:0.246600px;}
.ls1f{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.289886px;}
.ls1a{letter-spacing:0.291600px;}
.ls4{letter-spacing:0.309600px;}
.ls7{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.338400px;}
.ls4e{letter-spacing:0.359760px;}
.ls35{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.360132px;}
.ls59{letter-spacing:0.365227px;}
.ls3{letter-spacing:0.382200px;}
.ls57{letter-spacing:0.393129px;}
.ls63{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.403107px;}
.ls9{letter-spacing:0.468000px;}
.ls36{letter-spacing:0.504000px;}
.ls46{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.955441px;}
.ls53{letter-spacing:1.043014px;}
.lsb{letter-spacing:3.658420px;}
.ls37{letter-spacing:3.722400px;}
.ls25{letter-spacing:3.758400px;}
.ls39{letter-spacing:3.780000px;}
.ls38{letter-spacing:3.842400px;}
.lsf{letter-spacing:4.247554px;}
.ls24{letter-spacing:4.478400px;}
.ls26{letter-spacing:4.680000px;}
.lse{letter-spacing:6.934934px;}
.ls55{letter-spacing:6.991257px;}
.ls45{letter-spacing:12.970800px;}
.ls42{letter-spacing:13.690800px;}
.ls1{letter-spacing:18.528480px;}
.ls0{letter-spacing:19.248480px;}
.lsc{letter-spacing:20.371836px;}
.lsd{letter-spacing:22.163423px;}
.ls5d{letter-spacing:23.004000px;}
.ls1b{letter-spacing:24.912000px;}
.ls3f{letter-spacing:26.762400px;}
.ls43{letter-spacing:27.482400px;}
.ls2a{letter-spacing:28.238400px;}
.ls10{letter-spacing:28.949058px;}
.ls2e{letter-spacing:29.988000px;}
.ls2c{letter-spacing:33.256800px;}
.ls2d{letter-spacing:33.976800px;}
.ls40{letter-spacing:52.638480px;}
.ls44{letter-spacing:53.358480px;}
.ls5{letter-spacing:102.312000px;}
.ls23{letter-spacing:120.765600px;}
.ls27{letter-spacing:147.288000px;}
.ls2f{letter-spacing:147.736800px;}
.ls28{letter-spacing:162.136800px;}
.ls2b{letter-spacing:162.316800px;}
.ls29{letter-spacing:240.616800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3b{word-spacing:-195.228000px;}
.ws3a{word-spacing:-195.084000px;}
.ws33{word-spacing:-194.724000px;}
.ws26{word-spacing:-152.144352px;}
.ws3f{word-spacing:-151.884720px;}
.ws31{word-spacing:-149.568000px;}
.ws35{word-spacing:-143.136000px;}
.ws34{word-spacing:-142.927200px;}
.ws38{word-spacing:-142.797600px;}
.ws37{word-spacing:-142.682400px;}
.ws36{word-spacing:-142.437600px;}
.ws32{word-spacing:-123.480000px;}
.ws39{word-spacing:-122.040000px;}
.ws4f{word-spacing:-121.457470px;}
.ws1f{word-spacing:-121.133670px;}
.ws40{word-spacing:-110.667600px;}
.ws44{word-spacing:-110.523600px;}
.ws41{word-spacing:-110.516400px;}
.ws2a{word-spacing:-110.343600px;}
.ws45{word-spacing:-110.293200px;}
.ws3d{word-spacing:-110.149200px;}
.ws3e{word-spacing:-110.016000px;}
.ws49{word-spacing:-99.595584px;}
.ws48{word-spacing:-99.246240px;}
.ws4a{word-spacing:-98.526240px;}
.ws4e{word-spacing:-98.406240px;}
.ws28{word-spacing:-98.180640px;}
.ws3c{word-spacing:-97.099200px;}
.ws4c{word-spacing:-96.732000px;}
.ws46{word-spacing:-92.714400px;}
.ws27{word-spacing:-89.154000px;}
.ws29{word-spacing:-88.621200px;}
.ws47{word-spacing:-83.055600px;}
.ws24{word-spacing:-60.006491px;}
.ws19{word-spacing:-55.628773px;}
.ws52{word-spacing:-50.401331px;}
.ws4{word-spacing:-37.913760px;}
.ws2{word-spacing:-27.174240px;}
.ws60{word-spacing:-24.440544px;}
.ws71{word-spacing:-24.408000px;}
.ws2c{word-spacing:-21.641760px;}
.ws4b{word-spacing:-21.060000px;}
.ws23{word-spacing:-18.117902px;}
.ws20{word-spacing:-16.952891px;}
.ws1b{word-spacing:-16.818522px;}
.ws18{word-spacing:-16.796127px;}
.ws1d{word-spacing:-16.773732px;}
.ws22{word-spacing:-16.661758px;}
.ws1c{word-spacing:-15.765965px;}
.ws50{word-spacing:-15.217793px;}
.ws4d{word-spacing:-15.135484px;}
.ws42{word-spacing:-13.865090px;}
.ws43{word-spacing:-13.850766px;}
.ws25{word-spacing:-12.078601px;}
.ws1e{word-spacing:-11.600525px;}
.ws1a{word-spacing:-11.197418px;}
.ws21{word-spacing:-11.107839px;}
.ws53{word-spacing:-10.510423px;}
.ws51{word-spacing:-10.145196px;}
.ws54{word-spacing:-10.064034px;}
.ws55{word-spacing:-9.698807px;}
.ws8{word-spacing:-3.552000px;}
.ws7{word-spacing:-3.060000px;}
.ws68{word-spacing:-2.628000px;}
.ws65{word-spacing:-2.616000px;}
.ws5{word-spacing:-2.484000px;}
.ws6a{word-spacing:-2.469984px;}
.wsc{word-spacing:-2.340000px;}
.wsa{word-spacing:-2.268000px;}
.ws61{word-spacing:-2.232000px;}
.ws12{word-spacing:-2.196000px;}
.ws13{word-spacing:-2.077920px;}
.ws10{word-spacing:-1.944000px;}
.ws66{word-spacing:-1.896000px;}
.wsf{word-spacing:-1.872000px;}
.ws6e{word-spacing:-1.788000px;}
.ws11{word-spacing:-1.692000px;}
.ws16{word-spacing:-1.647000px;}
.ws69{word-spacing:-1.583520px;}
.ws62{word-spacing:-1.464000px;}
.ws17{word-spacing:-1.286064px;}
.ws70{word-spacing:-1.248000px;}
.wsd{word-spacing:-1.212000px;}
.wsb{word-spacing:-1.116000px;}
.ws15{word-spacing:-1.104336px;}
.ws64{word-spacing:-0.900000px;}
.ws6f{word-spacing:-0.864000px;}
.ws14{word-spacing:-0.850104px;}
.ws72{word-spacing:-0.564000px;}
.ws6c{word-spacing:-0.519552px;}
.ws73{word-spacing:-0.468000px;}
.wse{word-spacing:-0.396000px;}
.ws6b{word-spacing:-0.176904px;}
.ws67{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.095760px;}
.ws9{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws6d{word-spacing:0.036000px;}
.ws6{word-spacing:0.144000px;}
.ws2e{word-spacing:0.175680px;}
.ws63{word-spacing:0.288000px;}
.ws56{word-spacing:10.152000px;}
.ws58{word-spacing:10.620000px;}
.ws5a{word-spacing:10.656000px;}
.ws5b{word-spacing:10.800000px;}
.ws57{word-spacing:10.872000px;}
.ws59{word-spacing:11.460000px;}
.ws2b{word-spacing:14.688000px;}
.ws30{word-spacing:21.453480px;}
.ws2d{word-spacing:22.173480px;}
.ws5e{word-spacing:23.583096px;}
.ws5f{word-spacing:23.717088px;}
.ws5c{word-spacing:23.869824px;}
.ws5d{word-spacing:25.069896px;}
.ws1{word-spacing:94.793400px;}
.ws3{word-spacing:94.867200px;}
._7{margin-left:-21.607200px;}
._6{margin-left:-20.391840px;}
._4{margin-left:-14.385600px;}
._8{margin-left:-11.429280px;}
._5{margin-left:-7.912080px;}
._3{margin-left:-5.754240px;}
._2{margin-left:-3.836160px;}
._1{margin-left:-2.637360px;}
._0{margin-left:-1.438560px;}
._9{width:1.440000px;}
._e{width:2.612731px;}
._14{width:4.500000px;}
._18{width:12.318048px;}
._17{width:13.762896px;}
._19{width:14.992709px;}
._13{width:17.311392px;}
._10{width:18.361152px;}
._1a{width:19.871280px;}
._1f{width:22.473360px;}
._c{width:23.562480px;}
._b{width:24.624000px;}
._d{width:25.625760px;}
._12{width:30.024000px;}
._15{width:45.036000px;}
._1e{width:50.022624px;}
._16{width:75.204000px;}
._11{width:404.459040px;}
._1c{width:743.527680px;}
._a{width:787.202400px;}
._1d{width:799.749360px;}
._1b{width:1122.343920px;}
._f{width:2591.482560px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:3.583174px;}
.fs20{font-size:35.976015px;}
.fs1c{font-size:37.968566px;}
.fs2c{font-size:40.580782px;}
.fs26{font-size:41.448675px;}
.fsc{font-size:44.789673px;}
.fs2b{font-size:47.073707px;}
.fs28{font-size:48.240000px;}
.fs12{font-size:48.314405px;}
.fsd{font-size:48.372846px;}
.fs1f{font-size:53.964022px;}
.fs19{font-size:54.019831px;}
.fs1b{font-size:56.952849px;}
.fs23{font-size:58.969418px;}
.fs1a{font-size:59.781946px;}
.fs29{font-size:60.871173px;}
.fs15{font-size:61.200000px;}
.fs25{font-size:62.173012px;}
.fs17{font-size:64.080000px;}
.fs24{font-size:65.259489px;}
.fs1e{font-size:66.195867px;}
.fsa{font-size:67.184509px;}
.fs2a{font-size:67.364098px;}
.fs21{font-size:71.952030px;}
.fs16{font-size:72.000000px;}
.fs2e{font-size:72.002832px;}
.fs1d{font-size:72.026441px;}
.fs10{font-size:72.471607px;}
.fs2d{font-size:74.668639px;}
.fs27{font-size:78.625891px;}
.fs18{font-size:79.200000px;}
.fsb{font-size:82.412998px;}
.fs4{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs22{font-size:84.458038px;}
.fs11{font-size:88.898505px;}
.fsf{font-size:89.579345px;}
.fs3{font-size:95.760000px;}
.fs13{font-size:96.628810px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.yb6{bottom:-0.014336px;}
.y102{bottom:-0.012223px;}
.y0{bottom:0.000000px;}
.y4d{bottom:0.000046px;}
.ya6{bottom:3.237842px;}
.ya4{bottom:3.237844px;}
.y86{bottom:3.241190px;}
.y90{bottom:3.271201px;}
.ya2{bottom:3.273818px;}
.ya0{bottom:3.273820px;}
.y9d{bottom:3.417723px;}
.y8a{bottom:3.421256px;}
.yc3{bottom:3.538165px;}
.ycd{bottom:3.570926px;}
.yc7{bottom:3.734730px;}
.y27{bottom:4.031076px;}
.y1f{bottom:4.031079px;}
.y21{bottom:4.031093px;}
.y29{bottom:4.031106px;}
.ye8{bottom:4.058078px;}
.y31{bottom:4.068401px;}
.y33{bottom:4.068430px;}
.y23{bottom:4.255025px;}
.y25{bottom:4.255054px;}
.ya9{bottom:4.317188px;}
.y98{bottom:4.321633px;}
.y59{bottom:4.348302px;}
.y51{bottom:4.348303px;}
.y53{bottom:4.348314px;}
.y5b{bottom:4.348324px;}
.yf1{bottom:4.463886px;}
.y55{bottom:4.589874px;}
.y57{bottom:4.589896px;}
.yef{bottom:4.666790px;}
.yd5{bottom:4.717604px;}
.y4f{bottom:5.374800px;}
.yf7{bottom:5.676237px;}
.yea{bottom:5.681310px;}
.y65{bottom:5.797740px;}
.ye3{bottom:5.884213px;}
.yf3{bottom:5.934939px;}
.y42{bottom:7.166376px;}
.y39{bottom:7.390323px;}
.y34{bottom:7.427648px;}
.y45{bottom:7.614272px;}
.y84{bottom:7.742842px;}
.ye4{bottom:7.913253px;}
.y83{bottom:8.283041px;}
.yc1{bottom:8.452283px;}
.yc0{bottom:9.041977px;}
.ye6{bottom:13.594562px;}
.yfe{bottom:17.948542px;}
.y7{bottom:18.288000px;}
.y16{bottom:20.988000px;}
.ye7{bottom:23.536854px;}
.y9b{bottom:89.652146px;}
.y101{bottom:93.959990px;}
.y99{bottom:105.455979px;}
.y9a{bottom:106.057209px;}
.yde{bottom:120.960000px;}
.ya8{bottom:127.437234px;}
.ya7{bottom:127.437236px;}
.y4e{bottom:135.409412px;}
.yb3{bottom:137.844000px;}
.ydd{bottom:142.560000px;}
.ya5{bottom:143.086800px;}
.ya3{bottom:143.086802px;}
.ydf{bottom:149.040000px;}
.ya1{bottom:158.556487px;}
.y9f{bottom:158.556489px;}
.y4c{bottom:160.938952px;}
.y4b{bottom:162.730541px;}
.y4a{bottom:162.730576px;}
.yb2{bottom:163.050000px;}
.ydc{bottom:164.160000px;}
.y6{bottom:164.700000px;}
.y9e{bottom:174.781670px;}
.y9c{bottom:174.781671px;}
.yfd{bottom:185.452798px;}
.y49{bottom:187.185702px;}
.y48{bottom:187.185737px;}
.ybc{bottom:190.690385px;}
.yb5{bottom:205.739980px;}
.y7c{bottom:206.430000px;}
.yfc{bottom:206.960612px;}
.y110{bottom:210.165000px;}
.y6e{bottom:210.675000px;}
.y47{bottom:211.372125px;}
.y46{bottom:211.372160px;}
.yd4{bottom:214.671332px;}
.y7f{bottom:222.184477px;}
.yfb{bottom:228.671331px;}
.y44{bottom:235.558548px;}
.y43{bottom:235.558583px;}
.yd3{bottom:236.686582px;}
.y97{bottom:244.152588px;}
.y76{bottom:247.890000px;}
.ye{bottom:247.965000px;}
.yfa{bottom:250.219726px;}
.y78{bottom:251.175000px;}
.yd2{bottom:258.505267px;}
.y6d{bottom:259.305000px;}
.y41{bottom:259.968920px;}
.y40{bottom:259.968955px;}
.y10f{bottom:260.565000px;}
.y96{bottom:264.319992px;}
.yf9{bottom:271.727541px;}
.yd1{bottom:280.363264px;}
.y3f{bottom:284.155343px;}
.y3e{bottom:284.155378px;}
.y95{bottom:284.307329px;}
.yb1{bottom:284.730000px;}
.yf8{bottom:293.235355px;}
.yd{bottom:301.965000px;}
.yd0{bottom:302.181949px;}
.y94{bottom:304.330680px;}
.y6c{bottom:307.905000px;}
.y3d{bottom:308.386556px;}
.y3c{bottom:308.386591px;}
.yb0{bottom:309.930000px;}
.y10e{bottom:310.965000px;}
.yf6{bottom:314.986654px;}
.ycf{bottom:324.197198px;}
.y93{bottom:324.318017px;}
.y73{bottom:331.890000px;}
.y3b{bottom:332.796927px;}
.y3a{bottom:332.796962px;}
.yf5{bottom:336.489396px;}
.y92{bottom:344.485421px;}
.yce{bottom:346.015883px;}
.yab{bottom:348.015000px;}
.yc{bottom:355.965000px;}
.y6b{bottom:356.505000px;}
.y38{bottom:356.983351px;}
.y37{bottom:356.983386px;}
.y64{bottom:357.008980px;}
.yf4{bottom:357.997211px;}
.y5{bottom:359.280000px;}
.y10d{bottom:361.410000px;}
.y91{bottom:364.472758px;}
.ydb{bottom:365.475000px;}
.y72{bottom:366.270000px;}
.y100{bottom:367.560000px;}
.ycc{bottom:367.839482px;}
.y81{bottom:369.641243px;}
.y77{bottom:369.720000px;}
.y75{bottom:377.070000px;}
.yf2{bottom:379.505026px;}
.y36{bottom:381.169774px;}
.y35{bottom:381.169809px;}
.y8f{bottom:384.464597px;}
.y80{bottom:386.567457px;}
.y63{bottom:386.722110px;}
.y62{bottom:386.722138px;}
.ycb{bottom:389.690927px;}
.y1c{bottom:390.165000px;}
.yda{bottom:390.675000px;}
.yf0{bottom:401.266470px;}
.ybe{bottom:403.509761px;}
.y8e{bottom:404.481946px;}
.y6a{bottom:405.105000px;}
.y32{bottom:405.580145px;}
.y30{bottom:405.580180px;}
.y74{bottom:406.590000px;}
.yb{bottom:409.965000px;}
.yaf{bottom:410.655000px;}
.yca{bottom:411.706177px;}
.y10c{bottom:411.810000px;}
.y61{bottom:412.860203px;}
.y60{bottom:412.860231px;}
.ybd{bottom:421.986845px;}
.yee{bottom:422.774285px;}
.y8d{bottom:424.649349px;}
.yba{bottom:428.730000px;}
.y2f{bottom:429.803893px;}
.y2e{bottom:429.803928px;}
.y107{bottom:430.350000px;}
.yc9{bottom:433.524862px;}
.yae{bottom:435.855000px;}
.y5f{bottom:438.949982px;}
.y5e{bottom:438.950009px;}
.y1b{bottom:440.565000px;}
.y14{bottom:442.005000px;}
.yed{bottom:444.282099px;}
.y8c{bottom:444.636687px;}
.ye1{bottom:447.538393px;}
.y69{bottom:453.750000px;}
.y2d{bottom:453.990316px;}
.y2c{bottom:453.990352px;}
.yc8{bottom:455.343546px;}
.yad{bottom:461.055000px;}
.y10b{bottom:462.210000px;}
.ya{bottom:464.010000px;}
.y8b{bottom:464.624024px;}
.y4{bottom:464.760000px;}
.ye0{bottom:465.191033px;}
.y5d{bottom:465.281332px;}
.y5c{bottom:465.281360px;}
.yec{bottom:465.823731px;}
.yc6{bottom:477.194992px;}
.y2b{bottom:478.400688px;}
.y2a{bottom:478.400723px;}
.y106{bottom:480.570000px;}
.yd9{bottom:482.010000px;}
.y89{bottom:484.641372px;}
.y70{bottom:485.175000px;}
.yac{bottom:486.255000px;}
.yeb{bottom:487.534450px;}
.y1a{bottom:490.965000px;}
.y79{bottom:491.010000px;}
.y71{bottom:491.295000px;}
.y5a{bottom:491.419425px;}
.y58{bottom:491.419453px;}
.y13{bottom:492.405000px;}
.yc5{bottom:499.210241px;}
.y6f{bottom:501.735000px;}
.y68{bottom:502.350000px;}
.y28{bottom:502.587111px;}
.y26{bottom:502.587146px;}
.y88{bottom:504.808776px;}
.yd8{bottom:507.210000px;}
.ye9{bottom:509.042264px;}
.y10a{bottom:512.610000px;}
.y56{bottom:517.509204px;}
.y54{bottom:517.509231px;}
.y9{bottom:518.010000px;}
.yc4{bottom:521.028926px;}
.y7d{bottom:523.875000px;}
.y87{bottom:524.796113px;}
.y24{bottom:526.829521px;}
.y22{bottom:526.829557px;}
.y3{bottom:529.590000px;}
.y105{bottom:531.150000px;}
.ye5{bottom:531.412420px;}
.yd7{bottom:534.600000px;}
.y19{bottom:541.365000px;}
.y12{bottom:542.805000px;}
.yc2{bottom:542.847611px;}
.y85{bottom:544.783451px;}
.y52{bottom:544.855157px;}
.y50{bottom:544.855185px;}
.y109{bottom:545.040000px;}
.y20{bottom:552.135687px;}
.y1e{bottom:552.135722px;}
.ybf{bottom:560.538436px;}
.y82{bottom:560.989400px;}
.ye2{bottom:569.558356px;}
.y8{bottom:572.010000px;}
.y108{bottom:577.440000px;}
.y67{bottom:578.490000px;}
.y104{bottom:581.370000px;}
.yb4{bottom:582.765000px;}
.yb7{bottom:583.950000px;}
.y18{bottom:591.810000px;}
.y11{bottom:593.250000px;}
.y2{bottom:594.390000px;}
.y7b{bottom:596.550000px;}
.yb9{bottom:597.495000px;}
.y66{bottom:599.220000px;}
.y7a{bottom:608.295000px;}
.yb8{bottom:609.195000px;}
.y103{bottom:631.980000px;}
.y17{bottom:642.210000px;}
.y10{bottom:643.650000px;}
.yaa{bottom:650.010000px;}
.yd6{bottom:655.095000px;}
.y7e{bottom:656.250000px;}
.ybb{bottom:657.180000px;}
.y1{bottom:659.190000px;}
.yff{bottom:665.850000px;}
.y1d{bottom:752.940000px;}
.y15{bottom:753.150000px;}
.yf{bottom:753.915000px;}
.h1b{height:3.516689px;}
.h43{height:15.469689px;}
.h39{height:15.485685px;}
.h42{height:15.505665px;}
.h40{height:15.649569px;}
.h50{height:16.904567px;}
.h3a{height:19.987337px;}
.h3c{height:20.023351px;}
.h3b{height:20.167404px;}
.h5d{height:21.507815px;}
.h5c{height:21.548395px;}
.h58{height:21.710718px;}
.h5f{height:21.751299px;}
.h51{height:21.818685px;}
.h53{height:21.857998px;}
.h52{height:22.015249px;}
.hd{height:24.186432px;}
.hf{height:24.186458px;}
.h14{height:24.231222px;}
.h15{height:24.231248px;}
.h11{height:24.410381px;}
.h13{height:24.410407px;}
.h18{height:24.455170px;}
.h19{height:24.455196px;}
.h36{height:25.605400px;}
.h1e{height:26.089786px;}
.h20{height:26.089806px;}
.h25{height:26.138101px;}
.h26{height:26.138120px;}
.h27{height:26.331358px;}
.h28{height:26.331378px;}
.h22{height:26.379673px;}
.h24{height:26.379692px;}
.h4d{height:27.951504px;}
.h5a{height:37.334320px;}
.h37{height:44.052435px;}
.h4e{height:48.090178px;}
.h41{height:52.962737px;}
.h38{height:52.991133px;}
.h34{height:53.017510px;}
.h4f{height:57.846465px;}
.h4b{height:57.875259px;}
.h35{height:58.672711px;}
.h59{height:59.712005px;}
.h57{height:59.741728px;}
.h5e{height:61.543293px;}
.h4c{height:64.048620px;}
.h3f{height:64.967624px;}
.h17{height:65.905116px;}
.h10{height:65.937921px;}
.h5{height:67.704609px;}
.h12{height:67.926338px;}
.h44{height:70.616982px;}
.h55{height:70.664062px;}
.h63{height:70.666842px;}
.h3d{height:70.690013px;}
.h21{height:71.126919px;}
.h23{height:73.271815px;}
.h60{height:73.283186px;}
.h54{height:77.167012px;}
.h9{height:78.504609px;}
.he{height:80.843609px;}
.h45{height:82.635820px;}
.h48{height:82.890945px;}
.h16{height:83.324537px;}
.h5b{height:83.547271px;}
.h2b{height:84.898125px;}
.ha{height:86.800781px;}
.hc{height:86.916516px;}
.h1f{height:87.205613px;}
.h1d{height:87.917228px;}
.hb{height:89.068359px;}
.h61{height:89.187117px;}
.h2a{height:94.835892px;}
.h6{height:96.638203px;}
.h7{height:96.753938px;}
.h2f{height:98.226562px;}
.h4{height:99.874688px;}
.h32{height:104.477344px;}
.h2c{height:104.655938px;}
.h64{height:108.843750px;}
.h46{height:115.060781px;}
.h3{height:115.734375px;}
.h3e{height:120.987255px;}
.h30{height:127.746562px;}
.h2d{height:133.945312px;}
.h8{height:138.352852px;}
.h49{height:159.197344px;}
.h31{height:159.375938px;}
.h1{height:197.731758px;}
.h2{height:197.850516px;}
.h29{height:216.106399px;}
.h62{height:247.674751px;}
.h2e{height:289.465313px;}
.h47{height:290.518074px;}
.h33{height:398.811952px;}
.h1a{height:417.398742px;}
.h4a{height:435.353247px;}
.h1c{height:442.928283px;}
.h56{height:478.988499px;}
.h0{height:810.000000px;}
.w1e{width:57.763092px;}
.w1c{width:57.763093px;}
.wc{width:58.820193px;}
.wd{width:59.000623px;}
.wb{width:59.036709px;}
.w10{width:59.727356px;}
.w1f{width:62.441089px;}
.w1d{width:62.441090px;}
.wa{width:62.970084px;}
.w16{width:64.228528px;}
.w17{width:64.425548px;}
.w15{width:64.464952px;}
.w14{width:68.759988px;}
.w19{width:72.041151px;}
.w1b{width:72.041153px;}
.w2{width:73.128281px;}
.w6{width:80.118322px;}
.wf{width:85.206215px;}
.w1a{width:120.204179px;}
.w3{width:277.745399px;}
.w7{width:289.047220px;}
.w20{width:305.456013px;}
.w21{width:328.133666px;}
.w22{width:328.314286px;}
.we{width:340.921102px;}
.w9{width:366.122629px;}
.w4{width:371.062474px;}
.w12{width:379.801828px;}
.w11{width:396.714053px;}
.w13{width:399.786470px;}
.w18{width:400.138253px;}
.w5{width:402.654190px;}
.w8{width:428.770185px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x1d{left:-11.888949px;}
.x0{left:0.000000px;}
.x3b{left:1.082581px;}
.x71{left:3.857654px;}
.x6f{left:5.484783px;}
.x10{left:7.626876px;}
.x1f{left:8.713775px;}
.x1b{left:10.094399px;}
.x3c{left:12.088813px;}
.x5a{left:13.200342px;}
.x72{left:14.237383px;}
.x41{left:15.336554px;}
.x60{left:16.746702px;}
.x40{left:18.800810px;}
.x44{left:21.148176px;}
.x46{left:22.916539px;}
.x15{left:24.226547px;}
.x17{left:25.796786px;}
.x61{left:26.991743px;}
.x13{left:28.712945px;}
.x14{left:30.507504px;}
.x22{left:31.950509px;}
.x5d{left:34.320888px;}
.x6e{left:39.654498px;}
.x1c{left:48.419995px;}
.x33{left:54.827979px;}
.x18{left:55.900514px;}
.x16{left:59.265313px;}
.x19{left:61.508511px;}
.x1a{left:76.459980px;}
.xf{left:86.554375px;}
.x12{left:98.289495px;}
.x21{left:100.732855px;}
.x3a{left:108.899990px;}
.x6b{left:114.509227px;}
.x24{left:121.175979px;}
.x42{left:134.099990px;}
.x50{left:140.543979px;}
.x47{left:144.971979px;}
.x7a{left:148.103979px;}
.x69{left:150.629979px;}
.x68{left:157.109979px;}
.x11{left:159.682656px;}
.x59{left:161.639990px;}
.x74{left:179.459980px;}
.x2{left:188.999979px;}
.x34{left:190.649979px;}
.x3{left:198.179979px;}
.x5b{left:217.002617px;}
.x3d{left:222.570915px;}
.x62{left:225.179979px;}
.x43{left:232.262170px;}
.x5{left:239.369979px;}
.xd{left:249.764979px;}
.x1{left:261.929979px;}
.x8{left:279.464979px;}
.x3e{left:281.601609px;}
.x5c{left:285.762604px;}
.xa{left:296.564979px;}
.x45{left:317.462369px;}
.x75{left:320.355939px;}
.x7{left:332.459979px;}
.x3f{left:340.421801px;}
.xe{left:344.594979px;}
.x5e{left:350.220988px;}
.x78{left:352.829979px;}
.x55{left:358.709979px;}
.x52{left:375.963458px;}
.x27{left:384.299979px;}
.x5f{left:414.449515px;}
.x32{left:436.754979px;}
.x7b{left:474.659979px;}
.x26{left:476.279979px;}
.x79{left:511.919979px;}
.x35{left:523.079979px;}
.x73{left:564.764979px;}
.x6a{left:574.379959px;}
.x76{left:580.860000px;}
.x54{left:585.360000px;}
.x25{left:587.699979px;}
.x6{left:596.369979px;}
.x4{left:601.634979px;}
.xb{left:612.209979px;}
.x58{left:615.059979px;}
.x9{left:628.949979px;}
.x6c{left:670.583982px;}
.x28{left:695.519979px;}
.x2b{left:697.499979px;}
.x29{left:715.319979px;}
.x6d{left:742.625132px;}
.x2c{left:789.479979px;}
.x2d{left:798.659979px;}
.x70{left:800.381444px;}
.x2e{left:867.449979px;}
.x23{left:933.660000px;}
.x2f{left:958.529979px;}
.x66{left:974.699979px;}
.x1e{left:976.744778px;}
.x51{left:986.039919px;}
.x77{left:989.819919px;}
.x56{left:996.194979px;}
.x4e{left:1002.344979px;}
.x2a{left:1011.134979px;}
.x48{left:1017.974979px;}
.x49{left:1019.879979px;}
.x4a{left:1022.219979px;}
.x36{left:1026.794979px;}
.x37{left:1028.339979px;}
.x63{left:1029.884979px;}
.x38{left:1031.684979px;}
.x39{left:1040.009979px;}
.x57{left:1045.334979px;}
.x20{left:1056.863100px;}
.x4c{left:1076.219979px;}
.x67{left:1077.509979px;}
.x53{left:1079.069979px;}
.x4d{left:1086.119979px;}
.x64{left:1088.099979px;}
.x4b{left:1093.709979px;}
.x65{left:1097.999979px;}
.x30{left:1100.189979px;}
.x4f{left:1105.124979px;}
.x31{left:1191.314979px;}
.xc{left:1369.334979px;}
@media print{
.v11{vertical-align:-167.040000pt;}
.v10{vertical-align:-143.360000pt;}
.v13{vertical-align:-62.080000pt;}
.v12{vertical-align:-38.400000pt;}
.v9{vertical-align:-23.680000pt;}
.va{vertical-align:-20.480000pt;}
.v8{vertical-align:-15.360000pt;}
.v3{vertical-align:-12.076623pt;}
.v6{vertical-align:-11.147652pt;}
.v7{vertical-align:-9.706667pt;}
.v2{vertical-align:-3.185043pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.185043pt;}
.v1{vertical-align:9.600000pt;}
.v4{vertical-align:12.076623pt;}
.v17{vertical-align:15.360000pt;}
.vc{vertical-align:16.640000pt;}
.v18{vertical-align:25.120000pt;}
.v14{vertical-align:26.240000pt;}
.v16{vertical-align:33.280000pt;}
.v15{vertical-align:48.640000pt;}
.vb{vertical-align:58.880000pt;}
.vd{vertical-align:62.720000pt;}
.ve{vertical-align:118.400000pt;}
.vf{vertical-align:138.240000pt;}
.ls13{letter-spacing:-0.915700pt;}
.ls60{letter-spacing:-0.420800pt;}
.ls5b{letter-spacing:-0.396790pt;}
.ls5f{letter-spacing:-0.352000pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls56{letter-spacing:-0.294746pt;}
.ls48{letter-spacing:-0.291200pt;}
.ls5e{letter-spacing:-0.288000pt;}
.ls4b{letter-spacing:-0.269999pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls5c{letter-spacing:-0.204267pt;}
.ls21{letter-spacing:-0.201067pt;}
.ls47{letter-spacing:-0.172800pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.149867pt;}
.ls18{letter-spacing:-0.119439pt;}
.ls33{letter-spacing:-0.102400pt;}
.ls17{letter-spacing:-0.079626pt;}
.ls5a{letter-spacing:-0.072144pt;}
.ls62{letter-spacing:-0.064000pt;}
.ls50{letter-spacing:-0.044800pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.019907pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.019907pt;}
.ls41{letter-spacing:0.021760pt;}
.ls61{letter-spacing:0.032533pt;}
.ls1e{letter-spacing:0.037227pt;}
.ls3d{letter-spacing:0.063957pt;}
.ls8{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.067733pt;}
.ls4d{letter-spacing:0.095936pt;}
.ls19{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.109440pt;}
.ls30{letter-spacing:0.115200pt;}
.ls58{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.129920pt;}
.ls16{letter-spacing:0.139346pt;}
.ls49{letter-spacing:0.153600pt;}
.ls4f{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.160059pt;}
.ls52{letter-spacing:0.174724pt;}
.ls54{letter-spacing:0.180359pt;}
.ls3c{letter-spacing:0.191872pt;}
.ls34{letter-spacing:0.204800pt;}
.lsa{letter-spacing:0.219200pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.257677pt;}
.ls1a{letter-spacing:0.259200pt;}
.ls4{letter-spacing:0.275200pt;}
.ls7{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.300800pt;}
.ls4e{letter-spacing:0.319787pt;}
.ls35{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.320118pt;}
.ls59{letter-spacing:0.324646pt;}
.ls3{letter-spacing:0.339733pt;}
.ls57{letter-spacing:0.349448pt;}
.ls63{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.358317pt;}
.ls9{letter-spacing:0.416000pt;}
.ls36{letter-spacing:0.448000pt;}
.ls46{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.849281pt;}
.ls53{letter-spacing:0.927124pt;}
.lsb{letter-spacing:3.251929pt;}
.ls37{letter-spacing:3.308800pt;}
.ls25{letter-spacing:3.340800pt;}
.ls39{letter-spacing:3.360000pt;}
.ls38{letter-spacing:3.415467pt;}
.lsf{letter-spacing:3.775604pt;}
.ls24{letter-spacing:3.980800pt;}
.ls26{letter-spacing:4.160000pt;}
.lse{letter-spacing:6.164386pt;}
.ls55{letter-spacing:6.214451pt;}
.ls45{letter-spacing:11.529600pt;}
.ls42{letter-spacing:12.169600pt;}
.ls1{letter-spacing:16.469760pt;}
.ls0{letter-spacing:17.109760pt;}
.lsc{letter-spacing:18.108299pt;}
.lsd{letter-spacing:19.700820pt;}
.ls5d{letter-spacing:20.448000pt;}
.ls1b{letter-spacing:22.144000pt;}
.ls3f{letter-spacing:23.788800pt;}
.ls43{letter-spacing:24.428800pt;}
.ls2a{letter-spacing:25.100800pt;}
.ls10{letter-spacing:25.732496pt;}
.ls2e{letter-spacing:26.656000pt;}
.ls2c{letter-spacing:29.561600pt;}
.ls2d{letter-spacing:30.201600pt;}
.ls40{letter-spacing:46.789760pt;}
.ls44{letter-spacing:47.429760pt;}
.ls5{letter-spacing:90.944000pt;}
.ls23{letter-spacing:107.347200pt;}
.ls27{letter-spacing:130.922667pt;}
.ls2f{letter-spacing:131.321600pt;}
.ls28{letter-spacing:144.121600pt;}
.ls2b{letter-spacing:144.281600pt;}
.ls29{letter-spacing:213.881600pt;}
.ws3b{word-spacing:-173.536000pt;}
.ws3a{word-spacing:-173.408000pt;}
.ws33{word-spacing:-173.088000pt;}
.ws26{word-spacing:-135.239424pt;}
.ws3f{word-spacing:-135.008640pt;}
.ws31{word-spacing:-132.949333pt;}
.ws35{word-spacing:-127.232000pt;}
.ws34{word-spacing:-127.046400pt;}
.ws38{word-spacing:-126.931200pt;}
.ws37{word-spacing:-126.828800pt;}
.ws36{word-spacing:-126.611200pt;}
.ws32{word-spacing:-109.760000pt;}
.ws39{word-spacing:-108.480000pt;}
.ws4f{word-spacing:-107.962195pt;}
.ws1f{word-spacing:-107.674373pt;}
.ws40{word-spacing:-98.371200pt;}
.ws44{word-spacing:-98.243200pt;}
.ws41{word-spacing:-98.236800pt;}
.ws2a{word-spacing:-98.083200pt;}
.ws45{word-spacing:-98.038400pt;}
.ws3d{word-spacing:-97.910400pt;}
.ws3e{word-spacing:-97.792000pt;}
.ws49{word-spacing:-88.529408pt;}
.ws48{word-spacing:-88.218880pt;}
.ws4a{word-spacing:-87.578880pt;}
.ws4e{word-spacing:-87.472213pt;}
.ws28{word-spacing:-87.271680pt;}
.ws3c{word-spacing:-86.310400pt;}
.ws4c{word-spacing:-85.984000pt;}
.ws46{word-spacing:-82.412800pt;}
.ws27{word-spacing:-79.248000pt;}
.ws29{word-spacing:-78.774400pt;}
.ws47{word-spacing:-73.827200pt;}
.ws24{word-spacing:-53.339103pt;}
.ws19{word-spacing:-49.447799pt;}
.ws52{word-spacing:-44.801184pt;}
.ws4{word-spacing:-33.701120pt;}
.ws2{word-spacing:-24.154880pt;}
.ws60{word-spacing:-21.724928pt;}
.ws71{word-spacing:-21.696000pt;}
.ws2c{word-spacing:-19.237120pt;}
.ws4b{word-spacing:-18.720000pt;}
.ws23{word-spacing:-16.104802pt;}
.ws20{word-spacing:-15.069237pt;}
.ws1b{word-spacing:-14.949797pt;}
.ws18{word-spacing:-14.929891pt;}
.ws1d{word-spacing:-14.909984pt;}
.ws22{word-spacing:-14.810452pt;}
.ws1c{word-spacing:-14.014191pt;}
.ws50{word-spacing:-13.526927pt;}
.ws4d{word-spacing:-13.453764pt;}
.ws42{word-spacing:-12.324524pt;}
.ws43{word-spacing:-12.311792pt;}
.ws25{word-spacing:-10.736534pt;}
.ws1e{word-spacing:-10.311578pt;}
.ws1a{word-spacing:-9.953261pt;}
.ws21{word-spacing:-9.873634pt;}
.ws53{word-spacing:-9.342598pt;}
.ws51{word-spacing:-9.017952pt;}
.ws54{word-spacing:-8.945808pt;}
.ws55{word-spacing:-8.621162pt;}
.ws8{word-spacing:-3.157333pt;}
.ws7{word-spacing:-2.720000pt;}
.ws68{word-spacing:-2.336000pt;}
.ws65{word-spacing:-2.325333pt;}
.ws5{word-spacing:-2.208000pt;}
.ws6a{word-spacing:-2.195541pt;}
.wsc{word-spacing:-2.080000pt;}
.wsa{word-spacing:-2.016000pt;}
.ws61{word-spacing:-1.984000pt;}
.ws12{word-spacing:-1.952000pt;}
.ws13{word-spacing:-1.847040pt;}
.ws10{word-spacing:-1.728000pt;}
.ws66{word-spacing:-1.685333pt;}
.wsf{word-spacing:-1.664000pt;}
.ws6e{word-spacing:-1.589333pt;}
.ws11{word-spacing:-1.504000pt;}
.ws16{word-spacing:-1.464000pt;}
.ws69{word-spacing:-1.407573pt;}
.ws62{word-spacing:-1.301333pt;}
.ws17{word-spacing:-1.143168pt;}
.ws70{word-spacing:-1.109333pt;}
.wsd{word-spacing:-1.077333pt;}
.wsb{word-spacing:-0.992000pt;}
.ws15{word-spacing:-0.981632pt;}
.ws64{word-spacing:-0.800000pt;}
.ws6f{word-spacing:-0.768000pt;}
.ws14{word-spacing:-0.755648pt;}
.ws72{word-spacing:-0.501333pt;}
.ws6c{word-spacing:-0.461824pt;}
.ws73{word-spacing:-0.416000pt;}
.wse{word-spacing:-0.352000pt;}
.ws6b{word-spacing:-0.157248pt;}
.ws67{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.085120pt;}
.ws9{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.032000pt;}
.ws6{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.156160pt;}
.ws63{word-spacing:0.256000pt;}
.ws56{word-spacing:9.024000pt;}
.ws58{word-spacing:9.440000pt;}
.ws5a{word-spacing:9.472000pt;}
.ws5b{word-spacing:9.600000pt;}
.ws57{word-spacing:9.664000pt;}
.ws59{word-spacing:10.186667pt;}
.ws2b{word-spacing:13.056000pt;}
.ws30{word-spacing:19.069760pt;}
.ws2d{word-spacing:19.709760pt;}
.ws5e{word-spacing:20.962752pt;}
.ws5f{word-spacing:21.081856pt;}
.ws5c{word-spacing:21.217621pt;}
.ws5d{word-spacing:22.284352pt;}
.ws1{word-spacing:84.260800pt;}
.ws3{word-spacing:84.326400pt;}
._7{margin-left:-19.206400pt;}
._6{margin-left:-18.126080pt;}
._4{margin-left:-12.787200pt;}
._8{margin-left:-10.159360pt;}
._5{margin-left:-7.032960pt;}
._3{margin-left:-5.114880pt;}
._2{margin-left:-3.409920pt;}
._1{margin-left:-2.344320pt;}
._0{margin-left:-1.278720pt;}
._9{width:1.280000pt;}
._e{width:2.322427pt;}
._14{width:4.000000pt;}
._18{width:10.949376pt;}
._17{width:12.233685pt;}
._19{width:13.326853pt;}
._13{width:15.387904pt;}
._10{width:16.321024pt;}
._1a{width:17.663360pt;}
._1f{width:19.976320pt;}
._c{width:20.944427pt;}
._b{width:21.888000pt;}
._d{width:22.778453pt;}
._12{width:26.688000pt;}
._15{width:40.032000pt;}
._1e{width:44.464555pt;}
._16{width:66.848000pt;}
._11{width:359.519147pt;}
._1c{width:660.913493pt;}
._a{width:699.735467pt;}
._1d{width:710.888320pt;}
._1b{width:997.639040pt;}
._f{width:2303.540053pt;}
.fse{font-size:3.185043pt;}
.fs20{font-size:31.978680pt;}
.fs1c{font-size:33.749836pt;}
.fs2c{font-size:36.071806pt;}
.fs26{font-size:36.843267pt;}
.fsc{font-size:39.813042pt;}
.fs2b{font-size:41.843295pt;}
.fs28{font-size:42.880000pt;}
.fs12{font-size:42.946138pt;}
.fsd{font-size:42.998086pt;}
.fs1f{font-size:47.968020pt;}
.fs19{font-size:48.017627pt;}
.fs1b{font-size:50.624754pt;}
.fs23{font-size:52.417261pt;}
.fs1a{font-size:53.139508pt;}
.fs29{font-size:54.107710pt;}
.fs15{font-size:54.400000pt;}
.fs25{font-size:55.264900pt;}
.fs17{font-size:56.960000pt;}
.fs24{font-size:58.008435pt;}
.fs1e{font-size:58.840771pt;}
.fsa{font-size:59.719563pt;}
.fs2a{font-size:59.879199pt;}
.fs21{font-size:63.957360pt;}
.fs16{font-size:64.000000pt;}
.fs2e{font-size:64.002517pt;}
.fs1d{font-size:64.023503pt;}
.fs10{font-size:64.419206pt;}
.fs2d{font-size:66.372124pt;}
.fs27{font-size:69.889681pt;}
.fs18{font-size:70.400000pt;}
.fsb{font-size:73.255998pt;}
.fs4{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs22{font-size:75.073811pt;}
.fs11{font-size:79.020893pt;}
.fsf{font-size:79.626085pt;}
.fs3{font-size:85.120000pt;}
.fs13{font-size:85.892275pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.yb6{bottom:-0.012743pt;}
.y102{bottom:-0.010865pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.000041pt;}
.ya6{bottom:2.878082pt;}
.ya4{bottom:2.878083pt;}
.y86{bottom:2.881058pt;}
.y90{bottom:2.907734pt;}
.ya2{bottom:2.910061pt;}
.ya0{bottom:2.910062pt;}
.y9d{bottom:3.037976pt;}
.y8a{bottom:3.041116pt;}
.yc3{bottom:3.145036pt;}
.ycd{bottom:3.174156pt;}
.yc7{bottom:3.319760pt;}
.y27{bottom:3.583179pt;}
.y1f{bottom:3.583181pt;}
.y21{bottom:3.583194pt;}
.y29{bottom:3.583205pt;}
.ye8{bottom:3.607181pt;}
.y31{bottom:3.616357pt;}
.y33{bottom:3.616383pt;}
.y23{bottom:3.782244pt;}
.y25{bottom:3.782270pt;}
.ya9{bottom:3.837501pt;}
.y98{bottom:3.841452pt;}
.y59{bottom:3.865157pt;}
.y51{bottom:3.865158pt;}
.y53{bottom:3.865168pt;}
.y5b{bottom:3.865177pt;}
.yf1{bottom:3.967899pt;}
.y55{bottom:4.079888pt;}
.y57{bottom:4.079907pt;}
.yef{bottom:4.148258pt;}
.yd5{bottom:4.193426pt;}
.y4f{bottom:4.777600pt;}
.yf7{bottom:5.045544pt;}
.yea{bottom:5.050053pt;}
.y65{bottom:5.153547pt;}
.ye3{bottom:5.230412pt;}
.yf3{bottom:5.275502pt;}
.y42{bottom:6.370112pt;}
.y39{bottom:6.569176pt;}
.y34{bottom:6.602354pt;}
.y45{bottom:6.768242pt;}
.y84{bottom:6.882527pt;}
.ye4{bottom:7.034002pt;}
.y83{bottom:7.362703pt;}
.yc1{bottom:7.513141pt;}
.yc0{bottom:8.037313pt;}
.ye6{bottom:12.084055pt;}
.yfe{bottom:15.954259pt;}
.y7{bottom:16.256000pt;}
.y16{bottom:18.656000pt;}
.ye7{bottom:20.921648pt;}
.y9b{bottom:79.690796pt;}
.y101{bottom:83.519991pt;}
.y99{bottom:93.738648pt;}
.y9a{bottom:94.273074pt;}
.yde{bottom:107.520000pt;}
.ya8{bottom:113.277541pt;}
.ya7{bottom:113.277543pt;}
.y4e{bottom:120.363921pt;}
.yb3{bottom:122.528000pt;}
.ydd{bottom:126.720000pt;}
.ya5{bottom:127.188267pt;}
.ya3{bottom:127.188269pt;}
.ydf{bottom:132.480000pt;}
.ya1{bottom:140.939099pt;}
.y9f{bottom:140.939101pt;}
.y4c{bottom:143.056847pt;}
.y4b{bottom:144.649369pt;}
.y4a{bottom:144.649401pt;}
.yb2{bottom:144.933333pt;}
.ydc{bottom:145.920000pt;}
.y6{bottom:146.400000pt;}
.y9e{bottom:155.361484pt;}
.y9c{bottom:155.361486pt;}
.yfd{bottom:164.846931pt;}
.y49{bottom:166.387290pt;}
.y48{bottom:166.387322pt;}
.ybc{bottom:169.502564pt;}
.yb5{bottom:182.879982pt;}
.y7c{bottom:183.493333pt;}
.yfc{bottom:183.964989pt;}
.y110{bottom:186.813333pt;}
.y6e{bottom:187.266667pt;}
.y47{bottom:187.886333pt;}
.y46{bottom:187.886364pt;}
.yd4{bottom:190.818962pt;}
.y7f{bottom:197.497313pt;}
.yfb{bottom:203.263405pt;}
.y44{bottom:209.385376pt;}
.y43{bottom:209.385407pt;}
.yd3{bottom:210.388073pt;}
.y97{bottom:217.024523pt;}
.y76{bottom:220.346667pt;}
.ye{bottom:220.413333pt;}
.yfa{bottom:222.417534pt;}
.y78{bottom:223.266667pt;}
.yd2{bottom:229.782459pt;}
.y6d{bottom:230.493333pt;}
.y41{bottom:231.083484pt;}
.y40{bottom:231.083515pt;}
.y10f{bottom:231.613333pt;}
.y96{bottom:234.951104pt;}
.yf9{bottom:241.535592pt;}
.yd1{bottom:249.211790pt;}
.y3f{bottom:252.582527pt;}
.y3e{bottom:252.582558pt;}
.y95{bottom:252.717626pt;}
.yb1{bottom:253.093333pt;}
.yf8{bottom:260.653649pt;}
.yd{bottom:268.413333pt;}
.yd0{bottom:268.606177pt;}
.y94{bottom:270.516160pt;}
.y6c{bottom:273.693333pt;}
.y3d{bottom:274.121383pt;}
.y3c{bottom:274.121414pt;}
.yb0{bottom:275.493333pt;}
.y10e{bottom:276.413333pt;}
.yf6{bottom:279.988137pt;}
.ycf{bottom:288.175287pt;}
.y93{bottom:288.282682pt;}
.y73{bottom:295.013333pt;}
.y3b{bottom:295.819491pt;}
.y3a{bottom:295.819522pt;}
.yf5{bottom:299.101686pt;}
.y92{bottom:306.209263pt;}
.yce{bottom:307.569674pt;}
.yab{bottom:309.346667pt;}
.yc{bottom:316.413333pt;}
.y6b{bottom:316.893333pt;}
.y38{bottom:317.318534pt;}
.y37{bottom:317.318565pt;}
.y64{bottom:317.341315pt;}
.yf4{bottom:318.219743pt;}
.y5{bottom:319.360000pt;}
.y10d{bottom:321.253333pt;}
.y91{bottom:323.975785pt;}
.ydb{bottom:324.866667pt;}
.y72{bottom:325.573333pt;}
.y100{bottom:326.720000pt;}
.ycc{bottom:326.968428pt;}
.y81{bottom:328.569994pt;}
.y77{bottom:328.640000pt;}
.y75{bottom:335.173333pt;}
.yf2{bottom:337.337801pt;}
.y36{bottom:338.817577pt;}
.y35{bottom:338.817608pt;}
.y8f{bottom:341.746309pt;}
.y80{bottom:343.615517pt;}
.y63{bottom:343.752987pt;}
.y62{bottom:343.753011pt;}
.ycb{bottom:346.391935pt;}
.y1c{bottom:346.813333pt;}
.yda{bottom:347.266667pt;}
.yf0{bottom:356.681307pt;}
.ybe{bottom:358.675343pt;}
.y8e{bottom:359.539507pt;}
.y6a{bottom:360.093333pt;}
.y32{bottom:360.515685pt;}
.y30{bottom:360.515716pt;}
.y74{bottom:361.413333pt;}
.yb{bottom:364.413333pt;}
.yaf{bottom:365.026667pt;}
.yca{bottom:365.961046pt;}
.y10c{bottom:366.053333pt;}
.y61{bottom:366.986847pt;}
.y60{bottom:366.986872pt;}
.ybd{bottom:375.099418pt;}
.yee{bottom:375.799364pt;}
.y8d{bottom:377.466088pt;}
.yba{bottom:381.093333pt;}
.y2f{bottom:382.047905pt;}
.y2e{bottom:382.047936pt;}
.y107{bottom:382.533333pt;}
.yc9{bottom:385.355433pt;}
.yae{bottom:387.426667pt;}
.y5f{bottom:390.177762pt;}
.y5e{bottom:390.177786pt;}
.y1b{bottom:391.613333pt;}
.y14{bottom:392.893333pt;}
.yed{bottom:394.917421pt;}
.y8c{bottom:395.232610pt;}
.ye1{bottom:397.811905pt;}
.y69{bottom:403.333333pt;}
.y2d{bottom:403.546948pt;}
.y2c{bottom:403.546979pt;}
.yc8{bottom:404.749819pt;}
.yad{bottom:409.826667pt;}
.y10b{bottom:410.853333pt;}
.ya{bottom:412.453333pt;}
.y8b{bottom:412.999132pt;}
.y4{bottom:413.120000pt;}
.ye0{bottom:413.503141pt;}
.y5d{bottom:413.583407pt;}
.y5c{bottom:413.583431pt;}
.yec{bottom:414.065539pt;}
.yc6{bottom:424.173326pt;}
.y2b{bottom:425.245056pt;}
.y2a{bottom:425.245087pt;}
.y106{bottom:427.173333pt;}
.yd9{bottom:428.453333pt;}
.y89{bottom:430.792331pt;}
.y70{bottom:431.266667pt;}
.yac{bottom:432.226667pt;}
.yeb{bottom:433.363955pt;}
.y1a{bottom:436.413333pt;}
.y79{bottom:436.453333pt;}
.y71{bottom:436.706667pt;}
.y5a{bottom:436.817267pt;}
.y58{bottom:436.817291pt;}
.y13{bottom:437.693333pt;}
.yc5{bottom:443.742437pt;}
.y6f{bottom:445.986667pt;}
.y68{bottom:446.533333pt;}
.y28{bottom:446.744099pt;}
.y26{bottom:446.744130pt;}
.y88{bottom:448.718912pt;}
.yd8{bottom:450.853333pt;}
.ye9{bottom:452.482013pt;}
.y10a{bottom:455.653333pt;}
.y56{bottom:460.008181pt;}
.y54{bottom:460.008206pt;}
.y9{bottom:460.453333pt;}
.yc4{bottom:463.136823pt;}
.y7d{bottom:465.666667pt;}
.y87{bottom:466.485434pt;}
.y24{bottom:468.292908pt;}
.y22{bottom:468.292939pt;}
.y3{bottom:470.746667pt;}
.y105{bottom:472.133333pt;}
.ye5{bottom:472.366596pt;}
.yd7{bottom:475.200000pt;}
.y19{bottom:481.213333pt;}
.y12{bottom:482.493333pt;}
.yc2{bottom:482.531209pt;}
.y85{bottom:484.251956pt;}
.y52{bottom:484.315695pt;}
.y50{bottom:484.315720pt;}
.y109{bottom:484.480000pt;}
.y20{bottom:490.787277pt;}
.y1e{bottom:490.787308pt;}
.ybf{bottom:498.256388pt;}
.y82{bottom:498.657244pt;}
.ye2{bottom:506.274094pt;}
.y8{bottom:508.453333pt;}
.y108{bottom:513.280000pt;}
.y67{bottom:514.213333pt;}
.y104{bottom:516.773333pt;}
.yb4{bottom:518.013333pt;}
.yb7{bottom:519.066667pt;}
.y18{bottom:526.053333pt;}
.y11{bottom:527.333333pt;}
.y2{bottom:528.346667pt;}
.y7b{bottom:530.266667pt;}
.yb9{bottom:531.106667pt;}
.y66{bottom:532.640000pt;}
.y7a{bottom:540.706667pt;}
.yb8{bottom:541.506667pt;}
.y103{bottom:561.760000pt;}
.y17{bottom:570.853333pt;}
.y10{bottom:572.133333pt;}
.yaa{bottom:577.786667pt;}
.yd6{bottom:582.306667pt;}
.y7e{bottom:583.333333pt;}
.ybb{bottom:584.160000pt;}
.y1{bottom:585.946667pt;}
.yff{bottom:591.866667pt;}
.y1d{bottom:669.280000pt;}
.y15{bottom:669.466667pt;}
.yf{bottom:670.146667pt;}
.h1b{height:3.125946pt;}
.h43{height:13.750835pt;}
.h39{height:13.765053pt;}
.h42{height:13.782813pt;}
.h40{height:13.910728pt;}
.h50{height:15.026281pt;}
.h3a{height:17.766522pt;}
.h3c{height:17.798534pt;}
.h3b{height:17.926581pt;}
.h5d{height:19.118057pt;}
.h5c{height:19.154129pt;}
.h58{height:19.298416pt;}
.h5f{height:19.334488pt;}
.h51{height:19.394386pt;}
.h53{height:19.429331pt;}
.h52{height:19.569111pt;}
.hd{height:21.499051pt;}
.hf{height:21.499074pt;}
.h14{height:21.538864pt;}
.h15{height:21.538887pt;}
.h11{height:21.698116pt;}
.h13{height:21.698139pt;}
.h18{height:21.737929pt;}
.h19{height:21.737952pt;}
.h36{height:22.760355pt;}
.h1e{height:23.190921pt;}
.h20{height:23.190939pt;}
.h25{height:23.233867pt;}
.h26{height:23.233885pt;}
.h27{height:23.405652pt;}
.h28{height:23.405669pt;}
.h22{height:23.448598pt;}
.h24{height:23.448616pt;}
.h4d{height:24.845782pt;}
.h5a{height:33.186062pt;}
.h37{height:39.157720pt;}
.h4e{height:42.746824pt;}
.h41{height:47.077988pt;}
.h38{height:47.103229pt;}
.h34{height:47.126675pt;}
.h4f{height:51.419080pt;}
.h4b{height:51.444675pt;}
.h35{height:52.153521pt;}
.h59{height:53.077338pt;}
.h57{height:53.103758pt;}
.h5e{height:54.705149pt;}
.h4c{height:56.932107pt;}
.h3f{height:57.748999pt;}
.h17{height:58.582326pt;}
.h10{height:58.611486pt;}
.h5{height:60.181875pt;}
.h12{height:60.378967pt;}
.h44{height:62.770651pt;}
.h55{height:62.812500pt;}
.h63{height:62.814970pt;}
.h3d{height:62.835567pt;}
.h21{height:63.223928pt;}
.h23{height:65.130502pt;}
.h60{height:65.140610pt;}
.h54{height:68.592900pt;}
.h9{height:69.781875pt;}
.he{height:71.860986pt;}
.h45{height:73.454062pt;}
.h48{height:73.680840pt;}
.h16{height:74.066255pt;}
.h5b{height:74.264240pt;}
.h2b{height:75.465000pt;}
.ha{height:77.156250pt;}
.hc{height:77.259125pt;}
.h1f{height:77.516101pt;}
.h1d{height:78.148647pt;}
.hb{height:79.171875pt;}
.h61{height:79.277438pt;}
.h2a{height:84.298571pt;}
.h6{height:85.900625pt;}
.h7{height:86.003500pt;}
.h2f{height:87.312500pt;}
.h4{height:88.777500pt;}
.h32{height:92.868750pt;}
.h2c{height:93.027500pt;}
.h64{height:96.750000pt;}
.h46{height:102.276250pt;}
.h3{height:102.875000pt;}
.h3e{height:107.544226pt;}
.h30{height:113.552500pt;}
.h2d{height:119.062500pt;}
.h8{height:122.980312pt;}
.h49{height:141.508750pt;}
.h31{height:141.667500pt;}
.h1{height:175.761562pt;}
.h2{height:175.867125pt;}
.h29{height:192.094577pt;}
.h62{height:220.155334pt;}
.h2e{height:257.302500pt;}
.h47{height:258.238288pt;}
.h33{height:354.499513pt;}
.h1a{height:371.021104pt;}
.h4a{height:386.980664pt;}
.h1c{height:393.714029pt;}
.h56{height:425.767555pt;}
.h0{height:720.000000pt;}
.w1e{width:51.344971pt;}
.w1c{width:51.344972pt;}
.wc{width:52.284616pt;}
.wd{width:52.444998pt;}
.wb{width:52.477075pt;}
.w10{width:53.090983pt;}
.w1f{width:55.503190pt;}
.w1d{width:55.503191pt;}
.wa{width:55.973408pt;}
.w16{width:57.092024pt;}
.w17{width:57.267153pt;}
.w15{width:57.302179pt;}
.w14{width:61.119989pt;}
.w19{width:64.036579pt;}
.w1b{width:64.036580pt;}
.w2{width:65.002917pt;}
.w6{width:71.216286pt;}
.wf{width:75.738858pt;}
.w1a{width:106.848159pt;}
.w3{width:246.884799pt;}
.w7{width:256.930862pt;}
.w20{width:271.516456pt;}
.w21{width:291.674369pt;}
.w22{width:291.834921pt;}
.we{width:303.040980pt;}
.w9{width:325.442337pt;}
.w4{width:329.833310pt;}
.w12{width:337.601625pt;}
.w11{width:352.634713pt;}
.w13{width:355.365751pt;}
.w18{width:355.678447pt;}
.w5{width:357.914836pt;}
.w8{width:381.129054pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x1d{left:-10.567954pt;}
.x0{left:0.000000pt;}
.x3b{left:0.962294pt;}
.x71{left:3.429026pt;}
.x6f{left:4.875363pt;}
.x10{left:6.779445pt;}
.x1f{left:7.745578pt;}
.x1b{left:8.972799pt;}
.x3c{left:10.745612pt;}
.x5a{left:11.733637pt;}
.x72{left:12.655451pt;}
.x41{left:13.632492pt;}
.x60{left:14.885957pt;}
.x40{left:16.711831pt;}
.x44{left:18.798379pt;}
.x46{left:20.370257pt;}
.x15{left:21.534709pt;}
.x17{left:22.930477pt;}
.x61{left:23.992661pt;}
.x13{left:25.522618pt;}
.x14{left:27.117781pt;}
.x22{left:28.400453pt;}
.x5d{left:30.507456pt;}
.x6e{left:35.248443pt;}
.x1c{left:43.039995pt;}
.x33{left:48.735981pt;}
.x18{left:49.689346pt;}
.x16{left:52.680278pt;}
.x19{left:54.674232pt;}
.x1a{left:67.964427pt;}
.xf{left:76.937222pt;}
.x12{left:87.368440pt;}
.x21{left:89.540316pt;}
.x3a{left:96.799991pt;}
.x6b{left:101.785979pt;}
.x24{left:107.711981pt;}
.x42{left:119.199991pt;}
.x50{left:124.927981pt;}
.x47{left:128.863981pt;}
.x7a{left:131.647981pt;}
.x69{left:133.893314pt;}
.x68{left:139.653314pt;}
.x11{left:141.940138pt;}
.x59{left:143.679991pt;}
.x74{left:159.519982pt;}
.x2{left:167.999981pt;}
.x34{left:169.466648pt;}
.x3{left:176.159981pt;}
.x5b{left:192.891215pt;}
.x3d{left:197.840813pt;}
.x62{left:200.159981pt;}
.x43{left:206.455263pt;}
.x5{left:212.773314pt;}
.xd{left:222.013314pt;}
.x1{left:232.826648pt;}
.x8{left:248.413314pt;}
.x3e{left:250.312541pt;}
.x5c{left:254.011204pt;}
.xa{left:263.613314pt;}
.x45{left:282.188773pt;}
.x75{left:284.760834pt;}
.x7{left:295.519981pt;}
.x3f{left:302.597157pt;}
.xe{left:306.306648pt;}
.x5e{left:311.307545pt;}
.x78{left:313.626648pt;}
.x55{left:318.853314pt;}
.x52{left:334.189740pt;}
.x27{left:341.599981pt;}
.x5f{left:368.399568pt;}
.x32{left:388.226648pt;}
.x7b{left:421.919981pt;}
.x26{left:423.359981pt;}
.x79{left:455.039981pt;}
.x35{left:464.959981pt;}
.x73{left:502.013314pt;}
.x6a{left:510.559964pt;}
.x76{left:516.320000pt;}
.x54{left:520.320000pt;}
.x25{left:522.399981pt;}
.x6{left:530.106648pt;}
.x4{left:534.786648pt;}
.xb{left:544.186648pt;}
.x58{left:546.719981pt;}
.x9{left:559.066648pt;}
.x6c{left:596.074651pt;}
.x28{left:618.239981pt;}
.x2b{left:619.999981pt;}
.x29{left:635.839981pt;}
.x6d{left:660.111228pt;}
.x2c{left:701.759981pt;}
.x2d{left:709.919981pt;}
.x70{left:711.450172pt;}
.x2e{left:771.066648pt;}
.x23{left:829.920000pt;}
.x2f{left:852.026648pt;}
.x66{left:866.399981pt;}
.x1e{left:868.217580pt;}
.x51{left:876.479928pt;}
.x77{left:879.839928pt;}
.x56{left:885.506648pt;}
.x4e{left:890.973314pt;}
.x2a{left:898.786648pt;}
.x48{left:904.866648pt;}
.x49{left:906.559981pt;}
.x4a{left:908.639981pt;}
.x36{left:912.706648pt;}
.x37{left:914.079981pt;}
.x63{left:915.453314pt;}
.x38{left:917.053314pt;}
.x39{left:924.453314pt;}
.x57{left:929.186648pt;}
.x20{left:939.433866pt;}
.x4c{left:956.639981pt;}
.x67{left:957.786648pt;}
.x53{left:959.173314pt;}
.x4d{left:965.439981pt;}
.x64{left:967.199981pt;}
.x4b{left:972.186648pt;}
.x65{left:975.999981pt;}
.x30{left:977.946648pt;}
.x4f{left:982.333314pt;}
.x31{left:1058.946648pt;}
.xc{left:1217.186648pt;}
}




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