
    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_de57a21b78be295643d5597f.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_476f0c92db560a56bc3aaa7e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_6e45f679c8e419129405023b.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_3546669cf671ae21788ebb4a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27c1417d4578949af44f310e.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_028bb5b50d41a4193c240d24.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_414a5d49e42a0808757db242.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_8b71cb062e0af29ce24aa777.woff')format("woff");}.ff8{font-family:ff8;line-height:0.961000;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_090961b2bcae09627ede0d45.woff')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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;}
.m22{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m17{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);}
.m1a{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);}
.m28{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);}
.m21{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);}
.m29{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);}
.m19{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);}
.mc{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);}
.m1d{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);}
.m27{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);}
.m13{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);}
.m2{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m10{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);}
.m3{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);}
.m24{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);}
.m9{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);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1b{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);}
.m7{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);}
.m23{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);}
.m12{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);}
.m18{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);}
.m25{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);}
.m1c{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);}
.m20{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);}
.ma{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m4{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);}
.mb{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);}
.m8{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);}
.m15{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);}
.m16{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);}
.m6{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);}
.m1f{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);}
.m5{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);}
.v2{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.540000px;}
.v1{vertical-align:26.898000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001639px;}
.lsa{letter-spacing:0.002184px;}
.lsd{letter-spacing:0.428552px;}
.lse{letter-spacing:0.698552px;}
.ls6{letter-spacing:2.310587px;}
.ls8{letter-spacing:2.312552px;}
.ls3{letter-spacing:2.315727px;}
.ls0{letter-spacing:3.082773px;}
.lsf{letter-spacing:3.315575px;}
.lsc{letter-spacing:3.630547px;}
.ls7{letter-spacing:13.449720px;}
.ls5{letter-spacing:16.362001px;}
.lsb{letter-spacing:16.368001px;}
.ls2{letter-spacing:21.019627px;}
.ls1{letter-spacing:35.867176px;}
.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;}
}
.ws87{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws13{word-spacing:-65.454540px;}
.ws43{word-spacing:-64.557900px;}
.ws5b{word-spacing:-60.357847px;}
.ws68{word-spacing:-55.121435px;}
.ws44{word-spacing:-53.798265px;}
.ws66{word-spacing:-49.613947px;}
.ws67{word-spacing:-49.554171px;}
.ws5e{word-spacing:-49.090905px;}
.ws3{word-spacing:-47.820660px;}
.ws7a{word-spacing:-46.386052px;}
.ws69{word-spacing:-45.967621px;}
.ws6a{word-spacing:-45.907845px;}
.ws7b{word-spacing:-44.891656px;}
.ws6f{word-spacing:-44.831880px;}
.ws6e{word-spacing:-44.652552px;}
.ws14{word-spacing:-43.038600px;}
.ws22{word-spacing:-40.402508px;}
.ws9{word-spacing:-40.348710px;}
.ws2{word-spacing:-31.202994px;}
.ws39{word-spacing:-28.472725px;}
.ws61{word-spacing:-24.052375px;}
.ws2e{word-spacing:-23.402252px;}
.ws59{word-spacing:-22.778175px;}
.ws70{word-spacing:-21.965685px;}
.ws4{word-spacing:-20.801987px;}
.ws95{word-spacing:-17.018180px;}
.ws72{word-spacing:-16.952726px;}
.ws31{word-spacing:-16.887271px;}
.ws92{word-spacing:-16.821817px;}
.ws84{word-spacing:-16.167271px;}
.ws93{word-spacing:-16.101817px;}
.ws20{word-spacing:-15.709090px;}
.ws21{word-spacing:-15.643635px;}
.ws63{word-spacing:-15.601484px;}
.ws7e{word-spacing:-15.578181px;}
.ws4d{word-spacing:-15.447271px;}
.ws86{word-spacing:-15.185453px;}
.ws3d{word-spacing:-15.054544px;}
.ws60{word-spacing:-14.989090px;}
.ws62{word-spacing:-14.923635px;}
.ws5f{word-spacing:-14.661817px;}
.ws24{word-spacing:-14.471737px;}
.ws58{word-spacing:-14.465453px;}
.ws50{word-spacing:-14.203635px;}
.ws64{word-spacing:-13.941817px;}
.ws4e{word-spacing:-13.876362px;}
.ws85{word-spacing:-13.810908px;}
.ws56{word-spacing:-13.745453px;}
.ws4b{word-spacing:-13.614544px;}
.ws51{word-spacing:-13.549090px;}
.ws52{word-spacing:-13.483635px;}
.ws6c{word-spacing:-13.418181px;}
.ws71{word-spacing:-13.352726px;}
.ws3e{word-spacing:-13.287272px;}
.ws1{word-spacing:-13.270239px;}
.ws8{word-spacing:-13.269615px;}
.ws6{word-spacing:-13.268266px;}
.ws5{word-spacing:-13.268214px;}
.ws80{word-spacing:-13.090908px;}
.ws94{word-spacing:-13.025453px;}
.ws35{word-spacing:-12.959999px;}
.ws91{word-spacing:-12.894544px;}
.ws5d{word-spacing:-12.829090px;}
.ws42{word-spacing:-12.763635px;}
.ws34{word-spacing:-12.698181px;}
.ws3c{word-spacing:-12.501817px;}
.ws18{word-spacing:-12.436363px;}
.ws19{word-spacing:-12.370908px;}
.ws1f{word-spacing:-12.305454px;}
.ws38{word-spacing:-12.239999px;}
.ws1e{word-spacing:-12.174544px;}
.ws88{word-spacing:-12.110148px;}
.ws16{word-spacing:-12.109090px;}
.ws36{word-spacing:-12.043635px;}
.ws1d{word-spacing:-11.978181px;}
.ws5c{word-spacing:-11.912726px;}
.ws1a{word-spacing:-11.847272px;}
.ws41{word-spacing:-11.781817px;}
.ws40{word-spacing:-11.757181px;}
.ws3f{word-spacing:-11.716363px;}
.ws7d{word-spacing:-11.585454px;}
.ws7c{word-spacing:-11.519999px;}
.ws4a{word-spacing:-11.323635px;}
.ws37{word-spacing:-11.258181px;}
.ws45{word-spacing:-11.061817px;}
.ws5a{word-spacing:-10.865454px;}
.ws8d{word-spacing:-10.734545px;}
.ws48{word-spacing:-10.603635px;}
.ws8c{word-spacing:-10.538181px;}
.ws6d{word-spacing:-10.341817px;}
.ws49{word-spacing:-10.276363px;}
.ws11{word-spacing:-10.275471px;}
.ws12{word-spacing:-10.221673px;}
.ws3a{word-spacing:-10.145454px;}
.wse{word-spacing:-10.114077px;}
.ws2c{word-spacing:-9.986552px;}
.ws28{word-spacing:-9.984901px;}
.ws2a{word-spacing:-9.954911px;}
.ws29{word-spacing:-9.954118px;}
.wsd{word-spacing:-9.952682px;}
.ws25{word-spacing:-9.952270px;}
.ws54{word-spacing:-9.949090px;}
.ws2b{word-spacing:-9.948911px;}
.ws27{word-spacing:-9.902413px;}
.ws23{word-spacing:-9.900963px;}
.wsc{word-spacing:-9.898884px;}
.wsa{word-spacing:-9.845085px;}
.wsb{word-spacing:-9.791287px;}
.ws8b{word-spacing:-9.752726px;}
.ws81{word-spacing:-9.621817px;}
.ws73{word-spacing:-9.556363px;}
.ws4f{word-spacing:-9.490908px;}
.ws82{word-spacing:-9.359999px;}
.ws4c{word-spacing:-9.229090px;}
.ws79{word-spacing:-9.098181px;}
.ws32{word-spacing:-9.032727px;}
.ws7f{word-spacing:-8.967272px;}
.ws1b{word-spacing:-8.836363px;}
.ws55{word-spacing:-8.705454px;}
.ws30{word-spacing:-8.509090px;}
.ws90{word-spacing:-8.443636px;}
.ws15{word-spacing:-8.378181px;}
.ws3b{word-spacing:-8.312727px;}
.ws17{word-spacing:-8.247272px;}
.ws47{word-spacing:-7.919999px;}
.ws89{word-spacing:-7.789090px;}
.ws46{word-spacing:-7.723636px;}
.ws78{word-spacing:-7.658181px;}
.ws77{word-spacing:-7.592727px;}
.ws83{word-spacing:-7.134545px;}
.ws33{word-spacing:-7.003636px;}
.ws76{word-spacing:-6.938181px;}
.ws57{word-spacing:-6.872727px;}
.ws8f{word-spacing:-6.676363px;}
.ws2d{word-spacing:-6.635114px;}
.ws10{word-spacing:-6.617188px;}
.ws1c{word-spacing:-6.283636px;}
.ws74{word-spacing:-6.087272px;}
.ws53{word-spacing:-5.760000px;}
.ws75{word-spacing:-5.498181px;}
.ws26{word-spacing:-5.487425px;}
.ws8a{word-spacing:-5.432727px;}
.ws65{word-spacing:-4.974545px;}
.ws8e{word-spacing:-4.909091px;}
.wsf{word-spacing:-4.034871px;}
.ws6b{word-spacing:-3.469091px;}
.ws2f{word-spacing:0.000000px;}
.ws7{word-spacing:4.661821px;}
._1c{margin-left:-8.711730px;}
._1d{margin-left:-7.574794px;}
._14{margin-left:-6.283636px;}
._2{margin-left:-5.021171px;}
._1{margin-left:-3.845922px;}
._5{margin-left:-2.689914px;}
._4{margin-left:-1.237360px;}
._0{width:1.549390px;}
._3{width:3.081765px;}
._f{width:4.637413px;}
._6{width:12.410609px;}
._e{width:14.038856px;}
._11{width:15.375541px;}
._7{width:17.323046px;}
._a{width:18.589089px;}
._19{width:19.784394px;}
._8{width:20.819934px;}
._c{width:21.855541px;}
._d{width:23.759998px;}
._12{width:24.791375px;}
._16{width:26.786150px;}
._9{width:28.362454px;}
._20{width:29.389088px;}
._b{width:30.829088px;}
._17{width:32.727270px;}
._15{width:35.865510px;}
._10{width:37.630970px;}
._1b{width:38.808266px;}
._1a{width:41.024101px;}
._13{width:43.038600px;}
._1f{width:45.484629px;}
._18{width:48.465051px;}
._1e{width:52.379528px;}
.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;}
.fsa{font-size:51.805860px;}
.fs7{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs8{font-size:56.727300px;}
.fs9{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;}
.ybb{bottom:111.472500px;}
.yd9{bottom:116.523000px;}
.yf8{bottom:116.527500px;}
.y31{bottom:116.542500px;}
.y61{bottom:116.547000px;}
.ya7{bottom:116.607000px;}
.yd8{bottom:127.918500px;}
.yba{bottom:131.796000px;}
.y30{bottom:132.981000px;}
.y60{bottom:132.985500px;}
.ya6{bottom:133.045500px;}
.yd7{bottom:144.357000px;}
.yf7{bottom:147.295500px;}
.y2f{bottom:147.360000px;}
.yd6{bottom:149.400000px;}
.ya5{bottom:149.484000px;}
.y10e{bottom:152.119500px;}
.y2e{bottom:164.421000px;}
.yb9{bottom:164.428500px;}
.ya4{bottom:165.922500px;}
.yf6{bottom:167.619000px;}
.y10d{bottom:172.444500px;}
.y5f{bottom:172.504500px;}
.yd5{bottom:177.979500px;}
.y2d{bottom:180.859500px;}
.yb8{bottom:184.752000px;}
.yf5{bottom:187.942500px;}
.y10c{bottom:192.768000px;}
.y5e{bottom:192.829500px;}
.y2c{bottom:197.344500px;}
.yd4{bottom:198.303000px;}
.y80{bottom:198.964500px;}
.yb7{bottom:206.725500px;}
.yf4{bottom:208.266000px;}
.y10b{bottom:213.091500px;}
.y7f{bottom:213.153000px;}
.y2b{bottom:213.783000px;}
.yd3{bottom:218.626500px;}
.y5d{bottom:223.683000px;}
.yf3{bottom:228.591000px;}
.yb6{bottom:228.697500px;}
.ya3{bottom:229.969500px;}
.y10a{bottom:233.415000px;}
.y7e{bottom:233.476500px;}
.y2a{bottom:235.527000px;}
.yd2{bottom:238.950000px;}
.y29{bottom:246.921000px;}
.yf2{bottom:248.914500px;}
.yb5{bottom:249.021000px;}
.ya2{bottom:250.293000px;}
.y109{bottom:253.738500px;}
.y7d{bottom:253.800000px;}
.yd1{bottom:259.273500px;}
.y5c{bottom:267.418500px;}
.yf1{bottom:269.238000px;}
.yb4{bottom:269.344500px;}
.ya1{bottom:272.649000px;}
.y108{bottom:274.063500px;}
.y7c{bottom:274.123500px;}
.ycf{bottom:279.598500px;}
.yd0{bottom:285.733500px;}
.y5b{bottom:287.743500px;}
.yb3{bottom:289.669500px;}
.y28{bottom:289.689000px;}
.ya0{bottom:292.972500px;}
.y114{bottom:294.387000px;}
.y7b{bottom:294.448500px;}
.yce{bottom:299.922000px;}
.yf0{bottom:305.707500px;}
.y5a{bottom:308.067000px;}
.y27{bottom:310.012500px;}
.y107{bottom:310.533000px;}
.yb2{bottom:311.641500px;}
.y9f{bottom:313.297500px;}
.y113{bottom:314.710500px;}
.y7a{bottom:314.772000px;}
.ycd{bottom:320.245500px;}
.y59{bottom:328.390500px;}
.y25{bottom:330.337500px;}
.yb1{bottom:331.965000px;}
.y9e{bottom:333.621000px;}
.y112{bottom:335.034000px;}
.y79{bottom:335.095500px;}
.y26{bottom:336.474000px;}
.ycc{bottom:340.569000px;}
.y23{bottom:350.661000px;}
.yb0{bottom:352.288500px;}
.y9d{bottom:353.944500px;}
.y111{bottom:355.357500px;}
.y78{bottom:355.419000px;}
.y24{bottom:356.797500px;}
.yef{bottom:357.177000px;}
.ycb{bottom:360.892500px;}
.y106{bottom:361.432500px;}
.y58{bottom:364.860000px;}
.y22{bottom:370.984500px;}
.y110{bottom:375.682500px;}
.y77{bottom:375.742500px;}
.y9c{bottom:376.300500px;}
.yee{bottom:377.500500px;}
.yca{bottom:381.216000px;}
.y105{bottom:381.757500px;}
.yaf{bottom:384.693000px;}
.y21{bottom:391.308000px;}
.y10f{bottom:396.006000px;}
.y76{bottom:396.067500px;}
.y9b{bottom:396.624000px;}
.yed{bottom:397.824000px;}
.yc9{bottom:401.541000px;}
.yae{bottom:405.016500px;}
.y20{bottom:411.631500px;}
.y57{bottom:416.329500px;}
.y75{bottom:416.391000px;}
.yec{bottom:418.149000px;}
.y104{bottom:418.227000px;}
.yc8{bottom:421.864500px;}
.y9a{bottom:430.398000px;}
.y1f{bottom:431.956500px;}
.yad{bottom:435.870000px;}
.y56{bottom:436.653000px;}
.y74{bottom:436.714500px;}
.yeb{bottom:438.472500px;}
.yc7{bottom:442.188000px;}
.y99{bottom:450.721500px;}
.y1e{bottom:452.280000px;}
.y55{bottom:456.976500px;}
.y73{bottom:457.038000px;}
.yea{bottom:458.796000px;}
.yc6{bottom:462.511500px;}
.y103{bottom:469.126500px;}
.y98{bottom:471.045000px;}
.y1d{bottom:472.603500px;}
.y54{bottom:477.301500px;}
.y72{bottom:477.361500px;}
.ye9{bottom:479.119500px;}
.yc5{bottom:482.835000px;}
.y102{bottom:489.450000px;}
.y1c{bottom:492.927000px;}
.y53{bottom:497.625000px;}
.y71{bottom:497.686500px;}
.ye8{bottom:499.443000px;}
.y97{bottom:501.900000px;}
.yc4{bottom:503.160000px;}
.yac{bottom:505.518000px;}
.y101{bottom:509.775000px;}
.y1b{bottom:513.250500px;}
.y52{bottom:517.948500px;}
.y70{bottom:518.010000px;}
.ye7{bottom:519.768000px;}
.yab{bottom:523.450500px;}
.yc3{bottom:523.483500px;}
.y1a{bottom:533.575500px;}
.y51{bottom:538.272000px;}
.ye6{bottom:540.091500px;}
.yc2{bottom:543.807000px;}
.y96{bottom:545.038500px;}
.y100{bottom:546.244500px;}
.y19{bottom:553.899000px;}
.y6f{bottom:554.479500px;}
.y50{bottom:558.595500px;}
.ye5{bottom:560.415000px;}
.yc1{bottom:564.130500px;}
.y95{bottom:565.362000px;}
.y18{bottom:574.222500px;}
.y4f{bottom:578.920500px;}
.ye4{bottom:580.738500px;}
.yc0{bottom:584.454000px;}
.y94{bottom:585.685500px;}
.yff{bottom:597.144000px;}
.y4e{bottom:599.244000px;}
.ye3{bottom:601.062000px;}
.y6e{bottom:605.949000px;}
.y17{bottom:610.692000px;}
.y93{bottom:616.539000px;}
.yfe{bottom:617.467500px;}
.y4d{bottom:619.567500px;}
.ye2{bottom:621.387000px;}
.y6d{bottom:626.272500px;}
.ybf{bottom:631.294500px;}
.yfd{bottom:637.792500px;}
.y4c{bottom:639.891000px;}
.ye1{bottom:641.710500px;}
.y6c{bottom:646.596000px;}
.ybe{bottom:649.227000px;}
.yfc{bottom:658.116000px;}
.y4b{bottom:660.214500px;}
.y92{bottom:660.276000px;}
.ye0{bottom:662.034000px;}
.y6b{bottom:666.919500px;}
.yfb{bottom:678.439500px;}
.y4a{bottom:680.539500px;}
.y91{bottom:680.599500px;}
.y16{bottom:684.865500px;}
.y6a{bottom:687.243000px;}
.ydf{bottom:698.503500px;}
.yfa{bottom:698.763000px;}
.y49{bottom:700.863000px;}
.y90{bottom:700.923000px;}
.y15{bottom:701.304000px;}
.y69{bottom:707.568000px;}
.y48{bottom:721.186500px;}
.y8e{bottom:721.248000px;}
.y8f{bottom:727.384500px;}
.y68{bottom:727.891500px;}
.y14{bottom:729.165000px;}
.y47{bottom:741.510000px;}
.y8d{bottom:741.571500px;}
.y13{bottom:745.603500px;}
.y67{bottom:748.215000px;}
.yde{bottom:749.973000px;}
.yf9{bottom:755.190000px;}
.y46{bottom:761.833500px;}
.y8c{bottom:761.895000px;}
.y12{bottom:762.042000px;}
.y66{bottom:768.538500px;}
.ydd{bottom:770.296500px;}
.y11{bottom:778.479000px;}
.y45{bottom:782.158500px;}
.y8b{bottom:782.218500px;}
.y65{bottom:788.862000px;}
.y10{bottom:794.917500px;}
.y44{bottom:802.482000px;}
.y8a{bottom:802.542000px;}
.y64{bottom:809.187000px;}
.yf{bottom:811.356000px;}
.y43{bottom:822.805500px;}
.ye{bottom:827.794500px;}
.ydc{bottom:829.131000px;}
.y89{bottom:833.397000px;}
.y63{bottom:840.040500px;}
.y42{bottom:843.129000px;}
.yd{bottom:844.233000px;}
.ydb{bottom:847.063500px;}
.yc{bottom:860.671500px;}
.y41{bottom:863.452500px;}
.yda{bottom:864.996000px;}
.yb{bottom:877.110000px;}
.y88{bottom:877.132500px;}
.y40{bottom:883.777500px;}
.ya{bottom:893.548500px;}
.y87{bottom:897.457500px;}
.y3f{bottom:904.101000px;}
.y9{bottom:909.987000px;}
.y86{bottom:917.781000px;}
.y3e{bottom:924.424500px;}
.y8{bottom:926.425500px;}
.y85{bottom:938.104500px;}
.y7{bottom:942.862500px;}
.y3d{bottom:944.748000px;}
.y84{bottom:958.428000px;}
.y3c{bottom:965.071500px;}
.y83{bottom:978.751500px;}
.yaa{bottom:983.746500px;}
.y3b{bottom:985.396500px;}
.y6{bottom:993.037500px;}
.y82{bottom:999.076500px;}
.ya9{bottom:1004.070000px;}
.y3a{bottom:1005.720000px;}
.y5{bottom:1012.464000px;}
.ya8{bottom:1024.395000px;}
.y39{bottom:1026.043500px;}
.y81{bottom:1035.546000px;}
.y4{bottom:1041.792000px;}
.y38{bottom:1046.367000px;}
.y37{bottom:1066.690500px;}
.y62{bottom:1072.827000px;}
.y3{bottom:1080.646500px;}
.y36{bottom:1087.015500px;}
.ybd{bottom:1096.809000px;}
.y34{bottom:1107.339000px;}
.y35{bottom:1113.475500px;}
.y2{bottom:1113.523500px;}
.ybc{bottom:1117.132500px;}
.y33{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y32{bottom:1147.986000px;}
.hb{height:25.034105px;}
.h4{height:25.392760px;}
.he{height:28.907577px;}
.h14{height:37.662860px;}
.ha{height:38.089182px;}
.h12{height:41.240747px;}
.h9{height:42.205078px;}
.h13{height:42.321295px;}
.h6{height:43.361414px;}
.h5{height:45.687269px;}
.hd{height:46.212723px;}
.hc{height:47.073495px;}
.h10{height:50.068252px;}
.h8{height:52.756359px;}
.h7{height:60.081886px;}
.h3{height:65.441452px;}
.hf{height:66.745078px;}
.h11{height:66.751078px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x53{left:106.401000px;}
.x1{left:108.000000px;}
.x60{left:112.386000px;}
.x33{left:113.941500px;}
.x65{left:115.609500px;}
.x63{left:116.917500px;}
.x4{left:124.363500px;}
.x34{left:129.160500px;}
.x5e{left:130.533000px;}
.x5b{left:132.097500px;}
.x3b{left:134.983500px;}
.x49{left:137.839500px;}
.x66{left:143.050500px;}
.x5d{left:146.389500px;}
.x3c{left:148.909500px;}
.x64{left:156.496500px;}
.x3d{left:163.884000px;}
.x72{left:167.874000px;}
.xb{left:172.576500px;}
.x2{left:175.122000px;}
.x23{left:176.800500px;}
.x4a{left:189.685500px;}
.x24{left:192.019500px;}
.x3{left:195.870000px;}
.x3f{left:206.920500px;}
.x6a{left:215.263500px;}
.x5a{left:222.363000px;}
.x48{left:230.596500px;}
.x39{left:237.360000px;}
.x56{left:238.488000px;}
.x25{left:245.026500px;}
.x26{left:252.634500px;}
.x6c{left:258.757500px;}
.x50{left:267.373500px;}
.x7{left:274.483500px;}
.x4c{left:275.829000px;}
.x8{left:286.768500px;}
.x5f{left:291.598500px;}
.x61{left:295.560000px;}
.x4b{left:301.585500px;}
.x27{left:303.328500px;}
.x3a{left:310.878000px;}
.x58{left:314.995500px;}
.x4d{left:316.374000px;}
.x28{left:318.547500px;}
.x40{left:321.283500px;}
.x29{left:325.581000px;}
.x41{left:329.056500px;}
.xc{left:333.501000px;}
.x6b{left:337.794000px;}
.x76{left:338.956500px;}
.x2a{left:340.798500px;}
.xd{left:345.328500px;}
.x2f{left:350.577000px;}
.x2b{left:354.498000px;}
.x73{left:355.755000px;}
.x30{left:358.186500px;}
.x57{left:361.018500px;}
.x2c{left:369.715500px;}
.x21{left:385.930500px;}
.x78{left:396.282000px;}
.x6d{left:397.626000px;}
.x22{left:401.148000px;}
.x9{left:404.823000px;}
.x3e{left:408.946500px;}
.x1a{left:412.605000px;}
.x16{left:414.256500px;}
.xa{left:416.751000px;}
.x42{left:418.912500px;}
.x18{left:425.355000px;}
.x43{left:426.687000px;}
.x17{left:428.176500px;}
.x79{left:433.326000px;}
.x19{left:440.572500px;}
.x38{left:449.121000px;}
.x35{left:455.260500px;}
.x75{left:461.727000px;}
.x1b{left:464.521500px;}
.x36{left:467.508000px;}
.x7c{left:471.724500px;}
.x1c{left:479.740500px;}
.x1d{left:487.446000px;}
.x1f{left:489.901500px;}
.x54{left:492.687000px;}
.x1e{left:502.663500px;}
.x20{left:505.120500px;}
.x10{left:531.877500px;}
.x11{left:539.485500px;}
.x77{left:543.174000px;}
.x12{left:547.155000px;}
.x2d{left:550.921500px;}
.x13{left:554.764500px;}
.xe{left:555.933000px;}
.x67{left:561.862500px;}
.xf{left:563.542500px;}
.x2e{left:566.140500px;}
.x5{left:572.581500px;}
.x44{left:573.724500px;}
.x71{left:575.905500px;}
.x6{left:580.189500px;}
.x45{left:581.497500px;}
.x70{left:589.333500px;}
.x7b{left:592.491000px;}
.x6e{left:596.046000px;}
.x55{left:604.588500px;}
.x7a{left:615.148500px;}
.x4e{left:661.216500px;}
.x59{left:662.382000px;}
.x51{left:667.155000px;}
.x46{left:687.691500px;}
.x47{left:695.466000px;}
.x5c{left:703.225500px;}
.x37{left:711.243000px;}
.x6f{left:718.576500px;}
.x74{left:721.197000px;}
.x62{left:734.173500px;}
.x31{left:743.929500px;}
.x69{left:745.828500px;}
.x32{left:750.720000px;}
.x14{left:762.601500px;}
.x68{left:776.359500px;}
.x15{left:777.819000px;}
.x52{left:779.055000px;}
.x4f{left:783.748500px;}
@media print{
.v2{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.813333pt;}
.v1{vertical-align:23.909333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001457pt;}
.lsa{letter-spacing:0.001941pt;}
.lsd{letter-spacing:0.380935pt;}
.lse{letter-spacing:0.620935pt;}
.ls6{letter-spacing:2.053855pt;}
.ls8{letter-spacing:2.055602pt;}
.ls3{letter-spacing:2.058424pt;}
.ls0{letter-spacing:2.740243pt;}
.lsf{letter-spacing:2.947178pt;}
.lsc{letter-spacing:3.227153pt;}
.ls7{letter-spacing:11.955307pt;}
.ls5{letter-spacing:14.544001pt;}
.lsb{letter-spacing:14.549334pt;}
.ls2{letter-spacing:18.684113pt;}
.ls1{letter-spacing:31.881934pt;}
.ws87{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws13{word-spacing:-58.181813pt;}
.ws43{word-spacing:-57.384800pt;}
.ws5b{word-spacing:-53.651420pt;}
.ws68{word-spacing:-48.996831pt;}
.ws44{word-spacing:-47.820680pt;}
.ws66{word-spacing:-44.101286pt;}
.ws67{word-spacing:-44.048152pt;}
.ws5e{word-spacing:-43.636360pt;}
.ws3{word-spacing:-42.507253pt;}
.ws7a{word-spacing:-41.232046pt;}
.ws69{word-spacing:-40.860108pt;}
.ws6a{word-spacing:-40.806973pt;}
.ws7b{word-spacing:-39.903694pt;}
.ws6f{word-spacing:-39.850560pt;}
.ws6e{word-spacing:-39.691158pt;}
.ws14{word-spacing:-38.256533pt;}
.ws22{word-spacing:-35.913341pt;}
.ws9{word-spacing:-35.865520pt;}
.ws2{word-spacing:-27.735994pt;}
.ws39{word-spacing:-25.309089pt;}
.ws61{word-spacing:-21.379889pt;}
.ws2e{word-spacing:-20.802002pt;}
.ws59{word-spacing:-20.247266pt;}
.ws70{word-spacing:-19.525053pt;}
.ws4{word-spacing:-18.490655pt;}
.ws95{word-spacing:-15.127271pt;}
.ws72{word-spacing:-15.069090pt;}
.ws31{word-spacing:-15.010908pt;}
.ws92{word-spacing:-14.952726pt;}
.ws84{word-spacing:-14.370908pt;}
.ws93{word-spacing:-14.312726pt;}
.ws20{word-spacing:-13.963635pt;}
.ws21{word-spacing:-13.905453pt;}
.ws63{word-spacing:-13.867986pt;}
.ws7e{word-spacing:-13.847272pt;}
.ws4d{word-spacing:-13.730908pt;}
.ws86{word-spacing:-13.498181pt;}
.ws3d{word-spacing:-13.381817pt;}
.ws60{word-spacing:-13.323635pt;}
.ws62{word-spacing:-13.265453pt;}
.ws5f{word-spacing:-13.032726pt;}
.ws24{word-spacing:-12.863767pt;}
.ws58{word-spacing:-12.858181pt;}
.ws50{word-spacing:-12.625453pt;}
.ws64{word-spacing:-12.392726pt;}
.ws4e{word-spacing:-12.334544pt;}
.ws85{word-spacing:-12.276363pt;}
.ws56{word-spacing:-12.218181pt;}
.ws4b{word-spacing:-12.101817pt;}
.ws51{word-spacing:-12.043635pt;}
.ws52{word-spacing:-11.985454pt;}
.ws6c{word-spacing:-11.927272pt;}
.ws71{word-spacing:-11.869090pt;}
.ws3e{word-spacing:-11.810908pt;}
.ws1{word-spacing:-11.795768pt;}
.ws8{word-spacing:-11.795214pt;}
.ws6{word-spacing:-11.794014pt;}
.ws5{word-spacing:-11.793968pt;}
.ws80{word-spacing:-11.636363pt;}
.ws94{word-spacing:-11.578181pt;}
.ws35{word-spacing:-11.519999pt;}
.ws91{word-spacing:-11.461817pt;}
.ws5d{word-spacing:-11.403635pt;}
.ws42{word-spacing:-11.345454pt;}
.ws34{word-spacing:-11.287272pt;}
.ws3c{word-spacing:-11.112726pt;}
.ws18{word-spacing:-11.054545pt;}
.ws19{word-spacing:-10.996363pt;}
.ws1f{word-spacing:-10.938181pt;}
.ws38{word-spacing:-10.879999pt;}
.ws1e{word-spacing:-10.821817pt;}
.ws88{word-spacing:-10.764576pt;}
.ws16{word-spacing:-10.763635pt;}
.ws36{word-spacing:-10.705454pt;}
.ws1d{word-spacing:-10.647272pt;}
.ws5c{word-spacing:-10.589090pt;}
.ws1a{word-spacing:-10.530908pt;}
.ws41{word-spacing:-10.472726pt;}
.ws40{word-spacing:-10.450827pt;}
.ws3f{word-spacing:-10.414545pt;}
.ws7d{word-spacing:-10.298181pt;}
.ws7c{word-spacing:-10.239999pt;}
.ws4a{word-spacing:-10.065454pt;}
.ws37{word-spacing:-10.007272pt;}
.ws45{word-spacing:-9.832726pt;}
.ws5a{word-spacing:-9.658181pt;}
.ws8d{word-spacing:-9.541817pt;}
.ws48{word-spacing:-9.425454pt;}
.ws8c{word-spacing:-9.367272pt;}
.ws6d{word-spacing:-9.192727pt;}
.ws49{word-spacing:-9.134545pt;}
.ws11{word-spacing:-9.133752pt;}
.ws12{word-spacing:-9.085932pt;}
.ws3a{word-spacing:-9.018181pt;}
.wse{word-spacing:-8.990290pt;}
.ws2c{word-spacing:-8.876935pt;}
.ws28{word-spacing:-8.875468pt;}
.ws2a{word-spacing:-8.848810pt;}
.ws29{word-spacing:-8.848105pt;}
.wsd{word-spacing:-8.846828pt;}
.ws25{word-spacing:-8.846462pt;}
.ws54{word-spacing:-8.843636pt;}
.ws2b{word-spacing:-8.843476pt;}
.ws27{word-spacing:-8.802145pt;}
.ws23{word-spacing:-8.800856pt;}
.wsc{word-spacing:-8.799008pt;}
.wsa{word-spacing:-8.751187pt;}
.wsb{word-spacing:-8.703366pt;}
.ws8b{word-spacing:-8.669090pt;}
.ws81{word-spacing:-8.552727pt;}
.ws73{word-spacing:-8.494545pt;}
.ws4f{word-spacing:-8.436363pt;}
.ws82{word-spacing:-8.319999pt;}
.ws4c{word-spacing:-8.203636pt;}
.ws79{word-spacing:-8.087272pt;}
.ws32{word-spacing:-8.029090pt;}
.ws7f{word-spacing:-7.970908pt;}
.ws1b{word-spacing:-7.854545pt;}
.ws55{word-spacing:-7.738181pt;}
.ws30{word-spacing:-7.563636pt;}
.ws90{word-spacing:-7.505454pt;}
.ws15{word-spacing:-7.447272pt;}
.ws3b{word-spacing:-7.389090pt;}
.ws17{word-spacing:-7.330908pt;}
.ws47{word-spacing:-7.039999pt;}
.ws89{word-spacing:-6.923636pt;}
.ws46{word-spacing:-6.865454pt;}
.ws78{word-spacing:-6.807272pt;}
.ws77{word-spacing:-6.749090pt;}
.ws83{word-spacing:-6.341818pt;}
.ws33{word-spacing:-6.225454pt;}
.ws76{word-spacing:-6.167272pt;}
.ws57{word-spacing:-6.109090pt;}
.ws8f{word-spacing:-5.934545pt;}
.ws2d{word-spacing:-5.897879pt;}
.ws10{word-spacing:-5.881945pt;}
.ws1c{word-spacing:-5.585454pt;}
.ws74{word-spacing:-5.410909pt;}
.ws53{word-spacing:-5.120000pt;}
.ws75{word-spacing:-4.887272pt;}
.ws26{word-spacing:-4.877711pt;}
.ws8a{word-spacing:-4.829091pt;}
.ws65{word-spacing:-4.421818pt;}
.ws8e{word-spacing:-4.363636pt;}
.wsf{word-spacing:-3.586552pt;}
.ws6b{word-spacing:-3.083636pt;}
.ws2f{word-spacing:0.000000pt;}
.ws7{word-spacing:4.143841pt;}
._1c{margin-left:-7.743760pt;}
._1d{margin-left:-6.733150pt;}
._14{margin-left:-5.585454pt;}
._2{margin-left:-4.463263pt;}
._1{margin-left:-3.418598pt;}
._5{margin-left:-2.391035pt;}
._4{margin-left:-1.099876pt;}
._0{width:1.377235pt;}
._3{width:2.739347pt;}
._f{width:4.122145pt;}
._6{width:11.031653pt;}
._e{width:12.478983pt;}
._11{width:13.667148pt;}
._7{width:15.398263pt;}
._a{width:16.523635pt;}
._19{width:17.586128pt;}
._8{width:18.506608pt;}
._c{width:19.427147pt;}
._d{width:21.119998pt;}
._12{width:22.036778pt;}
._16{width:23.809911pt;}
._9{width:25.211070pt;}
._20{width:26.123634pt;}
._b{width:27.403634pt;}
._17{width:29.090907pt;}
._15{width:31.880453pt;}
._10{width:33.449751pt;}
._1b{width:34.496237pt;}
._1a{width:36.465868pt;}
._13{width:38.256533pt;}
._1f{width:40.430782pt;}
._18{width:43.080046pt;}
._1e{width:46.559580pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fsa{font-size:46.049653pt;}
.fs7{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs8{font-size:50.424267pt;}
.fs9{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;}
.ybb{bottom:99.086667pt;}
.yd9{bottom:103.576000pt;}
.yf8{bottom:103.580000pt;}
.y31{bottom:103.593333pt;}
.y61{bottom:103.597333pt;}
.ya7{bottom:103.650667pt;}
.yd8{bottom:113.705333pt;}
.yba{bottom:117.152000pt;}
.y30{bottom:118.205333pt;}
.y60{bottom:118.209333pt;}
.ya6{bottom:118.262667pt;}
.yd7{bottom:128.317333pt;}
.yf7{bottom:130.929333pt;}
.y2f{bottom:130.986667pt;}
.yd6{bottom:132.800000pt;}
.ya5{bottom:132.874667pt;}
.y10e{bottom:135.217333pt;}
.y2e{bottom:146.152000pt;}
.yb9{bottom:146.158667pt;}
.ya4{bottom:147.486667pt;}
.yf6{bottom:148.994667pt;}
.y10d{bottom:153.284000pt;}
.y5f{bottom:153.337333pt;}
.yd5{bottom:158.204000pt;}
.y2d{bottom:160.764000pt;}
.yb8{bottom:164.224000pt;}
.yf5{bottom:167.060000pt;}
.y10c{bottom:171.349333pt;}
.y5e{bottom:171.404000pt;}
.y2c{bottom:175.417333pt;}
.yd4{bottom:176.269333pt;}
.y80{bottom:176.857333pt;}
.yb7{bottom:183.756000pt;}
.yf4{bottom:185.125333pt;}
.y10b{bottom:189.414667pt;}
.y7f{bottom:189.469333pt;}
.y2b{bottom:190.029333pt;}
.yd3{bottom:194.334667pt;}
.y5d{bottom:198.829333pt;}
.yf3{bottom:203.192000pt;}
.yb6{bottom:203.286667pt;}
.ya3{bottom:204.417333pt;}
.y10a{bottom:207.480000pt;}
.y7e{bottom:207.534667pt;}
.y2a{bottom:209.357333pt;}
.yd2{bottom:212.400000pt;}
.y29{bottom:219.485333pt;}
.yf2{bottom:221.257333pt;}
.yb5{bottom:221.352000pt;}
.ya2{bottom:222.482667pt;}
.y109{bottom:225.545333pt;}
.y7d{bottom:225.600000pt;}
.yd1{bottom:230.465333pt;}
.y5c{bottom:237.705333pt;}
.yf1{bottom:239.322667pt;}
.yb4{bottom:239.417333pt;}
.ya1{bottom:242.354667pt;}
.y108{bottom:243.612000pt;}
.y7c{bottom:243.665333pt;}
.ycf{bottom:248.532000pt;}
.yd0{bottom:253.985333pt;}
.y5b{bottom:255.772000pt;}
.yb3{bottom:257.484000pt;}
.y28{bottom:257.501333pt;}
.ya0{bottom:260.420000pt;}
.y114{bottom:261.677333pt;}
.y7b{bottom:261.732000pt;}
.yce{bottom:266.597333pt;}
.yf0{bottom:271.740000pt;}
.y5a{bottom:273.837333pt;}
.y27{bottom:275.566667pt;}
.y107{bottom:276.029333pt;}
.yb2{bottom:277.014667pt;}
.y9f{bottom:278.486667pt;}
.y113{bottom:279.742667pt;}
.y7a{bottom:279.797333pt;}
.ycd{bottom:284.662667pt;}
.y59{bottom:291.902667pt;}
.y25{bottom:293.633333pt;}
.yb1{bottom:295.080000pt;}
.y9e{bottom:296.552000pt;}
.y112{bottom:297.808000pt;}
.y79{bottom:297.862667pt;}
.y26{bottom:299.088000pt;}
.ycc{bottom:302.728000pt;}
.y23{bottom:311.698667pt;}
.yb0{bottom:313.145333pt;}
.y9d{bottom:314.617333pt;}
.y111{bottom:315.873333pt;}
.y78{bottom:315.928000pt;}
.y24{bottom:317.153333pt;}
.yef{bottom:317.490667pt;}
.ycb{bottom:320.793333pt;}
.y106{bottom:321.273333pt;}
.y58{bottom:324.320000pt;}
.y22{bottom:329.764000pt;}
.y110{bottom:333.940000pt;}
.y77{bottom:333.993333pt;}
.y9c{bottom:334.489333pt;}
.yee{bottom:335.556000pt;}
.yca{bottom:338.858667pt;}
.y105{bottom:339.340000pt;}
.yaf{bottom:341.949333pt;}
.y21{bottom:347.829333pt;}
.y10f{bottom:352.005333pt;}
.y76{bottom:352.060000pt;}
.y9b{bottom:352.554667pt;}
.yed{bottom:353.621333pt;}
.yc9{bottom:356.925333pt;}
.yae{bottom:360.014667pt;}
.y20{bottom:365.894667pt;}
.y57{bottom:370.070667pt;}
.y75{bottom:370.125333pt;}
.yec{bottom:371.688000pt;}
.y104{bottom:371.757333pt;}
.yc8{bottom:374.990667pt;}
.y9a{bottom:382.576000pt;}
.y1f{bottom:383.961333pt;}
.yad{bottom:387.440000pt;}
.y56{bottom:388.136000pt;}
.y74{bottom:388.190667pt;}
.yeb{bottom:389.753333pt;}
.yc7{bottom:393.056000pt;}
.y99{bottom:400.641333pt;}
.y1e{bottom:402.026667pt;}
.y55{bottom:406.201333pt;}
.y73{bottom:406.256000pt;}
.yea{bottom:407.818667pt;}
.yc6{bottom:411.121333pt;}
.y103{bottom:417.001333pt;}
.y98{bottom:418.706667pt;}
.y1d{bottom:420.092000pt;}
.y54{bottom:424.268000pt;}
.y72{bottom:424.321333pt;}
.ye9{bottom:425.884000pt;}
.yc5{bottom:429.186667pt;}
.y102{bottom:435.066667pt;}
.y1c{bottom:438.157333pt;}
.y53{bottom:442.333333pt;}
.y71{bottom:442.388000pt;}
.ye8{bottom:443.949333pt;}
.y97{bottom:446.133333pt;}
.yc4{bottom:447.253333pt;}
.yac{bottom:449.349333pt;}
.y101{bottom:453.133333pt;}
.y1b{bottom:456.222667pt;}
.y52{bottom:460.398667pt;}
.y70{bottom:460.453333pt;}
.ye7{bottom:462.016000pt;}
.yab{bottom:465.289333pt;}
.yc3{bottom:465.318667pt;}
.y1a{bottom:474.289333pt;}
.y51{bottom:478.464000pt;}
.ye6{bottom:480.081333pt;}
.yc2{bottom:483.384000pt;}
.y96{bottom:484.478667pt;}
.y100{bottom:485.550667pt;}
.y19{bottom:492.354667pt;}
.y6f{bottom:492.870667pt;}
.y50{bottom:496.529333pt;}
.ye5{bottom:498.146667pt;}
.yc1{bottom:501.449333pt;}
.y95{bottom:502.544000pt;}
.y18{bottom:510.420000pt;}
.y4f{bottom:514.596000pt;}
.ye4{bottom:516.212000pt;}
.yc0{bottom:519.514667pt;}
.y94{bottom:520.609333pt;}
.yff{bottom:530.794667pt;}
.y4e{bottom:532.661333pt;}
.ye3{bottom:534.277333pt;}
.y6e{bottom:538.621333pt;}
.y17{bottom:542.837333pt;}
.y93{bottom:548.034667pt;}
.yfe{bottom:548.860000pt;}
.y4d{bottom:550.726667pt;}
.ye2{bottom:552.344000pt;}
.y6d{bottom:556.686667pt;}
.ybf{bottom:561.150667pt;}
.yfd{bottom:566.926667pt;}
.y4c{bottom:568.792000pt;}
.ye1{bottom:570.409333pt;}
.y6c{bottom:574.752000pt;}
.ybe{bottom:577.090667pt;}
.yfc{bottom:584.992000pt;}
.y4b{bottom:586.857333pt;}
.y92{bottom:586.912000pt;}
.ye0{bottom:588.474667pt;}
.y6b{bottom:592.817333pt;}
.yfb{bottom:603.057333pt;}
.y4a{bottom:604.924000pt;}
.y91{bottom:604.977333pt;}
.y16{bottom:608.769333pt;}
.y6a{bottom:610.882667pt;}
.ydf{bottom:620.892000pt;}
.yfa{bottom:621.122667pt;}
.y49{bottom:622.989333pt;}
.y90{bottom:623.042667pt;}
.y15{bottom:623.381333pt;}
.y69{bottom:628.949333pt;}
.y48{bottom:641.054667pt;}
.y8e{bottom:641.109333pt;}
.y8f{bottom:646.564000pt;}
.y68{bottom:647.014667pt;}
.y14{bottom:648.146667pt;}
.y47{bottom:659.120000pt;}
.y8d{bottom:659.174667pt;}
.y13{bottom:662.758667pt;}
.y67{bottom:665.080000pt;}
.yde{bottom:666.642667pt;}
.yf9{bottom:671.280000pt;}
.y46{bottom:677.185333pt;}
.y8c{bottom:677.240000pt;}
.y12{bottom:677.370667pt;}
.y66{bottom:683.145333pt;}
.ydd{bottom:684.708000pt;}
.y11{bottom:691.981333pt;}
.y45{bottom:695.252000pt;}
.y8b{bottom:695.305333pt;}
.y65{bottom:701.210667pt;}
.y10{bottom:706.593333pt;}
.y44{bottom:713.317333pt;}
.y8a{bottom:713.370667pt;}
.y64{bottom:719.277333pt;}
.yf{bottom:721.205333pt;}
.y43{bottom:731.382667pt;}
.ye{bottom:735.817333pt;}
.ydc{bottom:737.005333pt;}
.y89{bottom:740.797333pt;}
.y63{bottom:746.702667pt;}
.y42{bottom:749.448000pt;}
.yd{bottom:750.429333pt;}
.ydb{bottom:752.945333pt;}
.yc{bottom:765.041333pt;}
.y41{bottom:767.513333pt;}
.yda{bottom:768.885333pt;}
.yb{bottom:779.653333pt;}
.y88{bottom:779.673333pt;}
.y40{bottom:785.580000pt;}
.ya{bottom:794.265333pt;}
.y87{bottom:797.740000pt;}
.y3f{bottom:803.645333pt;}
.y9{bottom:808.877333pt;}
.y86{bottom:815.805333pt;}
.y3e{bottom:821.710667pt;}
.y8{bottom:823.489333pt;}
.y85{bottom:833.870667pt;}
.y7{bottom:838.100000pt;}
.y3d{bottom:839.776000pt;}
.y84{bottom:851.936000pt;}
.y3c{bottom:857.841333pt;}
.y83{bottom:870.001333pt;}
.yaa{bottom:874.441333pt;}
.y3b{bottom:875.908000pt;}
.y6{bottom:882.700000pt;}
.y82{bottom:888.068000pt;}
.ya9{bottom:892.506667pt;}
.y3a{bottom:893.973333pt;}
.y5{bottom:899.968000pt;}
.ya8{bottom:910.573333pt;}
.y39{bottom:912.038667pt;}
.y81{bottom:920.485333pt;}
.y4{bottom:926.037333pt;}
.y38{bottom:930.104000pt;}
.y37{bottom:948.169333pt;}
.y62{bottom:953.624000pt;}
.y3{bottom:960.574667pt;}
.y36{bottom:966.236000pt;}
.ybd{bottom:974.941333pt;}
.y34{bottom:984.301333pt;}
.y35{bottom:989.756000pt;}
.y2{bottom:989.798667pt;}
.ybc{bottom:993.006667pt;}
.y33{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y32{bottom:1020.432000pt;}
.hb{height:22.252538pt;}
.h4{height:22.571342pt;}
.he{height:25.695624pt;}
.h14{height:33.478098pt;}
.ha{height:33.857051pt;}
.h12{height:36.658442pt;}
.h9{height:37.515625pt;}
.h13{height:37.618929pt;}
.h6{height:38.543479pt;}
.h5{height:40.610906pt;}
.hd{height:41.077976pt;}
.hc{height:41.843107pt;}
.h10{height:44.505113pt;}
.h8{height:46.894542pt;}
.h7{height:53.406121pt;}
.h3{height:58.170180pt;}
.hf{height:59.328958pt;}
.h11{height:59.334291pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x53{left:94.578667pt;}
.x1{left:96.000000pt;}
.x60{left:99.898667pt;}
.x33{left:101.281333pt;}
.x65{left:102.764000pt;}
.x63{left:103.926667pt;}
.x4{left:110.545333pt;}
.x34{left:114.809333pt;}
.x5e{left:116.029333pt;}
.x5b{left:117.420000pt;}
.x3b{left:119.985333pt;}
.x49{left:122.524000pt;}
.x66{left:127.156000pt;}
.x5d{left:130.124000pt;}
.x3c{left:132.364000pt;}
.x64{left:139.108000pt;}
.x3d{left:145.674667pt;}
.x72{left:149.221333pt;}
.xb{left:153.401333pt;}
.x2{left:155.664000pt;}
.x23{left:157.156000pt;}
.x4a{left:168.609333pt;}
.x24{left:170.684000pt;}
.x3{left:174.106667pt;}
.x3f{left:183.929333pt;}
.x6a{left:191.345333pt;}
.x5a{left:197.656000pt;}
.x48{left:204.974667pt;}
.x39{left:210.986667pt;}
.x56{left:211.989333pt;}
.x25{left:217.801333pt;}
.x26{left:224.564000pt;}
.x6c{left:230.006667pt;}
.x50{left:237.665333pt;}
.x7{left:243.985333pt;}
.x4c{left:245.181333pt;}
.x8{left:254.905333pt;}
.x5f{left:259.198667pt;}
.x61{left:262.720000pt;}
.x4b{left:268.076000pt;}
.x27{left:269.625333pt;}
.x3a{left:276.336000pt;}
.x58{left:279.996000pt;}
.x4d{left:281.221333pt;}
.x28{left:283.153333pt;}
.x40{left:285.585333pt;}
.x29{left:289.405333pt;}
.x41{left:292.494667pt;}
.xc{left:296.445333pt;}
.x6b{left:300.261333pt;}
.x76{left:301.294667pt;}
.x2a{left:302.932000pt;}
.xd{left:306.958667pt;}
.x2f{left:311.624000pt;}
.x2b{left:315.109333pt;}
.x73{left:316.226667pt;}
.x30{left:318.388000pt;}
.x57{left:320.905333pt;}
.x2c{left:328.636000pt;}
.x21{left:343.049333pt;}
.x78{left:352.250667pt;}
.x6d{left:353.445333pt;}
.x22{left:356.576000pt;}
.x9{left:359.842667pt;}
.x3e{left:363.508000pt;}
.x1a{left:366.760000pt;}
.x16{left:368.228000pt;}
.xa{left:370.445333pt;}
.x42{left:372.366667pt;}
.x18{left:378.093333pt;}
.x43{left:379.277333pt;}
.x17{left:380.601333pt;}
.x79{left:385.178667pt;}
.x19{left:391.620000pt;}
.x38{left:399.218667pt;}
.x35{left:404.676000pt;}
.x75{left:410.424000pt;}
.x1b{left:412.908000pt;}
.x36{left:415.562667pt;}
.x7c{left:419.310667pt;}
.x1c{left:426.436000pt;}
.x1d{left:433.285333pt;}
.x1f{left:435.468000pt;}
.x54{left:437.944000pt;}
.x1e{left:446.812000pt;}
.x20{left:448.996000pt;}
.x10{left:472.780000pt;}
.x11{left:479.542667pt;}
.x77{left:482.821333pt;}
.x12{left:486.360000pt;}
.x2d{left:489.708000pt;}
.x13{left:493.124000pt;}
.xe{left:494.162667pt;}
.x67{left:499.433333pt;}
.xf{left:500.926667pt;}
.x2e{left:503.236000pt;}
.x5{left:508.961333pt;}
.x44{left:509.977333pt;}
.x71{left:511.916000pt;}
.x6{left:515.724000pt;}
.x45{left:516.886667pt;}
.x70{left:523.852000pt;}
.x7b{left:526.658667pt;}
.x6e{left:529.818667pt;}
.x55{left:537.412000pt;}
.x7a{left:546.798667pt;}
.x4e{left:587.748000pt;}
.x59{left:588.784000pt;}
.x51{left:593.026667pt;}
.x46{left:611.281333pt;}
.x47{left:618.192000pt;}
.x5c{left:625.089333pt;}
.x37{left:632.216000pt;}
.x6f{left:638.734667pt;}
.x74{left:641.064000pt;}
.x62{left:652.598667pt;}
.x31{left:661.270667pt;}
.x69{left:662.958667pt;}
.x32{left:667.306667pt;}
.x14{left:677.868000pt;}
.x68{left:690.097333pt;}
.x15{left:691.394667pt;}
.x52{left:692.493333pt;}
.x4f{left:696.665333pt;}
}




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