
    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_4724a965f49415787cc499f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_2c9ba364db1966d5c5d838b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8942e369214ce17c5cad405e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_ecb996f18aa19f578bff3152.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4003683c6b221710baaf736e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_2fcdd183e432ef714540c135.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_1656e166c228a66ce23ad058.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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:ffa;src:url('chunks/assets/font_29deebd61a743ee62a5499f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937000;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:ffb;src:url('chunks/assets/font_5da166b36181ca792efbaee7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_135db4c288ec9e999e2c346a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.670000;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:ffd;src:url('chunks/assets/font_e9dd2ee50943ad17f1c5b471.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m8{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);}
.m14{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);}
.ma{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);}
.m9{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m20{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);}
.m12{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);}
.m2{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);}
.m25{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);}
.m1a{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);}
.m22{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);}
.m11{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);}
.m1b{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);}
.m5{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);}
.m18{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);}
.m28{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);}
.m10{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);}
.m7{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);}
.m13{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);}
.m24{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);}
.m6{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);}
.m21{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);}
.md{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);}
.m23{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);}
.me{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);}
.m4{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);}
.m27{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);}
.mf{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);}
.m19{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);}
.m15{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);}
.m16{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);}
.m1f{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);}
.m1d{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);}
.mb{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);}
.m1e{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);}
.mc{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);}
.vb{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:17.088000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:24.690000px;}
.vc{vertical-align:32.874000px;}
.v7{vertical-align:41.772000px;}
.v5{vertical-align:44.250000px;}
.v8{vertical-align:55.062000px;}
.v6{vertical-align:65.946000px;}
.ls8{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000094px;}
.ls2d{letter-spacing:0.000422px;}
.ls36{letter-spacing:0.000676px;}
.ls39{letter-spacing:0.001584px;}
.ls2f{letter-spacing:0.002728px;}
.ls35{letter-spacing:0.002841px;}
.ls2b{letter-spacing:0.003178px;}
.ls2c{letter-spacing:0.004800px;}
.ls1d{letter-spacing:0.413108px;}
.ls17{letter-spacing:0.676741px;}
.ls12{letter-spacing:0.748200px;}
.ls7{letter-spacing:1.275394px;}
.ls13{letter-spacing:1.414741px;}
.ls1a{letter-spacing:1.420741px;}
.ls18{letter-spacing:1.781108px;}
.ls0{letter-spacing:1.861130px;}
.ls29{letter-spacing:2.197200px;}
.ls25{letter-spacing:2.219108px;}
.ls14{letter-spacing:2.225108px;}
.lsc{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls37{letter-spacing:3.070188px;}
.lsb{letter-spacing:3.507900px;}
.ls1c{letter-spacing:7.243142px;}
.ls1b{letter-spacing:8.605142px;}
.ls1{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.lsf{letter-spacing:12.339483px;}
.ls21{letter-spacing:13.089483px;}
.ls34{letter-spacing:13.320549px;}
.ls33{letter-spacing:13.448400px;}
.ls38{letter-spacing:13.454400px;}
.lsd{letter-spacing:14.094088px;}
.ls30{letter-spacing:14.100088px;}
.ls2a{letter-spacing:14.166817px;}
.lse{letter-spacing:14.907634px;}
.lsa{letter-spacing:15.063451px;}
.ls2e{letter-spacing:15.123227px;}
.ls16{letter-spacing:15.283142px;}
.ls9{letter-spacing:15.663483px;}
.ls15{letter-spacing:16.651142px;}
.ls32{letter-spacing:16.677392px;}
.ls10{letter-spacing:17.356200px;}
.ls1f{letter-spacing:18.069483px;}
.ls19{letter-spacing:19.515483px;}
.ls23{letter-spacing:20.905142px;}
.ls1e{letter-spacing:20.911142px;}
.ls28{letter-spacing:22.807142px;}
.ls11{letter-spacing:24.495483px;}
.ls24{letter-spacing:26.911142px;}
.ls20{letter-spacing:28.267142px;}
.ls27{letter-spacing:30.847142px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls26{letter-spacing:928.543142px;}
.ls22{letter-spacing:930.589142px;}
.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;}
}
.ws52{word-spacing:-14.943900px;}
.ws16{word-spacing:-14.355754px;}
.ws61{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws66{word-spacing:-4.234598px;}
.ws26{word-spacing:-3.347434px;}
.ws9e{word-spacing:-2.851315px;}
.ws90{word-spacing:-2.809453px;}
.ws48{word-spacing:-2.749678px;}
.ws72{word-spacing:-2.689902px;}
.ws8f{word-spacing:-2.450800px;}
.ws79{word-spacing:-2.367130px;}
.ws91{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws78{word-spacing:-1.613952px;}
.ws70{word-spacing:-1.613941px;}
.ws75{word-spacing:-1.452557px;}
.ws73{word-spacing:-1.434614px;}
.ws51{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws4e{word-spacing:-1.315063px;}
.wsa2{word-spacing:-1.291162px;}
.ws41{word-spacing:-1.255288px;}
.ws3a{word-spacing:-1.195512px;}
.ws9{word-spacing:-1.171598px;}
.ws6c{word-spacing:-1.135736px;}
.wsb{word-spacing:-1.046070px;}
.wsa1{word-spacing:-1.022170px;}
.ws50{word-spacing:-1.016185px;}
.ws6b{word-spacing:-0.896634px;}
.wsa5{word-spacing:-0.860774px;}
.ws60{word-spacing:-0.836858px;}
.ws6f{word-spacing:-0.777083px;}
.ws74{word-spacing:-0.699379px;}
.ws47{word-spacing:-0.418429px;}
.ws2c{word-spacing:-0.358654px;}
.ws4{word-spacing:-0.334742px;}
.wsaa{word-spacing:-0.322790px;}
.ws2b{word-spacing:-0.298878px;}
.ws3e{word-spacing:-0.239102px;}
.ws92{word-spacing:-0.215194px;}
.ws43{word-spacing:-0.179327px;}
.ws9b{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws9d{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws88{word-spacing:-0.004224px;}
.ws13{word-spacing:-0.000757px;}
.ws3{word-spacing:0.000000px;}
.ws87{word-spacing:0.000288px;}
.ws80{word-spacing:0.002573px;}
.ws1e{word-spacing:0.053798px;}
.ws40{word-spacing:0.059776px;}
.ws20{word-spacing:0.107597px;}
.ws28{word-spacing:0.119551px;}
.ws1c{word-spacing:0.161395px;}
.ws42{word-spacing:0.179327px;}
.ws22{word-spacing:0.215194px;}
.ws2d{word-spacing:0.239102px;}
.wsa0{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws93{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.ws44{word-spacing:0.418429px;}
.ws6a{word-spacing:0.478205px;}
.ws32{word-spacing:0.597756px;}
.ws82{word-spacing:0.649162px;}
.ws7b{word-spacing:0.649277px;}
.ws7e{word-spacing:0.652762px;}
.ws81{word-spacing:0.670118px;}
.ws7d{word-spacing:0.672518px;}
.ws7a{word-spacing:0.674400px;}
.ws7f{word-spacing:0.676003px;}
.ws7c{word-spacing:0.676118px;}
.ws68{word-spacing:0.745424px;}
.ws69{word-spacing:0.748009px;}
.ws19{word-spacing:0.806976px;}
.ws5f{word-spacing:0.836858px;}
.ws39{word-spacing:0.896634px;}
.ws5a{word-spacing:0.956410px;}
.ws18{word-spacing:0.968371px;}
.wsa{word-spacing:1.004227px;}
.ws56{word-spacing:1.016185px;}
.ws76{word-spacing:1.075961px;}
.ws6d{word-spacing:1.135736px;}
.ws36{word-spacing:1.255288px;}
.ws21{word-spacing:1.452557px;}
.ws83{word-spacing:1.494390px;}
.ws94{word-spacing:1.506355px;}
.ws3d{word-spacing:1.554166px;}
.ws8e{word-spacing:1.733492px;}
.ws57{word-spacing:1.793268px;}
.ws37{word-spacing:2.211697px;}
.ws55{word-spacing:2.271473px;}
.ws53{word-spacing:2.331248px;}
.ws77{word-spacing:2.450800px;}
.ws46{word-spacing:2.510575px;}
.ws5{word-spacing:2.510728px;}
.ws2{word-spacing:2.511541px;}
.ws4f{word-spacing:2.570351px;}
.ws1b{word-spacing:2.582323px;}
.ws1a{word-spacing:2.636122px;}
.ws71{word-spacing:2.749678px;}
.ws4c{word-spacing:2.809453px;}
.ws95{word-spacing:2.851315px;}
.ws17{word-spacing:2.869236px;}
.ws9a{word-spacing:2.958912px;}
.ws58{word-spacing:3.048556px;}
.wsab{word-spacing:3.219245px;}
.ws23{word-spacing:3.219667px;}
.ws45{word-spacing:3.287658px;}
.ws3f{word-spacing:3.347434px;}
.ws24{word-spacing:3.586536px;}
.ws84{word-spacing:3.646312px;}
.ws49{word-spacing:3.765863px;}
.ws38{word-spacing:3.825638px;}
.ws2e{word-spacing:4.004965px;}
.ws34{word-spacing:4.124516px;}
.ws1d{word-spacing:4.357670px;}
.ws6e{word-spacing:4.363619px;}
.ws5c{word-spacing:4.602721px;}
.ws67{word-spacing:4.662497px;}
.ws5e{word-spacing:4.722272px;}
.ws11{word-spacing:4.770079px;}
.ws12{word-spacing:4.853765px;}
.ws3c{word-spacing:4.961375px;}
.ws2a{word-spacing:5.021150px;}
.ws4b{word-spacing:5.379804px;}
.wsa7{word-spacing:5.595034px;}
.wsa8{word-spacing:5.648832px;}
.ws29{word-spacing:5.977560px;}
.ws86{word-spacing:6.025421px;}
.ws59{word-spacing:6.037336px;}
.ws5d{word-spacing:6.336214px;}
.ws85{word-spacing:6.402010px;}
.ws54{word-spacing:6.635092px;}
.ws5b{word-spacing:6.874194px;}
.ws3b{word-spacing:7.232848px;}
.ws4a{word-spacing:7.292623px;}
.wsf{word-spacing:7.782761px;}
.ws6{word-spacing:10.415351px;}
.ws2f{word-spacing:11.905687px;}
.wsd{word-spacing:12.176255px;}
.wsa3{word-spacing:13.390022px;}
.wsa4{word-spacing:13.390608px;}
.ws99{word-spacing:13.392816px;}
.wsa6{word-spacing:13.394045px;}
.ws98{word-spacing:13.395802px;}
.ws9f{word-spacing:13.718592px;}
.ws4d{word-spacing:14.884124px;}
.wse{word-spacing:16.109478px;}
.ws9c{word-spacing:16.516109px;}
.wsac{word-spacing:16.614566px;}
.ws96{word-spacing:16.619971px;}
.ws97{word-spacing:16.623706px;}
.ws10{word-spacing:26.109907px;}
.wsc{word-spacing:26.840252px;}
.wsa9{word-spacing:48.398400px;}
.ws15{word-spacing:54.988186px;}
.ws64{word-spacing:394.557466px;}
.ws8d{word-spacing:412.956518px;}
.ws62{word-spacing:429.042240px;}
.ws63{word-spacing:445.289357px;}
.ws89{word-spacing:447.495091px;}
.ws65{word-spacing:458.685158px;}
.ws8c{word-spacing:481.280486px;}
.ws8b{word-spacing:484.400794px;}
.ws8a{word-spacing:497.850394px;}
._48{margin-left:-24.747264px;}
._44{margin-left:-20.216221px;}
._45{margin-left:-18.745652px;}
._7{margin-left:-12.557357px;}
._8{margin-left:-6.634334px;}
._2f{margin-left:-5.559131px;}
._3{margin-left:-4.477180px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._9{width:3.690895px;}
._47{width:6.832397px;}
._43{width:9.581539px;}
._4{width:12.971268px;}
._13{width:14.293936px;}
._d{width:15.816730px;}
._c{width:17.388796px;}
._10{width:18.948865px;}
._e{width:20.690054px;}
._19{width:22.031598px;}
._b{width:24.047885px;}
._16{width:25.817069px;}
._14{width:28.991166px;}
._6{width:30.587087px;}
._f{width:33.235234px;}
._46{width:34.261905px;}
._15{width:35.381165px;}
._1a{width:37.120648px;}
._1c{width:38.854140px;}
._a{width:54.396277px;}
._18{width:70.355881px;}
._17{width:73.523988px;}
._1b{width:83.506513px;}
._42{width:88.767360px;}
._34{width:103.846906px;}
._30{width:124.489498px;}
._31{width:131.913677px;}
._33{width:175.920768px;}
._35{width:177.427123px;}
._32{width:180.493632px;}
._37{width:185.550682px;}
._36{width:199.000282px;}
._38{width:207.177638px;}
._3a{width:221.254140px;}
._39{width:242.200397px;}
._24{width:292.179110px;}
._40{width:310.631962px;}
._1f{width:429.849216px;}
._3d{width:448.248269px;}
._21{width:453.220512px;}
._20{width:458.685158px;}
._22{width:466.666512px;}
._1d{width:471.220186px;}
._23{width:476.277235px;}
._1e{width:480.086736px;}
._3b{width:504.294470px;}
._25{width:515.819059px;}
._3f{width:521.335872px;}
._29{width:531.097805px;}
._3e{width:534.785472px;}
._3c{width:547.237325px;}
._28{width:592.481779px;}
._2a{width:844.957670px;}
._2e{width:848.992550px;}
._26{width:852.435648px;}
._27{width:860.590675px;}
._2b{width:863.603386px;}
._11{width:903.665621px;}
._2d{width:961.054618px;}
._2c{width:969.447168px;}
._41{width:2494.970700px;}
._12{width:2518.880700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(137,92,52);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsc{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:147.405960px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1f{bottom:15.837920px;}
.y4d{bottom:31.890000px;}
.y153{bottom:92.209500px;}
.y111{bottom:95.314500px;}
.y113{bottom:97.152000px;}
.y4c{bottom:103.621500px;}
.y1d{bottom:104.646000px;}
.y87{bottom:106.744500px;}
.y110{bottom:114.144000px;}
.ya7{bottom:117.259500px;}
.yd8{bottom:120.493500px;}
.y4b{bottom:122.449500px;}
.y1c{bottom:122.535000px;}
.y86{bottom:125.574000px;}
.y10f{bottom:132.973500px;}
.yd7{bottom:139.323000px;}
.y1b{bottom:140.422500px;}
.y4a{bottom:141.279000px;}
.y85{bottom:144.403500px;}
.y10d{bottom:151.803000px;}
.y10e{bottom:157.228500px;}
.yd6{bottom:158.152500px;}
.y1a{bottom:158.310000px;}
.y49{bottom:160.108500px;}
.yf2{bottom:162.978000px;}
.y84{bottom:163.233000px;}
.y10c{bottom:175.116000px;}
.y19{bottom:176.199000px;}
.yd5{bottom:176.982000px;}
.y48{bottom:178.938000px;}
.y184{bottom:181.749000px;}
.yf1{bottom:181.806000px;}
.y83{bottom:182.062500px;}
.y18{bottom:194.086500px;}
.yd4{bottom:195.811500px;}
.y47{bottom:197.767500px;}
.y183{bottom:199.009500px;}
.yf0{bottom:200.635500px;}
.y82{bottom:200.892000px;}
.y10b{bottom:208.740000px;}
.y17{bottom:211.974000px;}
.yd3{bottom:214.641000px;}
.y182{bottom:216.270000px;}
.y46{bottom:216.597000px;}
.yef{bottom:219.465000px;}
.y81{bottom:219.721500px;}
.y10a{bottom:227.569500px;}
.yd2{bottom:228.451500px;}
.y16{bottom:229.863000px;}
.yd1{bottom:233.470500px;}
.y181{bottom:233.530500px;}
.y13e{bottom:235.375500px;}
.y45{bottom:235.426500px;}
.yee{bottom:238.294500px;}
.y80{bottom:243.034500px;}
.y109{bottom:246.399000px;}
.y180{bottom:250.789500px;}
.y13d{bottom:254.205000px;}
.y44{bottom:254.256000px;}
.yed{bottom:257.124000px;}
.yd0{bottom:257.590500px;}
.ycf{bottom:261.714000px;}
.y108{bottom:265.228500px;}
.y17f{bottom:268.050000px;}
.y13c{bottom:273.034500px;}
.y43{bottom:273.085500px;}
.y7f{bottom:276.658500px;}
.yec{bottom:280.437000px;}
.y107{bottom:284.058000px;}
.y17e{bottom:285.310500px;}
.y13b{bottom:291.864000px;}
.y42{bottom:291.915000px;}
.yce{bottom:291.963000px;}
.y7d{bottom:295.488000px;}
.ycd{bottom:296.235000px;}
.y15{bottom:300.154500px;}
.yeb{bottom:300.612000px;}
.y7e{bottom:300.912000px;}
.y17d{bottom:302.571000px;}
.y106{bottom:302.887500px;}
.y13a{bottom:310.693500px;}
.y41{bottom:310.744500px;}
.y7c{bottom:314.317500px;}
.y14{bottom:318.043500px;}
.y17c{bottom:319.831500px;}
.yea{bottom:320.785500px;}
.y105{bottom:321.717000px;}
.ycc{bottom:327.661500px;}
.y139{bottom:329.523000px;}
.y40{bottom:329.574000px;}
.ycb{bottom:332.680500px;}
.y7a{bottom:333.145500px;}
.y13{bottom:335.931000px;}
.y17b{bottom:337.092000px;}
.y7b{bottom:338.571000px;}
.y104{bottom:340.546500px;}
.y138{bottom:348.352500px;}
.y3f{bottom:348.403500px;}
.yca{bottom:351.510000px;}
.y79{bottom:351.975000px;}
.y12{bottom:353.818500px;}
.y17a{bottom:354.352500px;}
.ye9{bottom:354.409500px;}
.y103{bottom:359.376000px;}
.y77{bottom:370.804500px;}
.y179{bottom:371.613000px;}
.y3e{bottom:371.716500px;}
.ye8{bottom:373.239000px;}
.y78{bottom:376.230000px;}
.y102{bottom:378.205500px;}
.y11{bottom:380.673000px;}
.yc9{bottom:382.884000px;}
.y178{bottom:388.872000px;}
.y75{bottom:389.634000px;}
.ye7{bottom:392.068500px;}
.yc6{bottom:393.136500px;}
.y76{bottom:395.059500px;}
.y137{bottom:396.804000px;}
.y101{bottom:397.035000px;}
.y10{bottom:398.562000px;}
.yc7{bottom:399.180000px;}
.yc8{bottom:399.328500px;}
.y177{bottom:406.132500px;}
.y73{bottom:408.463500px;}
.ye6{bottom:410.898000px;}
.y74{bottom:413.889000px;}
.y100{bottom:415.864500px;}
.yf{bottom:416.449500px;}
.y136{bottom:420.444000px;}
.y152{bottom:420.787500px;}
.y176{bottom:423.393000px;}
.ye5{bottom:429.727500px;}
.y72{bottom:431.776500px;}
.yff{bottom:434.694000px;}
.y151{bottom:439.617000px;}
.y175{bottom:440.653500px;}
.yc5{bottom:442.767000px;}
.y135{bottom:444.085500px;}
.ye{bottom:444.798000px;}
.y3d{bottom:446.866500px;}
.yfe{bottom:453.523500px;}
.y174{bottom:457.914000px;}
.y150{bottom:458.446500px;}
.yc4{bottom:461.596500px;}
.yd{bottom:462.685500px;}
.y71{bottom:465.400500px;}
.y134{bottom:467.725500px;}
.yfd{bottom:472.353000px;}
.y173{bottom:475.174500px;}
.ye4{bottom:475.189500px;}
.y14f{bottom:477.276000px;}
.y70{bottom:484.230000px;}
.y3c{bottom:484.255500px;}
.yc{bottom:489.540000px;}
.y133{bottom:491.367000px;}
.y172{bottom:492.435000px;}
.yfc{bottom:495.664500px;}
.y14e{bottom:496.105500px;}
.ye3{bottom:498.831000px;}
.y6f{bottom:503.059500px;}
.y3b{bottom:503.713500px;}
.yc3{bottom:507.058500px;}
.yb{bottom:507.429000px;}
.y171{bottom:509.695500px;}
.y14d{bottom:514.935000px;}
.y132{bottom:515.007000px;}
.ya6{bottom:517.405500px;}
.y6e{bottom:521.889000px;}
.ye2{bottom:522.471000px;}
.y3a{bottom:523.170000px;}
.ya{bottom:525.316500px;}
.y170{bottom:526.956000px;}
.yfb{bottom:529.288500px;}
.yc2{bottom:530.698500px;}
.y14c{bottom:533.764500px;}
.ya5{bottom:536.235000px;}
.y131{bottom:538.648500px;}
.y6d{bottom:540.718500px;}
.y39{bottom:542.626500px;}
.y9{bottom:543.204000px;}
.y16f{bottom:544.215000px;}
.ye1{bottom:546.112500px;}
.y12e{bottom:546.867000px;}
.yfa{bottom:548.118000px;}
.y14b{bottom:552.594000px;}
.yc1{bottom:554.340000px;}
.ya4{bottom:555.064500px;}
.y130{bottom:555.087000px;}
.y6c{bottom:559.548000px;}
.y8{bottom:561.093000px;}
.y16e{bottom:561.475500px;}
.y38{bottom:562.084500px;}
.y12d{bottom:563.305500px;}
.yf9{bottom:566.947500px;}
.ye0{bottom:569.752500px;}
.y14a{bottom:571.423500px;}
.y12f{bottom:571.524000px;}
.ya3{bottom:573.894000px;}
.yc0{bottom:577.980000px;}
.y6b{bottom:578.377500px;}
.y16d{bottom:578.736000px;}
.y7{bottom:578.980500px;}
.y37{bottom:581.541000px;}
.yf8{bottom:585.777000px;}
.y149{bottom:590.253000px;}
.ya2{bottom:592.723500px;}
.ydf{bottom:593.392500px;}
.y16c{bottom:595.996500px;}
.y6{bottom:596.868000px;}
.y6a{bottom:597.207000px;}
.y36{bottom:600.999000px;}
.ybf{bottom:601.621500px;}
.yf7{bottom:604.606500px;}
.y12c{bottom:606.133500px;}
.y148{bottom:609.082500px;}
.ya1{bottom:611.553000px;}
.y16b{bottom:613.257000px;}
.y5{bottom:614.757000px;}
.y69{bottom:616.036500px;}
.yde{bottom:617.034000px;}
.y35{bottom:620.455500px;}
.yf6{bottom:623.436000px;}
.ybe{bottom:625.261500px;}
.y12b{bottom:625.366500px;}
.ya0{bottom:627.652500px;}
.y147{bottom:627.912000px;}
.y9f{bottom:630.382500px;}
.y16a{bottom:630.517500px;}
.y4{bottom:632.644500px;}
.y68{bottom:634.866000px;}
.y34{bottom:639.912000px;}
.ydd{bottom:640.674000px;}
.yf5{bottom:642.265500px;}
.y146{bottom:646.741500px;}
.y169{bottom:647.778000px;}
.ybd{bottom:648.903000px;}
.y9e{bottom:649.212000px;}
.y1{bottom:650.532055px;}
.y67{bottom:653.695500px;}
.y33{bottom:659.370000px;}
.y12a{bottom:662.470500px;}
.ydc{bottom:664.315500px;}
.y168{bottom:665.038500px;}
.y145{bottom:665.571000px;}
.y9d{bottom:668.041500px;}
.y66{bottom:672.525000px;}
.ybc{bottom:672.543000px;}
.yf4{bottom:675.831000px;}
.y32{bottom:678.826500px;}
.y129{bottom:681.300000px;}
.y167{bottom:682.297500px;}
.y144{bottom:684.400500px;}
.y9c{bottom:686.871000px;}
.ybb{bottom:688.981500px;}
.y65{bottom:691.354500px;}
.yf3{bottom:695.064000px;}
.ydb{bottom:695.935500px;}
.y31{bottom:698.284500px;}
.y166{bottom:699.558000px;}
.y128{bottom:700.129500px;}
.y143{bottom:703.230000px;}
.y9b{bottom:705.700500px;}
.y112{bottom:709.174500px;}
.y64{bottom:710.184000px;}
.y165{bottom:716.818500px;}
.y30{bottom:717.741000px;}
.y127{bottom:718.959000px;}
.yba{bottom:720.601500px;}
.y142{bottom:722.059500px;}
.y9a{bottom:724.530000px;}
.y63{bottom:729.013500px;}
.y164{bottom:734.079000px;}
.yda{bottom:734.595000px;}
.y2f{bottom:737.197500px;}
.y126{bottom:737.788500px;}
.y141{bottom:740.889000px;}
.y99{bottom:743.359500px;}
.y62{bottom:747.843000px;}
.y163{bottom:751.339500px;}
.y125{bottom:756.616500px;}
.y2e{bottom:756.655500px;}
.yb9{bottom:757.705500px;}
.y98{bottom:762.189000px;}
.y140{bottom:764.200500px;}
.y61{bottom:766.671000px;}
.y162{bottom:768.600000px;}
.y124{bottom:775.446000px;}
.y2d{bottom:776.112000px;}
.yb8{bottom:776.535000px;}
.y97{bottom:781.018500px;}
.y60{bottom:785.500500px;}
.y161{bottom:785.860500px;}
.y123{bottom:794.275500px;}
.y13f{bottom:794.628000px;}
.yb7{bottom:795.364500px;}
.y96{bottom:799.848000px;}
.y160{bottom:803.121000px;}
.y5f{bottom:804.330000px;}
.y2c{bottom:810.892500px;}
.y122{bottom:813.105000px;}
.yb6{bottom:814.194000px;}
.y95{bottom:818.677500px;}
.y5e{bottom:823.159500px;}
.y15f{bottom:824.863500px;}
.y2b{bottom:831.372000px;}
.y121{bottom:831.934500px;}
.yb5{bottom:833.023500px;}
.y94{bottom:837.507000px;}
.y5d{bottom:841.989000px;}
.y2a{bottom:843.172500px;}
.y120{bottom:850.764000px;}
.yb4{bottom:851.853000px;}
.y93{bottom:856.335000px;}
.y15e{bottom:858.487500px;}
.y5c{bottom:860.818500px;}
.y29{bottom:863.652000px;}
.y11f{bottom:869.593500px;}
.yb3{bottom:870.682500px;}
.y92{bottom:875.164500px;}
.y28{bottom:875.451000px;}
.y5b{bottom:879.648000px;}
.y15d{bottom:885.028500px;}
.y11e{bottom:888.423000px;}
.yb2{bottom:889.512000px;}
.y91{bottom:893.994000px;}
.y27{bottom:895.930500px;}
.y5a{bottom:898.477500px;}
.y15c{bottom:902.602500px;}
.y11d{bottom:907.252500px;}
.y26{bottom:907.731000px;}
.yb1{bottom:908.341500px;}
.y90{bottom:912.823500px;}
.y59{bottom:917.307000px;}
.yd9{bottom:918.249000px;}
.y15b{bottom:920.176500px;}
.yb0{bottom:927.171000px;}
.y25{bottom:928.209000px;}
.y11c{bottom:930.565500px;}
.y8f{bottom:931.653000px;}
.y58{bottom:936.136500px;}
.yaf{bottom:946.000500px;}
.y15a{bottom:946.717500px;}
.y8e{bottom:950.482500px;}
.y57{bottom:954.966000px;}
.yae{bottom:964.828500px;}
.y24{bottom:969.082500px;}
.y8d{bottom:969.312000px;}
.y159{bottom:973.258500px;}
.y56{bottom:973.795500px;}
.y11b{bottom:975.877500px;}
.yad{bottom:983.658000px;}
.y8c{bottom:988.141500px;}
.y11a{bottom:992.316000px;}
.y55{bottom:992.625000px;}
.y158{bottom:999.798000px;}
.yac{bottom:1002.487500px;}
.y8b{bottom:1006.971000px;}
.y23{bottom:1009.000500px;}
.y54{bottom:1011.454500px;}
.y118{bottom:1015.957500px;}
.yab{bottom:1021.317000px;}
.y8a{bottom:1023.070500px;}
.y119{bottom:1024.176000px;}
.y89{bottom:1025.800500px;}
.y157{bottom:1026.339000px;}
.y53{bottom:1030.284000px;}
.y117{bottom:1032.396000px;}
.y22{bottom:1037.245500px;}
.yaa{bottom:1040.146500px;}
.y156{bottom:1043.913000px;}
.y88{bottom:1044.630000px;}
.y52{bottom:1049.113500px;}
.y116{bottom:1056.036000px;}
.ya9{bottom:1063.459500px;}
.y115{bottom:1064.256000px;}
.y21{bottom:1065.489000px;}
.y51{bottom:1067.943000px;}
.y155{bottom:1070.454000px;}
.ya8{bottom:1082.289000px;}
.y50{bottom:1086.772500px;}
.y154{bottom:1088.028000px;}
.y20{bottom:1093.734000px;}
.y4f{bottom:1105.602000px;}
.y114{bottom:1107.082500px;}
.y1e{bottom:1137.220500px;}
.y4e{bottom:1168.366500px;}
.h27{height:25.070054px;}
.h2{height:25.508090px;}
.hc{height:26.217754px;}
.h16{height:27.855430px;}
.h5{height:30.587087px;}
.h6{height:30.670772px;}
.h14{height:31.526842px;}
.h4{height:33.112997px;}
.h13{height:33.209038px;}
.h1e{height:33.299897px;}
.h3{height:34.199443px;}
.hd{height:34.956859px;}
.h12{height:35.052500px;}
.he{height:38.896243px;}
.hf{height:39.326630px;}
.h29{height:39.434227px;}
.h15{height:41.482876px;}
.h1c{height:42.500452px;}
.h10{height:43.217759px;}
.h11{height:43.695964px;}
.h9{height:43.815515px;}
.h17{height:48.567733px;}
.h18{height:49.782344px;}
.h7{height:50.930649px;}
.hb{height:54.541601px;}
.h25{height:54.905038px;}
.h1d{height:54.995897px;}
.h1f{height:57.989897px;}
.h23{height:60.189964px;}
.h21{height:60.783964px;}
.h24{height:63.771964px;}
.h26{height:71.770243px;}
.h28{height:72.206630px;}
.h22{height:74.483897px;}
.h1a{height:75.071897px;}
.h20{height:75.077897px;}
.ha{height:77.792486px;}
.h1b{height:88.271038px;}
.h19{height:99.245897px;}
.h8{height:99.941241px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:198.822293px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:57.551633px;}
.x75{left:62.121000px;}
.x88{left:64.509000px;}
.x79{left:66.415500px;}
.x7a{left:68.040000px;}
.x8e{left:84.220500px;}
.x8c{left:85.848000px;}
.x76{left:86.895000px;}
.x87{left:93.459000px;}
.x77{left:95.202000px;}
.x86{left:98.919000px;}
.x85{left:102.087000px;}
.x74{left:103.930500px;}
.x7b{left:111.151500px;}
.x7c{left:230.214000px;}
.x72{left:234.339000px;}
.x78{left:239.181000px;}
.x30{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x7d{left:262.443000px;}
.x52{left:266.499000px;}
.x5{left:269.914500px;}
.x49{left:273.984000px;}
.x8{left:281.479500px;}
.x31{left:284.184000px;}
.x69{left:285.708000px;}
.x51{left:295.449000px;}
.x32{left:296.592000px;}
.x4f{left:300.909000px;}
.x33{left:303.018000px;}
.x4e{left:304.077000px;}
.x6c{left:306.492000px;}
.x7{left:308.776500px;}
.x8a{left:310.342500px;}
.x50{left:312.523500px;}
.x2c{left:318.733500px;}
.x34{left:322.570500px;}
.x68{left:324.288000px;}
.x67{left:325.458000px;}
.x2d{left:329.689500px;}
.x35{left:332.737500px;}
.x6a{left:347.979000px;}
.x6b{left:349.243500px;}
.x63{left:355.714500px;}
.x8b{left:372.409500px;}
.x7e{left:382.522500px;}
.x7f{left:383.973000px;}
.x89{left:390.751500px;}
.x5b{left:411.573000px;}
.x55{left:416.977500px;}
.x5c{left:420.808500px;}
.x3e{left:431.331000px;}
.x3f{left:446.275500px;}
.x4b{left:453.054000px;}
.x4a{left:457.857000px;}
.x36{left:470.916000px;}
.x37{left:477.342000px;}
.x38{left:493.807500px;}
.x60{left:497.884500px;}
.x39{left:500.233500px;}
.x24{left:503.668500px;}
.x11{left:512.529000px;}
.x25{left:515.887500px;}
.x12{left:520.000500px;}
.x3a{left:522.123000px;}
.x13{left:523.812000px;}
.x57{left:527.587500px;}
.x14{left:531.283500px;}
.x1b{left:534.996000px;}
.x56{left:539.748000px;}
.x61{left:544.525500px;}
.x64{left:556.146000px;}
.x81{left:560.547000px;}
.x26{left:564.897000px;}
.x27{left:571.323000px;}
.x82{left:574.810500px;}
.x80{left:576.484500px;}
.x66{left:577.965000px;}
.x58{left:580.264500px;}
.x62{left:582.526500px;}
.x3b{left:591.987000px;}
.x4c{left:593.665500px;}
.x5d{left:596.310000px;}
.x3c{left:598.411500px;}
.x47{left:600.430500px;}
.x5e{left:605.545500px;}
.x48{left:609.661500px;}
.x5f{left:613.825500px;}
.x40{left:615.400500px;}
.x59{left:620.560500px;}
.x41{left:625.638000px;}
.x5a{left:638.602500px;}
.x9{left:653.368500px;}
.x65{left:657.565500px;}
.xa{left:660.841500px;}
.xb{left:664.644000px;}
.xc{left:672.115500px;}
.x42{left:677.620500px;}
.x43{left:684.046500px;}
.x6d{left:689.839500px;}
.x44{left:696.027000px;}
.x45{left:706.264500px;}
.x2a{left:710.053500px;}
.x84{left:713.925000px;}
.x2b{left:716.859000px;}
.x70{left:721.453500px;}
.x1c{left:723.447000px;}
.x71{left:728.259000px;}
.x1d{left:730.920000px;}
.x83{left:733.467000px;}
.x1e{left:734.707500px;}
.x2e{left:740.499000px;}
.x4d{left:743.574000px;}
.x23{left:745.608000px;}
.x53{left:746.695500px;}
.x1f{left:749.652000px;}
.x20{left:753.439500px;}
.x2f{left:755.782500px;}
.x8d{left:756.852000px;}
.x73{left:760.383000px;}
.x6e{left:762.306000px;}
.x15{left:764.172000px;}
.x21{left:768.384000px;}
.x6f{left:770.322000px;}
.x16{left:771.645000px;}
.x17{left:775.447500px;}
.x28{left:781.345500px;}
.x29{left:782.628000px;}
.x22{left:787.116000px;}
.x18{left:790.392000px;}
.x19{left:794.194500px;}
.x1a{left:809.139000px;}
.xd{left:810.724500px;}
.xe{left:818.196000px;}
.x3d{left:822.340500px;}
.xf{left:825.519000px;}
.x46{left:826.621500px;}
.x10{left:832.990500px;}
.x54{left:837.867000px;}
@media print{
.vb{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:15.189333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:21.946667pt;}
.vc{vertical-align:29.221333pt;}
.v7{vertical-align:37.130667pt;}
.v5{vertical-align:39.333333pt;}
.v8{vertical-align:48.944000pt;}
.v6{vertical-align:58.618667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000084pt;}
.ls2d{letter-spacing:0.000375pt;}
.ls36{letter-spacing:0.000600pt;}
.ls39{letter-spacing:0.001408pt;}
.ls2f{letter-spacing:0.002425pt;}
.ls35{letter-spacing:0.002525pt;}
.ls2b{letter-spacing:0.002825pt;}
.ls2c{letter-spacing:0.004267pt;}
.ls1d{letter-spacing:0.367207pt;}
.ls17{letter-spacing:0.601548pt;}
.ls12{letter-spacing:0.665067pt;}
.ls7{letter-spacing:1.133683pt;}
.ls13{letter-spacing:1.257548pt;}
.ls1a{letter-spacing:1.262881pt;}
.ls18{letter-spacing:1.583207pt;}
.ls0{letter-spacing:1.654338pt;}
.ls29{letter-spacing:1.953067pt;}
.ls25{letter-spacing:1.972541pt;}
.ls14{letter-spacing:1.977874pt;}
.lsc{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls37{letter-spacing:2.729056pt;}
.lsb{letter-spacing:3.118133pt;}
.ls1c{letter-spacing:6.438349pt;}
.ls1b{letter-spacing:7.649015pt;}
.ls1{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.lsf{letter-spacing:10.968429pt;}
.ls21{letter-spacing:11.635096pt;}
.ls34{letter-spacing:11.840488pt;}
.ls33{letter-spacing:11.954133pt;}
.ls38{letter-spacing:11.959467pt;}
.lsd{letter-spacing:12.528078pt;}
.ls30{letter-spacing:12.533411pt;}
.ls2a{letter-spacing:12.592726pt;}
.lse{letter-spacing:13.251230pt;}
.lsa{letter-spacing:13.389734pt;}
.ls2e{letter-spacing:13.442868pt;}
.ls16{letter-spacing:13.585015pt;}
.ls9{letter-spacing:13.923096pt;}
.ls15{letter-spacing:14.801015pt;}
.ls32{letter-spacing:14.824349pt;}
.ls10{letter-spacing:15.427733pt;}
.ls1f{letter-spacing:16.061762pt;}
.ls19{letter-spacing:17.347096pt;}
.ls23{letter-spacing:18.582349pt;}
.ls1e{letter-spacing:18.587682pt;}
.ls28{letter-spacing:20.273015pt;}
.ls11{letter-spacing:21.773762pt;}
.ls24{letter-spacing:23.921015pt;}
.ls20{letter-spacing:25.126349pt;}
.ls27{letter-spacing:27.419682pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls26{letter-spacing:825.371682pt;}
.ls22{letter-spacing:827.190349pt;}
.ws52{word-spacing:-13.283467pt;}
.ws16{word-spacing:-12.760670pt;}
.ws61{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws66{word-spacing:-3.764087pt;}
.ws26{word-spacing:-2.975497pt;}
.ws9e{word-spacing:-2.534502pt;}
.ws90{word-spacing:-2.497292pt;}
.ws48{word-spacing:-2.444158pt;}
.ws72{word-spacing:-2.391024pt;}
.ws8f{word-spacing:-2.178489pt;}
.ws79{word-spacing:-2.104115pt;}
.ws91{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws78{word-spacing:-1.434624pt;}
.ws70{word-spacing:-1.434614pt;}
.ws75{word-spacing:-1.291162pt;}
.ws73{word-spacing:-1.275213pt;}
.ws51{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws4e{word-spacing:-1.168945pt;}
.wsa2{word-spacing:-1.147699pt;}
.ws41{word-spacing:-1.115811pt;}
.ws3a{word-spacing:-1.062677pt;}
.ws9{word-spacing:-1.041421pt;}
.ws6c{word-spacing:-1.009543pt;}
.wsb{word-spacing:-0.929840pt;}
.wsa1{word-spacing:-0.908595pt;}
.ws50{word-spacing:-0.903276pt;}
.ws6b{word-spacing:-0.797008pt;}
.wsa5{word-spacing:-0.765133pt;}
.ws60{word-spacing:-0.743874pt;}
.ws6f{word-spacing:-0.690740pt;}
.ws74{word-spacing:-0.621670pt;}
.ws47{word-spacing:-0.371937pt;}
.ws2c{word-spacing:-0.318803pt;}
.ws4{word-spacing:-0.297549pt;}
.wsaa{word-spacing:-0.286925pt;}
.ws2b{word-spacing:-0.265669pt;}
.ws3e{word-spacing:-0.212535pt;}
.ws92{word-spacing:-0.191283pt;}
.ws43{word-spacing:-0.159402pt;}
.ws9b{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws9d{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws88{word-spacing:-0.003755pt;}
.ws13{word-spacing:-0.000673pt;}
.ws3{word-spacing:0.000000pt;}
.ws87{word-spacing:0.000256pt;}
.ws80{word-spacing:0.002287pt;}
.ws1e{word-spacing:0.047821pt;}
.ws40{word-spacing:0.053134pt;}
.ws20{word-spacing:0.095642pt;}
.ws28{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.143462pt;}
.ws42{word-spacing:0.159402pt;}
.ws22{word-spacing:0.191283pt;}
.ws2d{word-spacing:0.212535pt;}
.wsa0{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws93{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.ws44{word-spacing:0.371937pt;}
.ws6a{word-spacing:0.425071pt;}
.ws32{word-spacing:0.531339pt;}
.ws82{word-spacing:0.577033pt;}
.ws7b{word-spacing:0.577135pt;}
.ws7e{word-spacing:0.580233pt;}
.ws81{word-spacing:0.595661pt;}
.ws7d{word-spacing:0.597794pt;}
.ws7a{word-spacing:0.599467pt;}
.ws7f{word-spacing:0.600892pt;}
.ws7c{word-spacing:0.600994pt;}
.ws68{word-spacing:0.662599pt;}
.ws69{word-spacing:0.664897pt;}
.ws19{word-spacing:0.717312pt;}
.ws5f{word-spacing:0.743874pt;}
.ws39{word-spacing:0.797008pt;}
.ws5a{word-spacing:0.850142pt;}
.ws18{word-spacing:0.860774pt;}
.wsa{word-spacing:0.892646pt;}
.ws56{word-spacing:0.903276pt;}
.ws76{word-spacing:0.956410pt;}
.ws6d{word-spacing:1.009543pt;}
.ws36{word-spacing:1.115811pt;}
.ws21{word-spacing:1.291162pt;}
.ws83{word-spacing:1.328347pt;}
.ws94{word-spacing:1.338982pt;}
.ws3d{word-spacing:1.381481pt;}
.ws8e{word-spacing:1.540882pt;}
.ws57{word-spacing:1.594016pt;}
.ws37{word-spacing:1.965953pt;}
.ws55{word-spacing:2.019087pt;}
.ws53{word-spacing:2.072221pt;}
.ws77{word-spacing:2.178489pt;}
.ws46{word-spacing:2.231622pt;}
.ws5{word-spacing:2.231758pt;}
.ws2{word-spacing:2.232481pt;}
.ws4f{word-spacing:2.284756pt;}
.ws1b{word-spacing:2.295398pt;}
.ws1a{word-spacing:2.343219pt;}
.ws71{word-spacing:2.444158pt;}
.ws4c{word-spacing:2.497292pt;}
.ws95{word-spacing:2.534502pt;}
.ws17{word-spacing:2.550432pt;}
.ws9a{word-spacing:2.630144pt;}
.ws58{word-spacing:2.709827pt;}
.wsab{word-spacing:2.861551pt;}
.ws23{word-spacing:2.861926pt;}
.ws45{word-spacing:2.922363pt;}
.ws3f{word-spacing:2.975497pt;}
.ws24{word-spacing:3.188032pt;}
.ws84{word-spacing:3.241166pt;}
.ws49{word-spacing:3.347434pt;}
.ws38{word-spacing:3.400567pt;}
.ws2e{word-spacing:3.559969pt;}
.ws34{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.873485pt;}
.ws6e{word-spacing:3.878772pt;}
.ws5c{word-spacing:4.091308pt;}
.ws67{word-spacing:4.144442pt;}
.ws5e{word-spacing:4.197575pt;}
.ws11{word-spacing:4.240070pt;}
.ws12{word-spacing:4.314458pt;}
.ws3c{word-spacing:4.410111pt;}
.ws2a{word-spacing:4.463245pt;}
.ws4b{word-spacing:4.782048pt;}
.wsa7{word-spacing:4.973363pt;}
.wsa8{word-spacing:5.021184pt;}
.ws29{word-spacing:5.313387pt;}
.ws86{word-spacing:5.355930pt;}
.ws59{word-spacing:5.366521pt;}
.ws5d{word-spacing:5.632190pt;}
.ws85{word-spacing:5.690675pt;}
.ws54{word-spacing:5.897859pt;}
.ws5b{word-spacing:6.110395pt;}
.ws3b{word-spacing:6.429198pt;}
.ws4a{word-spacing:6.482332pt;}
.wsf{word-spacing:6.918010pt;}
.ws6{word-spacing:9.258090pt;}
.ws2f{word-spacing:10.582833pt;}
.wsd{word-spacing:10.823338pt;}
.wsa3{word-spacing:11.902242pt;}
.wsa4{word-spacing:11.902763pt;}
.ws99{word-spacing:11.904725pt;}
.wsa6{word-spacing:11.905818pt;}
.ws98{word-spacing:11.907379pt;}
.ws9f{word-spacing:12.194304pt;}
.ws4d{word-spacing:13.230333pt;}
.wse{word-spacing:14.319536pt;}
.ws9c{word-spacing:14.680986pt;}
.wsac{word-spacing:14.768503pt;}
.ws96{word-spacing:14.773308pt;}
.ws97{word-spacing:14.776627pt;}
.ws10{word-spacing:23.208806pt;}
.wsc{word-spacing:23.858002pt;}
.wsa9{word-spacing:43.020800pt;}
.ws15{word-spacing:48.878387pt;}
.ws64{word-spacing:350.717747pt;}
.ws8d{word-spacing:367.072461pt;}
.ws62{word-spacing:381.370880pt;}
.ws63{word-spacing:395.812762pt;}
.ws89{word-spacing:397.773414pt;}
.ws65{word-spacing:407.720141pt;}
.ws8c{word-spacing:427.804877pt;}
.ws8b{word-spacing:430.578483pt;}
.ws8a{word-spacing:442.533683pt;}
._48{margin-left:-21.997568pt;}
._44{margin-left:-17.969974pt;}
._45{margin-left:-16.662801pt;}
._7{margin-left:-11.162095pt;}
._8{margin-left:-5.897186pt;}
._2f{margin-left:-4.941450pt;}
._3{margin-left:-3.979715pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._9{width:3.280796pt;}
._47{width:6.073242pt;}
._43{width:8.516924pt;}
._4{width:11.530016pt;}
._13{width:12.705721pt;}
._d{width:14.059315pt;}
._c{width:15.456707pt;}
._10{width:16.843436pt;}
._e{width:18.391159pt;}
._19{width:19.583643pt;}
._b{width:21.375898pt;}
._16{width:22.948506pt;}
._14{width:25.769925pt;}
._6{width:27.188522pt;}
._f{width:29.542430pt;}
._46{width:30.455026pt;}
._15{width:31.449924pt;}
._1a{width:32.996131pt;}
._1c{width:34.537013pt;}
._a{width:48.352246pt;}
._18{width:62.538561pt;}
._17{width:65.354656pt;}
._1b{width:74.228012pt;}
._42{width:78.904320pt;}
._34{width:92.308361pt;}
._30{width:110.657331pt;}
._31{width:117.256602pt;}
._33{width:156.374016pt;}
._35{width:157.712998pt;}
._32{width:160.438784pt;}
._37{width:164.933939pt;}
._36{width:176.889139pt;}
._38{width:184.157901pt;}
._3a{width:196.670346pt;}
._39{width:215.289242pt;}
._24{width:259.714765pt;}
._40{width:276.117299pt;}
._1f{width:382.088192pt;}
._3d{width:398.442906pt;}
._21{width:402.862677pt;}
._20{width:407.720141pt;}
._22{width:414.814677pt;}
._1d{width:418.862387pt;}
._23{width:423.357542pt;}
._1e{width:426.743765pt;}
._3b{width:448.261751pt;}
._25{width:458.505830pt;}
._3f{width:463.409664pt;}
._29{width:472.086938pt;}
._3e{width:475.364864pt;}
._3c{width:486.433178pt;}
._28{width:526.650470pt;}
._2a{width:751.073485pt;}
._2e{width:754.660045pt;}
._26{width:757.720576pt;}
._27{width:764.969489pt;}
._2b{width:767.647454pt;}
._11{width:803.258330pt;}
._2d{width:854.270771pt;}
._2c{width:861.730816pt;}
._41{width:2217.751733pt;}
._12{width:2239.005067pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsc{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:131.027520pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:14.078151pt;}
.y4d{bottom:28.346667pt;}
.y153{bottom:81.964000pt;}
.y111{bottom:84.724000pt;}
.y113{bottom:86.357333pt;}
.y4c{bottom:92.108000pt;}
.y1d{bottom:93.018667pt;}
.y87{bottom:94.884000pt;}
.y110{bottom:101.461333pt;}
.ya7{bottom:104.230667pt;}
.yd8{bottom:107.105333pt;}
.y4b{bottom:108.844000pt;}
.y1c{bottom:108.920000pt;}
.y86{bottom:111.621333pt;}
.y10f{bottom:118.198667pt;}
.yd7{bottom:123.842667pt;}
.y1b{bottom:124.820000pt;}
.y4a{bottom:125.581333pt;}
.y85{bottom:128.358667pt;}
.y10d{bottom:134.936000pt;}
.y10e{bottom:139.758667pt;}
.yd6{bottom:140.580000pt;}
.y1a{bottom:140.720000pt;}
.y49{bottom:142.318667pt;}
.yf2{bottom:144.869333pt;}
.y84{bottom:145.096000pt;}
.y10c{bottom:155.658667pt;}
.y19{bottom:156.621333pt;}
.yd5{bottom:157.317333pt;}
.y48{bottom:159.056000pt;}
.y184{bottom:161.554667pt;}
.yf1{bottom:161.605333pt;}
.y83{bottom:161.833333pt;}
.y18{bottom:172.521333pt;}
.yd4{bottom:174.054667pt;}
.y47{bottom:175.793333pt;}
.y183{bottom:176.897333pt;}
.yf0{bottom:178.342667pt;}
.y82{bottom:178.570667pt;}
.y10b{bottom:185.546667pt;}
.y17{bottom:188.421333pt;}
.yd3{bottom:190.792000pt;}
.y182{bottom:192.240000pt;}
.y46{bottom:192.530667pt;}
.yef{bottom:195.080000pt;}
.y81{bottom:195.308000pt;}
.y10a{bottom:202.284000pt;}
.yd2{bottom:203.068000pt;}
.y16{bottom:204.322667pt;}
.yd1{bottom:207.529333pt;}
.y181{bottom:207.582667pt;}
.y13e{bottom:209.222667pt;}
.y45{bottom:209.268000pt;}
.yee{bottom:211.817333pt;}
.y80{bottom:216.030667pt;}
.y109{bottom:219.021333pt;}
.y180{bottom:222.924000pt;}
.y13d{bottom:225.960000pt;}
.y44{bottom:226.005333pt;}
.yed{bottom:228.554667pt;}
.yd0{bottom:228.969333pt;}
.ycf{bottom:232.634667pt;}
.y108{bottom:235.758667pt;}
.y17f{bottom:238.266667pt;}
.y13c{bottom:242.697333pt;}
.y43{bottom:242.742667pt;}
.y7f{bottom:245.918667pt;}
.yec{bottom:249.277333pt;}
.y107{bottom:252.496000pt;}
.y17e{bottom:253.609333pt;}
.y13b{bottom:259.434667pt;}
.y42{bottom:259.480000pt;}
.yce{bottom:259.522667pt;}
.y7d{bottom:262.656000pt;}
.ycd{bottom:263.320000pt;}
.y15{bottom:266.804000pt;}
.yeb{bottom:267.210667pt;}
.y7e{bottom:267.477333pt;}
.y17d{bottom:268.952000pt;}
.y106{bottom:269.233333pt;}
.y13a{bottom:276.172000pt;}
.y41{bottom:276.217333pt;}
.y7c{bottom:279.393333pt;}
.y14{bottom:282.705333pt;}
.y17c{bottom:284.294667pt;}
.yea{bottom:285.142667pt;}
.y105{bottom:285.970667pt;}
.ycc{bottom:291.254667pt;}
.y139{bottom:292.909333pt;}
.y40{bottom:292.954667pt;}
.ycb{bottom:295.716000pt;}
.y7a{bottom:296.129333pt;}
.y13{bottom:298.605333pt;}
.y17b{bottom:299.637333pt;}
.y7b{bottom:300.952000pt;}
.y104{bottom:302.708000pt;}
.y138{bottom:309.646667pt;}
.y3f{bottom:309.692000pt;}
.yca{bottom:312.453333pt;}
.y79{bottom:312.866667pt;}
.y12{bottom:314.505333pt;}
.y17a{bottom:314.980000pt;}
.ye9{bottom:315.030667pt;}
.y103{bottom:319.445333pt;}
.y77{bottom:329.604000pt;}
.y179{bottom:330.322667pt;}
.y3e{bottom:330.414667pt;}
.ye8{bottom:331.768000pt;}
.y78{bottom:334.426667pt;}
.y102{bottom:336.182667pt;}
.y11{bottom:338.376000pt;}
.yc9{bottom:340.341333pt;}
.y178{bottom:345.664000pt;}
.y75{bottom:346.341333pt;}
.ye7{bottom:348.505333pt;}
.yc6{bottom:349.454667pt;}
.y76{bottom:351.164000pt;}
.y137{bottom:352.714667pt;}
.y101{bottom:352.920000pt;}
.y10{bottom:354.277333pt;}
.yc7{bottom:354.826667pt;}
.yc8{bottom:354.958667pt;}
.y177{bottom:361.006667pt;}
.y73{bottom:363.078667pt;}
.ye6{bottom:365.242667pt;}
.y74{bottom:367.901333pt;}
.y100{bottom:369.657333pt;}
.yf{bottom:370.177333pt;}
.y136{bottom:373.728000pt;}
.y152{bottom:374.033333pt;}
.y176{bottom:376.349333pt;}
.ye5{bottom:381.980000pt;}
.y72{bottom:383.801333pt;}
.yff{bottom:386.394667pt;}
.y151{bottom:390.770667pt;}
.y175{bottom:391.692000pt;}
.yc5{bottom:393.570667pt;}
.y135{bottom:394.742667pt;}
.ye{bottom:395.376000pt;}
.y3d{bottom:397.214667pt;}
.yfe{bottom:403.132000pt;}
.y174{bottom:407.034667pt;}
.y150{bottom:407.508000pt;}
.yc4{bottom:410.308000pt;}
.yd{bottom:411.276000pt;}
.y71{bottom:413.689333pt;}
.y134{bottom:415.756000pt;}
.yfd{bottom:419.869333pt;}
.y173{bottom:422.377333pt;}
.ye4{bottom:422.390667pt;}
.y14f{bottom:424.245333pt;}
.y70{bottom:430.426667pt;}
.y3c{bottom:430.449333pt;}
.yc{bottom:435.146667pt;}
.y133{bottom:436.770667pt;}
.y172{bottom:437.720000pt;}
.yfc{bottom:440.590667pt;}
.y14e{bottom:440.982667pt;}
.ye3{bottom:443.405333pt;}
.y6f{bottom:447.164000pt;}
.y3b{bottom:447.745333pt;}
.yc3{bottom:450.718667pt;}
.yb{bottom:451.048000pt;}
.y171{bottom:453.062667pt;}
.y14d{bottom:457.720000pt;}
.y132{bottom:457.784000pt;}
.ya6{bottom:459.916000pt;}
.y6e{bottom:463.901333pt;}
.ye2{bottom:464.418667pt;}
.y3a{bottom:465.040000pt;}
.ya{bottom:466.948000pt;}
.y170{bottom:468.405333pt;}
.yfb{bottom:470.478667pt;}
.yc2{bottom:471.732000pt;}
.y14c{bottom:474.457333pt;}
.ya5{bottom:476.653333pt;}
.y131{bottom:478.798667pt;}
.y6d{bottom:480.638667pt;}
.y39{bottom:482.334667pt;}
.y9{bottom:482.848000pt;}
.y16f{bottom:483.746667pt;}
.ye1{bottom:485.433333pt;}
.y12e{bottom:486.104000pt;}
.yfa{bottom:487.216000pt;}
.y14b{bottom:491.194667pt;}
.yc1{bottom:492.746667pt;}
.ya4{bottom:493.390667pt;}
.y130{bottom:493.410667pt;}
.y6c{bottom:497.376000pt;}
.y8{bottom:498.749333pt;}
.y16e{bottom:499.089333pt;}
.y38{bottom:499.630667pt;}
.y12d{bottom:500.716000pt;}
.yf9{bottom:503.953333pt;}
.ye0{bottom:506.446667pt;}
.y14a{bottom:507.932000pt;}
.y12f{bottom:508.021333pt;}
.ya3{bottom:510.128000pt;}
.yc0{bottom:513.760000pt;}
.y6b{bottom:514.113333pt;}
.y16d{bottom:514.432000pt;}
.y7{bottom:514.649333pt;}
.y37{bottom:516.925333pt;}
.yf8{bottom:520.690667pt;}
.y149{bottom:524.669333pt;}
.ya2{bottom:526.865333pt;}
.ydf{bottom:527.460000pt;}
.y16c{bottom:529.774667pt;}
.y6{bottom:530.549333pt;}
.y6a{bottom:530.850667pt;}
.y36{bottom:534.221333pt;}
.ybf{bottom:534.774667pt;}
.yf7{bottom:537.428000pt;}
.y12c{bottom:538.785333pt;}
.y148{bottom:541.406667pt;}
.ya1{bottom:543.602667pt;}
.y16b{bottom:545.117333pt;}
.y5{bottom:546.450667pt;}
.y69{bottom:547.588000pt;}
.yde{bottom:548.474667pt;}
.y35{bottom:551.516000pt;}
.yf6{bottom:554.165333pt;}
.ybe{bottom:555.788000pt;}
.y12b{bottom:555.881333pt;}
.ya0{bottom:557.913333pt;}
.y147{bottom:558.144000pt;}
.y9f{bottom:560.340000pt;}
.y16a{bottom:560.460000pt;}
.y4{bottom:562.350667pt;}
.y68{bottom:564.325333pt;}
.y34{bottom:568.810667pt;}
.ydd{bottom:569.488000pt;}
.yf5{bottom:570.902667pt;}
.y146{bottom:574.881333pt;}
.y169{bottom:575.802667pt;}
.ybd{bottom:576.802667pt;}
.y9e{bottom:577.077333pt;}
.y1{bottom:578.250715pt;}
.y67{bottom:581.062667pt;}
.y33{bottom:586.106667pt;}
.y12a{bottom:588.862667pt;}
.ydc{bottom:590.502667pt;}
.y168{bottom:591.145333pt;}
.y145{bottom:591.618667pt;}
.y9d{bottom:593.814667pt;}
.y66{bottom:597.800000pt;}
.ybc{bottom:597.816000pt;}
.yf4{bottom:600.738667pt;}
.y32{bottom:603.401333pt;}
.y129{bottom:605.600000pt;}
.y167{bottom:606.486667pt;}
.y144{bottom:608.356000pt;}
.y9c{bottom:610.552000pt;}
.ybb{bottom:612.428000pt;}
.y65{bottom:614.537333pt;}
.yf3{bottom:617.834667pt;}
.ydb{bottom:618.609333pt;}
.y31{bottom:620.697333pt;}
.y166{bottom:621.829333pt;}
.y128{bottom:622.337333pt;}
.y143{bottom:625.093333pt;}
.y9b{bottom:627.289333pt;}
.y112{bottom:630.377333pt;}
.y64{bottom:631.274667pt;}
.y165{bottom:637.172000pt;}
.y30{bottom:637.992000pt;}
.y127{bottom:639.074667pt;}
.yba{bottom:640.534667pt;}
.y142{bottom:641.830667pt;}
.y9a{bottom:644.026667pt;}
.y63{bottom:648.012000pt;}
.y164{bottom:652.514667pt;}
.yda{bottom:652.973333pt;}
.y2f{bottom:655.286667pt;}
.y126{bottom:655.812000pt;}
.y141{bottom:658.568000pt;}
.y99{bottom:660.764000pt;}
.y62{bottom:664.749333pt;}
.y163{bottom:667.857333pt;}
.y125{bottom:672.548000pt;}
.y2e{bottom:672.582667pt;}
.yb9{bottom:673.516000pt;}
.y98{bottom:677.501333pt;}
.y140{bottom:679.289333pt;}
.y61{bottom:681.485333pt;}
.y162{bottom:683.200000pt;}
.y124{bottom:689.285333pt;}
.y2d{bottom:689.877333pt;}
.yb8{bottom:690.253333pt;}
.y97{bottom:694.238667pt;}
.y60{bottom:698.222667pt;}
.y161{bottom:698.542667pt;}
.y123{bottom:706.022667pt;}
.y13f{bottom:706.336000pt;}
.yb7{bottom:706.990667pt;}
.y96{bottom:710.976000pt;}
.y160{bottom:713.885333pt;}
.y5f{bottom:714.960000pt;}
.y2c{bottom:720.793333pt;}
.y122{bottom:722.760000pt;}
.yb6{bottom:723.728000pt;}
.y95{bottom:727.713333pt;}
.y5e{bottom:731.697333pt;}
.y15f{bottom:733.212000pt;}
.y2b{bottom:738.997333pt;}
.y121{bottom:739.497333pt;}
.yb5{bottom:740.465333pt;}
.y94{bottom:744.450667pt;}
.y5d{bottom:748.434667pt;}
.y2a{bottom:749.486667pt;}
.y120{bottom:756.234667pt;}
.yb4{bottom:757.202667pt;}
.y93{bottom:761.186667pt;}
.y15e{bottom:763.100000pt;}
.y5c{bottom:765.172000pt;}
.y29{bottom:767.690667pt;}
.y11f{bottom:772.972000pt;}
.yb3{bottom:773.940000pt;}
.y92{bottom:777.924000pt;}
.y28{bottom:778.178667pt;}
.y5b{bottom:781.909333pt;}
.y15d{bottom:786.692000pt;}
.y11e{bottom:789.709333pt;}
.yb2{bottom:790.677333pt;}
.y91{bottom:794.661333pt;}
.y27{bottom:796.382667pt;}
.y5a{bottom:798.646667pt;}
.y15c{bottom:802.313333pt;}
.y11d{bottom:806.446667pt;}
.y26{bottom:806.872000pt;}
.yb1{bottom:807.414667pt;}
.y90{bottom:811.398667pt;}
.y59{bottom:815.384000pt;}
.yd9{bottom:816.221333pt;}
.y15b{bottom:817.934667pt;}
.yb0{bottom:824.152000pt;}
.y25{bottom:825.074667pt;}
.y11c{bottom:827.169333pt;}
.y8f{bottom:828.136000pt;}
.y58{bottom:832.121333pt;}
.yaf{bottom:840.889333pt;}
.y15a{bottom:841.526667pt;}
.y8e{bottom:844.873333pt;}
.y57{bottom:848.858667pt;}
.yae{bottom:857.625333pt;}
.y24{bottom:861.406667pt;}
.y8d{bottom:861.610667pt;}
.y159{bottom:865.118667pt;}
.y56{bottom:865.596000pt;}
.y11b{bottom:867.446667pt;}
.yad{bottom:874.362667pt;}
.y8c{bottom:878.348000pt;}
.y11a{bottom:882.058667pt;}
.y55{bottom:882.333333pt;}
.y158{bottom:888.709333pt;}
.yac{bottom:891.100000pt;}
.y8b{bottom:895.085333pt;}
.y23{bottom:896.889333pt;}
.y54{bottom:899.070667pt;}
.y118{bottom:903.073333pt;}
.yab{bottom:907.837333pt;}
.y8a{bottom:909.396000pt;}
.y119{bottom:910.378667pt;}
.y89{bottom:911.822667pt;}
.y157{bottom:912.301333pt;}
.y53{bottom:915.808000pt;}
.y117{bottom:917.685333pt;}
.y22{bottom:921.996000pt;}
.yaa{bottom:924.574667pt;}
.y156{bottom:927.922667pt;}
.y88{bottom:928.560000pt;}
.y52{bottom:932.545333pt;}
.y116{bottom:938.698667pt;}
.ya9{bottom:945.297333pt;}
.y115{bottom:946.005333pt;}
.y21{bottom:947.101333pt;}
.y51{bottom:949.282667pt;}
.y155{bottom:951.514667pt;}
.ya8{bottom:962.034667pt;}
.y50{bottom:966.020000pt;}
.y154{bottom:967.136000pt;}
.y20{bottom:972.208000pt;}
.y4f{bottom:982.757333pt;}
.y114{bottom:984.073333pt;}
.y1e{bottom:1010.862667pt;}
.y4e{bottom:1038.548000pt;}
.h27{height:22.284493pt;}
.h2{height:22.673858pt;}
.hc{height:23.304670pt;}
.h16{height:24.760382pt;}
.h5{height:27.188522pt;}
.h6{height:27.262909pt;}
.h14{height:28.023859pt;}
.h4{height:29.433775pt;}
.h13{height:29.519145pt;}
.h1e{height:29.599908pt;}
.h3{height:30.399505pt;}
.hd{height:31.072763pt;}
.h12{height:31.157778pt;}
.he{height:34.574438pt;}
.hf{height:34.957005pt;}
.h29{height:35.052646pt;}
.h15{height:36.873667pt;}
.h1c{height:37.778179pt;}
.h10{height:38.415786pt;}
.h11{height:38.840857pt;}
.h9{height:38.947124pt;}
.h17{height:43.171318pt;}
.h18{height:44.250973pt;}
.h7{height:45.271688pt;}
.hb{height:48.481423pt;}
.h25{height:48.804478pt;}
.h1d{height:48.885242pt;}
.h1f{height:51.546575pt;}
.h23{height:53.502190pt;}
.h21{height:54.030190pt;}
.h24{height:56.686190pt;}
.h26{height:63.795772pt;}
.h28{height:64.183671pt;}
.h22{height:66.207908pt;}
.h1a{height:66.730575pt;}
.h20{height:66.735908pt;}
.ha{height:69.148877pt;}
.h1b{height:78.463145pt;}
.h19{height:88.218575pt;}
.h8{height:88.836659pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:176.730927pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:51.157007pt;}
.x75{left:55.218667pt;}
.x88{left:57.341333pt;}
.x79{left:59.036000pt;}
.x7a{left:60.480000pt;}
.x8e{left:74.862667pt;}
.x8c{left:76.309333pt;}
.x76{left:77.240000pt;}
.x87{left:83.074667pt;}
.x77{left:84.624000pt;}
.x86{left:87.928000pt;}
.x85{left:90.744000pt;}
.x74{left:92.382667pt;}
.x7b{left:98.801333pt;}
.x7c{left:204.634667pt;}
.x72{left:208.301333pt;}
.x78{left:212.605333pt;}
.x30{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x7d{left:233.282667pt;}
.x52{left:236.888000pt;}
.x5{left:239.924000pt;}
.x49{left:243.541333pt;}
.x8{left:250.204000pt;}
.x31{left:252.608000pt;}
.x69{left:253.962667pt;}
.x51{left:262.621333pt;}
.x32{left:263.637333pt;}
.x4f{left:267.474667pt;}
.x33{left:269.349333pt;}
.x4e{left:270.290667pt;}
.x6c{left:272.437333pt;}
.x7{left:274.468000pt;}
.x8a{left:275.860000pt;}
.x50{left:277.798667pt;}
.x2c{left:283.318667pt;}
.x34{left:286.729333pt;}
.x68{left:288.256000pt;}
.x67{left:289.296000pt;}
.x2d{left:293.057333pt;}
.x35{left:295.766667pt;}
.x6a{left:309.314667pt;}
.x6b{left:310.438667pt;}
.x63{left:316.190667pt;}
.x8b{left:331.030667pt;}
.x7e{left:340.020000pt;}
.x7f{left:341.309333pt;}
.x89{left:347.334667pt;}
.x5b{left:365.842667pt;}
.x55{left:370.646667pt;}
.x5c{left:374.052000pt;}
.x3e{left:383.405333pt;}
.x3f{left:396.689333pt;}
.x4b{left:402.714667pt;}
.x4a{left:406.984000pt;}
.x36{left:418.592000pt;}
.x37{left:424.304000pt;}
.x38{left:438.940000pt;}
.x60{left:442.564000pt;}
.x39{left:444.652000pt;}
.x24{left:447.705333pt;}
.x11{left:455.581333pt;}
.x25{left:458.566667pt;}
.x12{left:462.222667pt;}
.x3a{left:464.109333pt;}
.x13{left:465.610667pt;}
.x57{left:468.966667pt;}
.x14{left:472.252000pt;}
.x1b{left:475.552000pt;}
.x56{left:479.776000pt;}
.x61{left:484.022667pt;}
.x64{left:494.352000pt;}
.x81{left:498.264000pt;}
.x26{left:502.130667pt;}
.x27{left:507.842667pt;}
.x82{left:510.942667pt;}
.x80{left:512.430667pt;}
.x66{left:513.746667pt;}
.x58{left:515.790667pt;}
.x62{left:517.801333pt;}
.x3b{left:526.210667pt;}
.x4c{left:527.702667pt;}
.x5d{left:530.053333pt;}
.x3c{left:531.921333pt;}
.x47{left:533.716000pt;}
.x5e{left:538.262667pt;}
.x48{left:541.921333pt;}
.x5f{left:545.622667pt;}
.x40{left:547.022667pt;}
.x59{left:551.609333pt;}
.x41{left:556.122667pt;}
.x5a{left:567.646667pt;}
.x9{left:580.772000pt;}
.x65{left:584.502667pt;}
.xa{left:587.414667pt;}
.xb{left:590.794667pt;}
.xc{left:597.436000pt;}
.x42{left:602.329333pt;}
.x43{left:608.041333pt;}
.x6d{left:613.190667pt;}
.x44{left:618.690667pt;}
.x45{left:627.790667pt;}
.x2a{left:631.158667pt;}
.x84{left:634.600000pt;}
.x2b{left:637.208000pt;}
.x70{left:641.292000pt;}
.x1c{left:643.064000pt;}
.x71{left:647.341333pt;}
.x1d{left:649.706667pt;}
.x83{left:651.970667pt;}
.x1e{left:653.073333pt;}
.x2e{left:658.221333pt;}
.x4d{left:660.954667pt;}
.x23{left:662.762667pt;}
.x53{left:663.729333pt;}
.x1f{left:666.357333pt;}
.x20{left:669.724000pt;}
.x2f{left:671.806667pt;}
.x8d{left:672.757333pt;}
.x73{left:675.896000pt;}
.x6e{left:677.605333pt;}
.x15{left:679.264000pt;}
.x21{left:683.008000pt;}
.x6f{left:684.730667pt;}
.x16{left:685.906667pt;}
.x17{left:689.286667pt;}
.x28{left:694.529333pt;}
.x29{left:695.669333pt;}
.x22{left:699.658667pt;}
.x18{left:702.570667pt;}
.x19{left:705.950667pt;}
.x1a{left:719.234667pt;}
.xd{left:720.644000pt;}
.xe{left:727.285333pt;}
.x3d{left:730.969333pt;}
.xf{left:733.794667pt;}
.x46{left:734.774667pt;}
.x10{left:740.436000pt;}
.x54{left:744.770667pt;}
}




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