
    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_3f3fe5137ca690b7688747ab.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5bf83cb746802bc358c01f72.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_470f89ed735a593f1782389d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_413f99d087d28ea50ca8359b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_96b21524080e0bd8a78419c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_1f30546b5e4d86bb167d620c.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_fa4bd374852cf3c3f0623ae9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.778000;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_6a98f3e7685c1846220f3e4a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bc282e1242594313279404f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239258;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_e3f6137a6c548844dd752600.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ma{transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250603,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250603,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250603,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.177202,-0.177202,0.176777,0.176777,0,0);-ms-transform:matrix(0.177202,-0.177202,0.176777,0.176777,0,0);-webkit-transform:matrix(0.177202,-0.177202,0.176777,0.176777,0,0);}
.me{transform:matrix(0.249809,0.004352,-0.004352,0.249962,0,0);-ms-transform:matrix(0.249809,0.004352,-0.004352,0.249962,0,0);-webkit-transform:matrix(0.249809,0.004352,-0.004352,0.249962,0,0);}
.m2{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,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);}
.m15{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-46.799981px;}
.vc{vertical-align:-41.759983px;}
.vb{vertical-align:-39.599984px;}
.vd{vertical-align:-38.159985px;}
.v2{vertical-align:-20.879992px;}
.v8{vertical-align:-17.279993px;}
.v3{vertical-align:-14.399994px;}
.v10{vertical-align:-11.519995px;}
.va{vertical-align:-10.079996px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.399994px;}
.vf{vertical-align:17.279993px;}
.ve{vertical-align:20.159992px;}
.v11{vertical-align:31.679987px;}
.v9{vertical-align:33.839986px;}
.v7{vertical-align:50.399980px;}
.v6{vertical-align:57.599977px;}
.v5{vertical-align:71.999971px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.013008px;}
.ls11{letter-spacing:0.053280px;}
.ls40{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.207360px;}
.lsa{letter-spacing:0.215280px;}
.ls2a{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.329760px;}
.lse{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.408960px;}
.lsc{letter-spacing:0.460080px;}
.ls42{letter-spacing:0.625115px;}
.ls13{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.720000px;}
.ls41{letter-spacing:1.620690px;}
.ls3d{letter-spacing:6.664816px;}
.ls34{letter-spacing:12.330715px;}
.ls30{letter-spacing:12.353755px;}
.ls35{letter-spacing:13.050715px;}
.ls7{letter-spacing:30.333588px;}
.ls1{letter-spacing:31.096788px;}
.ls10{letter-spacing:45.982062px;}
.ls19{letter-spacing:48.239981px;}
.lsf{letter-spacing:58.222057px;}
.ls15{letter-spacing:60.382056px;}
.ls18{letter-spacing:60.479976px;}
.lsd{letter-spacing:61.608935px;}
.ls1b{letter-spacing:64.799974px;}
.ls2d{letter-spacing:90.408924px;}
.ls2f{letter-spacing:91.128924px;}
.ls2{letter-spacing:91.709243px;}
.ls3e{letter-spacing:107.688917px;}
.ls2e{letter-spacing:110.568916px;}
.ls2c{letter-spacing:123.379871px;}
.ls28{letter-spacing:142.099863px;}
.ls29{letter-spacing:163.333375px;}
.ls31{letter-spacing:165.220370px;}
.ls27{letter-spacing:173.059851px;}
.ls26{letter-spacing:176.088890px;}
.ls2b{letter-spacing:179.893368px;}
.ls32{letter-spacing:181.932407px;}
.ls33{letter-spacing:188.412405px;}
.ls3f{letter-spacing:194.808882px;}
.ls25{letter-spacing:203.448879px;}
.ls3b{letter-spacing:214.650634px;}
.ls17{letter-spacing:218.061993px;}
.ls3c{letter-spacing:232.650627px;}
.ls36{letter-spacing:239.850624px;}
.ls16{letter-spacing:264.861974px;}
.ls14{letter-spacing:292.221963px;}
.ls23{letter-spacing:297.719881px;}
.ls3a{letter-spacing:307.530597px;}
.ls37{letter-spacing:311.130596px;}
.ls1f{letter-spacing:315.898434px;}
.ls21{letter-spacing:316.170594px;}
.ls12{letter-spacing:354.861938px;}
.ls39{letter-spacing:367.290573px;}
.ls38{letter-spacing:378.810568px;}
.ls1a{letter-spacing:467.333093px;}
.ls4{letter-spacing:489.959804px;}
.ls6{letter-spacing:498.599801px;}
.ls20{letter-spacing:500.039800px;}
.ls5{letter-spacing:500.669080px;}
.ls22{letter-spacing:510.749076px;}
.ls24{letter-spacing:526.679789px;}
.ls1c{letter-spacing:568.853052px;}
.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;}
}
.ws38{word-spacing:-45.035982px;}
.wsa{word-spacing:-40.499984px;}
.ws28{word-spacing:-36.988485px;}
.wsb{word-spacing:-30.023988px;}
.wsd{word-spacing:-26.632837px;}
.ws1{word-spacing:-26.619840px;}
.wsc{word-spacing:-26.619829px;}
.ws4{word-spacing:-25.709750px;}
.ws33{word-spacing:-23.418711px;}
.ws3a{word-spacing:-20.303992px;}
.ws0{word-spacing:-20.016000px;}
.ws3{word-spacing:-20.015992px;}
.ws26{word-spacing:-18.494993px;}
.ws7{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.613273px;}
.ws34{word-spacing:-15.364676px;}
.ws23{word-spacing:-13.410715px;}
.wsf{word-spacing:-11.208956px;}
.ws1a{word-spacing:-10.439996px;}
.ws48{word-spacing:-10.112680px;}
.ws49{word-spacing:-10.112066px;}
.ws46{word-spacing:-10.007996px;}
.ws9{word-spacing:-9.449996px;}
.ws3b{word-spacing:-8.736580px;}
.ws27{word-spacing:-8.630817px;}
.ws4a{word-spacing:-8.122890px;}
.ws39{word-spacing:-1.727999px;}
.ws25{word-spacing:-1.511999px;}
.ws24{word-spacing:-0.792000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:3.514262px;}
.wse{word-spacing:38.519966px;}
.ws3d{word-spacing:47.826506px;}
.ws10{word-spacing:48.960153px;}
.ws11{word-spacing:53.280202px;}
.ws3f{word-spacing:53.840153px;}
.ws1b{word-spacing:54.360042px;}
.ws3c{word-spacing:55.913485px;}
.ws4b{word-spacing:57.733672px;}
.ws1c{word-spacing:60.119917px;}
.ws18{word-spacing:75.781424px;}
.ws15{word-spacing:76.508030px;}
.ws14{word-spacing:80.820120px;}
.ws19{word-spacing:81.359992px;}
.ws41{word-spacing:103.520414px;}
.ws2e{word-spacing:107.839445px;}
.ws31{word-spacing:107.839865px;}
.ws47{word-spacing:108.539957px;}
.ws35{word-spacing:123.920976px;}
.ws2b{word-spacing:124.399817px;}
.ws30{word-spacing:124.399952px;}
.ws2d{word-spacing:124.400019px;}
.ws20{word-spacing:127.979949px;}
.ws1f{word-spacing:139.499764px;}
.ws36{word-spacing:148.415030px;}
.ws37{word-spacing:149.135180px;}
.ws21{word-spacing:151.739939px;}
.ws1e{word-spacing:153.180119px;}
.ws1d{word-spacing:161.098323px;}
.ws45{word-spacing:167.759933px;}
.ws42{word-spacing:171.200380px;}
.ws32{word-spacing:171.919890px;}
.ws43{word-spacing:180.223070px;}
.ws3e{word-spacing:183.240222px;}
.ws40{word-spacing:196.399966px;}
.ws44{word-spacing:229.903137px;}
.ws6{word-spacing:230.959995px;}
.ws2f{word-spacing:233.840189px;}
.ws2c{word-spacing:235.999921px;}
.ws2a{word-spacing:248.959951px;}
.ws29{word-spacing:250.399950px;}
.ws12{word-spacing:341.119969px;}
.ws17{word-spacing:359.913715px;}
.ws22{word-spacing:431.099648px;}
.ws13{word-spacing:630.557388px;}
.ws8{word-spacing:678.403312px;}
._c{margin-left:-357.641857px;}
._9{margin-left:-325.787270px;}
._8{margin-left:-317.142473px;}
._28{margin-left:-296.338681px;}
._b{margin-left:-294.867482px;}
._27{margin-left:-288.414485px;}
._2a{margin-left:-268.190429px;}
._7{margin-left:-208.917516px;}
._26{margin-left:-190.545584px;}
._a{margin-left:-176.659729px;}
._29{margin-left:-160.901336px;}
._d{margin-left:-159.382736px;}
._2b{margin-left:-144.773582px;}
._3b{margin-left:-12.944691px;}
._6{margin-left:-8.063997px;}
._39{margin-left:-6.517436px;}
._0{margin-left:-4.752000px;}
._4{margin-left:-2.894382px;}
._2{margin-left:-1.152000px;}
._1{width:1.008000px;}
._12{width:2.849342px;}
._42{width:5.261006px;}
._41{width:6.584396px;}
._3f{width:7.737370px;}
._40{width:8.752474px;}
._43{width:10.947449px;}
._14{width:15.432551px;}
._46{width:44.327374px;}
._47{width:47.929170px;}
._45{width:53.844361px;}
._44{width:68.251861px;}
._4d{width:70.293641px;}
._25{width:71.999971px;}
._3c{width:73.556145px;}
._24{width:85.319966px;}
._35{width:123.359711px;}
._38{width:134.167446px;}
._15{width:136.913706px;}
._4e{width:137.973607px;}
._2c{width:141.980703px;}
._3e{width:143.927942px;}
._2d{width:150.373353px;}
._6a{width:158.399937px;}
._34{width:163.147316px;}
._1f{width:165.599934px;}
._1e{width:166.680113px;}
._18{width:169.380112px;}
._21{width:175.572110px;}
._1c{width:179.279748px;}
._13{width:181.337141px;}
._6c{width:188.711923px;}
._1b{width:191.519924px;}
._17{width:192.600103px;}
._71{width:194.363714px;}
._69{width:197.798304px;}
._60{width:200.015920px;}
._4c{width:202.980370px;}
._1d{width:204.839738px;}
._62{width:205.991918px;}
._64{width:208.141596px;}
._2e{width:213.799127px;}
._61{width:215.963914px;}
._16{width:218.520093px;}
._f{width:224.999710px;}
._6f{width:227.246223px;}
._6e{width:229.175698px;}
._49{width:232.866548px;}
._6d{width:234.050077px;}
._6b{width:235.187908px;}
._4a{width:236.207068px;}
._11{width:242.946861px;}
._57{width:245.986386px;}
._36{width:250.027369px;}
._70{width:257.147757px;}
._19{width:259.379716px;}
._53{width:261.076072px;}
._37{width:265.253764px;}
._67{width:267.983893px;}
._56{width:269.513222px;}
._52{width:274.533060px;}
._54{width:277.889491px;}
._51{width:282.909454px;}
._68{width:283.967886px;}
._55{width:291.346302px;}
._22{width:293.399703px;}
._66{width:295.991882px;}
._5e{width:302.410200px;}
._5f{width:307.428677px;}
._1a{width:308.879697px;}
._63{width:314.834257px;}
._20{width:322.452051px;}
._65{width:324.878253px;}
._5b{width:327.599809px;}
._5a{width:332.620488px;}
._59{width:334.283153px;}
._58{width:337.668777px;}
._4b{width:342.577204px;}
._4f{width:344.108009px;}
._48{width:352.427105px;}
._5c{width:356.116838px;}
._5d{width:371.267066px;}
._10{width:375.739604px;}
._e{width:453.960010px;}
._31{width:461.813887px;}
._23{width:503.279619px;}
._30{width:555.726102px;}
._50{width:589.466875px;}
._33{width:936.787897px;}
._32{width:1392.077684px;}
._2f{width:1407.485677px;}
._5{width:1931.845615px;}
._3a{width:2538.301367px;}
._3d{width:2543.341365px;}
._3{width:2579.040000px;}
.fc6{color:rgb(51,51,153);}
.fc4{color:rgb(218,31,40);}
.fc3{color:rgb(45,162,191);}
.fc2{color:rgb(255,0,255);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(0,51,204);}
.fc1{color:rgb(70,70,70);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:28.079989px;}
.fs2e{font-size:29.219028px;}
.fs2d{font-size:29.221908px;}
.fs28{font-size:30.239988px;}
.fs25{font-size:31.426547px;}
.fs2c{font-size:33.716147px;}
.fs1b{font-size:34.523266px;}
.fs1e{font-size:35.999986px;}
.fs2b{font-size:36.374337px;}
.fs2a{font-size:36.376545px;}
.fsb{font-size:37.799985px;}
.fs13{font-size:40.319984px;}
.fs18{font-size:41.759983px;}
.fs29{font-size:41.970943px;}
.fsf{font-size:45.104382px;}
.fs27{font-size:45.701661px;}
.fs26{font-size:45.711342px;}
.fs8{font-size:48.239981px;}
.fs17{font-size:53.279979px;}
.fs4{font-size:53.999978px;}
.fs24{font-size:54.284378px;}
.fs21{font-size:55.268618px;}
.fs6{font-size:55.439978px;}
.fs12{font-size:56.159978px;}
.fs11{font-size:56.879977px;}
.fs7{font-size:59.759976px;}
.fs20{font-size:63.356975px;}
.fs23{font-size:66.239974px;}
.fs1f{font-size:67.401573px;}
.fs3{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs1c{font-size:73.976970px;}
.fs1a{font-size:73.979970px;}
.fs14{font-size:74.963970px;}
.fs16{font-size:77.759969px;}
.fsa{font-size:80.999968px;}
.fs5{font-size:81.359967px;}
.fs1{font-size:81.360000px;}
.fs10{font-size:84.239966px;}
.fs2{font-size:84.240000px;}
.fs19{font-size:89.575164px;}
.fs15{font-size:90.211164px;}
.fse{font-size:107.999957px;}
.fsc{font-size:114.986354px;}
.fsd{font-size:115.621754px;}
.fs9{font-size:120.068352px;}
.fs22{font-size:161.999935px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.159237px;}
.y13d{bottom:2.699293px;}
.y13b{bottom:2.879294px;}
.y133{bottom:2.879298px;}
.yb4{bottom:3.239098px;}
.y44{bottom:3.779244px;}
.y66{bottom:4.139100px;}
.y62{bottom:4.499040px;}
.y68{bottom:4.499063px;}
.y2d{bottom:4.499116px;}
.y45{bottom:4.499244px;}
.y47{bottom:4.499246px;}
.y102{bottom:4.679067px;}
.y6e{bottom:5.759041px;}
.y32{bottom:5.759056px;}
.y70{bottom:5.759063px;}
.y6c{bottom:5.759065px;}
.y34{bottom:5.759085px;}
.y6a{bottom:5.939042px;}
.y2a{bottom:5.939055px;}
.y30{bottom:5.939086px;}
.ye{bottom:37.020285px;}
.y2{bottom:37.020300px;}
.yd9{bottom:187.319925px;}
.ya3{bottom:197.399921px;}
.yf0{bottom:199.379920px;}
.y3c{bottom:203.519919px;}
.ye5{bottom:203.699919px;}
.ydc{bottom:208.019917px;}
.y111{bottom:211.079916px;}
.ya4{bottom:212.159915px;}
.yd8{bottom:214.319914px;}
.y91{bottom:219.359912px;}
.y110{bottom:225.479910px;}
.ya2{bottom:227.639909px;}
.y3b{bottom:231.779907px;}
.y153{bottom:237.899905px;}
.y85{bottom:239.519904px;}
.y10f{bottom:239.879904px;}
.yd7{bottom:240.239904px;}
.yb{bottom:246.899850px;}
.y90{bottom:249.059900px;}
.y132{bottom:251.220600px;}
.y9b{bottom:254.099898px;}
.y10e{bottom:254.279898px;}
.y84{bottom:257.519897px;}
.ya1{bottom:257.879897px;}
.y3a{bottom:259.859896px;}
.y13a{bottom:260.940600px;}
.y5a{bottom:261.839895px;}
.y13e{bottom:263.280600px;}
.y13c{bottom:264.720600px;}
.ye7{bottom:265.079894px;}
.y136{bottom:265.979918px;}
.yd6{bottom:266.159894px;}
.ya{bottom:267.059850px;}
.y139{bottom:268.139834px;}
.y10d{bottom:268.679893px;}
.y135{bottom:268.859871px;}
.y137{bottom:269.399902px;}
.y134{bottom:270.119892px;}
.y138{bottom:272.279874px;}
.y8f{bottom:274.619890px;}
.y9a{bottom:279.299888px;}
.y14d{bottom:280.559888px;}
.y79{bottom:283.079887px;}
.ybe{bottom:285.419886px;}
.y39{bottom:288.119885px;}
.y14e{bottom:288.479885px;}
.y14c{bottom:289.559884px;}
.yd5{bottom:292.079883px;}
.yc3{bottom:296.759881px;}
.y10c{bottom:297.479881px;}
.y20{bottom:299.099880px;}
.y129{bottom:303.959878px;}
.y99{bottom:304.499878px;}
.y78{bottom:306.479877px;}
.ybd{bottom:307.019877px;}
.y14f{bottom:309.719876px;}
.y10b{bottom:311.879875px;}
.y9{bottom:313.319850px;}
.y1f{bottom:317.099873px;}
.y12a{bottom:317.279873px;}
.yd4{bottom:317.999873px;}
.ya0{bottom:318.359873px;}
.y8e{bottom:320.339872px;}
.y23{bottom:325.559870px;}
.y10a{bottom:326.279869px;}
.y42{bottom:326.639869px;}
.yc2{bottom:326.999869px;}
.ybc{bottom:328.619869px;}
.y98{bottom:329.699868px;}
.y77{bottom:329.879868px;}
.y12b{bottom:330.599868px;}
.y8{bottom:333.479850px;}
.y1d{bottom:339.779864px;}
.y109{bottom:340.679864px;}
.y8b{bottom:341.759863px;}
.yd3{bottom:343.919862px;}
.y104{bottom:344.639862px;}
.y150{bottom:345.179862px;}
.y9f{bottom:348.599861px;}
.y41{bottom:350.039860px;}
.ybb{bottom:350.219860px;}
.y76{bottom:353.279859px;}
.y15{bottom:354.179858px;}
.y97{bottom:354.899858px;}
.y21{bottom:355.439858px;}
.y108{bottom:356.879857px;}
.yc1{bottom:357.239857px;}
.y12c{bottom:357.959857px;}
.y8a{bottom:359.759856px;}
.y5c{bottom:363.899854px;}
.y13f{bottom:364.979854px;}
.y40{bottom:368.039853px;}
.yd2{bottom:369.839852px;}
.y12d{bottom:371.099852px;}
.yba{bottom:371.819851px;}
.y8d{bottom:372.359851px;}
.y75{bottom:376.679849px;}
.y9e{bottom:378.839848px;}
.y7{bottom:379.919850px;}
.y96{bottom:380.099848px;}
.y46{bottom:381.180600px;}
.y14{bottom:381.539847px;}
.y12e{bottom:384.419846px;}
.y43{bottom:385.500600px;}
.y92{bottom:385.679846px;}
.y151{bottom:386.759845px;}
.yc0{bottom:387.479845px;}
.y14b{bottom:388.379845px;}
.y103{bottom:391.439843px;}
.yb9{bottom:393.419843px;}
.y12f{bottom:398.459841px;}
.y6{bottom:400.079850px;}
.y86{bottom:402.059839px;}
.yd1{bottom:403.499839px;}
.y95{bottom:405.299838px;}
.y37{bottom:405.480600px;}
.y5b{bottom:406.379837px;}
.y13{bottom:408.719837px;}
.y9d{bottom:409.079836px;}
.y22{bottom:410.699836px;}
.y130{bottom:411.779835px;}
.y107{bottom:411.959835px;}
.y1e{bottom:412.139835px;}
.y3f{bottom:414.839834px;}
.yb8{bottom:415.019834px;}
.y74{bottom:416.639833px;}
.ybf{bottom:417.719833px;}
.y131{bottom:425.099830px;}
.y5d{bottom:427.619829px;}
.y106{bottom:428.159829px;}
.y14a{bottom:429.419828px;}
.y94{bottom:430.499828px;}
.y73{bottom:431.939827px;}
.y12{bottom:436.079826px;}
.yb7{bottom:436.619825px;}
.y3e{bottom:438.239825px;}
.y89{bottom:439.499824px;}
.ydb{bottom:441.119824px;}
.yea{bottom:444.359822px;}
.y5{bottom:446.339850px;}
.y72{bottom:447.419821px;}
.y9c{bottom:453.359819px;}
.y93{bottom:455.699818px;}
.y88{bottom:457.499817px;}
.yb6{bottom:458.219817px;}
.y105{bottom:460.559816px;}
.y3d{bottom:461.639815px;}
.y71{bottom:462.719815px;}
.y51{bottom:463.439815px;}
.ye9{bottom:465.959814px;}
.y4{bottom:466.499850px;}
.y8c{bottom:470.279812px;}
.y87{bottom:474.419810px;}
.yda{bottom:484.319806px;}
.ye8{bottom:487.559805px;}
.y2e{bottom:704.639718px;}
.y2c{bottom:705.180600px;}
.y2b{bottom:709.679716px;}
.ycc{bottom:717.059713px;}
.ye6{bottom:725.519710px;}
.y100{bottom:743.339703px;}
.ye4{bottom:744.599702px;}
.y64{bottom:744.959702px;}
.y11d{bottom:745.319702px;}
.y65{bottom:745.500600px;}
.y128{bottom:746.759701px;}
.y63{bottom:749.639700px;}
.yb3{bottom:751.620600px;}
.y159{bottom:752.879699px;}
.y28{bottom:753.239699px;}
.yca{bottom:755.219698px;}
.y80{bottom:762.239695px;}
.yff{bottom:763.319695px;}
.y11c{bottom:769.259692px;}
.y127{bottom:770.699692px;}
.y158{bottom:770.879692px;}
.yf5{bottom:774.659690px;}
.yb2{bottom:779.159688px;}
.y2f{bottom:779.700600px;}
.y11{bottom:780.959688px;}
.y33{bottom:780.960600px;}
.y7f{bottom:785.639686px;}
.yf6{bottom:786.899685px;}
.ye3{bottom:789.779684px;}
.y11b{bottom:790.499684px;}
.y126{bottom:791.939683px;}
.y50{bottom:796.979681px;}
.yaa{bottom:799.499680px;}
.yf7{bottom:799.679680px;}
.y59{bottom:800.399680px;}
.y143{bottom:805.079678px;}
.yc9{bottom:805.979678px;}
.y7e{bottom:809.039676px;}
.y11a{bottom:811.739675px;}
.yf8{bottom:811.919675px;}
.yef{bottom:813.179675px;}
.y19{bottom:813.539675px;}
.y144{bottom:814.619674px;}
.ye2{bottom:815.699674px;}
.y1b{bottom:817.679673px;}
.yab{bottom:819.299672px;}
.y4f{bottom:820.379672px;}
.yc{bottom:821.596500px;}
.ycb{bottom:821.999671px;}
.yf9{bottom:823.979670px;}
.ya9{bottom:824.699670px;}
.y101{bottom:828.300600px;}
.y27{bottom:829.559668px;}
.y6b{bottom:832.080600px;}
.y7d{bottom:832.439667px;}
.y119{bottom:832.799667px;}
.y125{bottom:834.239666px;}
.ycd{bottom:834.599666px;}
.yb5{bottom:834.959666px;}
.yc8{bottom:836.219666px;}
.y6f{bottom:836.400600px;}
.y58{bottom:837.119665px;}
.y145{bottom:838.199665px;}
.y67{bottom:839.100600px;}
.yac{bottom:839.279664px;}
.ye1{bottom:841.619663px;}
.y18{bottom:843.239663px;}
.y4e{bottom:846.839661px;}
.yee{bottom:848.459661px;}
.yfa{bottom:848.999660px;}
.y31{bottom:853.320600px;}
.y118{bottom:854.039658px;}
.y124{bottom:855.479658px;}
.y7c{bottom:855.839658px;}
.y29{bottom:856.200600px;}
.yad{bottom:859.079656px;}
.y142{bottom:860.699656px;}
.yfb{bottom:861.239656px;}
.y36{bottom:862.859655px;}
.y3{bottom:863.760000px;}
.y146{bottom:865.199654px;}
.y16{bottom:865.739654px;}
.yc7{bottom:866.459653px;}
.ye0{bottom:867.539653px;}
.y4d{bottom:870.239652px;}
.yfc{bottom:873.299651px;}
.ya8{bottom:873.659651px;}
.y57{bottom:874.019650px;}
.y60{bottom:874.379650px;}
.y117{bottom:875.279650px;}
.y157{bottom:876.359649px;}
.y123{bottom:876.719649px;}
.y1a{bottom:877.259649px;}
.y7b{bottom:879.239648px;}
.yae{bottom:879.959648px;}
.yfd{bottom:886.079646px;}
.y69{bottom:890.220600px;}
.y147{bottom:891.479643px;}
.y6d{bottom:891.660600px;}
.ydf{bottom:893.459643px;}
.y61{bottom:894.540600px;}
.y35{bottom:895.259642px;}
.y116{bottom:896.339641px;}
.y4c{bottom:896.519641px;}
.yc6{bottom:896.699641px;}
.y122{bottom:897.959641px;}
.yfe{bottom:898.319641px;}
.yaf{bottom:899.939640px;}
.yed{bottom:900.299640px;}
.y7a{bottom:902.639639px;}
.y156{bottom:903.539639px;}
.y26{bottom:906.059638px;}
.y148{bottom:906.779637px;}
.y56{bottom:910.739636px;}
.y141{bottom:912.359635px;}
.y10{bottom:912.719635px;}
.y115{bottom:918.479633px;}
.y121{bottom:919.019632px;}
.yde{bottom:919.379632px;}
.y4b{bottom:919.919632px;}
.yb0{bottom:920.099632px;}
.y149{bottom:920.819632px;}
.ya7{bottom:924.059630px;}
.yf4{bottom:925.679630px;}
.yec{bottom:926.219630px;}
.yc5{bottom:926.939629px;}
.y5f{bottom:928.379629px;}
.y155{bottom:930.899628px;}
.y17{bottom:936.839625px;}
.yb1{bottom:939.899624px;}
.y120{bottom:940.259624px;}
.y114{bottom:940.439624px;}
.y4a{bottom:943.319623px;}
.y25{bottom:944.399622px;}
.ydd{bottom:945.299622px;}
.yd0{bottom:946.559621px;}
.y55{bottom:947.639621px;}
.y140{bottom:952.859619px;}
.yf{bottom:955.199618px;}
.y5e{bottom:955.379618px;}
.y154{bottom:958.259617px;}
.y11f{bottom:961.499615px;}
.y113{bottom:961.679615px;}
.y83{bottom:964.559614px;}
.y49{bottom:966.719613px;}
.yf3{bottom:974.099610px;}
.yc4{bottom:977.699609px;}
.ycf{bottom:980.399608px;}
.yeb{bottom:980.579608px;}
.ya6{bottom:980.939608px;}
.y24{bottom:982.379607px;}
.y82{bottom:982.559607px;}
.y54{bottom:984.359606px;}
.y1c{bottom:987.779605px;}
.y11e{bottom:989.219604px;}
.y112{bottom:989.399604px;}
.y48{bottom:990.119604px;}
.yf2{bottom:993.899602px;}
.ya5{bottom:996.419601px;}
.y81{bottom:1000.559600px;}
.yce{bottom:1001.999599px;}
.yf1{bottom:1013.699595px;}
.y53{bottom:1018.019593px;}
.y52{bottom:1030.619588px;}
.y152{bottom:1039.619584px;}
.yd{bottom:1212.959515px;}
.y1{bottom:1213.140000px;}
.h17{height:11.160000px;}
.h33{height:16.020000px;}
.h3a{height:16.920000px;}
.h1b{height:18.720000px;}
.h27{height:21.420000px;}
.h23{height:22.320000px;}
.h1d{height:22.500000px;}
.he{height:23.400000px;}
.h12{height:28.620000px;}
.h14{height:28.800000px;}
.hb{height:29.880000px;}
.h48{height:30.474533px;}
.h47{height:30.477537px;}
.h3d{height:31.539362px;}
.h38{height:32.776907px;}
.h26{height:33.865841px;}
.h2a{height:33.882698px;}
.h18{height:34.324435px;}
.h44{height:34.920000px;}
.h46{height:35.164887px;}
.h45{height:36.540000px;}
.h11{height:37.098618px;}
.h2f{height:37.546860px;}
.h41{height:37.937296px;}
.h3f{height:37.939600px;}
.h42{height:38.446413px;}
.h43{height:39.240000px;}
.h20{height:42.086233px;}
.h2d{height:43.554358px;}
.h3e{height:43.774382px;}
.h2b{height:44.548576px;}
.h3c{height:46.804200px;}
.h3b{height:47.665404px;}
.h39{height:47.675501px;}
.h40{height:48.600000px;}
.h36{height:51.879354px;}
.h22{height:52.998026px;}
.h29{height:56.296474px;}
.h7{height:56.320290px;}
.h34{height:56.390602px;}
.h4{height:56.390625px;}
.h37{height:56.616910px;}
.h1c{height:57.047581px;}
.h32{height:57.643441px;}
.h1f{height:60.901851px;}
.h10{height:61.640975px;}
.h49{height:62.154521px;}
.h9{height:62.327788px;}
.h8{height:63.721381px;}
.h2{height:63.721406px;}
.h19{height:65.977005px;}
.h3{height:65.977031px;}
.h31{height:66.079345px;}
.h30{height:66.150958px;}
.h24{height:68.166700px;}
.h28{height:68.525393px;}
.h1e{height:68.650696px;}
.ha{height:70.664034px;}
.h25{height:72.571172px;}
.hf{height:75.027802px;}
.h6{height:75.093720px;}
.h1{height:75.093750px;}
.h5{height:75.813720px;}
.hd{height:79.457488px;}
.h13{height:87.504615px;}
.h2e{height:87.859652px;}
.h15{height:87.988155px;}
.hc{height:91.372016px;}
.h21{height:92.486213px;}
.h2c{height:96.167774px;}
.h16{height:112.640580px;}
.h1a{height:134.327759px;}
.h35{height:168.960870px;}
.h0{height:1263.000000px;}
.w4{width:3.780000px;}
.w5{width:6.300000px;}
.w7{width:7.380000px;}
.w6{width:7.560000px;}
.w3{width:9.540000px;}
.w1{width:10.080000px;}
.w8{width:10.260000px;}
.w2{width:11.160000px;}
.wa{width:13.140000px;}
.wd{width:34.740000px;}
.we{width:36.180000px;}
.wc{width:38.340000px;}
.wb{width:48.240000px;}
.w9{width:62.820000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x77{left:7.199906px;}
.x2{left:37.980000px;}
.x23{left:176.940000px;}
.x26{left:181.619927px;}
.x64{left:184.859926px;}
.x2b{left:187.380000px;}
.x6c{left:194.219922px;}
.xa{left:196.379921px;}
.x32{left:202.139919px;}
.x6{left:205.170000px;}
.x2a{left:209.339916px;}
.x25{left:211.499915px;}
.x46{left:212.759915px;}
.x34{left:213.839914px;}
.x4{left:215.099850px;}
.x16{left:216.179914px;}
.x2c{left:217.260000px;}
.x66{left:218.519913px;}
.x71{left:219.959912px;}
.x47{left:221.039912px;}
.x3a{left:225.539910px;}
.x76{left:227.700000px;}
.x39{left:228.779908px;}
.x5{left:230.219850px;}
.x42{left:232.020000px;}
.x27{left:234.719906px;}
.x72{left:239.039904px;}
.x7{left:243.179903px;}
.x31{left:244.619902px;}
.x58{left:246.959901px;}
.x17{left:249.479900px;}
.x18{left:250.919900px;}
.x43{left:255.059898px;}
.x56{left:256.680458px;}
.x35{left:258.839896px;}
.x55{left:263.160455px;}
.x41{left:264.600000px;}
.x49{left:273.059891px;}
.x59{left:280.799888px;}
.x70{left:283.140000px;}
.x4a{left:285.299886px;}
.x78{left:293.759882px;}
.x40{left:296.820000px;}
.x11{left:298.439881px;}
.x57{left:300.240483px;}
.x12{left:302.759879px;}
.x36{left:307.079877px;}
.x6d{left:313.019875px;}
.x13{left:314.999874px;}
.x6e{left:317.159873px;}
.x74{left:321.839871px;}
.x61{left:324.719870px;}
.x3f{left:327.600000px;}
.x60{left:329.759868px;}
.x67{left:334.079866px;}
.xb{left:336.779865px;}
.x5a{left:338.759864px;}
.x20{left:340.380000px;}
.x6b{left:341.999863px;}
.xc{left:345.239862px;}
.x81{left:350.819307px;}
.x84{left:352.980243px;}
.x45{left:357.660000px;}
.x3e{left:359.640000px;}
.x80{left:361.079349px;}
.x82{left:362.699351px;}
.x22{left:365.579854px;}
.x2e{left:370.260000px;}
.x7f{left:371.699386px;}
.x79{left:373.499877px;}
.x4c{left:374.759850px;}
.x1f{left:376.200000px;}
.x9{left:379.259848px;}
.x3c{left:382.679847px;}
.x19{left:387.540000px;}
.x3d{left:393.480000px;}
.x75{left:395.639842px;}
.x7c{left:402.659839px;}
.x3b{left:408.599837px;}
.x1e{left:411.660000px;}
.x69{left:413.999834px;}
.x68{left:419.039832px;}
.x7e{left:421.739540px;}
.x33{left:424.259830px;}
.x28{left:426.059830px;}
.x14{left:430.379828px;}
.x2d{left:438.300000px;}
.xd{left:443.159823px;}
.x1d{left:445.320000px;}
.x3{left:449.460000px;}
.x73{left:451.619819px;}
.x5b{left:453.239819px;}
.x62{left:457.379817px;}
.x21{left:458.459817px;}
.x5c{left:460.079816px;}
.x63{left:462.419815px;}
.x4d{left:464.399814px;}
.x4b{left:468.719813px;}
.x6f{left:470.159812px;}
.x4f{left:474.299810px;}
.x7d{left:478.079724px;}
.x1c{left:480.780000px;}
.x5e{left:485.639806px;}
.x44{left:493.740000px;}
.x53{left:495.539756px;}
.x8{left:498.419801px;}
.x38{left:502.559799px;}
.x50{left:504.359798px;}
.x37{left:511.199796px;}
.x24{left:515.339794px;}
.x1b{left:517.860000px;}
.x6a{left:520.919792px;}
.x1a{left:534.419786px;}
.x5f{left:540.899784px;}
.x48{left:544.139782px;}
.x2f{left:549.000000px;}
.x15{left:553.679779px;}
.x83{left:554.759655px;}
.x5d{left:570.599772px;}
.x7a{left:579.420000px;}
.x10{left:583.379767px;}
.xf{left:592.019763px;}
.x54{left:593.459751px;}
.xe{left:596.159762px;}
.x29{left:604.799758px;}
.x65{left:617.399753px;}
.x51{left:618.659753px;}
.x7b{left:620.640000px;}
.x52{left:623.699751px;}
.x4e{left:631.619747px;}
.x30{left:638.100000px;}
.x1{left:765.720000px;}
@media print{
.v1{vertical-align:-41.599983pt;}
.vc{vertical-align:-37.119985pt;}
.vb{vertical-align:-35.199986pt;}
.vd{vertical-align:-33.919986pt;}
.v2{vertical-align:-18.559993pt;}
.v8{vertical-align:-15.359994pt;}
.v3{vertical-align:-12.799995pt;}
.v10{vertical-align:-10.239996pt;}
.va{vertical-align:-8.959996pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.799995pt;}
.vf{vertical-align:15.359994pt;}
.ve{vertical-align:17.919993pt;}
.v11{vertical-align:28.159989pt;}
.v9{vertical-align:30.079988pt;}
.v7{vertical-align:44.799982pt;}
.v6{vertical-align:51.199980pt;}
.v5{vertical-align:63.999974pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011563pt;}
.ls11{letter-spacing:0.047360pt;}
.ls40{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.184320pt;}
.lsa{letter-spacing:0.191360pt;}
.ls2a{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.293120pt;}
.lse{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.363520pt;}
.lsc{letter-spacing:0.408960pt;}
.ls42{letter-spacing:0.555658pt;}
.ls13{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.640000pt;}
.ls41{letter-spacing:1.440613pt;}
.ls3d{letter-spacing:5.924281pt;}
.ls34{letter-spacing:10.960636pt;}
.ls30{letter-spacing:10.981116pt;}
.ls35{letter-spacing:11.600635pt;}
.ls7{letter-spacing:26.963189pt;}
.ls1{letter-spacing:27.641589pt;}
.ls10{letter-spacing:40.872944pt;}
.ls19{letter-spacing:42.879983pt;}
.lsf{letter-spacing:51.752939pt;}
.ls15{letter-spacing:53.672939pt;}
.ls18{letter-spacing:53.759978pt;}
.lsd{letter-spacing:54.763498pt;}
.ls1b{letter-spacing:57.599977pt;}
.ls2d{letter-spacing:80.363488pt;}
.ls2f{letter-spacing:81.003488pt;}
.ls2{letter-spacing:81.519327pt;}
.ls3e{letter-spacing:95.723482pt;}
.ls2e{letter-spacing:98.283481pt;}
.ls2c{letter-spacing:109.670996pt;}
.ls28{letter-spacing:126.310989pt;}
.ls29{letter-spacing:145.185222pt;}
.ls31{letter-spacing:146.862551pt;}
.ls27{letter-spacing:153.830978pt;}
.ls26{letter-spacing:156.523457pt;}
.ls2b{letter-spacing:159.905216pt;}
.ls32{letter-spacing:161.717695pt;}
.ls33{letter-spacing:167.477693pt;}
.ls3f{letter-spacing:173.163451pt;}
.ls25{letter-spacing:180.843448pt;}
.ls3b{letter-spacing:190.800564pt;}
.ls17{letter-spacing:193.832882pt;}
.ls3c{letter-spacing:206.800557pt;}
.ls36{letter-spacing:213.200555pt;}
.ls16{letter-spacing:235.432866pt;}
.ls14{letter-spacing:259.752856pt;}
.ls23{letter-spacing:264.639894pt;}
.ls3a{letter-spacing:273.360531pt;}
.ls37{letter-spacing:276.560529pt;}
.ls1f{letter-spacing:280.798608pt;}
.ls21{letter-spacing:281.040528pt;}
.ls12{letter-spacing:315.432834pt;}
.ls39{letter-spacing:326.480509pt;}
.ls38{letter-spacing:336.720505pt;}
.ls1a{letter-spacing:415.407194pt;}
.ls4{letter-spacing:435.519826pt;}
.ls6{letter-spacing:443.199823pt;}
.ls20{letter-spacing:444.479822pt;}
.ls5{letter-spacing:445.039182pt;}
.ls22{letter-spacing:453.999178pt;}
.ls24{letter-spacing:468.159813pt;}
.ls1c{letter-spacing:505.647158pt;}
.ws38{word-spacing:-40.031984pt;}
.wsa{word-spacing:-35.999986pt;}
.ws28{word-spacing:-32.878654pt;}
.wsb{word-spacing:-26.687989pt;}
.wsd{word-spacing:-23.673633pt;}
.ws1{word-spacing:-23.662080pt;}
.wsc{word-spacing:-23.662071pt;}
.ws4{word-spacing:-22.853111pt;}
.ws33{word-spacing:-20.816632pt;}
.ws3a{word-spacing:-18.047993pt;}
.ws0{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.791993pt;}
.ws26{word-spacing:-16.439993pt;}
.ws7{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.767354pt;}
.ws34{word-spacing:-13.657490pt;}
.ws23{word-spacing:-11.920635pt;}
.wsf{word-spacing:-9.963516pt;}
.ws1a{word-spacing:-9.279996pt;}
.ws48{word-spacing:-8.989049pt;}
.ws49{word-spacing:-8.988503pt;}
.ws46{word-spacing:-8.895996pt;}
.ws9{word-spacing:-8.399997pt;}
.ws3b{word-spacing:-7.765849pt;}
.ws27{word-spacing:-7.671837pt;}
.ws4a{word-spacing:-7.220347pt;}
.ws39{word-spacing:-1.535999pt;}
.ws25{word-spacing:-1.343999pt;}
.ws24{word-spacing:-0.704000pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:3.123789pt;}
.wse{word-spacing:34.239970pt;}
.ws3d{word-spacing:42.512450pt;}
.ws10{word-spacing:43.520136pt;}
.ws11{word-spacing:47.360179pt;}
.ws3f{word-spacing:47.857914pt;}
.ws1b{word-spacing:48.320037pt;}
.ws3c{word-spacing:49.700875pt;}
.ws4b{word-spacing:51.318820pt;}
.ws1c{word-spacing:53.439926pt;}
.ws18{word-spacing:67.361266pt;}
.ws15{word-spacing:68.007138pt;}
.ws14{word-spacing:71.840106pt;}
.ws19{word-spacing:72.319993pt;}
.ws41{word-spacing:92.018146pt;}
.ws2e{word-spacing:95.857285pt;}
.ws31{word-spacing:95.857658pt;}
.ws47{word-spacing:96.479961pt;}
.ws35{word-spacing:110.151979pt;}
.ws2b{word-spacing:110.577615pt;}
.ws30{word-spacing:110.577735pt;}
.ws2d{word-spacing:110.577794pt;}
.ws20{word-spacing:113.759954pt;}
.ws1f{word-spacing:123.999790pt;}
.ws36{word-spacing:131.924471pt;}
.ws37{word-spacing:132.564605pt;}
.ws21{word-spacing:134.879946pt;}
.ws1e{word-spacing:136.160106pt;}
.ws1d{word-spacing:143.198509pt;}
.ws45{word-spacing:149.119940pt;}
.ws42{word-spacing:152.178115pt;}
.ws32{word-spacing:152.817680pt;}
.ws43{word-spacing:160.198285pt;}
.ws3e{word-spacing:162.880197pt;}
.ws40{word-spacing:174.577748pt;}
.ws44{word-spacing:204.358344pt;}
.ws6{word-spacing:205.297773pt;}
.ws2f{word-spacing:207.857946pt;}
.ws2c{word-spacing:209.777707pt;}
.ws2a{word-spacing:221.297734pt;}
.ws29{word-spacing:222.577733pt;}
.ws12{word-spacing:303.217750pt;}
.ws17{word-spacing:319.923302pt;}
.ws22{word-spacing:383.199687pt;}
.ws13{word-spacing:560.495456pt;}
.ws8{word-spacing:603.025166pt;}
._c{margin-left:-317.903873pt;}
._9{margin-left:-289.588684pt;}
._8{margin-left:-281.904421pt;}
._28{margin-left:-263.412161pt;}
._b{margin-left:-262.104428pt;}
._27{margin-left:-256.368431pt;}
._2a{margin-left:-238.391492pt;}
._7{margin-left:-185.704459pt;}
._26{margin-left:-169.373852pt;}
._a{margin-left:-157.030871pt;}
._29{margin-left:-143.023409pt;}
._d{margin-left:-141.673543pt;}
._2b{margin-left:-128.687629pt;}
._3b{margin-left:-11.506392pt;}
._6{margin-left:-7.167997pt;}
._39{margin-left:-5.793276pt;}
._0{margin-left:-4.224000pt;}
._4{margin-left:-2.572784pt;}
._2{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._12{width:2.532749pt;}
._42{width:4.676450pt;}
._41{width:5.852797pt;}
._3f{width:6.877662pt;}
._40{width:7.779977pt;}
._43{width:9.731066pt;}
._14{width:13.717823pt;}
._46{width:39.402110pt;}
._47{width:42.603707pt;}
._45{width:47.861654pt;}
._44{width:60.668321pt;}
._4d{width:62.483237pt;}
._25{width:63.999974pt;}
._3c{width:65.383240pt;}
._24{width:75.839970pt;}
._35{width:109.653077pt;}
._38{width:119.259952pt;}
._15{width:121.701072pt;}
._4e{width:122.643206pt;}
._2c{width:126.205070pt;}
._3e{width:127.935949pt;}
._2d{width:133.665202pt;}
._6a{width:140.799944pt;}
._34{width:145.019837pt;}
._1f{width:147.199941pt;}
._1e{width:148.160101pt;}
._18{width:150.560100pt;}
._21{width:156.064098pt;}
._1c{width:159.359776pt;}
._13{width:161.188570pt;}
._6c{width:167.743931pt;}
._1b{width:170.239932pt;}
._17{width:171.200092pt;}
._71{width:172.767746pt;}
._69{width:175.820715pt;}
._60{width:177.791929pt;}
._4c{width:180.426996pt;}
._1d{width:182.079767pt;}
._62{width:183.103927pt;}
._64{width:185.014752pt;}
._2e{width:190.043668pt;}
._61{width:191.967923pt;}
._16{width:194.240082pt;}
._f{width:199.999743pt;}
._6f{width:201.996642pt;}
._6e{width:203.711731pt;}
._49{width:206.992487pt;}
._6d{width:208.044513pt;}
._6b{width:209.055918pt;}
._4a{width:209.961838pt;}
._11{width:215.952765pt;}
._57{width:218.654565pt;}
._36{width:222.246550pt;}
._70{width:228.575784pt;}
._19{width:230.559748pt;}
._53{width:232.067619pt;}
._37{width:235.781123pt;}
._67{width:238.207905pt;}
._56{width:239.567309pt;}
._52{width:244.029387pt;}
._54{width:247.012881pt;}
._51{width:251.475071pt;}
._68{width:252.415899pt;}
._55{width:258.974491pt;}
._22{width:260.799736pt;}
._66{width:263.103895pt;}
._5e{width:268.809067pt;}
._5f{width:273.269935pt;}
._1a{width:274.559730pt;}
._63{width:279.852673pt;}
._20{width:286.624045pt;}
._65{width:288.780670pt;}
._5b{width:291.199830pt;}
._5a{width:295.662656pt;}
._59{width:297.140580pt;}
._58{width:300.150024pt;}
._4b{width:304.513070pt;}
._4f{width:305.873786pt;}
._48{width:313.268537pt;}
._5c{width:316.548300pt;}
._5d{width:330.015170pt;}
._10{width:333.990759pt;}
._e{width:403.520008pt;}
._31{width:410.501233pt;}
._23{width:447.359661pt;}
._30{width:493.978757pt;}
._50{width:523.970556pt;}
._33{width:832.700353pt;}
._32{width:1237.402386pt;}
._2f{width:1251.098380pt;}
._5{width:1717.196102pt;}
._3a{width:2256.267882pt;}
._3d{width:2260.747880pt;}
._3{width:2292.480000pt;}
.fs1d{font-size:24.959990pt;}
.fs2e{font-size:25.972470pt;}
.fs2d{font-size:25.975030pt;}
.fs28{font-size:26.879989pt;}
.fs25{font-size:27.934709pt;}
.fs2c{font-size:29.969908pt;}
.fs1b{font-size:30.687348pt;}
.fs1e{font-size:31.999987pt;}
.fs2b{font-size:32.332744pt;}
.fs2a{font-size:32.334707pt;}
.fsb{font-size:33.599987pt;}
.fs13{font-size:35.839986pt;}
.fs18{font-size:37.119985pt;}
.fs29{font-size:37.307505pt;}
.fsf{font-size:40.092784pt;}
.fs27{font-size:40.623698pt;}
.fs26{font-size:40.632304pt;}
.fs8{font-size:42.879983pt;}
.fs17{font-size:47.359981pt;}
.fs4{font-size:47.999981pt;}
.fs24{font-size:48.252781pt;}
.fs21{font-size:49.127660pt;}
.fs6{font-size:49.279980pt;}
.fs12{font-size:49.919980pt;}
.fs11{font-size:50.559980pt;}
.fs7{font-size:53.119979pt;}
.fs20{font-size:56.317311pt;}
.fs23{font-size:58.879976pt;}
.fs1f{font-size:59.912509pt;}
.fs3{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs1c{font-size:65.757307pt;}
.fs1a{font-size:65.759974pt;}
.fs14{font-size:66.634640pt;}
.fs16{font-size:69.119972pt;}
.fsa{font-size:71.999971pt;}
.fs5{font-size:72.319971pt;}
.fs1{font-size:72.320000pt;}
.fs10{font-size:74.879970pt;}
.fs2{font-size:74.880000pt;}
.fs19{font-size:79.622368pt;}
.fs15{font-size:80.187701pt;}
.fse{font-size:95.999962pt;}
.fsc{font-size:102.210092pt;}
.fsd{font-size:102.774892pt;}
.fs9{font-size:106.727424pt;}
.fs22{font-size:143.999942pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:1.919322pt;}
.y13d{bottom:2.399372pt;}
.y13b{bottom:2.559373pt;}
.y133{bottom:2.559376pt;}
.yb4{bottom:2.879198pt;}
.y44{bottom:3.359328pt;}
.y66{bottom:3.679200pt;}
.y62{bottom:3.999147pt;}
.y68{bottom:3.999167pt;}
.y2d{bottom:3.999214pt;}
.y45{bottom:3.999328pt;}
.y47{bottom:3.999330pt;}
.y102{bottom:4.159170pt;}
.y6e{bottom:5.119148pt;}
.y32{bottom:5.119161pt;}
.y70{bottom:5.119167pt;}
.y6c{bottom:5.119169pt;}
.y34{bottom:5.119187pt;}
.y6a{bottom:5.279148pt;}
.y2a{bottom:5.279160pt;}
.y30{bottom:5.279187pt;}
.ye{bottom:32.906920pt;}
.y2{bottom:32.906933pt;}
.yd9{bottom:166.506600pt;}
.ya3{bottom:175.466596pt;}
.yf0{bottom:177.226596pt;}
.y3c{bottom:180.906594pt;}
.ye5{bottom:181.066594pt;}
.ydc{bottom:184.906593pt;}
.y111{bottom:187.626592pt;}
.ya4{bottom:188.586591pt;}
.yd8{bottom:190.506590pt;}
.y91{bottom:194.986589pt;}
.y110{bottom:200.426586pt;}
.ya2{bottom:202.346586pt;}
.y3b{bottom:206.026584pt;}
.y153{bottom:211.466582pt;}
.y85{bottom:212.906582pt;}
.y10f{bottom:213.226581pt;}
.yd7{bottom:213.546581pt;}
.yb{bottom:219.466533pt;}
.y90{bottom:221.386578pt;}
.y132{bottom:223.307200pt;}
.y9b{bottom:225.866576pt;}
.y10e{bottom:226.026576pt;}
.y84{bottom:228.906575pt;}
.ya1{bottom:229.226575pt;}
.y3a{bottom:230.986574pt;}
.y13a{bottom:231.947200pt;}
.y5a{bottom:232.746574pt;}
.y13e{bottom:234.027200pt;}
.y13c{bottom:235.307200pt;}
.ye7{bottom:235.626572pt;}
.y136{bottom:236.426594pt;}
.yd6{bottom:236.586572pt;}
.ya{bottom:237.386533pt;}
.y139{bottom:238.346520pt;}
.y10d{bottom:238.826571pt;}
.y135{bottom:238.986552pt;}
.y137{bottom:239.466579pt;}
.y134{bottom:240.106571pt;}
.y138{bottom:242.026554pt;}
.y8f{bottom:244.106569pt;}
.y9a{bottom:248.266567pt;}
.y14d{bottom:249.386567pt;}
.y79{bottom:251.626566pt;}
.ybe{bottom:253.706565pt;}
.y39{bottom:256.106564pt;}
.y14e{bottom:256.426564pt;}
.y14c{bottom:257.386564pt;}
.yd5{bottom:259.626563pt;}
.yc3{bottom:263.786561pt;}
.y10c{bottom:264.426561pt;}
.y20{bottom:265.866560pt;}
.y129{bottom:270.186559pt;}
.y99{bottom:270.666558pt;}
.y78{bottom:272.426558pt;}
.ybd{bottom:272.906558pt;}
.y14f{bottom:275.306557pt;}
.y10b{bottom:277.226556pt;}
.y9{bottom:278.506533pt;}
.y1f{bottom:281.866554pt;}
.y12a{bottom:282.026554pt;}
.yd4{bottom:282.666554pt;}
.ya0{bottom:282.986553pt;}
.y8e{bottom:284.746553pt;}
.y23{bottom:289.386551pt;}
.y10a{bottom:290.026551pt;}
.y42{bottom:290.346551pt;}
.yc2{bottom:290.666550pt;}
.ybc{bottom:292.106550pt;}
.y98{bottom:293.066549pt;}
.y77{bottom:293.226549pt;}
.y12b{bottom:293.866549pt;}
.y8{bottom:296.426533pt;}
.y1d{bottom:302.026546pt;}
.y109{bottom:302.826546pt;}
.y8b{bottom:303.786545pt;}
.yd3{bottom:305.706544pt;}
.y104{bottom:306.346544pt;}
.y150{bottom:306.826544pt;}
.y9f{bottom:309.866543pt;}
.y41{bottom:311.146542pt;}
.ybb{bottom:311.306542pt;}
.y76{bottom:314.026541pt;}
.y15{bottom:314.826541pt;}
.y97{bottom:315.466540pt;}
.y21{bottom:315.946540pt;}
.y108{bottom:317.226540pt;}
.yc1{bottom:317.546540pt;}
.y12c{bottom:318.186539pt;}
.y8a{bottom:319.786539pt;}
.y5c{bottom:323.466537pt;}
.y13f{bottom:324.426537pt;}
.y40{bottom:327.146536pt;}
.yd2{bottom:328.746535pt;}
.y12d{bottom:329.866535pt;}
.yba{bottom:330.506534pt;}
.y8d{bottom:330.986534pt;}
.y75{bottom:334.826533pt;}
.y9e{bottom:336.746532pt;}
.y7{bottom:337.706533pt;}
.y96{bottom:337.866532pt;}
.y46{bottom:338.827200pt;}
.y14{bottom:339.146531pt;}
.y12e{bottom:341.706530pt;}
.y43{bottom:342.667200pt;}
.y92{bottom:342.826530pt;}
.y151{bottom:343.786529pt;}
.yc0{bottom:344.426529pt;}
.y14b{bottom:345.226529pt;}
.y103{bottom:347.946527pt;}
.yb9{bottom:349.706527pt;}
.y12f{bottom:354.186525pt;}
.y6{bottom:355.626533pt;}
.y86{bottom:357.386524pt;}
.yd1{bottom:358.666523pt;}
.y95{bottom:360.266523pt;}
.y37{bottom:360.427200pt;}
.y5b{bottom:361.226522pt;}
.y13{bottom:363.306521pt;}
.y9d{bottom:363.626521pt;}
.y22{bottom:365.066521pt;}
.y130{bottom:366.026520pt;}
.y107{bottom:366.186520pt;}
.y1e{bottom:366.346520pt;}
.y3f{bottom:368.746519pt;}
.yb8{bottom:368.906519pt;}
.y74{bottom:370.346519pt;}
.ybf{bottom:371.306518pt;}
.y131{bottom:377.866516pt;}
.y5d{bottom:380.106515pt;}
.y106{bottom:380.586514pt;}
.y14a{bottom:381.706514pt;}
.y94{bottom:382.666514pt;}
.y73{bottom:383.946513pt;}
.y12{bottom:387.626512pt;}
.yb7{bottom:388.106511pt;}
.y3e{bottom:389.546511pt;}
.y89{bottom:390.666510pt;}
.ydb{bottom:392.106510pt;}
.yea{bottom:394.986509pt;}
.y5{bottom:396.746533pt;}
.y72{bottom:397.706508pt;}
.y9c{bottom:402.986505pt;}
.y93{bottom:405.066505pt;}
.y88{bottom:406.666504pt;}
.yb6{bottom:407.306504pt;}
.y105{bottom:409.386503pt;}
.y3d{bottom:410.346503pt;}
.y71{bottom:411.306502pt;}
.y51{bottom:411.946502pt;}
.ye9{bottom:414.186501pt;}
.y4{bottom:414.666533pt;}
.y8c{bottom:418.026499pt;}
.y87{bottom:421.706498pt;}
.yda{bottom:430.506494pt;}
.ye8{bottom:433.386493pt;}
.y2e{bottom:626.346416pt;}
.y2c{bottom:626.827200pt;}
.y2b{bottom:630.826414pt;}
.ycc{bottom:637.386412pt;}
.ye6{bottom:644.906409pt;}
.y100{bottom:660.746402pt;}
.ye4{bottom:661.866402pt;}
.y64{bottom:662.186402pt;}
.y11d{bottom:662.506402pt;}
.y65{bottom:662.667200pt;}
.y128{bottom:663.786401pt;}
.y63{bottom:666.346400pt;}
.yb3{bottom:668.107200pt;}
.y159{bottom:669.226399pt;}
.y28{bottom:669.546399pt;}
.yca{bottom:671.306398pt;}
.y80{bottom:677.546396pt;}
.yff{bottom:678.506395pt;}
.y11c{bottom:683.786393pt;}
.y127{bottom:685.066393pt;}
.y158{bottom:685.226393pt;}
.yf5{bottom:688.586391pt;}
.yb2{bottom:692.586390pt;}
.y2f{bottom:693.067200pt;}
.y11{bottom:694.186389pt;}
.y33{bottom:694.187200pt;}
.y7f{bottom:698.346387pt;}
.yf6{bottom:699.466387pt;}
.ye3{bottom:702.026386pt;}
.y11b{bottom:702.666386pt;}
.y126{bottom:703.946385pt;}
.y50{bottom:708.426383pt;}
.yaa{bottom:710.666382pt;}
.yf7{bottom:710.826382pt;}
.y59{bottom:711.466382pt;}
.y143{bottom:715.626380pt;}
.yc9{bottom:716.426380pt;}
.y7e{bottom:719.146379pt;}
.y11a{bottom:721.546378pt;}
.yf8{bottom:721.706378pt;}
.yef{bottom:722.826378pt;}
.y19{bottom:723.146377pt;}
.y144{bottom:724.106377pt;}
.ye2{bottom:725.066377pt;}
.y1b{bottom:726.826376pt;}
.yab{bottom:728.266375pt;}
.y4f{bottom:729.226375pt;}
.yc{bottom:730.308000pt;}
.ycb{bottom:730.666374pt;}
.yf9{bottom:732.426374pt;}
.ya9{bottom:733.066373pt;}
.y101{bottom:736.267200pt;}
.y27{bottom:737.386372pt;}
.y6b{bottom:739.627200pt;}
.y7d{bottom:739.946371pt;}
.y119{bottom:740.266371pt;}
.y125{bottom:741.546370pt;}
.ycd{bottom:741.866370pt;}
.yb5{bottom:742.186370pt;}
.yc8{bottom:743.306369pt;}
.y6f{bottom:743.467200pt;}
.y58{bottom:744.106369pt;}
.y145{bottom:745.066369pt;}
.y67{bottom:745.867200pt;}
.yac{bottom:746.026368pt;}
.ye1{bottom:748.106367pt;}
.y18{bottom:749.546367pt;}
.y4e{bottom:752.746366pt;}
.yee{bottom:754.186365pt;}
.yfa{bottom:754.666365pt;}
.y31{bottom:758.507200pt;}
.y118{bottom:759.146363pt;}
.y124{bottom:760.426362pt;}
.y7c{bottom:760.746362pt;}
.y29{bottom:761.067200pt;}
.yad{bottom:763.626361pt;}
.y142{bottom:765.066361pt;}
.yfb{bottom:765.546360pt;}
.y36{bottom:766.986360pt;}
.y3{bottom:767.786667pt;}
.y146{bottom:769.066359pt;}
.y16{bottom:769.546359pt;}
.yc7{bottom:770.186359pt;}
.ye0{bottom:771.146358pt;}
.y4d{bottom:773.546357pt;}
.yfc{bottom:776.266356pt;}
.ya8{bottom:776.586356pt;}
.y57{bottom:776.906356pt;}
.y60{bottom:777.226356pt;}
.y117{bottom:778.026355pt;}
.y157{bottom:778.986355pt;}
.y123{bottom:779.306355pt;}
.y1a{bottom:779.786355pt;}
.y7b{bottom:781.546354pt;}
.yae{bottom:782.186354pt;}
.yfd{bottom:787.626352pt;}
.y69{bottom:791.307200pt;}
.y147{bottom:792.426350pt;}
.y6d{bottom:792.587200pt;}
.ydf{bottom:794.186349pt;}
.y61{bottom:795.147200pt;}
.y35{bottom:795.786348pt;}
.y116{bottom:796.746348pt;}
.y4c{bottom:796.906348pt;}
.yc6{bottom:797.066348pt;}
.y122{bottom:798.186347pt;}
.yfe{bottom:798.506347pt;}
.yaf{bottom:799.946347pt;}
.yed{bottom:800.266347pt;}
.y7a{bottom:802.346346pt;}
.y156{bottom:803.146345pt;}
.y26{bottom:805.386345pt;}
.y148{bottom:806.026344pt;}
.y56{bottom:809.546343pt;}
.y141{bottom:810.986342pt;}
.y10{bottom:811.306342pt;}
.y115{bottom:816.426340pt;}
.y121{bottom:816.906340pt;}
.yde{bottom:817.226340pt;}
.y4b{bottom:817.706340pt;}
.yb0{bottom:817.866340pt;}
.y149{bottom:818.506339pt;}
.ya7{bottom:821.386338pt;}
.yf4{bottom:822.826338pt;}
.yec{bottom:823.306337pt;}
.yc5{bottom:823.946337pt;}
.y5f{bottom:825.226337pt;}
.y155{bottom:827.466336pt;}
.y17{bottom:832.746334pt;}
.yb1{bottom:835.466332pt;}
.y120{bottom:835.786332pt;}
.y114{bottom:835.946332pt;}
.y4a{bottom:838.506331pt;}
.y25{bottom:839.466331pt;}
.ydd{bottom:840.266331pt;}
.yd0{bottom:841.386330pt;}
.y55{bottom:842.346330pt;}
.y140{bottom:846.986328pt;}
.yf{bottom:849.066327pt;}
.y5e{bottom:849.226327pt;}
.y154{bottom:851.786326pt;}
.y11f{bottom:854.666325pt;}
.y113{bottom:854.826325pt;}
.y83{bottom:857.386324pt;}
.y49{bottom:859.306323pt;}
.yf3{bottom:865.866320pt;}
.yc4{bottom:869.066319pt;}
.ycf{bottom:871.466318pt;}
.yeb{bottom:871.626318pt;}
.ya6{bottom:871.946318pt;}
.y24{bottom:873.226317pt;}
.y82{bottom:873.386317pt;}
.y54{bottom:874.986317pt;}
.y1c{bottom:878.026315pt;}
.y11e{bottom:879.306315pt;}
.y112{bottom:879.466315pt;}
.y48{bottom:880.106315pt;}
.yf2{bottom:883.466313pt;}
.ya5{bottom:885.706312pt;}
.y81{bottom:889.386311pt;}
.yce{bottom:890.666310pt;}
.yf1{bottom:901.066306pt;}
.y53{bottom:904.906305pt;}
.y52{bottom:916.106300pt;}
.y152{bottom:924.106297pt;}
.yd{bottom:1078.186235pt;}
.y1{bottom:1078.346667pt;}
.h17{height:9.920000pt;}
.h33{height:14.240000pt;}
.h3a{height:15.040000pt;}
.h1b{height:16.640000pt;}
.h27{height:19.040000pt;}
.h23{height:19.840000pt;}
.h1d{height:20.000000pt;}
.he{height:20.800000pt;}
.h12{height:25.440000pt;}
.h14{height:25.600000pt;}
.hb{height:26.560000pt;}
.h48{height:27.088474pt;}
.h47{height:27.091144pt;}
.h3d{height:28.034989pt;}
.h38{height:29.135028pt;}
.h26{height:30.102970pt;}
.h2a{height:30.117954pt;}
.h18{height:30.510609pt;}
.h44{height:31.040000pt;}
.h46{height:31.257677pt;}
.h45{height:32.480000pt;}
.h11{height:32.976549pt;}
.h2f{height:33.374987pt;}
.h41{height:33.722041pt;}
.h3f{height:33.724089pt;}
.h42{height:34.174590pt;}
.h43{height:34.880000pt;}
.h20{height:37.409985pt;}
.h2d{height:38.714985pt;}
.h3e{height:38.910562pt;}
.h2b{height:39.598734pt;}
.h3c{height:41.603733pt;}
.h3b{height:42.369248pt;}
.h39{height:42.378223pt;}
.h40{height:43.200000pt;}
.h36{height:46.114982pt;}
.h22{height:47.109356pt;}
.h29{height:50.041311pt;}
.h7{height:50.062480pt;}
.h34{height:50.124980pt;}
.h4{height:50.125000pt;}
.h37{height:50.326142pt;}
.h1c{height:50.708961pt;}
.h32{height:51.238615pt;}
.h1f{height:54.134978pt;}
.h10{height:54.791978pt;}
.h49{height:55.248463pt;}
.h9{height:55.402478pt;}
.h8{height:56.641227pt;}
.h2{height:56.641250pt;}
.h19{height:58.646227pt;}
.h3{height:58.646250pt;}
.h31{height:58.737195pt;}
.h30{height:58.800851pt;}
.h24{height:60.592622pt;}
.h28{height:60.911460pt;}
.h1e{height:61.022841pt;}
.ha{height:62.812475pt;}
.h25{height:64.507709pt;}
.hf{height:66.691380pt;}
.h6{height:66.749973pt;}
.h1{height:66.750000pt;}
.h5{height:67.389973pt;}
.hd{height:70.628878pt;}
.h13{height:77.781880pt;}
.h2e{height:78.097469pt;}
.h15{height:78.211693pt;}
.hc{height:81.219570pt;}
.h21{height:82.209967pt;}
.h2c{height:85.482466pt;}
.h16{height:100.124960pt;}
.h1a{height:119.402452pt;}
.h35{height:150.187440pt;}
.h0{height:1122.666667pt;}
.w4{width:3.360000pt;}
.w5{width:5.600000pt;}
.w7{width:6.560000pt;}
.w6{width:6.720000pt;}
.w3{width:8.480000pt;}
.w1{width:8.960000pt;}
.w8{width:9.120000pt;}
.w2{width:9.920000pt;}
.wa{width:11.680000pt;}
.wd{width:30.880000pt;}
.we{width:32.160000pt;}
.wc{width:34.080000pt;}
.wb{width:42.880000pt;}
.w9{width:55.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x77{left:6.399916pt;}
.x2{left:33.760000pt;}
.x23{left:157.280000pt;}
.x26{left:161.439935pt;}
.x64{left:164.319934pt;}
.x2b{left:166.560000pt;}
.x6c{left:172.639931pt;}
.xa{left:174.559930pt;}
.x32{left:179.679928pt;}
.x6{left:182.373333pt;}
.x2a{left:186.079926pt;}
.x25{left:187.999925pt;}
.x46{left:189.119924pt;}
.x34{left:190.079924pt;}
.x4{left:191.199867pt;}
.x16{left:192.159923pt;}
.x2c{left:193.120000pt;}
.x66{left:194.239922pt;}
.x71{left:195.519922pt;}
.x47{left:196.479921pt;}
.x3a{left:200.479920pt;}
.x76{left:202.400000pt;}
.x39{left:203.359919pt;}
.x5{left:204.639867pt;}
.x42{left:206.240000pt;}
.x27{left:208.639917pt;}
.x72{left:212.479915pt;}
.x7{left:216.159914pt;}
.x31{left:217.439913pt;}
.x58{left:219.519912pt;}
.x17{left:221.759911pt;}
.x18{left:223.039911pt;}
.x43{left:226.719909pt;}
.x56{left:228.160407pt;}
.x35{left:230.079908pt;}
.x55{left:233.920404pt;}
.x41{left:235.200000pt;}
.x49{left:242.719903pt;}
.x59{left:249.599900pt;}
.x70{left:251.680000pt;}
.x4a{left:253.599899pt;}
.x78{left:261.119896pt;}
.x40{left:263.840000pt;}
.x11{left:265.279894pt;}
.x57{left:266.880430pt;}
.x12{left:269.119892pt;}
.x36{left:272.959891pt;}
.x6d{left:278.239889pt;}
.x13{left:279.999888pt;}
.x6e{left:281.919887pt;}
.x74{left:286.079886pt;}
.x61{left:288.639885pt;}
.x3f{left:291.200000pt;}
.x60{left:293.119883pt;}
.x67{left:296.959881pt;}
.xb{left:299.359880pt;}
.x5a{left:301.119880pt;}
.x20{left:302.560000pt;}
.x6b{left:303.999878pt;}
.xc{left:306.879877pt;}
.x81{left:311.839384pt;}
.x84{left:313.760216pt;}
.x45{left:317.920000pt;}
.x3e{left:319.680000pt;}
.x80{left:320.959421pt;}
.x82{left:322.399423pt;}
.x22{left:324.959870pt;}
.x2e{left:329.120000pt;}
.x7f{left:330.399454pt;}
.x79{left:331.999891pt;}
.x4c{left:333.119867pt;}
.x1f{left:334.400000pt;}
.x9{left:337.119865pt;}
.x3c{left:340.159864pt;}
.x19{left:344.480000pt;}
.x3d{left:349.760000pt;}
.x75{left:351.679859pt;}
.x7c{left:357.919857pt;}
.x3b{left:363.199855pt;}
.x1e{left:365.920000pt;}
.x69{left:367.999853pt;}
.x68{left:372.479851pt;}
.x7e{left:374.879591pt;}
.x33{left:377.119849pt;}
.x28{left:378.719849pt;}
.x14{left:382.559847pt;}
.x2d{left:389.600000pt;}
.xd{left:393.919842pt;}
.x1d{left:395.840000pt;}
.x3{left:399.520000pt;}
.x73{left:401.439839pt;}
.x5b{left:402.879839pt;}
.x62{left:406.559837pt;}
.x21{left:407.519837pt;}
.x5c{left:408.959836pt;}
.x63{left:411.039836pt;}
.x4d{left:412.799835pt;}
.x4b{left:416.639833pt;}
.x6f{left:417.919833pt;}
.x4f{left:421.599831pt;}
.x7d{left:424.959755pt;}
.x1c{left:427.360000pt;}
.x5e{left:431.679827pt;}
.x44{left:438.880000pt;}
.x53{left:440.479783pt;}
.x8{left:443.039823pt;}
.x38{left:446.719821pt;}
.x50{left:448.319821pt;}
.x37{left:454.399818pt;}
.x24{left:458.079817pt;}
.x1b{left:460.320000pt;}
.x6a{left:463.039815pt;}
.x1a{left:475.039810pt;}
.x5f{left:480.799808pt;}
.x48{left:483.679807pt;}
.x2f{left:488.000000pt;}
.x15{left:492.159803pt;}
.x83{left:493.119693pt;}
.x5d{left:507.199797pt;}
.x7a{left:515.040000pt;}
.x10{left:518.559793pt;}
.xf{left:526.239790pt;}
.x54{left:527.519779pt;}
.xe{left:529.919788pt;}
.x29{left:537.599785pt;}
.x65{left:548.799780pt;}
.x51{left:549.919780pt;}
.x7b{left:551.680000pt;}
.x52{left:554.399778pt;}
.x4e{left:561.439775pt;}
.x30{left:567.200000pt;}
.x1{left:680.640000pt;}
}




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