
    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_ca348de33fc3caf01f9a0fc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_d30cd5ff72dc593ab54f16db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_7254d2100a28a70988d0edb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_590c04fd2b8e9608c33d3bd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8873b94e319672baf4e63450.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_7317333b73b8c44e56119f68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.869629;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_488eca03b93b62a308edce9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f1b320452fbde45a72d834f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.674805;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_23057816b5194df9373c4d93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_44108fca793e620c150de81e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914551;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_4d0288bbc3d98fc81265d080.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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_cc0ace83de7dcd39dda47d66.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_7cdeb3c5a60ab31ed1ec57c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913574;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_70e10ee3385bb49281bb6487.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_6099513ffba040fc5408089c.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_d392db25e722bd1fd4eb8207.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a2f1d97208565753e654c74b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.856934;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_003e76b1e69815efca512981.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.854980;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_e1bc409abc7f5b4491e30c81.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.847656;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_7c6e5c57baf8885912b74607.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_03e2f9b6e3fa250eb76619f7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.715820;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.988000px;}
.v2{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.v4{vertical-align:39.600000px;}
.v1{vertical-align:43.200000px;}
.v6{vertical-align:70.639800px;}
.ls6a{letter-spacing:-6.912000px;}
.ls6d{letter-spacing:-6.796800px;}
.ls72{letter-spacing:-5.745600px;}
.ls66{letter-spacing:-5.328000px;}
.ls17{letter-spacing:-4.896000px;}
.ls79{letter-spacing:-4.021920px;}
.ls70{letter-spacing:-2.777040px;}
.ls44{letter-spacing:-2.484000px;}
.ls62{letter-spacing:-1.712880px;}
.ls45{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.008000px;}
.ls78{letter-spacing:-0.879120px;}
.ls6{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.576000px;}
.ls7a{letter-spacing:-0.360720px;}
.ls52{letter-spacing:-0.335520px;}
.ls5{letter-spacing:-0.324000px;}
.ls2{letter-spacing:-0.288000px;}
.ls71{letter-spacing:-0.287280px;}
.ls61{letter-spacing:-0.263520px;}
.ls69{letter-spacing:-0.259200px;}
.ls26{letter-spacing:-0.240480px;}
.ls40{letter-spacing:-0.239760px;}
.ls2e{letter-spacing:-0.239040px;}
.ls6c{letter-spacing:-0.230400px;}
.ls1e{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.195840px;}
.ls1f{letter-spacing:-0.192240px;}
.ls1d{letter-spacing:-0.191520px;}
.ls4f{letter-spacing:-0.168480px;}
.ls15{letter-spacing:-0.167760px;}
.lsd{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.141120px;}
.ls5d{letter-spacing:-0.131760px;}
.ls51{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.119520px;}
.ls6b{letter-spacing:-0.115200px;}
.ls7{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.097920px;}
.ls53{letter-spacing:-0.095760px;}
.ls32{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.000600px;}
.ls1b{letter-spacing:0.036000px;}
.ls4d{letter-spacing:0.084240px;}
.ls54{letter-spacing:0.095760px;}
.ls22{letter-spacing:0.097200px;}
.ls35{letter-spacing:0.097920px;}
.lsb{letter-spacing:0.108000px;}
.ls6f{letter-spacing:0.112320px;}
.ls2f{letter-spacing:0.119520px;}
.ls25{letter-spacing:0.120240px;}
.ls1{letter-spacing:0.144000px;}
.ls50{letter-spacing:0.168480px;}
.ls1c{letter-spacing:0.191520px;}
.ls37{letter-spacing:0.195840px;}
.lsf{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.239040px;}
.ls27{letter-spacing:0.240480px;}
.ls67{letter-spacing:0.259200px;}
.ls39{letter-spacing:0.261360px;}
.ls74{letter-spacing:0.285840px;}
.ls7b{letter-spacing:0.287280px;}
.ls4{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.293760px;}
.ls3c{letter-spacing:0.305280px;}
.ls77{letter-spacing:0.319680px;}
.lsc{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.360720px;}
.ls4e{letter-spacing:0.384480px;}
.ls2d{letter-spacing:14.163120px;}
.ls10{letter-spacing:16.704000px;}
.ls43{letter-spacing:24.588000px;}
.ls14{letter-spacing:24.678000px;}
.ls21{letter-spacing:24.732000px;}
.ls3d{letter-spacing:25.272000px;}
.ls42{letter-spacing:25.336800px;}
.ls41{letter-spacing:25.347600px;}
.ls3e{letter-spacing:25.380000px;}
.ls36{letter-spacing:25.416000px;}
.ls4c{letter-spacing:26.772480px;}
.ls4b{letter-spacing:26.892000px;}
.ls3f{letter-spacing:27.005040px;}
.ls60{letter-spacing:30.126960px;}
.ls12{letter-spacing:30.528000px;}
.ls11{letter-spacing:31.248000px;}
.ls56{letter-spacing:31.823400px;}
.ls58{letter-spacing:31.824600px;}
.ls55{letter-spacing:31.968000px;}
.ls5a{letter-spacing:32.544000px;}
.ls9{letter-spacing:32.688000px;}
.ls0{letter-spacing:32.809680px;}
.ls48{letter-spacing:32.868000px;}
.ls47{letter-spacing:33.238512px;}
.ls5b{letter-spacing:33.408000px;}
.ls68{letter-spacing:36.028800px;}
.ls6e{letter-spacing:38.855520px;}
.ls28{letter-spacing:51.102000px;}
.ls2a{letter-spacing:51.822000px;}
.ls2b{letter-spacing:54.000000px;}
.ls2c{letter-spacing:60.120000px;}
.ls23{letter-spacing:66.529440px;}
.ls3b{letter-spacing:68.230080px;}
.ls3a{letter-spacing:68.256000px;}
.ls13{letter-spacing:84.960000px;}
.ls33{letter-spacing:87.408000px;}
.ls5f{letter-spacing:89.201520px;}
.ls5e{letter-spacing:89.244000px;}
.ls63{letter-spacing:93.306240px;}
.ls65{letter-spacing:97.524000px;}
.ls20{letter-spacing:97.560000px;}
.ls46{letter-spacing:107.079840px;}
.ls59{letter-spacing:111.600000px;}
.ls5c{letter-spacing:115.884000px;}
.ls57{letter-spacing:117.360000px;}
.ls73{letter-spacing:119.879280px;}
.ls29{letter-spacing:120.168000px;}
.ls75{letter-spacing:122.040000px;}
.ls49{letter-spacing:122.199840px;}
.ls4a{letter-spacing:125.426880px;}
.ls76{letter-spacing:790.200000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(152,72,7),0 0.015em rgb(152,72,7),0.015em 0 rgb(152,72,7),0 -0.015em  rgb(152,72,7);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(152,72,7);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-115.344000px;}
.ws38{word-spacing:-108.000000px;}
.wse{word-spacing:-60.448320px;}
.ws1a{word-spacing:-48.816000px;}
.ws2a{word-spacing:-43.446240px;}
.wsa4{word-spacing:-39.888000px;}
.ws8d{word-spacing:-37.578240px;}
.ws39{word-spacing:-33.426720px;}
.ws70{word-spacing:-33.226560px;}
.ws6f{word-spacing:-32.987520px;}
.ws3{word-spacing:-32.832000px;}
.ws8e{word-spacing:-32.544000px;}
.ws1{word-spacing:-32.256000px;}
.ws1e{word-spacing:-31.968000px;}
.ws4a{word-spacing:-31.752000px;}
.ws1f{word-spacing:-31.248000px;}
.ws48{word-spacing:-30.119040px;}
.ws33{word-spacing:-30.024000px;}
.ws46{word-spacing:-29.880000px;}
.ws26{word-spacing:-29.808000px;}
.ws93{word-spacing:-29.777760px;}
.ws35{word-spacing:-29.700000px;}
.ws8f{word-spacing:-29.646000px;}
.ws49{word-spacing:-29.640960px;}
.ws96{word-spacing:-28.064880px;}
.ws56{word-spacing:-27.515520px;}
.ws55{word-spacing:-27.221760px;}
.ws3b{word-spacing:-27.174240px;}
.wsd{word-spacing:-27.123840px;}
.ws80{word-spacing:-27.054000px;}
.ws54{word-spacing:-27.025920px;}
.ws7e{word-spacing:-26.933760px;}
.ws29{word-spacing:-26.621280px;}
.wsac{word-spacing:-25.920000px;}
.wsad{word-spacing:-25.804800px;}
.ws10{word-spacing:-24.732000px;}
.ws27{word-spacing:-24.624000px;}
.ws28{word-spacing:-24.516000px;}
.wsf{word-spacing:-24.408000px;}
.ws5{word-spacing:-24.300000px;}
.ws6a{word-spacing:-24.192000px;}
.ws6{word-spacing:-24.084000px;}
.ws2{word-spacing:-21.641760px;}
.wsb3{word-spacing:-21.354480px;}
.wsae{word-spacing:-19.238400px;}
.ws71{word-spacing:-19.122480px;}
.wsb1{word-spacing:-18.864720px;}
.ws1b{word-spacing:-16.488000px;}
.wsb4{word-spacing:-15.896160px;}
.ws4b{word-spacing:-13.446000px;}
.wsa3{word-spacing:-5.290560px;}
.ws9f{word-spacing:-2.525040px;}
.ws21{word-spacing:-2.448000px;}
.ws75{word-spacing:-2.404800px;}
.ws18{word-spacing:-2.376000px;}
.ws6c{word-spacing:-2.268000px;}
.ws74{word-spacing:-2.164320px;}
.ws41{word-spacing:-2.160000px;}
.ws5f{word-spacing:-2.136960px;}
.ws5c{word-spacing:-2.090880px;}
.ws40{word-spacing:-2.052000px;}
.ws87{word-spacing:-2.016000px;}
.ws66{word-spacing:-1.923840px;}
.wsbf{word-spacing:-1.872000px;}
.wsa0{word-spacing:-1.803600px;}
.ws13{word-spacing:-1.792800px;}
.ws7c{word-spacing:-1.769040px;}
.ws69{word-spacing:-1.760400px;}
.ws72{word-spacing:-1.743768px;}
.ws17{word-spacing:-1.728000px;}
.ws5d{word-spacing:-1.679040px;}
.ws61{word-spacing:-1.620000px;}
.ws32{word-spacing:-1.537920px;}
.wsb6{word-spacing:-1.512000px;}
.ws42{word-spacing:-1.442880px;}
.ws0{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.436400px;}
.ws19{word-spacing:-1.404000px;}
.ws5e{word-spacing:-1.373760px;}
.wsc1{word-spacing:-1.322640px;}
.ws23{word-spacing:-1.296000px;}
.ws64{word-spacing:-1.202400px;}
.ws7d{word-spacing:-1.179360px;}
.ws8b{word-spacing:-1.152000px;}
.ws9e{word-spacing:-1.082160px;}
.ws24{word-spacing:-1.008000px;}
.ws6e{word-spacing:-0.972000px;}
.ws45{word-spacing:-0.961920px;}
.ws59{word-spacing:-0.881280px;}
.wsc4{word-spacing:-0.864000px;}
.wsc3{word-spacing:-0.841680px;}
.ws4d{word-spacing:-0.836640px;}
.ws5a{word-spacing:-0.783360px;}
.ws3e{word-spacing:-0.756000px;}
.ws44{word-spacing:-0.721440px;}
.ws16{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.712800px;}
.ws83{word-spacing:-0.670320px;}
.ws1c{word-spacing:-0.648000px;}
.wsc0{word-spacing:-0.601200px;}
.ws4e{word-spacing:-0.597600px;}
.ws73{word-spacing:-0.576720px;}
.ws9{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.480960px;}
.ws8c{word-spacing:-0.432000px;}
.wsa1{word-spacing:-0.360720px;}
.ws7a{word-spacing:-0.358560px;}
.wsa7{word-spacing:-0.345600px;}
.ws31{word-spacing:-0.324000px;}
.ws5b{word-spacing:-0.293760px;}
.ws88{word-spacing:-0.288000px;}
.ws43{word-spacing:-0.240480px;}
.ws52{word-spacing:-0.239040px;}
.ws62{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.191520px;}
.ws90{word-spacing:-0.167760px;}
.ws9b{word-spacing:-0.131760px;}
.ws65{word-spacing:-0.120240px;}
.ws15{word-spacing:-0.108000px;}
.ws58{word-spacing:-0.097920px;}
.wsa9{word-spacing:-0.086400px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:0.064800px;}
.ws84{word-spacing:0.095760px;}
.ws3d{word-spacing:0.108000px;}
.ws53{word-spacing:0.119520px;}
.ws81{word-spacing:0.120240px;}
.ws91{word-spacing:0.131760px;}
.ws7{word-spacing:0.144000px;}
.ws89{word-spacing:0.167760px;}
.ws7b{word-spacing:0.168480px;}
.wsa8{word-spacing:0.172800px;}
.ws2c{word-spacing:0.191520px;}
.ws8a{word-spacing:0.216000px;}
.ws4c{word-spacing:0.239040px;}
.wsa2{word-spacing:0.240480px;}
.wsc2{word-spacing:0.287280px;}
.ws57{word-spacing:0.288000px;}
.wsc{word-spacing:0.324000px;}
.ws82{word-spacing:0.335520px;}
.wsa{word-spacing:0.432000px;}
.ws98{word-spacing:0.527040px;}
.ws34{word-spacing:0.540000px;}
.ws85{word-spacing:0.574560px;}
.ws50{word-spacing:0.597600px;}
.ws3f{word-spacing:0.648000px;}
.ws99{word-spacing:0.658800px;}
.ws25{word-spacing:0.720000px;}
.ws3c{word-spacing:0.756000px;}
.ws94{word-spacing:0.764208px;}
.ws2e{word-spacing:0.766080px;}
.ws95{word-spacing:0.790560px;}
.ws76{word-spacing:0.836640px;}
.ws14{word-spacing:0.864000px;}
.ws2b{word-spacing:0.957600px;}
.ws78{word-spacing:1.075680px;}
.wsb{word-spacing:1.080000px;}
.ws36{word-spacing:1.101600px;}
.ws67{word-spacing:1.152000px;}
.ws20{word-spacing:1.174320px;}
.ws77{word-spacing:1.195200px;}
.ws63{word-spacing:1.198800px;}
.ws2d{word-spacing:1.296000px;}
.ws4f{word-spacing:1.314720px;}
.ws92{word-spacing:1.317600px;}
.wsb5{word-spacing:1.404000px;}
.ws9d{word-spacing:1.449360px;}
.ws97{word-spacing:1.452888px;}
.ws6d{word-spacing:1.620000px;}
.ws79{word-spacing:1.792800px;}
.ws9c{word-spacing:1.976400px;}
.ws51{word-spacing:2.031840px;}
.wsa5{word-spacing:2.052000px;}
.ws4{word-spacing:2.127600px;}
.ws7f{word-spacing:2.452896px;}
.ws47{word-spacing:2.892384px;}
.ws9a{word-spacing:3.557520px;}
.ws22{word-spacing:4.896000px;}
.ws68{word-spacing:5.292000px;}
.wsbb{word-spacing:5.381784px;}
.wsaf{word-spacing:5.395032px;}
.wsbc{word-spacing:5.559624px;}
.wsa6{word-spacing:5.616000px;}
.wsb2{word-spacing:5.783760px;}
.wsba{word-spacing:6.258960px;}
.wsb0{word-spacing:6.403608px;}
.wsb7{word-spacing:6.784920px;}
.wsab{word-spacing:6.825600px;}
.ws37{word-spacing:7.128000px;}
.wsbd{word-spacing:7.992000px;}
.wsbe{word-spacing:9.622800px;}
.wsb8{word-spacing:10.683072px;}
.wsb9{word-spacing:13.106088px;}
.ws6b{word-spacing:25.520400px;}
.ws86{word-spacing:31.536000px;}
.ws3a{word-spacing:32.116104px;}
.wsaa{word-spacing:34.214400px;}
._15{margin-left:-18.046800px;}
._2{margin-left:-15.840000px;}
._8{margin-left:-13.841712px;}
._a{margin-left:-12.572640px;}
._10{margin-left:-11.162880px;}
._d{margin-left:-9.039600px;}
._3{margin-left:-7.056000px;}
._7{margin-left:-5.590080px;}
._5{margin-left:-4.486320px;}
._4{margin-left:-2.547360px;}
._0{margin-left:-1.296000px;}
._1{width:1.561680px;}
._c{width:3.255048px;}
._9{width:4.464000px;}
._16{width:6.298848px;}
._17{width:7.647120px;}
._14{width:9.124560px;}
._f{width:22.095360px;}
._18{width:24.907464px;}
._6{width:26.033040px;}
._13{width:28.524240px;}
._b{width:31.011240px;}
._e{width:55.753920px;}
._12{width:1365.530712px;}
._11{width:2295.008640px;}
.fc15{color:rgb(0,255,0);}
.fc13{color:rgb(255,0,255);}
.fc10{color:rgb(102,255,153);}
.fcf{color:rgb(0,112,192);}
.fce{color:rgb(255,217,102);}
.fc0{color:rgb(32,56,100);}
.fc12{color:rgb(0,255,255);}
.fc6{color:rgb(255,0,0);}
.fcb{color:rgb(56,87,35);}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc5{color:rgb(137,137,137);}
.fc11{color:rgb(255,255,0);}
.fc7{color:rgb(152,72,7);}
.fc4{color:transparent;}
.fc8{color:rgb(0,32,96);}
.fcd{color:rgb(197,90,17);}
.fca{color:rgb(5,99,193);}
.fc14{color:rgb(197,224,180);}
.fcc{color:rgb(0,176,80);}
.fc9{color:rgb(231,230,230);}
.fsb{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs7{font-size:72.000000px;}
.fsc{font-size:79.920000px;}
.fs12{font-size:84.240000px;}
.fs15{font-size:86.400000px;}
.fs1{font-size:95.760000px;}
.fs3{font-size:97.920000px;}
.fs2{font-size:108.000000px;}
.fs16{font-size:115.200000px;}
.fs4{font-size:119.520000px;}
.fsa{font-size:120.240000px;}
.fs14{font-size:131.760000px;}
.fsd{font-size:141.120000px;}
.fs0{font-size:144.000000px;}
.fs10{font-size:152.640000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:192.240000px;}
.fs6{font-size:216.000000px;}
.fs5{font-size:217.440000px;}
.fs11{font-size:239.760000px;}
.fsf{font-size:261.360000px;}
.fs13{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.367800px;}
.y9f{bottom:3.811650px;}
.ybf{bottom:5.111700px;}
.ya6{bottom:6.819150px;}
.y6c{bottom:7.944450px;}
.y65{bottom:8.178300px;}
.y64{bottom:9.044700px;}
.y5b{bottom:9.641250px;}
.y6f{bottom:12.286650px;}
.yf{bottom:12.299700px;}
.y11{bottom:14.701650px;}
.y123{bottom:15.467400px;}
.y5d{bottom:18.441150px;}
.y106{bottom:18.785100px;}
.y8{bottom:19.520850px;}
.y1a{bottom:22.057500px;}
.y39{bottom:22.747050px;}
.y3a{bottom:31.567500px;}
.y9e{bottom:32.611980px;}
.yfd{bottom:38.990700px;}
.ya5{bottom:39.219150px;}
.yce{bottom:42.967650px;}
.ye{bottom:44.699700px;}
.y99{bottom:46.747260px;}
.y59{bottom:48.373800px;}
.y9d{bottom:61.411800px;}
.y96{bottom:63.321600px;}
.y98{bottom:71.956080px;}
.yd{bottom:76.739700px;}
.ye3{bottom:78.616500px;}
.ya{bottom:79.638000px;}
.y119{bottom:82.140750px;}
.ycd{bottom:82.567650px;}
.y58{bottom:84.373800px;}
.y97{bottom:97.164900px;}
.y122{bottom:100.554600px;}
.y37{bottom:103.355250px;}
.yfc{bottom:103.790700px;}
.y75{bottom:107.451600px;}
.ydc{bottom:107.758650px;}
.yc{bottom:109.139700px;}
.y7d{bottom:110.246100px;}
.y9{bottom:112.507050px;}
.y45{bottom:113.133300px;}
.ye2{bottom:114.628380px;}
.yff{bottom:116.372550px;}
.y25{bottom:117.350700px;}
.yb9{bottom:117.499350px;}
.ycc{bottom:122.167650px;}
.y118{bottom:123.828900px;}
.y8a{bottom:126.023400px;}
.y36{bottom:135.755250px;}
.y74{bottom:139.851600px;}
.y24{bottom:146.150700px;}
.yb8{bottom:149.899350px;}
.ye1{bottom:150.640260px;}
.y7c{bottom:153.446100px;}
.y114{bottom:154.643400px;}
.yf1{bottom:154.998000px;}
.y57{bottom:156.182280px;}
.y117{bottom:156.228900px;}
.y89{bottom:158.423400px;}
.y121{bottom:166.074600px;}
.y35{bottom:168.155250px;}
.yfb{bottom:168.590700px;}
.y95{bottom:172.041600px;}
.y44{bottom:174.333300px;}
.y23{bottom:174.950700px;}
.yb7{bottom:182.299200px;}
.ye0{bottom:186.652140px;}
.y116{bottom:188.628900px;}
.ydb{bottom:189.649470px;}
.y56{bottom:192.008400px;}
.yfe{bottom:192.710700px;}
.y7b{bottom:196.646100px;}
.yf0{bottom:198.198000px;}
.y113{bottom:198.290700px;}
.y34{bottom:200.555250px;}
.yfa{bottom:200.990700px;}
.y88{bottom:201.614400px;}
.ycb{bottom:205.867650px;}
.y43{bottom:206.733300px;}
.yb6{bottom:214.699200px;}
.y115{bottom:221.028900px;}
.y55{bottom:228.013800px;}
.yda{bottom:229.078650px;}
.y33{bottom:232.955250px;}
.y87{bottom:233.672400px;}
.y7a{bottom:239.846100px;}
.yef{bottom:241.398000px;}
.y94{bottom:242.774400px;}
.yb5{bottom:247.099200px;}
.yca{bottom:248.707650px;}
.y69{bottom:255.173130px;}
.y32{bottom:265.355250px;}
.y86{bottom:266.423400px;}
.y42{bottom:267.933300px;}
.y63{bottom:267.961500px;}
.y112{bottom:273.169350px;}
.y10e{bottom:273.500400px;}
.y10a{bottom:276.721050px;}
.y120{bottom:277.669020px;}
.yf9{bottom:279.227400px;}
.yb4{bottom:279.499350px;}
.y79{bottom:283.046100px;}
.yee{bottom:284.598000px;}
.y22{bottom:286.550880px;}
.y5{bottom:291.747900px;}
.yc9{bottom:292.267650px;}
.y31{bottom:297.755250px;}
.y54{bottom:299.816160px;}
.y41{bottom:300.333300px;}
.y111{bottom:305.569200px;}
.y10d{bottom:305.900400px;}
.yd9{bottom:308.483130px;}
.y109{bottom:309.121050px;}
.yb3{bottom:311.899350px;}
.y11f{bottom:313.680900px;}
.y21{bottom:315.350700px;}
.y93{bottom:315.681600px;}
.y78{bottom:326.246100px;}
.y62{bottom:326.629980px;}
.ydf{bottom:330.639540px;}
.y6{bottom:335.122350px;}
.yc8{bottom:335.467650px;}
.y53{bottom:335.642280px;}
.y110{bottom:337.969200px;}
.y10c{bottom:338.300400px;}
.y108{bottom:341.521050px;}
.y85{bottom:342.031800px;}
.yf8{bottom:344.027400px;}
.yb2{bottom:344.299200px;}
.y68{bottom:346.604490px;}
.yd8{bottom:348.077010px;}
.y92{bottom:351.681600px;}
.y61{bottom:355.981500px;}
.y124{bottom:357.032400px;}
.y40{bottom:361.182300px;}
.y30{bottom:362.555250px;}
.yde{bottom:366.651420px;}
.y77{bottom:369.446100px;}
.y10f{bottom:370.369200px;}
.y10b{bottom:370.700400px;}
.y52{bottom:371.647680px;}
.y107{bottom:373.921050px;}
.y84{bottom:374.431800px;}
.y20{bottom:374.750700px;}
.yb1{bottom:376.699200px;}
.yed{bottom:378.796500px;}
.y11e{bottom:385.662720px;}
.yd7{bottom:387.670890px;}
.y3f{bottom:393.933300px;}
.y2f{bottom:394.955250px;}
.y19{bottom:400.463850px;}
.ydd{bottom:402.663300px;}
.y1f{bottom:407.150700px;}
.y51{bottom:407.473800px;}
.yf7{bottom:408.827400px;}
.yb0{bottom:409.099200px;}
.yec{bottom:411.196500px;}
.y76{bottom:412.646100px;}
.y60{bottom:414.841350px;}
.yc7{bottom:420.427650px;}
.y11d{bottom:421.674600px;}
.y91{bottom:422.421600px;}
.yd6{bottom:427.264770px;}
.y2e{bottom:427.355250px;}
.yc0{bottom:432.874800px;}
.y67{bottom:438.035850px;}
.y1e{bottom:439.190700px;}
.yeb{bottom:443.596500px;}
.y18{bottom:443.663850px;}
.y83{bottom:450.031800px;}
.y105{bottom:453.126150px;}
.y3e{bottom:455.133300px;}
.y4{bottom:455.312400px;}
.y2d{bottom:459.755250px;}
.yd5{bottom:466.858650px;}
.y5f{bottom:473.521500px;}
.yf6{bottom:473.627400px;}
.yaf{bottom:473.899350px;}
.y73{bottom:479.136450px;}
.y50{bottom:479.293800px;}
.y82{bottom:482.431800px;}
.y17{bottom:486.863850px;}
.y3d{bottom:487.533300px;}
.y2c{bottom:492.155250px;}
.y90{bottom:494.241600px;}
.y11c{bottom:495.294600px;}
.y104{bottom:496.326150px;}
.y1d{bottom:499.670700px;}
.ybe{bottom:503.292000px;}
.yae{bottom:506.299200px;}
.yd4{bottom:506.458650px;}
.yc6{bottom:508.267650px;}
.y72{bottom:514.776450px;}
.y4f{bottom:515.293800px;}
.y2b{bottom:524.555250px;}
.y16{bottom:530.063850px;}
.y5e{bottom:532.381500px;}
.yad{bottom:538.699200px;}
.y103{bottom:539.526150px;}
.yea{bottom:540.796500px;}
.ye7{bottom:545.676810px;}
.yd3{bottom:546.064770px;}
.y3{bottom:546.560400px;}
.yc5{bottom:551.107650px;}
.y81{bottom:556.465800px;}
.y2a{bottom:556.955250px;}
.y8f{bottom:566.061600px;}
.yf5{bottom:569.349750px;}
.yac{bottom:571.099200px;}
.ya4{bottom:571.647600px;}
.ye9{bottom:573.196500px;}
.y2{bottom:578.960400px;}
.y11b{bottom:581.334600px;}
.ye6{bottom:581.688690px;}
.yd2{bottom:585.658650px;}
.y4e{bottom:587.102280px;}
.y48{bottom:587.485650px;}
.y1c{bottom:588.950700px;}
.ybd{bottom:589.332000px;}
.yc4{bottom:594.667650px;}
.yab{bottom:603.499200px;}
.ye8{bottom:605.596500px;}
.y9b{bottom:610.887870px;}
.y1{bottom:613.700400px;}
.y15{bottom:616.103850px;}
.ye5{bottom:617.700570px;}
.y1b{bottom:617.750700px;}
.y29{bottom:621.755250px;}
.y71{bottom:622.776450px;}
.y4d{bottom:622.928400px;}
.y47{bottom:623.485650px;}
.y11a{bottom:624.894600px;}
.ya3{bottom:625.493400px;}
.y102{bottom:625.566150px;}
.y80{bottom:632.065800px;}
.yf4{bottom:634.149750px;}
.yc3{bottom:637.867650px;}
.y8e{bottom:638.781600px;}
.y9a{bottom:646.899750px;}
.ye4{bottom:653.712450px;}
.y6e{bottom:654.910500px;}
.y4c{bottom:658.933800px;}
.y14{bottom:659.663850px;}
.y7f{bottom:664.465800px;}
.yaa{bottom:668.299200px;}
.ya2{bottom:668.693400px;}
.y101{bottom:669.126150px;}
.y8d{bottom:673.881600px;}
.ybc{bottom:676.092000px;}
.y28{bottom:686.555250px;}
.y6a{bottom:687.326550px;}
.yd1{bottom:689.745900px;}
.y46{bottom:690.805650px;}
.yf3{bottom:698.949750px;}
.ya9{bottom:700.699200px;}
.yc2{bottom:701.235300px;}
.y13{bottom:702.863850px;}
.ya1{bottom:711.893400px;}
.y70{bottom:717.096450px;}
.y27{bottom:718.955250px;}
.ybb{bottom:719.292000px;}
.y9c{bottom:722.084250px;}
.y8b{bottom:722.853150px;}
.yb{bottom:723.811650px;}
.y7{bottom:724.579500px;}
.y4b{bottom:730.747680px;}
.y38{bottom:731.555250px;}
.ya8{bottom:733.099200px;}
.y66{bottom:739.288500px;}
.yd0{bottom:740.145750px;}
.y7e{bottom:743.115150px;}
.y5a{bottom:745.004400px;}
.y10{bottom:747.081600px;}
.y100{bottom:751.110000px;}
.y26{bottom:751.355250px;}
.y8c{bottom:751.461600px;}
.yc1{bottom:751.635150px;}
.y49{bottom:754.051500px;}
.ya0{bottom:755.093400px;}
.y6b{bottom:757.153050px;}
.y6d{bottom:758.324250px;}
.y12{bottom:759.081600px;}
.y5c{bottom:759.582750px;}
.yba{bottom:762.492000px;}
.yf2{bottom:763.749600px;}
.ya7{bottom:765.499200px;}
.y4a{bottom:766.573800px;}
.y3c{bottom:777.497550px;}
.y3b{bottom:778.397400px;}
.h1c{height:42.894141px;}
.ha{height:51.679688px;}
.h27{height:61.164492px;}
.h33{height:62.901563px;}
.h2a{height:68.733984px;}
.hf{height:69.715898px;}
.h11{height:69.762656px;}
.h4{height:71.288438px;}
.h1d{height:71.336250px;}
.h2{height:73.828125px;}
.h32{height:77.308594px;}
.h7{height:77.519531px;}
.h14{height:78.380016px;}
.h3{height:78.416016px;}
.h31{height:78.626953px;}
.h10{height:78.679688px;}
.h17{height:81.002812px;}
.h13{height:84.079687px;}
.h36{height:84.677344px;}
.h19{height:84.796875px;}
.h28{height:86.305078px;}
.h26{height:86.780391px;}
.h16{height:86.892187px;}
.h5{height:87.013828px;}
.h18{height:87.072187px;}
.h20{height:87.303164px;}
.h15{height:87.538008px;}
.h30{height:87.596719px;}
.h21{height:90.404016px;}
.h1a{height:93.764531px;}
.h34{height:94.027852px;}
.h35{height:94.075372px;}
.h2f{height:95.667539px;}
.h2e{height:95.989219px;}
.hc{height:99.562500px;}
.h1b{height:102.463594px;}
.h2b{height:103.359375px;}
.hd{height:104.062500px;}
.h8{height:104.554688px;}
.h23{height:104.835938px;}
.he{height:104.906250px;}
.h1f{height:111.200625px;}
.h37{height:111.933984px;}
.h1{height:112.728867px;}
.h29{height:120.413672px;}
.hb{height:121.806211px;}
.h2c{height:137.533711px;}
.h12{height:139.580508px;}
.h25{height:139.955977px;}
.h24{height:148.159331px;}
.h9{height:156.832031px;}
.h6{height:158.302266px;}
.h22{height:174.551836px;}
.h1e{height:190.404844px;}
.h2d{height:235.248047px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2b{left:3.202200px;}
.x4b{left:6.204150px;}
.xc{left:8.512500px;}
.x5a{left:10.044750px;}
.x45{left:15.064050px;}
.x4e{left:16.990200px;}
.x1{left:20.352750px;}
.x3a{left:25.998600px;}
.x3b{left:32.127600px;}
.x29{left:33.238500px;}
.x37{left:36.447750px;}
.x1f{left:38.295000px;}
.x52{left:39.587550px;}
.x54{left:42.097800px;}
.x46{left:48.904050px;}
.x4f{left:50.830200px;}
.x3e{left:52.251600px;}
.x50{left:57.490200px;}
.x3d{left:58.911600px;}
.x4{left:63.768450px;}
.x5{left:64.929150px;}
.x32{left:68.133300px;}
.x53{left:73.418550px;}
.x42{left:81.000000px;}
.x3f{left:92.751600px;}
.x64{left:94.077450px;}
.x30{left:97.039650px;}
.x5b{left:112.723350px;}
.x1b{left:116.456700px;}
.x18{left:122.936700px;}
.x19{left:126.716700px;}
.x1a{left:128.876700px;}
.x1c{left:131.576700px;}
.x4c{left:134.728800px;}
.x40{left:160.071600px;}
.x2c{left:177.344550px;}
.x69{left:185.396400px;}
.xa{left:186.766950px;}
.x51{left:197.230950px;}
.x4d{left:199.528800px;}
.x20{left:215.152200px;}
.xd{left:233.142450px;}
.x16{left:249.884100px;}
.x21{left:252.232200px;}
.x48{left:274.371600px;}
.x23{left:281.026950px;}
.x43{left:282.082800px;}
.x1d{left:299.751300px;}
.x17{left:303.884100px;}
.x9{left:312.564600px;}
.x14{left:322.244100px;}
.x22{left:335.026950px;}
.x35{left:342.627750px;}
.x36{left:346.407750px;}
.x15{left:351.584100px;}
.x2f{left:361.849350px;}
.x55{left:372.037800px;}
.x68{left:388.800000px;}
.xb{left:405.921600px;}
.x60{left:412.392750px;}
.x5e{left:421.044450px;}
.x47{left:423.463800px;}
.x67{left:432.747000px;}
.x65{left:442.554000px;}
.x31{left:446.683200px;}
.x5d{left:448.224450px;}
.x5c{left:463.524450px;}
.x56{left:471.937800px;}
.x66{left:476.385000px;}
.x44{left:489.660300px;}
.x2e{left:498.728550px;}
.x33{left:527.710350px;}
.x24{left:571.212450px;}
.x13{left:589.884000px;}
.x26{left:593.712450px;}
.x2{left:596.069550px;}
.x11{left:602.136450px;}
.xe{left:613.296450px;}
.x25{left:615.854970px;}
.x2d{left:626.326800px;}
.x12{left:635.976450px;}
.x62{left:638.566200px;}
.x61{left:647.566200px;}
.xf{left:650.556450px;}
.x2a{left:667.065720px;}
.x5f{left:685.216950px;}
.x38{left:686.667150px;}
.x10{left:690.516450px;}
.x39{left:692.796150px;}
.x49{left:729.864000px;}
.x4a{left:737.964000px;}
.x28{left:754.397250px;}
.x6{left:820.172250px;}
.x3c{left:826.800150px;}
.x59{left:838.523550px;}
.x57{left:845.389200px;}
.x58{left:847.523550px;}
.x41{left:853.952700px;}
.x63{left:867.384750px;}
.x6a{left:893.595600px;}
.x3{left:904.402050px;}
.x8{left:932.746050px;}
.x27{left:936.749250px;}
.x7{left:943.999950px;}
.x34{left:976.410000px;}
.x1e{left:985.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.656000pt;}
.v2{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.v4{vertical-align:35.200000pt;}
.v1{vertical-align:38.400000pt;}
.v6{vertical-align:62.790933pt;}
.ls6a{letter-spacing:-6.144000pt;}
.ls6d{letter-spacing:-6.041600pt;}
.ls72{letter-spacing:-5.107200pt;}
.ls66{letter-spacing:-4.736000pt;}
.ls17{letter-spacing:-4.352000pt;}
.ls79{letter-spacing:-3.575040pt;}
.ls70{letter-spacing:-2.468480pt;}
.ls44{letter-spacing:-2.208000pt;}
.ls62{letter-spacing:-1.522560pt;}
.ls45{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls78{letter-spacing:-0.781440pt;}
.ls6{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls7a{letter-spacing:-0.320640pt;}
.ls52{letter-spacing:-0.298240pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls71{letter-spacing:-0.255360pt;}
.ls61{letter-spacing:-0.234240pt;}
.ls69{letter-spacing:-0.230400pt;}
.ls26{letter-spacing:-0.213760pt;}
.ls40{letter-spacing:-0.213120pt;}
.ls2e{letter-spacing:-0.212480pt;}
.ls6c{letter-spacing:-0.204800pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.174080pt;}
.ls1f{letter-spacing:-0.170880pt;}
.ls1d{letter-spacing:-0.170240pt;}
.ls4f{letter-spacing:-0.149760pt;}
.ls15{letter-spacing:-0.149120pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.125440pt;}
.ls5d{letter-spacing:-0.117120pt;}
.ls51{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.106240pt;}
.ls6b{letter-spacing:-0.102400pt;}
.ls7{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.087040pt;}
.ls53{letter-spacing:-0.085120pt;}
.ls32{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.000533pt;}
.ls1b{letter-spacing:0.032000pt;}
.ls4d{letter-spacing:0.074880pt;}
.ls54{letter-spacing:0.085120pt;}
.ls22{letter-spacing:0.086400pt;}
.ls35{letter-spacing:0.087040pt;}
.lsb{letter-spacing:0.096000pt;}
.ls6f{letter-spacing:0.099840pt;}
.ls2f{letter-spacing:0.106240pt;}
.ls25{letter-spacing:0.106880pt;}
.ls1{letter-spacing:0.128000pt;}
.ls50{letter-spacing:0.149760pt;}
.ls1c{letter-spacing:0.170240pt;}
.ls37{letter-spacing:0.174080pt;}
.lsf{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.212480pt;}
.ls27{letter-spacing:0.213760pt;}
.ls67{letter-spacing:0.230400pt;}
.ls39{letter-spacing:0.232320pt;}
.ls74{letter-spacing:0.254080pt;}
.ls7b{letter-spacing:0.255360pt;}
.ls4{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.261120pt;}
.ls3c{letter-spacing:0.271360pt;}
.ls77{letter-spacing:0.284160pt;}
.lsc{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.320640pt;}
.ls4e{letter-spacing:0.341760pt;}
.ls2d{letter-spacing:12.589440pt;}
.ls10{letter-spacing:14.848000pt;}
.ls43{letter-spacing:21.856000pt;}
.ls14{letter-spacing:21.936000pt;}
.ls21{letter-spacing:21.984000pt;}
.ls3d{letter-spacing:22.464000pt;}
.ls42{letter-spacing:22.521600pt;}
.ls41{letter-spacing:22.531200pt;}
.ls3e{letter-spacing:22.560000pt;}
.ls36{letter-spacing:22.592000pt;}
.ls4c{letter-spacing:23.797760pt;}
.ls4b{letter-spacing:23.904000pt;}
.ls3f{letter-spacing:24.004480pt;}
.ls60{letter-spacing:26.779520pt;}
.ls12{letter-spacing:27.136000pt;}
.ls11{letter-spacing:27.776000pt;}
.ls56{letter-spacing:28.287467pt;}
.ls58{letter-spacing:28.288533pt;}
.ls55{letter-spacing:28.416000pt;}
.ls5a{letter-spacing:28.928000pt;}
.ls9{letter-spacing:29.056000pt;}
.ls0{letter-spacing:29.164160pt;}
.ls48{letter-spacing:29.216000pt;}
.ls47{letter-spacing:29.545344pt;}
.ls5b{letter-spacing:29.696000pt;}
.ls68{letter-spacing:32.025600pt;}
.ls6e{letter-spacing:34.538240pt;}
.ls28{letter-spacing:45.424000pt;}
.ls2a{letter-spacing:46.064000pt;}
.ls2b{letter-spacing:48.000000pt;}
.ls2c{letter-spacing:53.440000pt;}
.ls23{letter-spacing:59.137280pt;}
.ls3b{letter-spacing:60.648960pt;}
.ls3a{letter-spacing:60.672000pt;}
.ls13{letter-spacing:75.520000pt;}
.ls33{letter-spacing:77.696000pt;}
.ls5f{letter-spacing:79.290240pt;}
.ls5e{letter-spacing:79.328000pt;}
.ls63{letter-spacing:82.938880pt;}
.ls65{letter-spacing:86.688000pt;}
.ls20{letter-spacing:86.720000pt;}
.ls46{letter-spacing:95.182080pt;}
.ls59{letter-spacing:99.200000pt;}
.ls5c{letter-spacing:103.008000pt;}
.ls57{letter-spacing:104.320000pt;}
.ls73{letter-spacing:106.559360pt;}
.ls29{letter-spacing:106.816000pt;}
.ls75{letter-spacing:108.480000pt;}
.ls49{letter-spacing:108.622080pt;}
.ls4a{letter-spacing:111.490560pt;}
.ls76{letter-spacing:702.400000pt;}
.ws1d{word-spacing:-102.528000pt;}
.ws38{word-spacing:-96.000000pt;}
.wse{word-spacing:-53.731840pt;}
.ws1a{word-spacing:-43.392000pt;}
.ws2a{word-spacing:-38.618880pt;}
.wsa4{word-spacing:-35.456000pt;}
.ws8d{word-spacing:-33.402880pt;}
.ws39{word-spacing:-29.712640pt;}
.ws70{word-spacing:-29.534720pt;}
.ws6f{word-spacing:-29.322240pt;}
.ws3{word-spacing:-29.184000pt;}
.ws8e{word-spacing:-28.928000pt;}
.ws1{word-spacing:-28.672000pt;}
.ws1e{word-spacing:-28.416000pt;}
.ws4a{word-spacing:-28.224000pt;}
.ws1f{word-spacing:-27.776000pt;}
.ws48{word-spacing:-26.772480pt;}
.ws33{word-spacing:-26.688000pt;}
.ws46{word-spacing:-26.560000pt;}
.ws26{word-spacing:-26.496000pt;}
.ws93{word-spacing:-26.469120pt;}
.ws35{word-spacing:-26.400000pt;}
.ws8f{word-spacing:-26.352000pt;}
.ws49{word-spacing:-26.347520pt;}
.ws96{word-spacing:-24.946560pt;}
.ws56{word-spacing:-24.458240pt;}
.ws55{word-spacing:-24.197120pt;}
.ws3b{word-spacing:-24.154880pt;}
.wsd{word-spacing:-24.110080pt;}
.ws80{word-spacing:-24.048000pt;}
.ws54{word-spacing:-24.023040pt;}
.ws7e{word-spacing:-23.941120pt;}
.ws29{word-spacing:-23.663360pt;}
.wsac{word-spacing:-23.040000pt;}
.wsad{word-spacing:-22.937600pt;}
.ws10{word-spacing:-21.984000pt;}
.ws27{word-spacing:-21.888000pt;}
.ws28{word-spacing:-21.792000pt;}
.wsf{word-spacing:-21.696000pt;}
.ws5{word-spacing:-21.600000pt;}
.ws6a{word-spacing:-21.504000pt;}
.ws6{word-spacing:-21.408000pt;}
.ws2{word-spacing:-19.237120pt;}
.wsb3{word-spacing:-18.981760pt;}
.wsae{word-spacing:-17.100800pt;}
.ws71{word-spacing:-16.997760pt;}
.wsb1{word-spacing:-16.768640pt;}
.ws1b{word-spacing:-14.656000pt;}
.wsb4{word-spacing:-14.129920pt;}
.ws4b{word-spacing:-11.952000pt;}
.wsa3{word-spacing:-4.702720pt;}
.ws9f{word-spacing:-2.244480pt;}
.ws21{word-spacing:-2.176000pt;}
.ws75{word-spacing:-2.137600pt;}
.ws18{word-spacing:-2.112000pt;}
.ws6c{word-spacing:-2.016000pt;}
.ws74{word-spacing:-1.923840pt;}
.ws41{word-spacing:-1.920000pt;}
.ws5f{word-spacing:-1.899520pt;}
.ws5c{word-spacing:-1.858560pt;}
.ws40{word-spacing:-1.824000pt;}
.ws87{word-spacing:-1.792000pt;}
.ws66{word-spacing:-1.710080pt;}
.wsbf{word-spacing:-1.664000pt;}
.wsa0{word-spacing:-1.603200pt;}
.ws13{word-spacing:-1.593600pt;}
.ws7c{word-spacing:-1.572480pt;}
.ws69{word-spacing:-1.564800pt;}
.ws72{word-spacing:-1.550016pt;}
.ws17{word-spacing:-1.536000pt;}
.ws5d{word-spacing:-1.492480pt;}
.ws61{word-spacing:-1.440000pt;}
.ws32{word-spacing:-1.367040pt;}
.wsb6{word-spacing:-1.344000pt;}
.ws42{word-spacing:-1.282560pt;}
.ws0{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.276800pt;}
.ws19{word-spacing:-1.248000pt;}
.ws5e{word-spacing:-1.221120pt;}
.wsc1{word-spacing:-1.175680pt;}
.ws23{word-spacing:-1.152000pt;}
.ws64{word-spacing:-1.068800pt;}
.ws7d{word-spacing:-1.048320pt;}
.ws8b{word-spacing:-1.024000pt;}
.ws9e{word-spacing:-0.961920pt;}
.ws24{word-spacing:-0.896000pt;}
.ws6e{word-spacing:-0.864000pt;}
.ws45{word-spacing:-0.855040pt;}
.ws59{word-spacing:-0.783360pt;}
.wsc4{word-spacing:-0.768000pt;}
.wsc3{word-spacing:-0.748160pt;}
.ws4d{word-spacing:-0.743680pt;}
.ws5a{word-spacing:-0.696320pt;}
.ws3e{word-spacing:-0.672000pt;}
.ws44{word-spacing:-0.641280pt;}
.ws16{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.633600pt;}
.ws83{word-spacing:-0.595840pt;}
.ws1c{word-spacing:-0.576000pt;}
.wsc0{word-spacing:-0.534400pt;}
.ws4e{word-spacing:-0.531200pt;}
.ws73{word-spacing:-0.512640pt;}
.ws9{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.427520pt;}
.ws8c{word-spacing:-0.384000pt;}
.wsa1{word-spacing:-0.320640pt;}
.ws7a{word-spacing:-0.318720pt;}
.wsa7{word-spacing:-0.307200pt;}
.ws31{word-spacing:-0.288000pt;}
.ws5b{word-spacing:-0.261120pt;}
.ws88{word-spacing:-0.256000pt;}
.ws43{word-spacing:-0.213760pt;}
.ws52{word-spacing:-0.212480pt;}
.ws62{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.170240pt;}
.ws90{word-spacing:-0.149120pt;}
.ws9b{word-spacing:-0.117120pt;}
.ws65{word-spacing:-0.106880pt;}
.ws15{word-spacing:-0.096000pt;}
.ws58{word-spacing:-0.087040pt;}
.wsa9{word-spacing:-0.076800pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:0.057600pt;}
.ws84{word-spacing:0.085120pt;}
.ws3d{word-spacing:0.096000pt;}
.ws53{word-spacing:0.106240pt;}
.ws81{word-spacing:0.106880pt;}
.ws91{word-spacing:0.117120pt;}
.ws7{word-spacing:0.128000pt;}
.ws89{word-spacing:0.149120pt;}
.ws7b{word-spacing:0.149760pt;}
.wsa8{word-spacing:0.153600pt;}
.ws2c{word-spacing:0.170240pt;}
.ws8a{word-spacing:0.192000pt;}
.ws4c{word-spacing:0.212480pt;}
.wsa2{word-spacing:0.213760pt;}
.wsc2{word-spacing:0.255360pt;}
.ws57{word-spacing:0.256000pt;}
.wsc{word-spacing:0.288000pt;}
.ws82{word-spacing:0.298240pt;}
.wsa{word-spacing:0.384000pt;}
.ws98{word-spacing:0.468480pt;}
.ws34{word-spacing:0.480000pt;}
.ws85{word-spacing:0.510720pt;}
.ws50{word-spacing:0.531200pt;}
.ws3f{word-spacing:0.576000pt;}
.ws99{word-spacing:0.585600pt;}
.ws25{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.672000pt;}
.ws94{word-spacing:0.679296pt;}
.ws2e{word-spacing:0.680960pt;}
.ws95{word-spacing:0.702720pt;}
.ws76{word-spacing:0.743680pt;}
.ws14{word-spacing:0.768000pt;}
.ws2b{word-spacing:0.851200pt;}
.ws78{word-spacing:0.956160pt;}
.wsb{word-spacing:0.960000pt;}
.ws36{word-spacing:0.979200pt;}
.ws67{word-spacing:1.024000pt;}
.ws20{word-spacing:1.043840pt;}
.ws77{word-spacing:1.062400pt;}
.ws63{word-spacing:1.065600pt;}
.ws2d{word-spacing:1.152000pt;}
.ws4f{word-spacing:1.168640pt;}
.ws92{word-spacing:1.171200pt;}
.wsb5{word-spacing:1.248000pt;}
.ws9d{word-spacing:1.288320pt;}
.ws97{word-spacing:1.291456pt;}
.ws6d{word-spacing:1.440000pt;}
.ws79{word-spacing:1.593600pt;}
.ws9c{word-spacing:1.756800pt;}
.ws51{word-spacing:1.806080pt;}
.wsa5{word-spacing:1.824000pt;}
.ws4{word-spacing:1.891200pt;}
.ws7f{word-spacing:2.180352pt;}
.ws47{word-spacing:2.571008pt;}
.ws9a{word-spacing:3.162240pt;}
.ws22{word-spacing:4.352000pt;}
.ws68{word-spacing:4.704000pt;}
.wsbb{word-spacing:4.783808pt;}
.wsaf{word-spacing:4.795584pt;}
.wsbc{word-spacing:4.941888pt;}
.wsa6{word-spacing:4.992000pt;}
.wsb2{word-spacing:5.141120pt;}
.wsba{word-spacing:5.563520pt;}
.wsb0{word-spacing:5.692096pt;}
.wsb7{word-spacing:6.031040pt;}
.wsab{word-spacing:6.067200pt;}
.ws37{word-spacing:6.336000pt;}
.wsbd{word-spacing:7.104000pt;}
.wsbe{word-spacing:8.553600pt;}
.wsb8{word-spacing:9.496064pt;}
.wsb9{word-spacing:11.649856pt;}
.ws6b{word-spacing:22.684800pt;}
.ws86{word-spacing:28.032000pt;}
.ws3a{word-spacing:28.547648pt;}
.wsaa{word-spacing:30.412800pt;}
._15{margin-left:-16.041600pt;}
._2{margin-left:-14.080000pt;}
._8{margin-left:-12.303744pt;}
._a{margin-left:-11.175680pt;}
._10{margin-left:-9.922560pt;}
._d{margin-left:-8.035200pt;}
._3{margin-left:-6.272000pt;}
._7{margin-left:-4.968960pt;}
._5{margin-left:-3.987840pt;}
._4{margin-left:-2.264320pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.388160pt;}
._c{width:2.893376pt;}
._9{width:3.968000pt;}
._16{width:5.598976pt;}
._17{width:6.797440pt;}
._14{width:8.110720pt;}
._f{width:19.640320pt;}
._18{width:22.139968pt;}
._6{width:23.140480pt;}
._13{width:25.354880pt;}
._b{width:27.565547pt;}
._e{width:49.559040pt;}
._12{width:1213.805077pt;}
._11{width:2040.007680pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs7{font-size:64.000000pt;}
.fsc{font-size:71.040000pt;}
.fs12{font-size:74.880000pt;}
.fs15{font-size:76.800000pt;}
.fs1{font-size:85.120000pt;}
.fs3{font-size:87.040000pt;}
.fs2{font-size:96.000000pt;}
.fs16{font-size:102.400000pt;}
.fs4{font-size:106.240000pt;}
.fsa{font-size:106.880000pt;}
.fs14{font-size:117.120000pt;}
.fsd{font-size:125.440000pt;}
.fs0{font-size:128.000000pt;}
.fs10{font-size:135.680000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:170.880000pt;}
.fs6{font-size:192.000000pt;}
.fs5{font-size:193.280000pt;}
.fs11{font-size:213.120000pt;}
.fsf{font-size:232.320000pt;}
.fs13{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:2.993600pt;}
.y9f{bottom:3.388133pt;}
.ybf{bottom:4.543733pt;}
.ya6{bottom:6.061467pt;}
.y6c{bottom:7.061733pt;}
.y65{bottom:7.269600pt;}
.y64{bottom:8.039733pt;}
.y5b{bottom:8.570000pt;}
.y6f{bottom:10.921467pt;}
.yf{bottom:10.933067pt;}
.y11{bottom:13.068133pt;}
.y123{bottom:13.748800pt;}
.y5d{bottom:16.392133pt;}
.y106{bottom:16.697867pt;}
.y8{bottom:17.351867pt;}
.y1a{bottom:19.606667pt;}
.y39{bottom:20.219600pt;}
.y3a{bottom:28.060000pt;}
.y9e{bottom:28.988427pt;}
.yfd{bottom:34.658400pt;}
.ya5{bottom:34.861467pt;}
.yce{bottom:38.193467pt;}
.ye{bottom:39.733067pt;}
.y99{bottom:41.553120pt;}
.y59{bottom:42.998933pt;}
.y9d{bottom:54.588267pt;}
.y96{bottom:56.285867pt;}
.y98{bottom:63.960960pt;}
.yd{bottom:68.213067pt;}
.ye3{bottom:69.881333pt;}
.ya{bottom:70.789333pt;}
.y119{bottom:73.014000pt;}
.ycd{bottom:73.393467pt;}
.y58{bottom:74.998933pt;}
.y97{bottom:86.368800pt;}
.y122{bottom:89.381867pt;}
.y37{bottom:91.871333pt;}
.yfc{bottom:92.258400pt;}
.y75{bottom:95.512533pt;}
.ydc{bottom:95.785467pt;}
.yc{bottom:97.013067pt;}
.y7d{bottom:97.996533pt;}
.y9{bottom:100.006267pt;}
.y45{bottom:100.562933pt;}
.ye2{bottom:101.891893pt;}
.yff{bottom:103.442267pt;}
.y25{bottom:104.311733pt;}
.yb9{bottom:104.443867pt;}
.ycc{bottom:108.593467pt;}
.y118{bottom:110.070133pt;}
.y8a{bottom:112.020800pt;}
.y36{bottom:120.671333pt;}
.y74{bottom:124.312533pt;}
.y24{bottom:129.911733pt;}
.yb8{bottom:133.243867pt;}
.ye1{bottom:133.902453pt;}
.y7c{bottom:136.396533pt;}
.y114{bottom:137.460800pt;}
.yf1{bottom:137.776000pt;}
.y57{bottom:138.828693pt;}
.y117{bottom:138.870133pt;}
.y89{bottom:140.820800pt;}
.y121{bottom:147.621867pt;}
.y35{bottom:149.471333pt;}
.yfb{bottom:149.858400pt;}
.y95{bottom:152.925867pt;}
.y44{bottom:154.962933pt;}
.y23{bottom:155.511733pt;}
.yb7{bottom:162.043733pt;}
.ye0{bottom:165.913013pt;}
.y116{bottom:167.670133pt;}
.ydb{bottom:168.577307pt;}
.y56{bottom:170.674133pt;}
.yfe{bottom:171.298400pt;}
.y7b{bottom:174.796533pt;}
.yf0{bottom:176.176000pt;}
.y113{bottom:176.258400pt;}
.y34{bottom:178.271333pt;}
.yfa{bottom:178.658400pt;}
.y88{bottom:179.212800pt;}
.ycb{bottom:182.993467pt;}
.y43{bottom:183.762933pt;}
.yb6{bottom:190.843733pt;}
.y115{bottom:196.470133pt;}
.y55{bottom:202.678933pt;}
.yda{bottom:203.625467pt;}
.y33{bottom:207.071333pt;}
.y87{bottom:207.708800pt;}
.y7a{bottom:213.196533pt;}
.yef{bottom:214.576000pt;}
.y94{bottom:215.799467pt;}
.yb5{bottom:219.643733pt;}
.yca{bottom:221.073467pt;}
.y69{bottom:226.820560pt;}
.y32{bottom:235.871333pt;}
.y86{bottom:236.820800pt;}
.y42{bottom:238.162933pt;}
.y63{bottom:238.188000pt;}
.y112{bottom:242.817200pt;}
.y10e{bottom:243.111467pt;}
.y10a{bottom:245.974267pt;}
.y120{bottom:246.816907pt;}
.yf9{bottom:248.202133pt;}
.yb4{bottom:248.443867pt;}
.y79{bottom:251.596533pt;}
.yee{bottom:252.976000pt;}
.y22{bottom:254.711893pt;}
.y5{bottom:259.331467pt;}
.yc9{bottom:259.793467pt;}
.y31{bottom:264.671333pt;}
.y54{bottom:266.503253pt;}
.y41{bottom:266.962933pt;}
.y111{bottom:271.617067pt;}
.y10d{bottom:271.911467pt;}
.yd9{bottom:274.207227pt;}
.y109{bottom:274.774267pt;}
.yb3{bottom:277.243867pt;}
.y11f{bottom:278.827467pt;}
.y21{bottom:280.311733pt;}
.y93{bottom:280.605867pt;}
.y78{bottom:289.996533pt;}
.y62{bottom:290.337760pt;}
.ydf{bottom:293.901813pt;}
.y6{bottom:297.886533pt;}
.yc8{bottom:298.193467pt;}
.y53{bottom:298.348693pt;}
.y110{bottom:300.417067pt;}
.y10c{bottom:300.711467pt;}
.y108{bottom:303.574267pt;}
.y85{bottom:304.028267pt;}
.yf8{bottom:305.802133pt;}
.yb2{bottom:306.043733pt;}
.y68{bottom:308.092880pt;}
.yd8{bottom:309.401787pt;}
.y92{bottom:312.605867pt;}
.y61{bottom:316.428000pt;}
.y124{bottom:317.362133pt;}
.y40{bottom:321.050933pt;}
.y30{bottom:322.271333pt;}
.yde{bottom:325.912373pt;}
.y77{bottom:328.396533pt;}
.y10f{bottom:329.217067pt;}
.y10b{bottom:329.511467pt;}
.y52{bottom:330.353493pt;}
.y107{bottom:332.374267pt;}
.y84{bottom:332.828267pt;}
.y20{bottom:333.111733pt;}
.yb1{bottom:334.843733pt;}
.yed{bottom:336.708000pt;}
.y11e{bottom:342.811307pt;}
.yd7{bottom:344.596347pt;}
.y3f{bottom:350.162933pt;}
.y2f{bottom:351.071333pt;}
.y19{bottom:355.967867pt;}
.ydd{bottom:357.922933pt;}
.y1f{bottom:361.911733pt;}
.y51{bottom:362.198933pt;}
.yf7{bottom:363.402133pt;}
.yb0{bottom:363.643733pt;}
.yec{bottom:365.508000pt;}
.y76{bottom:366.796533pt;}
.y60{bottom:368.747867pt;}
.yc7{bottom:373.713467pt;}
.y11d{bottom:374.821867pt;}
.y91{bottom:375.485867pt;}
.yd6{bottom:379.790907pt;}
.y2e{bottom:379.871333pt;}
.yc0{bottom:384.777600pt;}
.y67{bottom:389.365200pt;}
.y1e{bottom:390.391733pt;}
.yeb{bottom:394.308000pt;}
.y18{bottom:394.367867pt;}
.y83{bottom:400.028267pt;}
.y105{bottom:402.778800pt;}
.y3e{bottom:404.562933pt;}
.y4{bottom:404.722133pt;}
.y2d{bottom:408.671333pt;}
.yd5{bottom:414.985467pt;}
.y5f{bottom:420.908000pt;}
.yf6{bottom:421.002133pt;}
.yaf{bottom:421.243867pt;}
.y73{bottom:425.899067pt;}
.y50{bottom:426.038933pt;}
.y82{bottom:428.828267pt;}
.y17{bottom:432.767867pt;}
.y3d{bottom:433.362933pt;}
.y2c{bottom:437.471333pt;}
.y90{bottom:439.325867pt;}
.y11c{bottom:440.261867pt;}
.y104{bottom:441.178800pt;}
.y1d{bottom:444.151733pt;}
.ybe{bottom:447.370667pt;}
.yae{bottom:450.043733pt;}
.yd4{bottom:450.185467pt;}
.yc6{bottom:451.793467pt;}
.y72{bottom:457.579067pt;}
.y4f{bottom:458.038933pt;}
.y2b{bottom:466.271333pt;}
.y16{bottom:471.167867pt;}
.y5e{bottom:473.228000pt;}
.yad{bottom:478.843733pt;}
.y103{bottom:479.578800pt;}
.yea{bottom:480.708000pt;}
.ye7{bottom:485.046053pt;}
.yd3{bottom:485.390907pt;}
.y3{bottom:485.831467pt;}
.yc5{bottom:489.873467pt;}
.y81{bottom:494.636267pt;}
.y2a{bottom:495.071333pt;}
.y8f{bottom:503.165867pt;}
.yf5{bottom:506.088667pt;}
.yac{bottom:507.643733pt;}
.ya4{bottom:508.131200pt;}
.ye9{bottom:509.508000pt;}
.y2{bottom:514.631467pt;}
.y11b{bottom:516.741867pt;}
.ye6{bottom:517.056613pt;}
.yd2{bottom:520.585467pt;}
.y4e{bottom:521.868693pt;}
.y48{bottom:522.209467pt;}
.y1c{bottom:523.511733pt;}
.ybd{bottom:523.850667pt;}
.yc4{bottom:528.593467pt;}
.yab{bottom:536.443733pt;}
.ye8{bottom:538.308000pt;}
.y9b{bottom:543.011440pt;}
.y1{bottom:545.511467pt;}
.y15{bottom:547.647867pt;}
.ye5{bottom:549.067173pt;}
.y1b{bottom:549.111733pt;}
.y29{bottom:552.671333pt;}
.y71{bottom:553.579067pt;}
.y4d{bottom:553.714133pt;}
.y47{bottom:554.209467pt;}
.y11a{bottom:555.461867pt;}
.ya3{bottom:555.994133pt;}
.y102{bottom:556.058800pt;}
.y80{bottom:561.836267pt;}
.yf4{bottom:563.688667pt;}
.yc3{bottom:566.993467pt;}
.y8e{bottom:567.805867pt;}
.y9a{bottom:575.022000pt;}
.ye4{bottom:581.077733pt;}
.y6e{bottom:582.142667pt;}
.y4c{bottom:585.718933pt;}
.y14{bottom:586.367867pt;}
.y7f{bottom:590.636267pt;}
.yaa{bottom:594.043733pt;}
.ya2{bottom:594.394133pt;}
.y101{bottom:594.778800pt;}
.y8d{bottom:599.005867pt;}
.ybc{bottom:600.970667pt;}
.y28{bottom:610.271333pt;}
.y6a{bottom:610.956933pt;}
.yd1{bottom:613.107467pt;}
.y46{bottom:614.049467pt;}
.yf3{bottom:621.288667pt;}
.ya9{bottom:622.843733pt;}
.yc2{bottom:623.320267pt;}
.y13{bottom:624.767867pt;}
.ya1{bottom:632.794133pt;}
.y70{bottom:637.419067pt;}
.y27{bottom:639.071333pt;}
.ybb{bottom:639.370667pt;}
.y9c{bottom:641.852667pt;}
.y8b{bottom:642.536133pt;}
.yb{bottom:643.388133pt;}
.y7{bottom:644.070667pt;}
.y4b{bottom:649.553493pt;}
.y38{bottom:650.271333pt;}
.ya8{bottom:651.643733pt;}
.y66{bottom:657.145333pt;}
.yd0{bottom:657.907333pt;}
.y7e{bottom:660.546800pt;}
.y5a{bottom:662.226133pt;}
.y10{bottom:664.072533pt;}
.y100{bottom:667.653333pt;}
.y26{bottom:667.871333pt;}
.y8c{bottom:667.965867pt;}
.yc1{bottom:668.120133pt;}
.y49{bottom:670.268000pt;}
.ya0{bottom:671.194133pt;}
.y6b{bottom:673.024933pt;}
.y6d{bottom:674.066000pt;}
.y12{bottom:674.739200pt;}
.y5c{bottom:675.184667pt;}
.yba{bottom:677.770667pt;}
.yf2{bottom:678.888533pt;}
.ya7{bottom:680.443733pt;}
.y4a{bottom:681.398933pt;}
.y3c{bottom:691.108933pt;}
.y3b{bottom:691.908800pt;}
.h1c{height:38.128125pt;}
.ha{height:45.937500pt;}
.h27{height:54.368437pt;}
.h33{height:55.912500pt;}
.h2a{height:61.096875pt;}
.hf{height:61.969687pt;}
.h11{height:62.011250pt;}
.h4{height:63.367500pt;}
.h1d{height:63.410000pt;}
.h2{height:65.625000pt;}
.h32{height:68.718750pt;}
.h7{height:68.906250pt;}
.h14{height:69.671125pt;}
.h3{height:69.703125pt;}
.h31{height:69.890625pt;}
.h10{height:69.937500pt;}
.h17{height:72.002500pt;}
.h13{height:74.737500pt;}
.h36{height:75.268750pt;}
.h19{height:75.375000pt;}
.h28{height:76.715625pt;}
.h26{height:77.138125pt;}
.h16{height:77.237500pt;}
.h5{height:77.345625pt;}
.h18{height:77.397500pt;}
.h20{height:77.602812pt;}
.h15{height:77.811562pt;}
.h30{height:77.863750pt;}
.h21{height:80.359125pt;}
.h1a{height:83.346250pt;}
.h34{height:83.580313pt;}
.h35{height:83.622553pt;}
.h2f{height:85.037812pt;}
.h2e{height:85.323750pt;}
.hc{height:88.500000pt;}
.h1b{height:91.078750pt;}
.h2b{height:91.875000pt;}
.hd{height:92.500000pt;}
.h8{height:92.937500pt;}
.h23{height:93.187500pt;}
.he{height:93.250000pt;}
.h1f{height:98.845000pt;}
.h37{height:99.496875pt;}
.h1{height:100.203438pt;}
.h29{height:107.034375pt;}
.hb{height:108.272187pt;}
.h2c{height:122.252187pt;}
.h12{height:124.071562pt;}
.h25{height:124.405313pt;}
.h24{height:131.697183pt;}
.h9{height:139.406250pt;}
.h6{height:140.713125pt;}
.h22{height:155.157187pt;}
.h1e{height:169.248750pt;}
.h2d{height:209.109375pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.846400pt;}
.x4b{left:5.514800pt;}
.xc{left:7.566667pt;}
.x5a{left:8.928667pt;}
.x45{left:13.390267pt;}
.x4e{left:15.102400pt;}
.x1{left:18.091333pt;}
.x3a{left:23.109867pt;}
.x3b{left:28.557867pt;}
.x29{left:29.545333pt;}
.x37{left:32.398000pt;}
.x1f{left:34.040000pt;}
.x52{left:35.188933pt;}
.x54{left:37.420267pt;}
.x46{left:43.470267pt;}
.x4f{left:45.182400pt;}
.x3e{left:46.445867pt;}
.x50{left:51.102400pt;}
.x3d{left:52.365867pt;}
.x4{left:56.683067pt;}
.x5{left:57.714800pt;}
.x32{left:60.562933pt;}
.x53{left:65.260933pt;}
.x42{left:72.000000pt;}
.x3f{left:82.445867pt;}
.x64{left:83.624400pt;}
.x30{left:86.257467pt;}
.x5b{left:100.198533pt;}
.x1b{left:103.517067pt;}
.x18{left:109.277067pt;}
.x19{left:112.637067pt;}
.x1a{left:114.557067pt;}
.x1c{left:116.957067pt;}
.x4c{left:119.758933pt;}
.x40{left:142.285867pt;}
.x2c{left:157.639600pt;}
.x69{left:164.796800pt;}
.xa{left:166.015067pt;}
.x51{left:175.316400pt;}
.x4d{left:177.358933pt;}
.x20{left:191.246400pt;}
.xd{left:207.237733pt;}
.x16{left:222.119200pt;}
.x21{left:224.206400pt;}
.x48{left:243.885867pt;}
.x23{left:249.801733pt;}
.x43{left:250.740267pt;}
.x1d{left:266.445600pt;}
.x17{left:270.119200pt;}
.x9{left:277.835200pt;}
.x14{left:286.439200pt;}
.x22{left:297.801733pt;}
.x35{left:304.558000pt;}
.x36{left:307.918000pt;}
.x15{left:312.519200pt;}
.x2f{left:321.643867pt;}
.x55{left:330.700267pt;}
.x68{left:345.600000pt;}
.xb{left:360.819200pt;}
.x60{left:366.571333pt;}
.x5e{left:374.261733pt;}
.x47{left:376.412267pt;}
.x67{left:384.664000pt;}
.x65{left:393.381333pt;}
.x31{left:397.051733pt;}
.x5d{left:398.421733pt;}
.x5c{left:412.021733pt;}
.x56{left:419.500267pt;}
.x66{left:423.453333pt;}
.x44{left:435.253600pt;}
.x2e{left:443.314267pt;}
.x33{left:469.075867pt;}
.x24{left:507.744400pt;}
.x13{left:524.341333pt;}
.x26{left:527.744400pt;}
.x2{left:529.839600pt;}
.x11{left:535.232400pt;}
.xe{left:545.152400pt;}
.x25{left:547.426640pt;}
.x2d{left:556.734933pt;}
.x12{left:565.312400pt;}
.x62{left:567.614400pt;}
.x61{left:575.614400pt;}
.xf{left:578.272400pt;}
.x2a{left:592.947307pt;}
.x5f{left:609.081733pt;}
.x38{left:610.370800pt;}
.x10{left:613.792400pt;}
.x39{left:615.818800pt;}
.x49{left:648.768000pt;}
.x4a{left:655.968000pt;}
.x28{left:670.575333pt;}
.x6{left:729.042000pt;}
.x3c{left:734.933467pt;}
.x59{left:745.354267pt;}
.x57{left:751.457067pt;}
.x58{left:753.354267pt;}
.x41{left:759.069067pt;}
.x63{left:771.008667pt;}
.x6a{left:794.307200pt;}
.x3{left:803.912933pt;}
.x8{left:829.107600pt;}
.x27{left:832.666000pt;}
.x7{left:839.111067pt;}
.x34{left:867.920000pt;}
.x1e{left:876.080000pt;}
}




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