
    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_8cf7d554c5080515f8b96494.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7f89beea75811d803d564f5c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce74ff3af119b90d9ae8f4eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_173c85fc7227887bb3638c98.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2ba31fca1f02b5624df82983.woff')format("woff");}.ff5{font-family:ff5;line-height:0.693000;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_af86f72a352fe8d3a24f84dc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.710000;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_c1b304407c3a2f105dd5d6fa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d15168b004ea131241dc20fe.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_11360103734b05a5fa95a893.woff')format("woff");}.ff9{font-family:ff9;line-height:2.222000;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_dab352657118affc484064cb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6aac51d95554a8bbcea471f4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8be2f1ae602a0304db6ec8f3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.674000;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_61a5f7995d01ad78a30e46fd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d22706046e2cebc8b5b3bb5b.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d7af1f9514bdeb74580cb686.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_37d9f37b672725ceb36c33c5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3534a839180d019667f98397.woff')format("woff");}.ff11{font-family:ff11;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c25b76edcf1edf86d9690855.woff')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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:ff13;src:url('chunks/assets/font_61a5f7995d01ad78a30e46fd.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d22706046e2cebc8b5b3bb5b.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7317008ff377b41c05256c99.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_61a5f7995d01ad78a30e46fd.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_d22706046e2cebc8b5b3bb5b.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_f615aa0d4f2be7f23e1e50fe.woff')format("woff");}.ff18{font-family:ff18;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.va{vertical-align:-57.918000px;}
.v2{vertical-align:-14.928000px;}
.v11{vertical-align:-13.320000px;}
.v3{vertical-align:-9.816000px;}
.vf{vertical-align:-8.080200px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:10.290000px;}
.v1{vertical-align:13.182000px;}
.v6{vertical-align:16.542000px;}
.v8{vertical-align:18.912000px;}
.v10{vertical-align:21.989400px;}
.v7{vertical-align:23.754000px;}
.ve{vertical-align:36.768000px;}
.v4{vertical-align:44.280000px;}
.v9{vertical-align:46.512000px;}
.vb{vertical-align:55.950000px;}
.vc{vertical-align:87.678000px;}
.v5{vertical-align:107.076000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.001599px;}
.ls1e{letter-spacing:0.002572px;}
.ls21{letter-spacing:0.002682px;}
.ls19{letter-spacing:0.002712px;}
.ls17{letter-spacing:0.004332px;}
.ls23{letter-spacing:0.004338px;}
.ls1f{letter-spacing:0.005402px;}
.ls28{letter-spacing:0.006099px;}
.ls3b{letter-spacing:0.008040px;}
.ls58{letter-spacing:0.008160px;}
.ls39{letter-spacing:0.012060px;}
.ls57{letter-spacing:0.012240px;}
.ls2{letter-spacing:0.016012px;}
.ls5a{letter-spacing:0.020400px;}
.ls59{letter-spacing:0.024480px;}
.ls3a{letter-spacing:0.032160px;}
.lsb{letter-spacing:0.065455px;}
.ls5{letter-spacing:2.356366px;}
.ls1a{letter-spacing:2.981971px;}
.ls16{letter-spacing:2.984915px;}
.lse{letter-spacing:2.986059px;}
.ls40{letter-spacing:2.986345px;}
.ls18{letter-spacing:2.987971px;}
.ls0{letter-spacing:2.989200px;}
.ls1c{letter-spacing:2.989289px;}
.ls26{letter-spacing:2.990289px;}
.ls3{letter-spacing:2.990915px;}
.ls15{letter-spacing:2.992059px;}
.ls11{letter-spacing:3.730007px;}
.ls14{letter-spacing:5.105459px;}
.ls47{letter-spacing:5.629096px;}
.ls46{letter-spacing:5.694550px;}
.lsc{letter-spacing:7.003642px;}
.ls6{letter-spacing:7.069097px;}
.ls8{letter-spacing:7.134551px;}
.ls20{letter-spacing:7.169406px;}
.ls5c{letter-spacing:9.049440px;}
.ls5d{letter-spacing:9.065760px;}
.ls37{letter-spacing:9.660060px;}
.ls55{letter-spacing:9.804240px;}
.ls22{letter-spacing:10.160915px;}
.ls25{letter-spacing:10.164532px;}
.lsf{letter-spacing:10.421823px;}
.ls49{letter-spacing:10.865464px;}
.ls4a{letter-spacing:10.930918px;}
.ls38{letter-spacing:12.072060px;}
.ls56{letter-spacing:12.252240px;}
.ls48{letter-spacing:14.007284px;}
.ls27{letter-spacing:14.289056px;}
.lsa{letter-spacing:14.530921px;}
.ls36{letter-spacing:15.324240px;}
.ls54{letter-spacing:15.552960px;}
.ls43{letter-spacing:16.036377px;}
.ls4f{letter-spacing:16.101832px;}
.ls3d{letter-spacing:16.363650px;}
.ls45{letter-spacing:18.130924px;}
.ls9{letter-spacing:18.196379px;}
.ls2a{letter-spacing:18.392743px;}
.ls3c{letter-spacing:18.754376px;}
.ls30{letter-spacing:18.767384px;}
.ls1d{letter-spacing:18.770712px;}
.ls2e{letter-spacing:18.781320px;}
.ls35{letter-spacing:18.798887px;}
.ls50{letter-spacing:18.981834px;}
.ls12{letter-spacing:19.701835px;}
.ls34{letter-spacing:20.029108px;}
.ls53{letter-spacing:20.094562px;}
.ls2b{letter-spacing:20.749108px;}
.ls4c{letter-spacing:21.796382px;}
.ls29{letter-spacing:22.058200px;}
.ls41{letter-spacing:22.396345px;}
.ls10{letter-spacing:22.508149px;}
.ls2d{letter-spacing:23.563656px;}
.ls42{letter-spacing:24.087293px;}
.ls2f{letter-spacing:24.480020px;}
.ls32{letter-spacing:24.938203px;}
.ls2c{letter-spacing:25.461839px;}
.ls52{letter-spacing:25.527294px;}
.ls51{letter-spacing:25.592749px;}
.ls5b{letter-spacing:25.602000px;}
.ls4e{letter-spacing:26.705477px;}
.ls4{letter-spacing:26.926059px;}
.ls33{letter-spacing:27.920915px;}
.ls1b{letter-spacing:28.613234px;}
.ls3e{letter-spacing:29.127297px;}
.ls31{letter-spacing:30.043661px;}
.ls24{letter-spacing:30.105056px;}
.ls4d{letter-spacing:32.727300px;}
.ls7{letter-spacing:33.185482px;}
.ls13{letter-spacing:33.297147px;}
.ls3f{letter-spacing:154.787412px;}
.ls4b{letter-spacing:225.229279px;}
.ls44{letter-spacing:751.746081px;}
.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;}
}
.ws2d{word-spacing:-47.258221px;}
.ws2e{word-spacing:-42.637126px;}
.ws58{word-spacing:-38.703305px;}
.ws32{word-spacing:-33.211407px;}
.ws26{word-spacing:-31.771663px;}
.ws2b{word-spacing:-31.706208px;}
.ws5e{word-spacing:-23.812383px;}
.ws3b{word-spacing:-18.183288px;}
.ws45{word-spacing:-16.363650px;}
.ws82{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.943900px;}
.ws7c{word-spacing:-14.280000px;}
.ws6c{word-spacing:-14.111859px;}
.ws42{word-spacing:-14.070000px;}
.ws80{word-spacing:-13.610880px;}
.ws7d{word-spacing:-12.476640px;}
.ws41{word-spacing:-12.293160px;}
.ws7b{word-spacing:-9.073920px;}
.ws40{word-spacing:-8.940480px;}
.ws81{word-spacing:-8.160000px;}
.ws57{word-spacing:-6.375278px;}
.ws85{word-spacing:-3.796367px;}
.ws61{word-spacing:-3.652367px;}
.ws20{word-spacing:-3.272730px;}
.ws13{word-spacing:-3.207275px;}
.ws1f{word-spacing:-2.945457px;}
.ws86{word-spacing:-2.880002px;}
.ws79{word-spacing:-2.456160px;}
.ws5d{word-spacing:-2.421820px;}
.ws3e{word-spacing:-2.420040px;}
.ws21{word-spacing:-2.356366px;}
.ws8a{word-spacing:-2.259533px;}
.ws52{word-spacing:-2.225456px;}
.ws53{word-spacing:-2.160002px;}
.ws51{word-spacing:-1.898183px;}
.ws39{word-spacing:-1.767274px;}
.ws18{word-spacing:-1.374547px;}
.ws1a{word-spacing:-1.309092px;}
.ws15{word-spacing:-1.112728px;}
.ws37{word-spacing:-1.047274px;}
.ws3{word-spacing:-0.777083px;}
.ws8c{word-spacing:-0.645581px;}
.ws69{word-spacing:-0.458182px;}
.ws55{word-spacing:-0.327273px;}
.ws22{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.130909px;}
.ws14{word-spacing:-0.065455px;}
.ws89{word-spacing:-0.053798px;}
.ws2c{word-spacing:-0.052364px;}
.ws31{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.013091px;}
.ws24{word-spacing:0.065455px;}
.ws4b{word-spacing:0.130909px;}
.ws36{word-spacing:0.261818px;}
.ws46{word-spacing:0.392728px;}
.ws6d{word-spacing:0.458182px;}
.ws6e{word-spacing:0.523637px;}
.ws8d{word-spacing:1.129766px;}
.ws75{word-spacing:1.243637px;}
.ws76{word-spacing:1.309092px;}
.ws8{word-spacing:1.315063px;}
.ws35{word-spacing:1.374547px;}
.ws1d{word-spacing:1.440001px;}
.ws65{word-spacing:1.505456px;}
.ws6{word-spacing:1.613941px;}
.ws70{word-spacing:1.701820px;}
.ws30{word-spacing:1.832729px;}
.ws71{word-spacing:1.898183px;}
.ws33{word-spacing:2.029093px;}
.ws2{word-spacing:2.032370px;}
.ws1c{word-spacing:2.094547px;}
.ws48{word-spacing:2.225456px;}
.ws78{word-spacing:2.290911px;}
.ws47{word-spacing:2.421820px;}
.wsa{word-spacing:2.510575px;}
.ws8b{word-spacing:2.528525px;}
.ws1{word-spacing:2.570351px;}
.ws49{word-spacing:2.618184px;}
.ws10{word-spacing:2.945457px;}
.ws4e{word-spacing:3.010912px;}
.ws4d{word-spacing:3.076366px;}
.ws11{word-spacing:3.141821px;}
.ws8e{word-spacing:3.227904px;}
.ws5c{word-spacing:3.272730px;}
.ws5b{word-spacing:3.338185px;}
.ws44{word-spacing:3.534548px;}
.ws3c{word-spacing:3.600003px;}
.ws3d{word-spacing:3.665458px;}
.ws7{word-spacing:3.706087px;}
.ws68{word-spacing:3.730912px;}
.ws1e{word-spacing:3.796367px;}
.ws34{word-spacing:3.809458px;}
.ws66{word-spacing:3.992731px;}
.ws4{word-spacing:4.004965px;}
.ws23{word-spacing:4.123640px;}
.ws16{word-spacing:4.189094px;}
.ws1b{word-spacing:4.320004px;}
.ws9{word-spacing:4.483170px;}
.ws12{word-spacing:4.581822px;}
.ws73{word-spacing:4.778186px;}
.wsf{word-spacing:4.843640px;}
.ws6a{word-spacing:4.974550px;}
.ws5{word-spacing:5.200477px;}
.ws5f{word-spacing:5.432732px;}
.ws77{word-spacing:5.498186px;}
.ws50{word-spacing:5.642187px;}
.ws4a{word-spacing:6.414551px;}
.ws17{word-spacing:6.676369px;}
.ws63{word-spacing:6.741824px;}
.wsb{word-spacing:6.754643px;}
.ws3a{word-spacing:6.754915px;}
.ws54{word-spacing:7.461824px;}
.ws25{word-spacing:7.527279px;}
.ws27{word-spacing:7.592734px;}
.ws19{word-spacing:7.658188px;}
.ws72{word-spacing:7.723643px;}
.ws87{word-spacing:7.800768px;}
.ws84{word-spacing:7.854552px;}
.ws29{word-spacing:8.116370px;}
.ws38{word-spacing:8.181825px;}
.wsc{word-spacing:8.428360px;}
.ws6f{word-spacing:9.032735px;}
.ws4c{word-spacing:9.214298px;}
.ws28{word-spacing:9.425462px;}
.ws62{word-spacing:10.341827px;}
.ws4f{word-spacing:10.438423px;}
.ws88{word-spacing:13.395802px;}
.ws64{word-spacing:14.836370px;}
.ws67{word-spacing:16.227591px;}
.ws56{word-spacing:16.298195px;}
.wse{word-spacing:16.363650px;}
.ws74{word-spacing:17.607287px;}
.ws6b{word-spacing:21.338200px;}
.ws60{word-spacing:21.730927px;}
.ws5a{word-spacing:25.854567px;}
.ws3f{word-spacing:377.188560px;}
.ws43{word-spacing:395.077560px;}
.ws7f{word-spacing:396.429120px;}
.ws7a{word-spacing:396.486240px;}
.ws7e{word-spacing:416.461920px;}
.ws83{word-spacing:417.041280px;}
.ws59{word-spacing:711.948424px;}
._28{margin-left:-6.465980px;}
._1c{margin-left:-5.236368px;}
._3{margin-left:-4.064741px;}
._1{margin-left:-2.618184px;}
._0{margin-left:-1.434624px;}
._15{width:2.356366px;}
._13{width:5.105459px;}
._27{width:12.588826px;}
._c{width:14.590999px;}
._10{width:16.156532px;}
._2{width:18.291343px;}
._7{width:19.725948px;}
._4{width:20.801909px;}
._9{width:22.296308px;}
._24{width:23.301838px;}
._6{width:24.352627px;}
._f{width:26.574568px;}
._1b{width:27.681919px;}
._8{width:29.529166px;}
._11{width:31.549117px;}
._a{width:32.912471px;}
._5{width:34.478579px;}
._16{width:37.049982px;}
._d{width:40.578336px;}
._e{width:43.200036px;}
._12{width:45.425492px;}
._b{width:63.481697px;}
._23{width:65.454600px;}
._1d{width:83.258251px;}
._20{width:93.272805px;}
._14{width:101.981822px;}
._22{width:161.934680px;}
._1f{width:167.432867px;}
._21{width:194.661980px;}
._1e{width:227.389280px;}
._17{width:397.779000px;}
._18{width:408.375720px;}
._19{width:415.668000px;}
._25{width:424.311840px;}
._1a{width:426.264720px;}
._26{width:444.964800px;}
.fc2{color:transparent;}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.160000px;}
.fse{font-size:32.640000px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:36.180000px;}
.fsc{font-size:36.720000px;}
.fs8{font-size:44.220000px;}
.fsd{font-size:44.880000px;}
.fs2{font-size:47.820600px;}
.fs10{font-size:48.960000px;}
.fs6{font-size:52.260000px;}
.fsb{font-size:53.040000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:56.280000px;}
.fsf{font-size:57.120000px;}
.fs3{font-size:59.775600px;}
.fs11{font-size:61.200000px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.768650px;}
.ye9{bottom:7.884600px;}
.y6b{bottom:21.014550px;}
.yfd{bottom:21.124200px;}
.ye8{bottom:21.328200px;}
.yfc{bottom:22.919400px;}
.y66{bottom:38.179950px;}
.ye3{bottom:38.749800px;}
.yf8{bottom:41.269200px;}
.y6d{bottom:67.033500px;}
.yea{bottom:73.582800px;}
.ye4{bottom:77.010000px;}
.y59{bottom:77.260500px;}
.y2c{bottom:79.987500px;}
.yfe{bottom:80.823000px;}
.y67{bottom:83.314500px;}
.yf9{bottom:90.259800px;}
.yef{bottom:94.830000px;}
.y58{bottom:97.584000px;}
.yaf{bottom:99.846000px;}
.y2b{bottom:100.158000px;}
.ye5{bottom:115.260000px;}
.y57{bottom:117.907500px;}
.yae{bottom:118.137000px;}
.yd7{bottom:126.280500px;}
.y2a{bottom:126.418500px;}
.y68{bottom:128.459100px;}
.yf7{bottom:131.570400px;}
.y56{bottom:138.231000px;}
.yad{bottom:138.637500px;}
.yfa{bottom:139.260600px;}
.yd6{bottom:146.604000px;}
.y29{bottom:146.743500px;}
.ye6{bottom:153.520200px;}
.yac{bottom:156.928500px;}
.y55{bottom:158.556000px;}
.yd5{bottom:166.927500px;}
.y28{bottom:167.067000px;}
.y69{bottom:173.603700px;}
.yee{bottom:174.103800px;}
.y5b{bottom:175.282050px;}
.y83{bottom:175.492500px;}
.yab{bottom:177.429000px;}
.yd9{bottom:177.898200px;}
.y54{bottom:178.879500px;}
.y27{bottom:187.390500px;}
.yfb{bottom:188.251200px;}
.ye7{bottom:191.780400px;}
.yaa{bottom:195.721500px;}
.y53{bottom:199.203000px;}
.yd4{bottom:205.183500px;}
.y26{bottom:207.714000px;}
.ya9{bottom:216.220500px;}
.y6a{bottom:218.738250px;}
.y52{bottom:219.526500px;}
.y82{bottom:221.446500px;}
.yd3{bottom:225.508500px;}
.y25{bottom:228.037500px;}
.ya8{bottom:234.513000px;}
.y51{bottom:239.850000px;}
.y81{bottom:241.770000px;}
.y63{bottom:242.938650px;}
.ye0{bottom:246.564600px;}
.y24{bottom:248.362500px;}
.ya7{bottom:255.012000px;}
.y62{bottom:256.184550px;}
.yd2{bottom:259.281000px;}
.yf6{bottom:259.804200px;}
.ydf{bottom:260.008200px;}
.y50{bottom:260.175000px;}
.yf5{bottom:261.599400px;}
.y80{bottom:262.093500px;}
.y23{bottom:268.686000px;}
.ya6{bottom:273.304500px;}
.y5d{bottom:273.349950px;}
.ydb{bottom:277.429800px;}
.yf0{bottom:279.949200px;}
.y7f{bottom:282.417000px;}
.y22{bottom:289.009500px;}
.ya5{bottom:293.805000px;}
.yd1{bottom:297.538500px;}
.y4c{bottom:303.733500px;}
.y4d{bottom:304.225500px;}
.y4e{bottom:305.496000px;}
.y64{bottom:306.675750px;}
.y21{bottom:309.333000px;}
.y4f{bottom:311.665500px;}
.ya4{bottom:312.096000px;}
.ye1{bottom:312.262800px;}
.y5e{bottom:313.168050px;}
.yd0{bottom:317.862000px;}
.y7e{bottom:319.695000px;}
.yf1{bottom:325.216800px;}
.y7b{bottom:329.164500px;}
.y20{bottom:329.656500px;}
.ydc{bottom:329.796600px;}
.ya3{bottom:332.596500px;}
.ycf{bottom:338.185500px;}
.y7a{bottom:340.389000px;}
.y79{bottom:344.524500px;}
.y1f{bottom:349.980000px;}
.ya2{bottom:350.887500px;}
.y5f{bottom:352.996200px;}
.y7d{bottom:355.935000px;}
.yce{bottom:358.509000px;}
.y4b{bottom:360.588000px;}
.y7c{bottom:362.377500px;}
.yed{bottom:370.250400px;}
.y1e{bottom:370.305000px;}
.yf2{bottom:370.494600px;}
.ya1{bottom:371.388000px;}
.ycd{bottom:378.832500px;}
.ydd{bottom:382.163400px;}
.y48{bottom:388.297500px;}
.ya0{bottom:389.679000px;}
.y1d{bottom:390.628500px;}
.y60{bottom:392.824350px;}
.y78{bottom:395.083500px;}
.y4a{bottom:396.301500px;}
.y45{bottom:396.705000px;}
.ycc{bottom:399.157500px;}
.y44{bottom:407.929500px;}
.y9f{bottom:410.179500px;}
.y1c{bottom:410.952000px;}
.y77{bottom:415.407000px;}
.yf3{bottom:415.772400px;}
.y49{bottom:418.999500px;}
.ycb{bottom:419.481000px;}
.y47{bottom:423.474000px;}
.y46{bottom:428.383500px;}
.y9e{bottom:428.470500px;}
.y1b{bottom:431.275500px;}
.y61{bottom:432.642450px;}
.yde{bottom:434.530200px;}
.y76{bottom:435.732000px;}
.yca{bottom:439.804500px;}
.y9d{bottom:448.971000px;}
.y1a{bottom:451.599000px;}
.y43{bottom:453.624000px;}
.y75{bottom:456.055500px;}
.yc9{bottom:460.128000px;}
.yf4{bottom:461.040000px;}
.y9c{bottom:467.262000px;}
.y19{bottom:471.924000px;}
.y74{bottom:476.379000px;}
.yc8{bottom:480.451500px;}
.y42{bottom:487.368000px;}
.y18{bottom:492.247500px;}
.y73{bottom:496.702500px;}
.y11b{bottom:500.005500px;}
.yc7{bottom:500.776500px;}
.y9b{bottom:504.442500px;}
.y17{bottom:512.571000px;}
.y11a{bottom:516.444000px;}
.y72{bottom:517.026000px;}
.yc6{bottom:521.100000px;}
.y119{bottom:532.882500px;}
.y16{bottom:532.894500px;}
.y71{bottom:537.351000px;}
.yc5{bottom:541.423500px;}
.y41{bottom:541.435500px;}
.y118{bottom:549.321000px;}
.y15{bottom:553.218000px;}
.y9a{bottom:553.371000px;}
.y70{bottom:557.674500px;}
.yc4{bottom:561.747000px;}
.y117{bottom:565.759500px;}
.y14{bottom:573.543000px;}
.y99{bottom:573.696000px;}
.y40{bottom:575.179500px;}
.yc3{bottom:582.070500px;}
.y116{bottom:582.198000px;}
.yec{bottom:587.722500px;}
.y13{bottom:593.866500px;}
.y115{bottom:598.636500px;}
.yc2{bottom:602.395500px;}
.y6f{bottom:607.513500px;}
.yeb{bottom:608.046000px;}
.y98{bottom:609.139500px;}
.y12{bottom:614.190000px;}
.y114{bottom:615.075000px;}
.yda{bottom:622.053000px;}
.yc1{bottom:622.719000px;}
.y97{bottom:627.430500px;}
.y6e{bottom:627.837000px;}
.y5c{bottom:629.089500px;}
.y3f{bottom:629.247000px;}
.y113{bottom:631.512000px;}
.y96{bottom:647.931000px;}
.y112{bottom:647.950500px;}
.y11{bottom:651.450000px;}
.yc0{bottom:654.088500px;}
.ye2{bottom:654.999000px;}
.y65{bottom:661.551000px;}
.y3e{bottom:662.991000px;}
.y111{bottom:664.389000px;}
.y95{bottom:666.222000px;}
.y110{bottom:680.827500px;}
.y94{bottom:686.722500px;}
.y3d{bottom:696.733500px;}
.y10f{bottom:697.266000px;}
.y10{bottom:697.546500px;}
.ybf{bottom:698.343000px;}
.y93{bottom:705.013500px;}
.y10e{bottom:713.704500px;}
.yf{bottom:715.479000px;}
.y3c{bottom:717.058500px;}
.ybe{bottom:718.666500px;}
.y92{bottom:725.514000px;}
.y10d{bottom:730.143000px;}
.ybd{bottom:738.991500px;}
.y91{bottom:743.805000px;}
.y10c{bottom:746.581500px;}
.y3b{bottom:746.784000px;}
.ye{bottom:751.345500px;}
.y3a{bottom:755.457000px;}
.ybc{bottom:759.315000px;}
.y10b{bottom:763.020000px;}
.y90{bottom:764.305500px;}
.y39{bottom:766.681500px;}
.yd{bottom:769.278000px;}
.ybb{bottom:779.638500px;}
.y8f{bottom:782.596500px;}
.yc{bottom:787.210500px;}
.y10a{bottom:796.395000px;}
.yba{bottom:799.962000px;}
.y8e{bottom:803.097000px;}
.y38{bottom:803.398500px;}
.yb{bottom:805.143000px;}
.yb9{bottom:820.285500px;}
.y8d{bottom:821.389500px;}
.ya{bottom:823.075500px;}
.y37{bottom:836.832000px;}
.yb8{bottom:840.610500px;}
.y9{bottom:841.008000px;}
.y8c{bottom:841.888500px;}
.y109{bottom:842.490000px;}
.y8{bottom:858.942000px;}
.y8b{bottom:860.181000px;}
.y34{bottom:860.874000px;}
.yb7{bottom:860.934000px;}
.y108{bottom:862.815000px;}
.y7{bottom:876.874500px;}
.y8a{bottom:880.681500px;}
.yb6{bottom:881.257500px;}
.y107{bottom:883.138500px;}
.y36{bottom:883.146000px;}
.y35{bottom:886.419000px;}
.yd8{bottom:893.679000px;}
.y6{bottom:894.807000px;}
.y5a{bottom:896.721000px;}
.y89{bottom:898.972500px;}
.yb5{bottom:901.581000px;}
.y106{bottom:903.462000px;}
.y5{bottom:912.739500px;}
.y33{bottom:918.343500px;}
.y88{bottom:919.473000px;}
.y105{bottom:923.785500px;}
.y4{bottom:930.672000px;}
.yb4{bottom:934.225500px;}
.y87{bottom:937.764000px;}
.y32{bottom:938.667000px;}
.y104{bottom:944.109000px;}
.y3{bottom:948.606000px;}
.y86{bottom:958.264500px;}
.y31{bottom:958.990500px;}
.y103{bottom:964.434000px;}
.yb3{bottom:967.998000px;}
.y85{bottom:976.555500px;}
.y2{bottom:984.471000px;}
.y102{bottom:984.757500px;}
.y30{bottom:996.250500px;}
.yb2{bottom:1001.772000px;}
.y101{bottom:1005.081000px;}
.y84{bottom:1013.736000px;}
.y100{bottom:1025.404500px;}
.y1{bottom:1029.340500px;}
.yb1{bottom:1031.296500px;}
.y2f{bottom:1042.341000px;}
.yff{bottom:1045.728000px;}
.yb0{bottom:1051.620000px;}
.y2e{bottom:1062.664500px;}
.y2d{bottom:1082.989500px;}
.hf{height:0.000000px;}
.hb{height:24.675533px;}
.he{height:32.661470px;}
.h10{height:35.865450px;}
.hc{height:37.013299px;}
.h1d{height:37.734609px;}
.h29{height:38.297813px;}
.h19{height:40.728624px;}
.h4{height:41.125613px;}
.h3{height:41.364715px;}
.h5{height:42.141798px;}
.h7{height:45.032765px;}
.h6{height:45.294583px;}
.ha{height:45.356765px;}
.h9{height:45.362765px;}
.h24{height:45.425492px;}
.h2{height:46.082573px;}
.h1e{height:46.120078px;}
.h8{height:46.145493px;}
.h2a{height:46.808438px;}
.hd{height:49.090950px;}
.h1{height:49.637990px;}
.h2d{height:51.063750px;}
.h1b{height:54.505547px;}
.h27{height:55.319063px;}
.h1f{height:55.531275px;}
.h2b{height:56.360100px;}
.h20{height:56.654573px;}
.h2e{height:58.400100px;}
.h22{height:59.613450px;}
.h14{height:59.619450px;}
.h23{height:65.452950px;}
.h13{height:65.632950px;}
.h15{height:65.638950px;}
.h21{height:66.358950px;}
.h25{height:66.364950px;}
.h18{height:72.633450px;}
.h17{height:73.164624px;}
.h16{height:91.544765px;}
.h11{height:93.370950px;}
.h12{height:107.076000px;}
.h2c{height:196.350000px;}
.h1a{height:197.201100px;}
.h26{height:200.144400px;}
.h1c{height:470.340000px;}
.h28{height:477.360000px;}
.h0{height:1188.000000px;}
.w1{width:458.893050px;}
.w5{width:461.213400px;}
.w3{width:465.742200px;}
.w2{width:506.520000px;}
.w4{width:514.080000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:16.652850px;}
.x2a{left:24.592350px;}
.x2b{left:47.355600px;}
.x2e{left:49.596750px;}
.x4b{left:122.634600px;}
.x49{left:130.101000px;}
.x44{left:145.268400px;}
.x47{left:154.611600px;}
.x3{left:161.797500px;}
.x4{left:166.176000px;}
.x39{left:171.510000px;}
.x9{left:180.777000px;}
.x26{left:183.094500px;}
.x6{left:187.203000px;}
.x3f{left:188.797500px;}
.x43{left:196.561500px;}
.x29{left:200.338500px;}
.x40{left:202.707000px;}
.x3e{left:231.114000px;}
.x41{left:239.309700px;}
.x28{left:242.458050px;}
.x48{left:243.838500px;}
.x2c{left:268.807350px;}
.x45{left:272.819400px;}
.x4a{left:274.828800px;}
.x1{left:288.727500px;}
.x16{left:305.047500px;}
.x3c{left:324.490500px;}
.x32{left:331.522500px;}
.x1f{left:333.148500px;}
.x31{left:336.216000px;}
.x14{left:352.810500px;}
.x2{left:353.952000px;}
.x15{left:355.056000px;}
.x46{left:359.947800px;}
.xb{left:361.134000px;}
.x10{left:367.042500px;}
.x42{left:368.056800px;}
.x20{left:374.947500px;}
.x17{left:377.659500px;}
.x19{left:392.001000px;}
.x1a{left:393.541500px;}
.x18{left:399.966000px;}
.xa{left:401.553000px;}
.x5{left:403.059000px;}
.x4c{left:408.361500px;}
.x27{left:409.668000px;}
.x33{left:413.515500px;}
.x1d{left:420.157500px;}
.x1b{left:421.749000px;}
.xe{left:426.363000px;}
.xd{left:433.108500px;}
.xc{left:442.633500px;}
.xf{left:452.581500px;}
.x11{left:455.988000px;}
.x3b{left:458.877000px;}
.x38{left:478.810500px;}
.x12{left:481.834500px;}
.x2f{left:485.490000px;}
.x36{left:490.936500px;}
.x34{left:497.359500px;}
.x1c{left:499.003500px;}
.x1e{left:500.593500px;}
.x35{left:507.913500px;}
.x21{left:509.392500px;}
.x13{left:523.039500px;}
.x37{left:551.256000px;}
.x22{left:554.844000px;}
.x23{left:578.139000px;}
.x25{left:583.875000px;}
.x30{left:628.921500px;}
.x24{left:685.900500px;}
.x3a{left:709.852500px;}
.x7{left:725.217000px;}
.x8{left:740.848500px;}
.x3d{left:745.062000px;}
@media print{
.va{vertical-align:-51.482667pt;}
.v2{vertical-align:-13.269333pt;}
.v11{vertical-align:-11.840000pt;}
.v3{vertical-align:-8.725333pt;}
.vf{vertical-align:-7.182400pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:9.146667pt;}
.v1{vertical-align:11.717333pt;}
.v6{vertical-align:14.704000pt;}
.v8{vertical-align:16.810667pt;}
.v10{vertical-align:19.546133pt;}
.v7{vertical-align:21.114667pt;}
.ve{vertical-align:32.682667pt;}
.v4{vertical-align:39.360000pt;}
.v9{vertical-align:41.344000pt;}
.vb{vertical-align:49.733333pt;}
.vc{vertical-align:77.936000pt;}
.v5{vertical-align:95.178667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.001421pt;}
.ls1e{letter-spacing:0.002286pt;}
.ls21{letter-spacing:0.002384pt;}
.ls19{letter-spacing:0.002411pt;}
.ls17{letter-spacing:0.003851pt;}
.ls23{letter-spacing:0.003856pt;}
.ls1f{letter-spacing:0.004802pt;}
.ls28{letter-spacing:0.005421pt;}
.ls3b{letter-spacing:0.007147pt;}
.ls58{letter-spacing:0.007253pt;}
.ls39{letter-spacing:0.010720pt;}
.ls57{letter-spacing:0.010880pt;}
.ls2{letter-spacing:0.014233pt;}
.ls5a{letter-spacing:0.018133pt;}
.ls59{letter-spacing:0.021760pt;}
.ls3a{letter-spacing:0.028587pt;}
.lsb{letter-spacing:0.058182pt;}
.ls5{letter-spacing:2.094547pt;}
.ls1a{letter-spacing:2.650641pt;}
.ls16{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.654275pt;}
.ls40{letter-spacing:2.654529pt;}
.ls18{letter-spacing:2.655975pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1c{letter-spacing:2.657146pt;}
.ls26{letter-spacing:2.658034pt;}
.ls3{letter-spacing:2.658591pt;}
.ls15{letter-spacing:2.659608pt;}
.ls11{letter-spacing:3.315562pt;}
.ls14{letter-spacing:4.538186pt;}
.ls47{letter-spacing:5.003641pt;}
.ls46{letter-spacing:5.061822pt;}
.lsc{letter-spacing:6.225460pt;}
.ls6{letter-spacing:6.283642pt;}
.ls8{letter-spacing:6.341823pt;}
.ls20{letter-spacing:6.372805pt;}
.ls5c{letter-spacing:8.043947pt;}
.ls5d{letter-spacing:8.058453pt;}
.ls37{letter-spacing:8.586720pt;}
.ls55{letter-spacing:8.714880pt;}
.ls22{letter-spacing:9.031925pt;}
.ls25{letter-spacing:9.035139pt;}
.lsf{letter-spacing:9.263842pt;}
.ls49{letter-spacing:9.658190pt;}
.ls4a{letter-spacing:9.716372pt;}
.ls38{letter-spacing:10.730720pt;}
.ls56{letter-spacing:10.890880pt;}
.ls48{letter-spacing:12.450919pt;}
.ls27{letter-spacing:12.701383pt;}
.lsa{letter-spacing:12.916374pt;}
.ls36{letter-spacing:13.621547pt;}
.ls54{letter-spacing:13.824853pt;}
.ls43{letter-spacing:14.254557pt;}
.ls4f{letter-spacing:14.312739pt;}
.ls3d{letter-spacing:14.545467pt;}
.ls45{letter-spacing:16.116377pt;}
.ls9{letter-spacing:16.174559pt;}
.ls2a{letter-spacing:16.349105pt;}
.ls3c{letter-spacing:16.670556pt;}
.ls30{letter-spacing:16.682119pt;}
.ls1d{letter-spacing:16.685077pt;}
.ls2e{letter-spacing:16.694507pt;}
.ls35{letter-spacing:16.710121pt;}
.ls50{letter-spacing:16.872741pt;}
.ls12{letter-spacing:17.512742pt;}
.ls34{letter-spacing:17.803651pt;}
.ls53{letter-spacing:17.861833pt;}
.ls2b{letter-spacing:18.443652pt;}
.ls4c{letter-spacing:19.374562pt;}
.ls29{letter-spacing:19.607289pt;}
.ls41{letter-spacing:19.907862pt;}
.ls10{letter-spacing:20.007244pt;}
.ls2d{letter-spacing:20.945472pt;}
.ls42{letter-spacing:21.410927pt;}
.ls2f{letter-spacing:21.760018pt;}
.ls32{letter-spacing:22.167291pt;}
.ls2c{letter-spacing:22.632746pt;}
.ls52{letter-spacing:22.690928pt;}
.ls51{letter-spacing:22.749110pt;}
.ls5b{letter-spacing:22.757333pt;}
.ls4e{letter-spacing:23.738202pt;}
.ls4{letter-spacing:23.934275pt;}
.ls33{letter-spacing:24.818591pt;}
.ls1b{letter-spacing:25.433985pt;}
.ls3e{letter-spacing:25.890931pt;}
.ls31{letter-spacing:26.705477pt;}
.ls24{letter-spacing:26.760050pt;}
.ls4d{letter-spacing:29.090933pt;}
.ls7{letter-spacing:29.498206pt;}
.ls13{letter-spacing:29.597464pt;}
.ls3f{letter-spacing:137.588811pt;}
.ls4b{letter-spacing:200.203803pt;}
.ls44{letter-spacing:668.218739pt;}
.ws2d{word-spacing:-42.007308pt;}
.ws2e{word-spacing:-37.899668pt;}
.ws58{word-spacing:-34.402938pt;}
.ws32{word-spacing:-29.521250pt;}
.ws26{word-spacing:-28.241478pt;}
.ws2b{word-spacing:-28.183296pt;}
.ws5e{word-spacing:-21.166563pt;}
.ws3b{word-spacing:-16.162923pt;}
.ws45{word-spacing:-14.545467pt;}
.ws82{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.283467pt;}
.ws7c{word-spacing:-12.693333pt;}
.ws6c{word-spacing:-12.543875pt;}
.ws42{word-spacing:-12.506667pt;}
.ws80{word-spacing:-12.098560pt;}
.ws7d{word-spacing:-11.090347pt;}
.ws41{word-spacing:-10.927253pt;}
.ws7b{word-spacing:-8.065707pt;}
.ws40{word-spacing:-7.947093pt;}
.ws81{word-spacing:-7.253333pt;}
.ws57{word-spacing:-5.666914pt;}
.ws85{word-spacing:-3.374548pt;}
.ws61{word-spacing:-3.246548pt;}
.ws20{word-spacing:-2.909093pt;}
.ws13{word-spacing:-2.850911pt;}
.ws1f{word-spacing:-2.618184pt;}
.ws86{word-spacing:-2.560002pt;}
.ws79{word-spacing:-2.183253pt;}
.ws5d{word-spacing:-2.152729pt;}
.ws3e{word-spacing:-2.151147pt;}
.ws21{word-spacing:-2.094547pt;}
.ws8a{word-spacing:-2.008474pt;}
.ws52{word-spacing:-1.978183pt;}
.ws53{word-spacing:-1.920002pt;}
.ws51{word-spacing:-1.687274pt;}
.ws39{word-spacing:-1.570910pt;}
.ws18{word-spacing:-1.221819pt;}
.ws1a{word-spacing:-1.163637pt;}
.ws15{word-spacing:-0.989092pt;}
.ws37{word-spacing:-0.930910pt;}
.ws3{word-spacing:-0.690740pt;}
.ws8c{word-spacing:-0.573850pt;}
.ws69{word-spacing:-0.407273pt;}
.ws55{word-spacing:-0.290909pt;}
.ws22{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.116364pt;}
.ws14{word-spacing:-0.058182pt;}
.ws89{word-spacing:-0.047821pt;}
.ws2c{word-spacing:-0.046545pt;}
.ws31{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.011636pt;}
.ws24{word-spacing:0.058182pt;}
.ws4b{word-spacing:0.116364pt;}
.ws36{word-spacing:0.232727pt;}
.ws46{word-spacing:0.349091pt;}
.ws6d{word-spacing:0.407273pt;}
.ws6e{word-spacing:0.465455pt;}
.ws8d{word-spacing:1.004237pt;}
.ws75{word-spacing:1.105455pt;}
.ws76{word-spacing:1.163637pt;}
.ws8{word-spacing:1.168945pt;}
.ws35{word-spacing:1.221819pt;}
.ws1d{word-spacing:1.280001pt;}
.ws65{word-spacing:1.338183pt;}
.ws6{word-spacing:1.434614pt;}
.ws70{word-spacing:1.512729pt;}
.ws30{word-spacing:1.629092pt;}
.ws71{word-spacing:1.687274pt;}
.ws33{word-spacing:1.803638pt;}
.ws2{word-spacing:1.806551pt;}
.ws1c{word-spacing:1.861820pt;}
.ws48{word-spacing:1.978183pt;}
.ws78{word-spacing:2.036365pt;}
.ws47{word-spacing:2.152729pt;}
.wsa{word-spacing:2.231622pt;}
.ws8b{word-spacing:2.247578pt;}
.ws1{word-spacing:2.284756pt;}
.ws49{word-spacing:2.327275pt;}
.ws10{word-spacing:2.618184pt;}
.ws4e{word-spacing:2.676366pt;}
.ws4d{word-spacing:2.734548pt;}
.ws11{word-spacing:2.792730pt;}
.ws8e{word-spacing:2.869248pt;}
.ws5c{word-spacing:2.909093pt;}
.ws5b{word-spacing:2.967275pt;}
.ws44{word-spacing:3.141821pt;}
.ws3c{word-spacing:3.200003pt;}
.ws3d{word-spacing:3.258185pt;}
.ws7{word-spacing:3.294300pt;}
.ws68{word-spacing:3.316366pt;}
.ws1e{word-spacing:3.374548pt;}
.ws34{word-spacing:3.386185pt;}
.ws66{word-spacing:3.549094pt;}
.ws4{word-spacing:3.559969pt;}
.ws23{word-spacing:3.665458pt;}
.ws16{word-spacing:3.723639pt;}
.ws1b{word-spacing:3.840003pt;}
.ws9{word-spacing:3.985040pt;}
.ws12{word-spacing:4.072731pt;}
.ws73{word-spacing:4.247276pt;}
.wsf{word-spacing:4.305458pt;}
.ws6a{word-spacing:4.421822pt;}
.ws5{word-spacing:4.622646pt;}
.ws5f{word-spacing:4.829095pt;}
.ws77{word-spacing:4.887277pt;}
.ws50{word-spacing:5.015277pt;}
.ws4a{word-spacing:5.701823pt;}
.ws17{word-spacing:5.934550pt;}
.ws63{word-spacing:5.992732pt;}
.wsb{word-spacing:6.004127pt;}
.ws3a{word-spacing:6.004369pt;}
.ws54{word-spacing:6.632733pt;}
.ws25{word-spacing:6.690915pt;}
.ws27{word-spacing:6.749097pt;}
.ws19{word-spacing:6.807278pt;}
.ws72{word-spacing:6.865460pt;}
.ws87{word-spacing:6.934016pt;}
.ws84{word-spacing:6.981824pt;}
.ws29{word-spacing:7.214551pt;}
.ws38{word-spacing:7.272733pt;}
.wsc{word-spacing:7.491875pt;}
.ws6f{word-spacing:8.029098pt;}
.ws4c{word-spacing:8.190487pt;}
.ws28{word-spacing:8.378189pt;}
.ws62{word-spacing:9.192735pt;}
.ws4f{word-spacing:9.278598pt;}
.ws88{word-spacing:11.907379pt;}
.ws64{word-spacing:13.187884pt;}
.ws67{word-spacing:14.424525pt;}
.ws56{word-spacing:14.487285pt;}
.wse{word-spacing:14.545467pt;}
.ws74{word-spacing:15.650922pt;}
.ws6b{word-spacing:18.967289pt;}
.ws60{word-spacing:19.316380pt;}
.ws5a{word-spacing:22.981837pt;}
.ws3f{word-spacing:335.278720pt;}
.ws43{word-spacing:351.180053pt;}
.ws7f{word-spacing:352.381440pt;}
.ws7a{word-spacing:352.432213pt;}
.ws7e{word-spacing:370.188373pt;}
.ws83{word-spacing:370.703360pt;}
.ws59{word-spacing:632.843043pt;}
._28{margin-left:-5.747538pt;}
._1c{margin-left:-4.654549pt;}
._3{margin-left:-3.613103pt;}
._1{margin-left:-2.327275pt;}
._0{margin-left:-1.275221pt;}
._15{width:2.094547pt;}
._13{width:4.538186pt;}
._27{width:11.190067pt;}
._c{width:12.969777pt;}
._10{width:14.361362pt;}
._2{width:16.258972pt;}
._7{width:17.534176pt;}
._4{width:18.490586pt;}
._9{width:19.818941pt;}
._24{width:20.712745pt;}
._6{width:21.646780pt;}
._f{width:23.621838pt;}
._1b{width:24.606150pt;}
._8{width:26.248147pt;}
._11{width:28.043660pt;}
._a{width:29.255530pt;}
._5{width:30.647626pt;}
._16{width:32.933317pt;}
._d{width:36.069632pt;}
._e{width:38.400032pt;}
._12{width:40.378215pt;}
._b{width:56.428175pt;}
._23{width:58.181867pt;}
._1d{width:74.007334pt;}
._20{width:82.909160pt;}
._14{width:90.650508pt;}
._22{width:143.941938pt;}
._1f{width:148.829215pt;}
._21{width:173.032871pt;}
._1e{width:202.123805pt;}
._17{width:353.581333pt;}
._18{width:363.000640pt;}
._19{width:369.482667pt;}
._25{width:377.166080pt;}
._1a{width:378.901973pt;}
._26{width:395.524267pt;}
.fs9{font-size:28.586667pt;}
.fse{font-size:29.013333pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:32.160000pt;}
.fsc{font-size:32.640000pt;}
.fs8{font-size:39.306667pt;}
.fsd{font-size:39.893333pt;}
.fs2{font-size:42.507200pt;}
.fs10{font-size:43.520000pt;}
.fs6{font-size:46.453333pt;}
.fsb{font-size:47.146667pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:50.026667pt;}
.fsf{font-size:50.773333pt;}
.fs3{font-size:53.133867pt;}
.fs11{font-size:54.400000pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.905467pt;}
.ye9{bottom:7.008533pt;}
.y6b{bottom:18.679600pt;}
.yfd{bottom:18.777067pt;}
.ye8{bottom:18.958400pt;}
.yfc{bottom:20.372800pt;}
.y66{bottom:33.937733pt;}
.ye3{bottom:34.444267pt;}
.yf8{bottom:36.683733pt;}
.y6d{bottom:59.585333pt;}
.yea{bottom:65.406933pt;}
.ye4{bottom:68.453333pt;}
.y59{bottom:68.676000pt;}
.y2c{bottom:71.100000pt;}
.yfe{bottom:71.842667pt;}
.y67{bottom:74.057333pt;}
.yf9{bottom:80.230933pt;}
.yef{bottom:84.293333pt;}
.y58{bottom:86.741333pt;}
.yaf{bottom:88.752000pt;}
.y2b{bottom:89.029333pt;}
.ye5{bottom:102.453333pt;}
.y57{bottom:104.806667pt;}
.yae{bottom:105.010667pt;}
.yd7{bottom:112.249333pt;}
.y2a{bottom:112.372000pt;}
.y68{bottom:114.185867pt;}
.yf7{bottom:116.951467pt;}
.y56{bottom:122.872000pt;}
.yad{bottom:123.233333pt;}
.yfa{bottom:123.787200pt;}
.yd6{bottom:130.314667pt;}
.y29{bottom:130.438667pt;}
.ye6{bottom:136.462400pt;}
.yac{bottom:139.492000pt;}
.y55{bottom:140.938667pt;}
.yd5{bottom:148.380000pt;}
.y28{bottom:148.504000pt;}
.y69{bottom:154.314400pt;}
.yee{bottom:154.758933pt;}
.y5b{bottom:155.806267pt;}
.y83{bottom:155.993333pt;}
.yab{bottom:157.714667pt;}
.yd9{bottom:158.131733pt;}
.y54{bottom:159.004000pt;}
.y27{bottom:166.569333pt;}
.yfb{bottom:167.334400pt;}
.ye7{bottom:170.471467pt;}
.yaa{bottom:173.974667pt;}
.y53{bottom:177.069333pt;}
.yd4{bottom:182.385333pt;}
.y26{bottom:184.634667pt;}
.ya9{bottom:192.196000pt;}
.y6a{bottom:194.434000pt;}
.y52{bottom:195.134667pt;}
.y82{bottom:196.841333pt;}
.yd3{bottom:200.452000pt;}
.y25{bottom:202.700000pt;}
.ya8{bottom:208.456000pt;}
.y51{bottom:213.200000pt;}
.y81{bottom:214.906667pt;}
.y63{bottom:215.945467pt;}
.ye0{bottom:219.168533pt;}
.y24{bottom:220.766667pt;}
.ya7{bottom:226.677333pt;}
.y62{bottom:227.719600pt;}
.yd2{bottom:230.472000pt;}
.yf6{bottom:230.937067pt;}
.ydf{bottom:231.118400pt;}
.y50{bottom:231.266667pt;}
.yf5{bottom:232.532800pt;}
.y80{bottom:232.972000pt;}
.y23{bottom:238.832000pt;}
.ya6{bottom:242.937333pt;}
.y5d{bottom:242.977733pt;}
.ydb{bottom:246.604267pt;}
.yf0{bottom:248.843733pt;}
.y7f{bottom:251.037333pt;}
.y22{bottom:256.897333pt;}
.ya5{bottom:261.160000pt;}
.yd1{bottom:264.478667pt;}
.y4c{bottom:269.985333pt;}
.y4d{bottom:270.422667pt;}
.y4e{bottom:271.552000pt;}
.y64{bottom:272.600667pt;}
.y21{bottom:274.962667pt;}
.y4f{bottom:277.036000pt;}
.ya4{bottom:277.418667pt;}
.ye1{bottom:277.566933pt;}
.y5e{bottom:278.371600pt;}
.yd0{bottom:282.544000pt;}
.y7e{bottom:284.173333pt;}
.yf1{bottom:289.081600pt;}
.y7b{bottom:292.590667pt;}
.y20{bottom:293.028000pt;}
.ydc{bottom:293.152533pt;}
.ya3{bottom:295.641333pt;}
.ycf{bottom:300.609333pt;}
.y7a{bottom:302.568000pt;}
.y79{bottom:306.244000pt;}
.y1f{bottom:311.093333pt;}
.ya2{bottom:311.900000pt;}
.y5f{bottom:313.774400pt;}
.y7d{bottom:316.386667pt;}
.yce{bottom:318.674667pt;}
.y4b{bottom:320.522667pt;}
.y7c{bottom:322.113333pt;}
.yed{bottom:329.111467pt;}
.y1e{bottom:329.160000pt;}
.yf2{bottom:329.328533pt;}
.ya1{bottom:330.122667pt;}
.ycd{bottom:336.740000pt;}
.ydd{bottom:339.700800pt;}
.y48{bottom:345.153333pt;}
.ya0{bottom:346.381333pt;}
.y1d{bottom:347.225333pt;}
.y60{bottom:349.177200pt;}
.y78{bottom:351.185333pt;}
.y4a{bottom:352.268000pt;}
.y45{bottom:352.626667pt;}
.ycc{bottom:354.806667pt;}
.y44{bottom:362.604000pt;}
.y9f{bottom:364.604000pt;}
.y1c{bottom:365.290667pt;}
.y77{bottom:369.250667pt;}
.yf3{bottom:369.575467pt;}
.y49{bottom:372.444000pt;}
.ycb{bottom:372.872000pt;}
.y47{bottom:376.421333pt;}
.y46{bottom:380.785333pt;}
.y9e{bottom:380.862667pt;}
.y1b{bottom:383.356000pt;}
.y61{bottom:384.571067pt;}
.yde{bottom:386.249067pt;}
.y76{bottom:387.317333pt;}
.yca{bottom:390.937333pt;}
.y9d{bottom:399.085333pt;}
.y1a{bottom:401.421333pt;}
.y43{bottom:403.221333pt;}
.y75{bottom:405.382667pt;}
.yc9{bottom:409.002667pt;}
.yf4{bottom:409.813333pt;}
.y9c{bottom:415.344000pt;}
.y19{bottom:419.488000pt;}
.y74{bottom:423.448000pt;}
.yc8{bottom:427.068000pt;}
.y42{bottom:433.216000pt;}
.y18{bottom:437.553333pt;}
.y73{bottom:441.513333pt;}
.y11b{bottom:444.449333pt;}
.yc7{bottom:445.134667pt;}
.y9b{bottom:448.393333pt;}
.y17{bottom:455.618667pt;}
.y11a{bottom:459.061333pt;}
.y72{bottom:459.578667pt;}
.yc6{bottom:463.200000pt;}
.y119{bottom:473.673333pt;}
.y16{bottom:473.684000pt;}
.y71{bottom:477.645333pt;}
.yc5{bottom:481.265333pt;}
.y41{bottom:481.276000pt;}
.y118{bottom:488.285333pt;}
.y15{bottom:491.749333pt;}
.y9a{bottom:491.885333pt;}
.y70{bottom:495.710667pt;}
.yc4{bottom:499.330667pt;}
.y117{bottom:502.897333pt;}
.y14{bottom:509.816000pt;}
.y99{bottom:509.952000pt;}
.y40{bottom:511.270667pt;}
.yc3{bottom:517.396000pt;}
.y116{bottom:517.509333pt;}
.yec{bottom:522.420000pt;}
.y13{bottom:527.881333pt;}
.y115{bottom:532.121333pt;}
.yc2{bottom:535.462667pt;}
.y6f{bottom:540.012000pt;}
.yeb{bottom:540.485333pt;}
.y98{bottom:541.457333pt;}
.y12{bottom:545.946667pt;}
.y114{bottom:546.733333pt;}
.yda{bottom:552.936000pt;}
.yc1{bottom:553.528000pt;}
.y97{bottom:557.716000pt;}
.y6e{bottom:558.077333pt;}
.y5c{bottom:559.190667pt;}
.y3f{bottom:559.330667pt;}
.y113{bottom:561.344000pt;}
.y96{bottom:575.938667pt;}
.y112{bottom:575.956000pt;}
.y11{bottom:579.066667pt;}
.yc0{bottom:581.412000pt;}
.ye2{bottom:582.221333pt;}
.y65{bottom:588.045333pt;}
.y3e{bottom:589.325333pt;}
.y111{bottom:590.568000pt;}
.y95{bottom:592.197333pt;}
.y110{bottom:605.180000pt;}
.y94{bottom:610.420000pt;}
.y3d{bottom:619.318667pt;}
.y10f{bottom:619.792000pt;}
.y10{bottom:620.041333pt;}
.ybf{bottom:620.749333pt;}
.y93{bottom:626.678667pt;}
.y10e{bottom:634.404000pt;}
.yf{bottom:635.981333pt;}
.y3c{bottom:637.385333pt;}
.ybe{bottom:638.814667pt;}
.y92{bottom:644.901333pt;}
.y10d{bottom:649.016000pt;}
.ybd{bottom:656.881333pt;}
.y91{bottom:661.160000pt;}
.y10c{bottom:663.628000pt;}
.y3b{bottom:663.808000pt;}
.ye{bottom:667.862667pt;}
.y3a{bottom:671.517333pt;}
.ybc{bottom:674.946667pt;}
.y10b{bottom:678.240000pt;}
.y90{bottom:679.382667pt;}
.y39{bottom:681.494667pt;}
.yd{bottom:683.802667pt;}
.ybb{bottom:693.012000pt;}
.y8f{bottom:695.641333pt;}
.yc{bottom:699.742667pt;}
.y10a{bottom:707.906667pt;}
.yba{bottom:711.077333pt;}
.y8e{bottom:713.864000pt;}
.y38{bottom:714.132000pt;}
.yb{bottom:715.682667pt;}
.yb9{bottom:729.142667pt;}
.y8d{bottom:730.124000pt;}
.ya{bottom:731.622667pt;}
.y37{bottom:743.850667pt;}
.yb8{bottom:747.209333pt;}
.y9{bottom:747.562667pt;}
.y8c{bottom:748.345333pt;}
.y109{bottom:748.880000pt;}
.y8{bottom:763.504000pt;}
.y8b{bottom:764.605333pt;}
.y34{bottom:765.221333pt;}
.yb7{bottom:765.274667pt;}
.y108{bottom:766.946667pt;}
.y7{bottom:779.444000pt;}
.y8a{bottom:782.828000pt;}
.yb6{bottom:783.340000pt;}
.y107{bottom:785.012000pt;}
.y36{bottom:785.018667pt;}
.y35{bottom:787.928000pt;}
.yd8{bottom:794.381333pt;}
.y6{bottom:795.384000pt;}
.y5a{bottom:797.085333pt;}
.y89{bottom:799.086667pt;}
.yb5{bottom:801.405333pt;}
.y106{bottom:803.077333pt;}
.y5{bottom:811.324000pt;}
.y33{bottom:816.305333pt;}
.y88{bottom:817.309333pt;}
.y105{bottom:821.142667pt;}
.y4{bottom:827.264000pt;}
.yb4{bottom:830.422667pt;}
.y87{bottom:833.568000pt;}
.y32{bottom:834.370667pt;}
.y104{bottom:839.208000pt;}
.y3{bottom:843.205333pt;}
.y86{bottom:851.790667pt;}
.y31{bottom:852.436000pt;}
.y103{bottom:857.274667pt;}
.yb3{bottom:860.442667pt;}
.y85{bottom:868.049333pt;}
.y2{bottom:875.085333pt;}
.y102{bottom:875.340000pt;}
.y30{bottom:885.556000pt;}
.yb2{bottom:890.464000pt;}
.y101{bottom:893.405333pt;}
.y84{bottom:901.098667pt;}
.y100{bottom:911.470667pt;}
.y1{bottom:914.969333pt;}
.yb1{bottom:916.708000pt;}
.y2f{bottom:926.525333pt;}
.yff{bottom:929.536000pt;}
.yb0{bottom:934.773333pt;}
.y2e{bottom:944.590667pt;}
.y2d{bottom:962.657333pt;}
.hf{height:0.000000pt;}
.hb{height:21.933807pt;}
.he{height:29.032418pt;}
.h10{height:31.880400pt;}
.hc{height:32.900710pt;}
.h1d{height:33.541875pt;}
.h29{height:34.042500pt;}
.h19{height:36.203221pt;}
.h4{height:36.556100pt;}
.h3{height:36.768636pt;}
.h5{height:37.459376pt;}
.h7{height:40.029124pt;}
.h6{height:40.261852pt;}
.ha{height:40.317124pt;}
.h9{height:40.322458pt;}
.h24{height:40.378215pt;}
.h2{height:40.962287pt;}
.h1e{height:40.995625pt;}
.h8{height:41.018216pt;}
.h2a{height:41.607500pt;}
.hd{height:43.636400pt;}
.h1{height:44.122658pt;}
.h2d{height:45.390000pt;}
.h1b{height:48.449375pt;}
.h27{height:49.172500pt;}
.h1f{height:49.361133pt;}
.h2b{height:50.097867pt;}
.h20{height:50.359620pt;}
.h2e{height:51.911200pt;}
.h22{height:52.989733pt;}
.h14{height:52.995067pt;}
.h23{height:58.180400pt;}
.h13{height:58.340400pt;}
.h15{height:58.345733pt;}
.h21{height:58.985733pt;}
.h25{height:58.991067pt;}
.h18{height:64.563067pt;}
.h17{height:65.035221pt;}
.h16{height:81.373124pt;}
.h11{height:82.996400pt;}
.h12{height:95.178667pt;}
.h2c{height:174.533333pt;}
.h1a{height:175.289867pt;}
.h26{height:177.906133pt;}
.h1c{height:418.080000pt;}
.h28{height:424.320000pt;}
.h0{height:1056.000000pt;}
.w1{width:407.904933pt;}
.w5{width:409.967467pt;}
.w3{width:413.993067pt;}
.w2{width:450.240000pt;}
.w4{width:456.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:14.802533pt;}
.x2a{left:21.859867pt;}
.x2b{left:42.093867pt;}
.x2e{left:44.086000pt;}
.x4b{left:109.008533pt;}
.x49{left:115.645333pt;}
.x44{left:129.127467pt;}
.x47{left:137.432533pt;}
.x3{left:143.820000pt;}
.x4{left:147.712000pt;}
.x39{left:152.453333pt;}
.x9{left:160.690667pt;}
.x26{left:162.750667pt;}
.x6{left:166.402667pt;}
.x3f{left:167.820000pt;}
.x43{left:174.721333pt;}
.x29{left:178.078667pt;}
.x40{left:180.184000pt;}
.x3e{left:205.434667pt;}
.x41{left:212.719733pt;}
.x28{left:215.518267pt;}
.x48{left:216.745333pt;}
.x2c{left:238.939867pt;}
.x45{left:242.506133pt;}
.x4a{left:244.292267pt;}
.x1{left:256.646667pt;}
.x16{left:271.153333pt;}
.x3c{left:288.436000pt;}
.x32{left:294.686667pt;}
.x1f{left:296.132000pt;}
.x31{left:298.858667pt;}
.x14{left:313.609333pt;}
.x2{left:314.624000pt;}
.x15{left:315.605333pt;}
.x46{left:319.953600pt;}
.xb{left:321.008000pt;}
.x10{left:326.260000pt;}
.x42{left:327.161600pt;}
.x20{left:333.286667pt;}
.x17{left:335.697333pt;}
.x19{left:348.445333pt;}
.x1a{left:349.814667pt;}
.x18{left:355.525333pt;}
.xa{left:356.936000pt;}
.x5{left:358.274667pt;}
.x4c{left:362.988000pt;}
.x27{left:364.149333pt;}
.x33{left:367.569333pt;}
.x1d{left:373.473333pt;}
.x1b{left:374.888000pt;}
.xe{left:378.989333pt;}
.xd{left:384.985333pt;}
.xc{left:393.452000pt;}
.xf{left:402.294667pt;}
.x11{left:405.322667pt;}
.x3b{left:407.890667pt;}
.x38{left:425.609333pt;}
.x12{left:428.297333pt;}
.x2f{left:431.546667pt;}
.x36{left:436.388000pt;}
.x34{left:442.097333pt;}
.x1c{left:443.558667pt;}
.x1e{left:444.972000pt;}
.x35{left:451.478667pt;}
.x21{left:452.793333pt;}
.x13{left:464.924000pt;}
.x37{left:490.005333pt;}
.x22{left:493.194667pt;}
.x23{left:513.901333pt;}
.x25{left:519.000000pt;}
.x30{left:559.041333pt;}
.x24{left:609.689333pt;}
.x3a{left:630.980000pt;}
.x7{left:644.637333pt;}
.x8{left:658.532000pt;}
.x3d{left:662.277333pt;}
}




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