
    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_f10670c9e3fe10615d1adf07.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_a77e4fa5bfb5cdf8b31be28f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965500;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_4534ff0b2700762aa4112b58.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_213146ca103c0933768f0c45.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936500;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_24ec1b42a168f396ea33529c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.956500;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_f10670c9e3fe10615d1adf07.woff')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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_42f9f75961882114c5ecf6ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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;}
.m4{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);}
.m8{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);}
.m25{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);}
.m1a{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);}
.m3{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);}
.m20{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);}
.ma{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);}
.m12{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);}
.m22{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);}
.m23{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);}
.m2{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);}
.m10{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);}
.m5{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);}
.m1{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);}
.m1e{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);}
.mb{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);}
.m1c{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);}
.m18{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);}
.m29{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);}
.m19{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);}
.m16{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);}
.m7{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);}
.m9{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);}
.m1d{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);}
.m27{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);}
.m1f{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);}
.m28{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);}
.m15{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);}
.m24{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);}
.me{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);}
.m6{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);}
.m11{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);}
.m1b{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);}
.m21{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);}
.m26{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);}
.mc{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);}
.m14{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);}
.m17{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);}
.mf{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);}
.md{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);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:3.586560px;}
.ls2{letter-spacing:13.772390px;}
.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;}
}
.ws64{word-spacing:-15.481880px;}
.ws4d{word-spacing:-14.943900px;}
.ws72{word-spacing:-0.071731px;}
.ws11{word-spacing:-0.059776px;}
.ws6c{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.047821px;}
.ws28{word-spacing:0.000000px;}
.ws74{word-spacing:9.307123px;}
.ws84{word-spacing:9.683712px;}
.ws2e{word-spacing:9.791309px;}
.ws44{word-spacing:10.114099px;}
.ws25{word-spacing:10.329293px;}
.ws82{word-spacing:10.383091px;}
.ws6{word-spacing:10.424891px;}
.ws81{word-spacing:10.436890px;}
.ws2{word-spacing:10.669914px;}
.ws59{word-spacing:10.867277px;}
.ws70{word-spacing:10.921075px;}
.ws8{word-spacing:11.142200px;}
.wsa{word-spacing:11.190020px;}
.ws5a{word-spacing:11.190067px;}
.ws9{word-spacing:11.237841px;}
.ws56{word-spacing:11.243866px;}
.ws83{word-spacing:11.297664px;}
.wsb{word-spacing:11.333482px;}
.ws55{word-spacing:11.351462px;}
.ws60{word-spacing:11.405261px;}
.ws4a{word-spacing:11.459059px;}
.ws77{word-spacing:11.566656px;}
.wsf{word-spacing:11.572585px;}
.wse{word-spacing:11.620406px;}
.ws30{word-spacing:11.620454px;}
.ws14{word-spacing:11.835648px;}
.ws3f{word-spacing:11.943245px;}
.ws7e{word-spacing:11.997043px;}
.ws6e{word-spacing:12.050842px;}
.ws27{word-spacing:12.104640px;}
.ws0{word-spacing:12.194253px;}
.ws2f{word-spacing:12.212237px;}
.ws1{word-spacing:12.242074px;}
.ws2a{word-spacing:12.266035px;}
.ws7f{word-spacing:12.319834px;}
.ws3{word-spacing:12.475132px;}
.ws71{word-spacing:12.481229px;}
.ws85{word-spacing:12.535027px;}
.ws1d{word-spacing:12.588826px;}
.ws65{word-spacing:12.642624px;}
.ws67{word-spacing:12.750221px;}
.ws6d{word-spacing:12.857818px;}
.ws41{word-spacing:12.911616px;}
.ws54{word-spacing:12.965414px;}
.ws57{word-spacing:13.073011px;}
.ws48{word-spacing:13.126810px;}
.ws5d{word-spacing:13.180608px;}
.ws3e{word-spacing:13.234406px;}
.ws61{word-spacing:13.342003px;}
.ws1f{word-spacing:13.395802px;}
.ws29{word-spacing:13.449600px;}
.ws1e{word-spacing:13.503398px;}
.ws13{word-spacing:13.557197px;}
.ws1b{word-spacing:13.610995px;}
.ws15{word-spacing:13.664794px;}
.ws18{word-spacing:13.718592px;}
.ws21{word-spacing:13.772390px;}
.ws20{word-spacing:13.826189px;}
.ws17{word-spacing:13.879987px;}
.ws63{word-spacing:13.927715px;}
.ws12{word-spacing:13.933786px;}
.ws16{word-spacing:13.987584px;}
.ws47{word-spacing:14.041382px;}
.ws7d{word-spacing:14.095181px;}
.ws6b{word-spacing:14.148979px;}
.ws33{word-spacing:14.202778px;}
.ws51{word-spacing:14.256576px;}
.ws37{word-spacing:14.310374px;}
.ws22{word-spacing:14.364173px;}
.ws2c{word-spacing:14.417971px;}
.ws5{word-spacing:14.465695px;}
.ws2b{word-spacing:14.471770px;}
.ws35{word-spacing:14.525568px;}
.ws5f{word-spacing:14.579366px;}
.ws3a{word-spacing:14.633165px;}
.ws73{word-spacing:14.686963px;}
.ws26{word-spacing:14.740762px;}
.ws4b{word-spacing:14.794560px;}
.ws7a{word-spacing:14.848358px;}
.ws46{word-spacing:14.902157px;}
.ws32{word-spacing:14.955955px;}
.ws7b{word-spacing:15.009754px;}
.ws86{word-spacing:15.063552px;}
.ws10{word-spacing:15.135283px;}
.ws53{word-spacing:15.171149px;}
.ws50{word-spacing:15.224947px;}
.ws6a{word-spacing:15.386342px;}
.ws1c{word-spacing:15.440141px;}
.ws39{word-spacing:15.493939px;}
.ws45{word-spacing:15.601536px;}
.ws68{word-spacing:15.655334px;}
.ws49{word-spacing:15.709133px;}
.ws2d{word-spacing:15.762931px;}
.ws4c{word-spacing:15.816730px;}
.ws23{word-spacing:15.870528px;}
.ws80{word-spacing:15.978125px;}
.ws5b{word-spacing:16.031923px;}
.ws7c{word-spacing:16.085722px;}
.ws40{word-spacing:16.193318px;}
.ws69{word-spacing:16.247117px;}
.ws38{word-spacing:16.300915px;}
.ws5e{word-spacing:16.516109px;}
.ws24{word-spacing:16.623706px;}
.ws4e{word-spacing:16.677504px;}
.ws3c{word-spacing:16.731302px;}
.ws34{word-spacing:16.892698px;}
.ws52{word-spacing:16.946496px;}
.ws4f{word-spacing:17.000294px;}
.ws78{word-spacing:17.054093px;}
.ws75{word-spacing:17.161690px;}
.ws36{word-spacing:17.215488px;}
.ws6f{word-spacing:17.269286px;}
.ws42{word-spacing:17.323085px;}
.ws3b{word-spacing:17.358950px;}
.ws3d{word-spacing:17.484480px;}
.ws62{word-spacing:17.538278px;}
.ws43{word-spacing:17.645875px;}
.ws4{word-spacing:17.861069px;}
.ws31{word-spacing:18.183859px;}
.ws5c{word-spacing:18.237658px;}
.ws58{word-spacing:18.506650px;}
.ws66{word-spacing:19.797811px;}
.ws79{word-spacing:20.819981px;}
.ws76{word-spacing:21.465562px;}
.wsd{word-spacing:28.692432px;}
.wsc{word-spacing:28.931536px;}
.ws1a{word-spacing:35.793869px;}
.ws19{word-spacing:53.744602px;}
._6{margin-left:-12.815972px;}
._49{margin-left:-7.424212px;}
._2{margin-left:-6.360140px;}
._5{margin-left:-5.260266px;}
._3{margin-left:-3.586560px;}
._0{margin-left:-2.391030px;}
._1{margin-left:-1.338977px;}
._8{width:1.625887px;}
._e{width:11.506874px;}
._4{width:12.768100px;}
._4a{width:13.826173px;}
._b{width:15.135268px;}
._9{width:16.217219px;}
._11{width:17.974616px;}
._c{width:19.104383px;}
._10{width:20.652587px;}
._a{width:21.722573px;}
._15{width:22.810522px;}
._d{width:24.257095px;}
._28{width:25.333063px;}
._12{width:26.438914px;}
._14{width:28.118599px;}
._f{width:29.547241px;}
._29{width:31.639410px;}
._7{width:34.335268px;}
._13{width:35.865600px;}
._48{width:39.482042px;}
._1b{width:71.037788px;}
._32{width:72.077908px;}
._47{width:87.876688px;}
._22{width:99.712336px;}
._46{width:101.111094px;}
._1f{width:102.731044px;}
._27{width:103.842860px;}
._44{width:108.666785px;}
._3f{width:116.288240px;}
._45{width:118.464077px;}
._25{width:127.418512px;}
._1a{width:140.222531px;}
._31{width:142.876573px;}
._3b{width:145.500772px;}
._1c{width:146.630538px;}
._2c{width:148.555300px;}
._40{width:166.559846px;}
._1e{width:169.566559px;}
._35{width:176.751644px;}
._33{width:177.761851px;}
._41{width:184.044326px;}
._43{width:192.998761px;}
._3d{width:198.486198px;}
._23{width:201.421210px;}
._39{width:204.906139px;}
._26{width:212.443884px;}
._42{width:214.225229px;}
._17{width:224.183900px;}
._19{width:229.689270px;}
._3e{width:231.709709px;}
._20{width:242.056934px;}
._21{width:247.012355px;}
._24{width:257.072656px;}
._16{width:272.082409px;}
._3c{width:281.401498px;}
._1d{width:283.894157px;}
._2b{width:301.223209px;}
._37{width:306.363955px;}
._2f{width:310.524365px;}
._2e{width:324.619546px;}
._34{width:349.313011px;}
._30{width:353.616883px;}
._2d{width:359.971062px;}
._18{width:376.206228px;}
._3a{width:389.070029px;}
._2a{width:399.865574px;}
._36{width:433.435776px;}
._38{width:453.305318px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(55,0,0);}
.fs2{font-size:35.865600px;}
.fs7{font-size:37.060800px;}
.fs1{font-size:41.842800px;}
.fs6{font-size:43.636200px;}
.fs0{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y78{bottom:50.838000px;}
.y17{bottom:95.670000px;}
.y16{bottom:109.866000px;}
.y46{bottom:112.107000px;}
.y13e{bottom:113.335500px;}
.y15{bottom:124.063500px;}
.y45{bottom:128.545500px;}
.y13d{bottom:129.774000px;}
.y170{bottom:138.187500px;}
.y14{bottom:138.259500px;}
.y19c{bottom:138.504000px;}
.y44{bottom:144.984000px;}
.y13c{bottom:146.212500px;}
.ya7{bottom:149.467500px;}
.y1eb{bottom:150.861000px;}
.y13{bottom:152.457000px;}
.y16f{bottom:154.626000px;}
.y19b{bottom:154.942500px;}
.y43{bottom:161.422500px;}
.y13b{bottom:162.651000px;}
.y12{bottom:166.653000px;}
.y1ea{bottom:167.299500px;}
.y42{bottom:177.861000px;}
.y16e{bottom:180.705000px;}
.y11{bottom:180.850500px;}
.y19a{bottom:181.338000px;}
.y1e9{bottom:183.738000px;}
.ya6{bottom:185.844000px;}
.y13a{bottom:186.589500px;}
.y41{bottom:194.299500px;}
.y10{bottom:195.046500px;}
.y16d{bottom:197.143500px;}
.y199{bottom:197.776500px;}
.ya5{bottom:202.282500px;}
.y1e8{bottom:209.142000px;}
.yf{bottom:209.244000px;}
.y40{bottom:210.738000px;}
.y16c{bottom:213.582000px;}
.y139{bottom:214.831500px;}
.ya4{bottom:218.719500px;}
.ye{bottom:223.440000px;}
.y198{bottom:224.173500px;}
.y1e7{bottom:225.580500px;}
.y3f{bottom:227.176500px;}
.ya3{bottom:235.158000px;}
.yd{bottom:237.637500px;}
.y16b{bottom:239.076000px;}
.y197{bottom:240.612000px;}
.y3e{bottom:243.615000px;}
.y1e6{bottom:250.986000px;}
.y138{bottom:252.013500px;}
.y1be{bottom:257.049000px;}
.y77{bottom:260.053500px;}
.yc{bottom:260.800500px;}
.ya2{bottom:261.129000px;}
.y196{bottom:267.007500px;}
.y1e5{bottom:267.424500px;}
.y137{bottom:268.452000px;}
.yd0{bottom:268.579500px;}
.y3d{bottom:271.410000px;}
.y76{bottom:276.490500px;}
.ya1{bottom:277.567500px;}
.y16a{bottom:281.784000px;}
.y195{bottom:283.446000px;}
.yb{bottom:283.963500px;}
.y136{bottom:284.890500px;}
.ycf{bottom:285.018000px;}
.y3c{bottom:287.848500px;}
.y1e4{bottom:292.828500px;}
.y75{bottom:292.929000px;}
.ya0{bottom:294.004500px;}
.y1bd{bottom:299.884500px;}
.y135{bottom:301.329000px;}
.yce{bottom:301.456500px;}
.y169{bottom:302.706000px;}
.y3b{bottom:304.287000px;}
.ya{bottom:307.126500px;}
.y1e3{bottom:309.267000px;}
.y74{bottom:309.367500px;}
.y194{bottom:309.841500px;}
.y9f{bottom:310.443000px;}
.y134{bottom:317.767500px;}
.ycd{bottom:317.895000px;}
.y3a{bottom:320.725500px;}
.y9{bottom:321.322500px;}
.y73{bottom:325.806000px;}
.y193{bottom:326.280000px;}
.y9e{bottom:326.881500px;}
.y133{bottom:334.206000px;}
.ycc{bottom:334.333500px;}
.y1e2{bottom:334.672500px;}
.y39{bottom:337.162500px;}
.y168{bottom:339.355500px;}
.y72{bottom:342.244500px;}
.y1bc{bottom:342.718500px;}
.y8{bottom:344.485500px;}
.y132{bottom:350.644500px;}
.ycb{bottom:350.772000px;}
.y1e1{bottom:351.111000px;}
.y192{bottom:352.677000px;}
.y9d{bottom:352.851000px;}
.y38{bottom:353.601000px;}
.y167{bottom:355.794000px;}
.yef{bottom:358.683000px;}
.y1bb{bottom:359.157000px;}
.y7{bottom:362.419500px;}
.y131{bottom:367.083000px;}
.yca{bottom:367.209000px;}
.y71{bottom:368.113500px;}
.y191{bottom:369.115500px;}
.y9c{bottom:369.289500px;}
.y37{bottom:370.039500px;}
.y166{bottom:372.232500px;}
.yee{bottom:375.121500px;}
.y1e0{bottom:376.515000px;}
.y130{bottom:383.521500px;}
.yc9{bottom:383.647500px;}
.y110{bottom:384.087000px;}
.y70{bottom:384.552000px;}
.y1ba{bottom:385.554000px;}
.y9b{bottom:385.728000px;}
.y36{bottom:386.478000px;}
.y165{bottom:388.671000px;}
.yed{bottom:391.560000px;}
.y1df{bottom:392.953500px;}
.y190{bottom:395.511000px;}
.y12f{bottom:399.958500px;}
.yc8{bottom:400.086000px;}
.y10f{bottom:400.525500px;}
.y6f{bottom:400.990500px;}
.y1b9{bottom:401.991000px;}
.y9a{bottom:402.166500px;}
.y35{bottom:402.916500px;}
.y164{bottom:405.108000px;}
.yec{bottom:407.998500px;}
.y18f{bottom:411.949500px;}
.y12e{bottom:416.397000px;}
.yc7{bottom:416.524500px;}
.y10e{bottom:416.964000px;}
.y6e{bottom:417.429000px;}
.y1de{bottom:418.357500px;}
.y99{bottom:418.605000px;}
.y34{bottom:419.355000px;}
.y163{bottom:421.546500px;}
.yeb{bottom:424.437000px;}
.y1b8{bottom:428.388000px;}
.y12d{bottom:432.835500px;}
.yc6{bottom:432.963000px;}
.y10d{bottom:433.402500px;}
.y6d{bottom:433.867500px;}
.y1dd{bottom:434.796000px;}
.y98{bottom:435.043500px;}
.y33{bottom:435.793500px;}
.y162{bottom:437.985000px;}
.y18e{bottom:438.345000px;}
.yea{bottom:440.875500px;}
.y1b7{bottom:444.826500px;}
.y10c{bottom:449.841000px;}
.y6c{bottom:450.306000px;}
.y32{bottom:452.232000px;}
.y161{bottom:454.423500px;}
.y18d{bottom:454.783500px;}
.y97{bottom:455.965500px;}
.yc5{bottom:456.903000px;}
.ye9{bottom:457.312500px;}
.y1dc{bottom:460.201500px;}
.y12c{bottom:462.483000px;}
.y10b{bottom:466.279500px;}
.y6b{bottom:466.744500px;}
.y31{bottom:468.670500px;}
.y160{bottom:470.862000px;}
.y1b6{bottom:471.222000px;}
.ye8{bottom:473.751000px;}
.y1db{bottom:476.640000px;}
.y12b{bottom:478.921500px;}
.y18c{bottom:481.180500px;}
.y10a{bottom:482.718000px;}
.y6a{bottom:483.183000px;}
.y30{bottom:485.109000px;}
.yc4{bottom:485.143500px;}
.y15f{bottom:487.300500px;}
.y1b5{bottom:487.660500px;}
.ye7{bottom:490.189500px;}
.y96{bottom:492.340500px;}
.y1da{bottom:493.078500px;}
.y12a{bottom:495.360000px;}
.y18b{bottom:497.619000px;}
.y109{bottom:499.156500px;}
.y69{bottom:499.621500px;}
.y2f{bottom:501.547500px;}
.y15e{bottom:503.739000px;}
.ye6{bottom:506.628000px;}
.y95{bottom:508.779000px;}
.y129{bottom:511.798500px;}
.y1b4{bottom:514.057500px;}
.y108{bottom:515.595000px;}
.y68{bottom:516.058500px;}
.yc3{bottom:517.606500px;}
.y2e{bottom:517.984500px;}
.y1d9{bottom:518.482500px;}
.y15d{bottom:520.177500px;}
.y18a{bottom:524.014500px;}
.y94{bottom:525.217500px;}
.y128{bottom:528.237000px;}
.y1b3{bottom:530.496000px;}
.y107{bottom:532.033500px;}
.y67{bottom:532.497000px;}
.yc2{bottom:534.045000px;}
.y2d{bottom:534.423000px;}
.y1d8{bottom:534.921000px;}
.ye5{bottom:535.677000px;}
.y15c{bottom:536.616000px;}
.y189{bottom:540.453000px;}
.y93{bottom:541.656000px;}
.y127{bottom:544.675500px;}
.y1b2{bottom:546.933000px;}
.y106{bottom:548.472000px;}
.y66{bottom:548.935500px;}
.yc1{bottom:550.483500px;}
.y2c{bottom:550.861500px;}
.y1d7{bottom:551.359500px;}
.ye4{bottom:552.115500px;}
.y15b{bottom:553.054500px;}
.y92{bottom:558.094500px;}
.y126{bottom:561.114000px;}
.y105{bottom:564.909000px;}
.y65{bottom:565.374000px;}
.y188{bottom:566.850000px;}
.yc0{bottom:566.922000px;}
.ye3{bottom:568.554000px;}
.y15a{bottom:569.491500px;}
.y1b1{bottom:573.330000px;}
.y91{bottom:574.533000px;}
.y2b{bottom:576.357000px;}
.y1d6{bottom:576.763500px;}
.y125{bottom:577.552500px;}
.y104{bottom:581.347500px;}
.y64{bottom:581.812500px;}
.y187{bottom:583.288500px;}
.ybf{bottom:583.359000px;}
.ye2{bottom:584.992500px;}
.y1b0{bottom:589.768500px;}
.y1d5{bottom:593.202000px;}
.y124{bottom:593.991000px;}
.y90{bottom:595.455000px;}
.y159{bottom:595.572000px;}
.y103{bottom:597.786000px;}
.y63{bottom:598.251000px;}
.y186{bottom:599.725500px;}
.ye1{bottom:601.431000px;}
.y1af{bottom:606.207000px;}
.ybe{bottom:608.919000px;}
.y123{bottom:610.429500px;}
.y158{bottom:612.010500px;}
.y102{bottom:614.224500px;}
.y62{bottom:614.689500px;}
.ye0{bottom:617.869500px;}
.y1d4{bottom:618.607500px;}
.y2a{bottom:625.249500px;}
.ybd{bottom:625.357500px;}
.y185{bottom:626.122500px;}
.y122{bottom:626.866500px;}
.y157{bottom:628.449000px;}
.y101{bottom:630.663000px;}
.y61{bottom:631.128000px;}
.y8f{bottom:631.830000px;}
.y1ae{bottom:632.602500px;}
.ydf{bottom:634.308000px;}
.y1d3{bottom:635.046000px;}
.ybc{bottom:641.796000px;}
.y184{bottom:642.561000px;}
.y121{bottom:643.305000px;}
.y156{bottom:644.886000px;}
.y8e{bottom:648.268500px;}
.y1ad{bottom:649.041000px;}
.yde{bottom:650.746500px;}
.y1d2{bottom:651.484500px;}
.y100{bottom:651.585000px;}
.y60{bottom:656.997000px;}
.ybb{bottom:658.234500px;}
.y183{bottom:658.999500px;}
.y120{bottom:659.743500px;}
.y155{bottom:661.324500px;}
.y29{bottom:664.401000px;}
.y8d{bottom:664.707000px;}
.ydd{bottom:667.185000px;}
.y5f{bottom:673.435500px;}
.yba{bottom:674.673000px;}
.y182{bottom:675.438000px;}
.y11f{bottom:676.182000px;}
.y1d1{bottom:676.888500px;}
.y154{bottom:677.763000px;}
.y28{bottom:680.839500px;}
.y8c{bottom:681.145500px;}
.ydc{bottom:683.623500px;}
.y5e{bottom:689.874000px;}
.yb9{bottom:691.111500px;}
.y1ac{bottom:691.875000px;}
.y11e{bottom:692.620500px;}
.y1d0{bottom:693.327000px;}
.y153{bottom:694.201500px;}
.y27{bottom:697.278000px;}
.y8b{bottom:697.584000px;}
.yff{bottom:698.322000px;}
.ydb{bottom:700.060500px;}
.y181{bottom:701.833500px;}
.y5d{bottom:706.312500px;}
.yb8{bottom:707.550000px;}
.y1ab{bottom:708.313500px;}
.y11d{bottom:709.059000px;}
.y1cf{bottom:709.765500px;}
.y152{bottom:710.640000px;}
.y26{bottom:713.716500px;}
.y8a{bottom:714.022500px;}
.yfe{bottom:714.760500px;}
.yda{bottom:716.499000px;}
.y180{bottom:718.272000px;}
.y5c{bottom:722.751000px;}
.yb7{bottom:723.988500px;}
.y11c{bottom:725.497500px;}
.y151{bottom:727.078500px;}
.y25{bottom:730.155000px;}
.yfd{bottom:731.199000px;}
.yd9{bottom:732.937500px;}
.y1aa{bottom:734.710500px;}
.y89{bottom:734.943000px;}
.y1ce{bottom:735.169500px;}
.y5b{bottom:739.188000px;}
.yb6{bottom:740.425500px;}
.y150{bottom:743.517000px;}
.y17f{bottom:744.667500px;}
.y11b{bottom:746.419500px;}
.y24{bottom:746.593500px;}
.yfc{bottom:747.637500px;}
.yd8{bottom:749.376000px;}
.y1a9{bottom:751.149000px;}
.y1cd{bottom:751.608000px;}
.y5a{bottom:755.626500px;}
.yb5{bottom:756.864000px;}
.y14f{bottom:759.955500px;}
.y17e{bottom:761.106000px;}
.y23{bottom:763.032000px;}
.yfb{bottom:764.074500px;}
.yd7{bottom:765.814500px;}
.y1a8{bottom:767.587500px;}
.y88{bottom:771.319500px;}
.y59{bottom:772.065000px;}
.yb4{bottom:773.302500px;}
.y14e{bottom:776.394000px;}
.y1cc{bottom:777.013500px;}
.y22{bottom:779.470500px;}
.yfa{bottom:780.513000px;}
.yd6{bottom:782.253000px;}
.y17d{bottom:787.503000px;}
.y87{bottom:787.758000px;}
.y58{bottom:788.503500px;}
.yb3{bottom:789.741000px;}
.y14d{bottom:792.832500px;}
.y1cb{bottom:793.452000px;}
.y1a7{bottom:793.983000px;}
.y21{bottom:795.909000px;}
.yf9{bottom:796.951500px;}
.yd5{bottom:803.175000px;}
.y17c{bottom:803.941500px;}
.y86{bottom:804.196500px;}
.y57{bottom:804.942000px;}
.yb2{bottom:806.179500px;}
.y11a{bottom:807.201000px;}
.y1ca{bottom:809.890500px;}
.y1a6{bottom:810.421500px;}
.yf8{bottom:813.390000px;}
.y20{bottom:816.234000px;}
.y14c{bottom:818.911500px;}
.y85{bottom:820.635000px;}
.y56{bottom:821.380500px;}
.yb1{bottom:822.618000px;}
.y119{bottom:823.639500px;}
.yf7{bottom:829.828500px;}
.y17b{bottom:830.337000px;}
.y1c9{bottom:835.294500px;}
.y14b{bottom:835.350000px;}
.y1a5{bottom:836.818500px;}
.y55{bottom:837.819000px;}
.yb0{bottom:839.056500px;}
.y118{bottom:840.078000px;}
.y84{bottom:844.545000px;}
.yf6{bottom:846.267000px;}
.y17a{bottom:846.775500px;}
.yd4{bottom:847.249500px;}
.y1c8{bottom:851.733000px;}
.y14a{bottom:851.788500px;}
.y1a4{bottom:853.255500px;}
.y54{bottom:854.257500px;}
.yaf{bottom:855.495000px;}
.y117{bottom:856.516500px;}
.yf5{bottom:862.705500px;}
.yd3{bottom:863.688000px;}
.y1f{bottom:866.347500px;}
.y1a3{bottom:869.694000px;}
.y53{bottom:870.696000px;}
.yae{bottom:871.933500px;}
.y116{bottom:872.955000px;}
.y179{bottom:873.172500px;}
.y1c7{bottom:877.137000px;}
.y149{bottom:877.867500px;}
.yf4{bottom:879.144000px;}
.yd2{bottom:880.126500px;}
.y83{bottom:887.034000px;}
.y52{bottom:887.134500px;}
.yad{bottom:888.372000px;}
.y115{bottom:889.393500px;}
.y178{bottom:889.609500px;}
.y1c6{bottom:893.575500px;}
.y148{bottom:894.306000px;}
.yf3{bottom:895.582500px;}
.y1a2{bottom:896.091000px;}
.yd1{bottom:896.565000px;}
.y82{bottom:903.471000px;}
.yac{bottom:904.809000px;}
.y114{bottom:905.832000px;}
.y177{bottom:906.048000px;}
.y1e{bottom:910.581000px;}
.y147{bottom:910.744500px;}
.yf2{bottom:912.021000px;}
.y1a1{bottom:912.529500px;}
.y51{bottom:913.003500px;}
.y1c5{bottom:918.981000px;}
.y81{bottom:919.909500px;}
.yab{bottom:921.247500px;}
.y113{bottom:922.270500px;}
.y1d{bottom:923.227500px;}
.y146{bottom:927.183000px;}
.y1c{bottom:927.567000px;}
.y50{bottom:929.442000px;}
.y176{bottom:932.445000px;}
.y1c4{bottom:935.419500px;}
.yf1{bottom:935.959500px;}
.y80{bottom:936.348000px;}
.yaa{bottom:937.686000px;}
.y1a0{bottom:938.925000px;}
.y145{bottom:943.621500px;}
.y4f{bottom:945.880500px;}
.y112{bottom:946.209000px;}
.y175{bottom:948.883500px;}
.y1b{bottom:950.856000px;}
.y7f{bottom:952.786500px;}
.y19f{bottom:955.363500px;}
.y6{bottom:956.937000px;}
.ya9{bottom:958.608000px;}
.y1c3{bottom:960.823500px;}
.y4e{bottom:962.317500px;}
.yf0{bottom:964.200000px;}
.y5{bottom:968.893500px;}
.y7e{bottom:969.225000px;}
.y144{bottom:969.700500px;}
.y111{bottom:974.449500px;}
.y174{bottom:975.279000px;}
.y1c2{bottom:977.262000px;}
.y4d{bottom:978.756000px;}
.y4{bottom:980.848500px;}
.y19e{bottom:981.760500px;}
.y7d{bottom:985.663500px;}
.y143{bottom:986.139000px;}
.ya8{bottom:986.403000px;}
.y173{bottom:991.717500px;}
.y3{bottom:995.044500px;}
.y1a{bottom:995.091000px;}
.y4c{bottom:995.194500px;}
.y7c{bottom:1002.102000px;}
.y142{bottom:1002.577500px;}
.y1c1{bottom:1002.667500px;}
.y19d{bottom:1008.156000px;}
.y2{bottom:1009.242000px;}
.y4b{bottom:1011.633000px;}
.y172{bottom:1018.114500px;}
.y7b{bottom:1018.540500px;}
.y141{bottom:1019.014500px;}
.y1c0{bottom:1019.106000px;}
.y1{bottom:1023.438000px;}
.y4a{bottom:1028.071500px;}
.y19{bottom:1032.450000px;}
.y171{bottom:1034.551500px;}
.y7a{bottom:1034.979000px;}
.y140{bottom:1035.453000px;}
.y1bf{bottom:1035.543000px;}
.y49{bottom:1044.510000px;}
.y79{bottom:1051.417500px;}
.y13f{bottom:1051.891500px;}
.y48{bottom:1060.948500px;}
.y18{bottom:1069.810500px;}
.y47{bottom:1077.387000px;}
.ha{height:29.092728px;}
.h3{height:32.449091px;}
.h2{height:32.846598px;}
.h6{height:36.200194px;}
.h7{height:37.037055px;}
.h1{height:37.084875px;}
.hb{height:37.539171px;}
.hc{height:41.720659px;}
.hd{height:42.231744px;}
.h5{height:46.923846px;}
.h4{height:49.853184px;}
.h9{height:55.956417px;}
.he{height:56.308992px;}
.h8{height:93.848163px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:33.960000px;}
.x1{left:38.956500px;}
.xf{left:45.198000px;}
.xa{left:48.586500px;}
.x7{left:51.555000px;}
.x6{left:54.624000px;}
.x2{left:57.948000px;}
.xe{left:65.874000px;}
.x8{left:67.876500px;}
.x10{left:70.836000px;}
.x9{left:72.246000px;}
.xd{left:81.870000px;}
.xc{left:86.908500px;}
.x5{left:101.898000px;}
.x4{left:129.457500px;}
.xb{left:141.855000px;}
.x11{left:160.086000px;}
.x12{left:211.552500px;}
.x13{left:212.598000px;}
.x14{left:218.451000px;}
.x18{left:221.565000px;}
.x17{left:223.450500px;}
.x1b{left:240.874500px;}
.x16{left:276.339000px;}
.x19{left:281.844000px;}
.x1a{left:304.725000px;}
.x1c{left:795.490500px;}
.x15{left:803.290500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.188053pt;}
.ls2{letter-spacing:12.242125pt;}
.ws64{word-spacing:-13.761671pt;}
.ws4d{word-spacing:-13.283467pt;}
.ws72{word-spacing:-0.063761pt;}
.ws11{word-spacing:-0.053134pt;}
.ws6c{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.042507pt;}
.ws28{word-spacing:0.000000pt;}
.ws74{word-spacing:8.272998pt;}
.ws84{word-spacing:8.607744pt;}
.ws2e{word-spacing:8.703386pt;}
.ws44{word-spacing:8.990310pt;}
.ws25{word-spacing:9.181594pt;}
.ws82{word-spacing:9.229414pt;}
.ws6{word-spacing:9.266570pt;}
.ws81{word-spacing:9.277235pt;}
.ws2{word-spacing:9.484368pt;}
.ws59{word-spacing:9.659802pt;}
.ws70{word-spacing:9.707622pt;}
.ws8{word-spacing:9.904178pt;}
.wsa{word-spacing:9.946685pt;}
.ws5a{word-spacing:9.946726pt;}
.ws9{word-spacing:9.989192pt;}
.ws56{word-spacing:9.994547pt;}
.ws83{word-spacing:10.042368pt;}
.wsb{word-spacing:10.074206pt;}
.ws55{word-spacing:10.090189pt;}
.ws60{word-spacing:10.138010pt;}
.ws4a{word-spacing:10.185830pt;}
.ws77{word-spacing:10.281472pt;}
.wsf{word-spacing:10.286742pt;}
.wse{word-spacing:10.329250pt;}
.ws30{word-spacing:10.329293pt;}
.ws14{word-spacing:10.520576pt;}
.ws3f{word-spacing:10.616218pt;}
.ws7e{word-spacing:10.664038pt;}
.ws6e{word-spacing:10.711859pt;}
.ws27{word-spacing:10.759680pt;}
.ws0{word-spacing:10.839336pt;}
.ws2f{word-spacing:10.855322pt;}
.ws1{word-spacing:10.881843pt;}
.ws2a{word-spacing:10.903142pt;}
.ws7f{word-spacing:10.950963pt;}
.ws3{word-spacing:11.089006pt;}
.ws71{word-spacing:11.094426pt;}
.ws85{word-spacing:11.142246pt;}
.ws1d{word-spacing:11.190067pt;}
.ws65{word-spacing:11.237888pt;}
.ws67{word-spacing:11.333530pt;}
.ws6d{word-spacing:11.429171pt;}
.ws41{word-spacing:11.476992pt;}
.ws54{word-spacing:11.524813pt;}
.ws57{word-spacing:11.620454pt;}
.ws48{word-spacing:11.668275pt;}
.ws5d{word-spacing:11.716096pt;}
.ws3e{word-spacing:11.763917pt;}
.ws61{word-spacing:11.859558pt;}
.ws1f{word-spacing:11.907379pt;}
.ws29{word-spacing:11.955200pt;}
.ws1e{word-spacing:12.003021pt;}
.ws13{word-spacing:12.050842pt;}
.ws1b{word-spacing:12.098662pt;}
.ws15{word-spacing:12.146483pt;}
.ws18{word-spacing:12.194304pt;}
.ws21{word-spacing:12.242125pt;}
.ws20{word-spacing:12.289946pt;}
.ws17{word-spacing:12.337766pt;}
.ws63{word-spacing:12.380191pt;}
.ws12{word-spacing:12.385587pt;}
.ws16{word-spacing:12.433408pt;}
.ws47{word-spacing:12.481229pt;}
.ws7d{word-spacing:12.529050pt;}
.ws6b{word-spacing:12.576870pt;}
.ws33{word-spacing:12.624691pt;}
.ws51{word-spacing:12.672512pt;}
.ws37{word-spacing:12.720333pt;}
.ws22{word-spacing:12.768154pt;}
.ws2c{word-spacing:12.815974pt;}
.ws5{word-spacing:12.858396pt;}
.ws2b{word-spacing:12.863795pt;}
.ws35{word-spacing:12.911616pt;}
.ws5f{word-spacing:12.959437pt;}
.ws3a{word-spacing:13.007258pt;}
.ws73{word-spacing:13.055078pt;}
.ws26{word-spacing:13.102899pt;}
.ws4b{word-spacing:13.150720pt;}
.ws7a{word-spacing:13.198541pt;}
.ws46{word-spacing:13.246362pt;}
.ws32{word-spacing:13.294182pt;}
.ws7b{word-spacing:13.342003pt;}
.ws86{word-spacing:13.389824pt;}
.ws10{word-spacing:13.453585pt;}
.ws53{word-spacing:13.485466pt;}
.ws50{word-spacing:13.533286pt;}
.ws6a{word-spacing:13.676749pt;}
.ws1c{word-spacing:13.724570pt;}
.ws39{word-spacing:13.772390pt;}
.ws45{word-spacing:13.868032pt;}
.ws68{word-spacing:13.915853pt;}
.ws49{word-spacing:13.963674pt;}
.ws2d{word-spacing:14.011494pt;}
.ws4c{word-spacing:14.059315pt;}
.ws23{word-spacing:14.107136pt;}
.ws80{word-spacing:14.202778pt;}
.ws5b{word-spacing:14.250598pt;}
.ws7c{word-spacing:14.298419pt;}
.ws40{word-spacing:14.394061pt;}
.ws69{word-spacing:14.441882pt;}
.ws38{word-spacing:14.489702pt;}
.ws5e{word-spacing:14.680986pt;}
.ws24{word-spacing:14.776627pt;}
.ws4e{word-spacing:14.824448pt;}
.ws3c{word-spacing:14.872269pt;}
.ws34{word-spacing:15.015731pt;}
.ws52{word-spacing:15.063552pt;}
.ws4f{word-spacing:15.111373pt;}
.ws78{word-spacing:15.159194pt;}
.ws75{word-spacing:15.254835pt;}
.ws36{word-spacing:15.302656pt;}
.ws6f{word-spacing:15.350477pt;}
.ws42{word-spacing:15.398298pt;}
.ws3b{word-spacing:15.430178pt;}
.ws3d{word-spacing:15.541760pt;}
.ws62{word-spacing:15.589581pt;}
.ws43{word-spacing:15.685222pt;}
.ws4{word-spacing:15.876506pt;}
.ws31{word-spacing:16.163430pt;}
.ws5c{word-spacing:16.211251pt;}
.ws58{word-spacing:16.450355pt;}
.ws66{word-spacing:17.598054pt;}
.ws79{word-spacing:18.506650pt;}
.ws76{word-spacing:19.080499pt;}
.wsd{word-spacing:25.504384pt;}
.wsc{word-spacing:25.716921pt;}
.ws1a{word-spacing:31.816772pt;}
.ws19{word-spacing:47.772979pt;}
._6{margin-left:-11.391975pt;}
._49{margin-left:-6.599299pt;}
._2{margin-left:-5.653458pt;}
._5{margin-left:-4.675792pt;}
._3{margin-left:-3.188053pt;}
._0{margin-left:-2.125360pt;}
._1{margin-left:-1.190202pt;}
._8{width:1.445233pt;}
._e{width:10.228333pt;}
._4{width:11.349422pt;}
._4a{width:12.289932pt;}
._b{width:13.453571pt;}
._9{width:14.415306pt;}
._11{width:15.977437pt;}
._c{width:16.981674pt;}
._10{width:18.357855pt;}
._a{width:19.308954pt;}
._15{width:20.276019pt;}
._d{width:21.561862pt;}
._28{width:22.518278pt;}
._12{width:23.501257pt;}
._14{width:24.994310pt;}
._f{width:26.264214pt;}
._29{width:28.123920pt;}
._7{width:30.520238pt;}
._13{width:31.880533pt;}
._48{width:35.095149pt;}
._1b{width:63.144701pt;}
._32{width:64.069251pt;}
._47{width:78.112611pt;}
._22{width:88.633187pt;}
._46{width:89.876528pt;}
._1f{width:91.316483pt;}
._27{width:92.304765pt;}
._44{width:96.592698pt;}
._3f{width:103.367325pt;}
._45{width:105.301402pt;}
._25{width:113.260899pt;}
._1a{width:124.642250pt;}
._31{width:127.001398pt;}
._3b{width:129.334019pt;}
._1c{width:130.338256pt;}
._2c{width:132.049155pt;}
._40{width:148.053197pt;}
._1e{width:150.725830pt;}
._35{width:157.112573pt;}
._33{width:158.010534pt;}
._41{width:163.594957pt;}
._43{width:171.554454pt;}
._3d{width:176.432176pt;}
._23{width:179.041075pt;}
._39{width:182.138790pt;}
._26{width:188.839008pt;}
._42{width:190.422426pt;}
._17{width:199.274578pt;}
._19{width:204.168240pt;}
._3e{width:205.964186pt;}
._20{width:215.161719pt;}
._21{width:219.566538pt;}
._24{width:228.509027pt;}
._16{width:241.851030pt;}
._3c{width:250.134665pt;}
._1d{width:252.350362pt;}
._2b{width:267.753964pt;}
._37{width:272.323516pt;}
._2f{width:276.021658pt;}
._2e{width:288.550707pt;}
._34{width:310.500454pt;}
._30{width:314.326118pt;}
._2d{width:319.974277pt;}
._18{width:334.405536pt;}
._3a{width:345.840026pt;}
._2a{width:355.436066pt;}
._36{width:385.276245pt;}
._38{width:402.938061pt;}
.fs2{font-size:31.880533pt;}
.fs7{font-size:32.942933pt;}
.fs1{font-size:37.193600pt;}
.fs6{font-size:38.787733pt;}
.fs0{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:45.189333pt;}
.y17{bottom:85.040000pt;}
.y16{bottom:97.658667pt;}
.y46{bottom:99.650667pt;}
.y13e{bottom:100.742667pt;}
.y15{bottom:110.278667pt;}
.y45{bottom:114.262667pt;}
.y13d{bottom:115.354667pt;}
.y170{bottom:122.833333pt;}
.y14{bottom:122.897333pt;}
.y19c{bottom:123.114667pt;}
.y44{bottom:128.874667pt;}
.y13c{bottom:129.966667pt;}
.ya7{bottom:132.860000pt;}
.y1eb{bottom:134.098667pt;}
.y13{bottom:135.517333pt;}
.y16f{bottom:137.445333pt;}
.y19b{bottom:137.726667pt;}
.y43{bottom:143.486667pt;}
.y13b{bottom:144.578667pt;}
.y12{bottom:148.136000pt;}
.y1ea{bottom:148.710667pt;}
.y42{bottom:158.098667pt;}
.y16e{bottom:160.626667pt;}
.y11{bottom:160.756000pt;}
.y19a{bottom:161.189333pt;}
.y1e9{bottom:163.322667pt;}
.ya6{bottom:165.194667pt;}
.y13a{bottom:165.857333pt;}
.y41{bottom:172.710667pt;}
.y10{bottom:173.374667pt;}
.y16d{bottom:175.238667pt;}
.y199{bottom:175.801333pt;}
.ya5{bottom:179.806667pt;}
.y1e8{bottom:185.904000pt;}
.yf{bottom:185.994667pt;}
.y40{bottom:187.322667pt;}
.y16c{bottom:189.850667pt;}
.y139{bottom:190.961333pt;}
.ya4{bottom:194.417333pt;}
.ye{bottom:198.613333pt;}
.y198{bottom:199.265333pt;}
.y1e7{bottom:200.516000pt;}
.y3f{bottom:201.934667pt;}
.ya3{bottom:209.029333pt;}
.yd{bottom:211.233333pt;}
.y16b{bottom:212.512000pt;}
.y197{bottom:213.877333pt;}
.y3e{bottom:216.546667pt;}
.y1e6{bottom:223.098667pt;}
.y138{bottom:224.012000pt;}
.y1be{bottom:228.488000pt;}
.y77{bottom:231.158667pt;}
.yc{bottom:231.822667pt;}
.ya2{bottom:232.114667pt;}
.y196{bottom:237.340000pt;}
.y1e5{bottom:237.710667pt;}
.y137{bottom:238.624000pt;}
.yd0{bottom:238.737333pt;}
.y3d{bottom:241.253333pt;}
.y76{bottom:245.769333pt;}
.ya1{bottom:246.726667pt;}
.y16a{bottom:250.474667pt;}
.y195{bottom:251.952000pt;}
.yb{bottom:252.412000pt;}
.y136{bottom:253.236000pt;}
.ycf{bottom:253.349333pt;}
.y3c{bottom:255.865333pt;}
.y1e4{bottom:260.292000pt;}
.y75{bottom:260.381333pt;}
.ya0{bottom:261.337333pt;}
.y1bd{bottom:266.564000pt;}
.y135{bottom:267.848000pt;}
.yce{bottom:267.961333pt;}
.y169{bottom:269.072000pt;}
.y3b{bottom:270.477333pt;}
.ya{bottom:273.001333pt;}
.y1e3{bottom:274.904000pt;}
.y74{bottom:274.993333pt;}
.y194{bottom:275.414667pt;}
.y9f{bottom:275.949333pt;}
.y134{bottom:282.460000pt;}
.ycd{bottom:282.573333pt;}
.y3a{bottom:285.089333pt;}
.y9{bottom:285.620000pt;}
.y73{bottom:289.605333pt;}
.y193{bottom:290.026667pt;}
.y9e{bottom:290.561333pt;}
.y133{bottom:297.072000pt;}
.ycc{bottom:297.185333pt;}
.y1e2{bottom:297.486667pt;}
.y39{bottom:299.700000pt;}
.y168{bottom:301.649333pt;}
.y72{bottom:304.217333pt;}
.y1bc{bottom:304.638667pt;}
.y8{bottom:306.209333pt;}
.y132{bottom:311.684000pt;}
.ycb{bottom:311.797333pt;}
.y1e1{bottom:312.098667pt;}
.y192{bottom:313.490667pt;}
.y9d{bottom:313.645333pt;}
.y38{bottom:314.312000pt;}
.y167{bottom:316.261333pt;}
.yef{bottom:318.829333pt;}
.y1bb{bottom:319.250667pt;}
.y7{bottom:322.150667pt;}
.y131{bottom:326.296000pt;}
.yca{bottom:326.408000pt;}
.y71{bottom:327.212000pt;}
.y191{bottom:328.102667pt;}
.y9c{bottom:328.257333pt;}
.y37{bottom:328.924000pt;}
.y166{bottom:330.873333pt;}
.yee{bottom:333.441333pt;}
.y1e0{bottom:334.680000pt;}
.y130{bottom:340.908000pt;}
.yc9{bottom:341.020000pt;}
.y110{bottom:341.410667pt;}
.y70{bottom:341.824000pt;}
.y1ba{bottom:342.714667pt;}
.y9b{bottom:342.869333pt;}
.y36{bottom:343.536000pt;}
.y165{bottom:345.485333pt;}
.yed{bottom:348.053333pt;}
.y1df{bottom:349.292000pt;}
.y190{bottom:351.565333pt;}
.y12f{bottom:355.518667pt;}
.yc8{bottom:355.632000pt;}
.y10f{bottom:356.022667pt;}
.y6f{bottom:356.436000pt;}
.y1b9{bottom:357.325333pt;}
.y9a{bottom:357.481333pt;}
.y35{bottom:358.148000pt;}
.y164{bottom:360.096000pt;}
.yec{bottom:362.665333pt;}
.y18f{bottom:366.177333pt;}
.y12e{bottom:370.130667pt;}
.yc7{bottom:370.244000pt;}
.y10e{bottom:370.634667pt;}
.y6e{bottom:371.048000pt;}
.y1de{bottom:371.873333pt;}
.y99{bottom:372.093333pt;}
.y34{bottom:372.760000pt;}
.y163{bottom:374.708000pt;}
.yeb{bottom:377.277333pt;}
.y1b8{bottom:380.789333pt;}
.y12d{bottom:384.742667pt;}
.yc6{bottom:384.856000pt;}
.y10d{bottom:385.246667pt;}
.y6d{bottom:385.660000pt;}
.y1dd{bottom:386.485333pt;}
.y98{bottom:386.705333pt;}
.y33{bottom:387.372000pt;}
.y162{bottom:389.320000pt;}
.y18e{bottom:389.640000pt;}
.yea{bottom:391.889333pt;}
.y1b7{bottom:395.401333pt;}
.y10c{bottom:399.858667pt;}
.y6c{bottom:400.272000pt;}
.y32{bottom:401.984000pt;}
.y161{bottom:403.932000pt;}
.y18d{bottom:404.252000pt;}
.y97{bottom:405.302667pt;}
.yc5{bottom:406.136000pt;}
.ye9{bottom:406.500000pt;}
.y1dc{bottom:409.068000pt;}
.y12c{bottom:411.096000pt;}
.y10b{bottom:414.470667pt;}
.y6b{bottom:414.884000pt;}
.y31{bottom:416.596000pt;}
.y160{bottom:418.544000pt;}
.y1b6{bottom:418.864000pt;}
.ye8{bottom:421.112000pt;}
.y1db{bottom:423.680000pt;}
.y12b{bottom:425.708000pt;}
.y18c{bottom:427.716000pt;}
.y10a{bottom:429.082667pt;}
.y6a{bottom:429.496000pt;}
.y30{bottom:431.208000pt;}
.yc4{bottom:431.238667pt;}
.y15f{bottom:433.156000pt;}
.y1b5{bottom:433.476000pt;}
.ye7{bottom:435.724000pt;}
.y96{bottom:437.636000pt;}
.y1da{bottom:438.292000pt;}
.y12a{bottom:440.320000pt;}
.y18b{bottom:442.328000pt;}
.y109{bottom:443.694667pt;}
.y69{bottom:444.108000pt;}
.y2f{bottom:445.820000pt;}
.y15e{bottom:447.768000pt;}
.ye6{bottom:450.336000pt;}
.y95{bottom:452.248000pt;}
.y129{bottom:454.932000pt;}
.y1b4{bottom:456.940000pt;}
.y108{bottom:458.306667pt;}
.y68{bottom:458.718667pt;}
.yc3{bottom:460.094667pt;}
.y2e{bottom:460.430667pt;}
.y1d9{bottom:460.873333pt;}
.y15d{bottom:462.380000pt;}
.y18a{bottom:465.790667pt;}
.y94{bottom:466.860000pt;}
.y128{bottom:469.544000pt;}
.y1b3{bottom:471.552000pt;}
.y107{bottom:472.918667pt;}
.y67{bottom:473.330667pt;}
.yc2{bottom:474.706667pt;}
.y2d{bottom:475.042667pt;}
.y1d8{bottom:475.485333pt;}
.ye5{bottom:476.157333pt;}
.y15c{bottom:476.992000pt;}
.y189{bottom:480.402667pt;}
.y93{bottom:481.472000pt;}
.y127{bottom:484.156000pt;}
.y1b2{bottom:486.162667pt;}
.y106{bottom:487.530667pt;}
.y66{bottom:487.942667pt;}
.yc1{bottom:489.318667pt;}
.y2c{bottom:489.654667pt;}
.y1d7{bottom:490.097333pt;}
.ye4{bottom:490.769333pt;}
.y15b{bottom:491.604000pt;}
.y92{bottom:496.084000pt;}
.y126{bottom:498.768000pt;}
.y105{bottom:502.141333pt;}
.y65{bottom:502.554667pt;}
.y188{bottom:503.866667pt;}
.yc0{bottom:503.930667pt;}
.ye3{bottom:505.381333pt;}
.y15a{bottom:506.214667pt;}
.y1b1{bottom:509.626667pt;}
.y91{bottom:510.696000pt;}
.y2b{bottom:512.317333pt;}
.y1d6{bottom:512.678667pt;}
.y125{bottom:513.380000pt;}
.y104{bottom:516.753333pt;}
.y64{bottom:517.166667pt;}
.y187{bottom:518.478667pt;}
.ybf{bottom:518.541333pt;}
.ye2{bottom:519.993333pt;}
.y1b0{bottom:524.238667pt;}
.y1d5{bottom:527.290667pt;}
.y124{bottom:527.992000pt;}
.y90{bottom:529.293333pt;}
.y159{bottom:529.397333pt;}
.y103{bottom:531.365333pt;}
.y63{bottom:531.778667pt;}
.y186{bottom:533.089333pt;}
.ye1{bottom:534.605333pt;}
.y1af{bottom:538.850667pt;}
.ybe{bottom:541.261333pt;}
.y123{bottom:542.604000pt;}
.y158{bottom:544.009333pt;}
.y102{bottom:545.977333pt;}
.y62{bottom:546.390667pt;}
.ye0{bottom:549.217333pt;}
.y1d4{bottom:549.873333pt;}
.y2a{bottom:555.777333pt;}
.ybd{bottom:555.873333pt;}
.y185{bottom:556.553333pt;}
.y122{bottom:557.214667pt;}
.y157{bottom:558.621333pt;}
.y101{bottom:560.589333pt;}
.y61{bottom:561.002667pt;}
.y8f{bottom:561.626667pt;}
.y1ae{bottom:562.313333pt;}
.ydf{bottom:563.829333pt;}
.y1d3{bottom:564.485333pt;}
.ybc{bottom:570.485333pt;}
.y184{bottom:571.165333pt;}
.y121{bottom:571.826667pt;}
.y156{bottom:573.232000pt;}
.y8e{bottom:576.238667pt;}
.y1ad{bottom:576.925333pt;}
.yde{bottom:578.441333pt;}
.y1d2{bottom:579.097333pt;}
.y100{bottom:579.186667pt;}
.y60{bottom:583.997333pt;}
.ybb{bottom:585.097333pt;}
.y183{bottom:585.777333pt;}
.y120{bottom:586.438667pt;}
.y155{bottom:587.844000pt;}
.y29{bottom:590.578667pt;}
.y8d{bottom:590.850667pt;}
.ydd{bottom:593.053333pt;}
.y5f{bottom:598.609333pt;}
.yba{bottom:599.709333pt;}
.y182{bottom:600.389333pt;}
.y11f{bottom:601.050667pt;}
.y1d1{bottom:601.678667pt;}
.y154{bottom:602.456000pt;}
.y28{bottom:605.190667pt;}
.y8c{bottom:605.462667pt;}
.ydc{bottom:607.665333pt;}
.y5e{bottom:613.221333pt;}
.yb9{bottom:614.321333pt;}
.y1ac{bottom:615.000000pt;}
.y11e{bottom:615.662667pt;}
.y1d0{bottom:616.290667pt;}
.y153{bottom:617.068000pt;}
.y27{bottom:619.802667pt;}
.y8b{bottom:620.074667pt;}
.yff{bottom:620.730667pt;}
.ydb{bottom:622.276000pt;}
.y181{bottom:623.852000pt;}
.y5d{bottom:627.833333pt;}
.yb8{bottom:628.933333pt;}
.y1ab{bottom:629.612000pt;}
.y11d{bottom:630.274667pt;}
.y1cf{bottom:630.902667pt;}
.y152{bottom:631.680000pt;}
.y26{bottom:634.414667pt;}
.y8a{bottom:634.686667pt;}
.yfe{bottom:635.342667pt;}
.yda{bottom:636.888000pt;}
.y180{bottom:638.464000pt;}
.y5c{bottom:642.445333pt;}
.yb7{bottom:643.545333pt;}
.y11c{bottom:644.886667pt;}
.y151{bottom:646.292000pt;}
.y25{bottom:649.026667pt;}
.yfd{bottom:649.954667pt;}
.yd9{bottom:651.500000pt;}
.y1aa{bottom:653.076000pt;}
.y89{bottom:653.282667pt;}
.y1ce{bottom:653.484000pt;}
.y5b{bottom:657.056000pt;}
.yb6{bottom:658.156000pt;}
.y150{bottom:660.904000pt;}
.y17f{bottom:661.926667pt;}
.y11b{bottom:663.484000pt;}
.y24{bottom:663.638667pt;}
.yfc{bottom:664.566667pt;}
.yd8{bottom:666.112000pt;}
.y1a9{bottom:667.688000pt;}
.y1cd{bottom:668.096000pt;}
.y5a{bottom:671.668000pt;}
.yb5{bottom:672.768000pt;}
.y14f{bottom:675.516000pt;}
.y17e{bottom:676.538667pt;}
.y23{bottom:678.250667pt;}
.yfb{bottom:679.177333pt;}
.yd7{bottom:680.724000pt;}
.y1a8{bottom:682.300000pt;}
.y88{bottom:685.617333pt;}
.y59{bottom:686.280000pt;}
.yb4{bottom:687.380000pt;}
.y14e{bottom:690.128000pt;}
.y1cc{bottom:690.678667pt;}
.y22{bottom:692.862667pt;}
.yfa{bottom:693.789333pt;}
.yd6{bottom:695.336000pt;}
.y17d{bottom:700.002667pt;}
.y87{bottom:700.229333pt;}
.y58{bottom:700.892000pt;}
.yb3{bottom:701.992000pt;}
.y14d{bottom:704.740000pt;}
.y1cb{bottom:705.290667pt;}
.y1a7{bottom:705.762667pt;}
.y21{bottom:707.474667pt;}
.yf9{bottom:708.401333pt;}
.yd5{bottom:713.933333pt;}
.y17c{bottom:714.614667pt;}
.y86{bottom:714.841333pt;}
.y57{bottom:715.504000pt;}
.yb2{bottom:716.604000pt;}
.y11a{bottom:717.512000pt;}
.y1ca{bottom:719.902667pt;}
.y1a6{bottom:720.374667pt;}
.yf8{bottom:723.013333pt;}
.y20{bottom:725.541333pt;}
.y14c{bottom:727.921333pt;}
.y85{bottom:729.453333pt;}
.y56{bottom:730.116000pt;}
.yb1{bottom:731.216000pt;}
.y119{bottom:732.124000pt;}
.yf7{bottom:737.625333pt;}
.y17b{bottom:738.077333pt;}
.y1c9{bottom:742.484000pt;}
.y14b{bottom:742.533333pt;}
.y1a5{bottom:743.838667pt;}
.y55{bottom:744.728000pt;}
.yb0{bottom:745.828000pt;}
.y118{bottom:746.736000pt;}
.y84{bottom:750.706667pt;}
.yf6{bottom:752.237333pt;}
.y17a{bottom:752.689333pt;}
.yd4{bottom:753.110667pt;}
.y1c8{bottom:757.096000pt;}
.y14a{bottom:757.145333pt;}
.y1a4{bottom:758.449333pt;}
.y54{bottom:759.340000pt;}
.yaf{bottom:760.440000pt;}
.y117{bottom:761.348000pt;}
.yf5{bottom:766.849333pt;}
.yd3{bottom:767.722667pt;}
.y1f{bottom:770.086667pt;}
.y1a3{bottom:773.061333pt;}
.y53{bottom:773.952000pt;}
.yae{bottom:775.052000pt;}
.y116{bottom:775.960000pt;}
.y179{bottom:776.153333pt;}
.y1c7{bottom:779.677333pt;}
.y149{bottom:780.326667pt;}
.yf4{bottom:781.461333pt;}
.yd2{bottom:782.334667pt;}
.y83{bottom:788.474667pt;}
.y52{bottom:788.564000pt;}
.yad{bottom:789.664000pt;}
.y115{bottom:790.572000pt;}
.y178{bottom:790.764000pt;}
.y1c6{bottom:794.289333pt;}
.y148{bottom:794.938667pt;}
.yf3{bottom:796.073333pt;}
.y1a2{bottom:796.525333pt;}
.yd1{bottom:796.946667pt;}
.y82{bottom:803.085333pt;}
.yac{bottom:804.274667pt;}
.y114{bottom:805.184000pt;}
.y177{bottom:805.376000pt;}
.y1e{bottom:809.405333pt;}
.y147{bottom:809.550667pt;}
.yf2{bottom:810.685333pt;}
.y1a1{bottom:811.137333pt;}
.y51{bottom:811.558667pt;}
.y1c5{bottom:816.872000pt;}
.y81{bottom:817.697333pt;}
.yab{bottom:818.886667pt;}
.y113{bottom:819.796000pt;}
.y1d{bottom:820.646667pt;}
.y146{bottom:824.162667pt;}
.y1c{bottom:824.504000pt;}
.y50{bottom:826.170667pt;}
.y176{bottom:828.840000pt;}
.y1c4{bottom:831.484000pt;}
.yf1{bottom:831.964000pt;}
.y80{bottom:832.309333pt;}
.yaa{bottom:833.498667pt;}
.y1a0{bottom:834.600000pt;}
.y145{bottom:838.774667pt;}
.y4f{bottom:840.782667pt;}
.y112{bottom:841.074667pt;}
.y175{bottom:843.452000pt;}
.y1b{bottom:845.205333pt;}
.y7f{bottom:846.921333pt;}
.y19f{bottom:849.212000pt;}
.y6{bottom:850.610667pt;}
.ya9{bottom:852.096000pt;}
.y1c3{bottom:854.065333pt;}
.y4e{bottom:855.393333pt;}
.yf0{bottom:857.066667pt;}
.y5{bottom:861.238667pt;}
.y7e{bottom:861.533333pt;}
.y144{bottom:861.956000pt;}
.y111{bottom:866.177333pt;}
.y174{bottom:866.914667pt;}
.y1c2{bottom:868.677333pt;}
.y4d{bottom:870.005333pt;}
.y4{bottom:871.865333pt;}
.y19e{bottom:872.676000pt;}
.y7d{bottom:876.145333pt;}
.y143{bottom:876.568000pt;}
.ya8{bottom:876.802667pt;}
.y173{bottom:881.526667pt;}
.y3{bottom:884.484000pt;}
.y1a{bottom:884.525333pt;}
.y4c{bottom:884.617333pt;}
.y7c{bottom:890.757333pt;}
.y142{bottom:891.180000pt;}
.y1c1{bottom:891.260000pt;}
.y19d{bottom:896.138667pt;}
.y2{bottom:897.104000pt;}
.y4b{bottom:899.229333pt;}
.y172{bottom:904.990667pt;}
.y7b{bottom:905.369333pt;}
.y141{bottom:905.790667pt;}
.y1c0{bottom:905.872000pt;}
.y1{bottom:909.722667pt;}
.y4a{bottom:913.841333pt;}
.y19{bottom:917.733333pt;}
.y171{bottom:919.601333pt;}
.y7a{bottom:919.981333pt;}
.y140{bottom:920.402667pt;}
.y1bf{bottom:920.482667pt;}
.y49{bottom:928.453333pt;}
.y79{bottom:934.593333pt;}
.y13f{bottom:935.014667pt;}
.y48{bottom:943.065333pt;}
.y18{bottom:950.942667pt;}
.y47{bottom:957.677333pt;}
.ha{height:25.860203pt;}
.h3{height:28.843637pt;}
.h2{height:29.196976pt;}
.h6{height:32.177950pt;}
.h7{height:32.921826pt;}
.h1{height:32.964334pt;}
.hb{height:33.368152pt;}
.hc{height:37.085030pt;}
.hd{height:37.539328pt;}
.h5{height:41.710085pt;}
.h4{height:44.313941pt;}
.h9{height:49.739037pt;}
.he{height:50.052437pt;}
.h8{height:83.420589pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:30.186667pt;}
.x1{left:34.628000pt;}
.xf{left:40.176000pt;}
.xa{left:43.188000pt;}
.x7{left:45.826667pt;}
.x6{left:48.554667pt;}
.x2{left:51.509333pt;}
.xe{left:58.554667pt;}
.x8{left:60.334667pt;}
.x10{left:62.965333pt;}
.x9{left:64.218667pt;}
.xd{left:72.773333pt;}
.xc{left:77.252000pt;}
.x5{left:90.576000pt;}
.x4{left:115.073333pt;}
.xb{left:126.093333pt;}
.x11{left:142.298667pt;}
.x12{left:188.046667pt;}
.x13{left:188.976000pt;}
.x14{left:194.178667pt;}
.x18{left:196.946667pt;}
.x17{left:198.622667pt;}
.x1b{left:214.110667pt;}
.x16{left:245.634667pt;}
.x19{left:250.528000pt;}
.x1a{left:270.866667pt;}
.x1c{left:707.102667pt;}
.x15{left:714.036000pt;}
}




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