
    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_07927248313c8a64b7a229ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_97e1704d1baed45b2dddb495.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_63e3e5f325d49ac80a69d448.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_617d7a9e1f8af882b504a863.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_be7860afb9d4c72b9b71e2fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.040000;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_ee425262ba63b9e65b284c37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m18{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);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1f{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);}
.m8{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);}
.m2{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);}
.m25{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);}
.md{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);}
.m9{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);}
.m22{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);}
.m21{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);}
.m10{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);}
.ma{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);}
.mc{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);}
.m20{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);}
.me{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);}
.m26{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);}
.m12{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);}
.m11{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);}
.m1b{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);}
.m23{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);}
.m27{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);}
.m19{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);}
.mb{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);}
.m15{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);}
.m7{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);}
.m6{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);}
.m1d{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);}
.m29{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);}
.m28{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);}
.m5{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);}
.m24{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);}
.m13{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.884000px;}
.v1{vertical-align:19.530000px;}
.v4{vertical-align:28.392000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000566px;}
.ls1f{letter-spacing:0.000699px;}
.ls14{letter-spacing:0.001036px;}
.ls22{letter-spacing:0.002045px;}
.ls16{letter-spacing:0.002074px;}
.ls1d{letter-spacing:0.002090px;}
.ls1a{letter-spacing:0.002461px;}
.ls15{letter-spacing:0.002544px;}
.lse{letter-spacing:0.003717px;}
.ls17{letter-spacing:0.004090px;}
.ls12{letter-spacing:0.004343px;}
.ls1c{letter-spacing:0.004560px;}
.ls11{letter-spacing:0.004800px;}
.ls9{letter-spacing:0.572693px;}
.lsa{letter-spacing:0.578693px;}
.ls4{letter-spacing:0.642088px;}
.lsd{letter-spacing:0.648088px;}
.ls5{letter-spacing:2.983200px;}
.ls6{letter-spacing:2.984323px;}
.ls7{letter-spacing:2.987674px;}
.lsb{letter-spacing:2.988600px;}
.ls0{letter-spacing:10.461300px;}
.ls2{letter-spacing:11.954850px;}
.lsf{letter-spacing:13.165733px;}
.ls19{letter-spacing:13.206580px;}
.ls10{letter-spacing:13.448400px;}
.ls21{letter-spacing:13.451510px;}
.ls18{letter-spacing:13.454400px;}
.ls1e{letter-spacing:13.595901px;}
.ls1b{letter-spacing:13.617473px;}
.ls20{letter-spacing:14.120988px;}
.ls1{letter-spacing:28.453654px;}
.ls8{letter-spacing:364.181660px;}
.lsc{letter-spacing:692.234467px;}
.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;}
}
.ws2f{word-spacing:-14.943900px;}
.ws9b{word-spacing:-13.449600px;}
.ws2b{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.ws26{word-spacing:-2.929004px;}
.ws34{word-spacing:-2.869229px;}
.ws76{word-spacing:-2.689902px;}
.ws31{word-spacing:-2.331248px;}
.ws79{word-spacing:-1.972595px;}
.ws4e{word-spacing:-1.853044px;}
.ws7f{word-spacing:-1.793268px;}
.ws89{word-spacing:-1.733492px;}
.ws8a{word-spacing:-1.673717px;}
.wsac{word-spacing:-1.506355px;}
.ws7e{word-spacing:-1.434614px;}
.ws30{word-spacing:-1.255288px;}
.ws82{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws78{word-spacing:-1.135736px;}
.wsab{word-spacing:-1.129766px;}
.ws3c{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws15{word-spacing:-1.022170px;}
.ws49{word-spacing:-0.956410px;}
.ws4d{word-spacing:-0.836858px;}
.ws8d{word-spacing:-0.777083px;}
.ws85{word-spacing:-0.717307px;}
.ws3d{word-spacing:-0.657532px;}
.ws88{word-spacing:-0.478205px;}
.ws32{word-spacing:-0.358654px;}
.ws9a{word-spacing:-0.322790px;}
.ws25{word-spacing:-0.298878px;}
.ws9d{word-spacing:-0.268992px;}
.ws20{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.ws2e{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.wsae{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws98{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.wsbc{word-spacing:-0.028214px;}
.wsad{word-spacing:-0.026438px;}
.ws62{word-spacing:-0.007978px;}
.wsc3{word-spacing:-0.006998px;}
.wsb5{word-spacing:-0.006192px;}
.wsba{word-spacing:-0.006019px;}
.wsa7{word-spacing:-0.004378px;}
.ws2a{word-spacing:-0.003082px;}
.ws3{word-spacing:-0.002861px;}
.wsbe{word-spacing:-0.002438px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.053798px;}
.wsb8{word-spacing:0.056418px;}
.ws27{word-spacing:0.059776px;}
.wsb2{word-spacing:0.089440px;}
.ws9e{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.ws17{word-spacing:0.161395px;}
.ws44{word-spacing:0.179327px;}
.ws65{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws1f{word-spacing:0.298878px;}
.ws38{word-spacing:0.358654px;}
.ws83{word-spacing:0.418429px;}
.wsa3{word-spacing:0.430387px;}
.ws23{word-spacing:0.478205px;}
.wsb7{word-spacing:0.484186px;}
.ws7b{word-spacing:0.537980px;}
.wsa2{word-spacing:0.591782px;}
.ws8c{word-spacing:0.717307px;}
.ws43{word-spacing:0.777083px;}
.ws4f{word-spacing:0.836858px;}
.wsa6{word-spacing:0.860774px;}
.ws46{word-spacing:0.896634px;}
.ws12{word-spacing:0.914573px;}
.ws47{word-spacing:0.956410px;}
.ws7{word-spacing:1.004227px;}
.ws2d{word-spacing:1.016185px;}
.ws4b{word-spacing:1.075961px;}
.ws13{word-spacing:1.129766px;}
.ws22{word-spacing:1.135736px;}
.ws45{word-spacing:1.195512px;}
.ws54{word-spacing:1.255288px;}
.ws50{word-spacing:1.374839px;}
.ws90{word-spacing:1.434614px;}
.wsa1{word-spacing:1.560154px;}
.ws36{word-spacing:1.613941px;}
.ws81{word-spacing:1.673717px;}
.ws77{word-spacing:1.733492px;}
.ws3a{word-spacing:1.793268px;}
.ws52{word-spacing:1.853044px;}
.ws1a{word-spacing:1.936742px;}
.ws91{word-spacing:2.032370px;}
.wsa0{word-spacing:2.044339px;}
.ws5b{word-spacing:2.092146px;}
.wsa4{word-spacing:2.098138px;}
.ws51{word-spacing:2.271473px;}
.ws48{word-spacing:2.391024px;}
.ws19{word-spacing:2.420928px;}
.ws87{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.514236px;}
.wsc0{word-spacing:2.528525px;}
.wsc1{word-spacing:2.582323px;}
.ws29{word-spacing:2.630126px;}
.ws8e{word-spacing:2.689902px;}
.ws74{word-spacing:2.749678px;}
.ws11{word-spacing:2.869236px;}
.ws94{word-spacing:2.929004px;}
.wsa5{word-spacing:3.012710px;}
.ws97{word-spacing:3.168107px;}
.ws16{word-spacing:3.174106px;}
.ws1c{word-spacing:3.219667px;}
.wsaf{word-spacing:3.220858px;}
.ws9c{word-spacing:3.222067px;}
.wsa9{word-spacing:3.223488px;}
.wsaa{word-spacing:3.223536px;}
.wsb9{word-spacing:3.223565px;}
.ws99{word-spacing:3.224822px;}
.ws9f{word-spacing:3.227904px;}
.wsc2{word-spacing:3.228278px;}
.wsbd{word-spacing:3.230131px;}
.wsbf{word-spacing:3.281702px;}
.ws93{word-spacing:3.287658px;}
.wsbb{word-spacing:3.335501px;}
.wsb6{word-spacing:3.389299px;}
.ws37{word-spacing:3.407209px;}
.ws80{word-spacing:3.466985px;}
.ws92{word-spacing:3.482356px;}
.ws75{word-spacing:3.586536px;}
.ws3e{word-spacing:3.646312px;}
.ws2c{word-spacing:3.825638px;}
.ws73{word-spacing:3.945190px;}
.ws40{word-spacing:4.004965px;}
.ws24{word-spacing:4.184292px;}
.ws4a{word-spacing:4.363619px;}
.ws96{word-spacing:4.423394px;}
.ws8b{word-spacing:4.542946px;}
.ws55{word-spacing:4.602721px;}
.wsa8{word-spacing:4.626662px;}
.ws3b{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.wsf{word-spacing:4.853765px;}
.ws56{word-spacing:4.901599px;}
.ws57{word-spacing:5.379804px;}
.ws4c{word-spacing:5.439580px;}
.ws33{word-spacing:5.559131px;}
.ws5a{word-spacing:5.618906px;}
.ws86{word-spacing:5.678682px;}
.ws59{word-spacing:5.738458px;}
.ws3f{word-spacing:5.858009px;}
.ws35{word-spacing:6.037336px;}
.wsb0{word-spacing:6.133018px;}
.ws7d{word-spacing:6.216662px;}
.ws95{word-spacing:6.455765px;}
.ws84{word-spacing:6.515540px;}
.ws7c{word-spacing:6.993745px;}
.ws5c{word-spacing:7.113296px;}
.ws41{word-spacing:7.531726px;}
.ws8f{word-spacing:7.711052px;}
.ws53{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.wsb3{word-spacing:8.015962px;}
.ws39{word-spacing:8.129482px;}
.ws42{word-spacing:8.189257px;}
.ws5e{word-spacing:8.846789px;}
.ws5d{word-spacing:9.444545px;}
.ws58{word-spacing:10.281403px;}
.wsa{word-spacing:12.176255px;}
.ws5{word-spacing:15.481836px;}
.wsb{word-spacing:16.109478px;}
.wsb1{word-spacing:22.111142px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.wsb4{word-spacing:27.813773px;}
.ws5f{word-spacing:106.066091px;}
.ws60{word-spacing:223.370957px;}
.ws71{word-spacing:285.706835px;}
.ws69{word-spacing:285.919367px;}
.ws6d{word-spacing:287.926500px;}
.ws6e{word-spacing:298.222500px;}
.ws6c{word-spacing:298.732500px;}
.ws6b{word-spacing:300.385650px;}
.ws6a{word-spacing:300.388500px;}
.ws6f{word-spacing:309.025650px;}
.ws72{word-spacing:333.739967px;}
.ws70{word-spacing:335.452500px;}
.ws63{word-spacing:417.580132px;}
.ws68{word-spacing:581.680243px;}
.ws66{word-spacing:604.209830px;}
.ws7a{word-spacing:613.743600px;}
.ws67{word-spacing:616.960051px;}
.ws64{word-spacing:649.185293px;}
.ws61{word-spacing:1508.829926px;}
._6{margin-left:-13.879987px;}
._5{margin-left:-7.962163px;}
._19{margin-left:-6.874194px;}
._c{margin-left:-5.756429px;}
._0{margin-left:-3.849538px;}
._2{margin-left:-2.301354px;}
._d{margin-left:-1.135736px;}
._50{width:1.005082px;}
._3{width:2.301354px;}
._14{width:3.425180px;}
._a{width:11.381314px;}
._1{width:12.971268px;}
._10{width:14.822586px;}
._9{width:16.354714px;}
._b{width:17.699674px;}
._e{width:19.241647px;}
._13{width:20.795813px;}
._f{width:22.475626px;}
._17{width:24.149342px;}
._15{width:25.285079px;}
._1d{width:26.600142px;}
._1b{width:27.795654px;}
._4{width:30.587087px;}
._1a{width:32.219048px;}
._18{width:33.414560px;}
._1c{width:36.283789px;}
._4c{width:37.778179px;}
._16{width:43.319405px;}
._1e{width:47.641153px;}
._8{width:54.421301px;}
._4e{width:61.868160px;}
._7{width:69.370001px;}
._4d{width:88.767360px;}
._40{width:163.385741px;}
._31{width:185.974303px;}
._36{width:200.948126px;}
._26{width:202.568062px;}
._21{width:210.410640px;}
._23{width:214.523212px;}
._27{width:222.365790px;}
._39{width:255.075080px;}
._3a{width:277.789865px;}
._37{width:279.941792px;}
._22{width:284.723852px;}
._33{width:291.418736px;}
._20{width:296.679002px;}
._38{width:297.874517px;}
._32{width:302.178371px;}
._34{width:305.573634px;}
._3f{width:307.404058px;}
._24{width:308.634152px;}
._25{width:315.663781px;}
._2c{width:321.122650px;}
._1f{width:327.618931px;}
._41{width:328.965239px;}
._35{width:338.904592px;}
._45{width:341.458445px;}
._2a{width:343.395187px;}
._3b{width:349.998971px;}
._3c{width:354.833393px;}
._46{width:384.538986px;}
._3d{width:386.725192px;}
._4a{width:419.681318px;}
._29{width:424.361779px;}
._28{width:448.355866px;}
._2b{width:451.260979px;}
._3e{width:461.536474px;}
._47{width:465.517555px;}
._42{width:482.410253px;}
._2d{width:496.344038px;}
._43{width:500.163725px;}
._49{width:523.326888px;}
._44{width:544.816397px;}
._48{width:610.880832px;}
._4b{width:664.733030px;}
._11{width:746.336104px;}
._2f{width:1187.922470px;}
._2e{width:1367.824320px;}
._4f{width:2410.328700px;}
._12{width:2434.238700px;}
._30{width:3912.218700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(61,100,144);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:49.829400px;}
.fs5{font-size:53.798400px;}
.fs6{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:102.515176px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1a{bottom:18.594411px;}
.y47{bottom:31.890000px;}
.y16b{bottom:98.226000px;}
.y18{bottom:104.646000px;}
.ya2{bottom:107.193000px;}
.y7e{bottom:107.641500px;}
.ydb{bottom:107.839500px;}
.y11a{bottom:108.024000px;}
.y197{bottom:112.692000px;}
.y46{bottom:113.991000px;}
.y16a{bottom:121.539000px;}
.y17{bottom:122.535000px;}
.yda{bottom:124.519500px;}
.ya1{bottom:126.022500px;}
.y7d{bottom:126.471000px;}
.y119{bottom:126.853500px;}
.y14e{bottom:128.862000px;}
.y196{bottom:129.952500px;}
.y45{bottom:132.820500px;}
.y169{bottom:140.368500px;}
.y16{bottom:140.422500px;}
.yd9{bottom:140.958000px;}
.ya0{bottom:144.852000px;}
.y7c{bottom:145.300500px;}
.y118{bottom:145.683000px;}
.y195{bottom:147.213000px;}
.y14d{bottom:147.691500px;}
.y44{bottom:151.650000px;}
.yd8{bottom:157.396500px;}
.y15{bottom:158.310000px;}
.y168{bottom:159.198000px;}
.y9f{bottom:163.681500px;}
.y7b{bottom:164.130000px;}
.y194{bottom:164.473500px;}
.y117{bottom:164.512500px;}
.y14c{bottom:166.521000px;}
.y43{bottom:170.479500px;}
.yd7{bottom:173.835000px;}
.y14{bottom:176.199000px;}
.y167{bottom:178.027500px;}
.y193{bottom:181.734000px;}
.y9e{bottom:182.511000px;}
.y7a{bottom:182.959500px;}
.y14b{bottom:185.350500px;}
.y116{bottom:187.825500px;}
.y42{bottom:189.309000px;}
.yd6{bottom:190.273500px;}
.y13{bottom:194.086500px;}
.y166{bottom:196.857000px;}
.y192{bottom:198.994500px;}
.y9d{bottom:201.340500px;}
.y79{bottom:201.789000px;}
.y14a{bottom:204.180000px;}
.yd5{bottom:206.712000px;}
.y41{bottom:208.138500px;}
.y12{bottom:211.974000px;}
.y165{bottom:215.686500px;}
.y191{bottom:216.255000px;}
.y9c{bottom:220.170000px;}
.y78{bottom:220.618500px;}
.y149{bottom:223.009500px;}
.yd4{bottom:223.150500px;}
.y40{bottom:226.968000px;}
.y115{bottom:229.161000px;}
.y11{bottom:229.863000px;}
.y190{bottom:233.515500px;}
.y164{bottom:234.516000px;}
.y9b{bottom:238.999500px;}
.y77{bottom:239.446500px;}
.yd3{bottom:240.532500px;}
.y148{bottom:241.839000px;}
.y114{bottom:243.699000px;}
.y3f{bottom:245.797500px;}
.y18f{bottom:250.774500px;}
.y163{bottom:253.345500px;}
.y9a{bottom:257.829000px;}
.y76{bottom:258.276000px;}
.y113{bottom:260.137500px;}
.y147{bottom:260.668500px;}
.yd2{bottom:264.172500px;}
.y3e{bottom:264.627000px;}
.y18e{bottom:268.035000px;}
.y162{bottom:272.175000px;}
.y112{bottom:276.576000px;}
.y99{bottom:276.658500px;}
.y75{bottom:277.105500px;}
.y146{bottom:279.496500px;}
.y3d{bottom:283.456500px;}
.y18d{bottom:285.295500px;}
.y111{bottom:293.014500px;}
.y98{bottom:295.488000px;}
.yd1{bottom:295.792500px;}
.y74{bottom:295.935000px;}
.y145{bottom:298.326000px;}
.y161{bottom:298.476000px;}
.y10{bottom:300.154500px;}
.y3c{bottom:302.286000px;}
.y18c{bottom:302.556000px;}
.y97{bottom:314.317500px;}
.y73{bottom:314.764500px;}
.y110{bottom:316.654500px;}
.y144{bottom:317.155500px;}
.y160{bottom:317.305500px;}
.yf{bottom:318.043500px;}
.y18b{bottom:319.816500px;}
.y3b{bottom:321.115500px;}
.y96{bottom:333.145500px;}
.y72{bottom:333.594000px;}
.ye{bottom:335.931000px;}
.y143{bottom:335.985000px;}
.y15f{bottom:336.135000px;}
.yd0{bottom:336.375000px;}
.y18a{bottom:337.077000px;}
.y3a{bottom:339.945000px;}
.y10f{bottom:348.274500px;}
.y95{bottom:351.975000px;}
.y71{bottom:352.423500px;}
.ycf{bottom:352.813500px;}
.ycd{bottom:353.206500px;}
.yd{bottom:353.818500px;}
.y189{bottom:354.337500px;}
.y142{bottom:354.814500px;}
.y15e{bottom:354.964500px;}
.y39{bottom:358.774500px;}
.yce{bottom:369.250500px;}
.y94{bottom:370.804500px;}
.y70{bottom:371.253000px;}
.y188{bottom:371.598000px;}
.y141{bottom:373.644000px;}
.y15d{bottom:373.794000px;}
.y38{bottom:377.602500px;}
.y10e{bottom:377.907000px;}
.yc{bottom:380.673000px;}
.yc8{bottom:385.066500px;}
.y187{bottom:388.857000px;}
.y93{bottom:389.634000px;}
.y6f{bottom:390.082500px;}
.y15c{bottom:392.623500px;}
.ycc{bottom:392.892000px;}
.y37{bottom:396.432000px;}
.y10d{bottom:396.735000px;}
.yb{bottom:398.562000px;}
.y140{bottom:399.946500px;}
.y186{bottom:406.117500px;}
.yc9{bottom:407.971500px;}
.y92{bottom:408.463500px;}
.y6e{bottom:408.912000px;}
.ycb{bottom:409.330500px;}
.y15b{bottom:411.453000px;}
.y36{bottom:415.261500px;}
.y10c{bottom:415.564500px;}
.ya{bottom:416.449500px;}
.y13f{bottom:423.258000px;}
.y185{bottom:423.378000px;}
.yca{bottom:425.769000px;}
.y91{bottom:427.293000px;}
.y6d{bottom:427.741500px;}
.y15a{bottom:430.282500px;}
.y35{bottom:434.091000px;}
.y10b{bottom:434.394000px;}
.y184{bottom:440.638500px;}
.y13e{bottom:442.087500px;}
.y9{bottom:444.798000px;}
.y90{bottom:446.122500px;}
.y6c{bottom:446.571000px;}
.y159{bottom:449.112000px;}
.yc7{bottom:449.409000px;}
.y34{bottom:452.920500px;}
.y10a{bottom:453.223500px;}
.y183{bottom:457.899000px;}
.y13d{bottom:460.917000px;}
.y8f{bottom:464.952000px;}
.y6b{bottom:465.400500px;}
.y158{bottom:467.941500px;}
.y8{bottom:471.652500px;}
.y33{bottom:471.750000px;}
.y109{bottom:472.053000px;}
.y182{bottom:475.159500px;}
.y13c{bottom:479.746500px;}
.y8e{bottom:483.781500px;}
.yc6{bottom:484.017000px;}
.y6a{bottom:484.230000px;}
.y157{bottom:486.771000px;}
.y7{bottom:489.540000px;}
.y181{bottom:492.420000px;}
.y32{bottom:495.063000px;}
.y13b{bottom:498.576000px;}
.y8d{bottom:502.611000px;}
.y69{bottom:503.059500px;}
.y6{bottom:507.429000px;}
.y180{bottom:509.680500px;}
.y156{bottom:510.082500px;}
.y108{bottom:514.527000px;}
.y13a{bottom:517.405500px;}
.y8c{bottom:521.440500px;}
.y68{bottom:521.889000px;}
.yc5{bottom:523.927500px;}
.y5{bottom:525.316500px;}
.y17f{bottom:526.941000px;}
.y139{bottom:536.235000px;}
.yc4{bottom:538.123500px;}
.y107{bottom:538.167000px;}
.yc2{bottom:538.473000px;}
.y8b{bottom:540.270000px;}
.y67{bottom:540.718500px;}
.y4{bottom:543.204000px;}
.y155{bottom:543.706500px;}
.y17e{bottom:544.200000px;}
.yc3{bottom:552.321000px;}
.y138{bottom:555.064500px;}
.y8a{bottom:559.099500px;}
.y66{bottom:559.548000px;}
.y3{bottom:561.093000px;}
.y17d{bottom:561.460500px;}
.y106{bottom:561.808500px;}
.y154{bottom:562.536000px;}
.ybd{bottom:566.971500px;}
.y31{bottom:570.213000px;}
.yc1{bottom:573.720000px;}
.y137{bottom:573.894000px;}
.y89{bottom:577.929000px;}
.y65{bottom:578.377500px;}
.y17c{bottom:578.721000px;}
.y2{bottom:578.980500px;}
.y153{bottom:581.365500px;}
.yc0{bottom:587.916000px;}
.ybe{bottom:588.448500px;}
.y136{bottom:592.723500px;}
.y17b{bottom:595.981500px;}
.y105{bottom:596.416500px;}
.y88{bottom:596.758500px;}
.y1{bottom:596.868000px;}
.y64{bottom:597.207000px;}
.ye9{bottom:598.290000px;}
.y152{bottom:600.195000px;}
.ybf{bottom:602.113500px;}
.y30{bottom:607.603500px;}
.y135{bottom:611.553000px;}
.ye8{bottom:612.486000px;}
.y17a{bottom:613.242000px;}
.y87{bottom:615.588000px;}
.y63{bottom:616.036500px;}
.y151{bottom:619.024500px;}
.ybc{bottom:623.512500px;}
.y1b1{bottom:625.302000px;}
.ye7{bottom:626.683500px;}
.y2f{bottom:627.060000px;}
.y104{bottom:627.543000px;}
.y134{bottom:630.382500px;}
.y179{bottom:630.502500px;}
.yb9{bottom:630.810000px;}
.y86{bottom:634.417500px;}
.y62{bottom:634.866000px;}
.ybb{bottom:637.708500px;}
.y150{bottom:637.854000px;}
.ye6{bottom:640.879500px;}
.y1b0{bottom:642.561000px;}
.yb8{bottom:645.007500px;}
.y103{bottom:646.372500px;}
.y2e{bottom:646.516500px;}
.y178{bottom:647.763000px;}
.y133{bottom:649.212000px;}
.yba{bottom:651.906000px;}
.y85{bottom:653.247000px;}
.y61{bottom:653.695500px;}
.ye5{bottom:655.077000px;}
.y14f{bottom:656.683500px;}
.y1af{bottom:659.821500px;}
.y177{bottom:665.023500px;}
.y102{bottom:665.202000px;}
.y2d{bottom:665.974500px;}
.y84{bottom:672.076500px;}
.y60{bottom:672.525000px;}
.yb7{bottom:673.305000px;}
.y132{bottom:675.513000px;}
.ye4{bottom:676.476000px;}
.y1ae{bottom:677.082000px;}
.y176{bottom:682.282500px;}
.ye2{bottom:683.574000px;}
.y101{bottom:684.031500px;}
.y2c{bottom:685.431000px;}
.yb6{bottom:687.501000px;}
.yb4{bottom:687.850500px;}
.ydf{bottom:690.672000px;}
.y83{bottom:690.906000px;}
.y5f{bottom:691.354500px;}
.y131{bottom:694.342500px;}
.ye1{bottom:697.771500px;}
.y175{bottom:699.543000px;}
.yb5{bottom:701.698500px;}
.y100{bottom:702.861000px;}
.yde{bottom:704.869500px;}
.y2b{bottom:704.889000px;}
.y82{bottom:709.735500px;}
.y5e{bottom:710.184000px;}
.y1ad{bottom:711.603000px;}
.ye0{bottom:711.967500px;}
.y130{bottom:713.172000px;}
.y174{bottom:716.803500px;}
.ye3{bottom:719.067000px;}
.yff{bottom:721.690500px;}
.yb3{bottom:723.097500px;}
.y2a{bottom:724.345500px;}
.y81{bottom:728.565000px;}
.y1ac{bottom:728.863500px;}
.y5d{bottom:729.013500px;}
.y12f{bottom:732.001500px;}
.yb2{bottom:737.293500px;}
.yb0{bottom:737.643000px;}
.y173{bottom:738.547500px;}
.yfe{bottom:740.520000px;}
.y29{bottom:743.802000px;}
.y1ab{bottom:746.124000px;}
.y80{bottom:747.394500px;}
.y5c{bottom:747.843000px;}
.ydd{bottom:749.116500px;}
.y12e{bottom:750.831000px;}
.yb1{bottom:751.491000px;}
.yfd{bottom:759.349500px;}
.y28{bottom:763.260000px;}
.y1aa{bottom:763.384500px;}
.y5b{bottom:766.671000px;}
.y12d{bottom:769.660500px;}
.y7f{bottom:770.706000px;}
.y172{bottom:772.171500px;}
.yaf{bottom:772.890000px;}
.yac{bottom:778.630500px;}
.y1a9{bottom:780.645000px;}
.yfc{bottom:782.662500px;}
.y27{bottom:782.716500px;}
.y5a{bottom:785.500500px;}
.yae{bottom:787.086000px;}
.y12c{bottom:788.490000px;}
.yab{bottom:792.828000px;}
.ya5{bottom:794.638500px;}
.y1a8{bottom:797.904000px;}
.y171{bottom:798.712500px;}
.yad{bottom:801.283500px;}
.ydc{bottom:801.433500px;}
.y26{bottom:802.173000px;}
.y59{bottom:804.330000px;}
.y12b{bottom:807.319500px;}
.y1a7{bottom:815.164500px;}
.yfb{bottom:816.286500px;}
.y25{bottom:821.631000px;}
.yaa{bottom:822.682500px;}
.y58{bottom:823.159500px;}
.y170{bottom:825.252000px;}
.y12a{bottom:826.149000px;}
.ya7{bottom:828.424500px;}
.y1a6{bottom:832.425000px;}
.yfa{bottom:835.114500px;}
.ya9{bottom:836.878500px;}
.y24{bottom:841.087500px;}
.y57{bottom:841.989000px;}
.ya6{bottom:842.620500px;}
.y129{bottom:844.978500px;}
.y1a5{bottom:849.685500px;}
.ya8{bottom:851.076000px;}
.y16f{bottom:851.793000px;}
.yf9{bottom:853.944000px;}
.y23{bottom:860.545500px;}
.y56{bottom:860.818500px;}
.y128{bottom:863.808000px;}
.y1a4{bottom:866.946000px;}
.ya4{bottom:872.475000px;}
.yf8{bottom:872.773500px;}
.y16e{bottom:878.334000px;}
.y55{bottom:879.648000px;}
.y127{bottom:882.637500px;}
.y1a3{bottom:884.206500px;}
.yf7{bottom:891.603000px;}
.y54{bottom:898.477500px;}
.y22{bottom:899.130000px;}
.y126{bottom:901.467000px;}
.y16d{bottom:904.873500px;}
.ya3{bottom:905.514000px;}
.yf6{bottom:910.432500px;}
.y21{bottom:915.270000px;}
.y53{bottom:917.307000px;}
.y1a2{bottom:918.727500px;}
.y125{bottom:920.296500px;}
.y16c{bottom:922.447500px;}
.yf5{bottom:929.262000px;}
.y20{bottom:931.410000px;}
.y1a1{bottom:935.986500px;}
.y52{bottom:936.136500px;}
.y124{bottom:939.126000px;}
.y1f{bottom:947.548500px;}
.yf4{bottom:948.091500px;}
.y1a0{bottom:953.247000px;}
.y51{bottom:954.966000px;}
.y123{bottom:957.955500px;}
.yf3{bottom:966.921000px;}
.y19f{bottom:970.507500px;}
.y50{bottom:973.795500px;}
.y122{bottom:976.785000px;}
.yf2{bottom:985.750500px;}
.y19e{bottom:987.768000px;}
.y4f{bottom:992.625000px;}
.y121{bottom:995.614500px;}
.y1e{bottom:996.565500px;}
.yf1{bottom:1004.580000px;}
.y19d{bottom:1005.028500px;}
.y4e{bottom:1011.454500px;}
.y120{bottom:1014.444000px;}
.y19c{bottom:1022.289000px;}
.yf0{bottom:1023.409500px;}
.y4d{bottom:1030.284000px;}
.y11f{bottom:1033.272000px;}
.y1d{bottom:1036.485000px;}
.y19b{bottom:1039.549500px;}
.yef{bottom:1042.239000px;}
.y4c{bottom:1049.113500px;}
.y11e{bottom:1052.101500px;}
.y19a{bottom:1056.810000px;}
.yee{bottom:1061.068500px;}
.y1c{bottom:1064.728500px;}
.y4b{bottom:1067.943000px;}
.y11d{bottom:1070.931000px;}
.y199{bottom:1074.070500px;}
.yed{bottom:1079.898000px;}
.y4a{bottom:1086.772500px;}
.y11c{bottom:1089.760500px;}
.y198{bottom:1091.329500px;}
.y1b{bottom:1092.972000px;}
.yec{bottom:1098.727500px;}
.y49{bottom:1105.602000px;}
.y11b{bottom:1108.590000px;}
.yeb{bottom:1117.557000px;}
.y19{bottom:1136.460000px;}
.y48{bottom:1168.366500px;}
.yea{bottom:1171.354500px;}
.h10{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.he{height:34.574294px;}
.h9{height:34.813397px;}
.hd{height:35.052500px;}
.ha{height:38.896243px;}
.hb{height:39.165235px;}
.h14{height:39.434227px;}
.h8{height:43.217759px;}
.hc{height:43.516637px;}
.h6{height:43.815515px;}
.hf{height:49.991558px;}
.h4{height:50.931027px;}
.h13{height:63.205397px;}
.h5{height:69.505289px;}
.h7{height:77.792486px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:57.111683px;}
.x28{left:62.541000px;}
.x59{left:69.841500px;}
.x57{left:71.568000px;}
.x38{left:74.266500px;}
.x5c{left:80.158500px;}
.x5d{left:83.614500px;}
.x5a{left:84.808500px;}
.x74{left:85.848000px;}
.x58{left:106.674000px;}
.x34{left:158.965500px;}
.x29{left:174.513000px;}
.x44{left:179.088000px;}
.x43{left:181.485000px;}
.x39{left:212.581500px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x40{left:258.595500px;}
.x5b{left:267.246000px;}
.x24{left:272.058000px;}
.x3f{left:276.643500px;}
.x7{left:281.479500px;}
.x31{left:284.319000px;}
.x32{left:288.694500px;}
.x45{left:290.820000px;}
.x46{left:292.410000px;}
.x68{left:297.348000px;}
.x6f{left:300.108000px;}
.x2f{left:301.332000px;}
.x61{left:303.831000px;}
.x30{left:307.542000px;}
.x6{left:308.739000px;}
.x2a{left:311.116500px;}
.x69{left:312.291000px;}
.x70{left:315.052500px;}
.x75{left:317.748000px;}
.x2b{left:322.456500px;}
.x36{left:324.661500px;}
.x33{left:325.869000px;}
.x35{left:328.696500px;}
.x6a{left:334.513500px;}
.x3e{left:342.222000px;}
.x62{left:343.326000px;}
.x1b{left:347.566500px;}
.x3c{left:349.054500px;}
.x3b{left:351.261000px;}
.x26{left:353.734500px;}
.x6b{left:356.781000px;}
.x1c{left:362.511000px;}
.x11{left:368.439000px;}
.x6c{left:371.724000px;}
.x12{left:375.910500px;}
.x3a{left:380.863500px;}
.x25{left:384.570000px;}
.x1f{left:390.624000px;}
.x20{left:394.435500px;}
.x5e{left:400.273500px;}
.x47{left:403.821000px;}
.x21{left:409.380000px;}
.x5f{left:415.216500px;}
.x48{left:420.091500px;}
.x23{left:424.242000px;}
.x71{left:425.881500px;}
.x72{left:440.826000px;}
.x66{left:448.125000px;}
.x2e{left:458.836500px;}
.x2d{left:460.797000px;}
.x67{left:463.068000px;}
.x2c{left:487.111500px;}
.x60{left:492.324000px;}
.x41{left:517.353000px;}
.x42{left:520.540500px;}
.x49{left:525.205500px;}
.x13{left:546.391500px;}
.x19{left:550.810500px;}
.x14{left:553.864500px;}
.x15{left:561.463500px;}
.x1a{left:565.753500px;}
.x16{left:568.935000px;}
.x63{left:571.741500px;}
.x64{left:586.686000px;}
.x8{left:597.136500px;}
.x9{left:604.609500px;}
.x37{left:619.483500px;}
.x4a{left:642.148500px;}
.x4c{left:650.218500px;}
.x4b{left:656.448000px;}
.x27{left:678.498000px;}
.x77{left:682.738500px;}
.x65{left:693.135000px;}
.x78{left:709.638000px;}
.x3d{left:717.532500px;}
.x6d{left:730.380000px;}
.x22{left:743.478000px;}
.x6e{left:745.323000px;}
.xc{left:747.286500px;}
.xa{left:754.974000px;}
.x4e{left:756.213000px;}
.x17{left:757.689000px;}
.x73{left:759.564000px;}
.xd{left:762.372000px;}
.x4d{left:767.625000px;}
.xe{left:769.843500px;}
.x18{left:772.633500px;}
.x76{left:784.285500px;}
.x1d{left:786.360000px;}
.x1e{left:801.304500px;}
.xf{left:825.519000px;}
.x10{left:832.990500px;}
.xb{left:837.120000px;}
.x50{left:862.188000px;}
.x4f{left:880.407000px;}
.x51{left:890.748000px;}
.x52{left:975.801000px;}
.x53{left:1006.231500px;}
.x56{left:1086.603000px;}
.x54{left:1096.006500px;}
.x55{left:1103.316000px;}
@media print{
.v3{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.674667pt;}
.v1{vertical-align:17.360000pt;}
.v4{vertical-align:25.237333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000503pt;}
.ls1f{letter-spacing:0.000621pt;}
.ls14{letter-spacing:0.000921pt;}
.ls22{letter-spacing:0.001818pt;}
.ls16{letter-spacing:0.001843pt;}
.ls1d{letter-spacing:0.001858pt;}
.ls1a{letter-spacing:0.002187pt;}
.ls15{letter-spacing:0.002262pt;}
.lse{letter-spacing:0.003304pt;}
.ls17{letter-spacing:0.003635pt;}
.ls12{letter-spacing:0.003861pt;}
.ls1c{letter-spacing:0.004053pt;}
.ls11{letter-spacing:0.004267pt;}
.ls9{letter-spacing:0.509060pt;}
.lsa{letter-spacing:0.514393pt;}
.ls4{letter-spacing:0.570745pt;}
.lsd{letter-spacing:0.576078pt;}
.ls5{letter-spacing:2.651733pt;}
.ls6{letter-spacing:2.652732pt;}
.ls7{letter-spacing:2.655710pt;}
.lsb{letter-spacing:2.656533pt;}
.ls0{letter-spacing:9.298933pt;}
.ls2{letter-spacing:10.626533pt;}
.lsf{letter-spacing:11.702874pt;}
.ls19{letter-spacing:11.739182pt;}
.ls10{letter-spacing:11.954133pt;}
.ls21{letter-spacing:11.956898pt;}
.ls18{letter-spacing:11.959467pt;}
.ls1e{letter-spacing:12.085245pt;}
.ls1b{letter-spacing:12.104421pt;}
.ls20{letter-spacing:12.551990pt;}
.ls1{letter-spacing:25.292137pt;}
.ls8{letter-spacing:323.717031pt;}
.lsc{letter-spacing:615.319526pt;}
.ws2f{word-spacing:-13.283467pt;}
.ws9b{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.ws26{word-spacing:-2.603559pt;}
.ws34{word-spacing:-2.550426pt;}
.ws76{word-spacing:-2.391024pt;}
.ws31{word-spacing:-2.072221pt;}
.ws79{word-spacing:-1.753418pt;}
.ws4e{word-spacing:-1.647150pt;}
.ws7f{word-spacing:-1.594016pt;}
.ws89{word-spacing:-1.540882pt;}
.ws8a{word-spacing:-1.487748pt;}
.wsac{word-spacing:-1.338982pt;}
.ws7e{word-spacing:-1.275213pt;}
.ws30{word-spacing:-1.115811pt;}
.ws82{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws78{word-spacing:-1.009543pt;}
.wsab{word-spacing:-1.004237pt;}
.ws3c{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws15{word-spacing:-0.908595pt;}
.ws49{word-spacing:-0.850142pt;}
.ws4d{word-spacing:-0.743874pt;}
.ws8d{word-spacing:-0.690740pt;}
.ws85{word-spacing:-0.637606pt;}
.ws3d{word-spacing:-0.584473pt;}
.ws88{word-spacing:-0.425071pt;}
.ws32{word-spacing:-0.318803pt;}
.ws9a{word-spacing:-0.286925pt;}
.ws25{word-spacing:-0.265669pt;}
.ws9d{word-spacing:-0.239104pt;}
.ws20{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.wsae{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws98{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.042507pt;}
.wsbc{word-spacing:-0.025079pt;}
.wsad{word-spacing:-0.023501pt;}
.ws62{word-spacing:-0.007091pt;}
.wsc3{word-spacing:-0.006221pt;}
.wsb5{word-spacing:-0.005504pt;}
.wsba{word-spacing:-0.005350pt;}
.wsa7{word-spacing:-0.003891pt;}
.ws2a{word-spacing:-0.002739pt;}
.ws3{word-spacing:-0.002543pt;}
.wsbe{word-spacing:-0.002167pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.047821pt;}
.wsb8{word-spacing:0.050150pt;}
.ws27{word-spacing:0.053134pt;}
.wsb2{word-spacing:0.079502pt;}
.ws9e{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.ws17{word-spacing:0.143462pt;}
.ws44{word-spacing:0.159402pt;}
.ws65{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.265669pt;}
.ws38{word-spacing:0.318803pt;}
.ws83{word-spacing:0.371937pt;}
.wsa3{word-spacing:0.382566pt;}
.ws23{word-spacing:0.425071pt;}
.wsb7{word-spacing:0.430387pt;}
.ws7b{word-spacing:0.478205pt;}
.wsa2{word-spacing:0.526029pt;}
.ws8c{word-spacing:0.637606pt;}
.ws43{word-spacing:0.690740pt;}
.ws4f{word-spacing:0.743874pt;}
.wsa6{word-spacing:0.765133pt;}
.ws46{word-spacing:0.797008pt;}
.ws12{word-spacing:0.812954pt;}
.ws47{word-spacing:0.850142pt;}
.ws7{word-spacing:0.892646pt;}
.ws2d{word-spacing:0.903276pt;}
.ws4b{word-spacing:0.956410pt;}
.ws13{word-spacing:1.004237pt;}
.ws22{word-spacing:1.009543pt;}
.ws45{word-spacing:1.062677pt;}
.ws54{word-spacing:1.115811pt;}
.ws50{word-spacing:1.222079pt;}
.ws90{word-spacing:1.275213pt;}
.wsa1{word-spacing:1.386803pt;}
.ws36{word-spacing:1.434614pt;}
.ws81{word-spacing:1.487748pt;}
.ws77{word-spacing:1.540882pt;}
.ws3a{word-spacing:1.594016pt;}
.ws52{word-spacing:1.647150pt;}
.ws1a{word-spacing:1.721549pt;}
.ws91{word-spacing:1.806551pt;}
.wsa0{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.859685pt;}
.wsa4{word-spacing:1.865011pt;}
.ws51{word-spacing:2.019087pt;}
.ws48{word-spacing:2.125355pt;}
.ws19{word-spacing:2.151936pt;}
.ws87{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.234877pt;}
.wsc0{word-spacing:2.247578pt;}
.wsc1{word-spacing:2.295398pt;}
.ws29{word-spacing:2.337890pt;}
.ws8e{word-spacing:2.391024pt;}
.ws74{word-spacing:2.444158pt;}
.ws11{word-spacing:2.550432pt;}
.ws94{word-spacing:2.603559pt;}
.wsa5{word-spacing:2.677965pt;}
.ws97{word-spacing:2.816095pt;}
.ws16{word-spacing:2.821427pt;}
.ws1c{word-spacing:2.861926pt;}
.wsaf{word-spacing:2.862985pt;}
.ws9c{word-spacing:2.864060pt;}
.wsa9{word-spacing:2.865323pt;}
.wsaa{word-spacing:2.865365pt;}
.wsb9{word-spacing:2.865391pt;}
.ws99{word-spacing:2.866509pt;}
.ws9f{word-spacing:2.869248pt;}
.wsc2{word-spacing:2.869581pt;}
.wsbd{word-spacing:2.871228pt;}
.wsbf{word-spacing:2.917069pt;}
.ws93{word-spacing:2.922363pt;}
.wsbb{word-spacing:2.964890pt;}
.wsb6{word-spacing:3.012710pt;}
.ws37{word-spacing:3.028630pt;}
.ws80{word-spacing:3.081764pt;}
.ws92{word-spacing:3.095428pt;}
.ws75{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.241166pt;}
.ws2c{word-spacing:3.400567pt;}
.ws73{word-spacing:3.506835pt;}
.ws40{word-spacing:3.559969pt;}
.ws24{word-spacing:3.719371pt;}
.ws4a{word-spacing:3.878772pt;}
.ws96{word-spacing:3.931906pt;}
.ws8b{word-spacing:4.038174pt;}
.ws55{word-spacing:4.091308pt;}
.wsa8{word-spacing:4.112589pt;}
.ws3b{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.wsf{word-spacing:4.314458pt;}
.ws56{word-spacing:4.356977pt;}
.ws57{word-spacing:4.782048pt;}
.ws4c{word-spacing:4.835182pt;}
.ws33{word-spacing:4.941450pt;}
.ws5a{word-spacing:4.994583pt;}
.ws86{word-spacing:5.047717pt;}
.ws59{word-spacing:5.100851pt;}
.ws3f{word-spacing:5.207119pt;}
.ws35{word-spacing:5.366521pt;}
.wsb0{word-spacing:5.451571pt;}
.ws7d{word-spacing:5.525922pt;}
.ws95{word-spacing:5.738458pt;}
.ws84{word-spacing:5.791591pt;}
.ws7c{word-spacing:6.216662pt;}
.ws5c{word-spacing:6.322930pt;}
.ws41{word-spacing:6.694867pt;}
.ws8f{word-spacing:6.854269pt;}
.ws53{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.wsb3{word-spacing:7.125299pt;}
.ws39{word-spacing:7.226206pt;}
.ws42{word-spacing:7.279340pt;}
.ws5e{word-spacing:7.863812pt;}
.ws5d{word-spacing:8.395151pt;}
.ws58{word-spacing:9.139025pt;}
.wsa{word-spacing:10.823338pt;}
.ws5{word-spacing:13.761632pt;}
.wsb{word-spacing:14.319536pt;}
.wsb1{word-spacing:19.654349pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.wsb4{word-spacing:24.723354pt;}
.ws5f{word-spacing:94.280970pt;}
.ws60{word-spacing:198.551962pt;}
.ws71{word-spacing:253.961631pt;}
.ws69{word-spacing:254.150549pt;}
.ws6d{word-spacing:255.934667pt;}
.ws6e{word-spacing:265.086667pt;}
.ws6c{word-spacing:265.540000pt;}
.ws6b{word-spacing:267.009467pt;}
.ws6a{word-spacing:267.012000pt;}
.ws6f{word-spacing:274.689467pt;}
.ws72{word-spacing:296.657749pt;}
.ws70{word-spacing:298.180000pt;}
.ws63{word-spacing:371.182339pt;}
.ws68{word-spacing:517.049105pt;}
.ws66{word-spacing:537.075405pt;}
.ws7a{word-spacing:545.549867pt;}
.ws67{word-spacing:548.408934pt;}
.ws64{word-spacing:577.053594pt;}
.ws61{word-spacing:1341.182157pt;}
._6{margin-left:-12.337766pt;}
._5{margin-left:-7.077478pt;}
._19{margin-left:-6.110395pt;}
._c{margin-left:-5.116826pt;}
._0{margin-left:-3.421811pt;}
._2{margin-left:-2.045648pt;}
._d{margin-left:-1.009543pt;}
._50{width:0.893407pt;}
._3{width:2.045648pt;}
._14{width:3.044605pt;}
._a{width:10.116723pt;}
._1{width:11.530016pt;}
._10{width:13.175632pt;}
._9{width:14.537523pt;}
._b{width:15.733043pt;}
._e{width:17.103686pt;}
._13{width:18.485167pt;}
._f{width:19.978334pt;}
._17{width:21.466082pt;}
._15{width:22.475626pt;}
._1d{width:23.644571pt;}
._1b{width:24.707248pt;}
._4{width:27.188522pt;}
._1a{width:28.639154pt;}
._18{width:29.701831pt;}
._1c{width:32.252257pt;}
._4c{width:33.580604pt;}
._16{width:38.506138pt;}
._1e{width:42.347692pt;}
._8{width:48.374490pt;}
._4e{width:54.993920pt;}
._7{width:61.662223pt;}
._4d{width:78.904320pt;}
._40{width:145.231770pt;}
._31{width:165.310491pt;}
._36{width:178.620557pt;}
._26{width:180.060499pt;}
._21{width:187.031680pt;}
._23{width:190.687299pt;}
._27{width:197.658480pt;}
._39{width:226.733405pt;}
._3a{width:246.924325pt;}
._37{width:248.837149pt;}
._22{width:253.087869pt;}
._33{width:259.038877pt;}
._20{width:263.714669pt;}
._38{width:264.777349pt;}
._32{width:268.602997pt;}
._34{width:271.621008pt;}
._3f{width:273.248051pt;}
._24{width:274.341469pt;}
._25{width:280.590027pt;}
._2c{width:285.442355pt;}
._1f{width:291.216827pt;}
._41{width:292.413546pt;}
._35{width:301.248526pt;}
._45{width:303.518618pt;}
._2a{width:305.240166pt;}
._3b{width:311.110197pt;}
._3c{width:315.407461pt;}
._46{width:341.812432pt;}
._3d{width:343.755726pt;}
._4a{width:373.050061pt;}
._29{width:377.210470pt;}
._28{width:398.538547pt;}
._2b{width:401.120870pt;}
._3e{width:410.254643pt;}
._47{width:413.793382pt;}
._42{width:428.809114pt;}
._2d{width:441.194701pt;}
._43{width:444.589978pt;}
._49{width:465.179456pt;}
._44{width:484.281242pt;}
._48{width:543.005184pt;}
._4b{width:590.873805pt;}
._11{width:663.409870pt;}
._2f{width:1055.931085pt;}
._2e{width:1215.843840pt;}
._4f{width:2142.514400pt;}
._12{width:2163.767733pt;}
._30{width:3477.527733pt;}
.fs7{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:44.292800pt;}
.fs5{font-size:47.820800pt;}
.fs6{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:91.124601pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:16.528366pt;}
.y47{bottom:28.346667pt;}
.y16b{bottom:87.312000pt;}
.y18{bottom:93.018667pt;}
.ya2{bottom:95.282667pt;}
.y7e{bottom:95.681333pt;}
.ydb{bottom:95.857333pt;}
.y11a{bottom:96.021333pt;}
.y197{bottom:100.170667pt;}
.y46{bottom:101.325333pt;}
.y16a{bottom:108.034667pt;}
.y17{bottom:108.920000pt;}
.yda{bottom:110.684000pt;}
.ya1{bottom:112.020000pt;}
.y7d{bottom:112.418667pt;}
.y119{bottom:112.758667pt;}
.y14e{bottom:114.544000pt;}
.y196{bottom:115.513333pt;}
.y45{bottom:118.062667pt;}
.y169{bottom:124.772000pt;}
.y16{bottom:124.820000pt;}
.yd9{bottom:125.296000pt;}
.ya0{bottom:128.757333pt;}
.y7c{bottom:129.156000pt;}
.y118{bottom:129.496000pt;}
.y195{bottom:130.856000pt;}
.y14d{bottom:131.281333pt;}
.y44{bottom:134.800000pt;}
.yd8{bottom:139.908000pt;}
.y15{bottom:140.720000pt;}
.y168{bottom:141.509333pt;}
.y9f{bottom:145.494667pt;}
.y7b{bottom:145.893333pt;}
.y194{bottom:146.198667pt;}
.y117{bottom:146.233333pt;}
.y14c{bottom:148.018667pt;}
.y43{bottom:151.537333pt;}
.yd7{bottom:154.520000pt;}
.y14{bottom:156.621333pt;}
.y167{bottom:158.246667pt;}
.y193{bottom:161.541333pt;}
.y9e{bottom:162.232000pt;}
.y7a{bottom:162.630667pt;}
.y14b{bottom:164.756000pt;}
.y116{bottom:166.956000pt;}
.y42{bottom:168.274667pt;}
.yd6{bottom:169.132000pt;}
.y13{bottom:172.521333pt;}
.y166{bottom:174.984000pt;}
.y192{bottom:176.884000pt;}
.y9d{bottom:178.969333pt;}
.y79{bottom:179.368000pt;}
.y14a{bottom:181.493333pt;}
.yd5{bottom:183.744000pt;}
.y41{bottom:185.012000pt;}
.y12{bottom:188.421333pt;}
.y165{bottom:191.721333pt;}
.y191{bottom:192.226667pt;}
.y9c{bottom:195.706667pt;}
.y78{bottom:196.105333pt;}
.y149{bottom:198.230667pt;}
.yd4{bottom:198.356000pt;}
.y40{bottom:201.749333pt;}
.y115{bottom:203.698667pt;}
.y11{bottom:204.322667pt;}
.y190{bottom:207.569333pt;}
.y164{bottom:208.458667pt;}
.y9b{bottom:212.444000pt;}
.y77{bottom:212.841333pt;}
.yd3{bottom:213.806667pt;}
.y148{bottom:214.968000pt;}
.y114{bottom:216.621333pt;}
.y3f{bottom:218.486667pt;}
.y18f{bottom:222.910667pt;}
.y163{bottom:225.196000pt;}
.y9a{bottom:229.181333pt;}
.y76{bottom:229.578667pt;}
.y113{bottom:231.233333pt;}
.y147{bottom:231.705333pt;}
.yd2{bottom:234.820000pt;}
.y3e{bottom:235.224000pt;}
.y18e{bottom:238.253333pt;}
.y162{bottom:241.933333pt;}
.y112{bottom:245.845333pt;}
.y99{bottom:245.918667pt;}
.y75{bottom:246.316000pt;}
.y146{bottom:248.441333pt;}
.y3d{bottom:251.961333pt;}
.y18d{bottom:253.596000pt;}
.y111{bottom:260.457333pt;}
.y98{bottom:262.656000pt;}
.yd1{bottom:262.926667pt;}
.y74{bottom:263.053333pt;}
.y145{bottom:265.178667pt;}
.y161{bottom:265.312000pt;}
.y10{bottom:266.804000pt;}
.y3c{bottom:268.698667pt;}
.y18c{bottom:268.938667pt;}
.y97{bottom:279.393333pt;}
.y73{bottom:279.790667pt;}
.y110{bottom:281.470667pt;}
.y144{bottom:281.916000pt;}
.y160{bottom:282.049333pt;}
.yf{bottom:282.705333pt;}
.y18b{bottom:284.281333pt;}
.y3b{bottom:285.436000pt;}
.y96{bottom:296.129333pt;}
.y72{bottom:296.528000pt;}
.ye{bottom:298.605333pt;}
.y143{bottom:298.653333pt;}
.y15f{bottom:298.786667pt;}
.yd0{bottom:299.000000pt;}
.y18a{bottom:299.624000pt;}
.y3a{bottom:302.173333pt;}
.y10f{bottom:309.577333pt;}
.y95{bottom:312.866667pt;}
.y71{bottom:313.265333pt;}
.ycf{bottom:313.612000pt;}
.ycd{bottom:313.961333pt;}
.yd{bottom:314.505333pt;}
.y189{bottom:314.966667pt;}
.y142{bottom:315.390667pt;}
.y15e{bottom:315.524000pt;}
.y39{bottom:318.910667pt;}
.yce{bottom:328.222667pt;}
.y94{bottom:329.604000pt;}
.y70{bottom:330.002667pt;}
.y188{bottom:330.309333pt;}
.y141{bottom:332.128000pt;}
.y15d{bottom:332.261333pt;}
.y38{bottom:335.646667pt;}
.y10e{bottom:335.917333pt;}
.yc{bottom:338.376000pt;}
.yc8{bottom:342.281333pt;}
.y187{bottom:345.650667pt;}
.y93{bottom:346.341333pt;}
.y6f{bottom:346.740000pt;}
.y15c{bottom:348.998667pt;}
.ycc{bottom:349.237333pt;}
.y37{bottom:352.384000pt;}
.y10d{bottom:352.653333pt;}
.yb{bottom:354.277333pt;}
.y140{bottom:355.508000pt;}
.y186{bottom:360.993333pt;}
.yc9{bottom:362.641333pt;}
.y92{bottom:363.078667pt;}
.y6e{bottom:363.477333pt;}
.ycb{bottom:363.849333pt;}
.y15b{bottom:365.736000pt;}
.y36{bottom:369.121333pt;}
.y10c{bottom:369.390667pt;}
.ya{bottom:370.177333pt;}
.y13f{bottom:376.229333pt;}
.y185{bottom:376.336000pt;}
.yca{bottom:378.461333pt;}
.y91{bottom:379.816000pt;}
.y6d{bottom:380.214667pt;}
.y15a{bottom:382.473333pt;}
.y35{bottom:385.858667pt;}
.y10b{bottom:386.128000pt;}
.y184{bottom:391.678667pt;}
.y13e{bottom:392.966667pt;}
.y9{bottom:395.376000pt;}
.y90{bottom:396.553333pt;}
.y6c{bottom:396.952000pt;}
.y159{bottom:399.210667pt;}
.yc7{bottom:399.474667pt;}
.y34{bottom:402.596000pt;}
.y10a{bottom:402.865333pt;}
.y183{bottom:407.021333pt;}
.y13d{bottom:409.704000pt;}
.y8f{bottom:413.290667pt;}
.y6b{bottom:413.689333pt;}
.y158{bottom:415.948000pt;}
.y8{bottom:419.246667pt;}
.y33{bottom:419.333333pt;}
.y109{bottom:419.602667pt;}
.y182{bottom:422.364000pt;}
.y13c{bottom:426.441333pt;}
.y8e{bottom:430.028000pt;}
.yc6{bottom:430.237333pt;}
.y6a{bottom:430.426667pt;}
.y157{bottom:432.685333pt;}
.y7{bottom:435.146667pt;}
.y181{bottom:437.706667pt;}
.y32{bottom:440.056000pt;}
.y13b{bottom:443.178667pt;}
.y8d{bottom:446.765333pt;}
.y69{bottom:447.164000pt;}
.y6{bottom:451.048000pt;}
.y180{bottom:453.049333pt;}
.y156{bottom:453.406667pt;}
.y108{bottom:457.357333pt;}
.y13a{bottom:459.916000pt;}
.y8c{bottom:463.502667pt;}
.y68{bottom:463.901333pt;}
.yc5{bottom:465.713333pt;}
.y5{bottom:466.948000pt;}
.y17f{bottom:468.392000pt;}
.y139{bottom:476.653333pt;}
.yc4{bottom:478.332000pt;}
.y107{bottom:478.370667pt;}
.yc2{bottom:478.642667pt;}
.y8b{bottom:480.240000pt;}
.y67{bottom:480.638667pt;}
.y4{bottom:482.848000pt;}
.y155{bottom:483.294667pt;}
.y17e{bottom:483.733333pt;}
.yc3{bottom:490.952000pt;}
.y138{bottom:493.390667pt;}
.y8a{bottom:496.977333pt;}
.y66{bottom:497.376000pt;}
.y3{bottom:498.749333pt;}
.y17d{bottom:499.076000pt;}
.y106{bottom:499.385333pt;}
.y154{bottom:500.032000pt;}
.ybd{bottom:503.974667pt;}
.y31{bottom:506.856000pt;}
.yc1{bottom:509.973333pt;}
.y137{bottom:510.128000pt;}
.y89{bottom:513.714667pt;}
.y65{bottom:514.113333pt;}
.y17c{bottom:514.418667pt;}
.y2{bottom:514.649333pt;}
.y153{bottom:516.769333pt;}
.yc0{bottom:522.592000pt;}
.ybe{bottom:523.065333pt;}
.y136{bottom:526.865333pt;}
.y17b{bottom:529.761333pt;}
.y105{bottom:530.148000pt;}
.y88{bottom:530.452000pt;}
.y1{bottom:530.549333pt;}
.y64{bottom:530.850667pt;}
.ye9{bottom:531.813333pt;}
.y152{bottom:533.506667pt;}
.ybf{bottom:535.212000pt;}
.y30{bottom:540.092000pt;}
.y135{bottom:543.602667pt;}
.ye8{bottom:544.432000pt;}
.y17a{bottom:545.104000pt;}
.y87{bottom:547.189333pt;}
.y63{bottom:547.588000pt;}
.y151{bottom:550.244000pt;}
.ybc{bottom:554.233333pt;}
.y1b1{bottom:555.824000pt;}
.ye7{bottom:557.052000pt;}
.y2f{bottom:557.386667pt;}
.y104{bottom:557.816000pt;}
.y134{bottom:560.340000pt;}
.y179{bottom:560.446667pt;}
.yb9{bottom:560.720000pt;}
.y86{bottom:563.926667pt;}
.y62{bottom:564.325333pt;}
.ybb{bottom:566.852000pt;}
.y150{bottom:566.981333pt;}
.ye6{bottom:569.670667pt;}
.y1b0{bottom:571.165333pt;}
.yb8{bottom:573.340000pt;}
.y103{bottom:574.553333pt;}
.y2e{bottom:574.681333pt;}
.y178{bottom:575.789333pt;}
.y133{bottom:577.077333pt;}
.yba{bottom:579.472000pt;}
.y85{bottom:580.664000pt;}
.y61{bottom:581.062667pt;}
.ye5{bottom:582.290667pt;}
.y14f{bottom:583.718667pt;}
.y1af{bottom:586.508000pt;}
.y177{bottom:591.132000pt;}
.y102{bottom:591.290667pt;}
.y2d{bottom:591.977333pt;}
.y84{bottom:597.401333pt;}
.y60{bottom:597.800000pt;}
.yb7{bottom:598.493333pt;}
.y132{bottom:600.456000pt;}
.ye4{bottom:601.312000pt;}
.y1ae{bottom:601.850667pt;}
.y176{bottom:606.473333pt;}
.ye2{bottom:607.621333pt;}
.y101{bottom:608.028000pt;}
.y2c{bottom:609.272000pt;}
.yb6{bottom:611.112000pt;}
.yb4{bottom:611.422667pt;}
.ydf{bottom:613.930667pt;}
.y83{bottom:614.138667pt;}
.y5f{bottom:614.537333pt;}
.y131{bottom:617.193333pt;}
.ye1{bottom:620.241333pt;}
.y175{bottom:621.816000pt;}
.yb5{bottom:623.732000pt;}
.y100{bottom:624.765333pt;}
.yde{bottom:626.550667pt;}
.y2b{bottom:626.568000pt;}
.y82{bottom:630.876000pt;}
.y5e{bottom:631.274667pt;}
.y1ad{bottom:632.536000pt;}
.ye0{bottom:632.860000pt;}
.y130{bottom:633.930667pt;}
.y174{bottom:637.158667pt;}
.ye3{bottom:639.170667pt;}
.yff{bottom:641.502667pt;}
.yb3{bottom:642.753333pt;}
.y2a{bottom:643.862667pt;}
.y81{bottom:647.613333pt;}
.y1ac{bottom:647.878667pt;}
.y5d{bottom:648.012000pt;}
.y12f{bottom:650.668000pt;}
.yb2{bottom:655.372000pt;}
.yb0{bottom:655.682667pt;}
.y173{bottom:656.486667pt;}
.yfe{bottom:658.240000pt;}
.y29{bottom:661.157333pt;}
.y1ab{bottom:663.221333pt;}
.y80{bottom:664.350667pt;}
.y5c{bottom:664.749333pt;}
.ydd{bottom:665.881333pt;}
.y12e{bottom:667.405333pt;}
.yb1{bottom:667.992000pt;}
.yfd{bottom:674.977333pt;}
.y28{bottom:678.453333pt;}
.y1aa{bottom:678.564000pt;}
.y5b{bottom:681.485333pt;}
.y12d{bottom:684.142667pt;}
.y7f{bottom:685.072000pt;}
.y172{bottom:686.374667pt;}
.yaf{bottom:687.013333pt;}
.yac{bottom:692.116000pt;}
.y1a9{bottom:693.906667pt;}
.yfc{bottom:695.700000pt;}
.y27{bottom:695.748000pt;}
.y5a{bottom:698.222667pt;}
.yae{bottom:699.632000pt;}
.y12c{bottom:700.880000pt;}
.yab{bottom:704.736000pt;}
.ya5{bottom:706.345333pt;}
.y1a8{bottom:709.248000pt;}
.y171{bottom:709.966667pt;}
.yad{bottom:712.252000pt;}
.ydc{bottom:712.385333pt;}
.y26{bottom:713.042667pt;}
.y59{bottom:714.960000pt;}
.y12b{bottom:717.617333pt;}
.y1a7{bottom:724.590667pt;}
.yfb{bottom:725.588000pt;}
.y25{bottom:730.338667pt;}
.yaa{bottom:731.273333pt;}
.y58{bottom:731.697333pt;}
.y170{bottom:733.557333pt;}
.y12a{bottom:734.354667pt;}
.ya7{bottom:736.377333pt;}
.y1a6{bottom:739.933333pt;}
.yfa{bottom:742.324000pt;}
.ya9{bottom:743.892000pt;}
.y24{bottom:747.633333pt;}
.y57{bottom:748.434667pt;}
.ya6{bottom:748.996000pt;}
.y129{bottom:751.092000pt;}
.y1a5{bottom:755.276000pt;}
.ya8{bottom:756.512000pt;}
.y16f{bottom:757.149333pt;}
.yf9{bottom:759.061333pt;}
.y23{bottom:764.929333pt;}
.y56{bottom:765.172000pt;}
.y128{bottom:767.829333pt;}
.y1a4{bottom:770.618667pt;}
.ya4{bottom:775.533333pt;}
.yf8{bottom:775.798667pt;}
.y16e{bottom:780.741333pt;}
.y55{bottom:781.909333pt;}
.y127{bottom:784.566667pt;}
.y1a3{bottom:785.961333pt;}
.yf7{bottom:792.536000pt;}
.y54{bottom:798.646667pt;}
.y22{bottom:799.226667pt;}
.y126{bottom:801.304000pt;}
.y16d{bottom:804.332000pt;}
.ya3{bottom:804.901333pt;}
.yf6{bottom:809.273333pt;}
.y21{bottom:813.573333pt;}
.y53{bottom:815.384000pt;}
.y1a2{bottom:816.646667pt;}
.y125{bottom:818.041333pt;}
.y16c{bottom:819.953333pt;}
.yf5{bottom:826.010667pt;}
.y20{bottom:827.920000pt;}
.y1a1{bottom:831.988000pt;}
.y52{bottom:832.121333pt;}
.y124{bottom:834.778667pt;}
.y1f{bottom:842.265333pt;}
.yf4{bottom:842.748000pt;}
.y1a0{bottom:847.330667pt;}
.y51{bottom:848.858667pt;}
.y123{bottom:851.516000pt;}
.yf3{bottom:859.485333pt;}
.y19f{bottom:862.673333pt;}
.y50{bottom:865.596000pt;}
.y122{bottom:868.253333pt;}
.yf2{bottom:876.222667pt;}
.y19e{bottom:878.016000pt;}
.y4f{bottom:882.333333pt;}
.y121{bottom:884.990667pt;}
.y1e{bottom:885.836000pt;}
.yf1{bottom:892.960000pt;}
.y19d{bottom:893.358667pt;}
.y4e{bottom:899.070667pt;}
.y120{bottom:901.728000pt;}
.y19c{bottom:908.701333pt;}
.yf0{bottom:909.697333pt;}
.y4d{bottom:915.808000pt;}
.y11f{bottom:918.464000pt;}
.y1d{bottom:921.320000pt;}
.y19b{bottom:924.044000pt;}
.yef{bottom:926.434667pt;}
.y4c{bottom:932.545333pt;}
.y11e{bottom:935.201333pt;}
.y19a{bottom:939.386667pt;}
.yee{bottom:943.172000pt;}
.y1c{bottom:946.425333pt;}
.y4b{bottom:949.282667pt;}
.y11d{bottom:951.938667pt;}
.y199{bottom:954.729333pt;}
.yed{bottom:959.909333pt;}
.y4a{bottom:966.020000pt;}
.y11c{bottom:968.676000pt;}
.y198{bottom:970.070667pt;}
.y1b{bottom:971.530667pt;}
.yec{bottom:976.646667pt;}
.y49{bottom:982.757333pt;}
.y11b{bottom:985.413333pt;}
.yeb{bottom:993.384000pt;}
.y19{bottom:1010.186667pt;}
.y48{bottom:1038.548000pt;}
.yea{bottom:1041.204000pt;}
.h10{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.he{height:30.732706pt;}
.h9{height:30.945242pt;}
.hd{height:31.157778pt;}
.ha{height:34.574438pt;}
.hb{height:34.813542pt;}
.h14{height:35.052646pt;}
.h8{height:38.415786pt;}
.hc{height:38.681455pt;}
.h6{height:38.947124pt;}
.hf{height:44.436941pt;}
.h4{height:45.272024pt;}
.h13{height:56.182575pt;}
.h5{height:61.782479pt;}
.h7{height:69.148877pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:50.765941pt;}
.x28{left:55.592000pt;}
.x59{left:62.081333pt;}
.x57{left:63.616000pt;}
.x38{left:66.014667pt;}
.x5c{left:71.252000pt;}
.x5d{left:74.324000pt;}
.x5a{left:75.385333pt;}
.x74{left:76.309333pt;}
.x58{left:94.821333pt;}
.x34{left:141.302667pt;}
.x29{left:155.122667pt;}
.x44{left:159.189333pt;}
.x43{left:161.320000pt;}
.x39{left:188.961333pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x40{left:229.862667pt;}
.x5b{left:237.552000pt;}
.x24{left:241.829333pt;}
.x3f{left:245.905333pt;}
.x7{left:250.204000pt;}
.x31{left:252.728000pt;}
.x32{left:256.617333pt;}
.x45{left:258.506667pt;}
.x46{left:259.920000pt;}
.x68{left:264.309333pt;}
.x6f{left:266.762667pt;}
.x2f{left:267.850667pt;}
.x61{left:270.072000pt;}
.x30{left:273.370667pt;}
.x6{left:274.434667pt;}
.x2a{left:276.548000pt;}
.x69{left:277.592000pt;}
.x70{left:280.046667pt;}
.x75{left:282.442667pt;}
.x2b{left:286.628000pt;}
.x36{left:288.588000pt;}
.x33{left:289.661333pt;}
.x35{left:292.174667pt;}
.x6a{left:297.345333pt;}
.x3e{left:304.197333pt;}
.x62{left:305.178667pt;}
.x1b{left:308.948000pt;}
.x3c{left:310.270667pt;}
.x3b{left:312.232000pt;}
.x26{left:314.430667pt;}
.x6b{left:317.138667pt;}
.x1c{left:322.232000pt;}
.x11{left:327.501333pt;}
.x6c{left:330.421333pt;}
.x12{left:334.142667pt;}
.x3a{left:338.545333pt;}
.x25{left:341.840000pt;}
.x1f{left:347.221333pt;}
.x20{left:350.609333pt;}
.x5e{left:355.798667pt;}
.x47{left:358.952000pt;}
.x21{left:363.893333pt;}
.x5f{left:369.081333pt;}
.x48{left:373.414667pt;}
.x23{left:377.104000pt;}
.x71{left:378.561333pt;}
.x72{left:391.845333pt;}
.x66{left:398.333333pt;}
.x2e{left:407.854667pt;}
.x2d{left:409.597333pt;}
.x67{left:411.616000pt;}
.x2c{left:432.988000pt;}
.x60{left:437.621333pt;}
.x41{left:459.869333pt;}
.x42{left:462.702667pt;}
.x49{left:466.849333pt;}
.x13{left:485.681333pt;}
.x19{left:489.609333pt;}
.x14{left:492.324000pt;}
.x15{left:499.078667pt;}
.x1a{left:502.892000pt;}
.x16{left:505.720000pt;}
.x63{left:508.214667pt;}
.x64{left:521.498667pt;}
.x8{left:530.788000pt;}
.x9{left:537.430667pt;}
.x37{left:550.652000pt;}
.x4a{left:570.798667pt;}
.x4c{left:577.972000pt;}
.x4b{left:583.509333pt;}
.x27{left:603.109333pt;}
.x77{left:606.878667pt;}
.x65{left:616.120000pt;}
.x78{left:630.789333pt;}
.x3d{left:637.806667pt;}
.x6d{left:649.226667pt;}
.x22{left:660.869333pt;}
.x6e{left:662.509333pt;}
.xc{left:664.254667pt;}
.xa{left:671.088000pt;}
.x4e{left:672.189333pt;}
.x17{left:673.501333pt;}
.x73{left:675.168000pt;}
.xd{left:677.664000pt;}
.x4d{left:682.333333pt;}
.xe{left:684.305333pt;}
.x18{left:686.785333pt;}
.x76{left:697.142667pt;}
.x1d{left:698.986667pt;}
.x1e{left:712.270667pt;}
.xf{left:733.794667pt;}
.x10{left:740.436000pt;}
.xb{left:744.106667pt;}
.x50{left:766.389333pt;}
.x4f{left:782.584000pt;}
.x51{left:791.776000pt;}
.x52{left:867.378667pt;}
.x53{left:894.428000pt;}
.x56{left:965.869333pt;}
.x54{left:974.228000pt;}
.x55{left:980.725333pt;}
}




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