
    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_d8a2611f311c2416d5482dd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e8c3f849c8edeefb7611a2fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4c0f0632127ab10412239ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.212746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212746,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.213082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213082,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.215568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215568,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.222044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222044,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.224066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224066,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.225172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225172,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.225599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225599,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.233187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233187,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.234447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234447,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.235713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235713,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.235922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235922,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.236182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236182,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236807,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237048,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.237974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237974,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.239547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239547,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240346,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.242169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242169,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242254,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.242286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242286,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242312,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m25{transform:matrix(0.247204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247204,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,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);}
.m2{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:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:57.600000px;}
.v3{vertical-align:64.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.830200px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.wsb{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.500000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:34.704000px;}
.ws7{word-spacing:106.656000px;}
.ws4{word-spacing:109.542000px;}
.wsa{word-spacing:165.312000px;}
.ws8{word-spacing:194.640000px;}
.ws5{word-spacing:405.360000px;}
.ws6{word-spacing:808.656000px;}
._2e{margin-left:-8.328000px;}
._8{margin-left:-7.278000px;}
._3{margin-left:-6.102000px;}
._1{margin-left:-4.788000px;}
._4{margin-left:-3.444000px;}
._0{margin-left:-2.220000px;}
._7{margin-left:-1.188000px;}
._6{width:1.548000px;}
._2{width:2.628000px;}
._5{width:3.738000px;}
._11{width:4.854000px;}
._c{width:6.144000px;}
._b{width:7.269000px;}
._9{width:8.526000px;}
._e{width:9.876000px;}
._a{width:11.244000px;}
._22{width:12.282000px;}
._d{width:13.308000px;}
._17{width:16.638000px;}
._f{width:18.114000px;}
._2b{width:19.212000px;}
._13{width:20.268000px;}
._14{width:22.218000px;}
._15{width:23.466000px;}
._1b{width:24.996000px;}
._18{width:26.892000px;}
._1e{width:28.602000px;}
._1f{width:29.784000px;}
._21{width:31.188000px;}
._28{width:32.580000px;}
._2a{width:33.774000px;}
._30{width:34.926000px;}
._12{width:36.648000px;}
._10{width:37.836000px;}
._2d{width:39.468000px;}
._2c{width:40.980000px;}
._1c{width:42.300000px;}
._29{width:44.988000px;}
._1d{width:46.980000px;}
._20{width:48.000000px;}
._16{width:51.360000px;}
._2f{width:52.662000px;}
._31{width:55.917600px;}
._1a{width:56.938200px;}
._19{width:58.104000px;}
._24{width:139.968000px;}
._27{width:195.984000px;}
._25{width:424.752000px;}
._26{width:467.328000px;}
._23{width:575.976000px;}
.fc1{color:rgb(25,25,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y131{bottom:32.100000px;}
.y49{bottom:49.500000px;}
.y12e{bottom:62.100000px;}
.y48{bottom:69.900000px;}
.y1c7{bottom:72.600000px;}
.y12d{bottom:76.500000px;}
.y164{bottom:77.100000px;}
.y1f6{bottom:78.000000px;}
.yf3{bottom:85.200000px;}
.y1cc{bottom:87.000000px;}
.y1ef{bottom:87.300000px;}
.ycc{bottom:88.800000px;}
.y1a4{bottom:89.820000px;}
.ya9{bottom:90.600000px;}
.y12c{bottom:90.900000px;}
.y17f{bottom:94.200000px;}
.y163{bottom:95.100000px;}
.y1d0{bottom:96.000000px;}
.y1a8{bottom:98.820000px;}
.yf2{bottom:103.200000px;}
.y7e{bottom:104.100000px;}
.y1cb{bottom:105.000000px;}
.y12b{bottom:105.300000px;}
.ycb{bottom:106.800000px;}
.y1a3{bottom:107.820000px;}
.ya8{bottom:108.600000px;}
.y17e{bottom:112.200000px;}
.y162{bottom:113.100000px;}
.y1cf{bottom:114.000000px;}
.y1a7{bottom:116.820000px;}
.yf1{bottom:121.200000px;}
.y7d{bottom:122.100000px;}
.y1ca{bottom:123.000000px;}
.yca{bottom:124.800000px;}
.ya7{bottom:126.600000px;}
.y31{bottom:127.500000px;}
.y17d{bottom:130.200000px;}
.y161{bottom:131.100000px;}
.y1ce{bottom:132.000000px;}
.y1ee{bottom:132.300000px;}
.y47{bottom:132.900000px;}
.y12a{bottom:134.100000px;}
.y1a2{bottom:134.820000px;}
.yf0{bottom:139.200000px;}
.y7c{bottom:140.100000px;}
.y1c9{bottom:141.000000px;}
.yc9{bottom:142.800000px;}
.ya6{bottom:144.600000px;}
.y30{bottom:145.500000px;}
.y17c{bottom:148.200000px;}
.y129{bottom:148.500000px;}
.y160{bottom:149.100000px;}
.y1cd{bottom:150.000000px;}
.y1ed{bottom:150.300000px;}
.y46{bottom:150.900000px;}
.y1a1{bottom:152.820000px;}
.yef{bottom:157.200000px;}
.y7b{bottom:158.100000px;}
.y1c8{bottom:159.000000px;}
.yc8{bottom:160.800000px;}
.y128{bottom:162.900000px;}
.y2f{bottom:163.500000px;}
.y17b{bottom:166.200000px;}
.y15f{bottom:167.100000px;}
.y1f2{bottom:168.000000px;}
.y1ec{bottom:168.300000px;}
.y45{bottom:168.900000px;}
.y1a0{bottom:170.820000px;}
.y1c6{bottom:171.600000px;}
.y18d{bottom:175.200000px;}
.y7a{bottom:176.100000px;}
.ya5{bottom:177.000000px;}
.y127{bottom:177.300000px;}
.yc7{bottom:178.800000px;}
.y2e{bottom:181.500000px;}
.yee{bottom:184.200000px;}
.y15e{bottom:185.100000px;}
.y1f1{bottom:186.000000px;}
.y44{bottom:186.900000px;}
.y19f{bottom:188.820000px;}
.y1c5{bottom:189.600000px;}
.y18c{bottom:193.200000px;}
.y79{bottom:194.100000px;}
.ya4{bottom:195.000000px;}
.y1eb{bottom:195.300000px;}
.yc6{bottom:196.800000px;}
.y2d{bottom:199.500000px;}
.yed{bottom:202.200000px;}
.y15d{bottom:203.100000px;}
.y1f7{bottom:204.000000px;}
.y43{bottom:204.900000px;}
.y126{bottom:206.100000px;}
.y19e{bottom:206.820000px;}
.y1c4{bottom:207.600000px;}
.y18b{bottom:211.200000px;}
.ya3{bottom:213.000000px;}
.y1ea{bottom:213.300000px;}
.yc5{bottom:214.800000px;}
.y2c{bottom:217.500000px;}
.yec{bottom:220.200000px;}
.y125{bottom:220.500000px;}
.y170{bottom:221.100000px;}
.y1f5{bottom:222.000000px;}
.y42{bottom:222.900000px;}
.y19d{bottom:224.820000px;}
.y1c3{bottom:225.600000px;}
.y18a{bottom:229.200000px;}
.y15c{bottom:230.100000px;}
.ya2{bottom:231.000000px;}
.y1e9{bottom:231.300000px;}
.yc4{bottom:232.800000px;}
.y124{bottom:234.900000px;}
.y2b{bottom:235.500000px;}
.y78{bottom:236.100000px;}
.yeb{bottom:238.200000px;}
.y16f{bottom:239.100000px;}
.y1f4{bottom:240.000000px;}
.y41{bottom:240.900000px;}
.y19c{bottom:242.820000px;}
.y1c2{bottom:243.600000px;}
.y189{bottom:247.200000px;}
.y15b{bottom:248.100000px;}
.ya1{bottom:249.000000px;}
.y123{bottom:249.300000px;}
.yc3{bottom:250.800000px;}
.y77{bottom:252.300000px;}
.yea{bottom:256.200000px;}
.y16e{bottom:257.100000px;}
.y1f3{bottom:258.000000px;}
.y1e8{bottom:258.300000px;}
.y40{bottom:258.900000px;}
.y19b{bottom:260.820000px;}
.y1c1{bottom:261.600000px;}
.y2a{bottom:262.500000px;}
.y15a{bottom:266.100000px;}
.ya0{bottom:267.000000px;}
.y76{bottom:268.500000px;}
.yc2{bottom:268.800000px;}
.ye9{bottom:274.200000px;}
.y188{bottom:276.000000px;}
.y1e7{bottom:276.300000px;}
.y3f{bottom:276.900000px;}
.y122{bottom:278.100000px;}
.y19a{bottom:278.820000px;}
.y1c0{bottom:279.600000px;}
.y29{bottom:280.500000px;}
.y17a{bottom:283.200000px;}
.y159{bottom:284.100000px;}
.y75{bottom:284.700000px;}
.y9f{bottom:285.000000px;}
.yc1{bottom:286.800000px;}
.ye8{bottom:292.200000px;}
.y121{bottom:292.500000px;}
.y187{bottom:294.000000px;}
.y1e6{bottom:294.300000px;}
.y3e{bottom:294.900000px;}
.y199{bottom:296.820000px;}
.y1bf{bottom:297.600000px;}
.y28{bottom:298.500000px;}
.y74{bottom:300.900000px;}
.y179{bottom:301.200000px;}
.y158{bottom:302.100000px;}
.y9e{bottom:303.000000px;}
.yc0{bottom:304.800000px;}
.y120{bottom:306.900000px;}
.ye7{bottom:310.200000px;}
.y186{bottom:312.000000px;}
.y198{bottom:314.820000px;}
.y1be{bottom:315.600000px;}
.y27{bottom:316.500000px;}
.y73{bottom:317.100000px;}
.y178{bottom:319.200000px;}
.y157{bottom:320.100000px;}
.y9d{bottom:321.000000px;}
.y11f{bottom:321.300000px;}
.y3d{bottom:321.900000px;}
.ybf{bottom:322.800000px;}
.y1a6{bottom:323.820000px;}
.ye6{bottom:328.200000px;}
.y185{bottom:330.000000px;}
.y197{bottom:332.820000px;}
.y72{bottom:333.300000px;}
.y1bd{bottom:333.600000px;}
.y26{bottom:334.500000px;}
.y177{bottom:337.200000px;}
.y156{bottom:338.100000px;}
.y9c{bottom:339.000000px;}
.y1e5{bottom:339.300000px;}
.y3c{bottom:339.900000px;}
.ybe{bottom:340.800000px;}
.y1a5{bottom:341.820000px;}
.ye5{bottom:346.200000px;}
.y184{bottom:348.000000px;}
.y71{bottom:349.500000px;}
.y11e{bottom:350.100000px;}
.y1bc{bottom:351.600000px;}
.y25{bottom:352.500000px;}
.y176{bottom:355.200000px;}
.y155{bottom:356.100000px;}
.y9b{bottom:357.000000px;}
.y1e4{bottom:357.300000px;}
.y3b{bottom:357.900000px;}
.y196{bottom:359.820000px;}
.ye4{bottom:364.200000px;}
.y11d{bottom:364.500000px;}
.y70{bottom:365.700000px;}
.y183{bottom:366.000000px;}
.ybd{bottom:369.600000px;}
.y24{bottom:370.500000px;}
.y175{bottom:373.200000px;}
.y154{bottom:374.100000px;}
.y9a{bottom:375.000000px;}
.y1e3{bottom:375.300000px;}
.y3a{bottom:375.900000px;}
.y195{bottom:377.820000px;}
.y11c{bottom:378.900000px;}
.y6f{bottom:381.900000px;}
.ye3{bottom:382.200000px;}
.y182{bottom:384.000000px;}
.y1bb{bottom:387.600000px;}
.y23{bottom:388.500000px;}
.y174{bottom:391.200000px;}
.y153{bottom:392.100000px;}
.y99{bottom:393.000000px;}
.y11b{bottom:393.300000px;}
.y39{bottom:393.900000px;}
.y194{bottom:395.820000px;}
.y6e{bottom:398.100000px;}
.ye2{bottom:400.200000px;}
.ybc{bottom:402.000000px;}
.y1ba{bottom:405.600000px;}
.y22{bottom:406.500000px;}
.y173{bottom:409.200000px;}
.y152{bottom:410.100000px;}
.y98{bottom:411.000000px;}
.y1e2{bottom:411.300000px;}
.y38{bottom:411.900000px;}
.y193{bottom:413.820000px;}
.y6d{bottom:414.300000px;}
.ybb{bottom:420.000000px;}
.y11a{bottom:422.100000px;}
.y1b9{bottom:423.600000px;}
.y21{bottom:424.500000px;}
.ye1{bottom:427.200000px;}
.y151{bottom:428.100000px;}
.y97{bottom:429.000000px;}
.y37{bottom:429.900000px;}
.y6c{bottom:430.500000px;}
.y192{bottom:431.820000px;}
.y119{bottom:436.500000px;}
.yba{bottom:438.000000px;}
.y1b8{bottom:441.600000px;}
.y20{bottom:442.500000px;}
.ye0{bottom:445.200000px;}
.y150{bottom:446.100000px;}
.y6b{bottom:446.700000px;}
.y96{bottom:447.000000px;}
.y36{bottom:447.900000px;}
.y118{bottom:450.900000px;}
.y16d{bottom:455.100000px;}
.yb9{bottom:456.000000px;}
.y1b7{bottom:459.600000px;}
.y1e1{bottom:460.200000px;}
.y1f{bottom:460.500000px;}
.y6a{bottom:462.900000px;}
.ydf{bottom:463.200000px;}
.y14f{bottom:464.100000px;}
.y95{bottom:465.000000px;}
.y117{bottom:465.300000px;}
.y35{bottom:465.900000px;}
.y16c{bottom:473.100000px;}
.yb8{bottom:474.000000px;}
.y1b6{bottom:477.600000px;}
.y1e0{bottom:478.200000px;}
.y1e{bottom:478.500000px;}
.y69{bottom:479.100000px;}
.yde{bottom:481.200000px;}
.y14e{bottom:482.100000px;}
.y94{bottom:483.000000px;}
.y34{bottom:483.900000px;}
.y16b{bottom:491.100000px;}
.yb7{bottom:492.000000px;}
.y116{bottom:494.100000px;}
.y68{bottom:495.300000px;}
.y1b5{bottom:495.600000px;}
.y1df{bottom:496.200000px;}
.y1d{bottom:496.500000px;}
.ydd{bottom:499.200000px;}
.y93{bottom:501.000000px;}
.y33{bottom:501.900000px;}
.y115{bottom:508.500000px;}
.y14d{bottom:509.100000px;}
.yb6{bottom:510.000000px;}
.y67{bottom:511.500000px;}
.y1b4{bottom:513.600000px;}
.y1de{bottom:514.200000px;}
.y1c{bottom:514.500000px;}
.ydc{bottom:517.200000px;}
.y92{bottom:519.000000px;}
.y114{bottom:522.900000px;}
.y14c{bottom:527.100000px;}
.y66{bottom:527.700000px;}
.yb5{bottom:528.000000px;}
.y32{bottom:528.900000px;}
.y1b3{bottom:531.600000px;}
.y1dd{bottom:532.200000px;}
.ydb{bottom:535.200000px;}
.y91{bottom:537.000000px;}
.y113{bottom:537.300000px;}
.y65{bottom:543.900000px;}
.y14b{bottom:545.100000px;}
.yb4{bottom:546.000000px;}
.y1b{bottom:546.900000px;}
.y1b2{bottom:549.600000px;}
.y1dc{bottom:550.200000px;}
.yda{bottom:553.200000px;}
.y90{bottom:555.000000px;}
.y64{bottom:560.100000px;}
.y14a{bottom:563.100000px;}
.yb3{bottom:564.000000px;}
.y1a{bottom:564.900000px;}
.y112{bottom:566.100000px;}
.y1b1{bottom:567.600000px;}
.y1db{bottom:568.200000px;}
.yd9{bottom:571.200000px;}
.y8f{bottom:573.000000px;}
.y63{bottom:576.300000px;}
.y111{bottom:580.500000px;}
.y149{bottom:581.100000px;}
.yb2{bottom:582.000000px;}
.y19{bottom:582.900000px;}
.y1b0{bottom:585.600000px;}
.y1da{bottom:586.200000px;}
.yd8{bottom:589.200000px;}
.y181{bottom:591.000000px;}
.y62{bottom:592.500000px;}
.y110{bottom:594.900000px;}
.y148{bottom:599.100000px;}
.y8e{bottom:600.000000px;}
.y18{bottom:600.900000px;}
.y1af{bottom:603.600000px;}
.y1d9{bottom:604.200000px;}
.yd7{bottom:607.200000px;}
.y61{bottom:608.700000px;}
.yb1{bottom:609.000000px;}
.y10f{bottom:609.300000px;}
.y147{bottom:617.100000px;}
.y8d{bottom:618.000000px;}
.y17{bottom:618.900000px;}
.y1ae{bottom:621.600000px;}
.y1d8{bottom:622.200000px;}
.y10e{bottom:623.700000px;}
.y60{bottom:624.900000px;}
.yd6{bottom:625.200000px;}
.yb0{bottom:627.000000px;}
.y146{bottom:635.100000px;}
.y8c{bottom:636.000000px;}
.y16{bottom:636.900000px;}
.y12f{bottom:638.100000px;}
.y1ad{bottom:639.600000px;}
.y1d7{bottom:640.200000px;}
.yd5{bottom:643.200000px;}
.yaf{bottom:645.000000px;}
.y5f{bottom:645.600000px;}
.y10d{bottom:652.500000px;}
.y145{bottom:653.100000px;}
.y8b{bottom:654.000000px;}
.y1ac{bottom:657.600000px;}
.y1d6{bottom:658.200000px;}
.y5d{bottom:658.500000px;}
.yd4{bottom:661.200000px;}
.y5e{bottom:661.800000px;}
.y16a{bottom:662.100000px;}
.yae{bottom:663.000000px;}
.y10c{bottom:666.900000px;}
.y144{bottom:671.100000px;}
.y8a{bottom:672.000000px;}
.y1ab{bottom:675.600000px;}
.y1d5{bottom:676.200000px;}
.yd3{bottom:679.200000px;}
.y169{bottom:680.100000px;}
.yad{bottom:681.000000px;}
.y10b{bottom:681.300000px;}
.y15{bottom:686.400000px;}
.y143{bottom:689.100000px;}
.y89{bottom:690.000000px;}
.y1aa{bottom:693.600000px;}
.y1d4{bottom:694.200000px;}
.y5c{bottom:694.500000px;}
.y10a{bottom:695.700000px;}
.yd2{bottom:697.200000px;}
.y168{bottom:698.100000px;}
.yac{bottom:699.000000px;}
.y14{bottom:704.400000px;}
.y142{bottom:707.100000px;}
.y88{bottom:708.000000px;}
.y130{bottom:710.100000px;}
.y1a9{bottom:711.600000px;}
.y5b{bottom:712.500000px;}
.yd1{bottom:715.200000px;}
.y167{bottom:716.100000px;}
.yab{bottom:717.000000px;}
.y1d3{bottom:721.200000px;}
.y109{bottom:724.500000px;}
.y141{bottom:725.100000px;}
.y87{bottom:726.000000px;}
.y13{bottom:731.400000px;}
.yd0{bottom:733.200000px;}
.y166{bottom:734.100000px;}
.yaa{bottom:735.000000px;}
.y108{bottom:738.900000px;}
.y140{bottom:743.100000px;}
.y86{bottom:744.000000px;}
.y12{bottom:749.400000px;}
.y165{bottom:752.100000px;}
.y5a{bottom:753.000000px;}
.y107{bottom:753.300000px;}
.y13f{bottom:761.100000px;}
.y85{bottom:762.000000px;}
.y11{bottom:767.400000px;}
.y106{bottom:767.700000px;}
.y1d2{bottom:769.200000px;}
.y59{bottom:771.000000px;}
.y13e{bottom:779.100000px;}
.ycf{bottom:780.000000px;}
.y105{bottom:782.100000px;}
.y10{bottom:785.400000px;}
.y1d1{bottom:787.200000px;}
.y58{bottom:789.000000px;}
.y104{bottom:796.500000px;}
.y13d{bottom:797.100000px;}
.yce{bottom:798.000000px;}
.yf{bottom:803.400000px;}
.y57{bottom:807.000000px;}
.y103{bottom:810.900000px;}
.y13c{bottom:815.100000px;}
.ycd{bottom:816.000000px;}
.ye{bottom:821.400000px;}
.y56{bottom:825.000000px;}
.y102{bottom:825.300000px;}
.y13b{bottom:833.100000px;}
.y84{bottom:834.000000px;}
.yd{bottom:839.400000px;}
.y101{bottom:839.700000px;}
.y55{bottom:843.000000px;}
.y83{bottom:852.000000px;}
.y100{bottom:854.100000px;}
.yc{bottom:857.400000px;}
.y54{bottom:861.000000px;}
.yff{bottom:868.500000px;}
.y82{bottom:870.000000px;}
.yb{bottom:875.400000px;}
.y53{bottom:879.000000px;}
.yfe{bottom:882.900000px;}
.y172{bottom:888.000000px;}
.y13a{bottom:890.100000px;}
.ya{bottom:893.400000px;}
.y52{bottom:897.000000px;}
.yfd{bottom:897.300000px;}
.y139{bottom:904.500000px;}
.y171{bottom:906.000000px;}
.y9{bottom:911.400000px;}
.yfc{bottom:911.700000px;}
.y51{bottom:915.000000px;}
.y138{bottom:918.900000px;}
.y180{bottom:924.000000px;}
.yfb{bottom:926.100000px;}
.y50{bottom:933.000000px;}
.y137{bottom:933.300000px;}
.yfa{bottom:940.500000px;}
.y81{bottom:942.000000px;}
.y191{bottom:943.500000px;}
.y136{bottom:947.700000px;}
.y4f{bottom:951.000000px;}
.yf9{bottom:954.900000px;}
.y8{bottom:959.400000px;}
.y80{bottom:960.000000px;}
.y190{bottom:961.500000px;}
.y4e{bottom:969.000000px;}
.yf8{bottom:973.800000px;}
.y135{bottom:976.500000px;}
.y7f{bottom:978.000000px;}
.y18f{bottom:979.500000px;}
.y7{bottom:986.400000px;}
.y4d{bottom:987.000000px;}
.yf7{bottom:988.200000px;}
.y134{bottom:990.900000px;}
.y1f0{bottom:996.000000px;}
.yf5{bottom:997.500000px;}
.yf6{bottom:1002.600000px;}
.y4c{bottom:1005.000000px;}
.y6{bottom:1015.200000px;}
.y18e{bottom:1015.500000px;}
.y133{bottom:1019.700000px;}
.y4b{bottom:1023.000000px;}
.yf4{bottom:1033.500000px;}
.y132{bottom:1034.100000px;}
.y4a{bottom:1041.000000px;}
.y5{bottom:1044.000000px;}
.y4{bottom:1091.400000px;}
.y3{bottom:1105.800000px;}
.y2{bottom:1120.200000px;}
.y1{bottom:1134.600000px;}
.h8{height:29.443359px;}
.h1{height:47.109375px;}
.h2{height:48.375000px;}
.ha{height:52.998047px;}
.h9{height:53.443359px;}
.h3{height:58.857422px;}
.h6{height:58.886719px;}
.hd{height:59.314453px;}
.h7{height:60.468750px;}
.h5{height:71.085938px;}
.h4{height:96.750000px;}
.hc{height:104.709375px;}
.hb{height:117.798047px;}
.h0{height:1186.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x2{left:110.160000px;}
.x16{left:118.920000px;}
.xe{left:156.000000px;}
.x6{left:183.000000px;}
.x15{left:189.315000px;}
.x9{left:199.830000px;}
.x2b{left:223.065000px;}
.x18{left:231.825000px;}
.x24{left:240.570000px;}
.x20{left:248.055000px;}
.x29{left:263.475000px;}
.x17{left:275.190000px;}
.x1a{left:281.835000px;}
.x1b{left:290.160000px;}
.x14{left:298.905000px;}
.x2a{left:303.900000px;}
.x2c{left:305.985000px;}
.x21{left:318.870000px;}
.x19{left:320.595000px;}
.xf{left:382.500000px;}
.x22{left:388.320000px;}
.xa{left:396.168000px;}
.x23{left:401.400000px;}
.xb{left:465.000000px;}
.x3{left:472.500000px;}
.x7{left:487.500000px;}
.x8{left:502.500000px;}
.x30{left:554.160000px;}
.x12{left:561.660000px;}
.x13{left:584.160000px;}
.x5{left:593.004000px;}
.x10{left:609.000000px;}
.x1f{left:635.250000px;}
.x2d{left:646.620000px;}
.xd{left:648.426000px;}
.x27{left:654.975000px;}
.x1e{left:664.560000px;}
.x1c{left:678.720000px;}
.x2f{left:691.230000px;}
.x4{left:696.348000px;}
.xc{left:702.414000px;}
.x25{left:712.470000px;}
.x26{left:721.620000px;}
.x1d{left:731.235000px;}
.x28{left:755.535000px;}
.x11{left:762.000000px;}
.x2e{left:774.105000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:51.200000pt;}
.v3{vertical-align:57.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.849067pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.wsb{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.666667pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:30.848000pt;}
.ws7{word-spacing:94.805333pt;}
.ws4{word-spacing:97.370667pt;}
.wsa{word-spacing:146.944000pt;}
.ws8{word-spacing:173.013333pt;}
.ws5{word-spacing:360.320000pt;}
.ws6{word-spacing:718.805333pt;}
._2e{margin-left:-7.402667pt;}
._8{margin-left:-6.469333pt;}
._3{margin-left:-5.424000pt;}
._1{margin-left:-4.256000pt;}
._4{margin-left:-3.061333pt;}
._0{margin-left:-1.973333pt;}
._7{margin-left:-1.056000pt;}
._6{width:1.376000pt;}
._2{width:2.336000pt;}
._5{width:3.322667pt;}
._11{width:4.314667pt;}
._c{width:5.461333pt;}
._b{width:6.461333pt;}
._9{width:7.578667pt;}
._e{width:8.778667pt;}
._a{width:9.994667pt;}
._22{width:10.917333pt;}
._d{width:11.829333pt;}
._17{width:14.789333pt;}
._f{width:16.101333pt;}
._2b{width:17.077333pt;}
._13{width:18.016000pt;}
._14{width:19.749333pt;}
._15{width:20.858667pt;}
._1b{width:22.218667pt;}
._18{width:23.904000pt;}
._1e{width:25.424000pt;}
._1f{width:26.474667pt;}
._21{width:27.722667pt;}
._28{width:28.960000pt;}
._2a{width:30.021333pt;}
._30{width:31.045333pt;}
._12{width:32.576000pt;}
._10{width:33.632000pt;}
._2d{width:35.082667pt;}
._2c{width:36.426667pt;}
._1c{width:37.600000pt;}
._29{width:39.989333pt;}
._1d{width:41.760000pt;}
._20{width:42.666667pt;}
._16{width:45.653333pt;}
._2f{width:46.810667pt;}
._31{width:49.704533pt;}
._1a{width:50.611733pt;}
._19{width:51.648000pt;}
._24{width:124.416000pt;}
._27{width:174.208000pt;}
._25{width:377.557333pt;}
._26{width:415.402667pt;}
._23{width:511.978667pt;}
.fs3{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:28.533333pt;}
.y49{bottom:44.000000pt;}
.y12e{bottom:55.200000pt;}
.y48{bottom:62.133333pt;}
.y1c7{bottom:64.533333pt;}
.y12d{bottom:68.000000pt;}
.y164{bottom:68.533333pt;}
.y1f6{bottom:69.333333pt;}
.yf3{bottom:75.733333pt;}
.y1cc{bottom:77.333333pt;}
.y1ef{bottom:77.600000pt;}
.ycc{bottom:78.933333pt;}
.y1a4{bottom:79.840000pt;}
.ya9{bottom:80.533333pt;}
.y12c{bottom:80.800000pt;}
.y17f{bottom:83.733333pt;}
.y163{bottom:84.533333pt;}
.y1d0{bottom:85.333333pt;}
.y1a8{bottom:87.840000pt;}
.yf2{bottom:91.733333pt;}
.y7e{bottom:92.533333pt;}
.y1cb{bottom:93.333333pt;}
.y12b{bottom:93.600000pt;}
.ycb{bottom:94.933333pt;}
.y1a3{bottom:95.840000pt;}
.ya8{bottom:96.533333pt;}
.y17e{bottom:99.733333pt;}
.y162{bottom:100.533333pt;}
.y1cf{bottom:101.333333pt;}
.y1a7{bottom:103.840000pt;}
.yf1{bottom:107.733333pt;}
.y7d{bottom:108.533333pt;}
.y1ca{bottom:109.333333pt;}
.yca{bottom:110.933333pt;}
.ya7{bottom:112.533333pt;}
.y31{bottom:113.333333pt;}
.y17d{bottom:115.733333pt;}
.y161{bottom:116.533333pt;}
.y1ce{bottom:117.333333pt;}
.y1ee{bottom:117.600000pt;}
.y47{bottom:118.133333pt;}
.y12a{bottom:119.200000pt;}
.y1a2{bottom:119.840000pt;}
.yf0{bottom:123.733333pt;}
.y7c{bottom:124.533333pt;}
.y1c9{bottom:125.333333pt;}
.yc9{bottom:126.933333pt;}
.ya6{bottom:128.533333pt;}
.y30{bottom:129.333333pt;}
.y17c{bottom:131.733333pt;}
.y129{bottom:132.000000pt;}
.y160{bottom:132.533333pt;}
.y1cd{bottom:133.333333pt;}
.y1ed{bottom:133.600000pt;}
.y46{bottom:134.133333pt;}
.y1a1{bottom:135.840000pt;}
.yef{bottom:139.733333pt;}
.y7b{bottom:140.533333pt;}
.y1c8{bottom:141.333333pt;}
.yc8{bottom:142.933333pt;}
.y128{bottom:144.800000pt;}
.y2f{bottom:145.333333pt;}
.y17b{bottom:147.733333pt;}
.y15f{bottom:148.533333pt;}
.y1f2{bottom:149.333333pt;}
.y1ec{bottom:149.600000pt;}
.y45{bottom:150.133333pt;}
.y1a0{bottom:151.840000pt;}
.y1c6{bottom:152.533333pt;}
.y18d{bottom:155.733333pt;}
.y7a{bottom:156.533333pt;}
.ya5{bottom:157.333333pt;}
.y127{bottom:157.600000pt;}
.yc7{bottom:158.933333pt;}
.y2e{bottom:161.333333pt;}
.yee{bottom:163.733333pt;}
.y15e{bottom:164.533333pt;}
.y1f1{bottom:165.333333pt;}
.y44{bottom:166.133333pt;}
.y19f{bottom:167.840000pt;}
.y1c5{bottom:168.533333pt;}
.y18c{bottom:171.733333pt;}
.y79{bottom:172.533333pt;}
.ya4{bottom:173.333333pt;}
.y1eb{bottom:173.600000pt;}
.yc6{bottom:174.933333pt;}
.y2d{bottom:177.333333pt;}
.yed{bottom:179.733333pt;}
.y15d{bottom:180.533333pt;}
.y1f7{bottom:181.333333pt;}
.y43{bottom:182.133333pt;}
.y126{bottom:183.200000pt;}
.y19e{bottom:183.840000pt;}
.y1c4{bottom:184.533333pt;}
.y18b{bottom:187.733333pt;}
.ya3{bottom:189.333333pt;}
.y1ea{bottom:189.600000pt;}
.yc5{bottom:190.933333pt;}
.y2c{bottom:193.333333pt;}
.yec{bottom:195.733333pt;}
.y125{bottom:196.000000pt;}
.y170{bottom:196.533333pt;}
.y1f5{bottom:197.333333pt;}
.y42{bottom:198.133333pt;}
.y19d{bottom:199.840000pt;}
.y1c3{bottom:200.533333pt;}
.y18a{bottom:203.733333pt;}
.y15c{bottom:204.533333pt;}
.ya2{bottom:205.333333pt;}
.y1e9{bottom:205.600000pt;}
.yc4{bottom:206.933333pt;}
.y124{bottom:208.800000pt;}
.y2b{bottom:209.333333pt;}
.y78{bottom:209.866667pt;}
.yeb{bottom:211.733333pt;}
.y16f{bottom:212.533333pt;}
.y1f4{bottom:213.333333pt;}
.y41{bottom:214.133333pt;}
.y19c{bottom:215.840000pt;}
.y1c2{bottom:216.533333pt;}
.y189{bottom:219.733333pt;}
.y15b{bottom:220.533333pt;}
.ya1{bottom:221.333333pt;}
.y123{bottom:221.600000pt;}
.yc3{bottom:222.933333pt;}
.y77{bottom:224.266667pt;}
.yea{bottom:227.733333pt;}
.y16e{bottom:228.533333pt;}
.y1f3{bottom:229.333333pt;}
.y1e8{bottom:229.600000pt;}
.y40{bottom:230.133333pt;}
.y19b{bottom:231.840000pt;}
.y1c1{bottom:232.533333pt;}
.y2a{bottom:233.333333pt;}
.y15a{bottom:236.533333pt;}
.ya0{bottom:237.333333pt;}
.y76{bottom:238.666667pt;}
.yc2{bottom:238.933333pt;}
.ye9{bottom:243.733333pt;}
.y188{bottom:245.333333pt;}
.y1e7{bottom:245.600000pt;}
.y3f{bottom:246.133333pt;}
.y122{bottom:247.200000pt;}
.y19a{bottom:247.840000pt;}
.y1c0{bottom:248.533333pt;}
.y29{bottom:249.333333pt;}
.y17a{bottom:251.733333pt;}
.y159{bottom:252.533333pt;}
.y75{bottom:253.066667pt;}
.y9f{bottom:253.333333pt;}
.yc1{bottom:254.933333pt;}
.ye8{bottom:259.733333pt;}
.y121{bottom:260.000000pt;}
.y187{bottom:261.333333pt;}
.y1e6{bottom:261.600000pt;}
.y3e{bottom:262.133333pt;}
.y199{bottom:263.840000pt;}
.y1bf{bottom:264.533333pt;}
.y28{bottom:265.333333pt;}
.y74{bottom:267.466667pt;}
.y179{bottom:267.733333pt;}
.y158{bottom:268.533333pt;}
.y9e{bottom:269.333333pt;}
.yc0{bottom:270.933333pt;}
.y120{bottom:272.800000pt;}
.ye7{bottom:275.733333pt;}
.y186{bottom:277.333333pt;}
.y198{bottom:279.840000pt;}
.y1be{bottom:280.533333pt;}
.y27{bottom:281.333333pt;}
.y73{bottom:281.866667pt;}
.y178{bottom:283.733333pt;}
.y157{bottom:284.533333pt;}
.y9d{bottom:285.333333pt;}
.y11f{bottom:285.600000pt;}
.y3d{bottom:286.133333pt;}
.ybf{bottom:286.933333pt;}
.y1a6{bottom:287.840000pt;}
.ye6{bottom:291.733333pt;}
.y185{bottom:293.333333pt;}
.y197{bottom:295.840000pt;}
.y72{bottom:296.266667pt;}
.y1bd{bottom:296.533333pt;}
.y26{bottom:297.333333pt;}
.y177{bottom:299.733333pt;}
.y156{bottom:300.533333pt;}
.y9c{bottom:301.333333pt;}
.y1e5{bottom:301.600000pt;}
.y3c{bottom:302.133333pt;}
.ybe{bottom:302.933333pt;}
.y1a5{bottom:303.840000pt;}
.ye5{bottom:307.733333pt;}
.y184{bottom:309.333333pt;}
.y71{bottom:310.666667pt;}
.y11e{bottom:311.200000pt;}
.y1bc{bottom:312.533333pt;}
.y25{bottom:313.333333pt;}
.y176{bottom:315.733333pt;}
.y155{bottom:316.533333pt;}
.y9b{bottom:317.333333pt;}
.y1e4{bottom:317.600000pt;}
.y3b{bottom:318.133333pt;}
.y196{bottom:319.840000pt;}
.ye4{bottom:323.733333pt;}
.y11d{bottom:324.000000pt;}
.y70{bottom:325.066667pt;}
.y183{bottom:325.333333pt;}
.ybd{bottom:328.533333pt;}
.y24{bottom:329.333333pt;}
.y175{bottom:331.733333pt;}
.y154{bottom:332.533333pt;}
.y9a{bottom:333.333333pt;}
.y1e3{bottom:333.600000pt;}
.y3a{bottom:334.133333pt;}
.y195{bottom:335.840000pt;}
.y11c{bottom:336.800000pt;}
.y6f{bottom:339.466667pt;}
.ye3{bottom:339.733333pt;}
.y182{bottom:341.333333pt;}
.y1bb{bottom:344.533333pt;}
.y23{bottom:345.333333pt;}
.y174{bottom:347.733333pt;}
.y153{bottom:348.533333pt;}
.y99{bottom:349.333333pt;}
.y11b{bottom:349.600000pt;}
.y39{bottom:350.133333pt;}
.y194{bottom:351.840000pt;}
.y6e{bottom:353.866667pt;}
.ye2{bottom:355.733333pt;}
.ybc{bottom:357.333333pt;}
.y1ba{bottom:360.533333pt;}
.y22{bottom:361.333333pt;}
.y173{bottom:363.733333pt;}
.y152{bottom:364.533333pt;}
.y98{bottom:365.333333pt;}
.y1e2{bottom:365.600000pt;}
.y38{bottom:366.133333pt;}
.y193{bottom:367.840000pt;}
.y6d{bottom:368.266667pt;}
.ybb{bottom:373.333333pt;}
.y11a{bottom:375.200000pt;}
.y1b9{bottom:376.533333pt;}
.y21{bottom:377.333333pt;}
.ye1{bottom:379.733333pt;}
.y151{bottom:380.533333pt;}
.y97{bottom:381.333333pt;}
.y37{bottom:382.133333pt;}
.y6c{bottom:382.666667pt;}
.y192{bottom:383.840000pt;}
.y119{bottom:388.000000pt;}
.yba{bottom:389.333333pt;}
.y1b8{bottom:392.533333pt;}
.y20{bottom:393.333333pt;}
.ye0{bottom:395.733333pt;}
.y150{bottom:396.533333pt;}
.y6b{bottom:397.066667pt;}
.y96{bottom:397.333333pt;}
.y36{bottom:398.133333pt;}
.y118{bottom:400.800000pt;}
.y16d{bottom:404.533333pt;}
.yb9{bottom:405.333333pt;}
.y1b7{bottom:408.533333pt;}
.y1e1{bottom:409.066667pt;}
.y1f{bottom:409.333333pt;}
.y6a{bottom:411.466667pt;}
.ydf{bottom:411.733333pt;}
.y14f{bottom:412.533333pt;}
.y95{bottom:413.333333pt;}
.y117{bottom:413.600000pt;}
.y35{bottom:414.133333pt;}
.y16c{bottom:420.533333pt;}
.yb8{bottom:421.333333pt;}
.y1b6{bottom:424.533333pt;}
.y1e0{bottom:425.066667pt;}
.y1e{bottom:425.333333pt;}
.y69{bottom:425.866667pt;}
.yde{bottom:427.733333pt;}
.y14e{bottom:428.533333pt;}
.y94{bottom:429.333333pt;}
.y34{bottom:430.133333pt;}
.y16b{bottom:436.533333pt;}
.yb7{bottom:437.333333pt;}
.y116{bottom:439.200000pt;}
.y68{bottom:440.266667pt;}
.y1b5{bottom:440.533333pt;}
.y1df{bottom:441.066667pt;}
.y1d{bottom:441.333333pt;}
.ydd{bottom:443.733333pt;}
.y93{bottom:445.333333pt;}
.y33{bottom:446.133333pt;}
.y115{bottom:452.000000pt;}
.y14d{bottom:452.533333pt;}
.yb6{bottom:453.333333pt;}
.y67{bottom:454.666667pt;}
.y1b4{bottom:456.533333pt;}
.y1de{bottom:457.066667pt;}
.y1c{bottom:457.333333pt;}
.ydc{bottom:459.733333pt;}
.y92{bottom:461.333333pt;}
.y114{bottom:464.800000pt;}
.y14c{bottom:468.533333pt;}
.y66{bottom:469.066667pt;}
.yb5{bottom:469.333333pt;}
.y32{bottom:470.133333pt;}
.y1b3{bottom:472.533333pt;}
.y1dd{bottom:473.066667pt;}
.ydb{bottom:475.733333pt;}
.y91{bottom:477.333333pt;}
.y113{bottom:477.600000pt;}
.y65{bottom:483.466667pt;}
.y14b{bottom:484.533333pt;}
.yb4{bottom:485.333333pt;}
.y1b{bottom:486.133333pt;}
.y1b2{bottom:488.533333pt;}
.y1dc{bottom:489.066667pt;}
.yda{bottom:491.733333pt;}
.y90{bottom:493.333333pt;}
.y64{bottom:497.866667pt;}
.y14a{bottom:500.533333pt;}
.yb3{bottom:501.333333pt;}
.y1a{bottom:502.133333pt;}
.y112{bottom:503.200000pt;}
.y1b1{bottom:504.533333pt;}
.y1db{bottom:505.066667pt;}
.yd9{bottom:507.733333pt;}
.y8f{bottom:509.333333pt;}
.y63{bottom:512.266667pt;}
.y111{bottom:516.000000pt;}
.y149{bottom:516.533333pt;}
.yb2{bottom:517.333333pt;}
.y19{bottom:518.133333pt;}
.y1b0{bottom:520.533333pt;}
.y1da{bottom:521.066667pt;}
.yd8{bottom:523.733333pt;}
.y181{bottom:525.333333pt;}
.y62{bottom:526.666667pt;}
.y110{bottom:528.800000pt;}
.y148{bottom:532.533333pt;}
.y8e{bottom:533.333333pt;}
.y18{bottom:534.133333pt;}
.y1af{bottom:536.533333pt;}
.y1d9{bottom:537.066667pt;}
.yd7{bottom:539.733333pt;}
.y61{bottom:541.066667pt;}
.yb1{bottom:541.333333pt;}
.y10f{bottom:541.600000pt;}
.y147{bottom:548.533333pt;}
.y8d{bottom:549.333333pt;}
.y17{bottom:550.133333pt;}
.y1ae{bottom:552.533333pt;}
.y1d8{bottom:553.066667pt;}
.y10e{bottom:554.400000pt;}
.y60{bottom:555.466667pt;}
.yd6{bottom:555.733333pt;}
.yb0{bottom:557.333333pt;}
.y146{bottom:564.533333pt;}
.y8c{bottom:565.333333pt;}
.y16{bottom:566.133333pt;}
.y12f{bottom:567.200000pt;}
.y1ad{bottom:568.533333pt;}
.y1d7{bottom:569.066667pt;}
.yd5{bottom:571.733333pt;}
.yaf{bottom:573.333333pt;}
.y5f{bottom:573.866667pt;}
.y10d{bottom:580.000000pt;}
.y145{bottom:580.533333pt;}
.y8b{bottom:581.333333pt;}
.y1ac{bottom:584.533333pt;}
.y1d6{bottom:585.066667pt;}
.y5d{bottom:585.333333pt;}
.yd4{bottom:587.733333pt;}
.y5e{bottom:588.266667pt;}
.y16a{bottom:588.533333pt;}
.yae{bottom:589.333333pt;}
.y10c{bottom:592.800000pt;}
.y144{bottom:596.533333pt;}
.y8a{bottom:597.333333pt;}
.y1ab{bottom:600.533333pt;}
.y1d5{bottom:601.066667pt;}
.yd3{bottom:603.733333pt;}
.y169{bottom:604.533333pt;}
.yad{bottom:605.333333pt;}
.y10b{bottom:605.600000pt;}
.y15{bottom:610.133333pt;}
.y143{bottom:612.533333pt;}
.y89{bottom:613.333333pt;}
.y1aa{bottom:616.533333pt;}
.y1d4{bottom:617.066667pt;}
.y5c{bottom:617.333333pt;}
.y10a{bottom:618.400000pt;}
.yd2{bottom:619.733333pt;}
.y168{bottom:620.533333pt;}
.yac{bottom:621.333333pt;}
.y14{bottom:626.133333pt;}
.y142{bottom:628.533333pt;}
.y88{bottom:629.333333pt;}
.y130{bottom:631.200000pt;}
.y1a9{bottom:632.533333pt;}
.y5b{bottom:633.333333pt;}
.yd1{bottom:635.733333pt;}
.y167{bottom:636.533333pt;}
.yab{bottom:637.333333pt;}
.y1d3{bottom:641.066667pt;}
.y109{bottom:644.000000pt;}
.y141{bottom:644.533333pt;}
.y87{bottom:645.333333pt;}
.y13{bottom:650.133333pt;}
.yd0{bottom:651.733333pt;}
.y166{bottom:652.533333pt;}
.yaa{bottom:653.333333pt;}
.y108{bottom:656.800000pt;}
.y140{bottom:660.533333pt;}
.y86{bottom:661.333333pt;}
.y12{bottom:666.133333pt;}
.y165{bottom:668.533333pt;}
.y5a{bottom:669.333333pt;}
.y107{bottom:669.600000pt;}
.y13f{bottom:676.533333pt;}
.y85{bottom:677.333333pt;}
.y11{bottom:682.133333pt;}
.y106{bottom:682.400000pt;}
.y1d2{bottom:683.733333pt;}
.y59{bottom:685.333333pt;}
.y13e{bottom:692.533333pt;}
.ycf{bottom:693.333333pt;}
.y105{bottom:695.200000pt;}
.y10{bottom:698.133333pt;}
.y1d1{bottom:699.733333pt;}
.y58{bottom:701.333333pt;}
.y104{bottom:708.000000pt;}
.y13d{bottom:708.533333pt;}
.yce{bottom:709.333333pt;}
.yf{bottom:714.133333pt;}
.y57{bottom:717.333333pt;}
.y103{bottom:720.800000pt;}
.y13c{bottom:724.533333pt;}
.ycd{bottom:725.333333pt;}
.ye{bottom:730.133333pt;}
.y56{bottom:733.333333pt;}
.y102{bottom:733.600000pt;}
.y13b{bottom:740.533333pt;}
.y84{bottom:741.333333pt;}
.yd{bottom:746.133333pt;}
.y101{bottom:746.400000pt;}
.y55{bottom:749.333333pt;}
.y83{bottom:757.333333pt;}
.y100{bottom:759.200000pt;}
.yc{bottom:762.133333pt;}
.y54{bottom:765.333333pt;}
.yff{bottom:772.000000pt;}
.y82{bottom:773.333333pt;}
.yb{bottom:778.133333pt;}
.y53{bottom:781.333333pt;}
.yfe{bottom:784.800000pt;}
.y172{bottom:789.333333pt;}
.y13a{bottom:791.200000pt;}
.ya{bottom:794.133333pt;}
.y52{bottom:797.333333pt;}
.yfd{bottom:797.600000pt;}
.y139{bottom:804.000000pt;}
.y171{bottom:805.333333pt;}
.y9{bottom:810.133333pt;}
.yfc{bottom:810.400000pt;}
.y51{bottom:813.333333pt;}
.y138{bottom:816.800000pt;}
.y180{bottom:821.333333pt;}
.yfb{bottom:823.200000pt;}
.y50{bottom:829.333333pt;}
.y137{bottom:829.600000pt;}
.yfa{bottom:836.000000pt;}
.y81{bottom:837.333333pt;}
.y191{bottom:838.666667pt;}
.y136{bottom:842.400000pt;}
.y4f{bottom:845.333333pt;}
.yf9{bottom:848.800000pt;}
.y8{bottom:852.800000pt;}
.y80{bottom:853.333333pt;}
.y190{bottom:854.666667pt;}
.y4e{bottom:861.333333pt;}
.yf8{bottom:865.600000pt;}
.y135{bottom:868.000000pt;}
.y7f{bottom:869.333333pt;}
.y18f{bottom:870.666667pt;}
.y7{bottom:876.800000pt;}
.y4d{bottom:877.333333pt;}
.yf7{bottom:878.400000pt;}
.y134{bottom:880.800000pt;}
.y1f0{bottom:885.333333pt;}
.yf5{bottom:886.666667pt;}
.yf6{bottom:891.200000pt;}
.y4c{bottom:893.333333pt;}
.y6{bottom:902.400000pt;}
.y18e{bottom:902.666667pt;}
.y133{bottom:906.400000pt;}
.y4b{bottom:909.333333pt;}
.yf4{bottom:918.666667pt;}
.y132{bottom:919.200000pt;}
.y4a{bottom:925.333333pt;}
.y5{bottom:928.000000pt;}
.y4{bottom:970.133333pt;}
.y3{bottom:982.933333pt;}
.y2{bottom:995.733333pt;}
.y1{bottom:1008.533333pt;}
.h8{height:26.171875pt;}
.h1{height:41.875000pt;}
.h2{height:43.000000pt;}
.ha{height:47.109375pt;}
.h9{height:47.505208pt;}
.h3{height:52.317708pt;}
.h6{height:52.343750pt;}
.hd{height:52.723958pt;}
.h7{height:53.750000pt;}
.h5{height:63.187500pt;}
.h4{height:86.000000pt;}
.hc{height:93.075000pt;}
.hb{height:104.709375pt;}
.h0{height:1054.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x2{left:97.920000pt;}
.x16{left:105.706667pt;}
.xe{left:138.666667pt;}
.x6{left:162.666667pt;}
.x15{left:168.280000pt;}
.x9{left:177.626667pt;}
.x2b{left:198.280000pt;}
.x18{left:206.066667pt;}
.x24{left:213.840000pt;}
.x20{left:220.493333pt;}
.x29{left:234.200000pt;}
.x17{left:244.613333pt;}
.x1a{left:250.520000pt;}
.x1b{left:257.920000pt;}
.x14{left:265.693333pt;}
.x2a{left:270.133333pt;}
.x2c{left:271.986667pt;}
.x21{left:283.440000pt;}
.x19{left:284.973333pt;}
.xf{left:340.000000pt;}
.x22{left:345.173333pt;}
.xa{left:352.149333pt;}
.x23{left:356.800000pt;}
.xb{left:413.333333pt;}
.x3{left:420.000000pt;}
.x7{left:433.333333pt;}
.x8{left:446.666667pt;}
.x30{left:492.586667pt;}
.x12{left:499.253333pt;}
.x13{left:519.253333pt;}
.x5{left:527.114667pt;}
.x10{left:541.333333pt;}
.x1f{left:564.666667pt;}
.x2d{left:574.773333pt;}
.xd{left:576.378667pt;}
.x27{left:582.200000pt;}
.x1e{left:590.720000pt;}
.x1c{left:603.306667pt;}
.x2f{left:614.426667pt;}
.x4{left:618.976000pt;}
.xc{left:624.368000pt;}
.x25{left:633.306667pt;}
.x26{left:641.440000pt;}
.x1d{left:649.986667pt;}
.x28{left:671.586667pt;}
.x11{left:677.333333pt;}
.x2e{left:688.093333pt;}
}




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