
    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_b5711b08949e4d5e1a898b50.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_8f17da48a451cb7c4f4aae88.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_37e018c9111f89f364364fc6.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_71d87f150bf8d30fa1e67e5a.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_30935958f91e31d89f24847b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a72b3334fb8af2561c20daf2.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_f5774578eb5df7aa07c2a0b6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4eb949dacd96e5b9eb2c7173.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_63f77f32d726370fa6d73d65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.841000;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_5e4910f8abcc0a8218e7ce80.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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_080117de577021ccae6b100b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.559000;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_667dd43d92057ff249b9d19d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.488000;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_a0e605e5a1f866edb8fac67a.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m7{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);}
.m21{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);}
.m4{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);}
.mb{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);}
.m14{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);}
.m9{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);}
.m20{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);}
.m18{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);}
.m24{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);}
.m10{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);}
.m12{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);}
.me{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.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);}
.m5{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);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.mf{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);}
.m17{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);}
.m6{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);}
.m3{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);}
.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);}
.m1a{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);}
.m25{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);}
.m2{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);}
.m1c{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);}
.m1e{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);}
.m1d{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);}
.m15{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);}
.m8{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);}
.m19{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);}
.m23{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);}
.m26{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);}
.m11{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);}
.ma{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.254000px;}
.v6{vertical-align:17.358000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.lsd{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000049px;}
.ls39{letter-spacing:0.000208px;}
.ls31{letter-spacing:0.000335px;}
.ls41{letter-spacing:0.000568px;}
.ls2c{letter-spacing:0.000608px;}
.ls37{letter-spacing:0.000800px;}
.ls30{letter-spacing:0.000944px;}
.ls2f{letter-spacing:0.001036px;}
.ls3e{letter-spacing:0.001155px;}
.ls43{letter-spacing:0.001544px;}
.ls3d{letter-spacing:0.001584px;}
.ls35{letter-spacing:0.001746px;}
.ls34{letter-spacing:0.001834px;}
.ls33{letter-spacing:0.002378px;}
.ls3f{letter-spacing:0.002544px;}
.ls3c{letter-spacing:0.002872px;}
.ls13{letter-spacing:0.003274px;}
.ls3{letter-spacing:0.003299px;}
.ls3a{letter-spacing:0.003437px;}
.ls9{letter-spacing:0.003488px;}
.ls2b{letter-spacing:0.003699px;}
.ls32{letter-spacing:0.004376px;}
.ls29{letter-spacing:0.434370px;}
.ls15{letter-spacing:0.503764px;}
.ls12{letter-spacing:0.548815px;}
.ls19{letter-spacing:0.648088px;}
.lsc{letter-spacing:1.275394px;}
.ls11{letter-spacing:1.451687px;}
.ls10{letter-spacing:1.510385px;}
.lsf{letter-spacing:1.516267px;}
.ls0{letter-spacing:1.861130px;}
.ls1f{letter-spacing:2.988600px;}
.ls6{letter-spacing:2.989200px;}
.ls2{letter-spacing:10.461300px;}
.ls1{letter-spacing:10.961764px;}
.lsb{letter-spacing:11.954850px;}
.ls40{letter-spacing:13.332922px;}
.ls1c{letter-spacing:13.444800px;}
.ls2e{letter-spacing:13.448400px;}
.ls16{letter-spacing:13.450090px;}
.ls1a{letter-spacing:13.450800px;}
.ls38{letter-spacing:13.454400px;}
.ls44{letter-spacing:13.526255px;}
.ls42{letter-spacing:13.553440px;}
.ls45{letter-spacing:13.562472px;}
.ls3b{letter-spacing:13.589593px;}
.ls36{letter-spacing:13.659712px;}
.ls18{letter-spacing:14.094088px;}
.ls17{letter-spacing:14.100088px;}
.ls1e{letter-spacing:14.116090px;}
.ls24{letter-spacing:14.122090px;}
.ls2d{letter-spacing:14.764573px;}
.ls2a{letter-spacing:14.947200px;}
.ls1b{letter-spacing:15.511619px;}
.ls14{letter-spacing:15.601432px;}
.ls23{letter-spacing:17.106600px;}
.ls22{letter-spacing:17.112600px;}
.lse{letter-spacing:17.935200px;}
.ls5{letter-spacing:28.243986px;}
.ls8{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.ls7{letter-spacing:72.361200px;}
.ls20{letter-spacing:233.892600px;}
.ls21{letter-spacing:275.004600px;}
.ls25{letter-spacing:356.863133px;}
.ls26{letter-spacing:404.784600px;}
.ls28{letter-spacing:483.948600px;}
.ls27{letter-spacing:490.758600px;}
.ls1d{letter-spacing:743.746090px;}
.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;}
}
.ws14{word-spacing:-102.481160px;}
.ws15{word-spacing:-26.899200px;}
.ws65{word-spacing:-14.943900px;}
.ws119{word-spacing:-13.449600px;}
.ws1b{word-spacing:-11.955150px;}
.ws1a{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws114{word-spacing:-3.287658px;}
.ws3f{word-spacing:-3.227882px;}
.ws39{word-spacing:-3.048556px;}
.ws6d{word-spacing:-2.689902px;}
.ws66{word-spacing:-2.092146px;}
.ws1{word-spacing:-1.908367px;}
.ws51{word-spacing:-1.853044px;}
.ws71{word-spacing:-1.829146px;}
.ws4d{word-spacing:-1.733492px;}
.ws72{word-spacing:-1.613952px;}
.ws109{word-spacing:-1.613941px;}
.ws82{word-spacing:-1.506355px;}
.ws143{word-spacing:-1.398758px;}
.ws0{word-spacing:-1.322630px;}
.ws83{word-spacing:-1.291162px;}
.ws6b{word-spacing:-1.195512px;}
.wsa{word-spacing:-1.171598px;}
.ws6f{word-spacing:-1.135736px;}
.ws142{word-spacing:-1.075968px;}
.wsc{word-spacing:-1.046070px;}
.ws115{word-spacing:-1.022170px;}
.wse1{word-spacing:-0.896634px;}
.ws30{word-spacing:-0.777083px;}
.ws112{word-spacing:-0.657532px;}
.ws32{word-spacing:-0.597756px;}
.ws11a{word-spacing:-0.537984px;}
.ws2a{word-spacing:-0.484186px;}
.ws36{word-spacing:-0.358654px;}
.ws124{word-spacing:-0.322790px;}
.ws38{word-spacing:-0.298878px;}
.ws2b{word-spacing:-0.268992px;}
.ws35{word-spacing:-0.239102px;}
.wscf{word-spacing:-0.215194px;}
.ws63{word-spacing:-0.179327px;}
.ws13a{word-spacing:-0.161395px;}
.ws69{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.107597px;}
.wsa3{word-spacing:-0.095641px;}
.ws11f{word-spacing:-0.086902px;}
.ws46{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws9d{word-spacing:-0.004157px;}
.wsec{word-spacing:-0.004070px;}
.wse6{word-spacing:-0.002957px;}
.wsed{word-spacing:-0.001066px;}
.ws3{word-spacing:0.000000px;}
.ws9e{word-spacing:0.001843px;}
.ws27{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.ws127{word-spacing:0.107597px;}
.ws55{word-spacing:0.119551px;}
.ws28{word-spacing:0.161395px;}
.ws64{word-spacing:0.179327px;}
.ws2d{word-spacing:0.215194px;}
.ws5d{word-spacing:0.239102px;}
.ws25{word-spacing:0.268992px;}
.ws37{word-spacing:0.298878px;}
.ws3a{word-spacing:0.358654px;}
.ws110{word-spacing:0.418429px;}
.ws4c{word-spacing:0.478205px;}
.ws121{word-spacing:0.484186px;}
.ws154{word-spacing:0.537984px;}
.ws5b{word-spacing:0.597756px;}
.wsa1{word-spacing:0.642086px;}
.ws145{word-spacing:0.645581px;}
.ws8d{word-spacing:0.653491px;}
.wsb8{word-spacing:0.654144px;}
.wsc2{word-spacing:0.654557px;}
.wsc7{word-spacing:0.654653px;}
.ws8e{word-spacing:0.654835px;}
.wsc6{word-spacing:0.654902px;}
.wsca{word-spacing:0.655056px;}
.wsbb{word-spacing:0.655421px;}
.wsc9{word-spacing:0.655517px;}
.ws8a{word-spacing:0.655834px;}
.ws8b{word-spacing:0.655891px;}
.wsa8{word-spacing:0.655939px;}
.wsc8{word-spacing:0.655987px;}
.wsc3{word-spacing:0.656323px;}
.wsc1{word-spacing:0.656870px;}
.wsb9{word-spacing:0.657427px;}
.ws70{word-spacing:0.657532px;}
.wsc5{word-spacing:0.657638px;}
.wsac{word-spacing:0.658157px;}
.wscb{word-spacing:0.658234px;}
.wsb1{word-spacing:0.658253px;}
.wsbd{word-spacing:0.658339px;}
.wsb0{word-spacing:0.658502px;}
.wsb4{word-spacing:0.658656px;}
.wsa7{word-spacing:0.659021px;}
.wsb3{word-spacing:0.659117px;}
.ws8c{word-spacing:0.659434px;}
.wsb2{word-spacing:0.659587px;}
.wsad{word-spacing:0.659923px;}
.wsab{word-spacing:0.660470px;}
.wsd9{word-spacing:0.660950px;}
.wsaf{word-spacing:0.661238px;}
.wsbf{word-spacing:0.661834px;}
.wsda{word-spacing:0.661949px;}
.wsd8{word-spacing:0.663149px;}
.wsd3{word-spacing:0.664550px;}
.wsd2{word-spacing:0.665549px;}
.wsd6{word-spacing:0.676502px;}
.wsbc{word-spacing:0.679210px;}
.wsc0{word-spacing:0.680573px;}
.wsc4{word-spacing:0.680880px;}
.wscc{word-spacing:0.681130px;}
.wsba{word-spacing:0.682128px;}
.ws89{word-spacing:0.682157px;}
.wsbe{word-spacing:0.682589px;}
.wsaa{word-spacing:0.684173px;}
.wsae{word-spacing:0.684480px;}
.wsb5{word-spacing:0.684730px;}
.wsa9{word-spacing:0.686189px;}
.ws75{word-spacing:0.689942px;}
.wsd7{word-spacing:0.690557px;}
.ws7d{word-spacing:0.691085px;}
.ws78{word-spacing:0.692285px;}
.wsa0{word-spacing:0.693542px;}
.wsd1{word-spacing:0.694157px;}
.ws7e{word-spacing:0.694886px;}
.ws76{word-spacing:0.695885px;}
.ws79{word-spacing:0.695942px;}
.ws7c{word-spacing:0.697085px;}
.ws7b{word-spacing:0.698285px;}
.ws77{word-spacing:0.699485px;}
.ws7a{word-spacing:0.699542px;}
.ws5a{word-spacing:0.717307px;}
.wsa4{word-spacing:0.765130px;}
.wsa6{word-spacing:0.806976px;}
.ws144{word-spacing:0.860774px;}
.ws50{word-spacing:0.896634px;}
.ws6c{word-spacing:0.956410px;}
.wsb{word-spacing:1.004227px;}
.ws48{word-spacing:1.016185px;}
.ws29{word-spacing:1.022170px;}
.wsa5{word-spacing:1.129766px;}
.wse2{word-spacing:1.255288px;}
.ws148{word-spacing:1.344960px;}
.ws146{word-spacing:1.354985px;}
.ws58{word-spacing:1.374839px;}
.ws10f{word-spacing:1.434614px;}
.wsfe{word-spacing:1.494390px;}
.ws1e{word-spacing:1.506355px;}
.ws157{word-spacing:1.560154px;}
.ws2c{word-spacing:1.613952px;}
.ws134{word-spacing:1.667750px;}
.wsfd{word-spacing:1.733492px;}
.ws4b{word-spacing:1.853044px;}
.ws100{word-spacing:1.912819px;}
.wse0{word-spacing:1.972595px;}
.ws10a{word-spacing:2.032370px;}
.ws86{word-spacing:2.044339px;}
.ws13f{word-spacing:2.086071px;}
.ws5c{word-spacing:2.092146px;}
.ws87{word-spacing:2.098138px;}
.ws10b{word-spacing:2.211697px;}
.ws22{word-spacing:2.313331px;}
.ws102{word-spacing:2.331248px;}
.ws59{word-spacing:2.391024px;}
.ws62{word-spacing:2.450800px;}
.ws137{word-spacing:2.474726px;}
.ws8{word-spacing:2.504896px;}
.wsf9{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws68{word-spacing:2.570351px;}
.wse4{word-spacing:2.689902px;}
.ws14e{word-spacing:2.689920px;}
.ws105{word-spacing:2.749678px;}
.ws3b{word-spacing:2.809453px;}
.wsce{word-spacing:2.851315px;}
.wsf0{word-spacing:2.862120px;}
.ws3c{word-spacing:2.869229px;}
.ws1d{word-spacing:2.869236px;}
.ws61{word-spacing:2.988780px;}
.wse3{word-spacing:3.048556px;}
.ws24{word-spacing:3.066509px;}
.ws6a{word-spacing:3.168107px;}
.wscd{word-spacing:3.174106px;}
.wsef{word-spacing:3.203980px;}
.ws2e{word-spacing:3.219667px;}
.ws15c{word-spacing:3.221674px;}
.ws118{word-spacing:3.222576px;}
.ws151{word-spacing:3.224592px;}
.ws117{word-spacing:3.224822px;}
.ws54{word-spacing:3.227882px;}
.ws15e{word-spacing:3.227904px;}
.wsfa{word-spacing:3.347434px;}
.ws128{word-spacing:3.389299px;}
.ws106{word-spacing:3.466985px;}
.ws74{word-spacing:3.496896px;}
.ws47{word-spacing:3.526760px;}
.ws12b{word-spacing:3.553280px;}
.ws2f{word-spacing:3.586536px;}
.ws113{word-spacing:3.706087px;}
.ws3d{word-spacing:3.765863px;}
.ws10d{word-spacing:3.825638px;}
.ws57{word-spacing:3.945190px;}
.ws11c{word-spacing:4.034880px;}
.wsf4{word-spacing:4.124516px;}
.ws5f{word-spacing:4.363619px;}
.ws12d{word-spacing:4.539613px;}
.ws12f{word-spacing:4.572864px;}
.ws4f{word-spacing:4.662497px;}
.ws116{word-spacing:4.680461px;}
.ws12{word-spacing:4.770079px;}
.ws10c{word-spacing:4.841824px;}
.ws13{word-spacing:4.853765px;}
.ws33{word-spacing:4.901599px;}
.ws122{word-spacing:5.110848px;}
.ws41{word-spacing:5.140702px;}
.ws159{word-spacing:5.164646px;}
.ws4e{word-spacing:5.200477px;}
.ws56{word-spacing:5.260253px;}
.ws67{word-spacing:5.320028px;}
.ws49{word-spacing:5.499355px;}
.wsf1{word-spacing:5.559131px;}
.ws12c{word-spacing:5.756429px;}
.ws45{word-spacing:5.858009px;}
.ws107{word-spacing:5.977560px;}
.ws108{word-spacing:6.037336px;}
.ws111{word-spacing:6.097111px;}
.ws53{word-spacing:6.216662px;}
.ws31{word-spacing:6.336214px;}
.ws6e{word-spacing:6.395989px;}
.wsf2{word-spacing:6.455765px;}
.ws19{word-spacing:6.455808px;}
.ws15b{word-spacing:6.509606px;}
.wsf7{word-spacing:6.956868px;}
.ws9a{word-spacing:7.746970px;}
.ws10{word-spacing:7.782761px;}
.ws4a{word-spacing:7.830604px;}
.wsdf{word-spacing:8.009930px;}
.ws130{word-spacing:8.123558px;}
.ws99{word-spacing:8.177357px;}
.ws139{word-spacing:8.392550px;}
.wsde{word-spacing:8.488135px;}
.wsdd{word-spacing:9.444545px;}
.ws93{word-spacing:9.468518px;}
.ws92{word-spacing:9.898906px;}
.ws6{word-spacing:10.418857px;}
.ws5{word-spacing:10.420652px;}
.ws7{word-spacing:10.421665px;}
.ws9b{word-spacing:10.759680px;}
.ws3e{word-spacing:11.910290px;}
.ws85{word-spacing:12.104640px;}
.ws84{word-spacing:12.158438px;}
.wse{word-spacing:12.176255px;}
.ws13c{word-spacing:12.874610px;}
.ws136{word-spacing:13.168931px;}
.ws133{word-spacing:13.174061px;}
.ws13b{word-spacing:13.232308px;}
.ws141{word-spacing:13.234406px;}
.ws14a{word-spacing:13.288205px;}
.ws20{word-spacing:13.342003px;}
.ws8f{word-spacing:13.380931px;}
.ws131{word-spacing:13.387267px;}
.ws14d{word-spacing:13.387862px;}
.ws15f{word-spacing:13.387968px;}
.ws150{word-spacing:13.389341px;}
.ws152{word-spacing:13.390387px;}
.wse5{word-spacing:13.390397px;}
.ws149{word-spacing:13.390800px;}
.ws158{word-spacing:13.391520px;}
.ws15a{word-spacing:13.391942px;}
.ws160{word-spacing:13.392202px;}
.ws11d{word-spacing:13.392816px;}
.ws132{word-spacing:13.393267px;}
.ws11e{word-spacing:13.394534px;}
.ws94{word-spacing:13.395802px;}
.wsdb{word-spacing:13.412467px;}
.ws7f{word-spacing:13.417382px;}
.wsb7{word-spacing:13.437201px;}
.wsb6{word-spacing:13.449600px;}
.ws15d{word-spacing:13.487377px;}
.ws129{word-spacing:13.503398px;}
.ws73{word-spacing:13.557197px;}
.ws12a{word-spacing:13.610995px;}
.ws26{word-spacing:13.664794px;}
.ws120{word-spacing:13.718592px;}
.wsf5{word-spacing:14.575884px;}
.ws147{word-spacing:14.739012px;}
.ws40{word-spacing:14.877065px;}
.wsfc{word-spacing:14.880157px;}
.ws10e{word-spacing:14.883565px;}
.ws52{word-spacing:14.884124px;}
.ws140{word-spacing:15.493939px;}
.ws23{word-spacing:15.655334px;}
.ws138{word-spacing:15.870528px;}
.ws14f{word-spacing:16.061720px;}
.wsf{word-spacing:16.109478px;}
.wsff{word-spacing:16.391636px;}
.ws14b{word-spacing:16.569907px;}
.ws14c{word-spacing:16.615142px;}
.ws161{word-spacing:16.617254px;}
.ws155{word-spacing:16.617802px;}
.ws13e{word-spacing:16.619194px;}
.ws11b{word-spacing:16.619856px;}
.ws13d{word-spacing:16.620230px;}
.ws123{word-spacing:16.621402px;}
.ws156{word-spacing:16.623053px;}
.ws135{word-spacing:16.623350px;}
.ws125{word-spacing:16.623706px;}
.ws153{word-spacing:16.785101px;}
.ws126{word-spacing:16.946496px;}
.ws103{word-spacing:17.215373px;}
.ws101{word-spacing:17.257189px;}
.ws104{word-spacing:17.586054px;}
.ws12e{word-spacing:17.968666px;}
.wsfb{word-spacing:18.171782px;}
.ws5e{word-spacing:18.470660px;}
.ws44{word-spacing:19.486846px;}
.ws42{word-spacing:19.989590px;}
.ws43{word-spacing:20.007198px;}
.ws60{word-spacing:20.288859px;}
.wsf8{word-spacing:20.357313px;}
.wsf6{word-spacing:20.397519px;}
.wsf3{word-spacing:21.280114px;}
.ws11{word-spacing:26.109907px;}
.ws16{word-spacing:26.783510px;}
.ws18{word-spacing:26.787475px;}
.ws17{word-spacing:26.791603px;}
.wsd{word-spacing:26.840252px;}
.ws9c{word-spacing:216.681600px;}
.wsd0{word-spacing:237.466138px;}
.wsa2{word-spacing:295.837402px;}
.wsd5{word-spacing:300.248870px;}
.ws9f{word-spacing:302.616000px;}
.wsdc{word-spacing:303.207782px;}
.wsd4{word-spacing:325.318925px;}
.ws80{word-spacing:380.969981px;}
.ws81{word-spacing:390.737779px;}
.wse7{word-spacing:436.896806px;}
.wse8{word-spacing:495.160474px;}
.wsee{word-spacing:506.189146px;}
.wseb{word-spacing:507.641702px;}
.wse9{word-spacing:508.610074px;}
.wsea{word-spacing:522.059674px;}
.ws88{word-spacing:555.629875px;}
.ws95{word-spacing:566.120563px;}
.ws90{word-spacing:695.273981px;}
.ws91{word-spacing:705.081830px;}
.ws96{word-spacing:718.208640px;}
.ws97{word-spacing:719.939981px;}
.ws98{word-spacing:754.414963px;}
._b{margin-left:-13.886707px;}
._8{margin-left:-11.943245px;}
._9{margin-left:-8.571917px;}
._f{margin-left:-6.778598px;}
._10{margin-left:-5.769619px;}
._2{margin-left:-4.644551px;}
._1c{margin-left:-3.590062px;}
._6c{margin-left:-2.582312px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._d{width:3.895634px;}
._6{width:11.398711px;}
._12{width:12.481229px;}
._3{width:13.766281px;}
._3c{width:14.824386px;}
._13{width:15.848198px;}
._11{width:17.054093px;}
._14{width:18.291334px;}
._19{width:19.877022px;}
._6d{width:21.009762px;}
._18{width:22.018982px;}
._e{width:23.358266px;}
._4{width:25.946136px;}
._c{width:28.239504px;}
._7{width:30.587087px;}
._1b{width:32.346167px;}
._a{width:33.355008px;}
._17{width:34.684976px;}
._1a{width:37.008664px;}
._1d{width:38.443278px;}
._65{width:42.455810px;}
._39{width:49.333133px;}
._6f{width:61.868160px;}
._56{width:132.774451px;}
._5c{width:173.123251px;}
._55{width:177.373325px;}
._1f{width:182.717255px;}
._5d{width:186.572851px;}
._5b{width:190.822925px;}
._1e{width:197.709120px;}
._57{width:204.541517px;}
._23{width:211.320115px;}
._60{width:212.337370px;}
._5e{width:217.991117px;}
._24{width:224.769715px;}
._26{width:234.130637px;}
._25{width:238.219315px;}
._29{width:244.944115px;}
._22{width:247.580237px;}
._27{width:251.830310px;}
._20{width:257.048755px;}
._28{width:261.029837px;}
._61{width:275.555405px;}
._3a{width:283.087181px;}
._21{width:284.701133px;}
._2b{width:290.913370px;}
._5f{width:293.631667px;}
._52{width:318.163738px;}
._63{width:319.670093px;}
._58{width:321.122650px;}
._59{width:322.682803px;}
._62{width:331.720934px;}
._53{width:334.572250px;}
._64{width:336.132403px;}
._51{width:339.091315px;}
._5a{width:340.543872px;}
._2c{width:354.101069px;}
._54{width:360.018893px;}
._2a{width:366.205709px;}
._3b{width:407.307686px;}
._2d{width:417.367987px;}
._2e{width:428.880845px;}
._2f{width:453.574310px;}
._4b{width:471.865766px;}
._46{width:498.173184px;}
._40{width:499.420022px;}
._33{width:512.214566px;}
._3f{width:516.034253px;}
._66{width:520.822310px;}
._67{width:522.059674px;}
._41{width:523.942618px;}
._6b{width:525.031776px;}
._31{width:526.040755px;}
._68{width:532.657958px;}
._6a{width:534.878124px;}
._69{width:536.194222px;}
._3d{width:554.876698px;}
._32{width:561.924288px;}
._34{width:575.373888px;}
._4a{width:580.323341px;}
._4f{width:581.829696px;}
._4c{width:584.250624px;}
._4e{width:585.487987px;}
._4d{width:587.209536px;}
._50{width:588.890477px;}
._30{width:590.060851px;}
._37{width:591.770170px;}
._45{width:595.279296px;}
._35{width:597.431232px;}
._44{width:598.937587px;}
._43{width:600.659136px;}
._49{width:602.340077px;}
._47{width:603.523642px;}
._42{width:604.640218px;}
._48{width:612.494784px;}
._38{width:616.906253px;}
._3e{width:646.764365px;}
._36{width:667.100160px;}
._15{width:783.911001px;}
._6e{width:2547.138829px;}
._16{width:2571.048829px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(52,74,39);}
.fc0{color:rgb(12,11,11);}
.fs9{font-size:35.865600px;}
.fs10{font-size:37.371600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs3{font-size:43.600200px;}
.fs8{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fsf{font-size:49.829400px;}
.fsb{font-size:53.798400px;}
.fsc{font-size:56.058000px;}
.fs5{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs6{font-size:107.596800px;}
.fs7{font-size:112.115400px;}
.fs4{font-size:131.723856px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1e{bottom:16.849635px;}
.y4d{bottom:31.890000px;}
.y151{bottom:100.749000px;}
.y1c{bottom:104.646000px;}
.y83{bottom:104.952000px;}
.y4c{bottom:105.607500px;}
.y1a3{bottom:109.839000px;}
.ydb{bottom:110.923500px;}
.y150{bottom:119.578500px;}
.y1b{bottom:122.535000px;}
.y81{bottom:123.781500px;}
.y120{bottom:124.276500px;}
.y4b{bottom:124.437000px;}
.yd9{bottom:125.121000px;}
.y170{bottom:126.022500px;}
.y1a2{bottom:127.098000px;}
.y82{bottom:129.205500px;}
.yda{bottom:129.460500px;}
.y14f{bottom:138.406500px;}
.yd8{bottom:139.317000px;}
.y1a{bottom:140.422500px;}
.y80{bottom:142.611000px;}
.y4a{bottom:143.266500px;}
.y11f{bottom:143.509500px;}
.yd7{bottom:143.656500px;}
.y1a1{bottom:144.358500px;}
.y16f{bottom:144.852000px;}
.y14e{bottom:157.236000px;}
.y19{bottom:158.310000px;}
.yd6{bottom:160.065000px;}
.y7f{bottom:161.440500px;}
.y1a0{bottom:161.619000px;}
.y49{bottom:162.096000px;}
.y16e{bottom:163.681500px;}
.y14d{bottom:176.065500px;}
.y18{bottom:176.199000px;}
.yd5{bottom:176.503500px;}
.y19f{bottom:178.879500px;}
.y48{bottom:180.925500px;}
.y16d{bottom:182.511000px;}
.y7e{bottom:184.752000px;}
.y17{bottom:194.086500px;}
.y14c{bottom:194.895000px;}
.y19e{bottom:196.140000px;}
.y47{bottom:197.025000px;}
.y46{bottom:199.755000px;}
.yd4{bottom:200.338500px;}
.y16c{bottom:205.824000px;}
.y1d3{bottom:208.065000px;}
.y16{bottom:211.974000px;}
.y19d{bottom:213.400500px;}
.y14b{bottom:213.724500px;}
.y7d{bottom:218.376000px;}
.y45{bottom:218.584500px;}
.y1d2{bottom:225.325500px;}
.y15{bottom:229.863000px;}
.y19c{bottom:230.661000px;}
.yd3{bottom:232.152000px;}
.y14a{bottom:232.554000px;}
.y7c{bottom:237.205500px;}
.y44{bottom:237.414000px;}
.y16b{bottom:239.446500px;}
.y1d1{bottom:242.586000px;}
.y19b{bottom:247.921500px;}
.y149{bottom:251.383500px;}
.yd2{bottom:251.385000px;}
.y7b{bottom:256.035000px;}
.y43{bottom:256.243500px;}
.y16a{bottom:258.276000px;}
.y1d0{bottom:259.846500px;}
.y19a{bottom:265.182000px;}
.y148{bottom:270.213000px;}
.yd1{bottom:270.618000px;}
.ya6{bottom:274.864500px;}
.y42{bottom:275.073000px;}
.y169{bottom:277.105500px;}
.y7a{bottom:279.348000px;}
.y199{bottom:282.441000px;}
.y147{bottom:289.042500px;}
.ya5{bottom:293.694000px;}
.y41{bottom:293.901000px;}
.y1cf{bottom:294.366000px;}
.y168{bottom:295.935000px;}
.y198{bottom:299.701500px;}
.y14{bottom:300.154500px;}
.yd0{bottom:306.879000px;}
.y1ce{bottom:311.626500px;}
.y146{bottom:312.355500px;}
.ya4{bottom:312.523500px;}
.y40{bottom:312.730500px;}
.y79{bottom:312.972000px;}
.y167{bottom:314.764500px;}
.y105{bottom:315.759000px;}
.y197{bottom:316.962000px;}
.y13{bottom:318.043500px;}
.ycf{bottom:325.723500px;}
.y1cd{bottom:328.887000px;}
.ya3{bottom:331.353000px;}
.y3f{bottom:331.560000px;}
.y77{bottom:331.801500px;}
.y104{bottom:332.197500px;}
.y166{bottom:333.594000px;}
.y196{bottom:334.222500px;}
.y12{bottom:335.931000px;}
.y78{bottom:337.225500px;}
.yce{bottom:342.162000px;}
.y145{bottom:345.979500px;}
.y1cc{bottom:346.147500px;}
.y103{bottom:348.636000px;}
.ya2{bottom:350.182500px;}
.y3e{bottom:350.389500px;}
.y76{bottom:350.631000px;}
.y195{bottom:351.483000px;}
.y165{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.ycd{bottom:358.600500px;}
.y1cb{bottom:363.408000px;}
.y144{bottom:364.809000px;}
.y102{bottom:365.074500px;}
.y194{bottom:368.743500px;}
.ya1{bottom:369.012000px;}
.y3d{bottom:369.219000px;}
.y75{bottom:369.460500px;}
.y164{bottom:371.253000px;}
.ycc{bottom:375.037500px;}
.y1ca{bottom:380.668500px;}
.y10{bottom:380.673000px;}
.y101{bottom:381.513000px;}
.y143{bottom:383.638500px;}
.y193{bottom:386.004000px;}
.y74{bottom:388.290000px;}
.y163{bottom:390.082500px;}
.ycb{bottom:391.476000px;}
.ya0{bottom:392.325000px;}
.y3c{bottom:392.532000px;}
.y1c9{bottom:397.929000px;}
.y100{bottom:397.951500px;}
.yf{bottom:398.562000px;}
.y192{bottom:403.264500px;}
.y142{bottom:406.951500px;}
.y73{bottom:407.119500px;}
.yca{bottom:407.914500px;}
.y162{bottom:408.912000px;}
.yff{bottom:414.390000px;}
.y1c8{bottom:415.188000px;}
.ye{bottom:416.449500px;}
.y191{bottom:420.523500px;}
.yc9{bottom:424.353000px;}
.y72{bottom:425.949000px;}
.y161{bottom:427.741500px;}
.yfe{bottom:430.828500px;}
.y1c7{bottom:432.448500px;}
.y190{bottom:437.784000px;}
.yc8{bottom:440.791500px;}
.y141{bottom:443.946000px;}
.y71{bottom:444.778500px;}
.y160{bottom:446.571000px;}
.yfd{bottom:447.267000px;}
.y1c6{bottom:449.709000px;}
.y18f{bottom:455.044500px;}
.yc7{bottom:457.230000px;}
.y140{bottom:458.143500px;}
.y13f{bottom:462.483000px;}
.yd{bottom:462.685500px;}
.y70{bottom:463.608000px;}
.yfc{bottom:463.705500px;}
.y15f{bottom:465.400500px;}
.y1c5{bottom:466.969500px;}
.y3b{bottom:467.682000px;}
.y9f{bottom:469.032000px;}
.y18e{bottom:472.305000px;}
.y13e{bottom:478.890000px;}
.yfb{bottom:480.142500px;}
.yc6{bottom:480.871500px;}
.y6f{bottom:482.437500px;}
.y15e{bottom:484.230000px;}
.yc{bottom:489.540000px;}
.y18d{bottom:489.565500px;}
.y13d{bottom:495.328500px;}
.yfa{bottom:496.581000px;}
.y6e{bottom:501.267000px;}
.y1c4{bottom:501.490500px;}
.y15d{bottom:503.059500px;}
.y3a{bottom:505.072500px;}
.y9e{bottom:505.749000px;}
.y18c{bottom:506.826000px;}
.yb{bottom:507.429000px;}
.y13c{bottom:511.767000px;}
.yc5{bottom:512.490000px;}
.yf9{bottom:513.019500px;}
.y1c3{bottom:518.751000px;}
.y6d{bottom:520.095000px;}
.y15c{bottom:521.889000px;}
.y18b{bottom:524.086500px;}
.y39{bottom:524.529000px;}
.ya{bottom:525.316500px;}
.y13b{bottom:528.205500px;}
.yf8{bottom:529.458000px;}
.yc4{bottom:531.723000px;}
.y1c2{bottom:536.011500px;}
.y6c{bottom:538.924500px;}
.y9d{bottom:539.373000px;}
.y15b{bottom:540.718500px;}
.y18a{bottom:541.347000px;}
.y9{bottom:543.204000px;}
.y11e{bottom:543.279000px;}
.y38{bottom:543.985500px;}
.y13a{bottom:545.268000px;}
.yf7{bottom:545.896500px;}
.yc3{bottom:550.956000px;}
.y1c1{bottom:553.272000px;}
.y6b{bottom:557.754000px;}
.y9c{bottom:558.202500px;}
.y189{bottom:558.607500px;}
.y15a{bottom:559.548000px;}
.y8{bottom:561.093000px;}
.y11d{bottom:562.108500px;}
.y139{bottom:562.332000px;}
.yf6{bottom:562.335000px;}
.y37{bottom:563.443500px;}
.y1c0{bottom:570.531000px;}
.y188{bottom:575.866500px;}
.y6a{bottom:576.583500px;}
.y9b{bottom:577.032000px;}
.y159{bottom:578.377500px;}
.y138{bottom:578.770500px;}
.yf5{bottom:578.773500px;}
.y7{bottom:578.980500px;}
.y11c{bottom:580.938000px;}
.y36{bottom:582.900000px;}
.y1bf{bottom:587.791500px;}
.y187{bottom:593.127000px;}
.y137{bottom:595.207500px;}
.yf4{bottom:595.212000px;}
.y69{bottom:595.413000px;}
.y9a{bottom:595.861500px;}
.y6{bottom:596.868000px;}
.y158{bottom:597.207000px;}
.y11b{bottom:599.767500px;}
.yc2{bottom:601.512000px;}
.y35{bottom:602.358000px;}
.y1be{bottom:605.052000px;}
.y186{bottom:610.387500px;}
.y136{bottom:611.646000px;}
.yf3{bottom:611.650500px;}
.y68{bottom:614.242500px;}
.y99{bottom:614.691000px;}
.y5{bottom:614.757000px;}
.y157{bottom:616.036500px;}
.yc1{bottom:617.950500px;}
.y11a{bottom:618.597000px;}
.y34{bottom:621.814500px;}
.y1bd{bottom:622.312500px;}
.y185{bottom:627.648000px;}
.yf2{bottom:628.089000px;}
.y4{bottom:632.644500px;}
.y67{bottom:633.072000px;}
.y97{bottom:633.520500px;}
.yc0{bottom:634.389000px;}
.y156{bottom:634.866000px;}
.y135{bottom:635.482500px;}
.y119{bottom:637.426500px;}
.y98{bottom:638.946000px;}
.y1bc{bottom:639.573000px;}
.y33{bottom:641.271000px;}
.y184{bottom:644.908500px;}
.y1{bottom:650.532055px;}
.ybf{bottom:650.827500px;}
.yf1{bottom:651.729000px;}
.y66{bottom:651.901500px;}
.y96{bottom:652.350000px;}
.y155{bottom:653.695500px;}
.y118{bottom:656.256000px;}
.y1bb{bottom:656.833500px;}
.y32{bottom:660.729000px;}
.y183{bottom:662.169000px;}
.ybe{bottom:667.266000px;}
.y134{bottom:667.296000px;}
.y95{bottom:671.179500px;}
.y154{bottom:672.525000px;}
.y1ba{bottom:674.094000px;}
.y117{bottom:675.085500px;}
.y65{bottom:675.214500px;}
.y182{bottom:679.429500px;}
.y31{bottom:680.185500px;}
.yf0{bottom:683.349000px;}
.ybd{bottom:683.704500px;}
.y133{bottom:686.529000px;}
.y93{bottom:690.009000px;}
.y153{bottom:691.354500px;}
.y116{bottom:693.915000px;}
.y64{bottom:695.389500px;}
.y94{bottom:695.434500px;}
.y181{bottom:696.690000px;}
.y30{bottom:699.642000px;}
.ybc{bottom:700.143000px;}
.yef{bottom:702.582000px;}
.y1b9{bottom:708.613500px;}
.y92{bottom:708.838500px;}
.y152{bottom:710.184000px;}
.y180{bottom:713.949000px;}
.ybb{bottom:716.580000px;}
.y115{bottom:717.226500px;}
.y2f{bottom:719.100000px;}
.y132{bottom:723.633000px;}
.y1b8{bottom:725.874000px;}
.y91{bottom:727.668000px;}
.y63{bottom:729.013500px;}
.y17f{bottom:731.209500px;}
.yba{bottom:733.018500px;}
.y114{bottom:737.401500px;}
.y2e{bottom:738.556500px;}
.y131{bottom:742.462500px;}
.y1b7{bottom:743.134500px;}
.y62{bottom:747.843000px;}
.y90{bottom:750.981000px;}
.y17e{bottom:752.953500px;}
.yee{bottom:753.138000px;}
.yb9{bottom:756.660000px;}
.y2d{bottom:758.014500px;}
.y1b6{bottom:760.395000px;}
.y130{bottom:761.292000px;}
.y61{bottom:766.671000px;}
.yed{bottom:769.576500px;}
.y113{bottom:774.396000px;}
.y2c{bottom:777.471000px;}
.y1b5{bottom:777.655500px;}
.y12f{bottom:780.121500px;}
.y8f{bottom:784.605000px;}
.y60{bottom:785.500500px;}
.yec{bottom:786.015000px;}
.y17d{bottom:786.577500px;}
.yb8{bottom:788.280000px;}
.y112{bottom:793.240500px;}
.y1b4{bottom:794.916000px;}
.y2b{bottom:796.927500px;}
.y12e{bottom:798.951000px;}
.yeb{bottom:802.452000px;}
.y8e{bottom:803.434500px;}
.y5f{bottom:804.330000px;}
.yb7{bottom:807.511500px;}
.y111{bottom:809.679000px;}
.y1b3{bottom:812.176500px;}
.y17c{bottom:813.118500px;}
.y12d{bottom:817.780500px;}
.yea{bottom:818.890500px;}
.y8d{bottom:822.264000px;}
.y5e{bottom:823.159500px;}
.y110{bottom:826.117500px;}
.yb6{bottom:826.744500px;}
.y1b2{bottom:829.437000px;}
.ye9{bottom:835.329000px;}
.y2a{bottom:835.513500px;}
.y12c{bottom:836.610000px;}
.y17b{bottom:839.658000px;}
.y8c{bottom:841.093500px;}
.y5d{bottom:841.989000px;}
.y10f{bottom:842.556000px;}
.y1b1{bottom:846.697500px;}
.y29{bottom:851.653500px;}
.ye8{bottom:851.767500px;}
.y12b{bottom:855.439500px;}
.y17a{bottom:857.232000px;}
.y10e{bottom:858.993000px;}
.y8b{bottom:859.923000px;}
.y5c{bottom:860.818500px;}
.yb5{bottom:863.007000px;}
.y1b0{bottom:863.956500px;}
.ye7{bottom:868.206000px;}
.y28{bottom:872.131500px;}
.y12a{bottom:874.269000px;}
.y10d{bottom:875.431500px;}
.y8a{bottom:878.752500px;}
.y5b{bottom:879.648000px;}
.y1af{bottom:881.217000px;}
.yb4{bottom:881.850000px;}
.y179{bottom:883.773000px;}
.y27{bottom:883.932000px;}
.ye6{bottom:884.644500px;}
.y10c{bottom:891.870000px;}
.y129{bottom:893.098500px;}
.yb3{bottom:898.288500px;}
.y5a{bottom:898.477500px;}
.ye5{bottom:901.083000px;}
.y89{bottom:902.064000px;}
.y26{bottom:904.411500px;}
.y178{bottom:910.314000px;}
.y128{bottom:911.928000px;}
.yb2{bottom:914.727000px;}
.y10b{bottom:915.511500px;}
.y1ae{bottom:915.738000px;}
.y25{bottom:916.210500px;}
.y59{bottom:917.307000px;}
.ye4{bottom:917.521500px;}
.yb1{bottom:931.165500px;}
.y1ad{bottom:932.998500px;}
.ye3{bottom:933.960000px;}
.y127{bottom:935.239500px;}
.y88{bottom:935.688000px;}
.y58{bottom:936.136500px;}
.y24{bottom:936.690000px;}
.y177{bottom:936.853500px;}
.y10a{bottom:939.777000px;}
.yb0{bottom:947.604000px;}
.y1ac{bottom:950.259000px;}
.ye2{bottom:950.398500px;}
.y87{bottom:954.517500px;}
.y57{bottom:954.966000px;}
.y23{bottom:961.939500px;}
.y176{bottom:963.394500px;}
.y109{bottom:963.417000px;}
.yaf{bottom:964.041000px;}
.ye1{bottom:966.835500px;}
.y1ab{bottom:967.519500px;}
.y126{bottom:968.863500px;}
.y85{bottom:973.347000px;}
.y56{bottom:973.795500px;}
.y86{bottom:978.772500px;}
.y108{bottom:979.855500px;}
.yae{bottom:980.479500px;}
.y175{bottom:980.968500px;}
.ye0{bottom:983.274000px;}
.y1aa{bottom:984.780000px;}
.y125{bottom:987.693000px;}
.y55{bottom:992.625000px;}
.y107{bottom:996.294000px;}
.y84{bottom:996.660000px;}
.yad{bottom:996.918000px;}
.y174{bottom:998.542500px;}
.ydf{bottom:999.712500px;}
.y1a9{bottom:1002.040500px;}
.y22{bottom:1008.240000px;}
.y124{bottom:1011.006000px;}
.y54{bottom:1011.454500px;}
.y106{bottom:1012.732500px;}
.yac{bottom:1013.356500px;}
.y173{bottom:1016.116500px;}
.yde{bottom:1016.151000px;}
.y1a8{bottom:1019.299500px;}
.y53{bottom:1030.284000px;}
.ydd{bottom:1032.589500px;}
.y172{bottom:1033.690500px;}
.y21{bottom:1036.485000px;}
.y1a7{bottom:1036.560000px;}
.yab{bottom:1036.998000px;}
.y123{bottom:1044.630000px;}
.y52{bottom:1049.113500px;}
.y171{bottom:1051.266000px;}
.y1a6{bottom:1053.820500px;}
.ydc{bottom:1056.231000px;}
.y122{bottom:1063.459500px;}
.y20{bottom:1064.728500px;}
.y51{bottom:1067.943000px;}
.yaa{bottom:1068.616500px;}
.y1a5{bottom:1071.081000px;}
.y121{bottom:1082.289000px;}
.y50{bottom:1086.772500px;}
.ya9{bottom:1087.849500px;}
.y1a4{bottom:1088.341500px;}
.y1f{bottom:1092.972000px;}
.y4f{bottom:1105.602000px;}
.ya7{bottom:1107.082500px;}
.ya8{bottom:1111.965000px;}
.y1d{bottom:1136.460000px;}
.y4e{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h19{height:27.974981px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h17{height:31.526842px;}
.h15{height:33.072749px;}
.h4{height:33.112997px;}
.h1d{height:33.186380px;}
.h3{height:34.199443px;}
.he{height:34.813397px;}
.h16{height:35.052500px;}
.h12{height:37.334628px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h11{height:39.434227px;}
.h18{height:41.482876px;}
.h13{height:43.217759px;}
.h1e{height:43.468157px;}
.h14{height:43.516637px;}
.h9{height:43.815515px;}
.h1b{height:49.002344px;}
.h1c{height:49.985558px;}
.h1a{height:49.991558px;}
.h7{height:50.931027px;}
.hc{height:54.547601px;}
.ha{height:77.792486px;}
.hb{height:78.115277px;}
.h8{height:82.327410px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:196.723648px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:58.043648px;}
.x8f{left:84.220500px;}
.x8e{left:85.848000px;}
.x91{left:140.748000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x53{left:253.687500px;}
.x59{left:257.368500px;}
.x63{left:268.438500px;}
.x6{left:269.914500px;}
.x46{left:278.262000px;}
.xb{left:281.479500px;}
.x64{left:284.128500px;}
.x6a{left:285.711000px;}
.x47{left:288.436500px;}
.x48{left:293.950500px;}
.x65{left:296.461500px;}
.x3f{left:299.776500px;}
.x5b{left:301.501500px;}
.x60{left:303.567000px;}
.x49{left:304.783500px;}
.x69{left:306.829500px;}
.x8{left:309.048000px;}
.x52{left:310.317000px;}
.x6b{left:312.852000px;}
.x4e{left:315.397500px;}
.x4d{left:317.550000px;}
.x7a{left:322.849500px;}
.x4f{left:327.724500px;}
.x50{left:333.238500px;}
.x5f{left:335.686500px;}
.x5c{left:336.984000px;}
.x2f{left:338.071500px;}
.x29{left:340.278000px;}
.x51{left:344.071500px;}
.x2a{left:347.085000px;}
.x30{left:350.362500px;}
.x75{left:354.885000px;}
.x31{left:369.195000px;}
.x32{left:376.000500px;}
.x54{left:379.507500px;}
.x83{left:386.950500px;}
.x68{left:388.327500px;}
.x66{left:389.820000px;}
.x80{left:391.728000px;}
.x84{left:401.895000px;}
.x72{left:405.862500px;}
.x81{left:410.482500px;}
.x40{left:418.578000px;}
.x73{left:420.805500px;}
.x82{left:425.427000px;}
.x8d{left:427.998000px;}
.x41{left:433.159500px;}
.x39{left:434.761500px;}
.x7b{left:436.104000px;}
.x74{left:441.531000px;}
.x35{left:442.698000px;}
.x61{left:444.613500px;}
.x36{left:449.505000px;}
.x7c{left:452.113500px;}
.x3a{left:453.516000px;}
.x62{left:459.021000px;}
.x33{left:465.973500px;}
.x3b{left:468.460500px;}
.x12{left:474.100500px;}
.x34{left:479.533500px;}
.x13{left:481.572000px;}
.x4c{left:484.135500px;}
.x14{left:488.925000px;}
.x15{left:496.396500px;}
.x26{left:499.485000px;}
.x70{left:501.604500px;}
.xe{left:503.032500px;}
.xf{left:510.504000px;}
.x10{left:514.291500px;}
.x37{left:515.979000px;}
.x16{left:517.114500px;}
.x23{left:519.339000px;}
.x2b{left:520.696500px;}
.x11{left:521.764500px;}
.x17{left:524.587500px;}
.x67{left:526.444500px;}
.x38{left:530.922000px;}
.x24{left:534.282000px;}
.x5a{left:542.044500px;}
.x42{left:546.981000px;}
.x55{left:549.400500px;}
.x43{left:561.396000px;}
.x9{left:562.575000px;}
.xa{left:577.653000px;}
.x8c{left:591.742500px;}
.x89{left:595.102500px;}
.x8a{left:610.047000px;}
.x57{left:629.727000px;}
.x85{left:643.120500px;}
.x58{left:646.960500px;}
.x86{left:650.592000px;}
.x87{left:654.261000px;}
.x3c{left:659.680500px;}
.x1e{left:666.745500px;}
.x88{left:669.205500px;}
.x3d{left:675.448500px;}
.x27{left:677.652000px;}
.x78{left:686.251500px;}
.x28{left:692.595000px;}
.x94{left:695.904000px;}
.x93{left:696.966000px;}
.x79{left:701.196000px;}
.x71{left:702.492000px;}
.x56{left:707.449500px;}
.x44{left:712.818000px;}
.x5d{left:715.822500px;}
.x8b{left:720.580500px;}
.x45{left:727.233000px;}
.x5e{left:730.251000px;}
.x7f{left:734.884500px;}
.x92{left:736.551000px;}
.x2d{left:743.616000px;}
.x7d{left:746.373000px;}
.x25{left:749.415000px;}
.x2e{left:750.421500px;}
.x6c{left:757.788000px;}
.x4a{left:759.267000px;}
.x7e{left:761.316000px;}
.x1a{left:764.065500px;}
.x6d{left:771.484500px;}
.x4b{left:773.313000px;}
.x76{left:775.507500px;}
.x1b{left:779.008500px;}
.x20{left:780.789000px;}
.x1c{left:786.331500px;}
.x18{left:790.266000px;}
.x21{left:793.053000px;}
.x19{left:796.692000px;}
.x1d{left:801.276000px;}
.x1f{left:805.005000px;}
.x90{left:810.400500px;}
.x22{left:811.747500px;}
.x3e{left:818.046000px;}
.x77{left:819.063000px;}
.x6e{left:821.290500px;}
.xc{left:825.169500px;}
.xd{left:832.642500px;}
.x6f{left:833.896500px;}
.x2c{left:837.849000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.114667pt;}
.v6{vertical-align:15.429333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000044pt;}
.ls39{letter-spacing:0.000185pt;}
.ls31{letter-spacing:0.000298pt;}
.ls41{letter-spacing:0.000504pt;}
.ls2c{letter-spacing:0.000540pt;}
.ls37{letter-spacing:0.000711pt;}
.ls30{letter-spacing:0.000839pt;}
.ls2f{letter-spacing:0.000921pt;}
.ls3e{letter-spacing:0.001026pt;}
.ls43{letter-spacing:0.001372pt;}
.ls3d{letter-spacing:0.001408pt;}
.ls35{letter-spacing:0.001552pt;}
.ls34{letter-spacing:0.001630pt;}
.ls33{letter-spacing:0.002114pt;}
.ls3f{letter-spacing:0.002262pt;}
.ls3c{letter-spacing:0.002553pt;}
.ls13{letter-spacing:0.002910pt;}
.ls3{letter-spacing:0.002932pt;}
.ls3a{letter-spacing:0.003055pt;}
.ls9{letter-spacing:0.003100pt;}
.ls2b{letter-spacing:0.003288pt;}
.ls32{letter-spacing:0.003890pt;}
.ls29{letter-spacing:0.386106pt;}
.ls15{letter-spacing:0.447791pt;}
.ls12{letter-spacing:0.487835pt;}
.ls19{letter-spacing:0.576078pt;}
.lsc{letter-spacing:1.133683pt;}
.ls11{letter-spacing:1.290389pt;}
.ls10{letter-spacing:1.342564pt;}
.lsf{letter-spacing:1.347793pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1f{letter-spacing:2.656533pt;}
.ls6{letter-spacing:2.657067pt;}
.ls2{letter-spacing:9.298933pt;}
.ls1{letter-spacing:9.743791pt;}
.lsb{letter-spacing:10.626533pt;}
.ls40{letter-spacing:11.851487pt;}
.ls1c{letter-spacing:11.950933pt;}
.ls2e{letter-spacing:11.954133pt;}
.ls16{letter-spacing:11.955635pt;}
.ls1a{letter-spacing:11.956267pt;}
.ls38{letter-spacing:11.959467pt;}
.ls44{letter-spacing:12.023338pt;}
.ls42{letter-spacing:12.047502pt;}
.ls45{letter-spacing:12.055531pt;}
.ls3b{letter-spacing:12.079638pt;}
.ls36{letter-spacing:12.141966pt;}
.ls18{letter-spacing:12.528078pt;}
.ls17{letter-spacing:12.533411pt;}
.ls1e{letter-spacing:12.547635pt;}
.ls24{letter-spacing:12.552969pt;}
.ls2d{letter-spacing:13.124065pt;}
.ls2a{letter-spacing:13.286400pt;}
.ls1b{letter-spacing:13.788106pt;}
.ls14{letter-spacing:13.867939pt;}
.ls23{letter-spacing:15.205867pt;}
.ls22{letter-spacing:15.211200pt;}
.lse{letter-spacing:15.942400pt;}
.ls5{letter-spacing:25.105766pt;}
.ls8{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ls7{letter-spacing:64.321067pt;}
.ls20{letter-spacing:207.904533pt;}
.ls21{letter-spacing:244.448533pt;}
.ls25{letter-spacing:317.211674pt;}
.ls26{letter-spacing:359.808533pt;}
.ls28{letter-spacing:430.176533pt;}
.ls27{letter-spacing:436.229867pt;}
.ls1d{letter-spacing:661.107635pt;}
.ws14{word-spacing:-91.094364pt;}
.ws15{word-spacing:-23.910400pt;}
.ws65{word-spacing:-13.283467pt;}
.ws119{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws1a{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws114{word-spacing:-2.922363pt;}
.ws3f{word-spacing:-2.869229pt;}
.ws39{word-spacing:-2.709827pt;}
.ws6d{word-spacing:-2.391024pt;}
.ws66{word-spacing:-1.859685pt;}
.ws1{word-spacing:-1.696326pt;}
.ws51{word-spacing:-1.647150pt;}
.ws71{word-spacing:-1.625907pt;}
.ws4d{word-spacing:-1.540882pt;}
.ws72{word-spacing:-1.434624pt;}
.ws109{word-spacing:-1.434614pt;}
.ws82{word-spacing:-1.338982pt;}
.ws143{word-spacing:-1.243341pt;}
.ws0{word-spacing:-1.175671pt;}
.ws83{word-spacing:-1.147699pt;}
.ws6b{word-spacing:-1.062677pt;}
.wsa{word-spacing:-1.041421pt;}
.ws6f{word-spacing:-1.009543pt;}
.ws142{word-spacing:-0.956416pt;}
.wsc{word-spacing:-0.929840pt;}
.ws115{word-spacing:-0.908595pt;}
.wse1{word-spacing:-0.797008pt;}
.ws30{word-spacing:-0.690740pt;}
.ws112{word-spacing:-0.584473pt;}
.ws32{word-spacing:-0.531339pt;}
.ws11a{word-spacing:-0.478208pt;}
.ws2a{word-spacing:-0.430387pt;}
.ws36{word-spacing:-0.318803pt;}
.ws124{word-spacing:-0.286925pt;}
.ws38{word-spacing:-0.265669pt;}
.ws2b{word-spacing:-0.239104pt;}
.ws35{word-spacing:-0.212535pt;}
.wscf{word-spacing:-0.191283pt;}
.ws63{word-spacing:-0.159402pt;}
.ws13a{word-spacing:-0.143462pt;}
.ws69{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.095642pt;}
.wsa3{word-spacing:-0.085014pt;}
.ws11f{word-spacing:-0.077246pt;}
.ws46{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws9d{word-spacing:-0.003695pt;}
.wsec{word-spacing:-0.003618pt;}
.wse6{word-spacing:-0.002628pt;}
.wsed{word-spacing:-0.000947pt;}
.ws3{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.001638pt;}
.ws27{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.ws127{word-spacing:0.095642pt;}
.ws55{word-spacing:0.106268pt;}
.ws28{word-spacing:0.143462pt;}
.ws64{word-spacing:0.159402pt;}
.ws2d{word-spacing:0.191283pt;}
.ws5d{word-spacing:0.212535pt;}
.ws25{word-spacing:0.239104pt;}
.ws37{word-spacing:0.265669pt;}
.ws3a{word-spacing:0.318803pt;}
.ws110{word-spacing:0.371937pt;}
.ws4c{word-spacing:0.425071pt;}
.ws121{word-spacing:0.430387pt;}
.ws154{word-spacing:0.478208pt;}
.ws5b{word-spacing:0.531339pt;}
.wsa1{word-spacing:0.570743pt;}
.ws145{word-spacing:0.573850pt;}
.ws8d{word-spacing:0.580881pt;}
.wsb8{word-spacing:0.581461pt;}
.wsc2{word-spacing:0.581828pt;}
.wsc7{word-spacing:0.581914pt;}
.ws8e{word-spacing:0.582076pt;}
.wsc6{word-spacing:0.582135pt;}
.wsca{word-spacing:0.582272pt;}
.wsbb{word-spacing:0.582596pt;}
.wsc9{word-spacing:0.582682pt;}
.ws8a{word-spacing:0.582963pt;}
.ws8b{word-spacing:0.583014pt;}
.wsa8{word-spacing:0.583057pt;}
.wsc8{word-spacing:0.583100pt;}
.wsc3{word-spacing:0.583398pt;}
.wsc1{word-spacing:0.583885pt;}
.wsb9{word-spacing:0.584380pt;}
.ws70{word-spacing:0.584473pt;}
.wsc5{word-spacing:0.584567pt;}
.wsac{word-spacing:0.585028pt;}
.wscb{word-spacing:0.585097pt;}
.wsb1{word-spacing:0.585114pt;}
.wsbd{word-spacing:0.585190pt;}
.wsb0{word-spacing:0.585335pt;}
.wsb4{word-spacing:0.585472pt;}
.wsa7{word-spacing:0.585796pt;}
.wsb3{word-spacing:0.585882pt;}
.ws8c{word-spacing:0.586163pt;}
.wsb2{word-spacing:0.586300pt;}
.wsad{word-spacing:0.586598pt;}
.wsab{word-spacing:0.587085pt;}
.wsd9{word-spacing:0.587511pt;}
.wsaf{word-spacing:0.587767pt;}
.wsbf{word-spacing:0.588297pt;}
.wsda{word-spacing:0.588399pt;}
.wsd8{word-spacing:0.589466pt;}
.wsd3{word-spacing:0.590711pt;}
.wsd2{word-spacing:0.591599pt;}
.wsd6{word-spacing:0.601335pt;}
.wsbc{word-spacing:0.603742pt;}
.wsc0{word-spacing:0.604954pt;}
.wsc4{word-spacing:0.605227pt;}
.wscc{word-spacing:0.605449pt;}
.wsba{word-spacing:0.606336pt;}
.ws89{word-spacing:0.606362pt;}
.wsbe{word-spacing:0.606746pt;}
.wsaa{word-spacing:0.608154pt;}
.wsae{word-spacing:0.608427pt;}
.wsb5{word-spacing:0.608649pt;}
.wsa9{word-spacing:0.609946pt;}
.ws75{word-spacing:0.613282pt;}
.wsd7{word-spacing:0.613828pt;}
.ws7d{word-spacing:0.614298pt;}
.ws78{word-spacing:0.615364pt;}
.wsa0{word-spacing:0.616482pt;}
.wsd1{word-spacing:0.617028pt;}
.ws7e{word-spacing:0.617677pt;}
.ws76{word-spacing:0.618564pt;}
.ws79{word-spacing:0.618615pt;}
.ws7c{word-spacing:0.619631pt;}
.ws7b{word-spacing:0.620698pt;}
.ws77{word-spacing:0.621764pt;}
.ws7a{word-spacing:0.621815pt;}
.ws5a{word-spacing:0.637606pt;}
.wsa4{word-spacing:0.680115pt;}
.wsa6{word-spacing:0.717312pt;}
.ws144{word-spacing:0.765133pt;}
.ws50{word-spacing:0.797008pt;}
.ws6c{word-spacing:0.850142pt;}
.wsb{word-spacing:0.892646pt;}
.ws48{word-spacing:0.903276pt;}
.ws29{word-spacing:0.908595pt;}
.wsa5{word-spacing:1.004237pt;}
.wse2{word-spacing:1.115811pt;}
.ws148{word-spacing:1.195520pt;}
.ws146{word-spacing:1.204431pt;}
.ws58{word-spacing:1.222079pt;}
.ws10f{word-spacing:1.275213pt;}
.wsfe{word-spacing:1.328347pt;}
.ws1e{word-spacing:1.338982pt;}
.ws157{word-spacing:1.386803pt;}
.ws2c{word-spacing:1.434624pt;}
.ws134{word-spacing:1.482445pt;}
.wsfd{word-spacing:1.540882pt;}
.ws4b{word-spacing:1.647150pt;}
.ws100{word-spacing:1.700284pt;}
.wse0{word-spacing:1.753418pt;}
.ws10a{word-spacing:1.806551pt;}
.ws86{word-spacing:1.817190pt;}
.ws13f{word-spacing:1.854285pt;}
.ws5c{word-spacing:1.859685pt;}
.ws87{word-spacing:1.865011pt;}
.ws10b{word-spacing:1.965953pt;}
.ws22{word-spacing:2.056294pt;}
.ws102{word-spacing:2.072221pt;}
.ws59{word-spacing:2.125355pt;}
.ws62{word-spacing:2.178489pt;}
.ws137{word-spacing:2.199757pt;}
.ws8{word-spacing:2.226574pt;}
.wsf9{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws68{word-spacing:2.284756pt;}
.wse4{word-spacing:2.391024pt;}
.ws14e{word-spacing:2.391040pt;}
.ws105{word-spacing:2.444158pt;}
.ws3b{word-spacing:2.497292pt;}
.wsce{word-spacing:2.534502pt;}
.wsf0{word-spacing:2.544107pt;}
.ws3c{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.550432pt;}
.ws61{word-spacing:2.656693pt;}
.wse3{word-spacing:2.709827pt;}
.ws24{word-spacing:2.725786pt;}
.ws6a{word-spacing:2.816095pt;}
.wscd{word-spacing:2.821427pt;}
.wsef{word-spacing:2.847982pt;}
.ws2e{word-spacing:2.861926pt;}
.ws15c{word-spacing:2.863710pt;}
.ws118{word-spacing:2.864512pt;}
.ws151{word-spacing:2.866304pt;}
.ws117{word-spacing:2.866509pt;}
.ws54{word-spacing:2.869229pt;}
.ws15e{word-spacing:2.869248pt;}
.wsfa{word-spacing:2.975497pt;}
.ws128{word-spacing:3.012710pt;}
.ws106{word-spacing:3.081764pt;}
.ws74{word-spacing:3.108352pt;}
.ws47{word-spacing:3.134898pt;}
.ws12b{word-spacing:3.158471pt;}
.ws2f{word-spacing:3.188032pt;}
.ws113{word-spacing:3.294300pt;}
.ws3d{word-spacing:3.347434pt;}
.ws10d{word-spacing:3.400567pt;}
.ws57{word-spacing:3.506835pt;}
.ws11c{word-spacing:3.586560pt;}
.wsf4{word-spacing:3.666237pt;}
.ws5f{word-spacing:3.878772pt;}
.ws12d{word-spacing:4.035211pt;}
.ws12f{word-spacing:4.064768pt;}
.ws4f{word-spacing:4.144442pt;}
.ws116{word-spacing:4.160410pt;}
.ws12{word-spacing:4.240070pt;}
.ws10c{word-spacing:4.303843pt;}
.ws13{word-spacing:4.314458pt;}
.ws33{word-spacing:4.356977pt;}
.ws122{word-spacing:4.542976pt;}
.ws41{word-spacing:4.569513pt;}
.ws159{word-spacing:4.590797pt;}
.ws4e{word-spacing:4.622646pt;}
.ws56{word-spacing:4.675780pt;}
.ws67{word-spacing:4.728914pt;}
.ws49{word-spacing:4.888316pt;}
.wsf1{word-spacing:4.941450pt;}
.ws12c{word-spacing:5.116826pt;}
.ws45{word-spacing:5.207119pt;}
.ws107{word-spacing:5.313387pt;}
.ws108{word-spacing:5.366521pt;}
.ws111{word-spacing:5.419654pt;}
.ws53{word-spacing:5.525922pt;}
.ws31{word-spacing:5.632190pt;}
.ws6e{word-spacing:5.685324pt;}
.wsf2{word-spacing:5.738458pt;}
.ws19{word-spacing:5.738496pt;}
.ws15b{word-spacing:5.786317pt;}
.wsf7{word-spacing:6.183883pt;}
.ws9a{word-spacing:6.886195pt;}
.ws10{word-spacing:6.918010pt;}
.ws4a{word-spacing:6.960537pt;}
.wsdf{word-spacing:7.119938pt;}
.ws130{word-spacing:7.220941pt;}
.ws99{word-spacing:7.268762pt;}
.ws139{word-spacing:7.460045pt;}
.wsde{word-spacing:7.545009pt;}
.wsdd{word-spacing:8.395151pt;}
.ws93{word-spacing:8.416461pt;}
.ws92{word-spacing:8.799027pt;}
.ws6{word-spacing:9.261206pt;}
.ws5{word-spacing:9.262802pt;}
.ws7{word-spacing:9.263702pt;}
.ws9b{word-spacing:9.564160pt;}
.ws3e{word-spacing:10.586925pt;}
.ws85{word-spacing:10.759680pt;}
.ws84{word-spacing:10.807501pt;}
.wse{word-spacing:10.823338pt;}
.ws13c{word-spacing:11.444098pt;}
.ws136{word-spacing:11.705717pt;}
.ws133{word-spacing:11.710276pt;}
.ws13b{word-spacing:11.762052pt;}
.ws141{word-spacing:11.763917pt;}
.ws14a{word-spacing:11.811738pt;}
.ws20{word-spacing:11.859558pt;}
.ws8f{word-spacing:11.894161pt;}
.ws131{word-spacing:11.899793pt;}
.ws14d{word-spacing:11.900322pt;}
.ws15f{word-spacing:11.900416pt;}
.ws150{word-spacing:11.901636pt;}
.ws152{word-spacing:11.902566pt;}
.wse5{word-spacing:11.902575pt;}
.ws149{word-spacing:11.902933pt;}
.ws158{word-spacing:11.903573pt;}
.ws15a{word-spacing:11.903949pt;}
.ws160{word-spacing:11.904179pt;}
.ws11d{word-spacing:11.904725pt;}
.ws132{word-spacing:11.905126pt;}
.ws11e{word-spacing:11.906253pt;}
.ws94{word-spacing:11.907379pt;}
.wsdb{word-spacing:11.922193pt;}
.ws7f{word-spacing:11.926562pt;}
.wsb7{word-spacing:11.944178pt;}
.wsb6{word-spacing:11.955200pt;}
.ws15d{word-spacing:11.988779pt;}
.ws129{word-spacing:12.003021pt;}
.ws73{word-spacing:12.050842pt;}
.ws12a{word-spacing:12.098662pt;}
.ws26{word-spacing:12.146483pt;}
.ws120{word-spacing:12.194304pt;}
.wsf5{word-spacing:12.956341pt;}
.ws147{word-spacing:13.101344pt;}
.ws40{word-spacing:13.224058pt;}
.wsfc{word-spacing:13.226806pt;}
.ws10e{word-spacing:13.229836pt;}
.ws52{word-spacing:13.230333pt;}
.ws140{word-spacing:13.772390pt;}
.ws23{word-spacing:13.915853pt;}
.ws138{word-spacing:14.107136pt;}
.ws14f{word-spacing:14.277085pt;}
.wsf{word-spacing:14.319536pt;}
.wsff{word-spacing:14.570343pt;}
.ws14b{word-spacing:14.728806pt;}
.ws14c{word-spacing:14.769015pt;}
.ws161{word-spacing:14.770893pt;}
.ws155{word-spacing:14.771379pt;}
.ws13e{word-spacing:14.772617pt;}
.ws11b{word-spacing:14.773205pt;}
.ws13d{word-spacing:14.773538pt;}
.ws123{word-spacing:14.774579pt;}
.ws156{word-spacing:14.776047pt;}
.ws135{word-spacing:14.776311pt;}
.ws125{word-spacing:14.776627pt;}
.ws153{word-spacing:14.920090pt;}
.ws126{word-spacing:15.063552pt;}
.ws103{word-spacing:15.302554pt;}
.ws101{word-spacing:15.339724pt;}
.ws104{word-spacing:15.632048pt;}
.ws12e{word-spacing:15.972147pt;}
.wsfb{word-spacing:16.152695pt;}
.ws5e{word-spacing:16.418365pt;}
.ws44{word-spacing:17.321641pt;}
.ws42{word-spacing:17.768524pt;}
.ws43{word-spacing:17.784176pt;}
.ws60{word-spacing:18.034541pt;}
.wsf8{word-spacing:18.095389pt;}
.wsf6{word-spacing:18.131128pt;}
.wsf3{word-spacing:18.915657pt;}
.ws11{word-spacing:23.208806pt;}
.ws16{word-spacing:23.807565pt;}
.ws18{word-spacing:23.811089pt;}
.ws17{word-spacing:23.814758pt;}
.wsd{word-spacing:23.858002pt;}
.ws9c{word-spacing:192.605867pt;}
.wsd0{word-spacing:211.081011pt;}
.wsa2{word-spacing:262.966579pt;}
.wsd5{word-spacing:266.887885pt;}
.ws9f{word-spacing:268.992000pt;}
.wsdc{word-spacing:269.518029pt;}
.wsd4{word-spacing:289.172378pt;}
.ws80{word-spacing:338.639983pt;}
.ws81{word-spacing:347.322470pt;}
.wse7{word-spacing:388.352717pt;}
.wse8{word-spacing:440.142643pt;}
.wsee{word-spacing:449.945907pt;}
.wseb{word-spacing:451.237069pt;}
.wse9{word-spacing:452.097843pt;}
.wsea{word-spacing:464.053043pt;}
.ws88{word-spacing:493.893222pt;}
.ws95{word-spacing:503.218278pt;}
.ws90{word-spacing:618.021316pt;}
.ws91{word-spacing:626.739405pt;}
.ws96{word-spacing:638.407680pt;}
.ws97{word-spacing:639.946650pt;}
.ws98{word-spacing:670.591078pt;}
._b{margin-left:-12.343740pt;}
._8{margin-left:-10.616218pt;}
._9{margin-left:-7.619482pt;}
._f{margin-left:-6.025421pt;}
._10{margin-left:-5.128550pt;}
._2{margin-left:-4.128490pt;}
._1c{margin-left:-3.191166pt;}
._6c{margin-left:-2.295389pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._d{width:3.462786pt;}
._6{width:10.132188pt;}
._12{width:11.094426pt;}
._3{width:12.236694pt;}
._3c{width:13.177232pt;}
._13{width:14.087287pt;}
._11{width:15.159194pt;}
._14{width:16.258963pt;}
._19{width:17.668464pt;}
._6d{width:18.675344pt;}
._18{width:19.572428pt;}
._e{width:20.762903pt;}
._4{width:23.063232pt;}
._c{width:25.101781pt;}
._7{width:27.188522pt;}
._1b{width:28.752148pt;}
._a{width:29.648896pt;}
._17{width:30.831090pt;}
._1a{width:32.896590pt;}
._1d{width:34.171803pt;}
._65{width:37.738498pt;}
._39{width:43.851674pt;}
._6f{width:54.993920pt;}
._56{width:118.021734pt;}
._5c{width:153.887334pt;}
._55{width:157.665178pt;}
._1f{width:162.415338pt;}
._5d{width:165.842534pt;}
._5b{width:169.620378pt;}
._1e{width:175.741440pt;}
._57{width:181.814682pt;}
._23{width:187.840102pt;}
._60{width:188.744329pt;}
._5e{width:193.769882pt;}
._24{width:199.795302pt;}
._26{width:208.116122pt;}
._25{width:211.750502pt;}
._29{width:217.728102pt;}
._22{width:220.071322pt;}
._27{width:223.849165pt;}
._20{width:228.487782pt;}
._28{width:232.026522pt;}
._61{width:244.938138pt;}
._3a{width:251.633050pt;}
._21{width:253.067674pt;}
._2b{width:258.589662pt;}
._5f{width:261.005926pt;}
._52{width:282.812211pt;}
._63{width:284.151194pt;}
._58{width:285.442355pt;}
._59{width:286.829158pt;}
._62{width:294.863053pt;}
._53{width:297.397555pt;}
._64{width:298.784358pt;}
._51{width:301.414502pt;}
._5a{width:302.705664pt;}
._2c{width:314.756506pt;}
._54{width:320.016794pt;}
._2a{width:325.516186pt;}
._3b{width:362.051277pt;}
._2d{width:370.993766pt;}
._2e{width:381.227418pt;}
._2f{width:403.177165pt;}
._4b{width:419.436237pt;}
._46{width:442.820608pt;}
._40{width:443.928909pt;}
._33{width:455.301837pt;}
._3f{width:458.697114pt;}
._66{width:462.953165pt;}
._67{width:464.053043pt;}
._41{width:465.726771pt;}
._6b{width:466.694912pt;}
._31{width:467.591782pt;}
._68{width:473.473741pt;}
._6a{width:475.447221pt;}
._69{width:476.617086pt;}
._3d{width:493.223731pt;}
._32{width:499.488256pt;}
._34{width:511.443456pt;}
._4a{width:515.842970pt;}
._4f{width:517.181952pt;}
._4c{width:519.333888pt;}
._4e{width:520.433766pt;}
._4d{width:521.964032pt;}
._50{width:523.458202pt;}
._30{width:524.498534pt;}
._37{width:526.017929pt;}
._45{width:529.137152pt;}
._35{width:531.049984pt;}
._44{width:532.388966pt;}
._43{width:533.919232pt;}
._49{width:535.413402pt;}
._47{width:536.465459pt;}
._42{width:537.457971pt;}
._48{width:544.439808pt;}
._38{width:548.361114pt;}
._3e{width:574.901658pt;}
._36{width:592.977920pt;}
._15{width:696.809779pt;}
._6e{width:2264.123404pt;}
._16{width:2285.376737pt;}
.fs9{font-size:31.880533pt;}
.fs10{font-size:33.219200pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs3{font-size:38.755733pt;}
.fs8{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fsf{font-size:44.292800pt;}
.fsb{font-size:47.820800pt;}
.fsc{font-size:49.829333pt;}
.fs5{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs6{font-size:95.641600pt;}
.fs7{font-size:99.658133pt;}
.fs4{font-size:117.087872pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1e{bottom:14.977453pt;}
.y4d{bottom:28.346667pt;}
.y151{bottom:89.554667pt;}
.y1c{bottom:93.018667pt;}
.y83{bottom:93.290667pt;}
.y4c{bottom:93.873333pt;}
.y1a3{bottom:97.634667pt;}
.ydb{bottom:98.598667pt;}
.y150{bottom:106.292000pt;}
.y1b{bottom:108.920000pt;}
.y81{bottom:110.028000pt;}
.y120{bottom:110.468000pt;}
.y4b{bottom:110.610667pt;}
.yd9{bottom:111.218667pt;}
.y170{bottom:112.020000pt;}
.y1a2{bottom:112.976000pt;}
.y82{bottom:114.849333pt;}
.yda{bottom:115.076000pt;}
.y14f{bottom:123.028000pt;}
.yd8{bottom:123.837333pt;}
.y1a{bottom:124.820000pt;}
.y80{bottom:126.765333pt;}
.y4a{bottom:127.348000pt;}
.y11f{bottom:127.564000pt;}
.yd7{bottom:127.694667pt;}
.y1a1{bottom:128.318667pt;}
.y16f{bottom:128.757333pt;}
.y14e{bottom:139.765333pt;}
.y19{bottom:140.720000pt;}
.yd6{bottom:142.280000pt;}
.y7f{bottom:143.502667pt;}
.y1a0{bottom:143.661333pt;}
.y49{bottom:144.085333pt;}
.y16e{bottom:145.494667pt;}
.y14d{bottom:156.502667pt;}
.y18{bottom:156.621333pt;}
.yd5{bottom:156.892000pt;}
.y19f{bottom:159.004000pt;}
.y48{bottom:160.822667pt;}
.y16d{bottom:162.232000pt;}
.y7e{bottom:164.224000pt;}
.y17{bottom:172.521333pt;}
.y14c{bottom:173.240000pt;}
.y19e{bottom:174.346667pt;}
.y47{bottom:175.133333pt;}
.y46{bottom:177.560000pt;}
.yd4{bottom:178.078667pt;}
.y16c{bottom:182.954667pt;}
.y1d3{bottom:184.946667pt;}
.y16{bottom:188.421333pt;}
.y19d{bottom:189.689333pt;}
.y14b{bottom:189.977333pt;}
.y7d{bottom:194.112000pt;}
.y45{bottom:194.297333pt;}
.y1d2{bottom:200.289333pt;}
.y15{bottom:204.322667pt;}
.y19c{bottom:205.032000pt;}
.yd3{bottom:206.357333pt;}
.y14a{bottom:206.714667pt;}
.y7c{bottom:210.849333pt;}
.y44{bottom:211.034667pt;}
.y16b{bottom:212.841333pt;}
.y1d1{bottom:215.632000pt;}
.y19b{bottom:220.374667pt;}
.y149{bottom:223.452000pt;}
.yd2{bottom:223.453333pt;}
.y7b{bottom:227.586667pt;}
.y43{bottom:227.772000pt;}
.y16a{bottom:229.578667pt;}
.y1d0{bottom:230.974667pt;}
.y19a{bottom:235.717333pt;}
.y148{bottom:240.189333pt;}
.yd1{bottom:240.549333pt;}
.ya6{bottom:244.324000pt;}
.y42{bottom:244.509333pt;}
.y169{bottom:246.316000pt;}
.y7a{bottom:248.309333pt;}
.y199{bottom:251.058667pt;}
.y147{bottom:256.926667pt;}
.ya5{bottom:261.061333pt;}
.y41{bottom:261.245333pt;}
.y1cf{bottom:261.658667pt;}
.y168{bottom:263.053333pt;}
.y198{bottom:266.401333pt;}
.y14{bottom:266.804000pt;}
.yd0{bottom:272.781333pt;}
.y1ce{bottom:277.001333pt;}
.y146{bottom:277.649333pt;}
.ya4{bottom:277.798667pt;}
.y40{bottom:277.982667pt;}
.y79{bottom:278.197333pt;}
.y167{bottom:279.790667pt;}
.y105{bottom:280.674667pt;}
.y197{bottom:281.744000pt;}
.y13{bottom:282.705333pt;}
.ycf{bottom:289.532000pt;}
.y1cd{bottom:292.344000pt;}
.ya3{bottom:294.536000pt;}
.y3f{bottom:294.720000pt;}
.y77{bottom:294.934667pt;}
.y104{bottom:295.286667pt;}
.y166{bottom:296.528000pt;}
.y196{bottom:297.086667pt;}
.y12{bottom:298.605333pt;}
.y78{bottom:299.756000pt;}
.yce{bottom:304.144000pt;}
.y145{bottom:307.537333pt;}
.y1cc{bottom:307.686667pt;}
.y103{bottom:309.898667pt;}
.ya2{bottom:311.273333pt;}
.y3e{bottom:311.457333pt;}
.y76{bottom:311.672000pt;}
.y195{bottom:312.429333pt;}
.y165{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.ycd{bottom:318.756000pt;}
.y1cb{bottom:323.029333pt;}
.y144{bottom:324.274667pt;}
.y102{bottom:324.510667pt;}
.y194{bottom:327.772000pt;}
.ya1{bottom:328.010667pt;}
.y3d{bottom:328.194667pt;}
.y75{bottom:328.409333pt;}
.y164{bottom:330.002667pt;}
.ycc{bottom:333.366667pt;}
.y1ca{bottom:338.372000pt;}
.y10{bottom:338.376000pt;}
.y101{bottom:339.122667pt;}
.y143{bottom:341.012000pt;}
.y193{bottom:343.114667pt;}
.y74{bottom:345.146667pt;}
.y163{bottom:346.740000pt;}
.ycb{bottom:347.978667pt;}
.ya0{bottom:348.733333pt;}
.y3c{bottom:348.917333pt;}
.y1c9{bottom:353.714667pt;}
.y100{bottom:353.734667pt;}
.yf{bottom:354.277333pt;}
.y192{bottom:358.457333pt;}
.y142{bottom:361.734667pt;}
.y73{bottom:361.884000pt;}
.yca{bottom:362.590667pt;}
.y162{bottom:363.477333pt;}
.yff{bottom:368.346667pt;}
.y1c8{bottom:369.056000pt;}
.ye{bottom:370.177333pt;}
.y191{bottom:373.798667pt;}
.yc9{bottom:377.202667pt;}
.y72{bottom:378.621333pt;}
.y161{bottom:380.214667pt;}
.yfe{bottom:382.958667pt;}
.y1c7{bottom:384.398667pt;}
.y190{bottom:389.141333pt;}
.yc8{bottom:391.814667pt;}
.y141{bottom:394.618667pt;}
.y71{bottom:395.358667pt;}
.y160{bottom:396.952000pt;}
.yfd{bottom:397.570667pt;}
.y1c6{bottom:399.741333pt;}
.y18f{bottom:404.484000pt;}
.yc7{bottom:406.426667pt;}
.y140{bottom:407.238667pt;}
.y13f{bottom:411.096000pt;}
.yd{bottom:411.276000pt;}
.y70{bottom:412.096000pt;}
.yfc{bottom:412.182667pt;}
.y15f{bottom:413.689333pt;}
.y1c5{bottom:415.084000pt;}
.y3b{bottom:415.717333pt;}
.y9f{bottom:416.917333pt;}
.y18e{bottom:419.826667pt;}
.y13e{bottom:425.680000pt;}
.yfb{bottom:426.793333pt;}
.yc6{bottom:427.441333pt;}
.y6f{bottom:428.833333pt;}
.y15e{bottom:430.426667pt;}
.yc{bottom:435.146667pt;}
.y18d{bottom:435.169333pt;}
.y13d{bottom:440.292000pt;}
.yfa{bottom:441.405333pt;}
.y6e{bottom:445.570667pt;}
.y1c4{bottom:445.769333pt;}
.y15d{bottom:447.164000pt;}
.y3a{bottom:448.953333pt;}
.y9e{bottom:449.554667pt;}
.y18c{bottom:450.512000pt;}
.yb{bottom:451.048000pt;}
.y13c{bottom:454.904000pt;}
.yc5{bottom:455.546667pt;}
.yf9{bottom:456.017333pt;}
.y1c3{bottom:461.112000pt;}
.y6d{bottom:462.306667pt;}
.y15c{bottom:463.901333pt;}
.y18b{bottom:465.854667pt;}
.y39{bottom:466.248000pt;}
.ya{bottom:466.948000pt;}
.y13b{bottom:469.516000pt;}
.yf8{bottom:470.629333pt;}
.yc4{bottom:472.642667pt;}
.y1c2{bottom:476.454667pt;}
.y6c{bottom:479.044000pt;}
.y9d{bottom:479.442667pt;}
.y15b{bottom:480.638667pt;}
.y18a{bottom:481.197333pt;}
.y9{bottom:482.848000pt;}
.y11e{bottom:482.914667pt;}
.y38{bottom:483.542667pt;}
.y13a{bottom:484.682667pt;}
.yf7{bottom:485.241333pt;}
.yc3{bottom:489.738667pt;}
.y1c1{bottom:491.797333pt;}
.y6b{bottom:495.781333pt;}
.y9c{bottom:496.180000pt;}
.y189{bottom:496.540000pt;}
.y15a{bottom:497.376000pt;}
.y8{bottom:498.749333pt;}
.y11d{bottom:499.652000pt;}
.y139{bottom:499.850667pt;}
.yf6{bottom:499.853333pt;}
.y37{bottom:500.838667pt;}
.y1c0{bottom:507.138667pt;}
.y188{bottom:511.881333pt;}
.y6a{bottom:512.518667pt;}
.y9b{bottom:512.917333pt;}
.y159{bottom:514.113333pt;}
.y138{bottom:514.462667pt;}
.yf5{bottom:514.465333pt;}
.y7{bottom:514.649333pt;}
.y11c{bottom:516.389333pt;}
.y36{bottom:518.133333pt;}
.y1bf{bottom:522.481333pt;}
.y187{bottom:527.224000pt;}
.y137{bottom:529.073333pt;}
.yf4{bottom:529.077333pt;}
.y69{bottom:529.256000pt;}
.y9a{bottom:529.654667pt;}
.y6{bottom:530.549333pt;}
.y158{bottom:530.850667pt;}
.y11b{bottom:533.126667pt;}
.yc2{bottom:534.677333pt;}
.y35{bottom:535.429333pt;}
.y1be{bottom:537.824000pt;}
.y186{bottom:542.566667pt;}
.y136{bottom:543.685333pt;}
.yf3{bottom:543.689333pt;}
.y68{bottom:545.993333pt;}
.y99{bottom:546.392000pt;}
.y5{bottom:546.450667pt;}
.y157{bottom:547.588000pt;}
.yc1{bottom:549.289333pt;}
.y11a{bottom:549.864000pt;}
.y34{bottom:552.724000pt;}
.y1bd{bottom:553.166667pt;}
.y185{bottom:557.909333pt;}
.yf2{bottom:558.301333pt;}
.y4{bottom:562.350667pt;}
.y67{bottom:562.730667pt;}
.y97{bottom:563.129333pt;}
.yc0{bottom:563.901333pt;}
.y156{bottom:564.325333pt;}
.y135{bottom:564.873333pt;}
.y119{bottom:566.601333pt;}
.y98{bottom:567.952000pt;}
.y1bc{bottom:568.509333pt;}
.y33{bottom:570.018667pt;}
.y184{bottom:573.252000pt;}
.y1{bottom:578.250715pt;}
.ybf{bottom:578.513333pt;}
.yf1{bottom:579.314667pt;}
.y66{bottom:579.468000pt;}
.y96{bottom:579.866667pt;}
.y155{bottom:581.062667pt;}
.y118{bottom:583.338667pt;}
.y1bb{bottom:583.852000pt;}
.y32{bottom:587.314667pt;}
.y183{bottom:588.594667pt;}
.ybe{bottom:593.125333pt;}
.y134{bottom:593.152000pt;}
.y95{bottom:596.604000pt;}
.y154{bottom:597.800000pt;}
.y1ba{bottom:599.194667pt;}
.y117{bottom:600.076000pt;}
.y65{bottom:600.190667pt;}
.y182{bottom:603.937333pt;}
.y31{bottom:604.609333pt;}
.yf0{bottom:607.421333pt;}
.ybd{bottom:607.737333pt;}
.y133{bottom:610.248000pt;}
.y93{bottom:613.341333pt;}
.y153{bottom:614.537333pt;}
.y116{bottom:616.813333pt;}
.y64{bottom:618.124000pt;}
.y94{bottom:618.164000pt;}
.y181{bottom:619.280000pt;}
.y30{bottom:621.904000pt;}
.ybc{bottom:622.349333pt;}
.yef{bottom:624.517333pt;}
.y1b9{bottom:629.878667pt;}
.y92{bottom:630.078667pt;}
.y152{bottom:631.274667pt;}
.y180{bottom:634.621333pt;}
.ybb{bottom:636.960000pt;}
.y115{bottom:637.534667pt;}
.y2f{bottom:639.200000pt;}
.y132{bottom:643.229333pt;}
.y1b8{bottom:645.221333pt;}
.y91{bottom:646.816000pt;}
.y63{bottom:648.012000pt;}
.y17f{bottom:649.964000pt;}
.yba{bottom:651.572000pt;}
.y114{bottom:655.468000pt;}
.y2e{bottom:656.494667pt;}
.y131{bottom:659.966667pt;}
.y1b7{bottom:660.564000pt;}
.y62{bottom:664.749333pt;}
.y90{bottom:667.538667pt;}
.y17e{bottom:669.292000pt;}
.yee{bottom:669.456000pt;}
.yb9{bottom:672.586667pt;}
.y2d{bottom:673.790667pt;}
.y1b6{bottom:675.906667pt;}
.y130{bottom:676.704000pt;}
.y61{bottom:681.485333pt;}
.yed{bottom:684.068000pt;}
.y113{bottom:688.352000pt;}
.y2c{bottom:691.085333pt;}
.y1b5{bottom:691.249333pt;}
.y12f{bottom:693.441333pt;}
.y8f{bottom:697.426667pt;}
.y60{bottom:698.222667pt;}
.yec{bottom:698.680000pt;}
.y17d{bottom:699.180000pt;}
.yb8{bottom:700.693333pt;}
.y112{bottom:705.102667pt;}
.y1b4{bottom:706.592000pt;}
.y2b{bottom:708.380000pt;}
.y12e{bottom:710.178667pt;}
.yeb{bottom:713.290667pt;}
.y8e{bottom:714.164000pt;}
.y5f{bottom:714.960000pt;}
.yb7{bottom:717.788000pt;}
.y111{bottom:719.714667pt;}
.y1b3{bottom:721.934667pt;}
.y17c{bottom:722.772000pt;}
.y12d{bottom:726.916000pt;}
.yea{bottom:727.902667pt;}
.y8d{bottom:730.901333pt;}
.y5e{bottom:731.697333pt;}
.y110{bottom:734.326667pt;}
.yb6{bottom:734.884000pt;}
.y1b2{bottom:737.277333pt;}
.ye9{bottom:742.514667pt;}
.y2a{bottom:742.678667pt;}
.y12c{bottom:743.653333pt;}
.y17b{bottom:746.362667pt;}
.y8c{bottom:747.638667pt;}
.y5d{bottom:748.434667pt;}
.y10f{bottom:748.938667pt;}
.y1b1{bottom:752.620000pt;}
.y29{bottom:757.025333pt;}
.ye8{bottom:757.126667pt;}
.y12b{bottom:760.390667pt;}
.y17a{bottom:761.984000pt;}
.y10e{bottom:763.549333pt;}
.y8b{bottom:764.376000pt;}
.y5c{bottom:765.172000pt;}
.yb5{bottom:767.117333pt;}
.y1b0{bottom:767.961333pt;}
.ye7{bottom:771.738667pt;}
.y28{bottom:775.228000pt;}
.y12a{bottom:777.128000pt;}
.y10d{bottom:778.161333pt;}
.y8a{bottom:781.113333pt;}
.y5b{bottom:781.909333pt;}
.y1af{bottom:783.304000pt;}
.yb4{bottom:783.866667pt;}
.y179{bottom:785.576000pt;}
.y27{bottom:785.717333pt;}
.ye6{bottom:786.350667pt;}
.y10c{bottom:792.773333pt;}
.y129{bottom:793.865333pt;}
.yb3{bottom:798.478667pt;}
.y5a{bottom:798.646667pt;}
.ye5{bottom:800.962667pt;}
.y89{bottom:801.834667pt;}
.y26{bottom:803.921333pt;}
.y178{bottom:809.168000pt;}
.y128{bottom:810.602667pt;}
.yb2{bottom:813.090667pt;}
.y10b{bottom:813.788000pt;}
.y1ae{bottom:813.989333pt;}
.y25{bottom:814.409333pt;}
.y59{bottom:815.384000pt;}
.ye4{bottom:815.574667pt;}
.yb1{bottom:827.702667pt;}
.y1ad{bottom:829.332000pt;}
.ye3{bottom:830.186667pt;}
.y127{bottom:831.324000pt;}
.y88{bottom:831.722667pt;}
.y58{bottom:832.121333pt;}
.y24{bottom:832.613333pt;}
.y177{bottom:832.758667pt;}
.y10a{bottom:835.357333pt;}
.yb0{bottom:842.314667pt;}
.y1ac{bottom:844.674667pt;}
.ye2{bottom:844.798667pt;}
.y87{bottom:848.460000pt;}
.y57{bottom:848.858667pt;}
.y23{bottom:855.057333pt;}
.y176{bottom:856.350667pt;}
.y109{bottom:856.370667pt;}
.yaf{bottom:856.925333pt;}
.ye1{bottom:859.409333pt;}
.y1ab{bottom:860.017333pt;}
.y126{bottom:861.212000pt;}
.y85{bottom:865.197333pt;}
.y56{bottom:865.596000pt;}
.y86{bottom:870.020000pt;}
.y108{bottom:870.982667pt;}
.yae{bottom:871.537333pt;}
.y175{bottom:871.972000pt;}
.ye0{bottom:874.021333pt;}
.y1aa{bottom:875.360000pt;}
.y125{bottom:877.949333pt;}
.y55{bottom:882.333333pt;}
.y107{bottom:885.594667pt;}
.y84{bottom:885.920000pt;}
.yad{bottom:886.149333pt;}
.y174{bottom:887.593333pt;}
.ydf{bottom:888.633333pt;}
.y1a9{bottom:890.702667pt;}
.y22{bottom:896.213333pt;}
.y124{bottom:898.672000pt;}
.y54{bottom:899.070667pt;}
.y106{bottom:900.206667pt;}
.yac{bottom:900.761333pt;}
.y173{bottom:903.214667pt;}
.yde{bottom:903.245333pt;}
.y1a8{bottom:906.044000pt;}
.y53{bottom:915.808000pt;}
.ydd{bottom:917.857333pt;}
.y172{bottom:918.836000pt;}
.y21{bottom:921.320000pt;}
.y1a7{bottom:921.386667pt;}
.yab{bottom:921.776000pt;}
.y123{bottom:928.560000pt;}
.y52{bottom:932.545333pt;}
.y171{bottom:934.458667pt;}
.y1a6{bottom:936.729333pt;}
.ydc{bottom:938.872000pt;}
.y122{bottom:945.297333pt;}
.y20{bottom:946.425333pt;}
.y51{bottom:949.282667pt;}
.yaa{bottom:949.881333pt;}
.y1a5{bottom:952.072000pt;}
.y121{bottom:962.034667pt;}
.y50{bottom:966.020000pt;}
.ya9{bottom:966.977333pt;}
.y1a4{bottom:967.414667pt;}
.y1f{bottom:971.530667pt;}
.y4f{bottom:982.757333pt;}
.ya7{bottom:984.073333pt;}
.ya8{bottom:988.413333pt;}
.y1d{bottom:1010.186667pt;}
.y4e{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h19{height:24.866650pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h17{height:28.023859pt;}
.h15{height:29.397999pt;}
.h4{height:29.433775pt;}
.h1d{height:29.499005pt;}
.h3{height:30.399505pt;}
.he{height:30.945242pt;}
.h16{height:31.157778pt;}
.h12{height:33.186336pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h11{height:35.052646pt;}
.h18{height:36.873667pt;}
.h13{height:38.415786pt;}
.h1e{height:38.638362pt;}
.h14{height:38.681455pt;}
.h9{height:38.947124pt;}
.h1b{height:43.557639pt;}
.h1c{height:44.431607pt;}
.h1a{height:44.436941pt;}
.h7{height:45.272024pt;}
.hc{height:48.486756pt;}
.ha{height:69.148877pt;}
.hb{height:69.435802pt;}
.h8{height:73.179920pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:174.865465pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:51.594354pt;}
.x8f{left:74.862667pt;}
.x8e{left:76.309333pt;}
.x91{left:125.109333pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x53{left:225.500000pt;}
.x59{left:228.772000pt;}
.x63{left:238.612000pt;}
.x6{left:239.924000pt;}
.x46{left:247.344000pt;}
.xb{left:250.204000pt;}
.x64{left:252.558667pt;}
.x6a{left:253.965333pt;}
.x47{left:256.388000pt;}
.x48{left:261.289333pt;}
.x65{left:263.521333pt;}
.x3f{left:266.468000pt;}
.x5b{left:268.001333pt;}
.x60{left:269.837333pt;}
.x49{left:270.918667pt;}
.x69{left:272.737333pt;}
.x8{left:274.709333pt;}
.x52{left:275.837333pt;}
.x6b{left:278.090667pt;}
.x4e{left:280.353333pt;}
.x4d{left:282.266667pt;}
.x7a{left:286.977333pt;}
.x4f{left:291.310667pt;}
.x50{left:296.212000pt;}
.x5f{left:298.388000pt;}
.x5c{left:299.541333pt;}
.x2f{left:300.508000pt;}
.x29{left:302.469333pt;}
.x51{left:305.841333pt;}
.x2a{left:308.520000pt;}
.x30{left:311.433333pt;}
.x75{left:315.453333pt;}
.x31{left:328.173333pt;}
.x32{left:334.222667pt;}
.x54{left:337.340000pt;}
.x83{left:343.956000pt;}
.x68{left:345.180000pt;}
.x66{left:346.506667pt;}
.x80{left:348.202667pt;}
.x84{left:357.240000pt;}
.x72{left:360.766667pt;}
.x81{left:364.873333pt;}
.x40{left:372.069333pt;}
.x73{left:374.049333pt;}
.x82{left:378.157333pt;}
.x8d{left:380.442667pt;}
.x41{left:385.030667pt;}
.x39{left:386.454667pt;}
.x7b{left:387.648000pt;}
.x74{left:392.472000pt;}
.x35{left:393.509333pt;}
.x61{left:395.212000pt;}
.x36{left:399.560000pt;}
.x7c{left:401.878667pt;}
.x3a{left:403.125333pt;}
.x62{left:408.018667pt;}
.x33{left:414.198667pt;}
.x3b{left:416.409333pt;}
.x12{left:421.422667pt;}
.x34{left:426.252000pt;}
.x13{left:428.064000pt;}
.x4c{left:430.342667pt;}
.x14{left:434.600000pt;}
.x15{left:441.241333pt;}
.x26{left:443.986667pt;}
.x70{left:445.870667pt;}
.xe{left:447.140000pt;}
.xf{left:453.781333pt;}
.x10{left:457.148000pt;}
.x37{left:458.648000pt;}
.x16{left:459.657333pt;}
.x23{left:461.634667pt;}
.x2b{left:462.841333pt;}
.x11{left:463.790667pt;}
.x17{left:466.300000pt;}
.x67{left:467.950667pt;}
.x38{left:471.930667pt;}
.x24{left:474.917333pt;}
.x5a{left:481.817333pt;}
.x42{left:486.205333pt;}
.x55{left:488.356000pt;}
.x43{left:499.018667pt;}
.x9{left:500.066667pt;}
.xa{left:513.469333pt;}
.x8c{left:525.993333pt;}
.x89{left:528.980000pt;}
.x8a{left:542.264000pt;}
.x57{left:559.757333pt;}
.x85{left:571.662667pt;}
.x58{left:575.076000pt;}
.x86{left:578.304000pt;}
.x87{left:581.565333pt;}
.x3c{left:586.382667pt;}
.x1e{left:592.662667pt;}
.x88{left:594.849333pt;}
.x3d{left:600.398667pt;}
.x27{left:602.357333pt;}
.x78{left:610.001333pt;}
.x28{left:615.640000pt;}
.x94{left:618.581333pt;}
.x93{left:619.525333pt;}
.x79{left:623.285333pt;}
.x71{left:624.437333pt;}
.x56{left:628.844000pt;}
.x44{left:633.616000pt;}
.x5d{left:636.286667pt;}
.x8b{left:640.516000pt;}
.x45{left:646.429333pt;}
.x5e{left:649.112000pt;}
.x7f{left:653.230667pt;}
.x92{left:654.712000pt;}
.x2d{left:660.992000pt;}
.x7d{left:663.442667pt;}
.x25{left:666.146667pt;}
.x2e{left:667.041333pt;}
.x6c{left:673.589333pt;}
.x4a{left:674.904000pt;}
.x7e{left:676.725333pt;}
.x1a{left:679.169333pt;}
.x6d{left:685.764000pt;}
.x4b{left:687.389333pt;}
.x76{left:689.340000pt;}
.x1b{left:692.452000pt;}
.x20{left:694.034667pt;}
.x1c{left:698.961333pt;}
.x18{left:702.458667pt;}
.x21{left:704.936000pt;}
.x19{left:708.170667pt;}
.x1d{left:712.245333pt;}
.x1f{left:715.560000pt;}
.x90{left:720.356000pt;}
.x22{left:721.553333pt;}
.x3e{left:727.152000pt;}
.x77{left:728.056000pt;}
.x6e{left:730.036000pt;}
.xc{left:733.484000pt;}
.xd{left:740.126667pt;}
.x6f{left:741.241333pt;}
.x2c{left:744.754667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  