
    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_97bcb18f874af61526fa292c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dad8e0c582e3bb9ba5a83031.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6de50913b7d17f82974e5ac0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f8991fa3de78d5b67fab273.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_42bd20726231af9ac41fef65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894531;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_d1b08ee0026245cc3bf44928.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m18{transform:matrix(0.000000,-0.249209,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249209,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249209,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.249212,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249212,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249212,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.249336,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249336,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249336,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.249342,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249342,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249342,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249875,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249875,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249875,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249880,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249880,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249880,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.220526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220526,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.234664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234664,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.039998px;}
.v2{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.439999px;}
.v4{vertical-align:7.919997px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010620px;}
.ls5{letter-spacing:0.021106px;}
.ls4{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.021240px;}
.ls2{letter-spacing:0.021282px;}
.ls8{letter-spacing:0.085821px;}
.ls6{letter-spacing:0.155880px;}
.lsb{letter-spacing:0.167075px;}
.lsc{letter-spacing:0.186616px;}
.ls7{letter-spacing:0.244500px;}
.ls9{letter-spacing:0.244505px;}
.lse{letter-spacing:0.310953px;}
.lsf{letter-spacing:0.731040px;}
.ls16{letter-spacing:1.451459px;}
.lsa{letter-spacing:2.007433px;}
.ls12{letter-spacing:2.171879px;}
.ls10{letter-spacing:2.892299px;}
.ls15{letter-spacing:4.333198px;}
.ls11{letter-spacing:5.774038px;}
.ls14{letter-spacing:6.494457px;}
.ls17{letter-spacing:7.935297px;}
.ls13{letter-spacing:10.816976px;}
.lsd{letter-spacing:1744.218070px;}
.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;}
}
.ws5{word-spacing:-55.943978px;}
.ws2c{word-spacing:-18.021275px;}
.ws3{word-spacing:-18.021231px;}
.ws4{word-spacing:-18.021099px;}
.ws0{word-spacing:-17.999993px;}
.ws1e{word-spacing:-14.858454px;}
.ws16{word-spacing:-14.018214px;}
.ws20{word-spacing:-13.112528px;}
.ws1b{word-spacing:-12.332155px;}
.ws1{word-spacing:-12.059995px;}
.ws27{word-spacing:-11.382835px;}
.ws1c{word-spacing:-11.297155px;}
.ws1f{word-spacing:-11.105096px;}
.ws13{word-spacing:-10.966676px;}
.ws6{word-spacing:-10.716296px;}
.ws19{word-spacing:-10.513796px;}
.ws8{word-spacing:-10.394996px;}
.ws23{word-spacing:-9.954896px;}
.wsa{word-spacing:-7.721097px;}
.ws10{word-spacing:-6.946950px;}
.ws2a{word-spacing:-0.939721px;}
.ws26{word-spacing:-0.361044px;}
.ws17{word-spacing:-0.290547px;}
.ws29{word-spacing:-0.217822px;}
.wsf{word-spacing:-0.164705px;}
.ws18{word-spacing:-0.072671px;}
.ws1a{word-spacing:-0.056591px;}
.ws15{word-spacing:-0.054110px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.503622px;}
.ws2b{word-spacing:0.504077px;}
.ws11{word-spacing:5.929046px;}
.wsb{word-spacing:60.449085px;}
.ws21{word-spacing:88.873636px;}
.ws25{word-spacing:92.867253px;}
.ws22{word-spacing:96.498620px;}
.ws24{word-spacing:102.915322px;}
.ws14{word-spacing:107.472105px;}
.ws9{word-spacing:127.277992px;}
.wsd{word-spacing:158.680840px;}
.wsc{word-spacing:166.596621px;}
.ws7{word-spacing:171.908673px;}
.wse{word-spacing:179.551062px;}
.ws1d{word-spacing:244.437909px;}
.ws12{word-spacing:257.588325px;}
._34{margin-left:-132.477441px;}
._2f{margin-left:-32.798254px;}
._2c{margin-left:-30.858744px;}
._2d{margin-left:-22.784573px;}
._3{margin-left:-2.992335px;}
._1{margin-left:-1.980818px;}
._0{width:1.089835px;}
._2{width:2.189898px;}
._9{width:3.776822px;}
._a{width:4.780937px;}
._10{width:5.784679px;}
._1c{width:7.737339px;}
._16{width:9.025496px;}
._8{width:10.555237px;}
._7{width:11.787021px;}
._21{width:12.953126px;}
._1d{width:14.050550px;}
._e{width:15.675308px;}
._6{width:16.687273px;}
._12{width:19.244948px;}
._11{width:20.269644px;}
._f{width:21.846010px;}
._1f{width:23.161886px;}
._36{width:24.288301px;}
._4{width:25.400269px;}
._5{width:26.551877px;}
._20{width:27.735164px;}
._1b{width:29.692699px;}
._1a{width:30.755307px;}
._1e{width:32.437694px;}
._17{width:33.935538px;}
._18{width:35.134463px;}
._19{width:36.981044px;}
._d{width:38.017695px;}
._b{width:39.281312px;}
._c{width:40.457906px;}
._39{width:41.955596px;}
._38{width:43.055405px;}
._15{width:50.525326px;}
._37{width:51.873118px;}
._35{width:64.160317px;}
._28{width:70.069482px;}
._27{width:83.511693px;}
._31{width:101.470698px;}
._30{width:103.302447px;}
._2b{width:122.684123px;}
._33{width:126.773568px;}
._25{width:134.342082px;}
._26{width:138.911457px;}
._32{width:140.410465px;}
._2a{width:141.450814px;}
._24{width:156.599196px;}
._13{width:161.478063px;}
._23{width:173.646427px;}
._29{width:180.029042px;}
._22{width:185.890009px;}
._14{width:194.525202px;}
._2e{width:267.242347px;}
.fc4{color:rgb(0,153,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(204,99,70);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:19.634392px;}
.fsf{font-size:24.989030px;}
.fs12{font-size:25.588070px;}
.fs18{font-size:26.358469px;}
.fs7{font-size:26.459989px;}
.fse{font-size:29.747508px;}
.fs8{font-size:30.884388px;}
.fsc{font-size:37.569585px;}
.fs1d{font-size:39.819584px;}
.fs1e{font-size:39.945584px;}
.fs11{font-size:40.210544px;}
.fs17{font-size:41.422303px;}
.fs6{font-size:41.579983px;}
.fs14{font-size:42.055183px;}
.fs15{font-size:42.075343px;}
.fs5{font-size:42.865183px;}
.fs13{font-size:43.866702px;}
.fs1c{font-size:44.420382px;}
.fs1f{font-size:44.575182px;}
.fs19{font-size:45.188622px;}
.fs21{font-size:45.531342px;}
.fsb{font-size:46.541501px;}
.fsa{font-size:46.563821px;}
.fs3{font-size:48.239981px;}
.fs16{font-size:49.328620px;}
.fs9{font-size:56.072858px;}
.fsd{font-size:56.100938px;}
.fs4{font-size:59.087496px;}
.fs1a{font-size:59.433816px;}
.fs1b{font-size:59.622456px;}
.fs22{font-size:60.547776px;}
.fs20{font-size:60.707376px;}
.fs0{font-size:71.999971px;}
.fs2{font-size:107.999957px;}
.fs1{font-size:192.239923px;}
.y72{bottom:-15.120668px;}
.y0{bottom:0.000000px;}
.y11b{bottom:0.179159px;}
.y74{bottom:1.259133px;}
.y28{bottom:47.279981px;}
.yac{bottom:80.580268px;}
.y187{bottom:83.459967px;}
.y4f{bottom:85.259966px;}
.yc8{bottom:91.019964px;}
.ydd{bottom:94.439962px;}
.y25{bottom:94.619962px;}
.y88{bottom:103.259959px;}
.y198{bottom:104.339958px;}
.ya9{bottom:106.139958px;}
.yab{bottom:106.140258px;}
.y12f{bottom:109.019956px;}
.y4e{bottom:110.819956px;}
.yaa{bottom:114.420254px;}
.yc7{bottom:116.579953px;}
.ydc{bottom:119.999952px;}
.y24{bottom:120.179952px;}
.y87{bottom:128.819948px;}
.y197{bottom:129.899948px;}
.ya8{bottom:131.699947px;}
.y12e{bottom:134.579946px;}
.y4d{bottom:136.379945px;}
.yc6{bottom:142.139943px;}
.ydb{bottom:145.559942px;}
.y23{bottom:145.739942px;}
.y86{bottom:154.379938px;}
.y196{bottom:155.459938px;}
.ya7{bottom:157.259937px;}
.y12d{bottom:160.139936px;}
.y4c{bottom:161.939935px;}
.yc5{bottom:167.699933px;}
.yda{bottom:171.119932px;}
.y22{bottom:171.299931px;}
.y6e{bottom:179.939928px;}
.y195{bottom:181.019928px;}
.ya6{bottom:182.819927px;}
.y71{bottom:184.800600px;}
.y12c{bottom:185.699926px;}
.y4b{bottom:187.499925px;}
.yc4{bottom:193.259923px;}
.yd9{bottom:196.679921px;}
.y21{bottom:196.859921px;}
.y6d{bottom:205.499918px;}
.y194{bottom:206.579917px;}
.ya5{bottom:208.379917px;}
.y12b{bottom:211.259915px;}
.y4a{bottom:213.059915px;}
.yc3{bottom:218.819912px;}
.yd8{bottom:222.239911px;}
.y20{bottom:222.419911px;}
.y6c{bottom:231.059908px;}
.y193{bottom:232.139907px;}
.ya4{bottom:233.939906px;}
.y129{bottom:236.819905px;}
.y49{bottom:238.619905px;}
.yc2{bottom:244.379902px;}
.y12a{bottom:245.099902px;}
.yd7{bottom:247.799901px;}
.y1f{bottom:247.979901px;}
.y6b{bottom:256.619897px;}
.y192{bottom:257.699897px;}
.y128{bottom:262.379895px;}
.y48{bottom:264.179894px;}
.yc1{bottom:269.939892px;}
.yd6{bottom:273.359891px;}
.y1e{bottom:273.539891px;}
.ya3{bottom:277.499889px;}
.y6a{bottom:282.179887px;}
.y191{bottom:283.259887px;}
.y127{bottom:287.939885px;}
.y47{bottom:289.739884px;}
.ybf{bottom:295.499882px;}
.yd5{bottom:298.919880px;}
.y1d{bottom:299.099880px;}
.yc0{bottom:303.779878px;}
.y167{bottom:305.579878px;}
.y69{bottom:307.739877px;}
.y190{bottom:308.819876px;}
.y126{bottom:313.499875px;}
.y46{bottom:315.299874px;}
.ya2{bottom:321.059872px;}
.yd4{bottom:324.479870px;}
.y1c{bottom:324.659870px;}
.y68{bottom:333.299867px;}
.y18f{bottom:334.379866px;}
.y176{bottom:336.539865px;}
.y125{bottom:339.059864px;}
.y45{bottom:340.859864px;}
.y174{bottom:345.899862px;}
.ya1{bottom:346.619861px;}
.y166{bottom:349.499860px;}
.yd3{bottom:350.039860px;}
.y1b{bottom:350.219860px;}
.ybe{bottom:354.899858px;}
.y67{bottom:358.859856px;}
.y18e{bottom:359.939856px;}
.y124{bottom:364.619854px;}
.y168{bottom:365.879854px;}
.y44{bottom:366.419853px;}
.ya0{bottom:372.179851px;}
.y165{bottom:375.059850px;}
.y171{bottom:375.239850px;}
.yd2{bottom:375.599850px;}
.y1a{bottom:375.779850px;}
.y173{bottom:376.139849px;}
.y172{bottom:376.319849px;}
.y175{bottom:377.039849px;}
.y186{bottom:382.259847px;}
.y66{bottom:384.419846px;}
.y18d{bottom:385.499846px;}
.y123{bottom:390.179844px;}
.y43{bottom:391.979843px;}
.y9f{bottom:397.739841px;}
.y164{bottom:400.619840px;}
.y65{bottom:409.979836px;}
.y18c{bottom:411.059836px;}
.y42{bottom:417.539833px;}
.y169{bottom:418.439833px;}
.yd1{bottom:419.159832px;}
.y19{bottom:421.859831px;}
.y9e{bottom:423.299831px;}
.y163{bottom:426.179830px;}
.y122{bottom:433.739827px;}
.y64{bottom:435.539826px;}
.y18b{bottom:436.619825px;}
.y18{bottom:443.099823px;}
.y9d{bottom:448.859820px;}
.y162{bottom:451.739819px;}
.y170{bottom:452.459819px;}
.y85{bottom:453.539819px;}
.y63{bottom:461.099816px;}
.y18a{bottom:462.179815px;}
.yd0{bottom:462.719815px;}
.y41{bottom:468.659813px;}
.y16a{bottom:471.179812px;}
.y9c{bottom:474.419810px;}
.y121{bottom:477.299809px;}
.ycf{bottom:483.959806px;}
.y17{bottom:486.659805px;}
.y189{bottom:487.739805px;}
.y40{bottom:494.219802px;}
.y185{bottom:494.939802px;}
.y120{bottom:498.539801px;}
.y70{bottom:499.079800px;}
.y9b{bottom:499.979800px;}
.y161{bottom:502.859799px;}
.yce{bottom:505.199798px;}
.y62{bottom:512.219795px;}
.y188{bottom:513.299795px;}
.y84{bottom:515.099794px;}
.y6f{bottom:516.899793px;}
.y3f{bottom:519.779792px;}
.y16b{bottom:523.919790px;}
.ybd{bottom:525.539790px;}
.ycd{bottom:526.439789px;}
.y160{bottom:528.419789px;}
.y16{bottom:530.219788px;}
.y61{bottom:537.779785px;}
.y184{bottom:538.859784px;}
.y11f{bottom:541.019784px;}
.y9a{bottom:543.539783px;}
.y3e{bottom:545.339782px;}
.ycc{bottom:548.039781px;}
.y19a{bottom:550.739780px;}
.ybc{bottom:551.099780px;}
.y15f{bottom:553.979778px;}
.y15{bottom:555.779778px;}
.y83{bottom:558.659777px;}
.y11e{bottom:562.259775px;}
.y60{bottom:563.339775px;}
.y14{bottom:564.059774px;}
.y183{bottom:564.419774px;}
.ycb{bottom:569.639772px;}
.y3d{bottom:570.899772px;}
.y199{bottom:571.979771px;}
.ybb{bottom:576.659769px;}
.y16c{bottom:577.739769px;}
.y15e{bottom:579.539768px;}
.y11d{bottom:583.859766px;}
.y82{bottom:584.219766px;}
.y5f{bottom:584.579766px;}
.y99{bottom:587.099765px;}
.y182{bottom:589.979764px;}
.y3c{bottom:596.459761px;}
.y13{bottom:599.339760px;}
.y11a{bottom:601.680600px;}
.yba{bottom:602.219759px;}
.y15d{bottom:605.099758px;}
.y11c{bottom:605.459758px;}
.y5e{bottom:605.819758px;}
.y81{bottom:609.779756px;}
.yf6{bottom:612.299755px;}
.y98{bottom:612.659755px;}
.y181{bottom:615.539754px;}
.y116{bottom:618.239753px;}
.y115{bottom:618.599753px;}
.yca{bottom:619.859752px;}
.y3b{bottom:622.019751px;}
.y12{bottom:624.899750px;}
.y5d{bottom:627.059749px;}
.y16d{bottom:630.479748px;}
.y15c{bottom:630.659748px;}
.y11{bottom:633.179747px;}
.yf0{bottom:633.359747px;}
.y80{bottom:635.339746px;}
.y97{bottom:638.219745px;}
.ye7{bottom:639.119744px;}
.yc9{bottom:641.099744px;}
.y180{bottom:645.419742px;}
.yb9{bottom:645.779742px;}
.y3a{bottom:647.579741px;}
.yeb{bottom:648.479741px;}
.yde{bottom:654.779738px;}
.y15b{bottom:656.219738px;}
.y103{bottom:660.719736px;}
.y7f{bottom:660.899736px;}
.y5c{bottom:666.659733px;}
.y73{bottom:667.200600px;}
.y10{bottom:668.459733px;}
.y39{bottom:673.139731px;}
.yf5{bottom:675.839730px;}
.y149{bottom:676.919729px;}
.y13c{bottom:679.979728px;}
.y13b{bottom:680.339728px;}
.y118{bottom:681.419727px;}
.y96{bottom:681.779727px;}
.y14e{bottom:682.859727px;}
.y16e{bottom:683.039727px;}
.yf1{bottom:688.079725px;}
.yb8{bottom:688.979724px;}
.y17f{bottom:689.339724px;}
.y102{bottom:690.959724px;}
.y5b{bottom:692.219723px;}
.yf{bottom:694.019722px;}
.yec{bottom:694.739722px;}
.y38{bottom:698.699721px;}
.y114{bottom:700.139720px;}
.yf7{bottom:700.319720px;}
.ye{bottom:702.299719px;}
.y13a{bottom:702.659719px;}
.y7e{bottom:704.459718px;}
.ydf{bottom:705.359718px;}
.y14b{bottom:706.619717px;}
.y15a{bottom:707.339717px;}
.y130{bottom:708.059717px;}
.y17e{bottom:714.899714px;}
.yf2{bottom:715.439714px;}
.y148{bottom:717.239713px;}
.y110{bottom:717.419713px;}
.y5a{bottom:717.779713px;}
.y134{bottom:720.659712px;}
.y37{bottom:724.259710px;}
.y95{bottom:725.339710px;}
.yb7{bottom:732.899707px;}
.y13e{bottom:733.259707px;}
.y16f{bottom:735.779706px;}
.y17d{bottom:740.459704px;}
.yed{bottom:740.999704px;}
.y10e{bottom:741.899703px;}
.yf3{bottom:743.159703px;}
.y59{bottom:743.339703px;}
.y10f{bottom:745.139702px;}
.y119{bottom:746.219702px;}
.yc{bottom:747.839701px;}
.y7d{bottom:748.019701px;}
.y36{bottom:749.819700px;}
.y94{bottom:750.899700px;}
.y10d{bottom:754.859698px;}
.yd{bottom:756.119698px;}
.y111{bottom:757.739697px;}
.yb6{bottom:758.459697px;}
.y13f{bottom:764.579694px;}
.y17c{bottom:766.019694px;}
.y58{bottom:768.899692px;}
.yf4{bottom:770.519692px;}
.y7c{bottom:773.579691px;}
.y35{bottom:775.379690px;}
.y93{bottom:776.459689px;}
.ya{bottom:779.699688px;}
.y14d{bottom:781.319687px;}
.yb5{bottom:784.019686px;}
.y156{bottom:785.099686px;}
.yee{bottom:787.259685px;}
.y135{bottom:787.439685px;}
.yb{bottom:787.979685px;}
.y14c{bottom:790.499684px;}
.y17b{bottom:791.579683px;}
.y57{bottom:794.459682px;}
.y140{bottom:796.979681px;}
.y112{bottom:797.879681px;}
.y7b{bottom:799.139680px;}
.y34{bottom:800.939680px;}
.y92{bottom:802.019679px;}
.ye0{bottom:807.779677px;}
.yb4{bottom:809.579676px;}
.y17a{bottom:817.139673px;}
.y56{bottom:820.019672px;}
.y9{bottom:820.919672px;}
.ye9{bottom:823.259671px;}
.y7a{bottom:824.699670px;}
.y117{bottom:826.679669px;}
.yea{bottom:826.859669px;}
.y91{bottom:827.579669px;}
.y141{bottom:828.299669px;}
.yef{bottom:833.699667px;}
.y13d{bottom:834.779666px;}
.yb3{bottom:835.139666px;}
.ye8{bottom:837.479665px;}
.y113{bottom:838.199665px;}
.y14a{bottom:841.979663px;}
.y179{bottom:842.699663px;}
.y33{bottom:844.139662px;}
.y55{bottom:845.579662px;}
.y79{bottom:850.259660px;}
.y8{bottom:852.599659px;}
.y90{bottom:853.139659px;}
.y136{bottom:854.219658px;}
.y152{bottom:857.999657px;}
.ye1{bottom:858.359657px;}
.y142{bottom:860.519656px;}
.yb2{bottom:860.699656px;}
.y178{bottom:868.259653px;}
.y54{bottom:871.139652px;}
.y78{bottom:875.819650px;}
.y8f{bottom:878.699649px;}
.y7{bottom:884.279646px;}
.yb1{bottom:886.259645px;}
.y153{bottom:887.699645px;}
.yfa{bottom:891.659643px;}
.y143{bottom:891.839643px;}
.y177{bottom:893.819642px;}
.y53{bottom:896.699641px;}
.y77{bottom:901.379639px;}
.y8e{bottom:904.259638px;}
.y32{bottom:908.579637px;}
.ye2{bottom:908.939636px;}
.yb0{bottom:911.819635px;}
.y155{bottom:919.379632px;}
.y137{bottom:920.099632px;}
.y52{bottom:922.259631px;}
.y144{bottom:923.159631px;}
.yf8{bottom:926.579629px;}
.y31{bottom:929.819628px;}
.yaf{bottom:937.379625px;}
.y6{bottom:942.959623px;}
.y76{bottom:944.939622px;}
.y51{bottom:947.819621px;}
.y154{bottom:948.539621px;}
.y30{bottom:955.379618px;}
.ye3{bottom:959.699616px;}
.yae{bottom:962.939615px;}
.y50{bottom:973.379611px;}
.y8d{bottom:980.939608px;}
.y145{bottom:986.699605px;}
.y138{bottom:987.059605px;}
.y159{bottom:988.499605px;}
.y5{bottom:992.819603px;}
.y2f{bottom:998.939600px;}
.y132{bottom:1005.419598px;}
.y75{bottom:1006.139598px;}
.y8c{bottom:1006.499597px;}
.y133{bottom:1009.019596px;}
.ye4{bottom:1011.359595px;}
.y158{bottom:1014.059594px;}
.y146{bottom:1019.099592px;}
.y131{bottom:1019.459592px;}
.y14f{bottom:1022.339591px;}
.y2e{bottom:1024.499590px;}
.y4{bottom:1024.679590px;}
.yf9{bottom:1031.879587px;}
.y8b{bottom:1032.059587px;}
.y157{bottom:1039.619584px;}
.y2d{bottom:1050.059580px;}
.y147{bottom:1050.239580px;}
.y139{bottom:1053.839578px;}
.y3{bottom:1056.179578px;}
.y8a{bottom:1057.619577px;}
.y150{bottom:1059.779576px;}
.y151{bottom:1059.959576px;}
.ye5{bottom:1061.939575px;}
.yff{bottom:1065.719574px;}
.y107{bottom:1066.079574px;}
.y10a{bottom:1072.379571px;}
.y10b{bottom:1073.999570px;}
.y109{bottom:1074.539570px;}
.y101{bottom:1075.439570px;}
.y2c{bottom:1075.619570px;}
.yfe{bottom:1079.399568px;}
.y89{bottom:1083.179567px;}
.y10c{bottom:1083.719567px;}
.yad{bottom:1083.899566px;}
.yfd{bottom:1095.059562px;}
.y106{bottom:1099.739560px;}
.y108{bottom:1100.099560px;}
.y2b{bottom:1101.179560px;}
.yfc{bottom:1109.099556px;}
.y2{bottom:1111.619555px;}
.ye6{bottom:1112.699555px;}
.y105{bottom:1123.139551px;}
.y104{bottom:1123.499551px;}
.y100{bottom:1124.399550px;}
.y2a{bottom:1126.739549px;}
.yfb{bottom:1128.899548px;}
.y27{bottom:1152.299539px;}
.y1{bottom:1171.379531px;}
.y29{bottom:1177.499529px;}
.y26{bottom:1177.859529px;}
.h9{height:1.080000px;}
.h21{height:16.380000px;}
.ha{height:17.460000px;}
.h18{height:20.478057px;}
.h1b{height:25.113291px;}
.h24{height:25.869396px;}
.hd{height:25.969033px;}
.h17{height:26.062777px;}
.h19{height:27.502777px;}
.he{height:30.311337px;}
.h16{height:31.025721px;}
.h14{height:36.872493px;}
.h1f{height:38.954435px;}
.h2a{height:39.080744px;}
.h2b{height:39.204406px;}
.h1a{height:39.464450px;}
.h2d{height:40.130675px;}
.h23{height:40.653726px;}
.hc{height:40.808480px;}
.hb{height:42.069833px;}
.h1e{height:42.383739px;}
.h20{height:42.404057px;}
.h1c{height:43.052769px;}
.h29{height:43.596176px;}
.h2e{height:43.748104px;}
.h25{height:44.350161px;}
.h31{height:44.664290px;}
.h11{height:45.677938px;}
.h30{height:45.887055px;}
.h12{height:46.905107px;}
.h10{height:46.927601px;}
.h7{height:47.344903px;}
.h22{height:48.413343px;}
.h6{height:48.616856px;}
.h1d{height:51.938579px;}
.h13{height:55.032443px;}
.h27{height:55.051733px;}
.hf{height:56.510927px;}
.h15{height:56.539226px;}
.h8{height:57.991146px;}
.h26{height:59.898143px;}
.h28{height:60.088257px;}
.h32{height:61.020805px;}
.h2f{height:61.181652px;}
.h2c{height:67.818140px;}
.h4{height:70.628878px;}
.h3{height:70.664034px;}
.h1{height:72.562471px;}
.h5{height:108.843706px;}
.h2{height:188.579104px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w2{width:1.260000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:74.339970px;}
.x19{left:78.480614px;}
.x58{left:80.098488px;}
.x29{left:81.180999px;}
.x12{left:83.519967px;}
.x26{left:86.399965px;}
.x17{left:87.661041px;}
.x27{left:92.519963px;}
.x18{left:93.961969px;}
.x16{left:95.580023px;}
.x6d{left:97.020960px;}
.x2a{left:99.720322px;}
.x1c{left:104.939958px;}
.x67{left:106.559957px;}
.x28{left:108.720930px;}
.x64{left:110.879949px;}
.x57{left:113.399516px;}
.x66{left:114.479954px;}
.x13{left:116.819953px;}
.x43{left:118.979952px;}
.x44{left:122.579950px;}
.x41{left:124.019950px;}
.x39{left:128.159949px;}
.x33{left:132.659979px;}
.x32{left:138.239975px;}
.x31{left:143.999975px;}
.x38{left:146.159942px;}
.x65{left:148.319878px;}
.x34{left:154.439999px;}
.x3e{left:159.119934px;}
.x3f{left:161.279935px;}
.x3d{left:164.339932px;}
.x3c{left:168.659933px;}
.x2f{left:172.259931px;}
.x6{left:193.319923px;}
.x7{left:199.439920px;}
.x10{left:200.699920px;}
.x11{left:206.819917px;}
.x59{left:208.797834px;}
.x30{left:211.139916px;}
.x73{left:214.199914px;}
.x1a{left:218.880173px;}
.x3b{left:222.839912px;}
.x3a{left:227.519909px;}
.x37{left:231.119908px;}
.x35{left:235.079906px;}
.x2b{left:246.780446px;}
.x40{left:249.659900px;}
.x36{left:252.539883px;}
.x5a{left:270.359892px;}
.x5b{left:276.479889px;}
.x42{left:280.439888px;}
.x74{left:290.519884px;}
.x68{left:330.479868px;}
.x75{left:348.479861px;}
.x1d{left:349.559549px;}
.x6b{left:353.339859px;}
.x8{left:357.479857px;}
.x9{left:363.599855px;}
.x6a{left:366.119854px;}
.x6c{left:381.599847px;}
.x7a{left:389.699844px;}
.x76{left:406.799837px;}
.x72{left:414.897506px;}
.x6f{left:417.419833px;}
.x77{left:420.299832px;}
.x6e{left:421.379831px;}
.x1b{left:424.978586px;}
.x45{left:439.559234px;}
.x71{left:446.578891px;}
.x22{left:450.899820px;}
.x69{left:451.979819px;}
.x52{left:455.579818px;}
.xa{left:458.639817px;}
.x23{left:460.979816px;}
.x2d{left:466.559814px;}
.x78{left:469.259812px;}
.x70{left:470.519812px;}
.xb{left:473.939810px;}
.x2c{left:477.539809px;}
.x79{left:482.939807px;}
.x2e{left:487.619794px;}
.x5c{left:489.059804px;}
.x46{left:530.459788px;}
.x51{left:532.439787px;}
.x7b{left:546.119782px;}
.x55{left:547.739781px;}
.x47{left:550.799681px;}
.x48{left:553.319672px;}
.x63{left:556.199778px;}
.x20{left:561.599775px;}
.x4f{left:564.659774px;}
.x60{left:566.099717px;}
.x21{left:571.679771px;}
.x49{left:574.379770px;}
.x50{left:576.719797px;}
.x4a{left:581.579767px;}
.x53{left:585.359766px;}
.x61{left:589.679838px;}
.x7c{left:595.259762px;}
.xc{left:598.499761px;}
.xd{left:604.619758px;}
.x7d{left:608.939756px;}
.x1f{left:615.780000px;}
.x4b{left:639.719744px;}
.x7e{left:646.919741px;}
.x5{left:652.319733px;}
.x4c{left:660.779775px;}
.x5d{left:662.219735px;}
.x4d{left:667.259733px;}
.x4e{left:670.859732px;}
.x2{left:671.939731px;}
.x5e{left:683.999808px;}
.x5f{left:690.479724px;}
.x4{left:693.719726px;}
.x3{left:696.419721px;}
.xe{left:705.599718px;}
.xf{left:711.719715px;}
.x54{left:719.819744px;}
.x62{left:751.858691px;}
.x15{left:782.999950px;}
.x56{left:790.560000px;}
.x24{left:797.399681px;}
.x25{left:803.519679px;}
.x1e{left:806.400000px;}
.x14{left:818.999684px;}
@media print{
.v1{vertical-align:-4.479998pt;}
.v2{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.279999pt;}
.v4{vertical-align:7.039997pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009440pt;}
.ls5{letter-spacing:0.018761pt;}
.ls4{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.018880pt;}
.ls2{letter-spacing:0.018917pt;}
.ls8{letter-spacing:0.076285pt;}
.ls6{letter-spacing:0.138560pt;}
.lsb{letter-spacing:0.148511pt;}
.lsc{letter-spacing:0.165881pt;}
.ls7{letter-spacing:0.217333pt;}
.ls9{letter-spacing:0.217338pt;}
.lse{letter-spacing:0.276402pt;}
.lsf{letter-spacing:0.649813pt;}
.ls16{letter-spacing:1.290186pt;}
.lsa{letter-spacing:1.784385pt;}
.ls12{letter-spacing:1.930559pt;}
.ls10{letter-spacing:2.570932pt;}
.ls15{letter-spacing:3.851732pt;}
.ls11{letter-spacing:5.132478pt;}
.ls14{letter-spacing:5.772851pt;}
.ls17{letter-spacing:7.053597pt;}
.ls13{letter-spacing:9.615089pt;}
.lsd{letter-spacing:1550.416062pt;}
.ws5{word-spacing:-49.727980pt;}
.ws2c{word-spacing:-16.018911pt;}
.ws3{word-spacing:-16.018872pt;}
.ws4{word-spacing:-16.018755pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1e{word-spacing:-13.207515pt;}
.ws16{word-spacing:-12.460635pt;}
.ws20{word-spacing:-11.655581pt;}
.ws1b{word-spacing:-10.961916pt;}
.ws1{word-spacing:-10.719996pt;}
.ws27{word-spacing:-10.118076pt;}
.ws1c{word-spacing:-10.041916pt;}
.ws1f{word-spacing:-9.871196pt;}
.ws13{word-spacing:-9.748156pt;}
.ws6{word-spacing:-9.525596pt;}
.ws19{word-spacing:-9.345596pt;}
.ws8{word-spacing:-9.239996pt;}
.ws23{word-spacing:-8.848796pt;}
.wsa{word-spacing:-6.863197pt;}
.ws10{word-spacing:-6.175067pt;}
.ws2a{word-spacing:-0.835308pt;}
.ws26{word-spacing:-0.320928pt;}
.ws17{word-spacing:-0.258264pt;}
.ws29{word-spacing:-0.193620pt;}
.wsf{word-spacing:-0.146404pt;}
.ws18{word-spacing:-0.064597pt;}
.ws1a{word-spacing:-0.050303pt;}
.ws15{word-spacing:-0.048098pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.447664pt;}
.ws2b{word-spacing:0.448069pt;}
.ws11{word-spacing:5.270263pt;}
.wsb{word-spacing:53.732520pt;}
.ws21{word-spacing:78.998787pt;}
.ws25{word-spacing:82.548669pt;}
.ws22{word-spacing:85.776551pt;}
.ws24{word-spacing:91.480286pt;}
.ws14{word-spacing:95.530760pt;}
.ws9{word-spacing:113.135993pt;}
.wsd{word-spacing:141.049636pt;}
.wsc{word-spacing:148.085886pt;}
.ws7{word-spacing:152.807709pt;}
.wse{word-spacing:159.600944pt;}
.ws1d{word-spacing:217.278141pt;}
.ws12{word-spacing:228.967400pt;}
._34{margin-left:-117.757726pt;}
._2f{margin-left:-29.154004pt;}
._2c{margin-left:-27.429995pt;}
._2d{margin-left:-20.252954pt;}
._3{margin-left:-2.659853pt;}
._1{margin-left:-1.760727pt;}
._0{width:0.968742pt;}
._2{width:1.946576pt;}
._9{width:3.357175pt;}
._a{width:4.249721pt;}
._10{width:5.141937pt;}
._1c{width:6.877635pt;}
._16{width:8.022663pt;}
._8{width:9.382433pt;}
._7{width:10.477352pt;}
._21{width:11.513890pt;}
._1d{width:12.489377pt;}
._e{width:13.933607pt;}
._6{width:14.833132pt;}
._12{width:17.106620pt;}
._11{width:18.017462pt;}
._f{width:19.418676pt;}
._1f{width:20.588343pt;}
._36{width:21.589601pt;}
._4{width:22.578017pt;}
._5{width:23.601669pt;}
._20{width:24.653479pt;}
._1b{width:26.393510pt;}
._1a{width:27.338051pt;}
._1e{width:28.833506pt;}
._17{width:30.164923pt;}
._18{width:31.230634pt;}
._19{width:32.872039pt;}
._d{width:33.793506pt;}
._b{width:34.916722pt;}
._c{width:35.962583pt;}
._39{width:37.293863pt;}
._38{width:38.271471pt;}
._15{width:44.911401pt;}
._37{width:46.109438pt;}
._35{width:57.031393pt;}
._28{width:62.283984pt;}
._27{width:74.232616pt;}
._31{width:90.196176pt;}
._30{width:91.824397pt;}
._2b{width:109.052554pt;}
._33{width:112.687616pt;}
._25{width:119.415184pt;}
._26{width:123.476851pt;}
._32{width:124.809302pt;}
._2a{width:125.734057pt;}
._24{width:139.199285pt;}
._13{width:143.536056pt;}
._23{width:154.352380pt;}
._29{width:160.025815pt;}
._22{width:165.235564pt;}
._14{width:172.911291pt;}
._2e{width:237.548753pt;}
.fs10{font-size:17.452793pt;}
.fsf{font-size:22.212471pt;}
.fs12{font-size:22.744951pt;}
.fs18{font-size:23.429751pt;}
.fs7{font-size:23.519991pt;}
.fse{font-size:26.442229pt;}
.fs8{font-size:27.452789pt;}
.fsc{font-size:33.395187pt;}
.fs1d{font-size:35.395186pt;}
.fs1e{font-size:35.507186pt;}
.fs11{font-size:35.742706pt;}
.fs17{font-size:36.819825pt;}
.fs6{font-size:36.959985pt;}
.fs14{font-size:37.382385pt;}
.fs15{font-size:37.400305pt;}
.fs5{font-size:38.102385pt;}
.fs13{font-size:38.992624pt;}
.fs1c{font-size:39.484784pt;}
.fs1f{font-size:39.622384pt;}
.fs19{font-size:40.167664pt;}
.fs21{font-size:40.472304pt;}
.fsb{font-size:41.370223pt;}
.fsa{font-size:41.390063pt;}
.fs3{font-size:42.879983pt;}
.fs16{font-size:43.847662pt;}
.fs9{font-size:49.842540pt;}
.fsd{font-size:49.867500pt;}
.fs4{font-size:52.522219pt;}
.fs1a{font-size:52.830059pt;}
.fs1b{font-size:52.997739pt;}
.fs22{font-size:53.820245pt;}
.fs20{font-size:53.962112pt;}
.fs0{font-size:63.999974pt;}
.fs2{font-size:95.999962pt;}
.fs1{font-size:170.879932pt;}
.y72{bottom:-13.440594pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:0.159253pt;}
.y74{bottom:1.119229pt;}
.y28{bottom:42.026650pt;}
.yac{bottom:71.626905pt;}
.y187{bottom:74.186637pt;}
.y4f{bottom:75.786636pt;}
.yc8{bottom:80.906634pt;}
.ydd{bottom:83.946633pt;}
.y25{bottom:84.106633pt;}
.y88{bottom:91.786630pt;}
.y198{bottom:92.746630pt;}
.ya9{bottom:94.346629pt;}
.yab{bottom:94.346896pt;}
.y12f{bottom:96.906628pt;}
.y4e{bottom:98.506627pt;}
.yaa{bottom:101.706893pt;}
.yc7{bottom:103.626625pt;}
.ydc{bottom:106.666624pt;}
.y24{bottom:106.826624pt;}
.y87{bottom:114.506621pt;}
.y197{bottom:115.466620pt;}
.ya8{bottom:117.066620pt;}
.y12e{bottom:119.626619pt;}
.y4d{bottom:121.226618pt;}
.yc6{bottom:126.346616pt;}
.ydb{bottom:129.386615pt;}
.y23{bottom:129.546615pt;}
.y86{bottom:137.226612pt;}
.y196{bottom:138.186611pt;}
.ya7{bottom:139.786611pt;}
.y12d{bottom:142.346610pt;}
.y4c{bottom:143.946609pt;}
.yc5{bottom:149.066607pt;}
.yda{bottom:152.106606pt;}
.y22{bottom:152.266606pt;}
.y6e{bottom:159.946603pt;}
.y195{bottom:160.906602pt;}
.ya6{bottom:162.506602pt;}
.y71{bottom:164.267200pt;}
.y12c{bottom:165.066601pt;}
.y4b{bottom:166.666600pt;}
.yc4{bottom:171.786598pt;}
.yd9{bottom:174.826597pt;}
.y21{bottom:174.986597pt;}
.y6d{bottom:182.666594pt;}
.y194{bottom:183.626593pt;}
.ya5{bottom:185.226593pt;}
.y12b{bottom:187.786592pt;}
.y4a{bottom:189.386591pt;}
.yc3{bottom:194.506589pt;}
.yd8{bottom:197.546588pt;}
.y20{bottom:197.706588pt;}
.y6c{bottom:205.386585pt;}
.y193{bottom:206.346584pt;}
.ya4{bottom:207.946583pt;}
.y129{bottom:210.506582pt;}
.y49{bottom:212.106582pt;}
.yc2{bottom:217.226580pt;}
.y12a{bottom:217.866580pt;}
.yd7{bottom:220.266579pt;}
.y1f{bottom:220.426578pt;}
.y6b{bottom:228.106575pt;}
.y192{bottom:229.066575pt;}
.y128{bottom:233.226573pt;}
.y48{bottom:234.826573pt;}
.yc1{bottom:239.946571pt;}
.yd6{bottom:242.986569pt;}
.y1e{bottom:243.146569pt;}
.ya3{bottom:246.666568pt;}
.y6a{bottom:250.826566pt;}
.y191{bottom:251.786566pt;}
.y127{bottom:255.946564pt;}
.y47{bottom:257.546564pt;}
.ybf{bottom:262.666562pt;}
.yd5{bottom:265.706560pt;}
.y1d{bottom:265.866560pt;}
.yc0{bottom:270.026559pt;}
.y167{bottom:271.626558pt;}
.y69{bottom:273.546557pt;}
.y190{bottom:274.506557pt;}
.y126{bottom:278.666555pt;}
.y46{bottom:280.266555pt;}
.ya2{bottom:285.386553pt;}
.yd4{bottom:288.426551pt;}
.y1c{bottom:288.586551pt;}
.y68{bottom:296.266548pt;}
.y18f{bottom:297.226548pt;}
.y176{bottom:299.146547pt;}
.y125{bottom:301.386546pt;}
.y45{bottom:302.986545pt;}
.y174{bottom:307.466544pt;}
.ya1{bottom:308.106543pt;}
.y166{bottom:310.666542pt;}
.yd3{bottom:311.146542pt;}
.y1b{bottom:311.306542pt;}
.ybe{bottom:315.466540pt;}
.y67{bottom:318.986539pt;}
.y18e{bottom:319.946539pt;}
.y124{bottom:324.106537pt;}
.y168{bottom:325.226537pt;}
.y44{bottom:325.706536pt;}
.ya0{bottom:330.826534pt;}
.y165{bottom:333.386533pt;}
.y171{bottom:333.546533pt;}
.yd2{bottom:333.866533pt;}
.y1a{bottom:334.026533pt;}
.y173{bottom:334.346532pt;}
.y172{bottom:334.506533pt;}
.y175{bottom:335.146533pt;}
.y186{bottom:339.786531pt;}
.y66{bottom:341.706530pt;}
.y18d{bottom:342.666530pt;}
.y123{bottom:346.826528pt;}
.y43{bottom:348.426527pt;}
.y9f{bottom:353.546525pt;}
.y164{bottom:356.106524pt;}
.y65{bottom:364.426521pt;}
.y18c{bottom:365.386521pt;}
.y42{bottom:371.146518pt;}
.y169{bottom:371.946518pt;}
.yd1{bottom:372.586518pt;}
.y19{bottom:374.986517pt;}
.y9e{bottom:376.266516pt;}
.y163{bottom:378.826515pt;}
.y122{bottom:385.546512pt;}
.y64{bottom:387.146512pt;}
.y18b{bottom:388.106511pt;}
.y18{bottom:393.866509pt;}
.y9d{bottom:398.986507pt;}
.y162{bottom:401.546506pt;}
.y170{bottom:402.186506pt;}
.y85{bottom:403.146505pt;}
.y63{bottom:409.866503pt;}
.y18a{bottom:410.826502pt;}
.yd0{bottom:411.306502pt;}
.y41{bottom:416.586500pt;}
.y16a{bottom:418.826499pt;}
.y9c{bottom:421.706498pt;}
.y121{bottom:424.266497pt;}
.ycf{bottom:430.186495pt;}
.y17{bottom:432.586494pt;}
.y189{bottom:433.546493pt;}
.y40{bottom:439.306491pt;}
.y185{bottom:439.946491pt;}
.y120{bottom:443.146489pt;}
.y70{bottom:443.626489pt;}
.y9b{bottom:444.426489pt;}
.y161{bottom:446.986488pt;}
.yce{bottom:449.066487pt;}
.y62{bottom:455.306485pt;}
.y188{bottom:456.266484pt;}
.y84{bottom:457.866484pt;}
.y6f{bottom:459.466483pt;}
.y3f{bottom:462.026482pt;}
.y16b{bottom:465.706480pt;}
.ybd{bottom:467.146480pt;}
.ycd{bottom:467.946479pt;}
.y160{bottom:469.706479pt;}
.y16{bottom:471.306478pt;}
.y61{bottom:478.026475pt;}
.y184{bottom:478.986475pt;}
.y11f{bottom:480.906474pt;}
.y9a{bottom:483.146473pt;}
.y3e{bottom:484.746473pt;}
.ycc{bottom:487.146472pt;}
.y19a{bottom:489.546471pt;}
.ybc{bottom:489.866471pt;}
.y15f{bottom:492.426470pt;}
.y15{bottom:494.026469pt;}
.y83{bottom:496.586468pt;}
.y11e{bottom:499.786467pt;}
.y60{bottom:500.746466pt;}
.y14{bottom:501.386466pt;}
.y183{bottom:501.706466pt;}
.ycb{bottom:506.346464pt;}
.y3d{bottom:507.466464pt;}
.y199{bottom:508.426463pt;}
.ybb{bottom:512.586462pt;}
.y16c{bottom:513.546461pt;}
.y15e{bottom:515.146461pt;}
.y11d{bottom:518.986459pt;}
.y82{bottom:519.306459pt;}
.y5f{bottom:519.626459pt;}
.y99{bottom:521.866458pt;}
.y182{bottom:524.426457pt;}
.y3c{bottom:530.186455pt;}
.y13{bottom:532.746454pt;}
.y11a{bottom:534.827200pt;}
.yba{bottom:535.306453pt;}
.y15d{bottom:537.866452pt;}
.y11c{bottom:538.186451pt;}
.y5e{bottom:538.506451pt;}
.y81{bottom:542.026450pt;}
.yf6{bottom:544.266449pt;}
.y98{bottom:544.586449pt;}
.y181{bottom:547.146448pt;}
.y116{bottom:549.546447pt;}
.y115{bottom:549.866447pt;}
.yca{bottom:550.986446pt;}
.y3b{bottom:552.906446pt;}
.y12{bottom:555.466444pt;}
.y5d{bottom:557.386444pt;}
.y16d{bottom:560.426442pt;}
.y15c{bottom:560.586442pt;}
.y11{bottom:562.826442pt;}
.yf0{bottom:562.986441pt;}
.y80{bottom:564.746441pt;}
.y97{bottom:567.306440pt;}
.ye7{bottom:568.106439pt;}
.yc9{bottom:569.866439pt;}
.y180{bottom:573.706437pt;}
.yb9{bottom:574.026437pt;}
.y3a{bottom:575.626436pt;}
.yeb{bottom:576.426436pt;}
.yde{bottom:582.026434pt;}
.y15b{bottom:583.306433pt;}
.y103{bottom:587.306432pt;}
.y7f{bottom:587.466432pt;}
.y5c{bottom:592.586430pt;}
.y73{bottom:593.067200pt;}
.y10{bottom:594.186429pt;}
.y39{bottom:598.346427pt;}
.yf5{bottom:600.746426pt;}
.y149{bottom:601.706426pt;}
.y13c{bottom:604.426425pt;}
.y13b{bottom:604.746425pt;}
.y118{bottom:605.706424pt;}
.y96{bottom:606.026424pt;}
.y14e{bottom:606.986424pt;}
.y16e{bottom:607.146424pt;}
.yf1{bottom:611.626422pt;}
.yb8{bottom:612.426422pt;}
.y17f{bottom:612.746422pt;}
.y102{bottom:614.186421pt;}
.y5b{bottom:615.306421pt;}
.yf{bottom:616.906420pt;}
.yec{bottom:617.546420pt;}
.y38{bottom:621.066418pt;}
.y114{bottom:622.346418pt;}
.yf7{bottom:622.506418pt;}
.ye{bottom:624.266417pt;}
.y13a{bottom:624.586417pt;}
.y7e{bottom:626.186416pt;}
.ydf{bottom:626.986416pt;}
.y14b{bottom:628.106415pt;}
.y15a{bottom:628.746415pt;}
.y130{bottom:629.386415pt;}
.y17e{bottom:635.466412pt;}
.yf2{bottom:635.946412pt;}
.y148{bottom:637.546412pt;}
.y110{bottom:637.706412pt;}
.y5a{bottom:638.026411pt;}
.y134{bottom:640.586410pt;}
.y37{bottom:643.786409pt;}
.y95{bottom:644.746409pt;}
.yb7{bottom:651.466406pt;}
.y13e{bottom:651.786406pt;}
.y16f{bottom:654.026405pt;}
.y17d{bottom:658.186403pt;}
.yed{bottom:658.666403pt;}
.y10e{bottom:659.466403pt;}
.yf3{bottom:660.586402pt;}
.y59{bottom:660.746402pt;}
.y10f{bottom:662.346402pt;}
.y119{bottom:663.306401pt;}
.yc{bottom:664.746401pt;}
.y7d{bottom:664.906401pt;}
.y36{bottom:666.506400pt;}
.y94{bottom:667.466400pt;}
.y10d{bottom:670.986398pt;}
.yd{bottom:672.106398pt;}
.y111{bottom:673.546397pt;}
.yb6{bottom:674.186397pt;}
.y13f{bottom:679.626395pt;}
.y17c{bottom:680.906394pt;}
.y58{bottom:683.466393pt;}
.yf4{bottom:684.906393pt;}
.y7c{bottom:687.626392pt;}
.y35{bottom:689.226391pt;}
.y93{bottom:690.186391pt;}
.ya{bottom:693.066389pt;}
.y14d{bottom:694.506389pt;}
.yb5{bottom:696.906388pt;}
.y156{bottom:697.866388pt;}
.yee{bottom:699.786387pt;}
.y135{bottom:699.946387pt;}
.yb{bottom:700.426386pt;}
.y14c{bottom:702.666386pt;}
.y17b{bottom:703.626385pt;}
.y57{bottom:706.186384pt;}
.y140{bottom:708.426383pt;}
.y112{bottom:709.226383pt;}
.y7b{bottom:710.346383pt;}
.y34{bottom:711.946382pt;}
.y92{bottom:712.906382pt;}
.ye0{bottom:718.026379pt;}
.yb4{bottom:719.626379pt;}
.y17a{bottom:726.346376pt;}
.y56{bottom:728.906375pt;}
.y9{bottom:729.706375pt;}
.ye9{bottom:731.786374pt;}
.y7a{bottom:733.066373pt;}
.y117{bottom:734.826373pt;}
.yea{bottom:734.986373pt;}
.y91{bottom:735.626372pt;}
.y141{bottom:736.266372pt;}
.yef{bottom:741.066370pt;}
.y13d{bottom:742.026370pt;}
.yb3{bottom:742.346370pt;}
.ye8{bottom:744.426369pt;}
.y113{bottom:745.066369pt;}
.y14a{bottom:748.426367pt;}
.y179{bottom:749.066367pt;}
.y33{bottom:750.346367pt;}
.y55{bottom:751.626366pt;}
.y79{bottom:755.786364pt;}
.y8{bottom:757.866364pt;}
.y90{bottom:758.346363pt;}
.y136{bottom:759.306363pt;}
.y152{bottom:762.666362pt;}
.ye1{bottom:762.986361pt;}
.y142{bottom:764.906361pt;}
.yb2{bottom:765.066361pt;}
.y178{bottom:771.786358pt;}
.y54{bottom:774.346357pt;}
.y78{bottom:778.506355pt;}
.y8f{bottom:781.066354pt;}
.y7{bottom:786.026352pt;}
.yb1{bottom:787.786352pt;}
.y153{bottom:789.066351pt;}
.yfa{bottom:792.586350pt;}
.y143{bottom:792.746350pt;}
.y177{bottom:794.506349pt;}
.y53{bottom:797.066348pt;}
.y77{bottom:801.226346pt;}
.y8e{bottom:803.786345pt;}
.y32{bottom:807.626344pt;}
.ye2{bottom:807.946343pt;}
.yb0{bottom:810.506342pt;}
.y155{bottom:817.226340pt;}
.y137{bottom:817.866340pt;}
.y52{bottom:819.786339pt;}
.y144{bottom:820.586338pt;}
.yf8{bottom:823.626337pt;}
.y31{bottom:826.506336pt;}
.yaf{bottom:833.226333pt;}
.y6{bottom:838.186331pt;}
.y76{bottom:839.946331pt;}
.y51{bottom:842.506330pt;}
.y154{bottom:843.146329pt;}
.y30{bottom:849.226327pt;}
.ye3{bottom:853.066325pt;}
.yae{bottom:855.946324pt;}
.y50{bottom:865.226321pt;}
.y8d{bottom:871.946318pt;}
.y145{bottom:877.066316pt;}
.y138{bottom:877.386316pt;}
.y159{bottom:878.666315pt;}
.y5{bottom:882.506314pt;}
.y2f{bottom:887.946311pt;}
.y132{bottom:893.706309pt;}
.y75{bottom:894.346309pt;}
.y8c{bottom:894.666309pt;}
.y133{bottom:896.906308pt;}
.ye4{bottom:898.986307pt;}
.y158{bottom:901.386306pt;}
.y146{bottom:905.866304pt;}
.y131{bottom:906.186304pt;}
.y14f{bottom:908.746303pt;}
.y2e{bottom:910.666302pt;}
.y4{bottom:910.826302pt;}
.yf9{bottom:917.226300pt;}
.y8b{bottom:917.386300pt;}
.y157{bottom:924.106297pt;}
.y2d{bottom:933.386293pt;}
.y147{bottom:933.546293pt;}
.y139{bottom:936.746292pt;}
.y3{bottom:938.826291pt;}
.y8a{bottom:940.106291pt;}
.y150{bottom:942.026290pt;}
.y151{bottom:942.186290pt;}
.ye5{bottom:943.946289pt;}
.yff{bottom:947.306288pt;}
.y107{bottom:947.626288pt;}
.y10a{bottom:953.226285pt;}
.y10b{bottom:954.666285pt;}
.y109{bottom:955.146285pt;}
.y101{bottom:955.946284pt;}
.y2c{bottom:956.106284pt;}
.yfe{bottom:959.466283pt;}
.y89{bottom:962.826282pt;}
.y10c{bottom:963.306281pt;}
.yad{bottom:963.466281pt;}
.yfd{bottom:973.386277pt;}
.y106{bottom:977.546276pt;}
.y108{bottom:977.866276pt;}
.y2b{bottom:978.826275pt;}
.yfc{bottom:985.866272pt;}
.y2{bottom:988.106271pt;}
.ye6{bottom:989.066271pt;}
.y105{bottom:998.346267pt;}
.y104{bottom:998.666267pt;}
.y100{bottom:999.466267pt;}
.y2a{bottom:1001.546266pt;}
.yfb{bottom:1003.466265pt;}
.y27{bottom:1024.266257pt;}
.y1{bottom:1041.226250pt;}
.y29{bottom:1046.666248pt;}
.y26{bottom:1046.986248pt;}
.h9{height:0.960000pt;}
.h21{height:14.560000pt;}
.ha{height:15.520000pt;}
.h18{height:18.202718pt;}
.h1b{height:22.322925pt;}
.h24{height:22.995019pt;}
.hd{height:23.083585pt;}
.h17{height:23.166913pt;}
.h19{height:24.446913pt;}
.he{height:26.943411pt;}
.h16{height:27.578419pt;}
.h14{height:32.775549pt;}
.h1f{height:34.626164pt;}
.h2a{height:34.738439pt;}
.h2b{height:34.848361pt;}
.h1a{height:35.079511pt;}
.h2d{height:35.671711pt;}
.h23{height:36.136645pt;}
.hc{height:36.274204pt;}
.hb{height:37.395407pt;}
.h1e{height:37.674435pt;}
.h20{height:37.692495pt;}
.h1c{height:38.269128pt;}
.h29{height:38.752156pt;}
.h2e{height:38.887203pt;}
.h25{height:39.422365pt;}
.h31{height:39.701591pt;}
.h11{height:40.602612pt;}
.h30{height:40.788494pt;}
.h12{height:41.693428pt;}
.h10{height:41.713423pt;}
.h7{height:42.084358pt;}
.h22{height:43.034083pt;}
.h6{height:43.214983pt;}
.h1d{height:46.167626pt;}
.h13{height:48.917727pt;}
.h27{height:48.934874pt;}
.hf{height:50.231935pt;}
.h15{height:50.257090pt;}
.h8{height:51.547686pt;}
.h26{height:53.242794pt;}
.h28{height:53.411784pt;}
.h32{height:54.240716pt;}
.h2f{height:54.383691pt;}
.h2c{height:60.282791pt;}
.h4{height:62.781225pt;}
.h3{height:62.812475pt;}
.h1{height:64.499974pt;}
.h5{height:96.749961pt;}
.h2{height:167.625870pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w2{width:1.120000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:66.079974pt;}
.x19{left:69.760546pt;}
.x58{left:71.198656pt;}
.x29{left:72.160888pt;}
.x12{left:74.239970pt;}
.x26{left:76.799969pt;}
.x17{left:77.920925pt;}
.x27{left:82.239967pt;}
.x18{left:83.521750pt;}
.x16{left:84.960020pt;}
.x6d{left:86.240853pt;}
.x2a{left:88.640286pt;}
.x1c{left:93.279963pt;}
.x67{left:94.719962pt;}
.x28{left:96.640826pt;}
.x64{left:98.559954pt;}
.x57{left:100.799570pt;}
.x66{left:101.759959pt;}
.x13{left:103.839958pt;}
.x43{left:105.759958pt;}
.x44{left:108.959956pt;}
.x41{left:110.239956pt;}
.x39{left:113.919954pt;}
.x33{left:117.919982pt;}
.x32{left:122.879978pt;}
.x31{left:127.999978pt;}
.x38{left:129.919948pt;}
.x65{left:131.839892pt;}
.x34{left:137.279999pt;}
.x3e{left:141.439942pt;}
.x3f{left:143.359943pt;}
.x3d{left:146.079939pt;}
.x3c{left:149.919940pt;}
.x2f{left:153.119939pt;}
.x6{left:171.839931pt;}
.x7{left:177.279929pt;}
.x10{left:178.399929pt;}
.x11{left:183.839926pt;}
.x59{left:185.598075pt;}
.x30{left:187.679925pt;}
.x73{left:190.399924pt;}
.x1a{left:194.560154pt;}
.x3b{left:198.079922pt;}
.x3a{left:202.239919pt;}
.x37{left:205.439918pt;}
.x35{left:208.959916pt;}
.x2b{left:219.360397pt;}
.x40{left:221.919911pt;}
.x36{left:224.479896pt;}
.x5a{left:240.319904pt;}
.x5b{left:245.759902pt;}
.x42{left:249.279900pt;}
.x74{left:258.239897pt;}
.x68{left:293.759882pt;}
.x75{left:309.759876pt;}
.x1d{left:310.719599pt;}
.x6b{left:314.079874pt;}
.x8{left:317.759873pt;}
.x9{left:323.199871pt;}
.x6a{left:325.439870pt;}
.x6c{left:339.199864pt;}
.x7a{left:346.399861pt;}
.x76{left:361.599855pt;}
.x72{left:368.797783pt;}
.x6f{left:371.039852pt;}
.x77{left:373.599851pt;}
.x6e{left:374.559850pt;}
.x1b{left:377.758743pt;}
.x45{left:390.719319pt;}
.x71{left:396.959014pt;}
.x22{left:400.799840pt;}
.x69{left:401.759839pt;}
.x52{left:404.959838pt;}
.xa{left:407.679837pt;}
.x23{left:409.759836pt;}
.x2d{left:414.719835pt;}
.x78{left:417.119833pt;}
.x70{left:418.239833pt;}
.xb{left:421.279831pt;}
.x2c{left:424.479830pt;}
.x79{left:429.279828pt;}
.x2e{left:433.439817pt;}
.x5c{left:434.719826pt;}
.x46{left:471.519811pt;}
.x51{left:473.279811pt;}
.x7b{left:485.439806pt;}
.x55{left:486.879805pt;}
.x47{left:489.599716pt;}
.x48{left:491.839709pt;}
.x63{left:494.399802pt;}
.x20{left:499.199800pt;}
.x4f{left:501.919799pt;}
.x60{left:503.199748pt;}
.x21{left:508.159797pt;}
.x49{left:510.559796pt;}
.x50{left:512.639820pt;}
.x4a{left:516.959793pt;}
.x53{left:520.319792pt;}
.x61{left:524.159856pt;}
.x7c{left:529.119788pt;}
.xc{left:531.999787pt;}
.xd{left:537.439785pt;}
.x7d{left:541.279783pt;}
.x1f{left:547.360000pt;}
.x4b{left:568.639773pt;}
.x7e{left:575.039770pt;}
.x5{left:579.839763pt;}
.x4c{left:587.359800pt;}
.x5d{left:588.639765pt;}
.x4d{left:593.119763pt;}
.x4e{left:596.319761pt;}
.x2{left:597.279761pt;}
.x5e{left:607.999829pt;}
.x5f{left:613.759754pt;}
.x4{left:616.639757pt;}
.x3{left:619.039752pt;}
.xe{left:627.199749pt;}
.xf{left:632.639747pt;}
.x54{left:639.839773pt;}
.x62{left:668.318836pt;}
.x15{left:695.999956pt;}
.x56{left:702.720000pt;}
.x24{left:708.799716pt;}
.x25{left:714.239714pt;}
.x1e{left:716.800000pt;}
.x14{left:727.999719pt;}
}




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