
    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_f54b112736b1231fe985f2af.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_77d3ad9b366eca0e84b9ad58.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_072ad72745e80f8912ce4828.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_85e012a866d8178dc77c86b0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_ad15c23ba81305507ed4e361.woff')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_f17b0b57fef526b2cfcc3931.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_84c97d85414ebdca475778c6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_74776ce72b85e35963093540.woff')format("woff");}.ff8{font-family:ff8;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_851600df68a67d8cf3e4c3a5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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);}
.m3{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);}
.m7{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);}
.m12{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);}
.m24{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);}
.m25{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);}
.m11{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);}
.m1{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);}
.m8{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);}
.m1b{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);}
.m22{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);}
.m18{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);}
.m1f{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);}
.m13{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);}
.m15{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);}
.m16{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);}
.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);}
.m23{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);}
.ma{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);}
.m5{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);}
.m19{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);}
.me{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);}
.m26{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);}
.m21{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);}
.m1e{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);}
.m27{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);}
.md{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);}
.mc{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);}
.m9{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);}
.m1c{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);}
.m20{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);}
.m17{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);}
.m6{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);}
.m1a{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);}
.m1d{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);}
.m2{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);}
.mf{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);}
.v1{vertical-align:-20.172000px;}
.v2{vertical-align:-14.658000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.546000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001627px;}
.ls7{letter-spacing:0.001639px;}
.ls4{letter-spacing:2.310587px;}
.ls3{letter-spacing:2.315727px;}
.ls5{letter-spacing:13.449720px;}
.ls8{letter-spacing:16.368001px;}
.lsc{letter-spacing:16.535413px;}
.ls9{letter-spacing:16.553558px;}
.lsb{letter-spacing:20.992917px;}
.lsd{letter-spacing:20.998917px;}
.lsa{letter-spacing:22.534917px;}
.ls0{letter-spacing:36.334677px;}
.ls1{letter-spacing:36.340756px;}
.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;}
}
.ws7d{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws15{word-spacing:-65.454540px;}
.ws3a{word-spacing:-64.557900px;}
.ws50{word-spacing:-59.775840px;}
.ws54{word-spacing:-54.589086px;}
.ws40{word-spacing:-53.798265px;}
.ws67{word-spacing:-50.530905px;}
.ws64{word-spacing:-49.287269px;}
.ws5a{word-spacing:-48.478206px;}
.ws5b{word-spacing:-48.418430px;}
.ws55{word-spacing:-47.323632px;}
.ws7a{word-spacing:-47.224369px;}
.ws53{word-spacing:-45.752723px;}
.ws5f{word-spacing:-45.011208px;}
.ws44{word-spacing:-44.831880px;}
.ws70{word-spacing:-44.772104px;}
.ws5d{word-spacing:-44.712328px;}
.ws5e{word-spacing:-44.652552px;}
.ws16{word-spacing:-43.038600px;}
.ws6e{word-spacing:-41.066002px;}
.ws6f{word-spacing:-41.006226px;}
.wsa{word-spacing:-40.402508px;}
.ws9{word-spacing:-40.348710px;}
.ws79{word-spacing:-37.936024px;}
.ws77{word-spacing:-37.169071px;}
.ws6b{word-spacing:-31.366847px;}
.ws52{word-spacing:-29.824847px;}
.ws24{word-spacing:-28.472725px;}
.ws8{word-spacing:-20.801987px;}
.ws51{word-spacing:-17.083635px;}
.ws81{word-spacing:-16.756362px;}
.ws89{word-spacing:-16.298180px;}
.ws85{word-spacing:-16.101817px;}
.ws6c{word-spacing:-15.905453px;}
.ws71{word-spacing:-15.839999px;}
.ws8b{word-spacing:-15.512726px;}
.ws6a{word-spacing:-15.316362px;}
.ws82{word-spacing:-15.250908px;}
.ws73{word-spacing:-14.989090px;}
.ws83{word-spacing:-14.923635px;}
.ws41{word-spacing:-14.596362px;}
.ws37{word-spacing:-14.471737px;}
.ws1b{word-spacing:-14.465453px;}
.ws32{word-spacing:-14.417939px;}
.ws56{word-spacing:-14.269090px;}
.ws87{word-spacing:-14.138181px;}
.ws88{word-spacing:-14.072726px;}
.ws69{word-spacing:-13.941817px;}
.ws68{word-spacing:-13.887930px;}
.ws66{word-spacing:-13.876362px;}
.ws48{word-spacing:-13.679999px;}
.ws4e{word-spacing:-13.614544px;}
.ws3c{word-spacing:-13.549090px;}
.ws3b{word-spacing:-13.483635px;}
.ws8c{word-spacing:-13.352726px;}
.ws74{word-spacing:-13.221817px;}
.ws3d{word-spacing:-13.156363px;}
.ws7{word-spacing:-13.055046px;}
.ws1{word-spacing:-13.052213px;}
.ws5{word-spacing:-13.035268px;}
.ws4{word-spacing:-13.034780px;}
.ws3{word-spacing:-13.033991px;}
.ws2{word-spacing:-13.033044px;}
.ws61{word-spacing:-13.025453px;}
.ws94{word-spacing:-12.894544px;}
.ws4d{word-spacing:-12.763635px;}
.ws84{word-spacing:-12.567272px;}
.ws1a{word-spacing:-12.436363px;}
.ws25{word-spacing:-12.370908px;}
.ws22{word-spacing:-12.305454px;}
.ws65{word-spacing:-12.283583px;}
.ws26{word-spacing:-12.239999px;}
.ws23{word-spacing:-12.174544px;}
.ws63{word-spacing:-12.163249px;}
.ws7f{word-spacing:-12.111243px;}
.ws1f{word-spacing:-12.109090px;}
.ws49{word-spacing:-12.043635px;}
.ws42{word-spacing:-11.978181px;}
.ws57{word-spacing:-11.955071px;}
.ws19{word-spacing:-11.912726px;}
.ws3e{word-spacing:-11.847272px;}
.ws20{word-spacing:-11.781817px;}
.ws7b{word-spacing:-11.722667px;}
.ws3f{word-spacing:-11.716363px;}
.ws4f{word-spacing:-11.650908px;}
.ws58{word-spacing:-11.585454px;}
.ws86{word-spacing:-11.519999px;}
.ws21{word-spacing:-11.258181px;}
.ws80{word-spacing:-11.061817px;}
.ws1e{word-spacing:-10.734545px;}
.ws8e{word-spacing:-10.472726px;}
.ws6d{word-spacing:-10.407272px;}
.ws1c{word-spacing:-10.276363px;}
.ws60{word-spacing:-10.210908px;}
.ws10{word-spacing:-10.167875px;}
.ws12{word-spacing:-10.114077px;}
.ws75{word-spacing:-10.079999px;}
.wsf{word-spacing:-10.006480px;}
.ws2f{word-spacing:-9.956286px;}
.ws2b{word-spacing:-9.956224px;}
.ws27{word-spacing:-9.955521px;}
.ws33{word-spacing:-9.954911px;}
.ws2d{word-spacing:-9.953668px;}
.ws14{word-spacing:-9.952682px;}
.ws34{word-spacing:-9.951576px;}
.ws29{word-spacing:-9.951031px;}
.ws31{word-spacing:-9.949680px;}
.ws93{word-spacing:-9.949090px;}
.ws35{word-spacing:-9.932346px;}
.ws2a{word-spacing:-9.932262px;}
.ws36{word-spacing:-9.931342px;}
.ws28{word-spacing:-9.930864px;}
.ws30{word-spacing:-9.930643px;}
.ws2c{word-spacing:-9.926346px;}
.wsc{word-spacing:-9.791287px;}
.ws11{word-spacing:-9.737489px;}
.ws91{word-spacing:-9.687272px;}
.wse{word-spacing:-9.629892px;}
.wsb{word-spacing:-9.468497px;}
.ws92{word-spacing:-9.359999px;}
.ws46{word-spacing:-9.294545px;}
.ws4c{word-spacing:-9.229090px;}
.ws43{word-spacing:-8.836363px;}
.ws8d{word-spacing:-8.639999px;}
.ws18{word-spacing:-8.574545px;}
.ws8f{word-spacing:-8.509090px;}
.ws7e{word-spacing:-7.985454px;}
.ws13{word-spacing:-7.370364px;}
.ws7c{word-spacing:-7.330908px;}
.ws1d{word-spacing:-7.199999px;}
.ws62{word-spacing:-7.069090px;}
.ws17{word-spacing:-6.872727px;}
.ws47{word-spacing:-6.676363px;}
.ws38{word-spacing:-6.635114px;}
.ws72{word-spacing:-6.414545px;}
.ws8a{word-spacing:-6.218181px;}
.wsd{word-spacing:-5.971609px;}
.ws90{word-spacing:-5.825454px;}
.ws2e{word-spacing:-5.487425px;}
.ws76{word-spacing:-5.236363px;}
.ws78{word-spacing:-5.199455px;}
.ws95{word-spacing:-5.170909px;}
.ws39{word-spacing:0.000000px;}
.ws6{word-spacing:5.133615px;}
.ws45{word-spacing:11.955168px;}
.ws4a{word-spacing:49.374844px;}
.ws4b{word-spacing:155.596512px;}
.ws5c{word-spacing:1089.192860px;}
.ws59{word-spacing:1143.372860px;}
._15{margin-left:-7.708390px;}
._2{margin-left:-6.507436px;}
._10{margin-left:-5.170909px;}
._3{margin-left:-3.615245px;}
._2e{margin-left:-2.596651px;}
._1{margin-left:-1.549390px;}
._4{width:1.344957px;}
._5{width:3.066502px;}
._12{width:4.788047px;}
._2d{width:10.861093px;}
._13{width:11.943205px;}
._31{width:13.302517px;}
._d{width:15.054544px;}
._7{width:16.408475px;}
._6{width:17.861029px;}
._9{width:18.893957px;}
._2c{width:20.154306px;}
._11{width:21.165766px;}
._c{width:22.167570px;}
._a{width:23.411206px;}
._32{width:24.414543px;}
._f{width:25.450158px;}
._2f{width:27.341516px;}
._e{width:28.541767px;}
._8{width:29.858045px;}
._16{width:31.549088px;}
._36{width:32.709313px;}
._34{width:33.905452px;}
._0{width:35.119498px;}
._30{width:36.785451px;}
._b{width:38.094542px;}
._14{width:43.038600px;}
._33{width:47.454541px;}
._35{width:49.540372px;}
._37{width:52.188788px;}
._25{width:71.666450px;}
._20{width:83.236664px;}
._1f{width:89.632679px;}
._19{width:104.846823px;}
._1d{width:113.514320px;}
._21{width:124.687620px;}
._2b{width:134.914071px;}
._18{width:139.038604px;}
._1b{width:147.706101px;}
._1c{width:156.792028px;}
._17{width:189.549189px;}
._1a{width:198.635116px;}
._23{width:213.818180px;}
._28{width:227.506847px;}
._1e{width:230.734742px;}
._26{width:237.793074px;}
._29{width:244.483186px;}
._22{width:257.813198px;}
._2a{width:299.417183px;}
._24{width:321.235364px;}
._27{width:388.542960px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs8{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs7{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y5d{bottom:111.472500px;}
.y31{bottom:112.896000px;}
.yc9{bottom:114.796500px;}
.yf6{bottom:118.509000px;}
.y97{bottom:121.983000px;}
.yaa{bottom:128.745000px;}
.y30{bottom:129.958500px;}
.y5c{bottom:131.796000px;}
.yc8{bottom:135.120000px;}
.yf5{bottom:138.832500px;}
.y80{bottom:141.552000px;}
.y96{bottom:142.306500px;}
.y2f{bottom:146.395500px;}
.ya9{bottom:149.068500px;}
.y5b{bottom:152.119500px;}
.yc7{bottom:155.443500px;}
.yf4{bottom:159.156000px;}
.y95{bottom:162.631500px;}
.y2e{bottom:162.880500px;}
.ya8{bottom:169.393500px;}
.y5a{bottom:172.444500px;}
.yc6{bottom:175.767000px;}
.y2d{bottom:179.319000px;}
.yf3{bottom:179.481000px;}
.y94{bottom:182.955000px;}
.ya7{bottom:189.717000px;}
.y59{bottom:192.768000px;}
.yc5{bottom:196.090500px;}
.yf2{bottom:199.804500px;}
.y2c{bottom:201.063000px;}
.y93{bottom:203.278500px;}
.ya6{bottom:210.040500px;}
.y2b{bottom:212.457000px;}
.y58{bottom:213.091500px;}
.yc4{bottom:216.415500px;}
.yf1{bottom:220.128000px;}
.y92{bottom:223.602000px;}
.y57{bottom:233.415000px;}
.yc3{bottom:236.739000px;}
.yf0{bottom:240.451500px;}
.ya5{bottom:240.894000px;}
.y91{bottom:243.925500px;}
.y114{bottom:253.738500px;}
.yc2{bottom:257.062500px;}
.y2a{bottom:258.726000px;}
.yef{bottom:260.775000px;}
.y90{bottom:264.250500px;}
.y56{bottom:264.268500px;}
.y113{bottom:274.063500px;}
.yc1{bottom:277.386000px;}
.y29{bottom:279.049500px;}
.yee{bottom:281.098500px;}
.y8f{bottom:284.574000px;}
.ya4{bottom:284.631000px;}
.y112{bottom:294.387000px;}
.yc0{bottom:297.709500px;}
.y28{bottom:299.373000px;}
.yed{bottom:301.423500px;}
.y8e{bottom:304.897500px;}
.ya3{bottom:304.954500px;}
.y55{bottom:314.038500px;}
.y111{bottom:314.710500px;}
.ybf{bottom:318.034500px;}
.y27{bottom:319.698000px;}
.yec{bottom:321.747000px;}
.y8d{bottom:325.221000px;}
.ya2{bottom:325.278000px;}
.y54{bottom:331.971000px;}
.y110{bottom:335.034000px;}
.ybe{bottom:338.358000px;}
.y26{bottom:340.021500px;}
.yeb{bottom:342.070500px;}
.y8c{bottom:345.544500px;}
.ya1{bottom:345.601500px;}
.y53{bottom:349.905000px;}
.y10f{bottom:355.357500px;}
.ybd{bottom:358.681500px;}
.y25{bottom:360.345000px;}
.yea{bottom:362.394000px;}
.y8b{bottom:365.869500px;}
.y52{bottom:367.837500px;}
.y10e{bottom:375.682500px;}
.ybc{bottom:379.005000px;}
.y24{bottom:380.668500px;}
.ye9{bottom:382.717500px;}
.y7f{bottom:383.151000px;}
.ya0{bottom:391.680000px;}
.y51{bottom:393.993000px;}
.y10d{bottom:396.006000px;}
.y8a{bottom:396.723000px;}
.ybb{bottom:399.328500px;}
.y23{bottom:400.992000px;}
.ye8{bottom:403.042500px;}
.y7e{bottom:403.474500px;}
.y9f{bottom:409.612500px;}
.y10c{bottom:416.329500px;}
.yba{bottom:419.653500px;}
.y22{bottom:421.317000px;}
.ye7{bottom:423.366000px;}
.y50{bottom:423.453000px;}
.y7d{bottom:423.798000px;}
.y10b{bottom:436.653000px;}
.yb9{bottom:439.977000px;}
.y4f{bottom:441.385500px;}
.y21{bottom:441.640500px;}
.ye6{bottom:443.689500px;}
.y7c{bottom:444.121500px;}
.y89{bottom:450.013500px;}
.y10a{bottom:456.976500px;}
.yb8{bottom:460.300500px;}
.y20{bottom:461.964000px;}
.ye5{bottom:464.013000px;}
.y7b{bottom:464.446500px;}
.y4e{bottom:473.596500px;}
.y109{bottom:477.301500px;}
.yb7{bottom:480.624000px;}
.y1f{bottom:482.287500px;}
.ye4{bottom:484.336500px;}
.y7a{bottom:484.770000px;}
.y4d{bottom:493.920000px;}
.y108{bottom:497.625000px;}
.yb6{bottom:500.947500px;}
.y1e{bottom:502.611000px;}
.ye3{bottom:504.661500px;}
.y79{bottom:505.093500px;}
.y4c{bottom:514.243500px;}
.y107{bottom:517.948500px;}
.yb5{bottom:521.272500px;}
.y1d{bottom:522.936000px;}
.ye2{bottom:524.985000px;}
.y78{bottom:525.417000px;}
.y4b{bottom:534.568500px;}
.y106{bottom:538.272000px;}
.y1c{bottom:543.259500px;}
.ye1{bottom:545.308500px;}
.y77{bottom:545.740500px;}
.y4a{bottom:554.892000px;}
.yb4{bottom:557.742000px;}
.y105{bottom:558.595500px;}
.y1b{bottom:563.583000px;}
.ye0{bottom:565.632000px;}
.y76{bottom:566.065500px;}
.y49{bottom:575.215500px;}
.y104{bottom:578.920500px;}
.y1a{bottom:583.906500px;}
.ydf{bottom:585.955500px;}
.y75{bottom:586.389000px;}
.y9e{bottom:594.408000px;}
.y48{bottom:595.539000px;}
.y103{bottom:599.244000px;}
.y19{bottom:604.230000px;}
.yde{bottom:606.280500px;}
.yb3{bottom:609.211500px;}
.y9d{bottom:612.340500px;}
.y47{bottom:615.862500px;}
.y74{bottom:617.242500px;}
.y102{bottom:619.567500px;}
.y18{bottom:624.555000px;}
.ydd{bottom:626.604000px;}
.yb2{bottom:629.535000px;}
.y9c{bottom:630.273000px;}
.y46{bottom:636.187500px;}
.y101{bottom:639.891000px;}
.y17{bottom:644.878500px;}
.ydc{bottom:646.927500px;}
.yb1{bottom:649.858500px;}
.y45{bottom:656.511000px;}
.y9b{bottom:656.694000px;}
.y100{bottom:660.214500px;}
.y88{bottom:662.767500px;}
.ydb{bottom:667.251000px;}
.y73{bottom:667.519500px;}
.yb0{bottom:670.182000px;}
.yff{bottom:680.539500px;}
.y16{bottom:681.348000px;}
.y87{bottom:683.091000px;}
.y72{bottom:685.452000px;}
.y44{bottom:687.364500px;}
.yda{bottom:687.574500px;}
.yaf{bottom:690.505500px;}
.yfe{bottom:700.863000px;}
.y71{bottom:703.384500px;}
.y86{bottom:703.414500px;}
.yd9{bottom:707.899500px;}
.yae{bottom:710.830500px;}
.yfd{bottom:721.186500px;}
.y70{bottom:721.318500px;}
.y85{bottom:723.739500px;}
.y43{bottom:724.432500px;}
.yd8{bottom:728.223000px;}
.y15{bottom:734.181000px;}
.y6f{bottom:739.251000px;}
.yfc{bottom:741.510000px;}
.y84{bottom:744.063000px;}
.yad{bottom:744.913500px;}
.yd7{bottom:748.546500px;}
.y14{bottom:750.619500px;}
.y6e{bottom:757.183500px;}
.yfb{bottom:761.833500px;}
.yac{bottom:762.847500px;}
.y83{bottom:764.386500px;}
.yd6{bottom:768.870000px;}
.y42{bottom:775.707000px;}
.y13{bottom:778.479000px;}
.yab{bottom:780.780000px;}
.yfa{bottom:782.158500px;}
.y6d{bottom:783.339000px;}
.yd5{bottom:789.193500px;}
.y12{bottom:794.917500px;}
.y82{bottom:795.240000px;}
.y41{bottom:796.032000px;}
.yf9{bottom:802.482000px;}
.yd4{bottom:809.518500px;}
.y11{bottom:811.356000px;}
.y6c{bottom:812.799000px;}
.y40{bottom:816.355500px;}
.yf8{bottom:822.805500px;}
.y10{bottom:827.794500px;}
.yd3{bottom:829.842000px;}
.y6b{bottom:830.733000px;}
.y81{bottom:832.308000px;}
.y3f{bottom:836.679000px;}
.yf7{bottom:843.129000px;}
.yf{bottom:844.233000px;}
.yd2{bottom:850.165500px;}
.y3e{bottom:857.002500px;}
.ye{bottom:860.671500px;}
.y6a{bottom:863.452500px;}
.yd1{bottom:870.489000px;}
.yd{bottom:877.110000px;}
.y3d{bottom:877.326000px;}
.y69{bottom:883.777500px;}
.yd0{bottom:890.812500px;}
.yc{bottom:893.548500px;}
.y3c{bottom:897.651000px;}
.y9a{bottom:900.783000px;}
.y68{bottom:904.101000px;}
.yb{bottom:909.987000px;}
.ycf{bottom:911.137500px;}
.y3b{bottom:917.974500px;}
.y99{bottom:918.715500px;}
.y67{bottom:924.424500px;}
.ya{bottom:926.425500px;}
.y3a{bottom:938.298000px;}
.y9{bottom:942.862500px;}
.y98{bottom:943.684500px;}
.y66{bottom:944.748000px;}
.yce{bottom:947.607000px;}
.y39{bottom:958.621500px;}
.y8{bottom:959.301000px;}
.y65{bottom:965.071500px;}
.y7{bottom:975.739500px;}
.y38{bottom:978.945000px;}
.y64{bottom:985.396500px;}
.ycd{bottom:999.076500px;}
.y37{bottom:999.270000px;}
.y63{bottom:1005.720000px;}
.ycc{bottom:1019.400000px;}
.y36{bottom:1019.593500px;}
.y6{bottom:1025.914500px;}
.y62{bottom:1026.043500px;}
.ycb{bottom:1039.723500px;}
.y35{bottom:1039.917000px;}
.y5{bottom:1045.341000px;}
.y61{bottom:1046.367000px;}
.y60{bottom:1066.690500px;}
.y3{bottom:1074.669000px;}
.yca{bottom:1076.193000px;}
.y34{bottom:1076.386500px;}
.y4{bottom:1081.393500px;}
.y5f{bottom:1087.015500px;}
.y5e{bottom:1107.339000px;}
.y2{bottom:1113.523500px;}
.y33{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y32{bottom:1147.986000px;}
.hc{height:25.034105px;}
.h6{height:25.392760px;}
.hf{height:26.396993px;}
.h4{height:33.857027px;}
.h5{height:35.196006px;}
.hb{height:38.089182px;}
.h8{height:39.595534px;}
.h11{height:41.723536px;}
.h12{height:42.919053px;}
.h14{height:43.995018px;}
.h7{height:45.687269px;}
.he{height:46.212723px;}
.hd{height:47.073495px;}
.ha{height:48.174541px;}
.h10{height:50.068252px;}
.h3{height:52.794031px;}
.h9{height:60.081886px;}
.h13{height:62.771443px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:107.095500px;}
.x2d{left:108.579000px;}
.x3e{left:113.721000px;}
.x68{left:115.609500px;}
.x22{left:124.363500px;}
.x3f{left:128.938500px;}
.x45{left:133.488000px;}
.x69{left:143.050500px;}
.x63{left:160.353000px;}
.x2e{left:172.576500px;}
.xd{left:175.122000px;}
.x54{left:180.175500px;}
.x2{left:191.047500px;}
.x55{left:195.393000px;}
.x3{left:197.127000px;}
.x59{left:202.489500px;}
.x4c{left:213.211500px;}
.x57{left:220.968000px;}
.x58{left:228.670500px;}
.x56{left:240.544500px;}
.x5a{left:244.623000px;}
.x23{left:246.375000px;}
.x24{left:261.592500px;}
.x46{left:264.655500px;}
.x25{left:269.791500px;}
.x60{left:280.894500px;}
.x26{left:285.009000px;}
.x61{left:291.052500px;}
.x27{left:293.206500px;}
.x4{left:299.251500px;}
.x5{left:305.329500px;}
.x28{left:308.425500px;}
.x29{left:316.623000px;}
.x2a{left:331.840500px;}
.x2b{left:340.038000px;}
.x1c{left:345.100500px;}
.x1d{left:352.708500px;}
.x2c{left:355.257000px;}
.x1e{left:359.671500px;}
.x1f{left:367.281000px;}
.x2f{left:369.187500px;}
.x20{left:374.244000px;}
.x30{left:384.405000px;}
.x5e{left:387.178500px;}
.x21{left:389.461500px;}
.x31{left:391.605000px;}
.x64{left:402.267000px;}
.x32{left:406.822500px;}
.x6{left:414.693000px;}
.xe{left:416.017500px;}
.x7{left:420.772500px;}
.xf{left:423.627000px;}
.x33{left:429.240000px;}
.x10{left:432.384000px;}
.x5c{left:434.536500px;}
.x34{left:436.440000px;}
.x11{left:439.992000px;}
.x12{left:448.749000px;}
.x5d{left:449.754000px;}
.x35{left:451.657500px;}
.x53{left:455.119500px;}
.x13{left:456.358500px;}
.x5b{left:460.827000px;}
.x47{left:476.233500px;}
.x48{left:491.451000px;}
.x4d{left:500.617500px;}
.x65{left:508.596000px;}
.x44{left:511.452000px;}
.x4e{left:515.836500px;}
.x8{left:520.843500px;}
.x9{left:526.923000px;}
.x42{left:578.565000px;}
.x49{left:582.259500px;}
.x51{left:587.950500px;}
.x3c{left:591.315000px;}
.x43{left:593.782500px;}
.x4a{left:597.477000px;}
.x52{left:603.168000px;}
.x3d{left:606.534000px;}
.xa{left:621.012000px;}
.xb{left:631.575000px;}
.x14{left:652.536000px;}
.x36{left:655.951500px;}
.x15{left:660.145500px;}
.x16{left:668.902500px;}
.x37{left:671.169000px;}
.x17{left:676.510500px;}
.x38{left:678.369000px;}
.x4f{left:680.689500px;}
.x18{left:685.267500px;}
.x4b{left:687.403500px;}
.x19{left:692.877000px;}
.x50{left:695.907000px;}
.x1a{left:701.634000px;}
.x1b{left:709.242000px;}
.x40{left:712.465500px;}
.x39{left:716.004000px;}
.x3a{left:723.202500px;}
.x5f{left:724.516500px;}
.x41{left:727.683000px;}
.x3b{left:738.421500px;}
.x62{left:752.428500px;}
.x66{left:761.881500px;}
.xc{left:770.205000px;}
.x67{left:777.099000px;}
@media print{
.v1{vertical-align:-17.930667pt;}
.v2{vertical-align:-13.029333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.818667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001446pt;}
.ls7{letter-spacing:0.001457pt;}
.ls4{letter-spacing:2.053855pt;}
.ls3{letter-spacing:2.058424pt;}
.ls5{letter-spacing:11.955307pt;}
.ls8{letter-spacing:14.549334pt;}
.lsc{letter-spacing:14.698145pt;}
.ls9{letter-spacing:14.714274pt;}
.lsb{letter-spacing:18.660370pt;}
.lsd{letter-spacing:18.665704pt;}
.lsa{letter-spacing:20.031037pt;}
.ls0{letter-spacing:32.297491pt;}
.ls1{letter-spacing:32.302894pt;}
.ws7d{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws15{word-spacing:-58.181813pt;}
.ws3a{word-spacing:-57.384800pt;}
.ws50{word-spacing:-53.134080pt;}
.ws54{word-spacing:-48.523632pt;}
.ws40{word-spacing:-47.820680pt;}
.ws67{word-spacing:-44.916360pt;}
.ws64{word-spacing:-43.810905pt;}
.ws5a{word-spacing:-43.091739pt;}
.ws5b{word-spacing:-43.038605pt;}
.ws55{word-spacing:-42.065451pt;}
.ws7a{word-spacing:-41.977217pt;}
.ws53{word-spacing:-40.669088pt;}
.ws5f{word-spacing:-40.009962pt;}
.ws44{word-spacing:-39.850560pt;}
.ws70{word-spacing:-39.797426pt;}
.ws5d{word-spacing:-39.744292pt;}
.ws5e{word-spacing:-39.691158pt;}
.ws16{word-spacing:-38.256533pt;}
.ws6e{word-spacing:-36.503113pt;}
.ws6f{word-spacing:-36.449979pt;}
.wsa{word-spacing:-35.913341pt;}
.ws9{word-spacing:-35.865520pt;}
.ws79{word-spacing:-33.720911pt;}
.ws77{word-spacing:-33.039174pt;}
.ws6b{word-spacing:-27.881642pt;}
.ws52{word-spacing:-26.510975pt;}
.ws24{word-spacing:-25.309089pt;}
.ws8{word-spacing:-18.490655pt;}
.ws51{word-spacing:-15.185453pt;}
.ws81{word-spacing:-14.894544pt;}
.ws89{word-spacing:-14.487272pt;}
.ws85{word-spacing:-14.312726pt;}
.ws6c{word-spacing:-14.138181pt;}
.ws71{word-spacing:-14.079999pt;}
.ws8b{word-spacing:-13.789090pt;}
.ws6a{word-spacing:-13.614544pt;}
.ws82{word-spacing:-13.556363pt;}
.ws73{word-spacing:-13.323635pt;}
.ws83{word-spacing:-13.265453pt;}
.ws41{word-spacing:-12.974544pt;}
.ws37{word-spacing:-12.863767pt;}
.ws1b{word-spacing:-12.858181pt;}
.ws32{word-spacing:-12.815946pt;}
.ws56{word-spacing:-12.683635pt;}
.ws87{word-spacing:-12.567272pt;}
.ws88{word-spacing:-12.509090pt;}
.ws69{word-spacing:-12.392726pt;}
.ws68{word-spacing:-12.344827pt;}
.ws66{word-spacing:-12.334544pt;}
.ws48{word-spacing:-12.159999pt;}
.ws4e{word-spacing:-12.101817pt;}
.ws3c{word-spacing:-12.043635pt;}
.ws3b{word-spacing:-11.985454pt;}
.ws8c{word-spacing:-11.869090pt;}
.ws74{word-spacing:-11.752726pt;}
.ws3d{word-spacing:-11.694544pt;}
.ws7{word-spacing:-11.604485pt;}
.ws1{word-spacing:-11.601967pt;}
.ws5{word-spacing:-11.586905pt;}
.ws4{word-spacing:-11.586471pt;}
.ws3{word-spacing:-11.585770pt;}
.ws2{word-spacing:-11.584928pt;}
.ws61{word-spacing:-11.578181pt;}
.ws94{word-spacing:-11.461817pt;}
.ws4d{word-spacing:-11.345454pt;}
.ws84{word-spacing:-11.170908pt;}
.ws1a{word-spacing:-11.054545pt;}
.ws25{word-spacing:-10.996363pt;}
.ws22{word-spacing:-10.938181pt;}
.ws65{word-spacing:-10.918740pt;}
.ws26{word-spacing:-10.879999pt;}
.ws23{word-spacing:-10.821817pt;}
.ws63{word-spacing:-10.811777pt;}
.ws7f{word-spacing:-10.765550pt;}
.ws1f{word-spacing:-10.763635pt;}
.ws49{word-spacing:-10.705454pt;}
.ws42{word-spacing:-10.647272pt;}
.ws57{word-spacing:-10.626730pt;}
.ws19{word-spacing:-10.589090pt;}
.ws3e{word-spacing:-10.530908pt;}
.ws20{word-spacing:-10.472726pt;}
.ws7b{word-spacing:-10.420148pt;}
.ws3f{word-spacing:-10.414545pt;}
.ws4f{word-spacing:-10.356363pt;}
.ws58{word-spacing:-10.298181pt;}
.ws86{word-spacing:-10.239999pt;}
.ws21{word-spacing:-10.007272pt;}
.ws80{word-spacing:-9.832726pt;}
.ws1e{word-spacing:-9.541817pt;}
.ws8e{word-spacing:-9.309090pt;}
.ws6d{word-spacing:-9.250908pt;}
.ws1c{word-spacing:-9.134545pt;}
.ws60{word-spacing:-9.076363pt;}
.ws10{word-spacing:-9.038111pt;}
.ws12{word-spacing:-8.990290pt;}
.ws75{word-spacing:-8.959999pt;}
.wsf{word-spacing:-8.894649pt;}
.ws2f{word-spacing:-8.850032pt;}
.ws2b{word-spacing:-8.849977pt;}
.ws27{word-spacing:-8.849352pt;}
.ws33{word-spacing:-8.848810pt;}
.ws2d{word-spacing:-8.847705pt;}
.ws14{word-spacing:-8.846828pt;}
.ws34{word-spacing:-8.845845pt;}
.ws29{word-spacing:-8.845361pt;}
.ws31{word-spacing:-8.844160pt;}
.ws93{word-spacing:-8.843636pt;}
.ws35{word-spacing:-8.828752pt;}
.ws2a{word-spacing:-8.828677pt;}
.ws36{word-spacing:-8.827860pt;}
.ws28{word-spacing:-8.827434pt;}
.ws30{word-spacing:-8.827238pt;}
.ws2c{word-spacing:-8.823419pt;}
.wsc{word-spacing:-8.703366pt;}
.ws11{word-spacing:-8.655545pt;}
.ws91{word-spacing:-8.610908pt;}
.wse{word-spacing:-8.559904pt;}
.wsb{word-spacing:-8.416442pt;}
.ws92{word-spacing:-8.319999pt;}
.ws46{word-spacing:-8.261817pt;}
.ws4c{word-spacing:-8.203636pt;}
.ws43{word-spacing:-7.854545pt;}
.ws8d{word-spacing:-7.679999pt;}
.ws18{word-spacing:-7.621818pt;}
.ws8f{word-spacing:-7.563636pt;}
.ws7e{word-spacing:-7.098181pt;}
.ws13{word-spacing:-6.551435pt;}
.ws7c{word-spacing:-6.516363pt;}
.ws1d{word-spacing:-6.399999pt;}
.ws62{word-spacing:-6.283636pt;}
.ws17{word-spacing:-6.109090pt;}
.ws47{word-spacing:-5.934545pt;}
.ws38{word-spacing:-5.897879pt;}
.ws72{word-spacing:-5.701818pt;}
.ws8a{word-spacing:-5.527272pt;}
.wsd{word-spacing:-5.308097pt;}
.ws90{word-spacing:-5.178181pt;}
.ws2e{word-spacing:-4.877711pt;}
.ws76{word-spacing:-4.654545pt;}
.ws78{word-spacing:-4.621737pt;}
.ws95{word-spacing:-4.596363pt;}
.ws39{word-spacing:0.000000pt;}
.ws6{word-spacing:4.563213pt;}
.ws45{word-spacing:10.626816pt;}
.ws4a{word-spacing:43.888750pt;}
.ws4b{word-spacing:138.308010pt;}
.ws5c{word-spacing:968.171431pt;}
.ws59{word-spacing:1016.331431pt;}
._15{margin-left:-6.851902pt;}
._2{margin-left:-5.784388pt;}
._10{margin-left:-4.596363pt;}
._3{margin-left:-3.213551pt;}
._2e{margin-left:-2.308134pt;}
._1{margin-left:-1.377235pt;}
._4{width:1.195517pt;}
._5{width:2.725780pt;}
._12{width:4.256042pt;}
._2d{width:9.654304pt;}
._13{width:10.616182pt;}
._31{width:11.824460pt;}
._d{width:13.381817pt;}
._7{width:14.585311pt;}
._6{width:15.876470pt;}
._9{width:16.794628pt;}
._2c{width:17.914938pt;}
._11{width:18.814014pt;}
._c{width:19.704506pt;}
._a{width:20.809961pt;}
._32{width:21.701816pt;}
._f{width:22.622363pt;}
._2f{width:24.303570pt;}
._e{width:25.370460pt;}
._8{width:26.540485pt;}
._16{width:28.043634pt;}
._36{width:29.074945pt;}
._34{width:30.138179pt;}
._0{width:31.217331pt;}
._30{width:32.698179pt;}
._b{width:33.861815pt;}
._14{width:38.256533pt;}
._33{width:42.181815pt;}
._35{width:44.035886pt;}
._37{width:46.390034pt;}
._25{width:63.703511pt;}
._20{width:73.988146pt;}
._1f{width:79.673492pt;}
._19{width:93.197176pt;}
._1d{width:100.901618pt;}
._21{width:110.833440pt;}
._2b{width:119.923619pt;}
._18{width:123.589870pt;}
._1b{width:131.294312pt;}
._1c{width:139.370692pt;}
._17{width:168.488168pt;}
._1a{width:176.564548pt;}
._23{width:190.060604pt;}
._28{width:202.228308pt;}
._1e{width:205.097549pt;}
._26{width:211.371621pt;}
._29{width:217.318387pt;}
._22{width:229.167287pt;}
._2a{width:266.148607pt;}
._24{width:285.542546pt;}
._27{width:345.371520pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs8{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs7{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:99.086667pt;}
.y31{bottom:100.352000pt;}
.yc9{bottom:102.041333pt;}
.yf6{bottom:105.341333pt;}
.y97{bottom:108.429333pt;}
.yaa{bottom:114.440000pt;}
.y30{bottom:115.518667pt;}
.y5c{bottom:117.152000pt;}
.yc8{bottom:120.106667pt;}
.yf5{bottom:123.406667pt;}
.y80{bottom:125.824000pt;}
.y96{bottom:126.494667pt;}
.y2f{bottom:130.129333pt;}
.ya9{bottom:132.505333pt;}
.y5b{bottom:135.217333pt;}
.yc7{bottom:138.172000pt;}
.yf4{bottom:141.472000pt;}
.y95{bottom:144.561333pt;}
.y2e{bottom:144.782667pt;}
.ya8{bottom:150.572000pt;}
.y5a{bottom:153.284000pt;}
.yc6{bottom:156.237333pt;}
.y2d{bottom:159.394667pt;}
.yf3{bottom:159.538667pt;}
.y94{bottom:162.626667pt;}
.ya7{bottom:168.637333pt;}
.y59{bottom:171.349333pt;}
.yc5{bottom:174.302667pt;}
.yf2{bottom:177.604000pt;}
.y2c{bottom:178.722667pt;}
.y93{bottom:180.692000pt;}
.ya6{bottom:186.702667pt;}
.y2b{bottom:188.850667pt;}
.y58{bottom:189.414667pt;}
.yc4{bottom:192.369333pt;}
.yf1{bottom:195.669333pt;}
.y92{bottom:198.757333pt;}
.y57{bottom:207.480000pt;}
.yc3{bottom:210.434667pt;}
.yf0{bottom:213.734667pt;}
.ya5{bottom:214.128000pt;}
.y91{bottom:216.822667pt;}
.y114{bottom:225.545333pt;}
.yc2{bottom:228.500000pt;}
.y2a{bottom:229.978667pt;}
.yef{bottom:231.800000pt;}
.y90{bottom:234.889333pt;}
.y56{bottom:234.905333pt;}
.y113{bottom:243.612000pt;}
.yc1{bottom:246.565333pt;}
.y29{bottom:248.044000pt;}
.yee{bottom:249.865333pt;}
.y8f{bottom:252.954667pt;}
.ya4{bottom:253.005333pt;}
.y112{bottom:261.677333pt;}
.yc0{bottom:264.630667pt;}
.y28{bottom:266.109333pt;}
.yed{bottom:267.932000pt;}
.y8e{bottom:271.020000pt;}
.ya3{bottom:271.070667pt;}
.y55{bottom:279.145333pt;}
.y111{bottom:279.742667pt;}
.ybf{bottom:282.697333pt;}
.y27{bottom:284.176000pt;}
.yec{bottom:285.997333pt;}
.y8d{bottom:289.085333pt;}
.ya2{bottom:289.136000pt;}
.y54{bottom:295.085333pt;}
.y110{bottom:297.808000pt;}
.ybe{bottom:300.762667pt;}
.y26{bottom:302.241333pt;}
.yeb{bottom:304.062667pt;}
.y8c{bottom:307.150667pt;}
.ya1{bottom:307.201333pt;}
.y53{bottom:311.026667pt;}
.y10f{bottom:315.873333pt;}
.ybd{bottom:318.828000pt;}
.y25{bottom:320.306667pt;}
.yea{bottom:322.128000pt;}
.y8b{bottom:325.217333pt;}
.y52{bottom:326.966667pt;}
.y10e{bottom:333.940000pt;}
.ybc{bottom:336.893333pt;}
.y24{bottom:338.372000pt;}
.ye9{bottom:340.193333pt;}
.y7f{bottom:340.578667pt;}
.ya0{bottom:348.160000pt;}
.y51{bottom:350.216000pt;}
.y10d{bottom:352.005333pt;}
.y8a{bottom:352.642667pt;}
.ybb{bottom:354.958667pt;}
.y23{bottom:356.437333pt;}
.ye8{bottom:358.260000pt;}
.y7e{bottom:358.644000pt;}
.y9f{bottom:364.100000pt;}
.y10c{bottom:370.070667pt;}
.yba{bottom:373.025333pt;}
.y22{bottom:374.504000pt;}
.ye7{bottom:376.325333pt;}
.y50{bottom:376.402667pt;}
.y7d{bottom:376.709333pt;}
.y10b{bottom:388.136000pt;}
.yb9{bottom:391.090667pt;}
.y4f{bottom:392.342667pt;}
.y21{bottom:392.569333pt;}
.ye6{bottom:394.390667pt;}
.y7c{bottom:394.774667pt;}
.y89{bottom:400.012000pt;}
.y10a{bottom:406.201333pt;}
.yb8{bottom:409.156000pt;}
.y20{bottom:410.634667pt;}
.ye5{bottom:412.456000pt;}
.y7b{bottom:412.841333pt;}
.y4e{bottom:420.974667pt;}
.y109{bottom:424.268000pt;}
.yb7{bottom:427.221333pt;}
.y1f{bottom:428.700000pt;}
.ye4{bottom:430.521333pt;}
.y7a{bottom:430.906667pt;}
.y4d{bottom:439.040000pt;}
.y108{bottom:442.333333pt;}
.yb6{bottom:445.286667pt;}
.y1e{bottom:446.765333pt;}
.ye3{bottom:448.588000pt;}
.y79{bottom:448.972000pt;}
.y4c{bottom:457.105333pt;}
.y107{bottom:460.398667pt;}
.yb5{bottom:463.353333pt;}
.y1d{bottom:464.832000pt;}
.ye2{bottom:466.653333pt;}
.y78{bottom:467.037333pt;}
.y4b{bottom:475.172000pt;}
.y106{bottom:478.464000pt;}
.y1c{bottom:482.897333pt;}
.ye1{bottom:484.718667pt;}
.y77{bottom:485.102667pt;}
.y4a{bottom:493.237333pt;}
.yb4{bottom:495.770667pt;}
.y105{bottom:496.529333pt;}
.y1b{bottom:500.962667pt;}
.ye0{bottom:502.784000pt;}
.y76{bottom:503.169333pt;}
.y49{bottom:511.302667pt;}
.y104{bottom:514.596000pt;}
.y1a{bottom:519.028000pt;}
.ydf{bottom:520.849333pt;}
.y75{bottom:521.234667pt;}
.y9e{bottom:528.362667pt;}
.y48{bottom:529.368000pt;}
.y103{bottom:532.661333pt;}
.y19{bottom:537.093333pt;}
.yde{bottom:538.916000pt;}
.yb3{bottom:541.521333pt;}
.y9d{bottom:544.302667pt;}
.y47{bottom:547.433333pt;}
.y74{bottom:548.660000pt;}
.y102{bottom:550.726667pt;}
.y18{bottom:555.160000pt;}
.ydd{bottom:556.981333pt;}
.yb2{bottom:559.586667pt;}
.y9c{bottom:560.242667pt;}
.y46{bottom:565.500000pt;}
.y101{bottom:568.792000pt;}
.y17{bottom:573.225333pt;}
.ydc{bottom:575.046667pt;}
.yb1{bottom:577.652000pt;}
.y45{bottom:583.565333pt;}
.y9b{bottom:583.728000pt;}
.y100{bottom:586.857333pt;}
.y88{bottom:589.126667pt;}
.ydb{bottom:593.112000pt;}
.y73{bottom:593.350667pt;}
.yb0{bottom:595.717333pt;}
.yff{bottom:604.924000pt;}
.y16{bottom:605.642667pt;}
.y87{bottom:607.192000pt;}
.y72{bottom:609.290667pt;}
.y44{bottom:610.990667pt;}
.yda{bottom:611.177333pt;}
.yaf{bottom:613.782667pt;}
.yfe{bottom:622.989333pt;}
.y71{bottom:625.230667pt;}
.y86{bottom:625.257333pt;}
.yd9{bottom:629.244000pt;}
.yae{bottom:631.849333pt;}
.yfd{bottom:641.054667pt;}
.y70{bottom:641.172000pt;}
.y85{bottom:643.324000pt;}
.y43{bottom:643.940000pt;}
.yd8{bottom:647.309333pt;}
.y15{bottom:652.605333pt;}
.y6f{bottom:657.112000pt;}
.yfc{bottom:659.120000pt;}
.y84{bottom:661.389333pt;}
.yad{bottom:662.145333pt;}
.yd7{bottom:665.374667pt;}
.y14{bottom:667.217333pt;}
.y6e{bottom:673.052000pt;}
.yfb{bottom:677.185333pt;}
.yac{bottom:678.086667pt;}
.y83{bottom:679.454667pt;}
.yd6{bottom:683.440000pt;}
.y42{bottom:689.517333pt;}
.y13{bottom:691.981333pt;}
.yab{bottom:694.026667pt;}
.yfa{bottom:695.252000pt;}
.y6d{bottom:696.301333pt;}
.yd5{bottom:701.505333pt;}
.y12{bottom:706.593333pt;}
.y82{bottom:706.880000pt;}
.y41{bottom:707.584000pt;}
.yf9{bottom:713.317333pt;}
.yd4{bottom:719.572000pt;}
.y11{bottom:721.205333pt;}
.y6c{bottom:722.488000pt;}
.y40{bottom:725.649333pt;}
.yf8{bottom:731.382667pt;}
.y10{bottom:735.817333pt;}
.yd3{bottom:737.637333pt;}
.y6b{bottom:738.429333pt;}
.y81{bottom:739.829333pt;}
.y3f{bottom:743.714667pt;}
.yf7{bottom:749.448000pt;}
.yf{bottom:750.429333pt;}
.yd2{bottom:755.702667pt;}
.y3e{bottom:761.780000pt;}
.ye{bottom:765.041333pt;}
.y6a{bottom:767.513333pt;}
.yd1{bottom:773.768000pt;}
.yd{bottom:779.653333pt;}
.y3d{bottom:779.845333pt;}
.y69{bottom:785.580000pt;}
.yd0{bottom:791.833333pt;}
.yc{bottom:794.265333pt;}
.y3c{bottom:797.912000pt;}
.y9a{bottom:800.696000pt;}
.y68{bottom:803.645333pt;}
.yb{bottom:808.877333pt;}
.ycf{bottom:809.900000pt;}
.y3b{bottom:815.977333pt;}
.y99{bottom:816.636000pt;}
.y67{bottom:821.710667pt;}
.ya{bottom:823.489333pt;}
.y3a{bottom:834.042667pt;}
.y9{bottom:838.100000pt;}
.y98{bottom:838.830667pt;}
.y66{bottom:839.776000pt;}
.yce{bottom:842.317333pt;}
.y39{bottom:852.108000pt;}
.y8{bottom:852.712000pt;}
.y65{bottom:857.841333pt;}
.y7{bottom:867.324000pt;}
.y38{bottom:870.173333pt;}
.y64{bottom:875.908000pt;}
.ycd{bottom:888.068000pt;}
.y37{bottom:888.240000pt;}
.y63{bottom:893.973333pt;}
.ycc{bottom:906.133333pt;}
.y36{bottom:906.305333pt;}
.y6{bottom:911.924000pt;}
.y62{bottom:912.038667pt;}
.ycb{bottom:924.198667pt;}
.y35{bottom:924.370667pt;}
.y5{bottom:929.192000pt;}
.y61{bottom:930.104000pt;}
.y60{bottom:948.169333pt;}
.y3{bottom:955.261333pt;}
.yca{bottom:956.616000pt;}
.y34{bottom:956.788000pt;}
.y4{bottom:961.238667pt;}
.y5f{bottom:966.236000pt;}
.y5e{bottom:984.301333pt;}
.y2{bottom:989.798667pt;}
.y33{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y32{bottom:1020.432000pt;}
.hc{height:22.252538pt;}
.h6{height:22.571342pt;}
.hf{height:23.463994pt;}
.h4{height:30.095135pt;}
.h5{height:31.285338pt;}
.hb{height:33.857051pt;}
.h8{height:35.196030pt;}
.h11{height:37.087588pt;}
.h12{height:38.150269pt;}
.h14{height:39.106683pt;}
.h7{height:40.610906pt;}
.he{height:41.077976pt;}
.hd{height:41.843107pt;}
.ha{height:42.821815pt;}
.h10{height:44.505113pt;}
.h3{height:46.928027pt;}
.h9{height:53.406121pt;}
.h13{height:55.796838pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.196000pt;}
.x2d{left:96.514667pt;}
.x3e{left:101.085333pt;}
.x68{left:102.764000pt;}
.x22{left:110.545333pt;}
.x3f{left:114.612000pt;}
.x45{left:118.656000pt;}
.x69{left:127.156000pt;}
.x63{left:142.536000pt;}
.x2e{left:153.401333pt;}
.xd{left:155.664000pt;}
.x54{left:160.156000pt;}
.x2{left:169.820000pt;}
.x55{left:173.682667pt;}
.x3{left:175.224000pt;}
.x59{left:179.990667pt;}
.x4c{left:189.521333pt;}
.x57{left:196.416000pt;}
.x58{left:203.262667pt;}
.x56{left:213.817333pt;}
.x5a{left:217.442667pt;}
.x23{left:219.000000pt;}
.x24{left:232.526667pt;}
.x46{left:235.249333pt;}
.x25{left:239.814667pt;}
.x60{left:249.684000pt;}
.x26{left:253.341333pt;}
.x61{left:258.713333pt;}
.x27{left:260.628000pt;}
.x4{left:266.001333pt;}
.x5{left:271.404000pt;}
.x28{left:274.156000pt;}
.x29{left:281.442667pt;}
.x2a{left:294.969333pt;}
.x2b{left:302.256000pt;}
.x1c{left:306.756000pt;}
.x1d{left:313.518667pt;}
.x2c{left:315.784000pt;}
.x1e{left:319.708000pt;}
.x1f{left:326.472000pt;}
.x2f{left:328.166667pt;}
.x20{left:332.661333pt;}
.x30{left:341.693333pt;}
.x5e{left:344.158667pt;}
.x21{left:346.188000pt;}
.x31{left:348.093333pt;}
.x64{left:357.570667pt;}
.x32{left:361.620000pt;}
.x6{left:368.616000pt;}
.xe{left:369.793333pt;}
.x7{left:374.020000pt;}
.xf{left:376.557333pt;}
.x33{left:381.546667pt;}
.x10{left:384.341333pt;}
.x5c{left:386.254667pt;}
.x34{left:387.946667pt;}
.x11{left:391.104000pt;}
.x12{left:398.888000pt;}
.x5d{left:399.781333pt;}
.x35{left:401.473333pt;}
.x53{left:404.550667pt;}
.x13{left:405.652000pt;}
.x5b{left:409.624000pt;}
.x47{left:423.318667pt;}
.x48{left:436.845333pt;}
.x4d{left:444.993333pt;}
.x65{left:452.085333pt;}
.x44{left:454.624000pt;}
.x4e{left:458.521333pt;}
.x8{left:462.972000pt;}
.x9{left:468.376000pt;}
.x42{left:514.280000pt;}
.x49{left:517.564000pt;}
.x51{left:522.622667pt;}
.x3c{left:525.613333pt;}
.x43{left:527.806667pt;}
.x4a{left:531.090667pt;}
.x52{left:536.149333pt;}
.x3d{left:539.141333pt;}
.xa{left:552.010667pt;}
.xb{left:561.400000pt;}
.x14{left:580.032000pt;}
.x36{left:583.068000pt;}
.x15{left:586.796000pt;}
.x16{left:594.580000pt;}
.x37{left:596.594667pt;}
.x17{left:601.342667pt;}
.x38{left:602.994667pt;}
.x4f{left:605.057333pt;}
.x18{left:609.126667pt;}
.x4b{left:611.025333pt;}
.x19{left:615.890667pt;}
.x50{left:618.584000pt;}
.x1a{left:623.674667pt;}
.x1b{left:630.437333pt;}
.x40{left:633.302667pt;}
.x39{left:636.448000pt;}
.x3a{left:642.846667pt;}
.x5f{left:644.014667pt;}
.x41{left:646.829333pt;}
.x3b{left:656.374667pt;}
.x62{left:668.825333pt;}
.x66{left:677.228000pt;}
.xc{left:684.626667pt;}
.x67{left:690.754667pt;}
}




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