
    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_a0fa6b6ef54779ce76dc6fb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;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_84a93854b2757397cf7a19fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_947cfdd3e275a21a3a8580b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_3a7be2012bb84196e73191c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.003263px;}
.lsd{letter-spacing:0.004800px;}
.ls0{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.954850px;}
.lsb{letter-spacing:13.192765px;}
.ls8{letter-spacing:13.448400px;}
.ls7{letter-spacing:13.454400px;}
.ls9{letter-spacing:13.681631px;}
.lsa{letter-spacing:15.620988px;}
.ls1{letter-spacing:17.935200px;}
.ls3{letter-spacing:70.236600px;}
.ls2{letter-spacing:70.242600px;}
.ls4{letter-spacing:72.359510px;}
.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;}
}
.ws9d{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws9{word-spacing:-3.227882px;}
.ws85{word-spacing:-3.168107px;}
.ws4f{word-spacing:-2.929004px;}
.ws8d{word-spacing:-2.630126px;}
.ws89{word-spacing:-2.570351px;}
.ws32{word-spacing:-2.510575px;}
.ws19{word-spacing:-2.450800px;}
.ws18{word-spacing:-2.391024px;}
.ws8{word-spacing:-2.211697px;}
.ws36{word-spacing:-2.092146px;}
.ws3c{word-spacing:-2.032370px;}
.ws20{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.912819px;}
.ws12{word-spacing:-1.673717px;}
.ws63{word-spacing:-1.554166px;}
.ws70{word-spacing:-1.494390px;}
.ws56{word-spacing:-1.434614px;}
.wsa{word-spacing:-1.374839px;}
.ws54{word-spacing:-1.255288px;}
.ws93{word-spacing:-1.237363px;}
.ws2d{word-spacing:-1.195512px;}
.wse{word-spacing:-1.135736px;}
.wsb9{word-spacing:-1.129766px;}
.wsb8{word-spacing:-1.075968px;}
.ws64{word-spacing:-1.075961px;}
.wsd6{word-spacing:-1.022170px;}
.ws5d{word-spacing:-1.016185px;}
.ws94{word-spacing:-0.968371px;}
.ws91{word-spacing:-0.956410px;}
.ws9b{word-spacing:-0.914573px;}
.ws73{word-spacing:-0.836858px;}
.wsc4{word-spacing:-0.591782px;}
.wsb5{word-spacing:-0.537984px;}
.ws53{word-spacing:-0.478205px;}
.ws55{word-spacing:-0.418429px;}
.ws71{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.wsb3{word-spacing:-0.268992px;}
.ws1b{word-spacing:-0.239102px;}
.ws9a{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.179327px;}
.wsa8{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.ws97{word-spacing:-0.107597px;}
.ws2c{word-spacing:-0.059776px;}
.ws95{word-spacing:-0.053798px;}
.wsdd{word-spacing:-0.029184px;}
.wsc0{word-spacing:-0.007402px;}
.wsd1{word-spacing:-0.006202px;}
.wsa9{word-spacing:-0.005654px;}
.wsc1{word-spacing:-0.001066px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.000970px;}
.wsa2{word-spacing:0.053386px;}
.wsa3{word-spacing:0.053798px;}
.ws3{word-spacing:0.059776px;}
.ws69{word-spacing:0.072790px;}
.ws68{word-spacing:0.096825px;}
.wsb0{word-spacing:0.107597px;}
.ws1a{word-spacing:0.119551px;}
.wsa4{word-spacing:0.161395px;}
.wsad{word-spacing:0.172311px;}
.ws5{word-spacing:0.179327px;}
.wsaf{word-spacing:0.191111px;}
.wsae{word-spacing:0.215194px;}
.wsf{word-spacing:0.239102px;}
.ws98{word-spacing:0.268992px;}
.ws46{word-spacing:0.298878px;}
.ws14{word-spacing:0.358654px;}
.wsdb{word-spacing:0.376589px;}
.ws84{word-spacing:0.418429px;}
.wscc{word-spacing:0.484186px;}
.ws30{word-spacing:0.537980px;}
.ws38{word-spacing:0.657532px;}
.ws3a{word-spacing:0.717307px;}
.ws59{word-spacing:0.836858px;}
.ws43{word-spacing:0.896634px;}
.ws47{word-spacing:0.956410px;}
.ws48{word-spacing:1.016185px;}
.ws81{word-spacing:1.135736px;}
.ws21{word-spacing:1.195512px;}
.ws5e{word-spacing:1.255288px;}
.ws5b{word-spacing:1.315063px;}
.ws67{word-spacing:1.374839px;}
.ws86{word-spacing:1.434614px;}
.ws79{word-spacing:1.494390px;}
.ws7b{word-spacing:1.554166px;}
.ws8b{word-spacing:1.613941px;}
.wsc5{word-spacing:1.667750px;}
.ws4d{word-spacing:1.673717px;}
.ws50{word-spacing:1.733492px;}
.ws26{word-spacing:1.793268px;}
.ws10{word-spacing:1.912819px;}
.ws37{word-spacing:1.972595px;}
.ws6{word-spacing:2.032370px;}
.ws65{word-spacing:2.092146px;}
.ws74{word-spacing:2.151922px;}
.ws42{word-spacing:2.271473px;}
.ws5c{word-spacing:2.331248px;}
.ws1f{word-spacing:2.391024px;}
.ws83{word-spacing:2.510575px;}
.ws58{word-spacing:2.570351px;}
.wsa1{word-spacing:2.582323px;}
.ws76{word-spacing:2.630126px;}
.ws3b{word-spacing:2.749678px;}
.ws5f{word-spacing:2.809453px;}
.ws5a{word-spacing:2.869229px;}
.ws17{word-spacing:2.929004px;}
.wsaa{word-spacing:2.958912px;}
.ws31{word-spacing:2.988780px;}
.wsb1{word-spacing:3.012710px;}
.ws25{word-spacing:3.048556px;}
.ws92{word-spacing:3.066509px;}
.ws1e{word-spacing:3.108331px;}
.ws40{word-spacing:3.168107px;}
.wsbc{word-spacing:3.220387px;}
.wsc9{word-spacing:3.221482px;}
.wsda{word-spacing:3.223142px;}
.wsd0{word-spacing:3.223517px;}
.wsc8{word-spacing:3.225408px;}
.wsbb{word-spacing:3.226454px;}
.ws90{word-spacing:3.227882px;}
.ws9c{word-spacing:3.227904px;}
.wsdc{word-spacing:3.228403px;}
.wsc2{word-spacing:3.229642px;}
.wsbf{word-spacing:3.230448px;}
.ws2b{word-spacing:3.287658px;}
.wsa0{word-spacing:3.335501px;}
.ws57{word-spacing:3.347434px;}
.ws24{word-spacing:3.407209px;}
.ws29{word-spacing:3.466985px;}
.wsd9{word-spacing:3.496896px;}
.ws35{word-spacing:3.526760px;}
.ws13{word-spacing:3.586536px;}
.ws28{word-spacing:3.646312px;}
.wsba{word-spacing:3.658291px;}
.ws6e{word-spacing:3.765863px;}
.ws61{word-spacing:3.825638px;}
.ws8a{word-spacing:3.945190px;}
.wsac{word-spacing:3.981082px;}
.wsab{word-spacing:4.034880px;}
.ws2{word-spacing:4.064741px;}
.ws51{word-spacing:4.124516px;}
.ws39{word-spacing:4.184292px;}
.ws6b{word-spacing:4.244068px;}
.wsb7{word-spacing:4.465267px;}
.wsca{word-spacing:4.490117px;}
.wscb{word-spacing:4.519066px;}
.ws15{word-spacing:4.542946px;}
.ws66{word-spacing:4.602721px;}
.ws6d{word-spacing:4.662497px;}
.ws6a{word-spacing:4.722272px;}
.wscd{word-spacing:4.788058px;}
.ws2e{word-spacing:4.901599px;}
.ws7d{word-spacing:4.961375px;}
.ws7a{word-spacing:5.021150px;}
.wsb6{word-spacing:5.218445px;}
.ws41{word-spacing:5.320028px;}
.ws77{word-spacing:5.379804px;}
.ws3e{word-spacing:5.439580px;}
.wsce{word-spacing:5.487437px;}
.ws33{word-spacing:5.499355px;}
.ws6f{word-spacing:5.678682px;}
.wsbe{word-spacing:5.756429px;}
.ws75{word-spacing:5.798233px;}
.wsa7{word-spacing:5.810227px;}
.ws9f{word-spacing:5.864026px;}
.ws52{word-spacing:5.917784px;}
.ws8c{word-spacing:6.037336px;}
.ws4e{word-spacing:6.097111px;}
.ws4c{word-spacing:6.156887px;}
.ws6c{word-spacing:6.276438px;}
.ws45{word-spacing:6.575316px;}
.ws80{word-spacing:6.635092px;}
.wsd{word-spacing:6.754643px;}
.wscf{word-spacing:6.832397px;}
.ws62{word-spacing:6.874194px;}
.ws7e{word-spacing:7.113296px;}
.wsb2{word-spacing:7.155187px;}
.wsd8{word-spacing:7.262784px;}
.ws78{word-spacing:7.352399px;}
.wsd5{word-spacing:7.370381px;}
.ws22{word-spacing:7.412174px;}
.ws88{word-spacing:7.651277px;}
.ws8e{word-spacing:7.830604px;}
.ws60{word-spacing:7.890379px;}
.ws3f{word-spacing:7.950155px;}
.ws7{word-spacing:8.009930px;}
.wsb{word-spacing:8.069706px;}
.ws87{word-spacing:8.428360px;}
.ws34{word-spacing:8.488135px;}
.wsc6{word-spacing:8.715341px;}
.wsc{word-spacing:8.966340px;}
.ws44{word-spacing:9.026116px;}
.ws9e{word-spacing:9.091930px;}
.ws2a{word-spacing:9.145667px;}
.wsd2{word-spacing:9.253325px;}
.wsbd{word-spacing:9.307123px;}
.ws23{word-spacing:9.384769px;}
.ws99{word-spacing:9.629914px;}
.ws49{word-spacing:10.640057px;}
.wsc7{word-spacing:11.405261px;}
.ws96{word-spacing:11.459059px;}
.ws3d{word-spacing:11.536691px;}
.ws82{word-spacing:11.716018px;}
.ws4b{word-spacing:11.775793px;}
.ws7c{word-spacing:12.612652px;}
.ws8f{word-spacing:13.389734px;}
.ws2f{word-spacing:13.987490px;}
.wsd7{word-spacing:14.848358px;}
.wsd4{word-spacing:15.709133px;}
.wsb4{word-spacing:17.861069px;}
.wsa5{word-spacing:21.465562px;}
.ws4a{word-spacing:22.057196px;}
.ws72{word-spacing:24.806874px;}
.ws7f{word-spacing:25.404630px;}
.wsd3{word-spacing:25.715635px;}
.wsc3{word-spacing:28.405555px;}
.wsa6{word-spacing:33.462605px;}
._2d{margin-left:-20.207262px;}
._2b{margin-left:-7.746970px;}
._2{margin-left:-6.659948px;}
._a{margin-left:-5.379804px;}
._0{margin-left:-3.981082px;}
._2a{margin-left:-2.958912px;}
._3{margin-left:-1.936742px;}
._1{width:2.998404px;}
._20{width:4.483170px;}
._14{width:11.919268px;}
._17{width:13.437437px;}
._8{width:14.692868px;}
._4{width:15.709133px;}
._5{width:17.645875px;}
._1c{width:18.649987px;}
._6{width:19.690096px;}
._1b{width:20.706281px;}
._11{width:21.937645px;}
._d{width:23.491811px;}
._7{width:25.045976px;}
._b{width:27.221821px;}
._1d{width:28.297782px;}
._12{width:30.210601px;}
._15{width:31.501741px;}
._e{width:32.637478px;}
._21{width:33.677586px;}
._13{width:35.172016px;}
._30{width:36.249868px;}
._1a{width:37.479301px;}
._c{width:39.451896px;}
._18{width:42.082022px;}
._9{width:43.217759px;}
._1e{width:44.233944px;}
._1f{width:46.086988px;}
._2f{width:48.436888px;}
._16{width:53.678489px;}
._19{width:55.376129px;}
._22{width:56.906371px;}
._25{width:60.361769px;}
._29{width:61.868160px;}
._27{width:63.751104px;}
._24{width:82.461894px;}
._26{width:88.767360px;}
._2e{width:94.362394px;}
._2c{width:101.356186px;}
._28{width:117.437190px;}
._f{width:923.366465px;}
._23{width:2106.399600px;}
._10{width:2130.309600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,81,44);}
.fs4{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y2{bottom:15.070937px;}
.y2e{bottom:63.780000px;}
.y2d{bottom:108.612000px;}
.y12e{bottom:108.957000px;}
.y92{bottom:114.156000px;}
.y131{bottom:114.741000px;}
.yba{bottom:116.607000px;}
.yfa{bottom:117.967500px;}
.ybf{bottom:119.863500px;}
.y61{bottom:123.121500px;}
.y12d{bottom:128.325000px;}
.y2c{bottom:128.875500px;}
.y130{bottom:134.109000px;}
.y91{bottom:134.419500px;}
.yb9{bottom:136.870500px;}
.yf9{bottom:137.335500px;}
.ybe{bottom:140.128500px;}
.y60{bottom:143.386500px;}
.y12c{bottom:147.691500px;}
.y2b{bottom:149.139000px;}
.y12f{bottom:153.477000px;}
.y90{bottom:154.683000px;}
.yf8{bottom:156.703500px;}
.ycd{bottom:157.134000px;}
.ybd{bottom:160.392000px;}
.y5f{bottom:163.650000px;}
.yb8{bottom:166.101000px;}
.y12b{bottom:167.059500px;}
.y2a{bottom:169.404000px;}
.y8f{bottom:174.948000px;}
.yf7{bottom:176.070000px;}
.ycc{bottom:177.399000px;}
.ybc{bottom:180.657000px;}
.y5e{bottom:183.913500px;}
.y12a{bottom:186.427500px;}
.y29{bottom:189.667500px;}
.y8e{bottom:195.211500px;}
.yf6{bottom:195.438000px;}
.ycb{bottom:197.662500px;}
.yb7{bottom:200.920500px;}
.y5d{bottom:204.178500px;}
.y129{bottom:205.794000px;}
.y28{bottom:209.932500px;}
.yf5{bottom:214.804500px;}
.y8d{bottom:215.476500px;}
.yca{bottom:217.927500px;}
.yb6{bottom:221.184000px;}
.y5c{bottom:224.442000px;}
.y128{bottom:225.162000px;}
.y27{bottom:230.196000px;}
.yf4{bottom:234.172500px;}
.y8c{bottom:235.740000px;}
.yc9{bottom:238.191000px;}
.yb5{bottom:241.449000px;}
.y127{bottom:244.528500px;}
.y5b{bottom:244.707000px;}
.y26{bottom:250.459500px;}
.yf3{bottom:253.540500px;}
.y8b{bottom:256.003500px;}
.yc8{bottom:258.454500px;}
.yb4{bottom:261.712500px;}
.y126{bottom:263.896500px;}
.y5a{bottom:264.970500px;}
.y25{bottom:270.724500px;}
.yf2{bottom:272.907000px;}
.y8a{bottom:276.268500px;}
.yc7{bottom:278.719500px;}
.yb3{bottom:281.977500px;}
.y125{bottom:283.264500px;}
.y59{bottom:285.234000px;}
.y24{bottom:290.988000px;}
.yf1{bottom:292.275000px;}
.y89{bottom:296.532000px;}
.yc6{bottom:298.983000px;}
.yb2{bottom:302.241000px;}
.y124{bottom:302.631000px;}
.y58{bottom:305.499000px;}
.y23{bottom:311.253000px;}
.yf0{bottom:311.641500px;}
.y88{bottom:316.797000px;}
.yc5{bottom:319.248000px;}
.y123{bottom:321.999000px;}
.yb1{bottom:322.504500px;}
.y57{bottom:325.762500px;}
.yef{bottom:331.009500px;}
.y87{bottom:337.060500px;}
.yc4{bottom:339.511500px;}
.y22{bottom:340.483500px;}
.y122{bottom:341.367000px;}
.yb0{bottom:342.769500px;}
.y56{bottom:346.027500px;}
.yee{bottom:350.377500px;}
.y86{bottom:357.324000px;}
.y121{bottom:360.733500px;}
.yaf{bottom:363.033000px;}
.y55{bottom:366.291000px;}
.yc3{bottom:368.742000px;}
.yed{bottom:369.744000px;}
.y85{bottom:377.589000px;}
.y120{bottom:380.101500px;}
.yae{bottom:383.298000px;}
.y54{bottom:386.554500px;}
.yec{bottom:389.112000px;}
.y84{bottom:397.852500px;}
.y11f{bottom:399.468000px;}
.yad{bottom:403.561500px;}
.y53{bottom:406.819500px;}
.yeb{bottom:408.478500px;}
.y21{bottom:416.890500px;}
.y83{bottom:418.117500px;}
.y11e{bottom:418.836000px;}
.yac{bottom:423.825000px;}
.y52{bottom:427.083000px;}
.yea{bottom:427.846500px;}
.y11d{bottom:438.204000px;}
.y82{bottom:438.381000px;}
.yab{bottom:444.090000px;}
.ye9{bottom:447.214500px;}
.y51{bottom:447.348000px;}
.y20{bottom:455.088000px;}
.y11c{bottom:457.570500px;}
.y81{bottom:458.644500px;}
.yaa{bottom:464.353500px;}
.ye8{bottom:466.581000px;}
.y50{bottom:467.611500px;}
.y1f{bottom:475.351500px;}
.y11b{bottom:476.938500px;}
.y80{bottom:478.909500px;}
.ya9{bottom:484.618500px;}
.ye7{bottom:485.949000px;}
.y4f{bottom:487.875000px;}
.y1e{bottom:495.616500px;}
.y11a{bottom:496.305000px;}
.y7f{bottom:499.173000px;}
.ya8{bottom:504.882000px;}
.ye6{bottom:505.315500px;}
.y4e{bottom:508.140000px;}
.y119{bottom:515.673000px;}
.y1d{bottom:515.880000px;}
.y7e{bottom:519.438000px;}
.ye5{bottom:524.683500px;}
.ya7{bottom:525.145500px;}
.y4d{bottom:528.403500px;}
.y118{bottom:535.041000px;}
.y1c{bottom:536.145000px;}
.y7d{bottom:539.701500px;}
.ye4{bottom:544.051500px;}
.ya6{bottom:545.410500px;}
.y4c{bottom:548.667000px;}
.y117{bottom:554.407500px;}
.y1b{bottom:556.408500px;}
.y7c{bottom:559.965000px;}
.ye3{bottom:563.418000px;}
.ya5{bottom:565.674000px;}
.y4b{bottom:568.932000px;}
.y116{bottom:573.775500px;}
.y1a{bottom:576.672000px;}
.y7b{bottom:580.230000px;}
.ye2{bottom:582.786000px;}
.ya4{bottom:585.939000px;}
.y4a{bottom:589.195500px;}
.y115{bottom:593.142000px;}
.ybb{bottom:594.904500px;}
.y19{bottom:596.937000px;}
.y7a{bottom:600.493500px;}
.ye1{bottom:602.152500px;}
.ya3{bottom:606.202500px;}
.y49{bottom:609.460500px;}
.y114{bottom:612.510000px;}
.y18{bottom:617.200500px;}
.y79{bottom:620.758500px;}
.ye0{bottom:621.520500px;}
.ya2{bottom:626.466000px;}
.y48{bottom:629.724000px;}
.y113{bottom:631.878000px;}
.y17{bottom:637.465500px;}
.ydf{bottom:640.888500px;}
.y78{bottom:641.022000px;}
.ya1{bottom:646.731000px;}
.y47{bottom:649.987500px;}
.y112{bottom:651.244500px;}
.y16{bottom:657.729000px;}
.yde{bottom:660.255000px;}
.y77{bottom:661.285500px;}
.ya0{bottom:666.994500px;}
.y46{bottom:670.252500px;}
.y111{bottom:670.612500px;}
.y15{bottom:677.992500px;}
.ydd{bottom:679.623000px;}
.y76{bottom:681.550500px;}
.y9f{bottom:687.258000px;}
.y110{bottom:689.979000px;}
.y45{bottom:690.516000px;}
.y14{bottom:698.257500px;}
.ydc{bottom:698.991000px;}
.y75{bottom:701.814000px;}
.y9e{bottom:707.523000px;}
.y10f{bottom:709.347000px;}
.y44{bottom:710.781000px;}
.ydb{bottom:718.357500px;}
.y13{bottom:718.521000px;}
.y74{bottom:722.077500px;}
.y9d{bottom:727.786500px;}
.y10e{bottom:728.715000px;}
.y43{bottom:731.044500px;}
.yda{bottom:737.725500px;}
.y12{bottom:738.786000px;}
.y73{bottom:742.342500px;}
.y9c{bottom:748.051500px;}
.y10d{bottom:748.081500px;}
.y42{bottom:751.308000px;}
.yd9{bottom:757.092000px;}
.y11{bottom:759.049500px;}
.y72{bottom:762.606000px;}
.y10c{bottom:767.449500px;}
.y9b{bottom:768.315000px;}
.y41{bottom:771.573000px;}
.yd8{bottom:776.460000px;}
.y10{bottom:779.313000px;}
.y71{bottom:782.871000px;}
.y10b{bottom:786.816000px;}
.y9a{bottom:788.578500px;}
.y40{bottom:791.836500px;}
.yf{bottom:799.578000px;}
.y70{bottom:803.134500px;}
.yd7{bottom:804.793500px;}
.y10a{bottom:806.184000px;}
.y99{bottom:808.843500px;}
.y3f{bottom:812.101500px;}
.ye{bottom:819.841500px;}
.y6f{bottom:823.398000px;}
.y109{bottom:825.552000px;}
.y98{bottom:829.107000px;}
.y3e{bottom:832.365000px;}
.yd6{bottom:842.094000px;}
.y6e{bottom:843.663000px;}
.y108{bottom:844.918500px;}
.y97{bottom:849.372000px;}
.y3d{bottom:852.628500px;}
.yd{bottom:853.627500px;}
.y6d{bottom:863.926500px;}
.y107{bottom:864.286500px;}
.yd5{bottom:866.259000px;}
.y96{bottom:869.635500px;}
.yc{bottom:871.783500px;}
.y3c{bottom:872.893500px;}
.yd4{bottom:881.457000px;}
.y106{bottom:883.653000px;}
.y6c{bottom:884.191500px;}
.y95{bottom:889.899000px;}
.y3b{bottom:893.157000px;}
.yd3{bottom:896.655000px;}
.yb{bottom:898.908000px;}
.y105{bottom:903.021000px;}
.y6b{bottom:904.455000px;}
.y94{bottom:910.164000px;}
.yd2{bottom:911.853000px;}
.y3a{bottom:913.422000px;}
.ya{bottom:921.946500px;}
.y104{bottom:922.389000px;}
.y6a{bottom:924.718500px;}
.yd1{bottom:927.051000px;}
.yc2{bottom:930.427500px;}
.y39{bottom:933.685500px;}
.y93{bottom:939.394500px;}
.y9{bottom:940.104000px;}
.y103{bottom:941.755500px;}
.yd0{bottom:942.249000px;}
.y69{bottom:944.983500px;}
.yc1{bottom:950.692500px;}
.y8{bottom:953.379000px;}
.y38{bottom:953.949000px;}
.y102{bottom:961.123500px;}
.y68{bottom:965.247000px;}
.ycf{bottom:966.412500px;}
.y37{bottom:974.214000px;}
.y7{bottom:976.417500px;}
.yc0{bottom:979.923000px;}
.y101{bottom:980.490000px;}
.yce{bottom:981.610500px;}
.y67{bottom:985.512000px;}
.y36{bottom:994.477500px;}
.y6{bottom:997.012500px;}
.y100{bottom:999.858000px;}
.y66{bottom:1005.775500px;}
.y35{bottom:1014.742500px;}
.yff{bottom:1019.226000px;}
.y65{bottom:1026.039000px;}
.y34{bottom:1035.006000px;}
.yfe{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y64{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.yfd{bottom:1057.960500px;}
.y63{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.yfc{bottom:1077.327000px;}
.y62{bottom:1086.832500px;}
.y31{bottom:1095.798000px;}
.yfb{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y30{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h7{height:37.993262px;}
.hc{height:38.734848px;}
.hd{height:39.434227px;}
.h9{height:43.038432px;}
.hb{height:43.421105px;}
.h4{height:43.815515px;}
.h8{height:48.848947px;}
.h2{height:50.930649px;}
.ha{height:54.276245px;}
.h6{height:54.405312px;}
.h5{height:77.469696px;}
.h3{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:176.115161px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:58.536797px;}
.x77{left:112.561500px;}
.x1{left:114.802500px;}
.x1d{left:119.385000px;}
.x5{left:122.109000px;}
.x3{left:123.306000px;}
.x4{left:146.170500px;}
.x1e{left:151.680000px;}
.x1c{left:160.627500px;}
.x18{left:173.619000px;}
.x35{left:179.016000px;}
.x54{left:184.015500px;}
.x70{left:185.259000px;}
.x6{left:190.573500px;}
.x55{left:198.960000px;}
.x7{left:201.180000px;}
.x5e{left:215.310000px;}
.x33{left:227.521500px;}
.x5f{left:230.253000px;}
.x19{left:234.046500px;}
.x7b{left:239.317500px;}
.x34{left:242.464500px;}
.x76{left:243.465000px;}
.x82{left:250.854000px;}
.x84{left:252.858000px;}
.x7c{left:255.454500px;}
.x2f{left:256.716000px;}
.x75{left:259.017000px;}
.x83{left:264.760500px;}
.x30{left:271.660500px;}
.x23{left:274.588500px;}
.x46{left:284.674500px;}
.x58{left:285.835500px;}
.x24{left:289.533000px;}
.x4a{left:295.134000px;}
.x31{left:296.167500px;}
.x47{left:299.617500px;}
.x59{left:300.780000px;}
.x4b{left:310.077000px;}
.x32{left:311.112000px;}
.x21{left:313.920000px;}
.x4c{left:317.698500px;}
.x22{left:328.864500px;}
.x4d{left:332.643000px;}
.x41{left:335.167500px;}
.x3a{left:338.244000px;}
.x3b{left:345.715500px;}
.xe{left:348.829500px;}
.x42{left:350.110500px;}
.xf{left:356.302500px;}
.x68{left:358.876500px;}
.x69{left:373.821000px;}
.x62{left:380.910000px;}
.x63{left:395.853000px;}
.x27{left:412.623000px;}
.x16{left:415.567500px;}
.x17{left:423.040500px;}
.x28{left:427.567500px;}
.x29{left:431.377500px;}
.x66{left:437.509500px;}
.x36{left:439.936500px;}
.x56{left:441.730500px;}
.x2a{left:446.322000px;}
.x67{left:452.452500px;}
.x37{left:454.879500px;}
.x57{left:456.673500px;}
.x1f{left:459.727500px;}
.x6d{left:468.849000px;}
.x20{left:474.670500px;}
.xc{left:476.458500px;}
.x2d{left:478.140000px;}
.x5a{left:482.479500px;}
.xd{left:483.930000px;}
.x2e{left:493.084500px;}
.x6a{left:494.730000px;}
.x5b{left:497.424000px;}
.x78{left:504.097500px;}
.x71{left:508.377000px;}
.x6b{left:509.673000px;}
.xa{left:510.741000px;}
.xb{left:518.212500px;}
.x60{left:519.846000px;}
.x72{left:523.320000px;}
.x3e{left:529.384500px;}
.x61{left:534.790500px;}
.x38{left:543.931500px;}
.x39{left:551.403000px;}
.x52{left:554.602500px;}
.x8{left:559.024500px;}
.x9{left:566.496000px;}
.x50{left:567.555000px;}
.x53{left:569.547000px;}
.x51{left:582.499500px;}
.x3f{left:598.516500px;}
.x40{left:605.989500px;}
.x10{left:620.172000px;}
.x6e{left:622.816500px;}
.x11{left:627.645000px;}
.x6f{left:637.761000px;}
.x79{left:638.871000px;}
.x7d{left:649.596000px;}
.x7a{left:653.814000px;}
.x6c{left:661.549500px;}
.x5c{left:668.287500px;}
.x25{left:676.824000px;}
.x65{left:680.206500px;}
.x3c{left:682.020000px;}
.x5d{left:683.230500px;}
.x2b{left:686.533500px;}
.x73{left:687.640500px;}
.x26{left:691.767000px;}
.x45{left:695.724000px;}
.x3d{left:696.964500px;}
.x2c{left:701.478000px;}
.x74{left:702.585000px;}
.x1a{left:709.213500px;}
.x43{left:710.311500px;}
.x1b{left:716.686500px;}
.x44{left:725.256000px;}
.x7e{left:728.331000px;}
.x64{left:729.886500px;}
.x80{left:735.892500px;}
.x48{left:737.866500px;}
.x4e{left:752.161500px;}
.x12{left:753.544500px;}
.x7f{left:755.230500px;}
.x49{left:756.478500px;}
.x13{left:761.017500px;}
.x81{left:762.792000px;}
.x14{left:764.689500px;}
.x4f{left:767.106000px;}
.x15{left:772.161000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002900pt;}
.lsd{letter-spacing:0.004267pt;}
.ls0{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626533pt;}
.lsb{letter-spacing:11.726902pt;}
.ls8{letter-spacing:11.954133pt;}
.ls7{letter-spacing:11.959467pt;}
.ls9{letter-spacing:12.161450pt;}
.lsa{letter-spacing:13.885323pt;}
.ls1{letter-spacing:15.942400pt;}
.ls3{letter-spacing:62.432533pt;}
.ls2{letter-spacing:62.437867pt;}
.ls4{letter-spacing:64.319565pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws9{word-spacing:-2.869229pt;}
.ws85{word-spacing:-2.816095pt;}
.ws4f{word-spacing:-2.603559pt;}
.ws8d{word-spacing:-2.337890pt;}
.ws89{word-spacing:-2.284756pt;}
.ws32{word-spacing:-2.231622pt;}
.ws19{word-spacing:-2.178489pt;}
.ws18{word-spacing:-2.125355pt;}
.ws8{word-spacing:-1.965953pt;}
.ws36{word-spacing:-1.859685pt;}
.ws3c{word-spacing:-1.806551pt;}
.ws20{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.700284pt;}
.ws12{word-spacing:-1.487748pt;}
.ws63{word-spacing:-1.381481pt;}
.ws70{word-spacing:-1.328347pt;}
.ws56{word-spacing:-1.275213pt;}
.wsa{word-spacing:-1.222079pt;}
.ws54{word-spacing:-1.115811pt;}
.ws93{word-spacing:-1.099878pt;}
.ws2d{word-spacing:-1.062677pt;}
.wse{word-spacing:-1.009543pt;}
.wsb9{word-spacing:-1.004237pt;}
.wsb8{word-spacing:-0.956416pt;}
.ws64{word-spacing:-0.956410pt;}
.wsd6{word-spacing:-0.908595pt;}
.ws5d{word-spacing:-0.903276pt;}
.ws94{word-spacing:-0.860774pt;}
.ws91{word-spacing:-0.850142pt;}
.ws9b{word-spacing:-0.812954pt;}
.ws73{word-spacing:-0.743874pt;}
.wsc4{word-spacing:-0.526029pt;}
.wsb5{word-spacing:-0.478208pt;}
.ws53{word-spacing:-0.425071pt;}
.ws55{word-spacing:-0.371937pt;}
.ws71{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.wsb3{word-spacing:-0.239104pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws9a{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.159402pt;}
.wsa8{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.ws97{word-spacing:-0.095642pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws95{word-spacing:-0.047821pt;}
.wsdd{word-spacing:-0.025941pt;}
.wsc0{word-spacing:-0.006579pt;}
.wsd1{word-spacing:-0.005513pt;}
.wsa9{word-spacing:-0.005026pt;}
.wsc1{word-spacing:-0.000947pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.000862pt;}
.wsa2{word-spacing:0.047454pt;}
.wsa3{word-spacing:0.047821pt;}
.ws3{word-spacing:0.053134pt;}
.ws69{word-spacing:0.064702pt;}
.ws68{word-spacing:0.086067pt;}
.wsb0{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.106268pt;}
.wsa4{word-spacing:0.143462pt;}
.wsad{word-spacing:0.153165pt;}
.ws5{word-spacing:0.159402pt;}
.wsaf{word-spacing:0.169877pt;}
.wsae{word-spacing:0.191283pt;}
.wsf{word-spacing:0.212535pt;}
.ws98{word-spacing:0.239104pt;}
.ws46{word-spacing:0.265669pt;}
.ws14{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.334746pt;}
.ws84{word-spacing:0.371937pt;}
.wscc{word-spacing:0.430387pt;}
.ws30{word-spacing:0.478205pt;}
.ws38{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.637606pt;}
.ws59{word-spacing:0.743874pt;}
.ws43{word-spacing:0.797008pt;}
.ws47{word-spacing:0.850142pt;}
.ws48{word-spacing:0.903276pt;}
.ws81{word-spacing:1.009543pt;}
.ws21{word-spacing:1.062677pt;}
.ws5e{word-spacing:1.115811pt;}
.ws5b{word-spacing:1.168945pt;}
.ws67{word-spacing:1.222079pt;}
.ws86{word-spacing:1.275213pt;}
.ws79{word-spacing:1.328347pt;}
.ws7b{word-spacing:1.381481pt;}
.ws8b{word-spacing:1.434614pt;}
.wsc5{word-spacing:1.482445pt;}
.ws4d{word-spacing:1.487748pt;}
.ws50{word-spacing:1.540882pt;}
.ws26{word-spacing:1.594016pt;}
.ws10{word-spacing:1.700284pt;}
.ws37{word-spacing:1.753418pt;}
.ws6{word-spacing:1.806551pt;}
.ws65{word-spacing:1.859685pt;}
.ws74{word-spacing:1.912819pt;}
.ws42{word-spacing:2.019087pt;}
.ws5c{word-spacing:2.072221pt;}
.ws1f{word-spacing:2.125355pt;}
.ws83{word-spacing:2.231622pt;}
.ws58{word-spacing:2.284756pt;}
.wsa1{word-spacing:2.295398pt;}
.ws76{word-spacing:2.337890pt;}
.ws3b{word-spacing:2.444158pt;}
.ws5f{word-spacing:2.497292pt;}
.ws5a{word-spacing:2.550426pt;}
.ws17{word-spacing:2.603559pt;}
.wsaa{word-spacing:2.630144pt;}
.ws31{word-spacing:2.656693pt;}
.wsb1{word-spacing:2.677965pt;}
.ws25{word-spacing:2.709827pt;}
.ws92{word-spacing:2.725786pt;}
.ws1e{word-spacing:2.762961pt;}
.ws40{word-spacing:2.816095pt;}
.wsbc{word-spacing:2.862566pt;}
.wsc9{word-spacing:2.863539pt;}
.wsda{word-spacing:2.865015pt;}
.wsd0{word-spacing:2.865348pt;}
.wsc8{word-spacing:2.867029pt;}
.wsbb{word-spacing:2.867959pt;}
.ws90{word-spacing:2.869229pt;}
.ws9c{word-spacing:2.869248pt;}
.wsdc{word-spacing:2.869692pt;}
.wsc2{word-spacing:2.870793pt;}
.wsbf{word-spacing:2.871509pt;}
.ws2b{word-spacing:2.922363pt;}
.wsa0{word-spacing:2.964890pt;}
.ws57{word-spacing:2.975497pt;}
.ws24{word-spacing:3.028630pt;}
.ws29{word-spacing:3.081764pt;}
.wsd9{word-spacing:3.108352pt;}
.ws35{word-spacing:3.134898pt;}
.ws13{word-spacing:3.188032pt;}
.ws28{word-spacing:3.241166pt;}
.wsba{word-spacing:3.251814pt;}
.ws6e{word-spacing:3.347434pt;}
.ws61{word-spacing:3.400567pt;}
.ws8a{word-spacing:3.506835pt;}
.wsac{word-spacing:3.538739pt;}
.wsab{word-spacing:3.586560pt;}
.ws2{word-spacing:3.613103pt;}
.ws51{word-spacing:3.666237pt;}
.ws39{word-spacing:3.719371pt;}
.ws6b{word-spacing:3.772505pt;}
.wsb7{word-spacing:3.969126pt;}
.wsca{word-spacing:3.991215pt;}
.wscb{word-spacing:4.016947pt;}
.ws15{word-spacing:4.038174pt;}
.ws66{word-spacing:4.091308pt;}
.ws6d{word-spacing:4.144442pt;}
.ws6a{word-spacing:4.197575pt;}
.wscd{word-spacing:4.256051pt;}
.ws2e{word-spacing:4.356977pt;}
.ws7d{word-spacing:4.410111pt;}
.ws7a{word-spacing:4.463245pt;}
.wsb6{word-spacing:4.638618pt;}
.ws41{word-spacing:4.728914pt;}
.ws77{word-spacing:4.782048pt;}
.ws3e{word-spacing:4.835182pt;}
.wsce{word-spacing:4.877722pt;}
.ws33{word-spacing:4.888316pt;}
.ws6f{word-spacing:5.047717pt;}
.wsbe{word-spacing:5.116826pt;}
.ws75{word-spacing:5.153985pt;}
.wsa7{word-spacing:5.164646pt;}
.ws9f{word-spacing:5.212467pt;}
.ws52{word-spacing:5.260253pt;}
.ws8c{word-spacing:5.366521pt;}
.ws4e{word-spacing:5.419654pt;}
.ws4c{word-spacing:5.472788pt;}
.ws6c{word-spacing:5.579056pt;}
.ws45{word-spacing:5.844725pt;}
.ws80{word-spacing:5.897859pt;}
.wsd{word-spacing:6.004127pt;}
.wscf{word-spacing:6.073242pt;}
.ws62{word-spacing:6.110395pt;}
.ws7e{word-spacing:6.322930pt;}
.wsb2{word-spacing:6.360166pt;}
.wsd8{word-spacing:6.455808pt;}
.ws78{word-spacing:6.535466pt;}
.wsd5{word-spacing:6.551450pt;}
.ws22{word-spacing:6.588599pt;}
.ws88{word-spacing:6.801135pt;}
.ws8e{word-spacing:6.960537pt;}
.ws60{word-spacing:7.013670pt;}
.ws3f{word-spacing:7.066804pt;}
.ws7{word-spacing:7.119938pt;}
.wsb{word-spacing:7.173072pt;}
.ws87{word-spacing:7.491875pt;}
.ws34{word-spacing:7.545009pt;}
.wsc6{word-spacing:7.746970pt;}
.wsc{word-spacing:7.970080pt;}
.ws44{word-spacing:8.023214pt;}
.ws9e{word-spacing:8.081715pt;}
.ws2a{word-spacing:8.129482pt;}
.wsd2{word-spacing:8.225178pt;}
.wsbd{word-spacing:8.272998pt;}
.ws23{word-spacing:8.342017pt;}
.ws99{word-spacing:8.559923pt;}
.ws49{word-spacing:9.457828pt;}
.wsc7{word-spacing:10.138010pt;}
.ws96{word-spacing:10.185830pt;}
.ws3d{word-spacing:10.254836pt;}
.ws82{word-spacing:10.414238pt;}
.ws4b{word-spacing:10.467372pt;}
.ws7c{word-spacing:11.211246pt;}
.ws8f{word-spacing:11.901986pt;}
.ws2f{word-spacing:12.433325pt;}
.wsd7{word-spacing:13.198541pt;}
.wsd4{word-spacing:13.963674pt;}
.wsb4{word-spacing:15.876506pt;}
.wsa5{word-spacing:19.080499pt;}
.ws4a{word-spacing:19.606397pt;}
.ws72{word-spacing:22.050555pt;}
.ws7f{word-spacing:22.581893pt;}
.wsd3{word-spacing:22.858342pt;}
.wsc3{word-spacing:25.249382pt;}
.wsa6{word-spacing:29.744538pt;}
._2d{margin-left:-17.962011pt;}
._2b{margin-left:-6.886195pt;}
._2{margin-left:-5.919954pt;}
._a{margin-left:-4.782048pt;}
._0{margin-left:-3.538739pt;}
._2a{margin-left:-2.630144pt;}
._3{margin-left:-1.721549pt;}
._1{width:2.665248pt;}
._20{width:3.985040pt;}
._14{width:10.594905pt;}
._17{width:11.944388pt;}
._8{width:13.060327pt;}
._4{width:13.963674pt;}
._5{width:15.685222pt;}
._1c{width:16.577766pt;}
._6{width:17.502307pt;}
._1b{width:18.405583pt;}
._11{width:19.500129pt;}
._d{width:20.881610pt;}
._7{width:22.263090pt;}
._b{width:24.197174pt;}
._1d{width:25.153584pt;}
._12{width:26.853868pt;}
._15{width:28.001548pt;}
._e{width:29.011091pt;}
._21{width:29.935632pt;}
._13{width:31.264014pt;}
._30{width:32.222105pt;}
._1a{width:33.314934pt;}
._c{width:35.068352pt;}
._18{width:37.406242pt;}
._9{width:38.415786pt;}
._1e{width:39.319061pt;}
._1f{width:40.966211pt;}
._2f{width:43.055011pt;}
._16{width:47.714212pt;}
._19{width:49.223226pt;}
._22{width:50.583441pt;}
._25{width:53.654906pt;}
._29{width:54.993920pt;}
._27{width:56.667648pt;}
._24{width:73.299461pt;}
._26{width:78.904320pt;}
._2e{width:83.877683pt;}
._2c{width:90.094387pt;}
._28{width:104.388613pt;}
._f{width:820.770191pt;}
._23{width:1872.355200pt;}
._10{width:1893.608533pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.396388pt;}
.y2e{bottom:56.693333pt;}
.y2d{bottom:96.544000pt;}
.y12e{bottom:96.850667pt;}
.y92{bottom:101.472000pt;}
.y131{bottom:101.992000pt;}
.yba{bottom:103.650667pt;}
.yfa{bottom:104.860000pt;}
.ybf{bottom:106.545333pt;}
.y61{bottom:109.441333pt;}
.y12d{bottom:114.066667pt;}
.y2c{bottom:114.556000pt;}
.y130{bottom:119.208000pt;}
.y91{bottom:119.484000pt;}
.yb9{bottom:121.662667pt;}
.yf9{bottom:122.076000pt;}
.ybe{bottom:124.558667pt;}
.y60{bottom:127.454667pt;}
.y12c{bottom:131.281333pt;}
.y2b{bottom:132.568000pt;}
.y12f{bottom:136.424000pt;}
.y90{bottom:137.496000pt;}
.yf8{bottom:139.292000pt;}
.ycd{bottom:139.674667pt;}
.ybd{bottom:142.570667pt;}
.y5f{bottom:145.466667pt;}
.yb8{bottom:147.645333pt;}
.y12b{bottom:148.497333pt;}
.y2a{bottom:150.581333pt;}
.y8f{bottom:155.509333pt;}
.yf7{bottom:156.506667pt;}
.ycc{bottom:157.688000pt;}
.ybc{bottom:160.584000pt;}
.y5e{bottom:163.478667pt;}
.y12a{bottom:165.713333pt;}
.y29{bottom:168.593333pt;}
.y8e{bottom:173.521333pt;}
.yf6{bottom:173.722667pt;}
.ycb{bottom:175.700000pt;}
.yb7{bottom:178.596000pt;}
.y5d{bottom:181.492000pt;}
.y129{bottom:182.928000pt;}
.y28{bottom:186.606667pt;}
.yf5{bottom:190.937333pt;}
.y8d{bottom:191.534667pt;}
.yca{bottom:193.713333pt;}
.yb6{bottom:196.608000pt;}
.y5c{bottom:199.504000pt;}
.y128{bottom:200.144000pt;}
.y27{bottom:204.618667pt;}
.yf4{bottom:208.153333pt;}
.y8c{bottom:209.546667pt;}
.yc9{bottom:211.725333pt;}
.yb5{bottom:214.621333pt;}
.y127{bottom:217.358667pt;}
.y5b{bottom:217.517333pt;}
.y26{bottom:222.630667pt;}
.yf3{bottom:225.369333pt;}
.y8b{bottom:227.558667pt;}
.yc8{bottom:229.737333pt;}
.yb4{bottom:232.633333pt;}
.y126{bottom:234.574667pt;}
.y5a{bottom:235.529333pt;}
.y25{bottom:240.644000pt;}
.yf2{bottom:242.584000pt;}
.y8a{bottom:245.572000pt;}
.yc7{bottom:247.750667pt;}
.yb3{bottom:250.646667pt;}
.y125{bottom:251.790667pt;}
.y59{bottom:253.541333pt;}
.y24{bottom:258.656000pt;}
.yf1{bottom:259.800000pt;}
.y89{bottom:263.584000pt;}
.yc6{bottom:265.762667pt;}
.yb2{bottom:268.658667pt;}
.y124{bottom:269.005333pt;}
.y58{bottom:271.554667pt;}
.y23{bottom:276.669333pt;}
.yf0{bottom:277.014667pt;}
.y88{bottom:281.597333pt;}
.yc5{bottom:283.776000pt;}
.y123{bottom:286.221333pt;}
.yb1{bottom:286.670667pt;}
.y57{bottom:289.566667pt;}
.yef{bottom:294.230667pt;}
.y87{bottom:299.609333pt;}
.yc4{bottom:301.788000pt;}
.y22{bottom:302.652000pt;}
.y122{bottom:303.437333pt;}
.yb0{bottom:304.684000pt;}
.y56{bottom:307.580000pt;}
.yee{bottom:311.446667pt;}
.y86{bottom:317.621333pt;}
.y121{bottom:320.652000pt;}
.yaf{bottom:322.696000pt;}
.y55{bottom:325.592000pt;}
.yc3{bottom:327.770667pt;}
.yed{bottom:328.661333pt;}
.y85{bottom:335.634667pt;}
.y120{bottom:337.868000pt;}
.yae{bottom:340.709333pt;}
.y54{bottom:343.604000pt;}
.yec{bottom:345.877333pt;}
.y84{bottom:353.646667pt;}
.y11f{bottom:355.082667pt;}
.yad{bottom:358.721333pt;}
.y53{bottom:361.617333pt;}
.yeb{bottom:363.092000pt;}
.y21{bottom:370.569333pt;}
.y83{bottom:371.660000pt;}
.y11e{bottom:372.298667pt;}
.yac{bottom:376.733333pt;}
.y52{bottom:379.629333pt;}
.yea{bottom:380.308000pt;}
.y11d{bottom:389.514667pt;}
.y82{bottom:389.672000pt;}
.yab{bottom:394.746667pt;}
.ye9{bottom:397.524000pt;}
.y51{bottom:397.642667pt;}
.y20{bottom:404.522667pt;}
.y11c{bottom:406.729333pt;}
.y81{bottom:407.684000pt;}
.yaa{bottom:412.758667pt;}
.ye8{bottom:414.738667pt;}
.y50{bottom:415.654667pt;}
.y1f{bottom:422.534667pt;}
.y11b{bottom:423.945333pt;}
.y80{bottom:425.697333pt;}
.ya9{bottom:430.772000pt;}
.ye7{bottom:431.954667pt;}
.y4f{bottom:433.666667pt;}
.y1e{bottom:440.548000pt;}
.y11a{bottom:441.160000pt;}
.y7f{bottom:443.709333pt;}
.ya8{bottom:448.784000pt;}
.ye6{bottom:449.169333pt;}
.y4e{bottom:451.680000pt;}
.y119{bottom:458.376000pt;}
.y1d{bottom:458.560000pt;}
.y7e{bottom:461.722667pt;}
.ye5{bottom:466.385333pt;}
.ya7{bottom:466.796000pt;}
.y4d{bottom:469.692000pt;}
.y118{bottom:475.592000pt;}
.y1c{bottom:476.573333pt;}
.y7d{bottom:479.734667pt;}
.ye4{bottom:483.601333pt;}
.ya6{bottom:484.809333pt;}
.y4c{bottom:487.704000pt;}
.y117{bottom:492.806667pt;}
.y1b{bottom:494.585333pt;}
.y7c{bottom:497.746667pt;}
.ye3{bottom:500.816000pt;}
.ya5{bottom:502.821333pt;}
.y4b{bottom:505.717333pt;}
.y116{bottom:510.022667pt;}
.y1a{bottom:512.597333pt;}
.y7b{bottom:515.760000pt;}
.ye2{bottom:518.032000pt;}
.ya4{bottom:520.834667pt;}
.y4a{bottom:523.729333pt;}
.y115{bottom:527.237333pt;}
.ybb{bottom:528.804000pt;}
.y19{bottom:530.610667pt;}
.y7a{bottom:533.772000pt;}
.ye1{bottom:535.246667pt;}
.ya3{bottom:538.846667pt;}
.y49{bottom:541.742667pt;}
.y114{bottom:544.453333pt;}
.y18{bottom:548.622667pt;}
.y79{bottom:551.785333pt;}
.ye0{bottom:552.462667pt;}
.ya2{bottom:556.858667pt;}
.y48{bottom:559.754667pt;}
.y113{bottom:561.669333pt;}
.y17{bottom:566.636000pt;}
.ydf{bottom:569.678667pt;}
.y78{bottom:569.797333pt;}
.ya1{bottom:574.872000pt;}
.y47{bottom:577.766667pt;}
.y112{bottom:578.884000pt;}
.y16{bottom:584.648000pt;}
.yde{bottom:586.893333pt;}
.y77{bottom:587.809333pt;}
.ya0{bottom:592.884000pt;}
.y46{bottom:595.780000pt;}
.y111{bottom:596.100000pt;}
.y15{bottom:602.660000pt;}
.ydd{bottom:604.109333pt;}
.y76{bottom:605.822667pt;}
.y9f{bottom:610.896000pt;}
.y110{bottom:613.314667pt;}
.y45{bottom:613.792000pt;}
.y14{bottom:620.673333pt;}
.ydc{bottom:621.325333pt;}
.y75{bottom:623.834667pt;}
.y9e{bottom:628.909333pt;}
.y10f{bottom:630.530667pt;}
.y44{bottom:631.805333pt;}
.ydb{bottom:638.540000pt;}
.y13{bottom:638.685333pt;}
.y74{bottom:641.846667pt;}
.y9d{bottom:646.921333pt;}
.y10e{bottom:647.746667pt;}
.y43{bottom:649.817333pt;}
.yda{bottom:655.756000pt;}
.y12{bottom:656.698667pt;}
.y73{bottom:659.860000pt;}
.y9c{bottom:664.934667pt;}
.y10d{bottom:664.961333pt;}
.y42{bottom:667.829333pt;}
.yd9{bottom:672.970667pt;}
.y11{bottom:674.710667pt;}
.y72{bottom:677.872000pt;}
.y10c{bottom:682.177333pt;}
.y9b{bottom:682.946667pt;}
.y41{bottom:685.842667pt;}
.yd8{bottom:690.186667pt;}
.y10{bottom:692.722667pt;}
.y71{bottom:695.885333pt;}
.y10b{bottom:699.392000pt;}
.y9a{bottom:700.958667pt;}
.y40{bottom:703.854667pt;}
.yf{bottom:710.736000pt;}
.y70{bottom:713.897333pt;}
.yd7{bottom:715.372000pt;}
.y10a{bottom:716.608000pt;}
.y99{bottom:718.972000pt;}
.y3f{bottom:721.868000pt;}
.ye{bottom:728.748000pt;}
.y6f{bottom:731.909333pt;}
.y109{bottom:733.824000pt;}
.y98{bottom:736.984000pt;}
.y3e{bottom:739.880000pt;}
.yd6{bottom:748.528000pt;}
.y6e{bottom:749.922667pt;}
.y108{bottom:751.038667pt;}
.y97{bottom:754.997333pt;}
.y3d{bottom:757.892000pt;}
.yd{bottom:758.780000pt;}
.y6d{bottom:767.934667pt;}
.y107{bottom:768.254667pt;}
.yd5{bottom:770.008000pt;}
.y96{bottom:773.009333pt;}
.yc{bottom:774.918667pt;}
.y3c{bottom:775.905333pt;}
.yd4{bottom:783.517333pt;}
.y106{bottom:785.469333pt;}
.y6c{bottom:785.948000pt;}
.y95{bottom:791.021333pt;}
.y3b{bottom:793.917333pt;}
.yd3{bottom:797.026667pt;}
.yb{bottom:799.029333pt;}
.y105{bottom:802.685333pt;}
.y6b{bottom:803.960000pt;}
.y94{bottom:809.034667pt;}
.yd2{bottom:810.536000pt;}
.y3a{bottom:811.930667pt;}
.ya{bottom:819.508000pt;}
.y104{bottom:819.901333pt;}
.y6a{bottom:821.972000pt;}
.yd1{bottom:824.045333pt;}
.yc2{bottom:827.046667pt;}
.y39{bottom:829.942667pt;}
.y93{bottom:835.017333pt;}
.y9{bottom:835.648000pt;}
.y103{bottom:837.116000pt;}
.yd0{bottom:837.554667pt;}
.y69{bottom:839.985333pt;}
.yc1{bottom:845.060000pt;}
.y8{bottom:847.448000pt;}
.y38{bottom:847.954667pt;}
.y102{bottom:854.332000pt;}
.y68{bottom:857.997333pt;}
.ycf{bottom:859.033333pt;}
.y37{bottom:865.968000pt;}
.y7{bottom:867.926667pt;}
.yc0{bottom:871.042667pt;}
.y101{bottom:871.546667pt;}
.yce{bottom:872.542667pt;}
.y67{bottom:876.010667pt;}
.y36{bottom:883.980000pt;}
.y6{bottom:886.233333pt;}
.y100{bottom:888.762667pt;}
.y66{bottom:894.022667pt;}
.y35{bottom:901.993333pt;}
.yff{bottom:905.978667pt;}
.y65{bottom:912.034667pt;}
.y34{bottom:920.005333pt;}
.yfe{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y64{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.yfd{bottom:940.409333pt;}
.y63{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.yfc{bottom:957.624000pt;}
.y62{bottom:966.073333pt;}
.y31{bottom:974.042667pt;}
.yfb{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y30{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h7{height:33.771789pt;}
.hc{height:34.430976pt;}
.hd{height:35.052646pt;}
.h9{height:38.256384pt;}
.hb{height:38.596538pt;}
.h4{height:38.947124pt;}
.h8{height:43.421286pt;}
.h2{height:45.271688pt;}
.ha{height:48.245551pt;}
.h6{height:48.360277pt;}
.h5{height:68.861952pt;}
.h3{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:156.546809pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.032708pt;}
.x77{left:100.054667pt;}
.x1{left:102.046667pt;}
.x1d{left:106.120000pt;}
.x5{left:108.541333pt;}
.x3{left:109.605333pt;}
.x4{left:129.929333pt;}
.x1e{left:134.826667pt;}
.x1c{left:142.780000pt;}
.x18{left:154.328000pt;}
.x35{left:159.125333pt;}
.x54{left:163.569333pt;}
.x70{left:164.674667pt;}
.x6{left:169.398667pt;}
.x55{left:176.853333pt;}
.x7{left:178.826667pt;}
.x5e{left:191.386667pt;}
.x33{left:202.241333pt;}
.x5f{left:204.669333pt;}
.x19{left:208.041333pt;}
.x7b{left:212.726667pt;}
.x34{left:215.524000pt;}
.x76{left:216.413333pt;}
.x82{left:222.981333pt;}
.x84{left:224.762667pt;}
.x7c{left:227.070667pt;}
.x2f{left:228.192000pt;}
.x75{left:230.237333pt;}
.x83{left:235.342667pt;}
.x30{left:241.476000pt;}
.x23{left:244.078667pt;}
.x46{left:253.044000pt;}
.x58{left:254.076000pt;}
.x24{left:257.362667pt;}
.x4a{left:262.341333pt;}
.x31{left:263.260000pt;}
.x47{left:266.326667pt;}
.x59{left:267.360000pt;}
.x4b{left:275.624000pt;}
.x32{left:276.544000pt;}
.x21{left:279.040000pt;}
.x4c{left:282.398667pt;}
.x22{left:292.324000pt;}
.x4d{left:295.682667pt;}
.x41{left:297.926667pt;}
.x3a{left:300.661333pt;}
.x3b{left:307.302667pt;}
.xe{left:310.070667pt;}
.x42{left:311.209333pt;}
.xf{left:316.713333pt;}
.x68{left:319.001333pt;}
.x69{left:332.285333pt;}
.x62{left:338.586667pt;}
.x63{left:351.869333pt;}
.x27{left:366.776000pt;}
.x16{left:369.393333pt;}
.x17{left:376.036000pt;}
.x28{left:380.060000pt;}
.x29{left:383.446667pt;}
.x66{left:388.897333pt;}
.x36{left:391.054667pt;}
.x56{left:392.649333pt;}
.x2a{left:396.730667pt;}
.x67{left:402.180000pt;}
.x37{left:404.337333pt;}
.x57{left:405.932000pt;}
.x1f{left:408.646667pt;}
.x6d{left:416.754667pt;}
.x20{left:421.929333pt;}
.xc{left:423.518667pt;}
.x2d{left:425.013333pt;}
.x5a{left:428.870667pt;}
.xd{left:430.160000pt;}
.x2e{left:438.297333pt;}
.x6a{left:439.760000pt;}
.x5b{left:442.154667pt;}
.x78{left:448.086667pt;}
.x71{left:451.890667pt;}
.x6b{left:453.042667pt;}
.xa{left:453.992000pt;}
.xb{left:460.633333pt;}
.x60{left:462.085333pt;}
.x72{left:465.173333pt;}
.x3e{left:470.564000pt;}
.x61{left:475.369333pt;}
.x38{left:483.494667pt;}
.x39{left:490.136000pt;}
.x52{left:492.980000pt;}
.x8{left:496.910667pt;}
.x9{left:503.552000pt;}
.x50{left:504.493333pt;}
.x53{left:506.264000pt;}
.x51{left:517.777333pt;}
.x3f{left:532.014667pt;}
.x40{left:538.657333pt;}
.x10{left:551.264000pt;}
.x6e{left:553.614667pt;}
.x11{left:557.906667pt;}
.x6f{left:566.898667pt;}
.x79{left:567.885333pt;}
.x7d{left:577.418667pt;}
.x7a{left:581.168000pt;}
.x6c{left:588.044000pt;}
.x5c{left:594.033333pt;}
.x25{left:601.621333pt;}
.x65{left:604.628000pt;}
.x3c{left:606.240000pt;}
.x5d{left:607.316000pt;}
.x2b{left:610.252000pt;}
.x73{left:611.236000pt;}
.x26{left:614.904000pt;}
.x45{left:618.421333pt;}
.x3d{left:619.524000pt;}
.x2c{left:623.536000pt;}
.x74{left:624.520000pt;}
.x1a{left:630.412000pt;}
.x43{left:631.388000pt;}
.x1b{left:637.054667pt;}
.x44{left:644.672000pt;}
.x7e{left:647.405333pt;}
.x64{left:648.788000pt;}
.x80{left:654.126667pt;}
.x48{left:655.881333pt;}
.x4e{left:668.588000pt;}
.x12{left:669.817333pt;}
.x7f{left:671.316000pt;}
.x49{left:672.425333pt;}
.x13{left:676.460000pt;}
.x81{left:678.037333pt;}
.x14{left:679.724000pt;}
.x4f{left:681.872000pt;}
.x15{left:686.365333pt;}
}




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